@primestyleai/tryon 3.8.0 → 3.9.0
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/PrimeStyleTryon.d.ts +1 -0
- package/dist/i18n/cs.d.ts +5 -0
- package/dist/i18n/da.d.ts +5 -0
- package/dist/i18n/de.d.ts +5 -0
- package/dist/i18n/en.d.ts +9 -0
- package/dist/i18n/es.d.ts +5 -0
- package/dist/i18n/fi.d.ts +5 -0
- package/dist/i18n/fr.d.ts +5 -0
- package/dist/i18n/index.d.ts +37 -0
- package/dist/i18n/it.d.ts +5 -0
- package/dist/i18n/ja.d.ts +5 -0
- package/dist/i18n/ko.d.ts +5 -0
- package/dist/i18n/nb.d.ts +5 -0
- package/dist/i18n/nl.d.ts +5 -0
- package/dist/i18n/pl.d.ts +5 -0
- package/dist/i18n/pt-br.d.ts +5 -0
- package/dist/i18n/pt-pt.d.ts +5 -0
- package/dist/i18n/sv.d.ts +5 -0
- package/dist/i18n/th.d.ts +5 -0
- package/dist/i18n/tr.d.ts +5 -0
- package/dist/i18n/zh-cn.d.ts +5 -0
- package/dist/i18n/zh-tw.d.ts +5 -0
- package/dist/index-B0KE3c8S.js +2951 -0
- package/dist/index.d.ts +2 -0
- package/dist/primestyle-tryon.js +35 -24
- package/dist/react/index.d.ts +2 -0
- package/dist/react/index.js +139 -121
- package/package.json +1 -1
- package/dist/image-utils-C9bJ1zKO.js +0 -186
|
@@ -0,0 +1,2951 @@
|
|
|
1
|
+
const DEFAULT_API_URL = "https://myaifitting.com";
|
|
2
|
+
class ApiClient {
|
|
3
|
+
constructor(apiKey, apiUrl) {
|
|
4
|
+
this.apiKey = apiKey;
|
|
5
|
+
this.baseUrl = (apiUrl || DEFAULT_API_URL).replace(/\/+$/, "");
|
|
6
|
+
}
|
|
7
|
+
get headers() {
|
|
8
|
+
return {
|
|
9
|
+
"Content-Type": "application/json",
|
|
10
|
+
Authorization: `Bearer ${this.apiKey}`
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
async submitTryOn(modelImage, garmentImage) {
|
|
14
|
+
const res = await fetch(`${this.baseUrl}/api/v1/tryon`, {
|
|
15
|
+
method: "POST",
|
|
16
|
+
headers: this.headers,
|
|
17
|
+
body: JSON.stringify({ modelImage, garmentImage })
|
|
18
|
+
});
|
|
19
|
+
if (!res.ok) {
|
|
20
|
+
const data = await res.json().catch(() => ({}));
|
|
21
|
+
if (res.status === 402) {
|
|
22
|
+
throw new PrimeStyleError(
|
|
23
|
+
data.message || "Insufficient try-ons",
|
|
24
|
+
"INSUFFICIENT_BALANCE"
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
throw new PrimeStyleError(
|
|
28
|
+
data.message || "Failed to submit try-on",
|
|
29
|
+
"API_ERROR"
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
return res.json();
|
|
33
|
+
}
|
|
34
|
+
async getStatus(jobId) {
|
|
35
|
+
const res = await fetch(`${this.baseUrl}/api/v1/tryon/status/${jobId}`, {
|
|
36
|
+
headers: this.headers
|
|
37
|
+
});
|
|
38
|
+
if (!res.ok) {
|
|
39
|
+
const data = await res.json().catch(() => ({}));
|
|
40
|
+
throw new PrimeStyleError(
|
|
41
|
+
data.message || "Failed to get status",
|
|
42
|
+
"API_ERROR"
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
return res.json();
|
|
46
|
+
}
|
|
47
|
+
getStreamUrl() {
|
|
48
|
+
return `${this.baseUrl}/api/v1/tryon/stream?key=${encodeURIComponent(this.apiKey)}`;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
class PrimeStyleError extends Error {
|
|
52
|
+
constructor(message, code) {
|
|
53
|
+
super(message);
|
|
54
|
+
this.name = "PrimeStyleError";
|
|
55
|
+
this.code = code;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
class SseClient {
|
|
59
|
+
constructor(streamUrl) {
|
|
60
|
+
this.eventSource = null;
|
|
61
|
+
this.listeners = /* @__PURE__ */ new Map();
|
|
62
|
+
this.reconnectTimer = null;
|
|
63
|
+
this.reconnectAttempts = 0;
|
|
64
|
+
this.maxReconnectAttempts = 5;
|
|
65
|
+
this.streamUrl = streamUrl;
|
|
66
|
+
}
|
|
67
|
+
connect() {
|
|
68
|
+
if (this.eventSource) return;
|
|
69
|
+
this.eventSource = new EventSource(this.streamUrl);
|
|
70
|
+
this.eventSource.addEventListener("vto-update", (event) => {
|
|
71
|
+
try {
|
|
72
|
+
const data = JSON.parse(event.data);
|
|
73
|
+
this.emit(data.galleryId, data);
|
|
74
|
+
} catch {
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
this.eventSource.onopen = () => {
|
|
78
|
+
this.reconnectAttempts = 0;
|
|
79
|
+
};
|
|
80
|
+
this.eventSource.onerror = () => {
|
|
81
|
+
this.eventSource?.close();
|
|
82
|
+
this.eventSource = null;
|
|
83
|
+
this.scheduleReconnect();
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
scheduleReconnect() {
|
|
87
|
+
if (this.reconnectAttempts >= this.maxReconnectAttempts) return;
|
|
88
|
+
if (this.listeners.size === 0) return;
|
|
89
|
+
const delay = Math.min(1e3 * 2 ** this.reconnectAttempts, 3e4);
|
|
90
|
+
this.reconnectAttempts++;
|
|
91
|
+
this.reconnectTimer = setTimeout(() => {
|
|
92
|
+
this.connect();
|
|
93
|
+
}, delay);
|
|
94
|
+
}
|
|
95
|
+
onJob(jobId, callback) {
|
|
96
|
+
if (!this.listeners.has(jobId)) {
|
|
97
|
+
this.listeners.set(jobId, /* @__PURE__ */ new Set());
|
|
98
|
+
}
|
|
99
|
+
this.listeners.get(jobId).add(callback);
|
|
100
|
+
if (!this.eventSource) {
|
|
101
|
+
this.connect();
|
|
102
|
+
}
|
|
103
|
+
return () => {
|
|
104
|
+
const jobListeners = this.listeners.get(jobId);
|
|
105
|
+
if (jobListeners) {
|
|
106
|
+
jobListeners.delete(callback);
|
|
107
|
+
if (jobListeners.size === 0) {
|
|
108
|
+
this.listeners.delete(jobId);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
if (this.listeners.size === 0) {
|
|
112
|
+
this.disconnect();
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
}
|
|
116
|
+
emit(jobId, update) {
|
|
117
|
+
const callbacks = this.listeners.get(jobId);
|
|
118
|
+
if (callbacks) {
|
|
119
|
+
callbacks.forEach((cb) => cb(update));
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
disconnect() {
|
|
123
|
+
if (this.reconnectTimer) {
|
|
124
|
+
clearTimeout(this.reconnectTimer);
|
|
125
|
+
this.reconnectTimer = null;
|
|
126
|
+
}
|
|
127
|
+
if (this.eventSource) {
|
|
128
|
+
this.eventSource.close();
|
|
129
|
+
this.eventSource = null;
|
|
130
|
+
}
|
|
131
|
+
this.listeners.clear();
|
|
132
|
+
this.reconnectAttempts = 0;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
const MAX_DIMENSION = 512;
|
|
136
|
+
const JPEG_QUALITY = 0.65;
|
|
137
|
+
function compressImage(file) {
|
|
138
|
+
return new Promise((resolve, reject) => {
|
|
139
|
+
const reader = new FileReader();
|
|
140
|
+
reader.onload = () => {
|
|
141
|
+
const img = new Image();
|
|
142
|
+
img.onload = () => {
|
|
143
|
+
try {
|
|
144
|
+
const canvas = document.createElement("canvas");
|
|
145
|
+
let { width, height } = img;
|
|
146
|
+
if (width > MAX_DIMENSION || height > MAX_DIMENSION) {
|
|
147
|
+
if (width > height) {
|
|
148
|
+
height = Math.round(height * MAX_DIMENSION / width);
|
|
149
|
+
width = MAX_DIMENSION;
|
|
150
|
+
} else {
|
|
151
|
+
width = Math.round(width * MAX_DIMENSION / height);
|
|
152
|
+
height = MAX_DIMENSION;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
canvas.width = width;
|
|
156
|
+
canvas.height = height;
|
|
157
|
+
const ctx = canvas.getContext("2d");
|
|
158
|
+
if (!ctx) {
|
|
159
|
+
reject(new Error("Canvas context not available"));
|
|
160
|
+
return;
|
|
161
|
+
}
|
|
162
|
+
ctx.drawImage(img, 0, 0, width, height);
|
|
163
|
+
const dataUrl = canvas.toDataURL("image/jpeg", JPEG_QUALITY);
|
|
164
|
+
resolve(dataUrl);
|
|
165
|
+
} catch (err) {
|
|
166
|
+
reject(err);
|
|
167
|
+
}
|
|
168
|
+
};
|
|
169
|
+
img.onerror = () => reject(new Error("Failed to load image"));
|
|
170
|
+
img.src = reader.result;
|
|
171
|
+
};
|
|
172
|
+
reader.onerror = () => reject(new Error("Failed to read file"));
|
|
173
|
+
reader.readAsDataURL(file);
|
|
174
|
+
});
|
|
175
|
+
}
|
|
176
|
+
function isValidImageFile(file) {
|
|
177
|
+
const accepted = ["image/jpeg", "image/png", "image/webp"];
|
|
178
|
+
return accepted.includes(file.type);
|
|
179
|
+
}
|
|
180
|
+
const en = {
|
|
181
|
+
// ── Modal / chrome ──────────────────────────────────
|
|
182
|
+
"Virtual Try-On": "Virtual Try-On",
|
|
183
|
+
"Powered by": "Powered by",
|
|
184
|
+
"Profiles": "Profiles",
|
|
185
|
+
"History": "History",
|
|
186
|
+
// ── Step labels ─────────────────────────────────────
|
|
187
|
+
"Welcome": "Welcome",
|
|
188
|
+
"Size": "Size",
|
|
189
|
+
"Your Fit": "Your Fit",
|
|
190
|
+
"Try On": "Try On",
|
|
191
|
+
// ── Welcome view ────────────────────────────────────
|
|
192
|
+
"Find Your Perfect Size": "Find Your Perfect Size",
|
|
193
|
+
"Get your size instantly, then try it on": "Get your size instantly, then try it on",
|
|
194
|
+
"Get Your Size": "Get Your Size",
|
|
195
|
+
"Instant fit recommendation": "Instant fit recommendation",
|
|
196
|
+
"Try It On": "Try It On",
|
|
197
|
+
"See how it looks on you": "See how it looks on you",
|
|
198
|
+
"Find My Size": "Find My Size",
|
|
199
|
+
"Takes less than a minute": "Takes less than a minute",
|
|
200
|
+
// ── Upload view ─────────────────────────────────────
|
|
201
|
+
"Upload a full body photo": "Upload a full body photo",
|
|
202
|
+
"Drop your photo here or click to upload": "Drop your photo here or click to upload",
|
|
203
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG or WebP (max 10MB)",
|
|
204
|
+
"Your photo": "Your photo",
|
|
205
|
+
// ── Sizing choice ───────────────────────────────────
|
|
206
|
+
"Checking size guide...": "Checking size guide...",
|
|
207
|
+
"Looking for size chart data for this product": "Looking for size chart data for this product",
|
|
208
|
+
"How would you like to find your size?": "How would you like to find your size?",
|
|
209
|
+
"Size guide is not available for this product — sizing will use standard measurements": "Size guide is not available for this product — sizing will use standard measurements",
|
|
210
|
+
"Size guide found for this product": "Size guide found for this product",
|
|
211
|
+
"Enter my measurements": "Enter my measurements",
|
|
212
|
+
"Chest, waist, hips, shoes & more": "Chest, waist, hips, shoes & more",
|
|
213
|
+
"& more": "& more",
|
|
214
|
+
"Best accuracy": "Best accuracy",
|
|
215
|
+
"Just height & weight": "Just height & weight",
|
|
216
|
+
"Quick estimate in seconds": "Quick estimate in seconds",
|
|
217
|
+
"Skip, just try it on": "Skip, just try it on",
|
|
218
|
+
"Upload a photo to see how it looks": "Upload a photo to see how it looks",
|
|
219
|
+
// ── Sizing form ─────────────────────────────────────
|
|
220
|
+
"Back": "Back",
|
|
221
|
+
"Auto-fill from saved profile...": "Auto-fill from saved profile...",
|
|
222
|
+
"I'm shopping for": "I'm shopping for",
|
|
223
|
+
"Men's": "Men's",
|
|
224
|
+
"Women's": "Women's",
|
|
225
|
+
"Sizing region": "Sizing region",
|
|
226
|
+
"Required for this product": "Required for this product",
|
|
227
|
+
"Fit type": "Fit type",
|
|
228
|
+
"Petite": "Petite",
|
|
229
|
+
"Standard": "Standard",
|
|
230
|
+
"Tall": "Tall",
|
|
231
|
+
"Plus": "Plus",
|
|
232
|
+
"Optional — improve accuracy & save to profile": "Optional — improve accuracy & save to profile",
|
|
233
|
+
"Height": "Height",
|
|
234
|
+
"Weight": "Weight",
|
|
235
|
+
"Fill in what you know — more measurements = better accuracy.": "Fill in what you know — more measurements = better accuracy.",
|
|
236
|
+
"Save as profile": "Save as profile",
|
|
237
|
+
"Profile name (e.g. John, Sarah)": "Profile name (e.g. John, Sarah)",
|
|
238
|
+
"Get My Size": "Get My Size",
|
|
239
|
+
// ── Units ───────────────────────────────────────────
|
|
240
|
+
"cm": "cm",
|
|
241
|
+
"in": "in",
|
|
242
|
+
"ft": "ft",
|
|
243
|
+
"kg": "kg",
|
|
244
|
+
"lbs": "lbs",
|
|
245
|
+
// ── Measurements ────────────────────────────────────
|
|
246
|
+
"Bust": "Bust",
|
|
247
|
+
"Waist": "Waist",
|
|
248
|
+
"Hips": "Hips",
|
|
249
|
+
"Shoulders": "Shoulders",
|
|
250
|
+
"Inseam": "Inseam",
|
|
251
|
+
"Foot length": "Foot length",
|
|
252
|
+
"Chest": "Chest",
|
|
253
|
+
"Sleeve": "Sleeve",
|
|
254
|
+
"Neck": "Neck",
|
|
255
|
+
"Foot": "Foot",
|
|
256
|
+
"Shoe EU": "Shoe EU",
|
|
257
|
+
"Shoe US": "Shoe US",
|
|
258
|
+
"Shoe UK": "Shoe UK",
|
|
259
|
+
"Shoe size (US)": "Shoe size (US)",
|
|
260
|
+
"Shoe size (UK)": "Shoe size (UK)",
|
|
261
|
+
"Shoe size (EU)": "Shoe size (EU)",
|
|
262
|
+
// ── Countries ───────────────────────────────────────
|
|
263
|
+
"United States": "United States",
|
|
264
|
+
"United Kingdom": "United Kingdom",
|
|
265
|
+
"Europe (EU)": "Europe (EU)",
|
|
266
|
+
"France": "France",
|
|
267
|
+
"Italy": "Italy",
|
|
268
|
+
"Germany": "Germany",
|
|
269
|
+
"Spain": "Spain",
|
|
270
|
+
"Japan": "Japan",
|
|
271
|
+
"China": "China",
|
|
272
|
+
"South Korea": "South Korea",
|
|
273
|
+
"Australia": "Australia",
|
|
274
|
+
"Brazil": "Brazil",
|
|
275
|
+
// ── Processing ──────────────────────────────────────
|
|
276
|
+
"Preparing your image...": "Preparing your image...",
|
|
277
|
+
"Analyzing body proportions...": "Analyzing body proportions...",
|
|
278
|
+
"Matching garment to your photo...": "Matching garment to your photo...",
|
|
279
|
+
"Generating virtual try-on...": "Generating virtual try-on...",
|
|
280
|
+
"Refining details...": "Refining details...",
|
|
281
|
+
"Almost there...": "Almost there...",
|
|
282
|
+
"Complete!": "Complete!",
|
|
283
|
+
"This usually takes 15-25 seconds": "This usually takes 15-25 seconds",
|
|
284
|
+
"This usually takes 15-20 seconds": "This usually takes 15-20 seconds",
|
|
285
|
+
// ── Size result ─────────────────────────────────────
|
|
286
|
+
"Your Size": "Your Size",
|
|
287
|
+
"High Confidence": "High Confidence",
|
|
288
|
+
"Medium Confidence": "Medium Confidence",
|
|
289
|
+
"Low Confidence": "Low Confidence",
|
|
290
|
+
"Sizing by Garment": "Sizing by Garment",
|
|
291
|
+
"Fit Summary": "Fit Summary",
|
|
292
|
+
"within range": "within range",
|
|
293
|
+
"may be snug": "may be snug",
|
|
294
|
+
"may be loose": "may be loose",
|
|
295
|
+
"See details": "See details",
|
|
296
|
+
"Hide details": "Hide details",
|
|
297
|
+
"Area": "Area",
|
|
298
|
+
"You": "You",
|
|
299
|
+
"Chart": "Chart",
|
|
300
|
+
"Fit": "Fit",
|
|
301
|
+
"Equivalent Sizes": "Equivalent Sizes",
|
|
302
|
+
"Analyzing your size...": "Analyzing your size...",
|
|
303
|
+
"Your size:": "Your size:",
|
|
304
|
+
"Done": "Done",
|
|
305
|
+
// ── Try-on result ───────────────────────────────────
|
|
306
|
+
"Try-on result": "Try-on result",
|
|
307
|
+
"Download": "Download",
|
|
308
|
+
"Start Over": "Start Over",
|
|
309
|
+
"Try Another": "Try Another",
|
|
310
|
+
// ── Errors ──────────────────────────────────────────
|
|
311
|
+
"Something went wrong": "Something went wrong",
|
|
312
|
+
"Try Again": "Try Again",
|
|
313
|
+
"Please upload a JPEG, PNG, or WebP image.": "Please upload a JPEG, PNG, or WebP image.",
|
|
314
|
+
"Image must be under 10MB.": "Image must be under 10MB.",
|
|
315
|
+
"Try-on generation failed": "Try-on generation failed",
|
|
316
|
+
"Failed to start try-on": "Failed to start try-on",
|
|
317
|
+
"SDK not configured. Please provide an API key.": "SDK not configured. Please provide an API key.",
|
|
318
|
+
"No product image found. Please set the product-image attribute.": "No product image found. Please set the product-image attribute.",
|
|
319
|
+
// ── Drawer / profiles ──────────────────────────────
|
|
320
|
+
"My Profiles": "My Profiles",
|
|
321
|
+
"No saved profiles yet.": "No saved profiles yet.",
|
|
322
|
+
"No history yet.": "No history yet.",
|
|
323
|
+
"Product": "Product",
|
|
324
|
+
"Women's Profile": "Women's Profile",
|
|
325
|
+
"Men's Profile": "Men's Profile",
|
|
326
|
+
"Saved": "Saved",
|
|
327
|
+
"Delete Profile": "Delete Profile"
|
|
328
|
+
};
|
|
329
|
+
const cs = {
|
|
330
|
+
"Virtual Try-On": "Virtuální zkoušení",
|
|
331
|
+
"Powered by": "Poháněno",
|
|
332
|
+
"Profiles": "Profily",
|
|
333
|
+
"History": "Historie",
|
|
334
|
+
"Welcome": "Vítejte",
|
|
335
|
+
"Size": "Velikost",
|
|
336
|
+
"Your Fit": "Vaše velikost",
|
|
337
|
+
"Try On": "Vyzkoušet",
|
|
338
|
+
"Find Your Perfect Size": "Najděte svou ideální velikost",
|
|
339
|
+
"Get your size instantly, then try it on": "Získejte svou velikost okamžitě a poté ji vyzkoušejte",
|
|
340
|
+
"Get Your Size": "Získejte svou velikost",
|
|
341
|
+
"Instant fit recommendation": "Okamžité doporučení velikosti",
|
|
342
|
+
"Try It On": "Vyzkoušejte to",
|
|
343
|
+
"See how it looks on you": "Podívejte se, jak to vypadá na vás",
|
|
344
|
+
"Find My Size": "Najít moji velikost",
|
|
345
|
+
"Takes less than a minute": "Trvá to méně než minutu",
|
|
346
|
+
"Upload a full body photo": "Nahrajte fotografii celého těla",
|
|
347
|
+
"Drop your photo here or click to upload": "Přetáhněte svou fotografii sem nebo klikněte pro nahrání",
|
|
348
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG nebo WebP (max 10MB)",
|
|
349
|
+
"Your photo": "Vaše fotografie",
|
|
350
|
+
"Checking size guide...": "Kontroluji velikostní tabulku...",
|
|
351
|
+
"Looking for size chart data for this product": "Hledám data velikostní tabulky pro tento produkt",
|
|
352
|
+
"How would you like to find your size?": "Jak byste chtěli najít svou velikost?",
|
|
353
|
+
"Size guide is not available for this product — sizing will use standard measurements": "Velikostní tabulka není k dispozici pro tento produkt — velikosti budou použity standardní míry",
|
|
354
|
+
"Size guide found for this product": "Velikostní tabulka nalezena pro tento produkt",
|
|
355
|
+
"Enter my measurements": "Zadejte mé míry",
|
|
356
|
+
"Chest, waist, hips, shoes & more": "Hrudník, pas, boky, boty a další",
|
|
357
|
+
"& more": "& další",
|
|
358
|
+
"Best accuracy": "Nejlepší přesnost",
|
|
359
|
+
"Just height & weight": "Pouze výška a hmotnost",
|
|
360
|
+
"Quick estimate in seconds": "Rychlý odhad za sekundy",
|
|
361
|
+
"Skip, just try it on": "Přeskočit, jen to vyzkoušet",
|
|
362
|
+
"Upload a photo to see how it looks": "Nahrajte fotografii, abyste viděli, jak to vypadá",
|
|
363
|
+
"Back": "Zpět",
|
|
364
|
+
"Auto-fill from saved profile...": "Automatické vyplnění ze uloženého profilu...",
|
|
365
|
+
"I'm shopping for": "Nakupuji pro",
|
|
366
|
+
"Men's": "Pánské",
|
|
367
|
+
"Women's": "Dámské",
|
|
368
|
+
"Sizing region": "Region velikostí",
|
|
369
|
+
"Required for this product": "Požadováno pro tento produkt",
|
|
370
|
+
"Fit type": "Typ střihu",
|
|
371
|
+
"Petite": "Petite",
|
|
372
|
+
"Standard": "Standardní",
|
|
373
|
+
"Tall": "Vysoké",
|
|
374
|
+
"Plus": "Plus",
|
|
375
|
+
"Optional — improve accuracy & save to profile": "Volitelné — zlepšete přesnost a uložte do profilu",
|
|
376
|
+
"Height": "Výška",
|
|
377
|
+
"Weight": "Hmotnost",
|
|
378
|
+
"Fill in what you know — more measurements = better accuracy.": "Vyplňte, co víte — více měření = lepší přesnost.",
|
|
379
|
+
"Save as profile": "Uložit jako profil",
|
|
380
|
+
"Profile name (e.g. John, Sarah)": "Název profilu (např. Jan, Sarah)",
|
|
381
|
+
"Get My Size": "Získejte moji velikost",
|
|
382
|
+
"cm": "cm",
|
|
383
|
+
"in": "in",
|
|
384
|
+
"ft": "ft",
|
|
385
|
+
"kg": "kg",
|
|
386
|
+
"lbs": "lbs",
|
|
387
|
+
"Bust": "Hrudník",
|
|
388
|
+
"Waist": "Pas",
|
|
389
|
+
"Hips": "Boky",
|
|
390
|
+
"Shoulders": "Ramena",
|
|
391
|
+
"Inseam": "Vnitřní délka nohavic",
|
|
392
|
+
"Foot length": "Délka nohy",
|
|
393
|
+
"Chest": "Hrudník",
|
|
394
|
+
"Sleeve": "Rukáv",
|
|
395
|
+
"Neck": "Krk",
|
|
396
|
+
"Foot": "Noha",
|
|
397
|
+
"Shoe EU": "Boty EU",
|
|
398
|
+
"Shoe US": "Boty US",
|
|
399
|
+
"Shoe UK": "Boty UK",
|
|
400
|
+
"Shoe size (US)": "Velikost bot (US)",
|
|
401
|
+
"Shoe size (UK)": "Velikost bot (UK)",
|
|
402
|
+
"Shoe size (EU)": "Velikost bot (EU)",
|
|
403
|
+
"United States": "Spojené státy",
|
|
404
|
+
"United Kingdom": "Spojené království",
|
|
405
|
+
"Europe (EU)": "Evropa (EU)",
|
|
406
|
+
"France": "Francie",
|
|
407
|
+
"Italy": "Itálie",
|
|
408
|
+
"Germany": "Německo",
|
|
409
|
+
"Spain": "Španělsko",
|
|
410
|
+
"Japan": "Japonsko",
|
|
411
|
+
"China": "Čína",
|
|
412
|
+
"South Korea": "Jižní Korea",
|
|
413
|
+
"Australia": "Austrálie",
|
|
414
|
+
"Brazil": "Brazílie",
|
|
415
|
+
"Preparing your image...": "Připravuji váš obrázek...",
|
|
416
|
+
"Analyzing body proportions...": "Analyzuji tělesné proporce...",
|
|
417
|
+
"Matching garment to your photo...": "Přiřazuji oděv k vaší fotografii...",
|
|
418
|
+
"Generating virtual try-on...": "Generuji virtuální zkoušení...",
|
|
419
|
+
"Refining details...": "Upřesňuji detaily...",
|
|
420
|
+
"Almost there...": "Skoro hotovo...",
|
|
421
|
+
"Complete!": "Hotovo!",
|
|
422
|
+
"This usually takes 15-25 seconds": "To obvykle trvá 15-25 sekund",
|
|
423
|
+
"This usually takes 15-20 seconds": "To obvykle trvá 15-20 sekund",
|
|
424
|
+
"Your Size": "Vaše velikost",
|
|
425
|
+
"High Confidence": "Vysoká důvěra",
|
|
426
|
+
"Medium Confidence": "Střední důvěra",
|
|
427
|
+
"Low Confidence": "Nízká důvěra",
|
|
428
|
+
"Sizing by Garment": "Velikost podle oděvu",
|
|
429
|
+
"Fit Summary": "Shrnutí střihu",
|
|
430
|
+
"within range": "v rámci rozsahu",
|
|
431
|
+
"may be snug": "může být těsné",
|
|
432
|
+
"may be loose": "může být volné",
|
|
433
|
+
"See details": "Zobrazit detaily",
|
|
434
|
+
"Hide details": "Skrýt detaily",
|
|
435
|
+
"Area": "Oblast",
|
|
436
|
+
"You": "Vy",
|
|
437
|
+
"Chart": "Tabulka",
|
|
438
|
+
"Fit": "Střih",
|
|
439
|
+
"Equivalent Sizes": "Ekvivalentní velikosti",
|
|
440
|
+
"Analyzing your size...": "Analyzuji vaši velikost...",
|
|
441
|
+
"Your size:": "Vaše velikost:",
|
|
442
|
+
"Done": "Hotovo",
|
|
443
|
+
"Try-on result": "Výsledek zkoušení",
|
|
444
|
+
"Download": "Stáhnout",
|
|
445
|
+
"Start Over": "Začít znovu",
|
|
446
|
+
"Try Another": "Vyzkoušet další",
|
|
447
|
+
"Something went wrong": "Něco se pokazilo",
|
|
448
|
+
"Try Again": "Zkusit znovu",
|
|
449
|
+
"Please upload a JPEG, PNG, or WebP image.": "Prosím, nahrajte obrázek ve formátu JPEG, PNG nebo WebP.",
|
|
450
|
+
"Image must be under 10MB.": "Obrázek musí být menší než 10MB.",
|
|
451
|
+
"Try-on generation failed": "Generování zkoušení selhalo",
|
|
452
|
+
"Failed to start try-on": "Nepodařilo se spustit zkoušení",
|
|
453
|
+
"SDK not configured. Please provide an API key.": "SDK není nakonfigurováno. Prosím, poskytněte API klíč.",
|
|
454
|
+
"No product image found. Please set the product-image attribute.": "Nenašla se žádná produktová fotografie. Prosím, nastavte atribut product-image.",
|
|
455
|
+
"My Profiles": "Moje profily",
|
|
456
|
+
"No saved profiles yet.": "Zatím nejsou uloženy žádné profily.",
|
|
457
|
+
"No history yet.": "Zatím žádná historie.",
|
|
458
|
+
"Product": "Produkt",
|
|
459
|
+
"Women's Profile": "Dámský profil",
|
|
460
|
+
"Men's Profile": "Pánský profil",
|
|
461
|
+
"Saved": "Uloženo",
|
|
462
|
+
"Delete Profile": "Smazat profil"
|
|
463
|
+
};
|
|
464
|
+
const da = {
|
|
465
|
+
"Virtual Try-On": "Virtuel Prøv-On",
|
|
466
|
+
"Powered by": "Drevet af",
|
|
467
|
+
"Profiles": "Profiler",
|
|
468
|
+
"History": "Historik",
|
|
469
|
+
"Welcome": "Velkommen",
|
|
470
|
+
"Size": "Størrelse",
|
|
471
|
+
"Your Fit": "Din Pasform",
|
|
472
|
+
"Try On": "Prøv On",
|
|
473
|
+
"Find Your Perfect Size": "Find Din Perfekte Størrelse",
|
|
474
|
+
"Get your size instantly, then try it on": "Få din størrelse med det samme, og prøv den på",
|
|
475
|
+
"Get Your Size": "Få Din Størrelse",
|
|
476
|
+
"Instant fit recommendation": "Øjeblikkelig pasformanbefaling",
|
|
477
|
+
"Try It On": "Prøv Det På",
|
|
478
|
+
"See how it looks on you": "Se hvordan det ser ud på dig",
|
|
479
|
+
"Find My Size": "Find Min Størrelse",
|
|
480
|
+
"Takes less than a minute": "Tager mindre end et minut",
|
|
481
|
+
"Upload a full body photo": "Upload et fuld kropsbillede",
|
|
482
|
+
"Drop your photo here or click to upload": "Slip dit billede her eller klik for at uploade",
|
|
483
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG eller WebP (max 10MB)",
|
|
484
|
+
"Your photo": "Dit billede",
|
|
485
|
+
"Checking size guide...": "Tjekker størrelsesguide...",
|
|
486
|
+
"Looking for size chart data for this product": "Leder efter størrelsesdata for dette produkt",
|
|
487
|
+
"How would you like to find your size?": "Hvordan vil du gerne finde din størrelse?",
|
|
488
|
+
"Size guide is not available for this product — sizing will use standard measurements": "Størrelsesguiden er ikke tilgængelig for dette produkt — størrelsen vil bruge standardmål",
|
|
489
|
+
"Size guide found for this product": "Størrelsesguide fundet for dette produkt",
|
|
490
|
+
"Enter my measurements": "Indtast mine mål",
|
|
491
|
+
"Chest, waist, hips, shoes & more": "Bryst, talje, hofter, sko & mere",
|
|
492
|
+
"& more": "& mere",
|
|
493
|
+
"Best accuracy": "Bedste nøjagtighed",
|
|
494
|
+
"Just height & weight": "Kun højde & vægt",
|
|
495
|
+
"Quick estimate in seconds": "Hurtigt skøn i sekunder",
|
|
496
|
+
"Skip, just try it on": "Spring over, prøv bare det på",
|
|
497
|
+
"Upload a photo to see how it looks": "Upload et billede for at se hvordan det ser ud",
|
|
498
|
+
"Back": "Tilbage",
|
|
499
|
+
"Auto-fill from saved profile...": "Auto-udfyld fra gemt profil...",
|
|
500
|
+
"I'm shopping for": "Jeg handler for",
|
|
501
|
+
"Men's": "Herre",
|
|
502
|
+
"Women's": "Dame",
|
|
503
|
+
"Sizing region": "Størrelsesregion",
|
|
504
|
+
"Required for this product": "Påkrævet for dette produkt",
|
|
505
|
+
"Fit type": "Pasformstype",
|
|
506
|
+
"Petite": "Petite",
|
|
507
|
+
"Standard": "Standard",
|
|
508
|
+
"Tall": "Høj",
|
|
509
|
+
"Plus": "Plus",
|
|
510
|
+
"Optional — improve accuracy & save to profile": "Valgfrit — forbedre nøjagtighed & gem til profil",
|
|
511
|
+
"Height": "Højde",
|
|
512
|
+
"Weight": "Vægt",
|
|
513
|
+
"Fill in what you know — more measurements = better accuracy.": "Udfyld hvad du ved — flere mål = bedre nøjagtighed.",
|
|
514
|
+
"Save as profile": "Gem som profil",
|
|
515
|
+
"Profile name (e.g. John, Sarah)": "Profilnavn (f.eks. John, Sarah)",
|
|
516
|
+
"Get My Size": "Få Min Størrelse",
|
|
517
|
+
"cm": "cm",
|
|
518
|
+
"in": "in",
|
|
519
|
+
"ft": "ft",
|
|
520
|
+
"kg": "kg",
|
|
521
|
+
"lbs": "lbs",
|
|
522
|
+
"Bust": "Bryst",
|
|
523
|
+
"Waist": "Talje",
|
|
524
|
+
"Hips": "Hofter",
|
|
525
|
+
"Shoulders": "Skuldre",
|
|
526
|
+
"Inseam": "Indvendig benlængde",
|
|
527
|
+
"Foot length": "Fodlængde",
|
|
528
|
+
"Chest": "Bryst",
|
|
529
|
+
"Sleeve": "Ærme",
|
|
530
|
+
"Neck": "Hals",
|
|
531
|
+
"Foot": "Fod",
|
|
532
|
+
"Shoe EU": "Sko EU",
|
|
533
|
+
"Shoe US": "Sko US",
|
|
534
|
+
"Shoe UK": "Sko UK",
|
|
535
|
+
"Shoe size (US)": "Sko størrelse (US)",
|
|
536
|
+
"Shoe size (UK)": "Sko størrelse (UK)",
|
|
537
|
+
"Shoe size (EU)": "Sko størrelse (EU)",
|
|
538
|
+
"United States": "De Forenede Stater",
|
|
539
|
+
"United Kingdom": "Det Forenede Kongerige",
|
|
540
|
+
"Europe (EU)": "Europa (EU)",
|
|
541
|
+
"France": "Frankrig",
|
|
542
|
+
"Italy": "Italien",
|
|
543
|
+
"Germany": "Tyskland",
|
|
544
|
+
"Spain": "Spanien",
|
|
545
|
+
"Japan": "Japan",
|
|
546
|
+
"China": "Kina",
|
|
547
|
+
"South Korea": "Sydkorea",
|
|
548
|
+
"Australia": "Australien",
|
|
549
|
+
"Brazil": "Brasilien",
|
|
550
|
+
"Preparing your image...": "Forbereder dit billede...",
|
|
551
|
+
"Analyzing body proportions...": "Analyserer kropsproportioner...",
|
|
552
|
+
"Matching garment to your photo...": "Matcher beklædning til dit billede...",
|
|
553
|
+
"Generating virtual try-on...": "Genererer virtuel prøvning...",
|
|
554
|
+
"Refining details...": "Forfiner detaljer...",
|
|
555
|
+
"Almost there...": "Næsten færdig...",
|
|
556
|
+
"Complete!": "Færdig!",
|
|
557
|
+
"This usually takes 15-25 seconds": "Dette tager normalt 15-25 sekunder",
|
|
558
|
+
"This usually takes 15-20 seconds": "Dette tager normalt 15-20 sekunder",
|
|
559
|
+
"Your Size": "Din Størrelse",
|
|
560
|
+
"High Confidence": "Høj Tillid",
|
|
561
|
+
"Medium Confidence": "Mellem Tillid",
|
|
562
|
+
"Low Confidence": "Lav Tillid",
|
|
563
|
+
"Sizing by Garment": "Størrelse efter Beklædning",
|
|
564
|
+
"Fit Summary": "Pasform Resumé",
|
|
565
|
+
"within range": "inden for rækkevidde",
|
|
566
|
+
"may be snug": "kan være stram",
|
|
567
|
+
"may be loose": "kan være løs",
|
|
568
|
+
"See details": "Se detaljer",
|
|
569
|
+
"Hide details": "Skjul detaljer",
|
|
570
|
+
"Area": "Område",
|
|
571
|
+
"You": "Du",
|
|
572
|
+
"Chart": "Diagram",
|
|
573
|
+
"Fit": "Pasform",
|
|
574
|
+
"Equivalent Sizes": "Ækvivalente Størrelser",
|
|
575
|
+
"Analyzing your size...": "Analyserer din størrelse...",
|
|
576
|
+
"Your size:": "Din størrelse:",
|
|
577
|
+
"Done": "Færdig",
|
|
578
|
+
"Try-on result": "Prøvningsresultat",
|
|
579
|
+
"Download": "Download",
|
|
580
|
+
"Start Over": "Start Forfra",
|
|
581
|
+
"Try Another": "Prøv En Anden",
|
|
582
|
+
"Something went wrong": "Noget gik galt",
|
|
583
|
+
"Try Again": "Prøv Igen",
|
|
584
|
+
"Please upload a JPEG, PNG, or WebP image.": "Upload venligst et JPEG, PNG eller WebP billede.",
|
|
585
|
+
"Image must be under 10MB.": "Billedet skal være under 10MB.",
|
|
586
|
+
"Try-on generation failed": "Prøvningsgenerering mislykkedes",
|
|
587
|
+
"Failed to start try-on": "Mislykkedes med at starte prøvning",
|
|
588
|
+
"SDK not configured. Please provide an API key.": "SDK ikke konfigureret. Venligst angiv en API-nøgle.",
|
|
589
|
+
"No product image found. Please set the product-image attribute.": "Ingen produktbillede fundet. Venligst indstil produkt-billede attributten.",
|
|
590
|
+
"My Profiles": "Mine Profiler",
|
|
591
|
+
"No saved profiles yet.": "Ingen gemte profiler endnu.",
|
|
592
|
+
"No history yet.": "Ingen historik endnu.",
|
|
593
|
+
"Product": "Produkt",
|
|
594
|
+
"Women's Profile": "Dameprofil",
|
|
595
|
+
"Men's Profile": "Herreprofil",
|
|
596
|
+
"Saved": "Gemt",
|
|
597
|
+
"Delete Profile": "Slet Profil"
|
|
598
|
+
};
|
|
599
|
+
const de = {
|
|
600
|
+
"Virtual Try-On": "Virtuelle Anprobe",
|
|
601
|
+
"Powered by": "Powered by",
|
|
602
|
+
"Profiles": "Profile",
|
|
603
|
+
"History": "Verlauf",
|
|
604
|
+
"Welcome": "Willkommen",
|
|
605
|
+
"Size": "Größe",
|
|
606
|
+
"Your Fit": "Ihre Passform",
|
|
607
|
+
"Try On": "Anprobieren",
|
|
608
|
+
"Find Your Perfect Size": "Finden Sie Ihre perfekte Größe",
|
|
609
|
+
"Get your size instantly, then try it on": "Erhalten Sie sofort Ihre Größe und probieren Sie sie an",
|
|
610
|
+
"Get Your Size": "Erhalten Sie Ihre Größe",
|
|
611
|
+
"Instant fit recommendation": "Sofortige Passformempfehlung",
|
|
612
|
+
"Try It On": "Probieren Sie es an",
|
|
613
|
+
"See how it looks on you": "Sehen Sie, wie es Ihnen steht",
|
|
614
|
+
"Find My Size": "Finde meine Größe",
|
|
615
|
+
"Takes less than a minute": "Dauert weniger als eine Minute",
|
|
616
|
+
"Upload a full body photo": "Laden Sie ein Ganzkörperfoto hoch",
|
|
617
|
+
"Drop your photo here or click to upload": "Legen Sie Ihr Foto hier ab oder klicken Sie, um es hochzuladen",
|
|
618
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG oder WebP (max 10MB)",
|
|
619
|
+
"Your photo": "Ihr Foto",
|
|
620
|
+
"Checking size guide...": "Größentabelle wird überprüft...",
|
|
621
|
+
"Looking for size chart data for this product": "Suche nach Größenangaben für dieses Produkt",
|
|
622
|
+
"How would you like to find your size?": "Wie möchten Sie Ihre Größe finden?",
|
|
623
|
+
"Size guide is not available for this product — sizing will use standard measurements": "Die Größentabelle ist für dieses Produkt nicht verfügbar — die Größenangaben verwenden Standardmaße",
|
|
624
|
+
"Size guide found for this product": "Größentabelle für dieses Produkt gefunden",
|
|
625
|
+
"Enter my measurements": "Geben Sie meine Maße ein",
|
|
626
|
+
"Chest, waist, hips, shoes & more": "Brust, Taille, Hüfte, Schuhe & mehr",
|
|
627
|
+
"& more": "& mehr",
|
|
628
|
+
"Best accuracy": "Beste Genauigkeit",
|
|
629
|
+
"Just height & weight": "Nur Größe & Gewicht",
|
|
630
|
+
"Quick estimate in seconds": "Schnelle Schätzung in Sekunden",
|
|
631
|
+
"Skip, just try it on": "Überspringen, einfach anprobieren",
|
|
632
|
+
"Upload a photo to see how it looks": "Laden Sie ein Foto hoch, um zu sehen, wie es aussieht",
|
|
633
|
+
"Back": "Zurück",
|
|
634
|
+
"Auto-fill from saved profile...": "Automatisches Ausfüllen aus gespeichertem Profil...",
|
|
635
|
+
"I'm shopping for": "Ich kaufe für",
|
|
636
|
+
"Men's": "Herren",
|
|
637
|
+
"Women's": "Damen",
|
|
638
|
+
"Sizing region": "Größenregion",
|
|
639
|
+
"Required for this product": "Erforderlich für dieses Produkt",
|
|
640
|
+
"Fit type": "Passformtyp",
|
|
641
|
+
"Petite": "Klein",
|
|
642
|
+
"Standard": "Standard",
|
|
643
|
+
"Tall": "Groß",
|
|
644
|
+
"Plus": "Plus",
|
|
645
|
+
"Optional — improve accuracy & save to profile": "Optional — Genauigkeit verbessern & im Profil speichern",
|
|
646
|
+
"Height": "Größe",
|
|
647
|
+
"Weight": "Gewicht",
|
|
648
|
+
"Fill in what you know — more measurements = better accuracy.": "Füllen Sie aus, was Sie wissen — mehr Maße = bessere Genauigkeit.",
|
|
649
|
+
"Save as profile": "Als Profil speichern",
|
|
650
|
+
"Profile name (e.g. John, Sarah)": "Profilname (z.B. John, Sarah)",
|
|
651
|
+
"Get My Size": "Erhalte meine Größe",
|
|
652
|
+
"cm": "cm",
|
|
653
|
+
"in": "in",
|
|
654
|
+
"ft": "ft",
|
|
655
|
+
"kg": "kg",
|
|
656
|
+
"lbs": "lbs",
|
|
657
|
+
"Bust": "Brust",
|
|
658
|
+
"Waist": "Taille",
|
|
659
|
+
"Hips": "Hüfte",
|
|
660
|
+
"Shoulders": "Schultern",
|
|
661
|
+
"Inseam": "Schrittlänge",
|
|
662
|
+
"Foot length": "Fußlänge",
|
|
663
|
+
"Chest": "Brust",
|
|
664
|
+
"Sleeve": "Ärmel",
|
|
665
|
+
"Neck": "Hals",
|
|
666
|
+
"Foot": "Fuß",
|
|
667
|
+
"Shoe EU": "Schuh EU",
|
|
668
|
+
"Shoe US": "Schuh US",
|
|
669
|
+
"Shoe UK": "Schuh UK",
|
|
670
|
+
"Shoe size (US)": "Schuhgröße (US)",
|
|
671
|
+
"Shoe size (UK)": "Schuhgröße (UK)",
|
|
672
|
+
"Shoe size (EU)": "Schuhgröße (EU)",
|
|
673
|
+
"United States": "Vereinigte Staaten",
|
|
674
|
+
"United Kingdom": "Vereinigtes Königreich",
|
|
675
|
+
"Europe (EU)": "Europa (EU)",
|
|
676
|
+
"France": "Frankreich",
|
|
677
|
+
"Italy": "Italien",
|
|
678
|
+
"Germany": "Deutschland",
|
|
679
|
+
"Spain": "Spanien",
|
|
680
|
+
"Japan": "Japan",
|
|
681
|
+
"China": "China",
|
|
682
|
+
"South Korea": "Südkorea",
|
|
683
|
+
"Australia": "Australien",
|
|
684
|
+
"Brazil": "Brasilien",
|
|
685
|
+
"Preparing your image...": "Bereite Ihr Bild vor...",
|
|
686
|
+
"Analyzing body proportions...": "Analysiere Körperproportionen...",
|
|
687
|
+
"Matching garment to your photo...": "Kleidung mit Ihrem Foto abgleichen...",
|
|
688
|
+
"Generating virtual try-on...": "Virtuelle Anprobe wird generiert...",
|
|
689
|
+
"Refining details...": "Details werden verfeinert...",
|
|
690
|
+
"Almost there...": "Fast fertig...",
|
|
691
|
+
"Complete!": "Fertig!",
|
|
692
|
+
"This usually takes 15-25 seconds": "Das dauert normalerweise 15-25 Sekunden",
|
|
693
|
+
"This usually takes 15-20 seconds": "Das dauert normalerweise 15-20 Sekunden",
|
|
694
|
+
"Your Size": "Ihre Größe",
|
|
695
|
+
"High Confidence": "Hohe Zuversicht",
|
|
696
|
+
"Medium Confidence": "Mittlere Zuversicht",
|
|
697
|
+
"Low Confidence": "Geringe Zuversicht",
|
|
698
|
+
"Sizing by Garment": "Größen nach Kleidungsstück",
|
|
699
|
+
"Fit Summary": "Passformübersicht",
|
|
700
|
+
"within range": "im Bereich",
|
|
701
|
+
"may be snug": "könnte eng sein",
|
|
702
|
+
"may be loose": "könnte locker sein",
|
|
703
|
+
"See details": "Details anzeigen",
|
|
704
|
+
"Hide details": "Details ausblenden",
|
|
705
|
+
"Area": "Bereich",
|
|
706
|
+
"You": "Sie",
|
|
707
|
+
"Chart": "Tabelle",
|
|
708
|
+
"Fit": "Passform",
|
|
709
|
+
"Equivalent Sizes": "Entsprechende Größen",
|
|
710
|
+
"Analyzing your size...": "Analysiere Ihre Größe...",
|
|
711
|
+
"Your size:": "Ihre Größe:",
|
|
712
|
+
"Done": "Fertig",
|
|
713
|
+
"Try-on result": "Anprobe-Ergebnis",
|
|
714
|
+
"Download": "Herunterladen",
|
|
715
|
+
"Start Over": "Neu starten",
|
|
716
|
+
"Try Another": "Eine andere ausprobieren",
|
|
717
|
+
"Something went wrong": "Etwas ist schiefgelaufen",
|
|
718
|
+
"Try Again": "Erneut versuchen",
|
|
719
|
+
"Please upload a JPEG, PNG, or WebP image.": "Bitte laden Sie ein JPEG-, PNG- oder WebP-Bild hoch.",
|
|
720
|
+
"Image must be under 10MB.": "Das Bild muss unter 10MB sein.",
|
|
721
|
+
"Try-on generation failed": "Generierung der Anprobe fehlgeschlagen",
|
|
722
|
+
"Failed to start try-on": "Anprobe konnte nicht gestartet werden",
|
|
723
|
+
"SDK not configured. Please provide an API key.": "SDK nicht konfiguriert. Bitte geben Sie einen API-Schlüssel an.",
|
|
724
|
+
"No product image found. Please set the product-image attribute.": "Kein Produktbild gefunden. Bitte setzen Sie das Attribut product-image.",
|
|
725
|
+
"My Profiles": "Meine Profile",
|
|
726
|
+
"No saved profiles yet.": "Noch keine gespeicherten Profile.",
|
|
727
|
+
"No history yet.": "Noch keine Historie.",
|
|
728
|
+
"Product": "Produkt",
|
|
729
|
+
"Women's Profile": "Damenprofil",
|
|
730
|
+
"Men's Profile": "Herrenprofil",
|
|
731
|
+
"Saved": "Gespeichert",
|
|
732
|
+
"Delete Profile": "Profil löschen"
|
|
733
|
+
};
|
|
734
|
+
const es = {
|
|
735
|
+
"Virtual Try-On": "Prueba Virtual",
|
|
736
|
+
"Powered by": "Desarrollado por",
|
|
737
|
+
"Profiles": "Perfiles",
|
|
738
|
+
"History": "Historial",
|
|
739
|
+
"Welcome": "Bienvenido",
|
|
740
|
+
"Size": "Tamaño",
|
|
741
|
+
"Your Fit": "Tu Ajuste",
|
|
742
|
+
"Try On": "Probar",
|
|
743
|
+
"Find Your Perfect Size": "Encuentra Tu Tamaño Perfecto",
|
|
744
|
+
"Get your size instantly, then try it on": "Obtén tu tamaño al instante y luego pruébatelo",
|
|
745
|
+
"Get Your Size": "Obtén Tu Tamaño",
|
|
746
|
+
"Instant fit recommendation": "Recomendación de ajuste instantánea",
|
|
747
|
+
"Try It On": "Pruébalo",
|
|
748
|
+
"See how it looks on you": "Ve cómo te queda",
|
|
749
|
+
"Find My Size": "Encuentra Mi Tamaño",
|
|
750
|
+
"Takes less than a minute": "Toma menos de un minuto",
|
|
751
|
+
"Upload a full body photo": "Sube una foto de cuerpo completo",
|
|
752
|
+
"Drop your photo here or click to upload": "Suelta tu foto aquí o haz clic para subir",
|
|
753
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG o WebP (máx 10MB)",
|
|
754
|
+
"Your photo": "Tu foto",
|
|
755
|
+
"Checking size guide...": "Verificando la guía de tallas...",
|
|
756
|
+
"Looking for size chart data for this product": "Buscando datos de la tabla de tallas para este producto",
|
|
757
|
+
"How would you like to find your size?": "¿Cómo te gustaría encontrar tu tamaño?",
|
|
758
|
+
"Size guide is not available for this product — sizing will use standard measurements": "La guía de tallas no está disponible para este producto — el tamaño usará medidas estándar",
|
|
759
|
+
"Size guide found for this product": "Guía de tallas encontrada para este producto",
|
|
760
|
+
"Enter my measurements": "Ingresa mis medidas",
|
|
761
|
+
"Chest, waist, hips, shoes & more": "Pecho, cintura, caderas, zapatos y más",
|
|
762
|
+
"& more": "& más",
|
|
763
|
+
"Best accuracy": "Mejor precisión",
|
|
764
|
+
"Just height & weight": "Solo altura y peso",
|
|
765
|
+
"Quick estimate in seconds": "Estimación rápida en segundos",
|
|
766
|
+
"Skip, just try it on": "Saltar, solo pruébatelo",
|
|
767
|
+
"Upload a photo to see how it looks": "Sube una foto para ver cómo se ve",
|
|
768
|
+
"Back": "Atrás",
|
|
769
|
+
"Auto-fill from saved profile...": "Autocompletar desde el perfil guardado...",
|
|
770
|
+
"I'm shopping for": "Estoy comprando para",
|
|
771
|
+
"Men's": "Hombres",
|
|
772
|
+
"Women's": "Mujeres",
|
|
773
|
+
"Sizing region": "Región de tallas",
|
|
774
|
+
"Required for this product": "Requerido para este producto",
|
|
775
|
+
"Fit type": "Tipo de ajuste",
|
|
776
|
+
"Petite": "Petite",
|
|
777
|
+
"Standard": "Estándar",
|
|
778
|
+
"Tall": "Alto",
|
|
779
|
+
"Plus": "Plus",
|
|
780
|
+
"Optional — improve accuracy & save to profile": "Opcional — mejora la precisión y guarda en el perfil",
|
|
781
|
+
"Height": "Altura",
|
|
782
|
+
"Weight": "Peso",
|
|
783
|
+
"Fill in what you know — more measurements = better accuracy.": "Completa lo que sepas — más medidas = mejor precisión.",
|
|
784
|
+
"Save as profile": "Guardar como perfil",
|
|
785
|
+
"Profile name (e.g. John, Sarah)": "Nombre del perfil (p. ej. Juan, Sara)",
|
|
786
|
+
"Get My Size": "Obtén Mi Tamaño",
|
|
787
|
+
"cm": "cm",
|
|
788
|
+
"in": "in",
|
|
789
|
+
"ft": "ft",
|
|
790
|
+
"kg": "kg",
|
|
791
|
+
"lbs": "lbs",
|
|
792
|
+
"Bust": "Busto",
|
|
793
|
+
"Waist": "Cintura",
|
|
794
|
+
"Hips": "Caderas",
|
|
795
|
+
"Shoulders": "Hombros",
|
|
796
|
+
"Inseam": "Entrepierna",
|
|
797
|
+
"Foot length": "Longitud del pie",
|
|
798
|
+
"Chest": "Pecho",
|
|
799
|
+
"Sleeve": "Manga",
|
|
800
|
+
"Neck": "Cuello",
|
|
801
|
+
"Foot": "Pie",
|
|
802
|
+
"Shoe EU": "Zapato EU",
|
|
803
|
+
"Shoe US": "Zapato US",
|
|
804
|
+
"Shoe UK": "Zapato UK",
|
|
805
|
+
"Shoe size (US)": "Tamaño de zapato (US)",
|
|
806
|
+
"Shoe size (UK)": "Tamaño de zapato (UK)",
|
|
807
|
+
"Shoe size (EU)": "Tamaño de zapato (EU)",
|
|
808
|
+
"United States": "Estados Unidos",
|
|
809
|
+
"United Kingdom": "Reino Unido",
|
|
810
|
+
"Europe (EU)": "Europa (EU)",
|
|
811
|
+
"France": "Francia",
|
|
812
|
+
"Italy": "Italia",
|
|
813
|
+
"Germany": "Alemania",
|
|
814
|
+
"Spain": "España",
|
|
815
|
+
"Japan": "Japón",
|
|
816
|
+
"China": "China",
|
|
817
|
+
"South Korea": "Corea del Sur",
|
|
818
|
+
"Australia": "Australia",
|
|
819
|
+
"Brazil": "Brasil",
|
|
820
|
+
"Preparing your image...": "Preparando tu imagen...",
|
|
821
|
+
"Analyzing body proportions...": "Analizando proporciones corporales...",
|
|
822
|
+
"Matching garment to your photo...": "Emparejando prenda con tu foto...",
|
|
823
|
+
"Generating virtual try-on...": "Generando prueba virtual...",
|
|
824
|
+
"Refining details...": "Refinando detalles...",
|
|
825
|
+
"Almost there...": "Casi allí...",
|
|
826
|
+
"Complete!": "¡Completo!",
|
|
827
|
+
"This usually takes 15-25 seconds": "Esto generalmente toma de 15 a 25 segundos",
|
|
828
|
+
"This usually takes 15-20 seconds": "Esto generalmente toma de 15 a 20 segundos",
|
|
829
|
+
"Your Size": "Tu Tamaño",
|
|
830
|
+
"High Confidence": "Alta Confianza",
|
|
831
|
+
"Medium Confidence": "Confianza Media",
|
|
832
|
+
"Low Confidence": "Baja Confianza",
|
|
833
|
+
"Sizing by Garment": "Tamaño por Prenda",
|
|
834
|
+
"Fit Summary": "Resumen de Ajuste",
|
|
835
|
+
"within range": "dentro del rango",
|
|
836
|
+
"may be snug": "puede ser ajustado",
|
|
837
|
+
"may be loose": "puede ser holgado",
|
|
838
|
+
"See details": "Ver detalles",
|
|
839
|
+
"Hide details": "Ocultar detalles",
|
|
840
|
+
"Area": "Área",
|
|
841
|
+
"You": "Tú",
|
|
842
|
+
"Chart": "Tabla",
|
|
843
|
+
"Fit": "Ajuste",
|
|
844
|
+
"Equivalent Sizes": "Tamaños Equivalentes",
|
|
845
|
+
"Analyzing your size...": "Analizando tu tamaño...",
|
|
846
|
+
"Your size:": "Tu tamaño:",
|
|
847
|
+
"Done": "Hecho",
|
|
848
|
+
"Try-on result": "Resultado de la prueba",
|
|
849
|
+
"Download": "Descargar",
|
|
850
|
+
"Start Over": "Comenzar de Nuevo",
|
|
851
|
+
"Try Another": "Probar Otro",
|
|
852
|
+
"Something went wrong": "Algo salió mal",
|
|
853
|
+
"Try Again": "Inténtalo de Nuevo",
|
|
854
|
+
"Please upload a JPEG, PNG, or WebP image.": "Por favor, sube una imagen JPEG, PNG o WebP.",
|
|
855
|
+
"Image must be under 10MB.": "La imagen debe ser menor de 10MB.",
|
|
856
|
+
"Try-on generation failed": "Falló la generación de la prueba",
|
|
857
|
+
"Failed to start try-on": "No se pudo iniciar la prueba",
|
|
858
|
+
"SDK not configured. Please provide an API key.": "SDK no configurado. Por favor, proporciona una clave API.",
|
|
859
|
+
"No product image found. Please set the product-image attribute.": "No se encontró imagen del producto. Por favor, establece el atributo de imagen del producto.",
|
|
860
|
+
"My Profiles": "Mis Perfiles",
|
|
861
|
+
"No saved profiles yet.": "No hay perfiles guardados aún.",
|
|
862
|
+
"No history yet.": "No hay historial aún.",
|
|
863
|
+
"Product": "Producto",
|
|
864
|
+
"Women's Profile": "Perfil de Mujeres",
|
|
865
|
+
"Men's Profile": "Perfil de Hombres",
|
|
866
|
+
"Saved": "Guardado",
|
|
867
|
+
"Delete Profile": "Eliminar Perfil"
|
|
868
|
+
};
|
|
869
|
+
const fi = {
|
|
870
|
+
"Virtual Try-On": "Virtuaalinen kokeilu",
|
|
871
|
+
"Powered by": "Voimavara: ",
|
|
872
|
+
"Profiles": "Profiilit",
|
|
873
|
+
"History": "Historia",
|
|
874
|
+
"Welcome": "Tervetuloa",
|
|
875
|
+
"Size": "Koko",
|
|
876
|
+
"Your Fit": "Sopivuutesi",
|
|
877
|
+
"Try On": "Kokeile",
|
|
878
|
+
"Find Your Perfect Size": "Löydä täydellinen kokosi",
|
|
879
|
+
"Get your size instantly, then try it on": "Hanki kokosi heti, ja kokeile sitten",
|
|
880
|
+
"Get Your Size": "Hanki kokosi",
|
|
881
|
+
"Instant fit recommendation": "Välitön sopivuussuositus",
|
|
882
|
+
"Try It On": "Kokeile sitä",
|
|
883
|
+
"See how it looks on you": "Näe miltä se näyttää päälläsi",
|
|
884
|
+
"Find My Size": "Löydä kokoni",
|
|
885
|
+
"Takes less than a minute": "Kestää alle minuutin",
|
|
886
|
+
"Upload a full body photo": "Lataa täysikokoinen valokuva",
|
|
887
|
+
"Drop your photo here or click to upload": "Vedä valokuvasi tänne tai napsauta ladataaksesi",
|
|
888
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG tai WebP (max 10MB)",
|
|
889
|
+
"Your photo": "Valokuvasi",
|
|
890
|
+
"Checking size guide...": "Tarkistetaan kokotaulukkoa...",
|
|
891
|
+
"Looking for size chart data for this product": "Etsitään kokotaulukon tietoja tälle tuotteelle",
|
|
892
|
+
"How would you like to find your size?": "Miten haluaisit löytää kokosi?",
|
|
893
|
+
"Size guide is not available for this product — sizing will use standard measurements": "Kokotaulukko ei ole saatavilla tälle tuotteelle — koko perustuu standardimittauksiin",
|
|
894
|
+
"Size guide found for this product": "Kokotaulukko löytyi tälle tuotteelle",
|
|
895
|
+
"Enter my measurements": "Syötä mitat",
|
|
896
|
+
"Chest, waist, hips, shoes & more": "Rinta, vyötärö, lantio, kengät & muuta",
|
|
897
|
+
"& more": "& muuta",
|
|
898
|
+
"Best accuracy": "Paras tarkkuus",
|
|
899
|
+
"Just height & weight": "Vain pituus & paino",
|
|
900
|
+
"Quick estimate in seconds": "Nopea arvio sekunneissa",
|
|
901
|
+
"Skip, just try it on": "Ohita, kokeile vain",
|
|
902
|
+
"Upload a photo to see how it looks": "Lataa valokuva nähdäksesi miltä se näyttää",
|
|
903
|
+
"Back": "Takaisin",
|
|
904
|
+
"Auto-fill from saved profile...": "Täytä automaattisesti tallennetusta profiilista...",
|
|
905
|
+
"I'm shopping for": "Ostan",
|
|
906
|
+
"Men's": "Miesten",
|
|
907
|
+
"Women's": "Naisten",
|
|
908
|
+
"Sizing region": "Kokovalinta-alue",
|
|
909
|
+
"Required for this product": "Vaaditaan tälle tuotteelle",
|
|
910
|
+
"Fit type": "Sopivuustyyppi",
|
|
911
|
+
"Petite": "Pieni",
|
|
912
|
+
"Standard": "Normaali",
|
|
913
|
+
"Tall": "Pitkä",
|
|
914
|
+
"Plus": "Plus",
|
|
915
|
+
"Optional — improve accuracy & save to profile": "Valinnainen — paranna tarkkuutta & tallenna profiiliin",
|
|
916
|
+
"Height": "Pituus",
|
|
917
|
+
"Weight": "Paino",
|
|
918
|
+
"Fill in what you know — more measurements = better accuracy.": "Täytä mitä tiedät — enemmän mittoja = parempi tarkkuus.",
|
|
919
|
+
"Save as profile": "Tallenna profiilina",
|
|
920
|
+
"Profile name (e.g. John, Sarah)": "Profiilin nimi (esim. John, Sarah)",
|
|
921
|
+
"Get My Size": "Hanki kokoni",
|
|
922
|
+
"cm": "cm",
|
|
923
|
+
"in": "in",
|
|
924
|
+
"ft": "ft",
|
|
925
|
+
"kg": "kg",
|
|
926
|
+
"lbs": "lbs",
|
|
927
|
+
"Bust": "Rinta",
|
|
928
|
+
"Waist": "Vyötärö",
|
|
929
|
+
"Hips": "Lantio",
|
|
930
|
+
"Shoulders": "Hartiat",
|
|
931
|
+
"Inseam": "Sisäsauma",
|
|
932
|
+
"Foot length": "Jalan pituus",
|
|
933
|
+
"Chest": "Rinta",
|
|
934
|
+
"Sleeve": "Hiha",
|
|
935
|
+
"Neck": "Kaula",
|
|
936
|
+
"Foot": "Jalka",
|
|
937
|
+
"Shoe EU": "Kenkä EU",
|
|
938
|
+
"Shoe US": "Kenkä US",
|
|
939
|
+
"Shoe UK": "Kenkä UK",
|
|
940
|
+
"Shoe size (US)": "Kenkäkoko (US)",
|
|
941
|
+
"Shoe size (UK)": "Kenkäkoko (UK)",
|
|
942
|
+
"Shoe size (EU)": "Kenkäkoko (EU)",
|
|
943
|
+
"United States": "Yhdysvallat",
|
|
944
|
+
"United Kingdom": "Yhdistynyt kuningaskunta",
|
|
945
|
+
"Europe (EU)": "Eurooppa (EU)",
|
|
946
|
+
"France": "Ranska",
|
|
947
|
+
"Italy": "Italia",
|
|
948
|
+
"Germany": "Saksa",
|
|
949
|
+
"Spain": "Espanja",
|
|
950
|
+
"Japan": "Japani",
|
|
951
|
+
"China": "Kiina",
|
|
952
|
+
"South Korea": "Etelä-Korea",
|
|
953
|
+
"Australia": "Australia",
|
|
954
|
+
"Brazil": "Brasilia",
|
|
955
|
+
"Preparing your image...": "Valmistellaan kuvaasi...",
|
|
956
|
+
"Analyzing body proportions...": "Analysoidaan kehon mittasuhteita...",
|
|
957
|
+
"Matching garment to your photo...": "Sovitetaan vaate kuvaasi...",
|
|
958
|
+
"Generating virtual try-on...": "Luodaan virtuaalista kokeilua...",
|
|
959
|
+
"Refining details...": "Hienosäädetään yksityiskohtia...",
|
|
960
|
+
"Almost there...": "Melkein valmis...",
|
|
961
|
+
"Complete!": "Valmis!",
|
|
962
|
+
"This usually takes 15-25 seconds": "Tämä kestää yleensä 15-25 sekuntia",
|
|
963
|
+
"This usually takes 15-20 seconds": "Tämä kestää yleensä 15-20 sekuntia",
|
|
964
|
+
"Your Size": "Kokosi",
|
|
965
|
+
"High Confidence": "Korkea luottamus",
|
|
966
|
+
"Medium Confidence": "Keskitasoinen luottamus",
|
|
967
|
+
"Low Confidence": "Matala luottamus",
|
|
968
|
+
"Sizing by Garment": "Koko vaatteittain",
|
|
969
|
+
"Fit Summary": "Sopivuuden yhteenveto",
|
|
970
|
+
"within range": "sopivalla alueella",
|
|
971
|
+
"may be snug": "voi olla tiukka",
|
|
972
|
+
"may be loose": "voi olla löysä",
|
|
973
|
+
"See details": "Näe yksityiskohdat",
|
|
974
|
+
"Hide details": "Piilota yksityiskohdat",
|
|
975
|
+
"Area": "Alue",
|
|
976
|
+
"You": "Sinä",
|
|
977
|
+
"Chart": "Taulukko",
|
|
978
|
+
"Fit": "Sopivuus",
|
|
979
|
+
"Equivalent Sizes": "Vastaavat koot",
|
|
980
|
+
"Analyzing your size...": "Analysoidaan kokoasi...",
|
|
981
|
+
"Your size:": "Kokosi:",
|
|
982
|
+
"Done": "Valmis",
|
|
983
|
+
"Try-on result": "Kokeilutulos",
|
|
984
|
+
"Download": "Lataa",
|
|
985
|
+
"Start Over": "Aloita alusta",
|
|
986
|
+
"Try Another": "Kokeile toista",
|
|
987
|
+
"Something went wrong": "Jotain meni pieleen",
|
|
988
|
+
"Try Again": "Yritä uudelleen",
|
|
989
|
+
"Please upload a JPEG, PNG, or WebP image.": "Lataa JPEG-, PNG- tai WebP-kuva.",
|
|
990
|
+
"Image must be under 10MB.": "Kuvan on oltava alle 10MB.",
|
|
991
|
+
"Try-on generation failed": "Kokeilun luonti epäonnistui",
|
|
992
|
+
"Failed to start try-on": "Kokeilun aloittaminen epäonnistui",
|
|
993
|
+
"SDK not configured. Please provide an API key.": "SDK:tä ei ole määritetty. Anna API-avain.",
|
|
994
|
+
"No product image found. Please set the product-image attribute.": "Tuotekuvaa ei löytynyt. Aseta product-image-attribuutti.",
|
|
995
|
+
"My Profiles": "Profiilini",
|
|
996
|
+
"No saved profiles yet.": "Ei tallennettuja profiileja vielä.",
|
|
997
|
+
"No history yet.": "Ei historiaa vielä.",
|
|
998
|
+
"Product": "Tuote",
|
|
999
|
+
"Women's Profile": "Naisten profiili",
|
|
1000
|
+
"Men's Profile": "Miesten profiili",
|
|
1001
|
+
"Saved": "Tallennettu",
|
|
1002
|
+
"Delete Profile": "Poista profiili"
|
|
1003
|
+
};
|
|
1004
|
+
const fr = {
|
|
1005
|
+
"Virtual Try-On": "Essayage Virtuel",
|
|
1006
|
+
"Powered by": "Propulsé par",
|
|
1007
|
+
"Profiles": "Profils",
|
|
1008
|
+
"History": "Historique",
|
|
1009
|
+
"Welcome": "Bienvenue",
|
|
1010
|
+
"Size": "Taille",
|
|
1011
|
+
"Your Fit": "Votre Ajustement",
|
|
1012
|
+
"Try On": "Essayer",
|
|
1013
|
+
"Find Your Perfect Size": "Trouvez Votre Taille Parfaite",
|
|
1014
|
+
"Get your size instantly, then try it on": "Obtenez votre taille instantanément, puis essayez-la",
|
|
1015
|
+
"Get Your Size": "Obtenez Votre Taille",
|
|
1016
|
+
"Instant fit recommendation": "Recommandation de taille instantanée",
|
|
1017
|
+
"Try It On": "Essayez-le",
|
|
1018
|
+
"See how it looks on you": "Voyez comment cela vous va",
|
|
1019
|
+
"Find My Size": "Trouvez Ma Taille",
|
|
1020
|
+
"Takes less than a minute": "Moins d'une minute",
|
|
1021
|
+
"Upload a full body photo": "Téléchargez une photo en plein corps",
|
|
1022
|
+
"Drop your photo here or click to upload": "Déposez votre photo ici ou cliquez pour télécharger",
|
|
1023
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG ou WebP (max 10MB)",
|
|
1024
|
+
"Your photo": "Votre photo",
|
|
1025
|
+
"Checking size guide...": "Vérification du guide des tailles...",
|
|
1026
|
+
"Looking for size chart data for this product": "Recherche des données de tableau des tailles pour ce produit",
|
|
1027
|
+
"How would you like to find your size?": "Comment souhaitez-vous trouver votre taille ?",
|
|
1028
|
+
"Size guide is not available for this product — sizing will use standard measurements": "Le guide des tailles n'est pas disponible pour ce produit — les tailles utiliseront des mesures standard",
|
|
1029
|
+
"Size guide found for this product": "Guide des tailles trouvé pour ce produit",
|
|
1030
|
+
"Enter my measurements": "Entrez mes mesures",
|
|
1031
|
+
"Chest, waist, hips, shoes & more": "Poitrine, taille, hanches, chaussures & plus",
|
|
1032
|
+
"& more": "& plus",
|
|
1033
|
+
"Best accuracy": "Meilleure précision",
|
|
1034
|
+
"Just height & weight": "Juste taille & poids",
|
|
1035
|
+
"Quick estimate in seconds": "Estimation rapide en secondes",
|
|
1036
|
+
"Skip, just try it on": "Passer, essayez-le simplement",
|
|
1037
|
+
"Upload a photo to see how it looks": "Téléchargez une photo pour voir comment cela rend",
|
|
1038
|
+
"Back": "Retour",
|
|
1039
|
+
"Auto-fill from saved profile...": "Remplissage automatique à partir du profil enregistré...",
|
|
1040
|
+
"I'm shopping for": "Je fais des achats pour",
|
|
1041
|
+
"Men's": "Homme",
|
|
1042
|
+
"Women's": "Femme",
|
|
1043
|
+
"Sizing region": "Région de taille",
|
|
1044
|
+
"Required for this product": "Requis pour ce produit",
|
|
1045
|
+
"Fit type": "Type d'ajustement",
|
|
1046
|
+
"Petite": "Petite",
|
|
1047
|
+
"Standard": "Standard",
|
|
1048
|
+
"Tall": "Grande",
|
|
1049
|
+
"Plus": "Plus",
|
|
1050
|
+
"Optional — improve accuracy & save to profile": "Optionnel — améliorer la précision & enregistrer dans le profil",
|
|
1051
|
+
"Height": "Taille",
|
|
1052
|
+
"Weight": "Poids",
|
|
1053
|
+
"Fill in what you know — more measurements = better accuracy.": "Remplissez ce que vous savez — plus de mesures = meilleure précision.",
|
|
1054
|
+
"Save as profile": "Enregistrer comme profil",
|
|
1055
|
+
"Profile name (e.g. John, Sarah)": "Nom du profil (ex. John, Sarah)",
|
|
1056
|
+
"Get My Size": "Obtenez Ma Taille",
|
|
1057
|
+
"cm": "cm",
|
|
1058
|
+
"in": "in",
|
|
1059
|
+
"ft": "ft",
|
|
1060
|
+
"kg": "kg",
|
|
1061
|
+
"lbs": "lbs",
|
|
1062
|
+
"Bust": "Poitrine",
|
|
1063
|
+
"Waist": "Taille",
|
|
1064
|
+
"Hips": "Hanches",
|
|
1065
|
+
"Shoulders": "Épaules",
|
|
1066
|
+
"Inseam": "Entrejambe",
|
|
1067
|
+
"Foot length": "Longueur de pied",
|
|
1068
|
+
"Chest": "Poitrine",
|
|
1069
|
+
"Sleeve": "Manche",
|
|
1070
|
+
"Neck": "Cou",
|
|
1071
|
+
"Foot": "Pied",
|
|
1072
|
+
"Shoe EU": "Chaussure EU",
|
|
1073
|
+
"Shoe US": "Chaussure US",
|
|
1074
|
+
"Shoe UK": "Chaussure UK",
|
|
1075
|
+
"Shoe size (US)": "Taille de chaussure (US)",
|
|
1076
|
+
"Shoe size (UK)": "Taille de chaussure (UK)",
|
|
1077
|
+
"Shoe size (EU)": "Taille de chaussure (EU)",
|
|
1078
|
+
"United States": "États-Unis",
|
|
1079
|
+
"United Kingdom": "Royaume-Uni",
|
|
1080
|
+
"Europe (EU)": "Europe (EU)",
|
|
1081
|
+
"France": "France",
|
|
1082
|
+
"Italy": "Italie",
|
|
1083
|
+
"Germany": "Allemagne",
|
|
1084
|
+
"Spain": "Espagne",
|
|
1085
|
+
"Japan": "Japon",
|
|
1086
|
+
"China": "Chine",
|
|
1087
|
+
"South Korea": "Corée du Sud",
|
|
1088
|
+
"Australia": "Australie",
|
|
1089
|
+
"Brazil": "Brésil",
|
|
1090
|
+
"Preparing your image...": "Préparation de votre image...",
|
|
1091
|
+
"Analyzing body proportions...": "Analyse des proportions corporelles...",
|
|
1092
|
+
"Matching garment to your photo...": "Correspondance du vêtement avec votre photo...",
|
|
1093
|
+
"Generating virtual try-on...": "Génération de l'essayage virtuel...",
|
|
1094
|
+
"Refining details...": "Affinage des détails...",
|
|
1095
|
+
"Almost there...": "Presque là...",
|
|
1096
|
+
"Complete!": "Terminé !",
|
|
1097
|
+
"This usually takes 15-25 seconds": "Cela prend généralement 15-25 secondes",
|
|
1098
|
+
"This usually takes 15-20 seconds": "Cela prend généralement 15-20 secondes",
|
|
1099
|
+
"Your Size": "Votre Taille",
|
|
1100
|
+
"High Confidence": "Confiance Élevée",
|
|
1101
|
+
"Medium Confidence": "Confiance Moyenne",
|
|
1102
|
+
"Low Confidence": "Confiance Faible",
|
|
1103
|
+
"Sizing by Garment": "Taille par Vêtement",
|
|
1104
|
+
"Fit Summary": "Résumé de l'Ajustement",
|
|
1105
|
+
"within range": "dans la plage",
|
|
1106
|
+
"may be snug": "peut être ajusté",
|
|
1107
|
+
"may be loose": "peut être lâche",
|
|
1108
|
+
"See details": "Voir les détails",
|
|
1109
|
+
"Hide details": "Cacher les détails",
|
|
1110
|
+
"Area": "Zone",
|
|
1111
|
+
"You": "Vous",
|
|
1112
|
+
"Chart": "Tableau",
|
|
1113
|
+
"Fit": "Ajustement",
|
|
1114
|
+
"Equivalent Sizes": "Tailles Équivalentes",
|
|
1115
|
+
"Analyzing your size...": "Analyse de votre taille...",
|
|
1116
|
+
"Your size:": "Votre taille :",
|
|
1117
|
+
"Done": "Fait",
|
|
1118
|
+
"Try-on result": "Résultat de l'essayage",
|
|
1119
|
+
"Download": "Télécharger",
|
|
1120
|
+
"Start Over": "Recommencer",
|
|
1121
|
+
"Try Another": "Essayer Un Autre",
|
|
1122
|
+
"Something went wrong": "Quelque chose a mal tourné",
|
|
1123
|
+
"Try Again": "Réessayez",
|
|
1124
|
+
"Please upload a JPEG, PNG, or WebP image.": "Veuillez télécharger une image JPEG, PNG ou WebP.",
|
|
1125
|
+
"Image must be under 10MB.": "L'image doit faire moins de 10MB.",
|
|
1126
|
+
"Try-on generation failed": "Échec de la génération de l'essayage",
|
|
1127
|
+
"Failed to start try-on": "Échec du démarrage de l'essayage",
|
|
1128
|
+
"SDK not configured. Please provide an API key.": "SDK non configuré. Veuillez fournir une clé API.",
|
|
1129
|
+
"No product image found. Please set the product-image attribute.": "Aucune image de produit trouvée. Veuillez définir l'attribut d'image du produit.",
|
|
1130
|
+
"My Profiles": "Mes Profils",
|
|
1131
|
+
"No saved profiles yet.": "Aucun profil enregistré pour le moment.",
|
|
1132
|
+
"No history yet.": "Aucun historique pour le moment.",
|
|
1133
|
+
"Product": "Produit",
|
|
1134
|
+
"Women's Profile": "Profil Femme",
|
|
1135
|
+
"Men's Profile": "Profil Homme",
|
|
1136
|
+
"Saved": "Enregistré",
|
|
1137
|
+
"Delete Profile": "Supprimer le Profil"
|
|
1138
|
+
};
|
|
1139
|
+
const it = {
|
|
1140
|
+
"Virtual Try-On": "Prova Virtuale",
|
|
1141
|
+
"Powered by": "Powered by",
|
|
1142
|
+
"Profiles": "Profili",
|
|
1143
|
+
"History": "Cronologia",
|
|
1144
|
+
"Welcome": "Benvenuto",
|
|
1145
|
+
"Size": "Taglia",
|
|
1146
|
+
"Your Fit": "La tua vestibilità",
|
|
1147
|
+
"Try On": "Prova",
|
|
1148
|
+
"Find Your Perfect Size": "Trova la tua taglia perfetta",
|
|
1149
|
+
"Get your size instantly, then try it on": "Ottieni la tua taglia immediatamente, poi provala",
|
|
1150
|
+
"Get Your Size": "Ottieni la tua taglia",
|
|
1151
|
+
"Instant fit recommendation": "Raccomandazione di vestibilità istantanea",
|
|
1152
|
+
"Try It On": "Provalo",
|
|
1153
|
+
"See how it looks on you": "Guarda come ti sta",
|
|
1154
|
+
"Find My Size": "Trova la mia taglia",
|
|
1155
|
+
"Takes less than a minute": "Ci vuole meno di un minuto",
|
|
1156
|
+
"Upload a full body photo": "Carica una foto a figura intera",
|
|
1157
|
+
"Drop your photo here or click to upload": "Trascina la tua foto qui o clicca per caricare",
|
|
1158
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG o WebP (max 10MB)",
|
|
1159
|
+
"Your photo": "La tua foto",
|
|
1160
|
+
"Checking size guide...": "Controllando la guida alle taglie...",
|
|
1161
|
+
"Looking for size chart data for this product": "Cercando i dati della tabella delle taglie per questo prodotto",
|
|
1162
|
+
"How would you like to find your size?": "Come vuoi trovare la tua taglia?",
|
|
1163
|
+
"Size guide is not available for this product — sizing will use standard measurements": "La guida alle taglie non è disponibile per questo prodotto — le taglie utilizzeranno misure standard",
|
|
1164
|
+
"Size guide found for this product": "Guida alle taglie trovata per questo prodotto",
|
|
1165
|
+
"Enter my measurements": "Inserisci le mie misure",
|
|
1166
|
+
"Chest, waist, hips, shoes & more": "Petto, vita, fianchi, scarpe e altro",
|
|
1167
|
+
"& more": "& altro",
|
|
1168
|
+
"Best accuracy": "Migliore precisione",
|
|
1169
|
+
"Just height & weight": "Solo altezza e peso",
|
|
1170
|
+
"Quick estimate in seconds": "Stima rapida in secondi",
|
|
1171
|
+
"Skip, just try it on": "Salta, provalo e basta",
|
|
1172
|
+
"Upload a photo to see how it looks": "Carica una foto per vedere come appare",
|
|
1173
|
+
"Back": "Indietro",
|
|
1174
|
+
"Auto-fill from saved profile...": "Compilazione automatica dal profilo salvato...",
|
|
1175
|
+
"I'm shopping for": "Sto cercando",
|
|
1176
|
+
"Men's": "Uomo",
|
|
1177
|
+
"Women's": "Donna",
|
|
1178
|
+
"Sizing region": "Regione di taglia",
|
|
1179
|
+
"Required for this product": "Richiesto per questo prodotto",
|
|
1180
|
+
"Fit type": "Tipo di vestibilità",
|
|
1181
|
+
"Petite": "Petite",
|
|
1182
|
+
"Standard": "Standard",
|
|
1183
|
+
"Tall": "Alto",
|
|
1184
|
+
"Plus": "Plus",
|
|
1185
|
+
"Optional — improve accuracy & save to profile": "Facoltativo — migliora la precisione e salva nel profilo",
|
|
1186
|
+
"Height": "Altezza",
|
|
1187
|
+
"Weight": "Peso",
|
|
1188
|
+
"Fill in what you know — more measurements = better accuracy.": "Compila ciò che sai — più misure = migliore precisione.",
|
|
1189
|
+
"Save as profile": "Salva come profilo",
|
|
1190
|
+
"Profile name (e.g. John, Sarah)": "Nome profilo (es. John, Sarah)",
|
|
1191
|
+
"Get My Size": "Ottieni la mia taglia",
|
|
1192
|
+
"cm": "cm",
|
|
1193
|
+
"in": "in",
|
|
1194
|
+
"ft": "ft",
|
|
1195
|
+
"kg": "kg",
|
|
1196
|
+
"lbs": "lbs",
|
|
1197
|
+
"Bust": "Busto",
|
|
1198
|
+
"Waist": "Vita",
|
|
1199
|
+
"Hips": "Fianchi",
|
|
1200
|
+
"Shoulders": "Spalle",
|
|
1201
|
+
"Inseam": "Interno gamba",
|
|
1202
|
+
"Foot length": "Lunghezza piede",
|
|
1203
|
+
"Chest": "Petto",
|
|
1204
|
+
"Sleeve": "Manica",
|
|
1205
|
+
"Neck": "Collo",
|
|
1206
|
+
"Foot": "Piede",
|
|
1207
|
+
"Shoe EU": "Scarpa EU",
|
|
1208
|
+
"Shoe US": "Scarpa US",
|
|
1209
|
+
"Shoe UK": "Scarpa UK",
|
|
1210
|
+
"Shoe size (US)": "Taglia scarpa (US)",
|
|
1211
|
+
"Shoe size (UK)": "Taglia scarpa (UK)",
|
|
1212
|
+
"Shoe size (EU)": "Taglia scarpa (EU)",
|
|
1213
|
+
"United States": "Stati Uniti",
|
|
1214
|
+
"United Kingdom": "Regno Unito",
|
|
1215
|
+
"Europe (EU)": "Europa (EU)",
|
|
1216
|
+
"France": "Francia",
|
|
1217
|
+
"Italy": "Italia",
|
|
1218
|
+
"Germany": "Germania",
|
|
1219
|
+
"Spain": "Spagna",
|
|
1220
|
+
"Japan": "Giappone",
|
|
1221
|
+
"China": "Cina",
|
|
1222
|
+
"South Korea": "Corea del Sud",
|
|
1223
|
+
"Australia": "Australia",
|
|
1224
|
+
"Brazil": "Brasile",
|
|
1225
|
+
"Preparing your image...": "Preparando la tua immagine...",
|
|
1226
|
+
"Analyzing body proportions...": "Analizzando le proporzioni del corpo...",
|
|
1227
|
+
"Matching garment to your photo...": "Abbinando il capo alla tua foto...",
|
|
1228
|
+
"Generating virtual try-on...": "Generando la prova virtuale...",
|
|
1229
|
+
"Refining details...": "Affinando i dettagli...",
|
|
1230
|
+
"Almost there...": "Quasi fatto...",
|
|
1231
|
+
"Complete!": "Completato!",
|
|
1232
|
+
"This usually takes 15-25 seconds": "Di solito ci vogliono 15-25 secondi",
|
|
1233
|
+
"This usually takes 15-20 seconds": "Di solito ci vogliono 15-20 secondi",
|
|
1234
|
+
"Your Size": "La tua taglia",
|
|
1235
|
+
"High Confidence": "Alta fiducia",
|
|
1236
|
+
"Medium Confidence": "Fiducia media",
|
|
1237
|
+
"Low Confidence": "Bassa fiducia",
|
|
1238
|
+
"Sizing by Garment": "Taglia per capo",
|
|
1239
|
+
"Fit Summary": "Riepilogo della vestibilità",
|
|
1240
|
+
"within range": "nella norma",
|
|
1241
|
+
"may be snug": "può essere aderente",
|
|
1242
|
+
"may be loose": "può essere largo",
|
|
1243
|
+
"See details": "Vedi dettagli",
|
|
1244
|
+
"Hide details": "Nascondi dettagli",
|
|
1245
|
+
"Area": "Area",
|
|
1246
|
+
"You": "Tu",
|
|
1247
|
+
"Chart": "Tabella",
|
|
1248
|
+
"Fit": "Vestibilità",
|
|
1249
|
+
"Equivalent Sizes": "Taglie equivalenti",
|
|
1250
|
+
"Analyzing your size...": "Analizzando la tua taglia...",
|
|
1251
|
+
"Your size:": "La tua taglia:",
|
|
1252
|
+
"Done": "Fatto",
|
|
1253
|
+
"Try-on result": "Risultato della prova",
|
|
1254
|
+
"Download": "Scarica",
|
|
1255
|
+
"Start Over": "Ricomincia",
|
|
1256
|
+
"Try Another": "Prova un altro",
|
|
1257
|
+
"Something went wrong": "Qualcosa è andato storto",
|
|
1258
|
+
"Try Again": "Riprova",
|
|
1259
|
+
"Please upload a JPEG, PNG, or WebP image.": "Si prega di caricare un'immagine JPEG, PNG o WebP.",
|
|
1260
|
+
"Image must be under 10MB.": "L'immagine deve essere inferiore a 10MB.",
|
|
1261
|
+
"Try-on generation failed": "Generazione della prova fallita",
|
|
1262
|
+
"Failed to start try-on": "Impossibile avviare la prova",
|
|
1263
|
+
"SDK not configured. Please provide an API key.": "SDK non configurato. Si prega di fornire una chiave API.",
|
|
1264
|
+
"No product image found. Please set the product-image attribute.": "Nessuna immagine del prodotto trovata. Si prega di impostare l'attributo dell'immagine del prodotto.",
|
|
1265
|
+
"My Profiles": "I miei profili",
|
|
1266
|
+
"No saved profiles yet.": "Nessun profilo salvato ancora.",
|
|
1267
|
+
"No history yet.": "Nessuna cronologia ancora.",
|
|
1268
|
+
"Product": "Prodotto",
|
|
1269
|
+
"Women's Profile": "Profilo Donna",
|
|
1270
|
+
"Men's Profile": "Profilo Uomo",
|
|
1271
|
+
"Saved": "Salvato",
|
|
1272
|
+
"Delete Profile": "Elimina profilo"
|
|
1273
|
+
};
|
|
1274
|
+
const ja = {
|
|
1275
|
+
"Virtual Try-On": "バーチャル試着",
|
|
1276
|
+
"Powered by": "提供元",
|
|
1277
|
+
"Profiles": "プロフィール",
|
|
1278
|
+
"History": "履歴",
|
|
1279
|
+
"Welcome": "ようこそ",
|
|
1280
|
+
"Size": "サイズ",
|
|
1281
|
+
"Your Fit": "あなたのフィット",
|
|
1282
|
+
"Try On": "試着する",
|
|
1283
|
+
"Find Your Perfect Size": "あなたにぴったりのサイズを見つける",
|
|
1284
|
+
"Get your size instantly, then try it on": "すぐにサイズを取得して、試着してください",
|
|
1285
|
+
"Get Your Size": "サイズを取得する",
|
|
1286
|
+
"Instant fit recommendation": "即時フィット推奨",
|
|
1287
|
+
"Try It On": "試着する",
|
|
1288
|
+
"See how it looks on you": "あなたにどのように見えるか確認する",
|
|
1289
|
+
"Find My Size": "私のサイズを見つける",
|
|
1290
|
+
"Takes less than a minute": "1分以内で完了",
|
|
1291
|
+
"Upload a full body photo": "全身の写真をアップロード",
|
|
1292
|
+
"Drop your photo here or click to upload": "ここに写真をドロップするか、クリックしてアップロード",
|
|
1293
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG、PNG、またはWebP(最大10MB)",
|
|
1294
|
+
"Your photo": "あなたの写真",
|
|
1295
|
+
"Checking size guide...": "サイズガイドを確認中...",
|
|
1296
|
+
"Looking for size chart data for this product": "この商品のサイズチャートデータを探しています",
|
|
1297
|
+
"How would you like to find your size?": "どのようにサイズを見つけたいですか?",
|
|
1298
|
+
"Size guide is not available for this product — sizing will use standard measurements": "この商品のサイズガイドは利用できません — サイズは標準測定を使用します",
|
|
1299
|
+
"Size guide found for this product": "この商品のサイズガイドが見つかりました",
|
|
1300
|
+
"Enter my measurements": "私の測定値を入力する",
|
|
1301
|
+
"Chest, waist, hips, shoes & more": "胸、ウエスト、ヒップ、靴など",
|
|
1302
|
+
"& more": "など",
|
|
1303
|
+
"Best accuracy": "最高の精度",
|
|
1304
|
+
"Just height & weight": "身長と体重のみ",
|
|
1305
|
+
"Quick estimate in seconds": "数秒での迅速な推定",
|
|
1306
|
+
"Skip, just try it on": "スキップして、試着するだけ",
|
|
1307
|
+
"Upload a photo to see how it looks": "写真をアップロードして、どのように見えるか確認する",
|
|
1308
|
+
"Back": "戻る",
|
|
1309
|
+
"Auto-fill from saved profile...": "保存されたプロフィールから自動入力...",
|
|
1310
|
+
"I'm shopping for": "私は購入しています",
|
|
1311
|
+
"Men's": "メンズ",
|
|
1312
|
+
"Women's": "ウィメンズ",
|
|
1313
|
+
"Sizing region": "サイズ地域",
|
|
1314
|
+
"Required for this product": "この商品に必要",
|
|
1315
|
+
"Fit type": "フィットタイプ",
|
|
1316
|
+
"Petite": "プチサイズ",
|
|
1317
|
+
"Standard": "スタンダード",
|
|
1318
|
+
"Tall": "トール",
|
|
1319
|
+
"Plus": "プラス",
|
|
1320
|
+
"Optional — improve accuracy & save to profile": "オプション — 精度を向上させてプロフィールに保存",
|
|
1321
|
+
"Height": "身長",
|
|
1322
|
+
"Weight": "体重",
|
|
1323
|
+
"Fill in what you know — more measurements = better accuracy.": "知っていることを入力してください — 測定値が多いほど精度が向上します。",
|
|
1324
|
+
"Save as profile": "プロフィールとして保存",
|
|
1325
|
+
"Profile name (e.g. John, Sarah)": "プロフィール名(例:ジョン、サラ)",
|
|
1326
|
+
"Get My Size": "私のサイズを取得する",
|
|
1327
|
+
"cm": "cm",
|
|
1328
|
+
"in": "in",
|
|
1329
|
+
"ft": "ft",
|
|
1330
|
+
"kg": "kg",
|
|
1331
|
+
"lbs": "lbs",
|
|
1332
|
+
"Bust": "バスト",
|
|
1333
|
+
"Waist": "ウエスト",
|
|
1334
|
+
"Hips": "ヒップ",
|
|
1335
|
+
"Shoulders": "肩幅",
|
|
1336
|
+
"Inseam": "股下",
|
|
1337
|
+
"Foot length": "足の長さ",
|
|
1338
|
+
"Chest": "胸囲",
|
|
1339
|
+
"Sleeve": "袖",
|
|
1340
|
+
"Neck": "首",
|
|
1341
|
+
"Foot": "足",
|
|
1342
|
+
"Shoe EU": "靴 EU",
|
|
1343
|
+
"Shoe US": "靴 US",
|
|
1344
|
+
"Shoe UK": "靴 UK",
|
|
1345
|
+
"Shoe size (US)": "靴のサイズ(US)",
|
|
1346
|
+
"Shoe size (UK)": "靴のサイズ(UK)",
|
|
1347
|
+
"Shoe size (EU)": "靴のサイズ(EU)",
|
|
1348
|
+
"United States": "アメリカ合衆国",
|
|
1349
|
+
"United Kingdom": "イギリス",
|
|
1350
|
+
"Europe (EU)": "ヨーロッパ(EU)",
|
|
1351
|
+
"France": "フランス",
|
|
1352
|
+
"Italy": "イタリア",
|
|
1353
|
+
"Germany": "ドイツ",
|
|
1354
|
+
"Spain": "スペイン",
|
|
1355
|
+
"Japan": "日本",
|
|
1356
|
+
"China": "中国",
|
|
1357
|
+
"South Korea": "韓国",
|
|
1358
|
+
"Australia": "オーストラリア",
|
|
1359
|
+
"Brazil": "ブラジル",
|
|
1360
|
+
"Preparing your image...": "画像を準備中...",
|
|
1361
|
+
"Analyzing body proportions...": "体の比率を分析中...",
|
|
1362
|
+
"Matching garment to your photo...": "あなたの写真に合わせて衣服をマッチング中...",
|
|
1363
|
+
"Generating virtual try-on...": "バーチャル試着を生成中...",
|
|
1364
|
+
"Refining details...": "詳細を調整中...",
|
|
1365
|
+
"Almost there...": "もう少し...",
|
|
1366
|
+
"Complete!": "完了!",
|
|
1367
|
+
"This usually takes 15-25 seconds": "通常、15〜25秒かかります",
|
|
1368
|
+
"This usually takes 15-20 seconds": "通常、15〜20秒かかります",
|
|
1369
|
+
"Your Size": "あなたのサイズ",
|
|
1370
|
+
"High Confidence": "高い自信",
|
|
1371
|
+
"Medium Confidence": "中程度の自信",
|
|
1372
|
+
"Low Confidence": "低い自信",
|
|
1373
|
+
"Sizing by Garment": "衣服によるサイズ",
|
|
1374
|
+
"Fit Summary": "フィットの概要",
|
|
1375
|
+
"within range": "範囲内",
|
|
1376
|
+
"may be snug": "きついかもしれません",
|
|
1377
|
+
"may be loose": "ゆるいかもしれません",
|
|
1378
|
+
"See details": "詳細を見る",
|
|
1379
|
+
"Hide details": "詳細を隠す",
|
|
1380
|
+
"Area": "エリア",
|
|
1381
|
+
"You": "あなた",
|
|
1382
|
+
"Chart": "チャート",
|
|
1383
|
+
"Fit": "フィット",
|
|
1384
|
+
"Equivalent Sizes": "同等のサイズ",
|
|
1385
|
+
"Analyzing your size...": "あなたのサイズを分析中...",
|
|
1386
|
+
"Your size:": "あなたのサイズ:",
|
|
1387
|
+
"Done": "完了",
|
|
1388
|
+
"Try-on result": "試着結果",
|
|
1389
|
+
"Download": "ダウンロード",
|
|
1390
|
+
"Start Over": "最初からやり直す",
|
|
1391
|
+
"Try Another": "別のものを試す",
|
|
1392
|
+
"Something went wrong": "何かがうまくいきませんでした",
|
|
1393
|
+
"Try Again": "再試行",
|
|
1394
|
+
"Please upload a JPEG, PNG, or WebP image.": "JPEG、PNG、またはWebP画像をアップロードしてください。",
|
|
1395
|
+
"Image must be under 10MB.": "画像は10MB未満でなければなりません。",
|
|
1396
|
+
"Try-on generation failed": "試着生成に失敗しました",
|
|
1397
|
+
"Failed to start try-on": "試着の開始に失敗しました",
|
|
1398
|
+
"SDK not configured. Please provide an API key.": "SDKが設定されていません。APIキーを提供してください。",
|
|
1399
|
+
"No product image found. Please set the product-image attribute.": "商品画像が見つかりません。product-image属性を設定してください。",
|
|
1400
|
+
"My Profiles": "私のプロフィール",
|
|
1401
|
+
"No saved profiles yet.": "保存されたプロフィールはまだありません。",
|
|
1402
|
+
"No history yet.": "履歴はまだありません。",
|
|
1403
|
+
"Product": "商品",
|
|
1404
|
+
"Women's Profile": "ウィメンズプロフィール",
|
|
1405
|
+
"Men's Profile": "メンズプロフィール",
|
|
1406
|
+
"Saved": "保存済み",
|
|
1407
|
+
"Delete Profile": "プロフィールを削除"
|
|
1408
|
+
};
|
|
1409
|
+
const ko = {
|
|
1410
|
+
"Virtual Try-On": "가상 착용",
|
|
1411
|
+
"Powered by": "제공: ",
|
|
1412
|
+
"Profiles": "프로필",
|
|
1413
|
+
"History": "기록",
|
|
1414
|
+
"Welcome": "환영합니다",
|
|
1415
|
+
"Size": "사이즈",
|
|
1416
|
+
"Your Fit": "당신의 핏",
|
|
1417
|
+
"Try On": "착용해 보기",
|
|
1418
|
+
"Find Your Perfect Size": "완벽한 사이즈 찾기",
|
|
1419
|
+
"Get your size instantly, then try it on": "즉시 사이즈를 확인한 후 착용해 보세요",
|
|
1420
|
+
"Get Your Size": "사이즈 확인하기",
|
|
1421
|
+
"Instant fit recommendation": "즉각적인 핏 추천",
|
|
1422
|
+
"Try It On": "착용해 보기",
|
|
1423
|
+
"See how it looks on you": "당신에게 어떻게 보이는지 확인해 보세요",
|
|
1424
|
+
"Find My Size": "내 사이즈 찾기",
|
|
1425
|
+
"Takes less than a minute": "1분도 채 걸리지 않습니다",
|
|
1426
|
+
"Upload a full body photo": "전신 사진 업로드",
|
|
1427
|
+
"Drop your photo here or click to upload": "여기에 사진을 드롭하거나 클릭하여 업로드하세요",
|
|
1428
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG 또는 WebP (최대 10MB)",
|
|
1429
|
+
"Your photo": "당신의 사진",
|
|
1430
|
+
"Checking size guide...": "사이즈 가이드를 확인하는 중...",
|
|
1431
|
+
"Looking for size chart data for this product": "이 제품의 사이즈 차트 데이터를 찾는 중",
|
|
1432
|
+
"How would you like to find your size?": "어떻게 사이즈를 찾고 싶으신가요?",
|
|
1433
|
+
"Size guide is not available for this product — sizing will use standard measurements": "이 제품에 대한 사이즈 가이드는 제공되지 않습니다 — 사이즈는 표준 측정을 사용합니다",
|
|
1434
|
+
"Size guide found for this product": "이 제품에 대한 사이즈 가이드를 찾았습니다",
|
|
1435
|
+
"Enter my measurements": "내 치수를 입력하세요",
|
|
1436
|
+
"Chest, waist, hips, shoes & more": "가슴, 허리, 엉덩이, 신발 등",
|
|
1437
|
+
"& more": "& 더 많은",
|
|
1438
|
+
"Best accuracy": "최고의 정확도",
|
|
1439
|
+
"Just height & weight": "신장과 체중만",
|
|
1440
|
+
"Quick estimate in seconds": "몇 초 안에 빠른 추정",
|
|
1441
|
+
"Skip, just try it on": "건너뛰고 착용해 보세요",
|
|
1442
|
+
"Upload a photo to see how it looks": "어떻게 보이는지 확인하려면 사진을 업로드하세요",
|
|
1443
|
+
"Back": "뒤로",
|
|
1444
|
+
"Auto-fill from saved profile...": "저장된 프로필에서 자동 입력 중...",
|
|
1445
|
+
"I'm shopping for": "나는 쇼핑 중입니다",
|
|
1446
|
+
"Men's": "남성용",
|
|
1447
|
+
"Women's": "여성용",
|
|
1448
|
+
"Sizing region": "사이즈 지역",
|
|
1449
|
+
"Required for this product": "이 제품에 필요합니다",
|
|
1450
|
+
"Fit type": "핏 유형",
|
|
1451
|
+
"Petite": "페티트",
|
|
1452
|
+
"Standard": "스탠다드",
|
|
1453
|
+
"Tall": "롱",
|
|
1454
|
+
"Plus": "플러스",
|
|
1455
|
+
"Optional — improve accuracy & save to profile": "선택 사항 — 정확도를 높이고 프로필에 저장",
|
|
1456
|
+
"Height": "신장",
|
|
1457
|
+
"Weight": "체중",
|
|
1458
|
+
"Fill in what you know — more measurements = better accuracy.": "아는 것을 입력하세요 — 더 많은 측정값 = 더 나은 정확도.",
|
|
1459
|
+
"Save as profile": "프로필로 저장",
|
|
1460
|
+
"Profile name (e.g. John, Sarah)": "프로필 이름 (예: John, Sarah)",
|
|
1461
|
+
"Get My Size": "내 사이즈 확인하기",
|
|
1462
|
+
"cm": "cm",
|
|
1463
|
+
"in": "in",
|
|
1464
|
+
"ft": "ft",
|
|
1465
|
+
"kg": "kg",
|
|
1466
|
+
"lbs": "lbs",
|
|
1467
|
+
"Bust": "가슴",
|
|
1468
|
+
"Waist": "허리",
|
|
1469
|
+
"Hips": "엉덩이",
|
|
1470
|
+
"Shoulders": "어깨",
|
|
1471
|
+
"Inseam": "인심",
|
|
1472
|
+
"Foot length": "발 길이",
|
|
1473
|
+
"Chest": "가슴",
|
|
1474
|
+
"Sleeve": "소매",
|
|
1475
|
+
"Neck": "목",
|
|
1476
|
+
"Foot": "발",
|
|
1477
|
+
"Shoe EU": "신발 EU",
|
|
1478
|
+
"Shoe US": "신발 US",
|
|
1479
|
+
"Shoe UK": "신발 UK",
|
|
1480
|
+
"Shoe size (US)": "신발 사이즈 (US)",
|
|
1481
|
+
"Shoe size (UK)": "신발 사이즈 (UK)",
|
|
1482
|
+
"Shoe size (EU)": "신발 사이즈 (EU)",
|
|
1483
|
+
"United States": "미국",
|
|
1484
|
+
"United Kingdom": "영국",
|
|
1485
|
+
"Europe (EU)": "유럽 (EU)",
|
|
1486
|
+
"France": "프랑스",
|
|
1487
|
+
"Italy": "이탈리아",
|
|
1488
|
+
"Germany": "독일",
|
|
1489
|
+
"Spain": "스페인",
|
|
1490
|
+
"Japan": "일본",
|
|
1491
|
+
"China": "중국",
|
|
1492
|
+
"South Korea": "대한민국",
|
|
1493
|
+
"Australia": "호주",
|
|
1494
|
+
"Brazil": "브라질",
|
|
1495
|
+
"Preparing your image...": "이미지를 준비하는 중...",
|
|
1496
|
+
"Analyzing body proportions...": "신체 비율 분석 중...",
|
|
1497
|
+
"Matching garment to your photo...": "의류를 당신의 사진과 일치시키는 중...",
|
|
1498
|
+
"Generating virtual try-on...": "가상 착용 생성 중...",
|
|
1499
|
+
"Refining details...": "세부사항 다듬는 중...",
|
|
1500
|
+
"Almost there...": "거의 다 왔습니다...",
|
|
1501
|
+
"Complete!": "완료!",
|
|
1502
|
+
"This usually takes 15-25 seconds": "보통 15-25초가 소요됩니다",
|
|
1503
|
+
"This usually takes 15-20 seconds": "보통 15-20초가 소요됩니다",
|
|
1504
|
+
"Your Size": "당신의 사이즈",
|
|
1505
|
+
"High Confidence": "높은 신뢰도",
|
|
1506
|
+
"Medium Confidence": "중간 신뢰도",
|
|
1507
|
+
"Low Confidence": "낮은 신뢰도",
|
|
1508
|
+
"Sizing by Garment": "의류에 따른 사이즈",
|
|
1509
|
+
"Fit Summary": "핏 요약",
|
|
1510
|
+
"within range": "범위 내",
|
|
1511
|
+
"may be snug": "타이트할 수 있음",
|
|
1512
|
+
"may be loose": "헐렁할 수 있음",
|
|
1513
|
+
"See details": "세부사항 보기",
|
|
1514
|
+
"Hide details": "세부사항 숨기기",
|
|
1515
|
+
"Area": "영역",
|
|
1516
|
+
"You": "당신",
|
|
1517
|
+
"Chart": "차트",
|
|
1518
|
+
"Fit": "핏",
|
|
1519
|
+
"Equivalent Sizes": "동일 사이즈",
|
|
1520
|
+
"Analyzing your size...": "당신의 사이즈 분석 중...",
|
|
1521
|
+
"Your size:": "당신의 사이즈:",
|
|
1522
|
+
"Done": "완료",
|
|
1523
|
+
"Try-on result": "착용 결과",
|
|
1524
|
+
"Download": "다운로드",
|
|
1525
|
+
"Start Over": "다시 시작",
|
|
1526
|
+
"Try Another": "다른 것 시도하기",
|
|
1527
|
+
"Something went wrong": "문제가 발생했습니다",
|
|
1528
|
+
"Try Again": "다시 시도하기",
|
|
1529
|
+
"Please upload a JPEG, PNG, or WebP image.": "JPEG, PNG 또는 WebP 이미지를 업로드하세요.",
|
|
1530
|
+
"Image must be under 10MB.": "이미지는 10MB 이하이어야 합니다.",
|
|
1531
|
+
"Try-on generation failed": "착용 생성 실패",
|
|
1532
|
+
"Failed to start try-on": "착용 시작 실패",
|
|
1533
|
+
"SDK not configured. Please provide an API key.": "SDK가 구성되지 않았습니다. API 키를 제공하세요.",
|
|
1534
|
+
"No product image found. Please set the product-image attribute.": "제품 이미지가 없습니다. product-image 속성을 설정하세요.",
|
|
1535
|
+
"My Profiles": "내 프로필",
|
|
1536
|
+
"No saved profiles yet.": "저장된 프로필이 없습니다.",
|
|
1537
|
+
"No history yet.": "기록이 없습니다.",
|
|
1538
|
+
"Product": "제품",
|
|
1539
|
+
"Women's Profile": "여성 프로필",
|
|
1540
|
+
"Men's Profile": "남성 프로필",
|
|
1541
|
+
"Saved": "저장됨",
|
|
1542
|
+
"Delete Profile": "프로필 삭제"
|
|
1543
|
+
};
|
|
1544
|
+
const nb = {
|
|
1545
|
+
"Virtual Try-On": "Virtuell Prøving",
|
|
1546
|
+
"Powered by": "Drevet av",
|
|
1547
|
+
"Profiles": "Profiler",
|
|
1548
|
+
"History": "Historikk",
|
|
1549
|
+
"Welcome": "Velkommen",
|
|
1550
|
+
"Size": "Størrelse",
|
|
1551
|
+
"Your Fit": "Din Passform",
|
|
1552
|
+
"Try On": "Prøv På",
|
|
1553
|
+
"Find Your Perfect Size": "Finn Din Perfekte Størrelse",
|
|
1554
|
+
"Get your size instantly, then try it on": "Få størrelsen din umiddelbart, og prøv den på",
|
|
1555
|
+
"Get Your Size": "Få Din Størrelse",
|
|
1556
|
+
"Instant fit recommendation": "Umiddelbar passformanbefaling",
|
|
1557
|
+
"Try It On": "Prøv Den På",
|
|
1558
|
+
"See how it looks on you": "Se hvordan det ser ut på deg",
|
|
1559
|
+
"Find My Size": "Finn Min Størrelse",
|
|
1560
|
+
"Takes less than a minute": "Tar mindre enn ett minutt",
|
|
1561
|
+
"Upload a full body photo": "Last opp et helkroppsbilde",
|
|
1562
|
+
"Drop your photo here or click to upload": "Slipp bildet ditt her eller klikk for å laste opp",
|
|
1563
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG eller WebP (maks 10MB)",
|
|
1564
|
+
"Your photo": "Ditt bilde",
|
|
1565
|
+
"Checking size guide...": "Sjekker størrelsesguide...",
|
|
1566
|
+
"Looking for size chart data for this product": "Ser etter størrelsesdata for dette produktet",
|
|
1567
|
+
"How would you like to find your size?": "Hvordan vil du finne din størrelse?",
|
|
1568
|
+
"Size guide is not available for this product — sizing will use standard measurements": "Størrelsesguide er ikke tilgjengelig for dette produktet — størrelsen vil bruke standardmål",
|
|
1569
|
+
"Size guide found for this product": "Størrelsesguide funnet for dette produktet",
|
|
1570
|
+
"Enter my measurements": "Skriv inn mine mål",
|
|
1571
|
+
"Chest, waist, hips, shoes & more": "Bryst, midje, hofter, sko & mer",
|
|
1572
|
+
"& more": "& mer",
|
|
1573
|
+
"Best accuracy": "Best nøyaktighet",
|
|
1574
|
+
"Just height & weight": "Bare høyde & vekt",
|
|
1575
|
+
"Quick estimate in seconds": "Rask estimat på sekunder",
|
|
1576
|
+
"Skip, just try it on": "Hopp over, prøv den bare på",
|
|
1577
|
+
"Upload a photo to see how it looks": "Last opp et bilde for å se hvordan det ser ut",
|
|
1578
|
+
"Back": "Tilbake",
|
|
1579
|
+
"Auto-fill from saved profile...": "Auto-fyll fra lagret profil...",
|
|
1580
|
+
"I'm shopping for": "Jeg handler for",
|
|
1581
|
+
"Men's": "Herre",
|
|
1582
|
+
"Women's": "Dame",
|
|
1583
|
+
"Sizing region": "Størrelsesregion",
|
|
1584
|
+
"Required for this product": "Påkrevd for dette produktet",
|
|
1585
|
+
"Fit type": "Passformtype",
|
|
1586
|
+
"Petite": "Petite",
|
|
1587
|
+
"Standard": "Standard",
|
|
1588
|
+
"Tall": "Tall",
|
|
1589
|
+
"Plus": "Pluss",
|
|
1590
|
+
"Optional — improve accuracy & save to profile": "Valgfritt — forbedre nøyaktighet & lagre til profil",
|
|
1591
|
+
"Height": "Høyde",
|
|
1592
|
+
"Weight": "Vekt",
|
|
1593
|
+
"Fill in what you know — more measurements = better accuracy.": "Fyll inn det du vet — flere mål = bedre nøyaktighet.",
|
|
1594
|
+
"Save as profile": "Lagre som profil",
|
|
1595
|
+
"Profile name (e.g. John, Sarah)": "Profilnavn (f.eks. John, Sarah)",
|
|
1596
|
+
"Get My Size": "Få Min Størrelse",
|
|
1597
|
+
"cm": "cm",
|
|
1598
|
+
"in": "in",
|
|
1599
|
+
"ft": "ft",
|
|
1600
|
+
"kg": "kg",
|
|
1601
|
+
"lbs": "lbs",
|
|
1602
|
+
"Bust": "Bryst",
|
|
1603
|
+
"Waist": "Midje",
|
|
1604
|
+
"Hips": "Hofter",
|
|
1605
|
+
"Shoulders": "Skuldre",
|
|
1606
|
+
"Inseam": "Innersøm",
|
|
1607
|
+
"Foot length": "Fotlengde",
|
|
1608
|
+
"Chest": "Bryst",
|
|
1609
|
+
"Sleeve": "Erme",
|
|
1610
|
+
"Neck": "Hals",
|
|
1611
|
+
"Foot": "Fot",
|
|
1612
|
+
"Shoe EU": "Sko EU",
|
|
1613
|
+
"Shoe US": "Sko US",
|
|
1614
|
+
"Shoe UK": "Sko UK",
|
|
1615
|
+
"Shoe size (US)": "Sko størrelse (US)",
|
|
1616
|
+
"Shoe size (UK)": "Sko størrelse (UK)",
|
|
1617
|
+
"Shoe size (EU)": "Sko størrelse (EU)",
|
|
1618
|
+
"United States": "De forente stater",
|
|
1619
|
+
"United Kingdom": "Storbritannia",
|
|
1620
|
+
"Europe (EU)": "Europa (EU)",
|
|
1621
|
+
"France": "Frankrike",
|
|
1622
|
+
"Italy": "Italia",
|
|
1623
|
+
"Germany": "Tyskland",
|
|
1624
|
+
"Spain": "Spania",
|
|
1625
|
+
"Japan": "Japan",
|
|
1626
|
+
"China": "Kina",
|
|
1627
|
+
"South Korea": "Sør-Korea",
|
|
1628
|
+
"Australia": "Australia",
|
|
1629
|
+
"Brazil": "Brasil",
|
|
1630
|
+
"Preparing your image...": "Forbereder bildet ditt...",
|
|
1631
|
+
"Analyzing body proportions...": "Analyserer kroppsmål...",
|
|
1632
|
+
"Matching garment to your photo...": "Matcher plagg med bildet ditt...",
|
|
1633
|
+
"Generating virtual try-on...": "Genererer virtuell prøving...",
|
|
1634
|
+
"Refining details...": "Forbedrer detaljer...",
|
|
1635
|
+
"Almost there...": "Nesten ferdig...",
|
|
1636
|
+
"Complete!": "Ferdig!",
|
|
1637
|
+
"This usually takes 15-25 seconds": "Dette tar vanligvis 15-25 sekunder",
|
|
1638
|
+
"This usually takes 15-20 seconds": "Dette tar vanligvis 15-20 sekunder",
|
|
1639
|
+
"Your Size": "Din Størrelse",
|
|
1640
|
+
"High Confidence": "Høy Tillit",
|
|
1641
|
+
"Medium Confidence": "Moderat Tillit",
|
|
1642
|
+
"Low Confidence": "Lav Tillit",
|
|
1643
|
+
"Sizing by Garment": "Størrelse etter Plagg",
|
|
1644
|
+
"Fit Summary": "Passform Sammendrag",
|
|
1645
|
+
"within range": "innen rekkevidde",
|
|
1646
|
+
"may be snug": "kan være stramt",
|
|
1647
|
+
"may be loose": "kan være løst",
|
|
1648
|
+
"See details": "Se detaljer",
|
|
1649
|
+
"Hide details": "Skjul detaljer",
|
|
1650
|
+
"Area": "Område",
|
|
1651
|
+
"You": "Du",
|
|
1652
|
+
"Chart": "Diagram",
|
|
1653
|
+
"Fit": "Passform",
|
|
1654
|
+
"Equivalent Sizes": "Tilsvarende Størrelser",
|
|
1655
|
+
"Analyzing your size...": "Analyserer din størrelse...",
|
|
1656
|
+
"Your size:": "Din størrelse:",
|
|
1657
|
+
"Done": "Ferdig",
|
|
1658
|
+
"Try-on result": "Prøve-resultat",
|
|
1659
|
+
"Download": "Last ned",
|
|
1660
|
+
"Start Over": "Start På Nytt",
|
|
1661
|
+
"Try Another": "Prøv En Annen",
|
|
1662
|
+
"Something went wrong": "Noe gikk galt",
|
|
1663
|
+
"Try Again": "Prøv Igjen",
|
|
1664
|
+
"Please upload a JPEG, PNG, or WebP image.": "Vennligst last opp et JPEG, PNG eller WebP bilde.",
|
|
1665
|
+
"Image must be under 10MB.": "Bildet må være under 10MB.",
|
|
1666
|
+
"Try-on generation failed": "Generering av prøving mislyktes",
|
|
1667
|
+
"Failed to start try-on": "Mislyktes med å starte prøving",
|
|
1668
|
+
"SDK not configured. Please provide an API key.": "SDK ikke konfigurert. Vennligst oppgi en API-nøkkel.",
|
|
1669
|
+
"No product image found. Please set the product-image attribute.": "Ingen produktbilde funnet. Vennligst sett produkt-bildeattributtet.",
|
|
1670
|
+
"My Profiles": "Mine Profiler",
|
|
1671
|
+
"No saved profiles yet.": "Ingen lagrede profiler ennå.",
|
|
1672
|
+
"No history yet.": "Ingen historikk ennå.",
|
|
1673
|
+
"Product": "Produkt",
|
|
1674
|
+
"Women's Profile": "Dameprofil",
|
|
1675
|
+
"Men's Profile": "Herreprofil",
|
|
1676
|
+
"Saved": "Lagt til",
|
|
1677
|
+
"Delete Profile": "Slett Profil"
|
|
1678
|
+
};
|
|
1679
|
+
const nl = {
|
|
1680
|
+
"Virtual Try-On": "Virtuele Pasvorm",
|
|
1681
|
+
"Powered by": "Aangedreven door",
|
|
1682
|
+
"Profiles": "Profielen",
|
|
1683
|
+
"History": "Geschiedenis",
|
|
1684
|
+
"Welcome": "Welkom",
|
|
1685
|
+
"Size": "Maat",
|
|
1686
|
+
"Your Fit": "Jouw Pasvorm",
|
|
1687
|
+
"Try On": "Pas het aan",
|
|
1688
|
+
"Find Your Perfect Size": "Vind jouw perfecte maat",
|
|
1689
|
+
"Get your size instantly, then try it on": "Krijg direct je maat en pas het aan",
|
|
1690
|
+
"Get Your Size": "Krijg jouw maat",
|
|
1691
|
+
"Instant fit recommendation": "Directe pasvorm aanbeveling",
|
|
1692
|
+
"Try It On": "Pas het aan",
|
|
1693
|
+
"See how it looks on you": "Zie hoe het eruit ziet op jou",
|
|
1694
|
+
"Find My Size": "Vind mijn maat",
|
|
1695
|
+
"Takes less than a minute": "Duur minder dan een minuut",
|
|
1696
|
+
"Upload a full body photo": "Upload een foto van je volledige lichaam",
|
|
1697
|
+
"Drop your photo here or click to upload": "Sleep je foto hier of klik om te uploaden",
|
|
1698
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG of WebP (max 10MB)",
|
|
1699
|
+
"Your photo": "Jouw foto",
|
|
1700
|
+
"Checking size guide...": "Maatgids aan het controleren...",
|
|
1701
|
+
"Looking for size chart data for this product": "Zoeken naar maatgegevens voor dit product",
|
|
1702
|
+
"How would you like to find your size?": "Hoe wil je jouw maat vinden?",
|
|
1703
|
+
"Size guide is not available for this product — sizing will use standard measurements": "Maatgids is niet beschikbaar voor dit product — maten zullen standaardmetingen gebruiken",
|
|
1704
|
+
"Size guide found for this product": "Maatgids gevonden voor dit product",
|
|
1705
|
+
"Enter my measurements": "Voer mijn maten in",
|
|
1706
|
+
"Chest, waist, hips, shoes & more": "Borst, taille, heupen, schoenen & meer",
|
|
1707
|
+
"& more": "& meer",
|
|
1708
|
+
"Best accuracy": "Beste nauwkeurigheid",
|
|
1709
|
+
"Just height & weight": "Alleen lengte & gewicht",
|
|
1710
|
+
"Quick estimate in seconds": "Snelle schatting in seconden",
|
|
1711
|
+
"Skip, just try it on": "Overslaan, pas het gewoon aan",
|
|
1712
|
+
"Upload a photo to see how it looks": "Upload een foto om te zien hoe het eruit ziet",
|
|
1713
|
+
"Back": "Terug",
|
|
1714
|
+
"Auto-fill from saved profile...": "Automatisch invullen vanuit opgeslagen profiel...",
|
|
1715
|
+
"I'm shopping for": "Ik ben aan het winkelen voor",
|
|
1716
|
+
"Men's": "Heren",
|
|
1717
|
+
"Women's": "Dames",
|
|
1718
|
+
"Sizing region": "Maatgebied",
|
|
1719
|
+
"Required for this product": "Vereist voor dit product",
|
|
1720
|
+
"Fit type": "Pasvorm type",
|
|
1721
|
+
"Petite": "Petite",
|
|
1722
|
+
"Standard": "Standaard",
|
|
1723
|
+
"Tall": "Lang",
|
|
1724
|
+
"Plus": "Plus",
|
|
1725
|
+
"Optional — improve accuracy & save to profile": "Optioneel — verbeter nauwkeurigheid & sla op in profiel",
|
|
1726
|
+
"Height": "Lengte",
|
|
1727
|
+
"Weight": "Gewicht",
|
|
1728
|
+
"Fill in what you know — more measurements = better accuracy.": "Vul in wat je weet — meer maten = betere nauwkeurigheid.",
|
|
1729
|
+
"Save as profile": "Opslaan als profiel",
|
|
1730
|
+
"Profile name (e.g. John, Sarah)": "Profielnaam (bijv. John, Sarah)",
|
|
1731
|
+
"Get My Size": "Krijg mijn maat",
|
|
1732
|
+
"cm": "cm",
|
|
1733
|
+
"in": "in",
|
|
1734
|
+
"ft": "ft",
|
|
1735
|
+
"kg": "kg",
|
|
1736
|
+
"lbs": "lbs",
|
|
1737
|
+
"Bust": "Borst",
|
|
1738
|
+
"Waist": "Taille",
|
|
1739
|
+
"Hips": "Heupen",
|
|
1740
|
+
"Shoulders": "Schouders",
|
|
1741
|
+
"Inseam": "Binnenbeenlengte",
|
|
1742
|
+
"Foot length": "Voetlengte",
|
|
1743
|
+
"Chest": "Borst",
|
|
1744
|
+
"Sleeve": "Mouw",
|
|
1745
|
+
"Neck": "Hals",
|
|
1746
|
+
"Foot": "Voet",
|
|
1747
|
+
"Shoe EU": "Schoen EU",
|
|
1748
|
+
"Shoe US": "Schoen US",
|
|
1749
|
+
"Shoe UK": "Schoen UK",
|
|
1750
|
+
"Shoe size (US)": "Schoenmaat (US)",
|
|
1751
|
+
"Shoe size (UK)": "Schoenmaat (UK)",
|
|
1752
|
+
"Shoe size (EU)": "Schoenmaat (EU)",
|
|
1753
|
+
"United States": "Verenigde Staten",
|
|
1754
|
+
"United Kingdom": "Verenigd Koninkrijk",
|
|
1755
|
+
"Europe (EU)": "Europa (EU)",
|
|
1756
|
+
"France": "Frankrijk",
|
|
1757
|
+
"Italy": "Italië",
|
|
1758
|
+
"Germany": "Duitsland",
|
|
1759
|
+
"Spain": "Spanje",
|
|
1760
|
+
"Japan": "Japan",
|
|
1761
|
+
"China": "China",
|
|
1762
|
+
"South Korea": "Zuid-Korea",
|
|
1763
|
+
"Australia": "Australië",
|
|
1764
|
+
"Brazil": "Brazilië",
|
|
1765
|
+
"Preparing your image...": "Beeld aan het voorbereiden...",
|
|
1766
|
+
"Analyzing body proportions...": "Lichaamsverhoudingen aan het analyseren...",
|
|
1767
|
+
"Matching garment to your photo...": "Kledingstuk aan je foto aan het matchen...",
|
|
1768
|
+
"Generating virtual try-on...": "Virtuele pasvorm aan het genereren...",
|
|
1769
|
+
"Refining details...": "Details aan het verfijnen...",
|
|
1770
|
+
"Almost there...": "Bijna daar...",
|
|
1771
|
+
"Complete!": "Voltooid!",
|
|
1772
|
+
"This usually takes 15-25 seconds": "Dit duurt meestal 15-25 seconden",
|
|
1773
|
+
"This usually takes 15-20 seconds": "Dit duurt meestal 15-20 seconden",
|
|
1774
|
+
"Your Size": "Jouw maat",
|
|
1775
|
+
"High Confidence": "Hoge Zekerheid",
|
|
1776
|
+
"Medium Confidence": "Gemiddelde Zekerheid",
|
|
1777
|
+
"Low Confidence": "Lage Zekerheid",
|
|
1778
|
+
"Sizing by Garment": "Maten per kledingstuk",
|
|
1779
|
+
"Fit Summary": "Pasvorm Samenvatting",
|
|
1780
|
+
"within range": "binnen bereik",
|
|
1781
|
+
"may be snug": "kan strak zijn",
|
|
1782
|
+
"may be loose": "kan los zitten",
|
|
1783
|
+
"See details": "Bekijk details",
|
|
1784
|
+
"Hide details": "Verberg details",
|
|
1785
|
+
"Area": "Gebied",
|
|
1786
|
+
"You": "Jij",
|
|
1787
|
+
"Chart": "Tabel",
|
|
1788
|
+
"Fit": "Pasvorm",
|
|
1789
|
+
"Equivalent Sizes": "Gelijke Maten",
|
|
1790
|
+
"Analyzing your size...": "Jouw maat aan het analyseren...",
|
|
1791
|
+
"Your size:": "Jouw maat:",
|
|
1792
|
+
"Done": "Klaar",
|
|
1793
|
+
"Try-on result": "Pasvorm resultaat",
|
|
1794
|
+
"Download": "Downloaden",
|
|
1795
|
+
"Start Over": "Begin opnieuw",
|
|
1796
|
+
"Try Another": "Probeer een andere",
|
|
1797
|
+
"Something went wrong": "Er is iets misgegaan",
|
|
1798
|
+
"Try Again": "Probeer opnieuw",
|
|
1799
|
+
"Please upload a JPEG, PNG, or WebP image.": "Upload alstublieft een JPEG, PNG of WebP afbeelding.",
|
|
1800
|
+
"Image must be under 10MB.": "Afbeelding moet onder de 10MB zijn.",
|
|
1801
|
+
"Try-on generation failed": "Genereren van pasvorm is mislukt",
|
|
1802
|
+
"Failed to start try-on": "Starten van pasvorm is mislukt",
|
|
1803
|
+
"SDK not configured. Please provide an API key.": "SDK niet geconfigureerd. Geef alstublieft een API-sleutel op.",
|
|
1804
|
+
"No product image found. Please set the product-image attribute.": "Geen productafbeelding gevonden. Stel alstublieft de product-afbeeldingseigenschap in.",
|
|
1805
|
+
"My Profiles": "Mijn Profielen",
|
|
1806
|
+
"No saved profiles yet.": "Nog geen opgeslagen profielen.",
|
|
1807
|
+
"No history yet.": "Nog geen geschiedenis.",
|
|
1808
|
+
"Product": "Product",
|
|
1809
|
+
"Women's Profile": "Damesprofiel",
|
|
1810
|
+
"Men's Profile": "Herenprofiel",
|
|
1811
|
+
"Saved": "Opgeslagen",
|
|
1812
|
+
"Delete Profile": "Profiel Verwijderen"
|
|
1813
|
+
};
|
|
1814
|
+
const pl = {
|
|
1815
|
+
"Virtual Try-On": "Wirtualne Przymiarki",
|
|
1816
|
+
"Powered by": "Zasilane przez",
|
|
1817
|
+
"Profiles": "Profile",
|
|
1818
|
+
"History": "Historia",
|
|
1819
|
+
"Welcome": "Witamy",
|
|
1820
|
+
"Size": "Rozmiar",
|
|
1821
|
+
"Your Fit": "Twoje dopasowanie",
|
|
1822
|
+
"Try On": "Przymierz",
|
|
1823
|
+
"Find Your Perfect Size": "Znajdź swój idealny rozmiar",
|
|
1824
|
+
"Get your size instantly, then try it on": "Uzyskaj swój rozmiar natychmiast, a następnie przymierz",
|
|
1825
|
+
"Get Your Size": "Uzyskaj swój rozmiar",
|
|
1826
|
+
"Instant fit recommendation": "Natychmiastowa rekomendacja dopasowania",
|
|
1827
|
+
"Try It On": "Przymierz to",
|
|
1828
|
+
"See how it looks on you": "Zobacz, jak to na Tobie wygląda",
|
|
1829
|
+
"Find My Size": "Znajdź mój rozmiar",
|
|
1830
|
+
"Takes less than a minute": "Zajmuje mniej niż minutę",
|
|
1831
|
+
"Upload a full body photo": "Prześlij zdjęcie całej sylwetki",
|
|
1832
|
+
"Drop your photo here or click to upload": "Upuść swoje zdjęcie tutaj lub kliknij, aby przesłać",
|
|
1833
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG lub WebP (max 10MB)",
|
|
1834
|
+
"Your photo": "Twoje zdjęcie",
|
|
1835
|
+
"Checking size guide...": "Sprawdzanie przewodnika rozmiarów...",
|
|
1836
|
+
"Looking for size chart data for this product": "Szukam danych tabeli rozmiarów dla tego produktu",
|
|
1837
|
+
"How would you like to find your size?": "Jak chciałbyś znaleźć swój rozmiar?",
|
|
1838
|
+
"Size guide is not available for this product — sizing will use standard measurements": "Przewodnik rozmiarów nie jest dostępny dla tego produktu — rozmiar będzie oparty na standardowych wymiarach",
|
|
1839
|
+
"Size guide found for this product": "Znaleziono przewodnik rozmiarów dla tego produktu",
|
|
1840
|
+
"Enter my measurements": "Wprowadź moje wymiary",
|
|
1841
|
+
"Chest, waist, hips, shoes & more": "Klatka piersiowa, talia, biodra, buty i więcej",
|
|
1842
|
+
"& more": "& więcej",
|
|
1843
|
+
"Best accuracy": "Najlepsza dokładność",
|
|
1844
|
+
"Just height & weight": "Tylko wzrost i waga",
|
|
1845
|
+
"Quick estimate in seconds": "Szybka ocena w sekundach",
|
|
1846
|
+
"Skip, just try it on": "Pomiń, po prostu przymierz",
|
|
1847
|
+
"Upload a photo to see how it looks": "Prześlij zdjęcie, aby zobaczyć, jak to wygląda",
|
|
1848
|
+
"Back": "Wstecz",
|
|
1849
|
+
"Auto-fill from saved profile...": "Automatyczne uzupełnianie z zapisanego profilu...",
|
|
1850
|
+
"I'm shopping for": "Kupuję dla",
|
|
1851
|
+
"Men's": "Mężczyzn",
|
|
1852
|
+
"Women's": "Kobiet",
|
|
1853
|
+
"Sizing region": "Region rozmiarów",
|
|
1854
|
+
"Required for this product": "Wymagane dla tego produktu",
|
|
1855
|
+
"Fit type": "Typ dopasowania",
|
|
1856
|
+
"Petite": "Petite",
|
|
1857
|
+
"Standard": "Standardowy",
|
|
1858
|
+
"Tall": "Wysoki",
|
|
1859
|
+
"Plus": "Plus",
|
|
1860
|
+
"Optional — improve accuracy & save to profile": "Opcjonalne — popraw dokładność i zapisz w profilu",
|
|
1861
|
+
"Height": "Wzrost",
|
|
1862
|
+
"Weight": "Waga",
|
|
1863
|
+
"Fill in what you know — more measurements = better accuracy.": "Wypełnij to, co wiesz — więcej wymiarów = lepsza dokładność.",
|
|
1864
|
+
"Save as profile": "Zapisz jako profil",
|
|
1865
|
+
"Profile name (e.g. John, Sarah)": "Nazwa profilu (np. Jan, Sara)",
|
|
1866
|
+
"Get My Size": "Uzyskaj mój rozmiar",
|
|
1867
|
+
"cm": "cm",
|
|
1868
|
+
"in": "in",
|
|
1869
|
+
"ft": "ft",
|
|
1870
|
+
"kg": "kg",
|
|
1871
|
+
"lbs": "lbs",
|
|
1872
|
+
"Bust": "Biust",
|
|
1873
|
+
"Waist": "Talia",
|
|
1874
|
+
"Hips": "Biodra",
|
|
1875
|
+
"Shoulders": "Ramiona",
|
|
1876
|
+
"Inseam": "Długość nogawki",
|
|
1877
|
+
"Foot length": "Długość stopy",
|
|
1878
|
+
"Chest": "Klatka piersiowa",
|
|
1879
|
+
"Sleeve": "Rękaw",
|
|
1880
|
+
"Neck": "Szyja",
|
|
1881
|
+
"Foot": "Stopa",
|
|
1882
|
+
"Shoe EU": "But EU",
|
|
1883
|
+
"Shoe US": "But US",
|
|
1884
|
+
"Shoe UK": "But UK",
|
|
1885
|
+
"Shoe size (US)": "Rozmiar buta (US)",
|
|
1886
|
+
"Shoe size (UK)": "Rozmiar buta (UK)",
|
|
1887
|
+
"Shoe size (EU)": "Rozmiar buta (EU)",
|
|
1888
|
+
"United States": "Stany Zjednoczone",
|
|
1889
|
+
"United Kingdom": "Wielka Brytania",
|
|
1890
|
+
"Europe (EU)": "Europa (EU)",
|
|
1891
|
+
"France": "Francja",
|
|
1892
|
+
"Italy": "Włochy",
|
|
1893
|
+
"Germany": "Niemcy",
|
|
1894
|
+
"Spain": "Hiszpania",
|
|
1895
|
+
"Japan": "Japonia",
|
|
1896
|
+
"China": "Chiny",
|
|
1897
|
+
"South Korea": "Korea Południowa",
|
|
1898
|
+
"Australia": "Australia",
|
|
1899
|
+
"Brazil": "Brazylia",
|
|
1900
|
+
"Preparing your image...": "Przygotowywanie twojego obrazu...",
|
|
1901
|
+
"Analyzing body proportions...": "Analizowanie proporcji ciała...",
|
|
1902
|
+
"Matching garment to your photo...": "Dopasowywanie odzieży do twojego zdjęcia...",
|
|
1903
|
+
"Generating virtual try-on...": "Generowanie wirtualnych przymiarek...",
|
|
1904
|
+
"Refining details...": "Udoskonalanie szczegółów...",
|
|
1905
|
+
"Almost there...": "Prawie gotowe...",
|
|
1906
|
+
"Complete!": "Gotowe!",
|
|
1907
|
+
"This usually takes 15-25 seconds": "To zazwyczaj zajmuje 15-25 sekund",
|
|
1908
|
+
"This usually takes 15-20 seconds": "To zazwyczaj zajmuje 15-20 sekund",
|
|
1909
|
+
"Your Size": "Twój rozmiar",
|
|
1910
|
+
"High Confidence": "Wysoka pewność",
|
|
1911
|
+
"Medium Confidence": "Średnia pewność",
|
|
1912
|
+
"Low Confidence": "Niska pewność",
|
|
1913
|
+
"Sizing by Garment": "Rozmiar według odzieży",
|
|
1914
|
+
"Fit Summary": "Podsumowanie dopasowania",
|
|
1915
|
+
"within range": "w zakresie",
|
|
1916
|
+
"may be snug": "może być ciasne",
|
|
1917
|
+
"may be loose": "może być luźne",
|
|
1918
|
+
"See details": "Zobacz szczegóły",
|
|
1919
|
+
"Hide details": "Ukryj szczegóły",
|
|
1920
|
+
"Area": "Obszar",
|
|
1921
|
+
"You": "Ty",
|
|
1922
|
+
"Chart": "Tabela",
|
|
1923
|
+
"Fit": "Dopasowanie",
|
|
1924
|
+
"Equivalent Sizes": "Odpowiednie rozmiary",
|
|
1925
|
+
"Analyzing your size...": "Analizowanie twojego rozmiaru...",
|
|
1926
|
+
"Your size:": "Twój rozmiar:",
|
|
1927
|
+
"Done": "Gotowe",
|
|
1928
|
+
"Try-on result": "Wynik przymiarek",
|
|
1929
|
+
"Download": "Pobierz",
|
|
1930
|
+
"Start Over": "Zacznij od nowa",
|
|
1931
|
+
"Try Another": "Spróbuj innego",
|
|
1932
|
+
"Something went wrong": "Coś poszło nie tak",
|
|
1933
|
+
"Try Again": "Spróbuj ponownie",
|
|
1934
|
+
"Please upload a JPEG, PNG, or WebP image.": "Proszę przesłać obraz JPEG, PNG lub WebP.",
|
|
1935
|
+
"Image must be under 10MB.": "Obraz musi mieć mniej niż 10MB.",
|
|
1936
|
+
"Try-on generation failed": "Generowanie przymiarek nie powiodło się",
|
|
1937
|
+
"Failed to start try-on": "Nie udało się rozpocząć przymiarek",
|
|
1938
|
+
"SDK not configured. Please provide an API key.": "SDK nie jest skonfigurowane. Proszę podać klucz API.",
|
|
1939
|
+
"No product image found. Please set the product-image attribute.": "Nie znaleziono obrazu produktu. Proszę ustawić atrybut obrazu produktu.",
|
|
1940
|
+
"My Profiles": "Moje profile",
|
|
1941
|
+
"No saved profiles yet.": "Brak zapisanych profili.",
|
|
1942
|
+
"No history yet.": "Brak historii.",
|
|
1943
|
+
"Product": "Produkt",
|
|
1944
|
+
"Women's Profile": "Profil Kobiet",
|
|
1945
|
+
"Men's Profile": "Profil Mężczyzn",
|
|
1946
|
+
"Saved": "Zapisane",
|
|
1947
|
+
"Delete Profile": "Usuń profil"
|
|
1948
|
+
};
|
|
1949
|
+
const ptBr = {
|
|
1950
|
+
"Virtual Try-On": "Experiência Virtual",
|
|
1951
|
+
"Powered by": "Desenvolvido por",
|
|
1952
|
+
"Profiles": "Perfis",
|
|
1953
|
+
"History": "Histórico",
|
|
1954
|
+
"Welcome": "Bem-vindo",
|
|
1955
|
+
"Size": "Tamanho",
|
|
1956
|
+
"Your Fit": "Seu Ajuste",
|
|
1957
|
+
"Try On": "Experimente",
|
|
1958
|
+
"Find Your Perfect Size": "Encontre Seu Tamanho Perfeito",
|
|
1959
|
+
"Get your size instantly, then try it on": "Obtenha seu tamanho instantaneamente e experimente",
|
|
1960
|
+
"Get Your Size": "Obtenha Seu Tamanho",
|
|
1961
|
+
"Instant fit recommendation": "Recomendação de ajuste instantânea",
|
|
1962
|
+
"Try It On": "Experimente",
|
|
1963
|
+
"See how it looks on you": "Veja como fica em você",
|
|
1964
|
+
"Find My Size": "Encontre Meu Tamanho",
|
|
1965
|
+
"Takes less than a minute": "Leva menos de um minuto",
|
|
1966
|
+
"Upload a full body photo": "Envie uma foto do corpo inteiro",
|
|
1967
|
+
"Drop your photo here or click to upload": "Arraste sua foto aqui ou clique para enviar",
|
|
1968
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG ou WebP (máx 10MB)",
|
|
1969
|
+
"Your photo": "Sua foto",
|
|
1970
|
+
"Checking size guide...": "Verificando guia de tamanhos...",
|
|
1971
|
+
"Looking for size chart data for this product": "Buscando dados da tabela de tamanhos para este produto",
|
|
1972
|
+
"How would you like to find your size?": "Como você gostaria de encontrar seu tamanho?",
|
|
1973
|
+
"Size guide is not available for this product — sizing will use standard measurements": "O guia de tamanhos não está disponível para este produto — o tamanho usará medidas padrão",
|
|
1974
|
+
"Size guide found for this product": "Guia de tamanhos encontrado para este produto",
|
|
1975
|
+
"Enter my measurements": "Digite minhas medidas",
|
|
1976
|
+
"Chest, waist, hips, shoes & more": "Peito, cintura, quadris, sapatos e mais",
|
|
1977
|
+
"& more": "& mais",
|
|
1978
|
+
"Best accuracy": "Melhor precisão",
|
|
1979
|
+
"Just height & weight": "Apenas altura e peso",
|
|
1980
|
+
"Quick estimate in seconds": "Estimativa rápida em segundos",
|
|
1981
|
+
"Skip, just try it on": "Pule, apenas experimente",
|
|
1982
|
+
"Upload a photo to see how it looks": "Envie uma foto para ver como fica",
|
|
1983
|
+
"Back": "Voltar",
|
|
1984
|
+
"Auto-fill from saved profile...": "Preencher automaticamente a partir do perfil salvo...",
|
|
1985
|
+
"I'm shopping for": "Estou comprando para",
|
|
1986
|
+
"Men's": "Masculino",
|
|
1987
|
+
"Women's": "Feminino",
|
|
1988
|
+
"Sizing region": "Região de tamanhos",
|
|
1989
|
+
"Required for this product": "Necessário para este produto",
|
|
1990
|
+
"Fit type": "Tipo de ajuste",
|
|
1991
|
+
"Petite": "Petite",
|
|
1992
|
+
"Standard": "Padrão",
|
|
1993
|
+
"Tall": "Alto",
|
|
1994
|
+
"Plus": "Plus",
|
|
1995
|
+
"Optional — improve accuracy & save to profile": "Opcional — melhore a precisão e salve no perfil",
|
|
1996
|
+
"Height": "Altura",
|
|
1997
|
+
"Weight": "Peso",
|
|
1998
|
+
"Fill in what you know — more measurements = better accuracy.": "Preencha o que você sabe — mais medidas = melhor precisão.",
|
|
1999
|
+
"Save as profile": "Salvar como perfil",
|
|
2000
|
+
"Profile name (e.g. John, Sarah)": "Nome do perfil (ex: João, Sarah)",
|
|
2001
|
+
"Get My Size": "Obtenha Meu Tamanho",
|
|
2002
|
+
"cm": "cm",
|
|
2003
|
+
"in": "in",
|
|
2004
|
+
"ft": "ft",
|
|
2005
|
+
"kg": "kg",
|
|
2006
|
+
"lbs": "lbs",
|
|
2007
|
+
"Bust": "Busto",
|
|
2008
|
+
"Waist": "Cintura",
|
|
2009
|
+
"Hips": "Quadris",
|
|
2010
|
+
"Shoulders": "Ombros",
|
|
2011
|
+
"Inseam": "Entrepernas",
|
|
2012
|
+
"Foot length": "Comprimento do pé",
|
|
2013
|
+
"Chest": "Peito",
|
|
2014
|
+
"Sleeve": "Manga",
|
|
2015
|
+
"Neck": "Pescoço",
|
|
2016
|
+
"Foot": "Pé",
|
|
2017
|
+
"Shoe EU": "Sapato EU",
|
|
2018
|
+
"Shoe US": "Sapato US",
|
|
2019
|
+
"Shoe UK": "Sapato UK",
|
|
2020
|
+
"Shoe size (US)": "Tamanho do sapato (US)",
|
|
2021
|
+
"Shoe size (UK)": "Tamanho do sapato (UK)",
|
|
2022
|
+
"Shoe size (EU)": "Tamanho do sapato (EU)",
|
|
2023
|
+
"United States": "Estados Unidos",
|
|
2024
|
+
"United Kingdom": "Reino Unido",
|
|
2025
|
+
"Europe (EU)": "Europa (EU)",
|
|
2026
|
+
"France": "França",
|
|
2027
|
+
"Italy": "Itália",
|
|
2028
|
+
"Germany": "Alemanha",
|
|
2029
|
+
"Spain": "Espanha",
|
|
2030
|
+
"Japan": "Japão",
|
|
2031
|
+
"China": "China",
|
|
2032
|
+
"South Korea": "Coreia do Sul",
|
|
2033
|
+
"Australia": "Austrália",
|
|
2034
|
+
"Brazil": "Brasil",
|
|
2035
|
+
"Preparing your image...": "Preparando sua imagem...",
|
|
2036
|
+
"Analyzing body proportions...": "Analisando proporções corporais...",
|
|
2037
|
+
"Matching garment to your photo...": "Ajustando a peça à sua foto...",
|
|
2038
|
+
"Generating virtual try-on...": "Gerando experiência virtual...",
|
|
2039
|
+
"Refining details...": "Aprimorando detalhes...",
|
|
2040
|
+
"Almost there...": "Quase lá...",
|
|
2041
|
+
"Complete!": "Completo!",
|
|
2042
|
+
"This usually takes 15-25 seconds": "Isso geralmente leva de 15 a 25 segundos",
|
|
2043
|
+
"This usually takes 15-20 seconds": "Isso geralmente leva de 15 a 20 segundos",
|
|
2044
|
+
"Your Size": "Seu Tamanho",
|
|
2045
|
+
"High Confidence": "Alta Confiança",
|
|
2046
|
+
"Medium Confidence": "Confiança Média",
|
|
2047
|
+
"Low Confidence": "Baixa Confiança",
|
|
2048
|
+
"Sizing by Garment": "Tamanhos por Peça",
|
|
2049
|
+
"Fit Summary": "Resumo do Ajuste",
|
|
2050
|
+
"within range": "dentro da faixa",
|
|
2051
|
+
"may be snug": "pode ser justo",
|
|
2052
|
+
"may be loose": "pode ser folgado",
|
|
2053
|
+
"See details": "Ver detalhes",
|
|
2054
|
+
"Hide details": "Ocultar detalhes",
|
|
2055
|
+
"Area": "Área",
|
|
2056
|
+
"You": "Você",
|
|
2057
|
+
"Chart": "Tabela",
|
|
2058
|
+
"Fit": "Ajuste",
|
|
2059
|
+
"Equivalent Sizes": "Tamanhos Equivalentes",
|
|
2060
|
+
"Analyzing your size...": "Analisando seu tamanho...",
|
|
2061
|
+
"Your size:": "Seu tamanho:",
|
|
2062
|
+
"Done": "Pronto",
|
|
2063
|
+
"Try-on result": "Resultado da experiência",
|
|
2064
|
+
"Download": "Baixar",
|
|
2065
|
+
"Start Over": "Recomeçar",
|
|
2066
|
+
"Try Another": "Tente Outro",
|
|
2067
|
+
"Something went wrong": "Algo deu errado",
|
|
2068
|
+
"Try Again": "Tente Novamente",
|
|
2069
|
+
"Please upload a JPEG, PNG, or WebP image.": "Por favor, envie uma imagem JPEG, PNG ou WebP.",
|
|
2070
|
+
"Image must be under 10MB.": "A imagem deve ter menos de 10MB.",
|
|
2071
|
+
"Try-on generation failed": "Falha na geração da experiência",
|
|
2072
|
+
"Failed to start try-on": "Falha ao iniciar a experiência",
|
|
2073
|
+
"SDK not configured. Please provide an API key.": "SDK não configurado. Por favor, forneça uma chave de API.",
|
|
2074
|
+
"No product image found. Please set the product-image attribute.": "Nenhuma imagem do produto encontrada. Por favor, defina o atributo product-image.",
|
|
2075
|
+
"My Profiles": "Meus Perfis",
|
|
2076
|
+
"No saved profiles yet.": "Nenhum perfil salvo ainda.",
|
|
2077
|
+
"No history yet.": "Nenhum histórico ainda.",
|
|
2078
|
+
"Product": "Produto",
|
|
2079
|
+
"Women's Profile": "Perfil Feminino",
|
|
2080
|
+
"Men's Profile": "Perfil Masculino",
|
|
2081
|
+
"Saved": "Salvo",
|
|
2082
|
+
"Delete Profile": "Excluir Perfil"
|
|
2083
|
+
};
|
|
2084
|
+
const ptPt = {
|
|
2085
|
+
"Virtual Try-On": "Experiência Virtual",
|
|
2086
|
+
"Powered by": "Desenvolvido por",
|
|
2087
|
+
"Profiles": "Perfis",
|
|
2088
|
+
"History": "Histórico",
|
|
2089
|
+
"Welcome": "Bem-vindo",
|
|
2090
|
+
"Size": "Tamanho",
|
|
2091
|
+
"Your Fit": "O Seu Ajuste",
|
|
2092
|
+
"Try On": "Experimentar",
|
|
2093
|
+
"Find Your Perfect Size": "Encontre o Seu Tamanho Perfeito",
|
|
2094
|
+
"Get your size instantly, then try it on": "Obtenha o seu tamanho instantaneamente e depois experimente",
|
|
2095
|
+
"Get Your Size": "Obtenha o Seu Tamanho",
|
|
2096
|
+
"Instant fit recommendation": "Recomendação de ajuste instantânea",
|
|
2097
|
+
"Try It On": "Experimente",
|
|
2098
|
+
"See how it looks on you": "Veja como fica em si",
|
|
2099
|
+
"Find My Size": "Encontrar o Meu Tamanho",
|
|
2100
|
+
"Takes less than a minute": "Leva menos de um minuto",
|
|
2101
|
+
"Upload a full body photo": "Carregue uma foto de corpo inteiro",
|
|
2102
|
+
"Drop your photo here or click to upload": "Arraste a sua foto aqui ou clique para carregar",
|
|
2103
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG ou WebP (máx 10MB)",
|
|
2104
|
+
"Your photo": "A sua foto",
|
|
2105
|
+
"Checking size guide...": "A verificar o guia de tamanhos...",
|
|
2106
|
+
"Looking for size chart data for this product": "À procura de dados da tabela de tamanhos para este produto",
|
|
2107
|
+
"How would you like to find your size?": "Como gostaria de encontrar o seu tamanho?",
|
|
2108
|
+
"Size guide is not available for this product — sizing will use standard measurements": "O guia de tamanhos não está disponível para este produto — o tamanho usará medidas padrão",
|
|
2109
|
+
"Size guide found for this product": "Guia de tamanhos encontrado para este produto",
|
|
2110
|
+
"Enter my measurements": "Introduzir as minhas medidas",
|
|
2111
|
+
"Chest, waist, hips, shoes & more": "Peito, cintura, anca, sapatos e mais",
|
|
2112
|
+
"& more": "& mais",
|
|
2113
|
+
"Best accuracy": "Melhor precisão",
|
|
2114
|
+
"Just height & weight": "Apenas altura e peso",
|
|
2115
|
+
"Quick estimate in seconds": "Estimativa rápida em segundos",
|
|
2116
|
+
"Skip, just try it on": "Ignorar, apenas experimente",
|
|
2117
|
+
"Upload a photo to see how it looks": "Carregue uma foto para ver como fica",
|
|
2118
|
+
"Back": "Voltar",
|
|
2119
|
+
"Auto-fill from saved profile...": "Preencher automaticamente a partir do perfil guardado...",
|
|
2120
|
+
"I'm shopping for": "Estou a comprar para",
|
|
2121
|
+
"Men's": "Masculino",
|
|
2122
|
+
"Women's": "Feminino",
|
|
2123
|
+
"Sizing region": "Região de tamanhos",
|
|
2124
|
+
"Required for this product": "Necessário para este produto",
|
|
2125
|
+
"Fit type": "Tipo de ajuste",
|
|
2126
|
+
"Petite": "Pequeno",
|
|
2127
|
+
"Standard": "Padrão",
|
|
2128
|
+
"Tall": "Alto",
|
|
2129
|
+
"Plus": "Plus",
|
|
2130
|
+
"Optional — improve accuracy & save to profile": "Opcional — melhorar a precisão e guardar no perfil",
|
|
2131
|
+
"Height": "Altura",
|
|
2132
|
+
"Weight": "Peso",
|
|
2133
|
+
"Fill in what you know — more measurements = better accuracy.": "Preencha o que sabe — mais medidas = melhor precisão.",
|
|
2134
|
+
"Save as profile": "Guardar como perfil",
|
|
2135
|
+
"Profile name (e.g. John, Sarah)": "Nome do perfil (ex. João, Sara)",
|
|
2136
|
+
"Get My Size": "Obter o Meu Tamanho",
|
|
2137
|
+
"cm": "cm",
|
|
2138
|
+
"in": "in",
|
|
2139
|
+
"ft": "ft",
|
|
2140
|
+
"kg": "kg",
|
|
2141
|
+
"lbs": "lbs",
|
|
2142
|
+
"Bust": "Busto",
|
|
2143
|
+
"Waist": "Cintura",
|
|
2144
|
+
"Hips": "Ancas",
|
|
2145
|
+
"Shoulders": "Ombros",
|
|
2146
|
+
"Inseam": "Entrepernas",
|
|
2147
|
+
"Foot length": "Comprimento do pé",
|
|
2148
|
+
"Chest": "Peito",
|
|
2149
|
+
"Sleeve": "Manga",
|
|
2150
|
+
"Neck": "Pescoço",
|
|
2151
|
+
"Foot": "Pé",
|
|
2152
|
+
"Shoe EU": "Sapatilha EU",
|
|
2153
|
+
"Shoe US": "Sapatilha US",
|
|
2154
|
+
"Shoe UK": "Sapatilha UK",
|
|
2155
|
+
"Shoe size (US)": "Tamanho do sapato (US)",
|
|
2156
|
+
"Shoe size (UK)": "Tamanho do sapato (UK)",
|
|
2157
|
+
"Shoe size (EU)": "Tamanho do sapato (EU)",
|
|
2158
|
+
"United States": "Estados Unidos",
|
|
2159
|
+
"United Kingdom": "Reino Unido",
|
|
2160
|
+
"Europe (EU)": "Europa (EU)",
|
|
2161
|
+
"France": "França",
|
|
2162
|
+
"Italy": "Itália",
|
|
2163
|
+
"Germany": "Alemanha",
|
|
2164
|
+
"Spain": "Espanha",
|
|
2165
|
+
"Japan": "Japão",
|
|
2166
|
+
"China": "China",
|
|
2167
|
+
"South Korea": "Coreia do Sul",
|
|
2168
|
+
"Australia": "Austrália",
|
|
2169
|
+
"Brazil": "Brasil",
|
|
2170
|
+
"Preparing your image...": "A preparar a sua imagem...",
|
|
2171
|
+
"Analyzing body proportions...": "A analisar as proporções do corpo...",
|
|
2172
|
+
"Matching garment to your photo...": "A combinar a peça com a sua foto...",
|
|
2173
|
+
"Generating virtual try-on...": "A gerar a experiência virtual...",
|
|
2174
|
+
"Refining details...": "A refinar detalhes...",
|
|
2175
|
+
"Almost there...": "Quase lá...",
|
|
2176
|
+
"Complete!": "Completo!",
|
|
2177
|
+
"This usually takes 15-25 seconds": "Isto normalmente leva 15-25 segundos",
|
|
2178
|
+
"This usually takes 15-20 seconds": "Isto normalmente leva 15-20 segundos",
|
|
2179
|
+
"Your Size": "O Seu Tamanho",
|
|
2180
|
+
"High Confidence": "Alta Confiança",
|
|
2181
|
+
"Medium Confidence": "Confiança Média",
|
|
2182
|
+
"Low Confidence": "Baixa Confiança",
|
|
2183
|
+
"Sizing by Garment": "Tamanhos por Peça",
|
|
2184
|
+
"Fit Summary": "Resumo do Ajuste",
|
|
2185
|
+
"within range": "dentro da faixa",
|
|
2186
|
+
"may be snug": "pode ser justo",
|
|
2187
|
+
"may be loose": "pode ser largo",
|
|
2188
|
+
"See details": "Ver detalhes",
|
|
2189
|
+
"Hide details": "Ocultar detalhes",
|
|
2190
|
+
"Area": "Área",
|
|
2191
|
+
"You": "Você",
|
|
2192
|
+
"Chart": "Tabela",
|
|
2193
|
+
"Fit": "Ajuste",
|
|
2194
|
+
"Equivalent Sizes": "Tamanhos Equivalentes",
|
|
2195
|
+
"Analyzing your size...": "A analisar o seu tamanho...",
|
|
2196
|
+
"Your size:": "O seu tamanho:",
|
|
2197
|
+
"Done": "Concluído",
|
|
2198
|
+
"Try-on result": "Resultado da experiência",
|
|
2199
|
+
"Download": "Descarregar",
|
|
2200
|
+
"Start Over": "Recomeçar",
|
|
2201
|
+
"Try Another": "Tentar Outro",
|
|
2202
|
+
"Something went wrong": "Algo correu mal",
|
|
2203
|
+
"Try Again": "Tente Novamente",
|
|
2204
|
+
"Please upload a JPEG, PNG, or WebP image.": "Por favor, carregue uma imagem JPEG, PNG ou WebP.",
|
|
2205
|
+
"Image must be under 10MB.": "A imagem deve ter menos de 10MB.",
|
|
2206
|
+
"Try-on generation failed": "Falha na geração da experiência",
|
|
2207
|
+
"Failed to start try-on": "Falha ao iniciar a experiência",
|
|
2208
|
+
"SDK not configured. Please provide an API key.": "SDK não configurado. Por favor, forneça uma chave de API.",
|
|
2209
|
+
"No product image found. Please set the product-image attribute.": "Nenhuma imagem de produto encontrada. Por favor, defina o atributo de imagem do produto.",
|
|
2210
|
+
"My Profiles": "Meus Perfis",
|
|
2211
|
+
"No saved profiles yet.": "Ainda não há perfis guardados.",
|
|
2212
|
+
"No history yet.": "Ainda não há histórico.",
|
|
2213
|
+
"Product": "Produto",
|
|
2214
|
+
"Women's Profile": "Perfil Feminino",
|
|
2215
|
+
"Men's Profile": "Perfil Masculino",
|
|
2216
|
+
"Saved": "Guardado",
|
|
2217
|
+
"Delete Profile": "Eliminar Perfil"
|
|
2218
|
+
};
|
|
2219
|
+
const sv = {
|
|
2220
|
+
"Virtual Try-On": "Virtuell provning",
|
|
2221
|
+
"Powered by": "Drivs av",
|
|
2222
|
+
"Profiles": "Profiler",
|
|
2223
|
+
"History": "Historik",
|
|
2224
|
+
"Welcome": "Välkommen",
|
|
2225
|
+
"Size": "Storlek",
|
|
2226
|
+
"Your Fit": "Din passform",
|
|
2227
|
+
"Try On": "Prova",
|
|
2228
|
+
"Find Your Perfect Size": "Hitta din perfekta storlek",
|
|
2229
|
+
"Get your size instantly, then try it on": "Få din storlek direkt, prova sedan",
|
|
2230
|
+
"Get Your Size": "Få din storlek",
|
|
2231
|
+
"Instant fit recommendation": "Omedelbar passformsrekommendation",
|
|
2232
|
+
"Try It On": "Prova det",
|
|
2233
|
+
"See how it looks on you": "Se hur det ser ut på dig",
|
|
2234
|
+
"Find My Size": "Hitta min storlek",
|
|
2235
|
+
"Takes less than a minute": "Tar mindre än en minut",
|
|
2236
|
+
"Upload a full body photo": "Ladda upp ett helkroppsfoto",
|
|
2237
|
+
"Drop your photo here or click to upload": "Dra ditt foto hit eller klicka för att ladda upp",
|
|
2238
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG eller WebP (max 10MB)",
|
|
2239
|
+
"Your photo": "Ditt foto",
|
|
2240
|
+
"Checking size guide...": "Kontrollerar storleksguide...",
|
|
2241
|
+
"Looking for size chart data for this product": "Letar efter storlekstabelldata för denna produkt",
|
|
2242
|
+
"How would you like to find your size?": "Hur vill du hitta din storlek?",
|
|
2243
|
+
"Size guide is not available for this product — sizing will use standard measurements": "Storleksguide är inte tillgänglig för denna produkt — storleken kommer att använda standardmått",
|
|
2244
|
+
"Size guide found for this product": "Storleksguide hittad för denna produkt",
|
|
2245
|
+
"Enter my measurements": "Ange mina mått",
|
|
2246
|
+
"Chest, waist, hips, shoes & more": "Bröst, midja, höfter, skor & mer",
|
|
2247
|
+
"& more": "& mer",
|
|
2248
|
+
"Best accuracy": "Bästa noggrannhet",
|
|
2249
|
+
"Just height & weight": "Bara längd & vikt",
|
|
2250
|
+
"Quick estimate in seconds": "Snabb uppskattning på sekunder",
|
|
2251
|
+
"Skip, just try it on": "Hoppa över, prova bara",
|
|
2252
|
+
"Upload a photo to see how it looks": "Ladda upp ett foto för att se hur det ser ut",
|
|
2253
|
+
"Back": "Tillbaka",
|
|
2254
|
+
"Auto-fill from saved profile...": "Automatisk ifyllnad från sparad profil...",
|
|
2255
|
+
"I'm shopping for": "Jag handlar för",
|
|
2256
|
+
"Men's": "Herr",
|
|
2257
|
+
"Women's": "Dam",
|
|
2258
|
+
"Sizing region": "Storleksregion",
|
|
2259
|
+
"Required for this product": "Obligatorisk för denna produkt",
|
|
2260
|
+
"Fit type": "Passformstyp",
|
|
2261
|
+
"Petite": "Petite",
|
|
2262
|
+
"Standard": "Standard",
|
|
2263
|
+
"Tall": "Lång",
|
|
2264
|
+
"Plus": "Plus",
|
|
2265
|
+
"Optional — improve accuracy & save to profile": "Valfritt — förbättra noggrannhet & spara till profil",
|
|
2266
|
+
"Height": "Längd",
|
|
2267
|
+
"Weight": "Vikt",
|
|
2268
|
+
"Fill in what you know — more measurements = better accuracy.": "Fyll i vad du vet — fler mått = bättre noggrannhet.",
|
|
2269
|
+
"Save as profile": "Spara som profil",
|
|
2270
|
+
"Profile name (e.g. John, Sarah)": "Profilnamn (t.ex. John, Sarah)",
|
|
2271
|
+
"Get My Size": "Få min storlek",
|
|
2272
|
+
"cm": "cm",
|
|
2273
|
+
"in": "in",
|
|
2274
|
+
"ft": "ft",
|
|
2275
|
+
"kg": "kg",
|
|
2276
|
+
"lbs": "lbs",
|
|
2277
|
+
"Bust": "Bröst",
|
|
2278
|
+
"Waist": "Midja",
|
|
2279
|
+
"Hips": "Höfter",
|
|
2280
|
+
"Shoulders": "Axlar",
|
|
2281
|
+
"Inseam": "Innersöm",
|
|
2282
|
+
"Foot length": "Fotlängd",
|
|
2283
|
+
"Chest": "Bröst",
|
|
2284
|
+
"Sleeve": "Ärm",
|
|
2285
|
+
"Neck": "Hals",
|
|
2286
|
+
"Foot": "Fot",
|
|
2287
|
+
"Shoe EU": "Sko EU",
|
|
2288
|
+
"Shoe US": "Sko US",
|
|
2289
|
+
"Shoe UK": "Sko UK",
|
|
2290
|
+
"Shoe size (US)": "Skostorlek (US)",
|
|
2291
|
+
"Shoe size (UK)": "Skostorlek (UK)",
|
|
2292
|
+
"Shoe size (EU)": "Skostorlek (EU)",
|
|
2293
|
+
"United States": "Förenta staterna",
|
|
2294
|
+
"United Kingdom": "Storbritannien",
|
|
2295
|
+
"Europe (EU)": "Europa (EU)",
|
|
2296
|
+
"France": "Frankrike",
|
|
2297
|
+
"Italy": "Italien",
|
|
2298
|
+
"Germany": "Tyskland",
|
|
2299
|
+
"Spain": "Spanien",
|
|
2300
|
+
"Japan": "Japan",
|
|
2301
|
+
"China": "Kina",
|
|
2302
|
+
"South Korea": "Sydkorea",
|
|
2303
|
+
"Australia": "Australien",
|
|
2304
|
+
"Brazil": "Brasilien",
|
|
2305
|
+
"Preparing your image...": "Förbereder din bild...",
|
|
2306
|
+
"Analyzing body proportions...": "Analyserar kroppens proportioner...",
|
|
2307
|
+
"Matching garment to your photo...": "Matchar plagg till ditt foto...",
|
|
2308
|
+
"Generating virtual try-on...": "Genererar virtuell provning...",
|
|
2309
|
+
"Refining details...": "Förfinar detaljer...",
|
|
2310
|
+
"Almost there...": "Nästan klart...",
|
|
2311
|
+
"Complete!": "Färdigt!",
|
|
2312
|
+
"This usually takes 15-25 seconds": "Detta tar vanligtvis 15-25 sekunder",
|
|
2313
|
+
"This usually takes 15-20 seconds": "Detta tar vanligtvis 15-20 sekunder",
|
|
2314
|
+
"Your Size": "Din storlek",
|
|
2315
|
+
"High Confidence": "Hög säkerhet",
|
|
2316
|
+
"Medium Confidence": "Mellan säkerhet",
|
|
2317
|
+
"Low Confidence": "Låg säkerhet",
|
|
2318
|
+
"Sizing by Garment": "Storlek efter plagg",
|
|
2319
|
+
"Fit Summary": "Passformsöversikt",
|
|
2320
|
+
"within range": "inom intervall",
|
|
2321
|
+
"may be snug": "kan vara tajt",
|
|
2322
|
+
"may be loose": "kan vara lös",
|
|
2323
|
+
"See details": "Se detaljer",
|
|
2324
|
+
"Hide details": "Dölj detaljer",
|
|
2325
|
+
"Area": "Område",
|
|
2326
|
+
"You": "Du",
|
|
2327
|
+
"Chart": "Diagram",
|
|
2328
|
+
"Fit": "Passform",
|
|
2329
|
+
"Equivalent Sizes": "Motsvarande storlekar",
|
|
2330
|
+
"Analyzing your size...": "Analyserar din storlek...",
|
|
2331
|
+
"Your size:": "Din storlek:",
|
|
2332
|
+
"Done": "Färdigt",
|
|
2333
|
+
"Try-on result": "Provningsresultat",
|
|
2334
|
+
"Download": "Ladda ner",
|
|
2335
|
+
"Start Over": "Börja om",
|
|
2336
|
+
"Try Another": "Prova en annan",
|
|
2337
|
+
"Something went wrong": "Något gick fel",
|
|
2338
|
+
"Try Again": "Försök igen",
|
|
2339
|
+
"Please upload a JPEG, PNG, or WebP image.": "Vänligen ladda upp en JPEG, PNG eller WebP-bild.",
|
|
2340
|
+
"Image must be under 10MB.": "Bilden måste vara under 10MB.",
|
|
2341
|
+
"Try-on generation failed": "Generering av provning misslyckades",
|
|
2342
|
+
"Failed to start try-on": "Misslyckades med att starta provning",
|
|
2343
|
+
"SDK not configured. Please provide an API key.": "SDK är inte konfigurerad. Vänligen ange en API-nyckel.",
|
|
2344
|
+
"No product image found. Please set the product-image attribute.": "Ingen produktbild hittades. Vänligen ställ in produktbild-attributet.",
|
|
2345
|
+
"My Profiles": "Mina profiler",
|
|
2346
|
+
"No saved profiles yet.": "Inga sparade profiler ännu.",
|
|
2347
|
+
"No history yet.": "Ingen historik ännu.",
|
|
2348
|
+
"Product": "Produkt",
|
|
2349
|
+
"Women's Profile": "Damprofil",
|
|
2350
|
+
"Men's Profile": "Herrprofil",
|
|
2351
|
+
"Saved": "Sparad",
|
|
2352
|
+
"Delete Profile": "Ta bort profil"
|
|
2353
|
+
};
|
|
2354
|
+
const th = {
|
|
2355
|
+
"Virtual Try-On": "การลองเสื้อผ้าเสมือน",
|
|
2356
|
+
"Powered by": "ขับเคลื่อนโดย",
|
|
2357
|
+
"Profiles": "โปรไฟล์",
|
|
2358
|
+
"History": "ประวัติ",
|
|
2359
|
+
"Welcome": "ยินดีต้อนรับ",
|
|
2360
|
+
"Size": "ขนาด",
|
|
2361
|
+
"Your Fit": "การใส่ของคุณ",
|
|
2362
|
+
"Try On": "ลองใส่",
|
|
2363
|
+
"Find Your Perfect Size": "ค้นหาขนาดที่เหมาะสมที่สุดของคุณ",
|
|
2364
|
+
"Get your size instantly, then try it on": "รับขนาดของคุณทันที จากนั้นลองใส่",
|
|
2365
|
+
"Get Your Size": "รับขนาดของคุณ",
|
|
2366
|
+
"Instant fit recommendation": "คำแนะนำขนาดที่เหมาะสมทันที",
|
|
2367
|
+
"Try It On": "ลองใส่",
|
|
2368
|
+
"See how it looks on you": "ดูว่ามันจะเป็นอย่างไรเมื่อใส่",
|
|
2369
|
+
"Find My Size": "ค้นหาขนาดของฉัน",
|
|
2370
|
+
"Takes less than a minute": "ใช้เวลาน้อยกว่าหนึ่งนาที",
|
|
2371
|
+
"Upload a full body photo": "อัปโหลดภาพถ่ายเต็มตัว",
|
|
2372
|
+
"Drop your photo here or click to upload": "วางภาพถ่ายของคุณที่นี่หรือคลิกเพื่ออัปโหลด",
|
|
2373
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG หรือ WebP (สูงสุด 10MB)",
|
|
2374
|
+
"Your photo": "ภาพถ่ายของคุณ",
|
|
2375
|
+
"Checking size guide...": "กำลังตรวจสอบคู่มือขนาด...",
|
|
2376
|
+
"Looking for size chart data for this product": "กำลังค้นหาข้อมูลตารางขนาดสำหรับผลิตภัณฑ์นี้",
|
|
2377
|
+
"How would you like to find your size?": "คุณต้องการค้นหาขนาดของคุณอย่างไร?",
|
|
2378
|
+
"Size guide is not available for this product — sizing will use standard measurements": "คู่มือขนาดไม่สามารถใช้ได้สำหรับผลิตภัณฑ์นี้ — ขนาดจะใช้การวัดมาตรฐาน",
|
|
2379
|
+
"Size guide found for this product": "พบคู่มือขนาดสำหรับผลิตภัณฑ์นี้",
|
|
2380
|
+
"Enter my measurements": "กรอกการวัดของฉัน",
|
|
2381
|
+
"Chest, waist, hips, shoes & more": "หน้าอก, เอว, สะโพก, รองเท้า & อื่นๆ",
|
|
2382
|
+
"& more": "& อื่นๆ",
|
|
2383
|
+
"Best accuracy": "ความแม่นยำสูงสุด",
|
|
2384
|
+
"Just height & weight": "แค่ส่วนสูง & น้ำหนัก",
|
|
2385
|
+
"Quick estimate in seconds": "การประเมินอย่างรวดเร็วในไม่กี่วินาที",
|
|
2386
|
+
"Skip, just try it on": "ข้ามไป ลองใส่เลย",
|
|
2387
|
+
"Upload a photo to see how it looks": "อัปโหลดภาพถ่ายเพื่อดูว่ามันจะเป็นอย่างไร",
|
|
2388
|
+
"Back": "กลับ",
|
|
2389
|
+
"Auto-fill from saved profile...": "กรอกอัตโนมัติจากโปรไฟล์ที่บันทึกไว้...",
|
|
2390
|
+
"I'm shopping for": "ฉันกำลังช็อปปิ้งสำหรับ",
|
|
2391
|
+
"Men's": "ผู้ชาย",
|
|
2392
|
+
"Women's": "ผู้หญิง",
|
|
2393
|
+
"Sizing region": "ภูมิภาคขนาด",
|
|
2394
|
+
"Required for this product": "จำเป็นสำหรับผลิตภัณฑ์นี้",
|
|
2395
|
+
"Fit type": "ประเภทการใส่",
|
|
2396
|
+
"Petite": "เล็ก",
|
|
2397
|
+
"Standard": "มาตรฐาน",
|
|
2398
|
+
"Tall": "สูง",
|
|
2399
|
+
"Plus": "พลัส",
|
|
2400
|
+
"Optional — improve accuracy & save to profile": "ไม่บังคับ — ปรับปรุงความแม่นยำ & บันทึกลงโปรไฟล์",
|
|
2401
|
+
"Height": "ส่วนสูง",
|
|
2402
|
+
"Weight": "น้ำหนัก",
|
|
2403
|
+
"Fill in what you know — more measurements = better accuracy.": "กรอกสิ่งที่คุณรู้ — การวัดมากขึ้น = ความแม่นยำที่ดีกว่า.",
|
|
2404
|
+
"Save as profile": "บันทึกเป็นโปรไฟล์",
|
|
2405
|
+
"Profile name (e.g. John, Sarah)": "ชื่อโปรไฟล์ (เช่น จอห์น, ซาราห์)",
|
|
2406
|
+
"Get My Size": "รับขนาดของฉัน",
|
|
2407
|
+
"cm": "cm",
|
|
2408
|
+
"in": "in",
|
|
2409
|
+
"ft": "ft",
|
|
2410
|
+
"kg": "kg",
|
|
2411
|
+
"lbs": "lbs",
|
|
2412
|
+
"Bust": "รอบอก",
|
|
2413
|
+
"Waist": "รอบเอว",
|
|
2414
|
+
"Hips": "สะโพก",
|
|
2415
|
+
"Shoulders": "ไหล่",
|
|
2416
|
+
"Inseam": "ความยาวขาใน",
|
|
2417
|
+
"Foot length": "ความยาวเท้า",
|
|
2418
|
+
"Chest": "หน้าอก",
|
|
2419
|
+
"Sleeve": "แขน",
|
|
2420
|
+
"Neck": "คอ",
|
|
2421
|
+
"Foot": "เท้า",
|
|
2422
|
+
"Shoe EU": "รองเท้า EU",
|
|
2423
|
+
"Shoe US": "รองเท้า US",
|
|
2424
|
+
"Shoe UK": "รองเท้า UK",
|
|
2425
|
+
"Shoe size (US)": "ขนาดรองเท้า (US)",
|
|
2426
|
+
"Shoe size (UK)": "ขนาดรองเท้า (UK)",
|
|
2427
|
+
"Shoe size (EU)": "ขนาดรองเท้า (EU)",
|
|
2428
|
+
"United States": "สหรัฐอเมริกา",
|
|
2429
|
+
"United Kingdom": "สหราชอาณาจักร",
|
|
2430
|
+
"Europe (EU)": "ยุโรป (EU)",
|
|
2431
|
+
"France": "ฝรั่งเศส",
|
|
2432
|
+
"Italy": "อิตาลี",
|
|
2433
|
+
"Germany": "เยอรมนี",
|
|
2434
|
+
"Spain": "สเปน",
|
|
2435
|
+
"Japan": "ญี่ปุ่น",
|
|
2436
|
+
"China": "จีน",
|
|
2437
|
+
"South Korea": "เกาหลีใต้",
|
|
2438
|
+
"Australia": "ออสเตรเลีย",
|
|
2439
|
+
"Brazil": "บราซิล",
|
|
2440
|
+
"Preparing your image...": "กำลังเตรียมภาพของคุณ...",
|
|
2441
|
+
"Analyzing body proportions...": "กำลังวิเคราะห์สัดส่วนร่างกาย...",
|
|
2442
|
+
"Matching garment to your photo...": "กำลังจับคู่เสื้อผ้ากับภาพถ่ายของคุณ...",
|
|
2443
|
+
"Generating virtual try-on...": "กำลังสร้างการลองเสื้อผ้าเสมือน...",
|
|
2444
|
+
"Refining details...": "กำลังปรับรายละเอียด...",
|
|
2445
|
+
"Almost there...": "เกือบถึงแล้ว...",
|
|
2446
|
+
"Complete!": "เสร็จสิ้น!",
|
|
2447
|
+
"This usually takes 15-25 seconds": "ปกตินี้ใช้เวลา 15-25 วินาที",
|
|
2448
|
+
"This usually takes 15-20 seconds": "ปกตินี้ใช้เวลา 15-20 วินาที",
|
|
2449
|
+
"Your Size": "ขนาดของคุณ",
|
|
2450
|
+
"High Confidence": "ความมั่นใจสูง",
|
|
2451
|
+
"Medium Confidence": "ความมั่นใจปานกลาง",
|
|
2452
|
+
"Low Confidence": "ความมั่นใจต่ำ",
|
|
2453
|
+
"Sizing by Garment": "การกำหนดขนาดตามเสื้อผ้า",
|
|
2454
|
+
"Fit Summary": "สรุปการใส่",
|
|
2455
|
+
"within range": "อยู่ในช่วง",
|
|
2456
|
+
"may be snug": "อาจจะคับ",
|
|
2457
|
+
"may be loose": "อาจจะหลวม",
|
|
2458
|
+
"See details": "ดูรายละเอียด",
|
|
2459
|
+
"Hide details": "ซ่อนรายละเอียด",
|
|
2460
|
+
"Area": "พื้นที่",
|
|
2461
|
+
"You": "คุณ",
|
|
2462
|
+
"Chart": "ตาราง",
|
|
2463
|
+
"Fit": "การใส่",
|
|
2464
|
+
"Equivalent Sizes": "ขนาดที่เทียบเท่า",
|
|
2465
|
+
"Analyzing your size...": "กำลังวิเคราะห์ขนาดของคุณ...",
|
|
2466
|
+
"Your size:": "ขนาดของคุณ:",
|
|
2467
|
+
"Done": "เสร็จแล้ว",
|
|
2468
|
+
"Try-on result": "ผลการลองใส่",
|
|
2469
|
+
"Download": "ดาวน์โหลด",
|
|
2470
|
+
"Start Over": "เริ่มใหม่",
|
|
2471
|
+
"Try Another": "ลองอีกครั้ง",
|
|
2472
|
+
"Something went wrong": "เกิดข้อผิดพลาด",
|
|
2473
|
+
"Try Again": "ลองอีกครั้ง",
|
|
2474
|
+
"Please upload a JPEG, PNG, or WebP image.": "กรุณาอัปโหลดภาพ JPEG, PNG หรือ WebP.",
|
|
2475
|
+
"Image must be under 10MB.": "ภาพต้องมีขนาดไม่เกิน 10MB.",
|
|
2476
|
+
"Try-on generation failed": "การสร้างการลองใส่ล้มเหลว",
|
|
2477
|
+
"Failed to start try-on": "ไม่สามารถเริ่มการลองใส่ได้",
|
|
2478
|
+
"SDK not configured. Please provide an API key.": "SDK ยังไม่ได้ตั้งค่า กรุณาให้ API key.",
|
|
2479
|
+
"No product image found. Please set the product-image attribute.": "ไม่พบภาพผลิตภัณฑ์ กรุณาตั้งค่าคุณสมบัติ product-image.",
|
|
2480
|
+
"My Profiles": "โปรไฟล์ของฉัน",
|
|
2481
|
+
"No saved profiles yet.": "ยังไม่มีโปรไฟล์ที่บันทึกไว้.",
|
|
2482
|
+
"No history yet.": "ยังไม่มีประวัติ.",
|
|
2483
|
+
"Product": "ผลิตภัณฑ์",
|
|
2484
|
+
"Women's Profile": "โปรไฟล์ผู้หญิง",
|
|
2485
|
+
"Men's Profile": "โปรไฟล์ผู้ชาย",
|
|
2486
|
+
"Saved": "บันทึกแล้ว",
|
|
2487
|
+
"Delete Profile": "ลบโปรไฟล์"
|
|
2488
|
+
};
|
|
2489
|
+
const tr = {
|
|
2490
|
+
"Virtual Try-On": "Sanal Deneme",
|
|
2491
|
+
"Powered by": "Güçlendiren",
|
|
2492
|
+
"Profiles": "Profiller",
|
|
2493
|
+
"History": "Geçmiş",
|
|
2494
|
+
"Welcome": "Hoşgeldiniz",
|
|
2495
|
+
"Size": "Beden",
|
|
2496
|
+
"Your Fit": "Uygunluğunuz",
|
|
2497
|
+
"Try On": "Deneyin",
|
|
2498
|
+
"Find Your Perfect Size": "Mükemmel Bedeninizi Bulun",
|
|
2499
|
+
"Get your size instantly, then try it on": "Bedeninizi anında alın, sonra deneyin",
|
|
2500
|
+
"Get Your Size": "Bedeninizi Alın",
|
|
2501
|
+
"Instant fit recommendation": "Anlık beden önerisi",
|
|
2502
|
+
"Try It On": "Deneyin",
|
|
2503
|
+
"See how it looks on you": "Sizde nasıl göründüğünü görün",
|
|
2504
|
+
"Find My Size": "Bedenimi Bul",
|
|
2505
|
+
"Takes less than a minute": "Bir dakikadan az sürer",
|
|
2506
|
+
"Upload a full body photo": "Tam vücut fotoğrafı yükleyin",
|
|
2507
|
+
"Drop your photo here or click to upload": "Fotoğrafınızı buraya bırakın veya yüklemek için tıklayın",
|
|
2508
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG veya WebP (maks 10MB)",
|
|
2509
|
+
"Your photo": "Fotoğrafınız",
|
|
2510
|
+
"Checking size guide...": "Beden kılavuzu kontrol ediliyor...",
|
|
2511
|
+
"Looking for size chart data for this product": "Bu ürün için beden tablosu verisi aranıyor",
|
|
2512
|
+
"How would you like to find your size?": "Bedeninizi nasıl bulmak istersiniz?",
|
|
2513
|
+
"Size guide is not available for this product — sizing will use standard measurements": "Bu ürün için beden kılavuzu mevcut değil — beden standart ölçüleri kullanacaktır",
|
|
2514
|
+
"Size guide found for this product": "Bu ürün için beden kılavuzu bulundu",
|
|
2515
|
+
"Enter my measurements": "Ölçülerimi girin",
|
|
2516
|
+
"Chest, waist, hips, shoes & more": "Göğüs, bel, kalça, ayakkabılar ve daha fazlası",
|
|
2517
|
+
"& more": "& daha fazlası",
|
|
2518
|
+
"Best accuracy": "En iyi doğruluk",
|
|
2519
|
+
"Just height & weight": "Sadece boy ve kilo",
|
|
2520
|
+
"Quick estimate in seconds": "Hızlı tahmin saniyeler içinde",
|
|
2521
|
+
"Skip, just try it on": "Atla, sadece deneyin",
|
|
2522
|
+
"Upload a photo to see how it looks": "Nasıl göründüğünü görmek için bir fotoğraf yükleyin",
|
|
2523
|
+
"Back": "Geri",
|
|
2524
|
+
"Auto-fill from saved profile...": "Kaydedilen profilden otomatik dolduruluyor...",
|
|
2525
|
+
"I'm shopping for": "Alışveriş yapıyorum",
|
|
2526
|
+
"Men's": "Erkek",
|
|
2527
|
+
"Women's": "Kadın",
|
|
2528
|
+
"Sizing region": "Beden bölgesi",
|
|
2529
|
+
"Required for this product": "Bu ürün için gereklidir",
|
|
2530
|
+
"Fit type": "Uygunluk türü",
|
|
2531
|
+
"Petite": "Küçük",
|
|
2532
|
+
"Standard": "Standart",
|
|
2533
|
+
"Tall": "Uzun",
|
|
2534
|
+
"Plus": "Büyük",
|
|
2535
|
+
"Optional — improve accuracy & save to profile": "İsteğe bağlı — doğruluğu artırın ve profilde kaydedin",
|
|
2536
|
+
"Height": "Boy",
|
|
2537
|
+
"Weight": "Kilo",
|
|
2538
|
+
"Fill in what you know — more measurements = better accuracy.": "Bildiklerinizi doldurun — daha fazla ölçüm = daha iyi doğruluk.",
|
|
2539
|
+
"Save as profile": "Profil olarak kaydet",
|
|
2540
|
+
"Profile name (e.g. John, Sarah)": "Profil adı (örn. John, Sarah)",
|
|
2541
|
+
"Get My Size": "Bedenimi Al",
|
|
2542
|
+
"cm": "cm",
|
|
2543
|
+
"in": "in",
|
|
2544
|
+
"ft": "ft",
|
|
2545
|
+
"kg": "kg",
|
|
2546
|
+
"lbs": "lbs",
|
|
2547
|
+
"Bust": "Göğüs",
|
|
2548
|
+
"Waist": "Bel",
|
|
2549
|
+
"Hips": "Kalça",
|
|
2550
|
+
"Shoulders": "Omuzlar",
|
|
2551
|
+
"Inseam": "İç dikiş",
|
|
2552
|
+
"Foot length": "Ayak uzunluğu",
|
|
2553
|
+
"Chest": "Göğüs",
|
|
2554
|
+
"Sleeve": "Kol",
|
|
2555
|
+
"Neck": "Boyun",
|
|
2556
|
+
"Foot": "Ayak",
|
|
2557
|
+
"Shoe EU": "Ayakkabı AB",
|
|
2558
|
+
"Shoe US": "Ayakkabı ABD",
|
|
2559
|
+
"Shoe UK": "Ayakkabı İngiltere",
|
|
2560
|
+
"Shoe size (US)": "Ayakkabı numarası (ABD)",
|
|
2561
|
+
"Shoe size (UK)": "Ayakkabı numarası (İngiltere)",
|
|
2562
|
+
"Shoe size (EU)": "Ayakkabı numarası (AB)",
|
|
2563
|
+
"United States": "Amerika Birleşik Devletleri",
|
|
2564
|
+
"United Kingdom": "Birleşik Krallık",
|
|
2565
|
+
"Europe (EU)": "Avrupa (AB)",
|
|
2566
|
+
"France": "Fransa",
|
|
2567
|
+
"Italy": "İtalya",
|
|
2568
|
+
"Germany": "Almanya",
|
|
2569
|
+
"Spain": "İspanya",
|
|
2570
|
+
"Japan": "Japonya",
|
|
2571
|
+
"China": "Çin",
|
|
2572
|
+
"South Korea": "Güney Kore",
|
|
2573
|
+
"Australia": "Avustralya",
|
|
2574
|
+
"Brazil": "Brezilya",
|
|
2575
|
+
"Preparing your image...": "Görüntünüz hazırlanıyor...",
|
|
2576
|
+
"Analyzing body proportions...": "Vücut oranları analiz ediliyor...",
|
|
2577
|
+
"Matching garment to your photo...": "Giysinin fotoğrafınıza uyum sağlaması...",
|
|
2578
|
+
"Generating virtual try-on...": "Sanal deneme oluşturuluyor...",
|
|
2579
|
+
"Refining details...": "Ayrıntılar rafine ediliyor...",
|
|
2580
|
+
"Almost there...": "Neredeyse tamam...",
|
|
2581
|
+
"Complete!": "Tamam!",
|
|
2582
|
+
"This usually takes 15-25 seconds": "Bu genellikle 15-25 saniye sürer",
|
|
2583
|
+
"This usually takes 15-20 seconds": "Bu genellikle 15-20 saniye sürer",
|
|
2584
|
+
"Your Size": "Bedeniniz",
|
|
2585
|
+
"High Confidence": "Yüksek Güven",
|
|
2586
|
+
"Medium Confidence": "Orta Güven",
|
|
2587
|
+
"Low Confidence": "Düşük Güven",
|
|
2588
|
+
"Sizing by Garment": "Giysiye Göre Beden",
|
|
2589
|
+
"Fit Summary": "Uygunluk Özeti",
|
|
2590
|
+
"within range": "aralık içinde",
|
|
2591
|
+
"may be snug": "dar olabilir",
|
|
2592
|
+
"may be loose": "bol olabilir",
|
|
2593
|
+
"See details": "Ayrıntıları Gör",
|
|
2594
|
+
"Hide details": "Ayrıntıları Gizle",
|
|
2595
|
+
"Area": "Alan",
|
|
2596
|
+
"You": "Siz",
|
|
2597
|
+
"Chart": "Tablo",
|
|
2598
|
+
"Fit": "Uygunluk",
|
|
2599
|
+
"Equivalent Sizes": "Eşdeğer Bedenler",
|
|
2600
|
+
"Analyzing your size...": "Bedeniniz analiz ediliyor...",
|
|
2601
|
+
"Your size:": "Bedeniniz:",
|
|
2602
|
+
"Done": "Tamamlandı",
|
|
2603
|
+
"Try-on result": "Deneme sonucu",
|
|
2604
|
+
"Download": "İndir",
|
|
2605
|
+
"Start Over": "Yeniden Başla",
|
|
2606
|
+
"Try Another": "Başka Birini Deneyin",
|
|
2607
|
+
"Something went wrong": "Bir şeyler yanlış gitti",
|
|
2608
|
+
"Try Again": "Tekrar Deneyin",
|
|
2609
|
+
"Please upload a JPEG, PNG, or WebP image.": "Lütfen bir JPEG, PNG veya WebP görüntüsü yükleyin.",
|
|
2610
|
+
"Image must be under 10MB.": "Görüntü 10MB'dan küçük olmalıdır.",
|
|
2611
|
+
"Try-on generation failed": "Deneme oluşturma başarısız oldu",
|
|
2612
|
+
"Failed to start try-on": "Deneme başlatılamadı",
|
|
2613
|
+
"SDK not configured. Please provide an API key.": "SDK yapılandırılmamış. Lütfen bir API anahtarı sağlayın.",
|
|
2614
|
+
"No product image found. Please set the product-image attribute.": "Ürün resmi bulunamadı. Lütfen ürün-görüntü niteliğini ayarlayın.",
|
|
2615
|
+
"My Profiles": "Profillerim",
|
|
2616
|
+
"No saved profiles yet.": "Henüz kaydedilmiş profil yok.",
|
|
2617
|
+
"No history yet.": "Henüz geçmiş yok.",
|
|
2618
|
+
"Product": "Ürün",
|
|
2619
|
+
"Women's Profile": "Kadın Profili",
|
|
2620
|
+
"Men's Profile": "Erkek Profili",
|
|
2621
|
+
"Saved": "Kaydedildi",
|
|
2622
|
+
"Delete Profile": "Profili Sil"
|
|
2623
|
+
};
|
|
2624
|
+
const zhCn = {
|
|
2625
|
+
"Virtual Try-On": "虚拟试穿",
|
|
2626
|
+
"Powered by": "由...提供支持",
|
|
2627
|
+
"Profiles": "个人资料",
|
|
2628
|
+
"History": "历史记录",
|
|
2629
|
+
"Welcome": "欢迎",
|
|
2630
|
+
"Size": "尺码",
|
|
2631
|
+
"Your Fit": "您的合身",
|
|
2632
|
+
"Try On": "试穿",
|
|
2633
|
+
"Find Your Perfect Size": "找到您的完美尺码",
|
|
2634
|
+
"Get your size instantly, then try it on": "立即获取您的尺码,然后试穿",
|
|
2635
|
+
"Get Your Size": "获取您的尺码",
|
|
2636
|
+
"Instant fit recommendation": "即时合身推荐",
|
|
2637
|
+
"Try It On": "试穿",
|
|
2638
|
+
"See how it looks on you": "看看它在您身上的效果",
|
|
2639
|
+
"Find My Size": "找到我的尺码",
|
|
2640
|
+
"Takes less than a minute": "不到一分钟",
|
|
2641
|
+
"Upload a full body photo": "上传全身照片",
|
|
2642
|
+
"Drop your photo here or click to upload": "将您的照片拖到这里或点击上传",
|
|
2643
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG, PNG 或 WebP(最大 10MB)",
|
|
2644
|
+
"Your photo": "您的照片",
|
|
2645
|
+
"Checking size guide...": "正在检查尺码指南...",
|
|
2646
|
+
"Looking for size chart data for this product": "正在查找此产品的尺码表数据",
|
|
2647
|
+
"How would you like to find your size?": "您希望如何找到您的尺码?",
|
|
2648
|
+
"Size guide is not available for this product — sizing will use standard measurements": "此产品没有尺码指南 — 尺码将使用标准测量",
|
|
2649
|
+
"Size guide found for this product": "找到此产品的尺码指南",
|
|
2650
|
+
"Enter my measurements": "输入我的测量数据",
|
|
2651
|
+
"Chest, waist, hips, shoes & more": "胸围、腰围、臀围、鞋码等",
|
|
2652
|
+
"& more": "等",
|
|
2653
|
+
"Best accuracy": "最佳准确性",
|
|
2654
|
+
"Just height & weight": "仅身高和体重",
|
|
2655
|
+
"Quick estimate in seconds": "几秒钟内快速估算",
|
|
2656
|
+
"Skip, just try it on": "跳过,直接试穿",
|
|
2657
|
+
"Upload a photo to see how it looks": "上传照片以查看效果",
|
|
2658
|
+
"Back": "返回",
|
|
2659
|
+
"Auto-fill from saved profile...": "从保存的个人资料自动填写...",
|
|
2660
|
+
"I'm shopping for": "我正在为...购物",
|
|
2661
|
+
"Men's": "男士",
|
|
2662
|
+
"Women's": "女士",
|
|
2663
|
+
"Sizing region": "尺码区域",
|
|
2664
|
+
"Required for this product": "此产品需要",
|
|
2665
|
+
"Fit type": "合身类型",
|
|
2666
|
+
"Petite": "小码",
|
|
2667
|
+
"Standard": "标准",
|
|
2668
|
+
"Tall": "高码",
|
|
2669
|
+
"Plus": "加大码",
|
|
2670
|
+
"Optional — improve accuracy & save to profile": "可选 — 提高准确性并保存到个人资料",
|
|
2671
|
+
"Height": "身高",
|
|
2672
|
+
"Weight": "体重",
|
|
2673
|
+
"Fill in what you know — more measurements = better accuracy.": "填写您知道的 — 更多测量 = 更好的准确性。",
|
|
2674
|
+
"Save as profile": "保存为个人资料",
|
|
2675
|
+
"Profile name (e.g. John, Sarah)": "个人资料名称(例如:John,Sarah)",
|
|
2676
|
+
"Get My Size": "获取我的尺码",
|
|
2677
|
+
"cm": "cm",
|
|
2678
|
+
"in": "in",
|
|
2679
|
+
"ft": "ft",
|
|
2680
|
+
"kg": "kg",
|
|
2681
|
+
"lbs": "lbs",
|
|
2682
|
+
"Bust": "胸围",
|
|
2683
|
+
"Waist": "腰围",
|
|
2684
|
+
"Hips": "臀围",
|
|
2685
|
+
"Shoulders": "肩宽",
|
|
2686
|
+
"Inseam": "内侧缝",
|
|
2687
|
+
"Foot length": "脚长",
|
|
2688
|
+
"Chest": "胸部",
|
|
2689
|
+
"Sleeve": "袖长",
|
|
2690
|
+
"Neck": "颈围",
|
|
2691
|
+
"Foot": "脚",
|
|
2692
|
+
"Shoe EU": "鞋码 EU",
|
|
2693
|
+
"Shoe US": "鞋码 US",
|
|
2694
|
+
"Shoe UK": "鞋码 UK",
|
|
2695
|
+
"Shoe size (US)": "鞋码(US)",
|
|
2696
|
+
"Shoe size (UK)": "鞋码(UK)",
|
|
2697
|
+
"Shoe size (EU)": "鞋码(EU)",
|
|
2698
|
+
"United States": "美国",
|
|
2699
|
+
"United Kingdom": "英国",
|
|
2700
|
+
"Europe (EU)": "欧洲(EU)",
|
|
2701
|
+
"France": "法国",
|
|
2702
|
+
"Italy": "意大利",
|
|
2703
|
+
"Germany": "德国",
|
|
2704
|
+
"Spain": "西班牙",
|
|
2705
|
+
"Japan": "日本",
|
|
2706
|
+
"China": "中国",
|
|
2707
|
+
"South Korea": "韩国",
|
|
2708
|
+
"Australia": "澳大利亚",
|
|
2709
|
+
"Brazil": "巴西",
|
|
2710
|
+
"Preparing your image...": "正在准备您的图像...",
|
|
2711
|
+
"Analyzing body proportions...": "正在分析身体比例...",
|
|
2712
|
+
"Matching garment to your photo...": "正在将服装与您的照片匹配...",
|
|
2713
|
+
"Generating virtual try-on...": "正在生成虚拟试穿...",
|
|
2714
|
+
"Refining details...": "正在细化细节...",
|
|
2715
|
+
"Almost there...": "快完成了...",
|
|
2716
|
+
"Complete!": "完成!",
|
|
2717
|
+
"This usually takes 15-25 seconds": "这通常需要 15-25 秒",
|
|
2718
|
+
"This usually takes 15-20 seconds": "这通常需要 15-20 秒",
|
|
2719
|
+
"Your Size": "您的尺码",
|
|
2720
|
+
"High Confidence": "高信心",
|
|
2721
|
+
"Medium Confidence": "中等信心",
|
|
2722
|
+
"Low Confidence": "低信心",
|
|
2723
|
+
"Sizing by Garment": "按服装尺码",
|
|
2724
|
+
"Fit Summary": "合身总结",
|
|
2725
|
+
"within range": "在范围内",
|
|
2726
|
+
"may be snug": "可能会紧身",
|
|
2727
|
+
"may be loose": "可能会宽松",
|
|
2728
|
+
"See details": "查看详情",
|
|
2729
|
+
"Hide details": "隐藏详情",
|
|
2730
|
+
"Area": "区域",
|
|
2731
|
+
"You": "您",
|
|
2732
|
+
"Chart": "图表",
|
|
2733
|
+
"Fit": "合身",
|
|
2734
|
+
"Equivalent Sizes": "等效尺码",
|
|
2735
|
+
"Analyzing your size...": "正在分析您的尺码...",
|
|
2736
|
+
"Your size:": "您的尺码:",
|
|
2737
|
+
"Done": "完成",
|
|
2738
|
+
"Try-on result": "试穿结果",
|
|
2739
|
+
"Download": "下载",
|
|
2740
|
+
"Start Over": "重新开始",
|
|
2741
|
+
"Try Another": "再试一次",
|
|
2742
|
+
"Something went wrong": "出现了问题",
|
|
2743
|
+
"Try Again": "再试一次",
|
|
2744
|
+
"Please upload a JPEG, PNG, or WebP image.": "请上传 JPEG、PNG 或 WebP 图像。",
|
|
2745
|
+
"Image must be under 10MB.": "图像必须小于 10MB。",
|
|
2746
|
+
"Try-on generation failed": "试穿生成失败",
|
|
2747
|
+
"Failed to start try-on": "启动试穿失败",
|
|
2748
|
+
"SDK not configured. Please provide an API key.": "SDK 未配置。请提供 API 密钥。",
|
|
2749
|
+
"No product image found. Please set the product-image attribute.": "未找到产品图像。请设置产品图像属性。",
|
|
2750
|
+
"My Profiles": "我的个人资料",
|
|
2751
|
+
"No saved profiles yet.": "尚无保存的个人资料。",
|
|
2752
|
+
"No history yet.": "尚无历史记录。",
|
|
2753
|
+
"Product": "产品",
|
|
2754
|
+
"Women's Profile": "女士个人资料",
|
|
2755
|
+
"Men's Profile": "男士个人资料",
|
|
2756
|
+
"Saved": "已保存",
|
|
2757
|
+
"Delete Profile": "删除个人资料"
|
|
2758
|
+
};
|
|
2759
|
+
const zhTw = {
|
|
2760
|
+
"Virtual Try-On": "虛擬試穿",
|
|
2761
|
+
"Powered by": "提供技術支持",
|
|
2762
|
+
"Profiles": "個人資料",
|
|
2763
|
+
"History": "歷史紀錄",
|
|
2764
|
+
"Welcome": "歡迎",
|
|
2765
|
+
"Size": "尺寸",
|
|
2766
|
+
"Your Fit": "您的合身度",
|
|
2767
|
+
"Try On": "試穿",
|
|
2768
|
+
"Find Your Perfect Size": "找到您的完美尺寸",
|
|
2769
|
+
"Get your size instantly, then try it on": "立即獲取您的尺寸,然後試穿",
|
|
2770
|
+
"Get Your Size": "獲取您的尺寸",
|
|
2771
|
+
"Instant fit recommendation": "即時合身建議",
|
|
2772
|
+
"Try It On": "試穿",
|
|
2773
|
+
"See how it looks on you": "看看穿在您身上的樣子",
|
|
2774
|
+
"Find My Size": "找到我的尺寸",
|
|
2775
|
+
"Takes less than a minute": "少於一分鐘",
|
|
2776
|
+
"Upload a full body photo": "上傳全身照片",
|
|
2777
|
+
"Drop your photo here or click to upload": "將您的照片拖到這裡或點擊上傳",
|
|
2778
|
+
"JPEG, PNG or WebP (max 10MB)": "JPEG、PNG或WebP(最大10MB)",
|
|
2779
|
+
"Your photo": "您的照片",
|
|
2780
|
+
"Checking size guide...": "正在檢查尺寸指南...",
|
|
2781
|
+
"Looking for size chart data for this product": "正在尋找此產品的尺寸表數據",
|
|
2782
|
+
"How would you like to find your size?": "您希望如何找到您的尺寸?",
|
|
2783
|
+
"Size guide is not available for this product — sizing will use standard measurements": "此產品沒有尺寸指南 — 尺寸將使用標準測量",
|
|
2784
|
+
"Size guide found for this product": "找到此產品的尺寸指南",
|
|
2785
|
+
"Enter my measurements": "輸入我的尺寸",
|
|
2786
|
+
"Chest, waist, hips, shoes & more": "胸圍、腰圍、臀圍、鞋碼等",
|
|
2787
|
+
"& more": "等",
|
|
2788
|
+
"Best accuracy": "最佳準確度",
|
|
2789
|
+
"Just height & weight": "僅需身高和體重",
|
|
2790
|
+
"Quick estimate in seconds": "幾秒鐘內快速估算",
|
|
2791
|
+
"Skip, just try it on": "跳過,直接試穿",
|
|
2792
|
+
"Upload a photo to see how it looks": "上傳照片以查看穿著效果",
|
|
2793
|
+
"Back": "返回",
|
|
2794
|
+
"Auto-fill from saved profile...": "從已保存的個人資料自動填充...",
|
|
2795
|
+
"I'm shopping for": "我正在購物",
|
|
2796
|
+
"Men's": "男裝",
|
|
2797
|
+
"Women's": "女裝",
|
|
2798
|
+
"Sizing region": "尺寸區域",
|
|
2799
|
+
"Required for this product": "此產品必需",
|
|
2800
|
+
"Fit type": "合身類型",
|
|
2801
|
+
"Petite": "小碼",
|
|
2802
|
+
"Standard": "標準碼",
|
|
2803
|
+
"Tall": "高碼",
|
|
2804
|
+
"Plus": "加大碼",
|
|
2805
|
+
"Optional — improve accuracy & save to profile": "可選 — 提高準確度並保存到個人資料",
|
|
2806
|
+
"Height": "身高",
|
|
2807
|
+
"Weight": "體重",
|
|
2808
|
+
"Fill in what you know — more measurements = better accuracy.": "填寫您知道的 — 更多測量 = 更好的準確度。",
|
|
2809
|
+
"Save as profile": "保存為個人資料",
|
|
2810
|
+
"Profile name (e.g. John, Sarah)": "個人資料名稱(例如:John、Sarah)",
|
|
2811
|
+
"Get My Size": "獲取我的尺寸",
|
|
2812
|
+
"cm": "cm",
|
|
2813
|
+
"in": "in",
|
|
2814
|
+
"ft": "ft",
|
|
2815
|
+
"kg": "kg",
|
|
2816
|
+
"lbs": "lbs",
|
|
2817
|
+
"Bust": "胸圍",
|
|
2818
|
+
"Waist": "腰圍",
|
|
2819
|
+
"Hips": "臀圍",
|
|
2820
|
+
"Shoulders": "肩寬",
|
|
2821
|
+
"Inseam": "內側縫",
|
|
2822
|
+
"Foot length": "腳長",
|
|
2823
|
+
"Chest": "胸部",
|
|
2824
|
+
"Sleeve": "袖長",
|
|
2825
|
+
"Neck": "頸圍",
|
|
2826
|
+
"Foot": "腳",
|
|
2827
|
+
"Shoe EU": "鞋碼(EU)",
|
|
2828
|
+
"Shoe US": "鞋碼(US)",
|
|
2829
|
+
"Shoe UK": "鞋碼(UK)",
|
|
2830
|
+
"Shoe size (US)": "鞋碼(US)",
|
|
2831
|
+
"Shoe size (UK)": "鞋碼(UK)",
|
|
2832
|
+
"Shoe size (EU)": "鞋碼(EU)",
|
|
2833
|
+
"United States": "美國",
|
|
2834
|
+
"United Kingdom": "英國",
|
|
2835
|
+
"Europe (EU)": "歐洲(EU)",
|
|
2836
|
+
"France": "法國",
|
|
2837
|
+
"Italy": "義大利",
|
|
2838
|
+
"Germany": "德國",
|
|
2839
|
+
"Spain": "西班牙",
|
|
2840
|
+
"Japan": "日本",
|
|
2841
|
+
"China": "中國",
|
|
2842
|
+
"South Korea": "南韓",
|
|
2843
|
+
"Australia": "澳洲",
|
|
2844
|
+
"Brazil": "巴西",
|
|
2845
|
+
"Preparing your image...": "正在準備您的圖片...",
|
|
2846
|
+
"Analyzing body proportions...": "正在分析身體比例...",
|
|
2847
|
+
"Matching garment to your photo...": "正在將服裝與您的照片匹配...",
|
|
2848
|
+
"Generating virtual try-on...": "正在生成虛擬試穿...",
|
|
2849
|
+
"Refining details...": "正在細化細節...",
|
|
2850
|
+
"Almost there...": "快完成了...",
|
|
2851
|
+
"Complete!": "完成!",
|
|
2852
|
+
"This usually takes 15-25 seconds": "這通常需要15-25秒",
|
|
2853
|
+
"This usually takes 15-20 seconds": "這通常需要15-20秒",
|
|
2854
|
+
"Your Size": "您的尺寸",
|
|
2855
|
+
"High Confidence": "高信心",
|
|
2856
|
+
"Medium Confidence": "中等信心",
|
|
2857
|
+
"Low Confidence": "低信心",
|
|
2858
|
+
"Sizing by Garment": "根據服裝尺寸",
|
|
2859
|
+
"Fit Summary": "合身摘要",
|
|
2860
|
+
"within range": "在範圍內",
|
|
2861
|
+
"may be snug": "可能會緊身",
|
|
2862
|
+
"may be loose": "可能會鬆動",
|
|
2863
|
+
"See details": "查看詳情",
|
|
2864
|
+
"Hide details": "隱藏詳情",
|
|
2865
|
+
"Area": "區域",
|
|
2866
|
+
"You": "您",
|
|
2867
|
+
"Chart": "圖表",
|
|
2868
|
+
"Fit": "合身",
|
|
2869
|
+
"Equivalent Sizes": "等效尺寸",
|
|
2870
|
+
"Analyzing your size...": "正在分析您的尺寸...",
|
|
2871
|
+
"Your size:": "您的尺寸:",
|
|
2872
|
+
"Done": "完成",
|
|
2873
|
+
"Try-on result": "試穿結果",
|
|
2874
|
+
"Download": "下載",
|
|
2875
|
+
"Start Over": "重新開始",
|
|
2876
|
+
"Try Another": "再試一次",
|
|
2877
|
+
"Something went wrong": "出現問題",
|
|
2878
|
+
"Try Again": "再試一次",
|
|
2879
|
+
"Please upload a JPEG, PNG, or WebP image.": "請上傳JPEG、PNG或WebP圖片。",
|
|
2880
|
+
"Image must be under 10MB.": "圖片必須小於10MB。",
|
|
2881
|
+
"Try-on generation failed": "試穿生成失敗",
|
|
2882
|
+
"Failed to start try-on": "啟動試穿失敗",
|
|
2883
|
+
"SDK not configured. Please provide an API key.": "SDK未配置。請提供API金鑰。",
|
|
2884
|
+
"No product image found. Please set the product-image attribute.": "未找到產品圖片。請設置產品圖片屬性。",
|
|
2885
|
+
"My Profiles": "我的個人資料",
|
|
2886
|
+
"No saved profiles yet.": "尚未保存個人資料。",
|
|
2887
|
+
"No history yet.": "尚未有歷史紀錄。",
|
|
2888
|
+
"Product": "產品",
|
|
2889
|
+
"Women's Profile": "女裝個人資料",
|
|
2890
|
+
"Men's Profile": "男裝個人資料",
|
|
2891
|
+
"Saved": "已保存",
|
|
2892
|
+
"Delete Profile": "刪除個人資料"
|
|
2893
|
+
};
|
|
2894
|
+
const DICTIONARIES = {
|
|
2895
|
+
en,
|
|
2896
|
+
/* === BEGIN GENERATED LOCALES === */
|
|
2897
|
+
cs,
|
|
2898
|
+
da,
|
|
2899
|
+
de,
|
|
2900
|
+
es,
|
|
2901
|
+
fi,
|
|
2902
|
+
fr,
|
|
2903
|
+
it,
|
|
2904
|
+
ja,
|
|
2905
|
+
ko,
|
|
2906
|
+
nb,
|
|
2907
|
+
nl,
|
|
2908
|
+
pl,
|
|
2909
|
+
"pt-br": ptBr,
|
|
2910
|
+
"pt-pt": ptPt,
|
|
2911
|
+
sv,
|
|
2912
|
+
th,
|
|
2913
|
+
tr,
|
|
2914
|
+
"zh-cn": zhCn,
|
|
2915
|
+
"zh-tw": zhTw
|
|
2916
|
+
/* === END GENERATED LOCALES === */
|
|
2917
|
+
};
|
|
2918
|
+
const SUPPORTED_LOCALES = Object.keys(DICTIONARIES);
|
|
2919
|
+
const TRANSLATION_KEYS = Object.keys(en);
|
|
2920
|
+
function registerLocale(locale, dict) {
|
|
2921
|
+
DICTIONARIES[locale.toLowerCase()] = dict;
|
|
2922
|
+
}
|
|
2923
|
+
function resolveLocale(tag) {
|
|
2924
|
+
const lower = tag.toLowerCase().replace("_", "-");
|
|
2925
|
+
if (DICTIONARIES[lower]) return lower;
|
|
2926
|
+
const lang = lower.split("-")[0];
|
|
2927
|
+
if (DICTIONARIES[lang]) return lang;
|
|
2928
|
+
return "en";
|
|
2929
|
+
}
|
|
2930
|
+
function detectLanguage() {
|
|
2931
|
+
if (typeof window === "undefined") return "en";
|
|
2932
|
+
const nav = navigator.language || "en";
|
|
2933
|
+
return resolveLocale(nav);
|
|
2934
|
+
}
|
|
2935
|
+
function createT(locale) {
|
|
2936
|
+
const resolved = locale ? resolveLocale(locale) : detectLanguage();
|
|
2937
|
+
const dict = DICTIONARIES[resolved] || en;
|
|
2938
|
+
return (key) => dict[key] ?? key;
|
|
2939
|
+
}
|
|
2940
|
+
export {
|
|
2941
|
+
ApiClient as A,
|
|
2942
|
+
PrimeStyleError as P,
|
|
2943
|
+
SseClient as S,
|
|
2944
|
+
TRANSLATION_KEYS as T,
|
|
2945
|
+
compressImage as a,
|
|
2946
|
+
SUPPORTED_LOCALES as b,
|
|
2947
|
+
createT as c,
|
|
2948
|
+
detectLanguage as d,
|
|
2949
|
+
isValidImageFile as i,
|
|
2950
|
+
registerLocale as r
|
|
2951
|
+
};
|