@@ -1101,20 +1136,30 @@ defineExpose({
--offsetY: 0px;
--size: 8px;
--color: #dedcdc;
- background-image:
- -webkit-linear-gradient(
+ background-image: -webkit-linear-gradient(
45deg,
var(--color) 25%,
transparent 0,
transparent 75%,
var(--color) 0
),
- -webkit-linear-gradient(45deg, var(--color) 25%, transparent 0, transparent 75%, var(--color) 0);
- background-image:
- linear-gradient(45deg, var(--color) 25%, transparent 0, transparent 75%, var(--color) 0),
- linear-gradient(45deg, var(--color) 25%, transparent 0, transparent 75%, var(--color) 0);
- background-position:
- var(--offsetX) var(--offsetY),
+ -webkit-linear-gradient(45deg, var(--color) 25%, transparent 0, transparent
+ 75%, var(--color) 0);
+ background-image: linear-gradient(
+ 45deg,
+ var(--color) 25%,
+ transparent 0,
+ transparent 75%,
+ var(--color) 0
+ ),
+ linear-gradient(
+ 45deg,
+ var(--color) 25%,
+ transparent 0,
+ transparent 75%,
+ var(--color) 0
+ );
+ background-position: var(--offsetX) var(--offsetY),
calc(var(--size) + var(--offsetX)) calc(var(--size) + var(--offsetY));
background-size: calc(var(--size) * 2) calc(var(--size) * 2);
}
@@ -1334,9 +1379,7 @@ button:hover {
// 淡入淡出动画
.fade-enter-active,
.fade-leave-active {
- transition:
- opacity 0.3s,
- transform 0.3s;
+ transition: opacity 0.3s, transform 0.3s;
}
.fade-enter-from,
.fade-leave-to {
diff --git a/src/component/Canvas/CanvasEditor/managers/LayerManager.js b/src/component/Canvas/CanvasEditor/managers/LayerManager.js
index b938ff9b..9f085643 100644
--- a/src/component/Canvas/CanvasEditor/managers/LayerManager.js
+++ b/src/component/Canvas/CanvasEditor/managers/LayerManager.js
@@ -52,18 +52,27 @@ import {
} from "../commands/RasterizeLayerCommand";
// 导入图层排序相关类和混入
-import { LayerSort, createLayerSort, LayerSortMixin, LayerSortUtils } from "../utils/LayerSort";
+import {
+ LayerSort,
+ createLayerSort,
+ LayerSortMixin,
+ LayerSortUtils,
+} from "../utils/LayerSort";
import CanvasConfig from "../config/canvasConfig";
import { isBoolean, template } from "lodash-es";
-import { findObjectById, generateId, optimizeCanvasRendering } from "../utils/helper";
+import {
+ findObjectById,
+ generateId,
+ optimizeCanvasRendering,
+} from "../utils/helper";
import { message } from "ant-design-vue";
import { fabric } from "fabric-with-all";
import { getOriginObjectInfo } from "../utils/layerUtils";
import { restoreFabricObject } from "../utils/objectHelper";
import { UpdateGroupMaskPositionCommand } from "../commands/UpdateGroupMaskPositionCommand";
-import { useI18n } from 'vue-i18n'
-const {t} = useI18n()
+// import { useI18n } from 'vue-i18n'
+// const {t} = useI18n()
/**
* 图层管理器 - 负责管理画布上的所有图层
* 包含图层的创建、删除、修改、排序等操作
@@ -83,6 +92,7 @@ export class LayerManager {
* @param {Number} options.canvasWidth 画布宽度
* @param {Number} options.canvasHeight 画布高度
* @param {String} options.backgroundColor 背景颜色
+ * @param {Function} options.t 国际化函数
*/
constructor(options) {
this.canvas = options.canvas;
@@ -91,6 +101,7 @@ export class LayerManager {
this.commandManager = options.commandManager;
this.canvasManager = options.canvasManager || null;
this.lastSelectLayerId = options.lastSelectLayerId || { value: null }; // 上次选中的图层ID
+ this.t = options.t || ((key) => key); // 国际化函数,默认为直接返回key
this.backgroundFillManager = new BackgroundFillManager({
canvas: this.canvas,
@@ -221,7 +232,11 @@ export class LayerManager {
// 基于 fabric-with-erasing 库的 erasable 属性设置擦除权限
// 只有活动图层、可见、非锁定、非背景、非固定图层的对象才可擦除
obj.erasable =
- isInActiveLayer && layer.visible && !layer.locked && !layer.isBackground && !layer.isFixed;
+ isInActiveLayer &&
+ layer.visible &&
+ !layer.locked &&
+ !layer.isBackground &&
+ !layer.isFixed;
// 图层状态决定交互性
if (layer.isBackground || obj.isBackground || layer.isFixed) {
@@ -268,7 +283,11 @@ export class LayerManager {
if (this.isRedGreenMode) {
// 红绿图模式下 所有普通图层都可擦除
- obj.erasable = layer.visible && !layer.locked && !layer.isBackground && !layer.isFixed;
+ obj.erasable =
+ layer.visible &&
+ !layer.locked &&
+ !layer.isBackground &&
+ !layer.isFixed;
}
// 平移模式下,禁用多选和擦除
@@ -319,7 +338,9 @@ export class LayerManager {
// 设置子图层对象的交互性
layer?.childLayer?.forEach(async (childLayer) => {
- const childObj = this.canvas.getObjects().find((o) => o.layerId === childLayer.id);
+ const childObj = this.canvas
+ .getObjects()
+ .find((o) => o.layerId === childLayer.id);
if (childObj) {
await this._setObjectInteractivity(childObj, childLayer, editorMode);
}
@@ -331,7 +352,10 @@ export class LayerManager {
let clippingMaskFabricObject = null;
if (layer.clippingMask) {
// 反序列化 clippingMask
- clippingMaskFabricObject = await restoreFabricObject(layer.clippingMask, this.canvas);
+ clippingMaskFabricObject = await restoreFabricObject(
+ layer.clippingMask,
+ this.canvas
+ );
clippingMaskFabricObject.clipPath = null;
clippingMaskFabricObject.set({
@@ -351,7 +375,9 @@ export class LayerManager {
// }
// }
layer.children.forEach((childLayer) => {
- const childObj = this.canvas.getObjects().find((o) => o.layerId === childLayer.id);
+ const childObj = this.canvas
+ .getObjects()
+ .find((o) => o.layerId === childLayer.id);
if (childObj) {
childObj.clipPath = clippingMaskFabricObject;
childObj.dirty = true; // 标记为脏对象
@@ -369,7 +395,9 @@ export class LayerManager {
});
} else {
layer.fabricObjects?.forEach((obj) => {
- const fabricObject = this.canvas.getObjects().find((o) => o.id === obj.id);
+ const fabricObject = this.canvas
+ .getObjects()
+ .find((o) => o.id === obj.id);
if (fabricObject) {
fabricObject.clipPath = clippingMaskFabricObject;
fabricObject.dirty = true; // 标记为脏对象
@@ -397,7 +425,11 @@ export class LayerManager {
*/
async fillLayerBackground(layerId, fillColor, undoable = true) {
layerId = this.activeLayerId.value || layerId;
- await this.backgroundFillManager.fillLayerBackground(layerId, fillColor, undoable);
+ await this.backgroundFillManager.fillLayerBackground(
+ layerId,
+ fillColor,
+ undoable
+ );
}
/**
@@ -470,7 +502,9 @@ export class LayerManager {
*/
createBackgroundLayer(name = "背景") {
// 检查是否已有背景图层
- const hasBackgroundLayer = this.layers.value.some((layer) => layer.isBackground);
+ const hasBackgroundLayer = this.layers.value.some(
+ (layer) => layer.isBackground
+ );
if (hasBackgroundLayer) {
console.warn("已存在背景层,不再创建新的背景层");
@@ -523,7 +557,9 @@ export class LayerManager {
}
// 生成唯一ID
- const layerId = `fixed_layer_${Date.now()}_${Math.floor(Math.random() * 1000)}`;
+ const layerId = `fixed_layer_${Date.now()}_${Math.floor(
+ Math.random() * 1000
+ )}`;
// 创建固定图层
const fixedLayer = createFixedLayer({
@@ -574,19 +610,21 @@ export class LayerManager {
// 如果没有任何图层,创建背景层、固定图层和一个空白图层
if (this.layers.value.length === 0) {
// 创建背景图层
- this.createBackgroundLayer();
+ this.createBackgroundLayer(this.t("Canvas.Background"));
// 创建固定图层,位于背景图层之上
- this.createFixedLayer();
+ this.createFixedLayer(this.t("Canvas.FixedLayer"));
// 创建一个空白图层(默认位于背景图层和固定图层之上)
- await this.createLayer(t('Canvas.Layer1'));
+ await this.createLayer(this.t("Canvas.Layer1"));
} else {
// 检查是否已有背景层
- const hasBackgroundLayer = this.layers.value.some((layer) => layer.isBackground);
+ const hasBackgroundLayer = this.layers.value.some(
+ (layer) => layer.isBackground
+ );
if (!hasBackgroundLayer) {
- this.createBackgroundLayer();
+ this.createBackgroundLayer(this.t("Canvas.Background"));
}
// 检查是否已有固定图层
@@ -602,7 +640,7 @@ export class LayerManager {
);
if (!hasNormalLayer) {
- await this.createLayer(t('Canvas.Layer1'));
+ await this.createLayer(this.t("Canvas.Layer1"));
}
}
@@ -629,7 +667,10 @@ export class LayerManager {
}
// 验证目标图层是否存在
- const { layer: targetLayer } = findLayerRecursively(this.layers.value, targetLayerId);
+ const { layer: targetLayer } = findLayerRecursively(
+ this.layers.value,
+ targetLayerId
+ );
if (!targetLayer) {
console.error(`目标图层 ${targetLayerId} 不存在`);
return null;
@@ -683,7 +724,8 @@ export class LayerManager {
*/
removeObjectFromLayer(objectOrId) {
// 获取对象ID
- const objectId = typeof objectOrId === "string" ? objectOrId : objectOrId.id;
+ const objectId =
+ typeof objectOrId === "string" ? objectOrId : objectOrId.id;
if (!objectId) {
console.error("无效的对象ID");
@@ -743,7 +785,9 @@ export class LayerManager {
*/
getActiveLayer() {
if (!this.activeLayerId.value) {
- console.warn("没有活动图层ID,无法获取活动图层 ==== 默认设置第一个图层为活动图层");
+ console.warn(
+ "没有活动图层ID,无法获取活动图层 ==== 默认设置第一个图层为活动图层"
+ );
this.activeLayerId.value = this.layers.value[0]?.id || null;
}
@@ -848,8 +892,13 @@ export class LayerManager {
}
const tempFabricObject =
- fabricObject?.toObject?.(["id", "layerId", "layerName", "isBackgroud", "isFixed"]) ||
- fabricObject;
+ fabricObject?.toObject?.([
+ "id",
+ "layerId",
+ "layerName",
+ "isBackgroud",
+ "isFixed",
+ ]) || fabricObject;
if (layer.isFixed || layer.isBackground) {
layer.fabricObject = tempFabricObject;
} else {
@@ -875,7 +924,9 @@ export class LayerManager {
// 如果是背景层或固定层,不允许移动
if (layer && (layer.isBackground || layer.isFixed)) {
- console.warn(layer.isBackground ? $t("背景层不可移动") : $t("固定层不可移动"));
+ console.warn(
+ layer.isBackground ? this.t("背景层不可移动") : this.t("固定层不可移动")
+ );
return false;
}
@@ -1300,7 +1351,11 @@ export class LayerManager {
async ungroupLayers(groupId) {
// 查找组图层
const groupLayer = this.layers.value.find((l) => l.id === groupId);
- if (!groupLayer || !groupLayer.children || groupLayer.children.length === 0) {
+ if (
+ !groupLayer ||
+ !groupLayer.children ||
+ groupLayer.children.length === 0
+ ) {
console.error(`${groupId} 不是有效的组图层或不包含子图层`);
return null;
}
@@ -1357,7 +1412,9 @@ export class LayerManager {
*/
resizeCanvasWithScale(width, height, options = {}) {
// 检查是否有除背景层外的其他元素
- const hasOtherElements = this.canvas.getObjects().some((obj) => !obj.isBackground);
+ const hasOtherElements = this.canvas
+ .getObjects()
+ .some((obj) => !obj.isBackground);
if (hasOtherElements) {
// 有其他元素时使用带缩放的命令
@@ -1426,7 +1483,9 @@ export class LayerManager {
if (!this.canvas) return;
// 获取画布上的所有对象
- const canvasObjects = [...this.canvas.getObjects(["id", "layerId", "layerName"])];
+ const canvasObjects = [
+ ...this.canvas.getObjects(["id", "layerId", "layerName"]),
+ ];
// 清空画布
this.canvas.clear();
@@ -1441,13 +1500,19 @@ export class LayerManager {
if (layer.isBackground && layer.fabricObject) {
// 背景图层
- const originalObj = canvasObjects.find((o) => o.id === layer.fabricObject.id);
+ const originalObj = canvasObjects.find(
+ (o) => o.id === layer.fabricObject.id
+ );
if (originalObj) {
this.canvas.add(originalObj);
} else {
this.canvas.add(layer.fabricObject);
}
- } else if (layer.isFixed && layer.fabricObjects && layer.fabricObjects.length > 0) {
+ } else if (
+ layer.isFixed &&
+ layer.fabricObjects &&
+ layer.fabricObjects.length > 0
+ ) {
// 固定图层
layer.fabricObjects.forEach((obj) => {
const originalObj = canvasObjects.find((o) => o.id === obj.id);
@@ -1457,7 +1522,10 @@ export class LayerManager {
this.canvas.add(obj);
}
});
- } else if (Array.isArray(layer.fabricObjects) && layer.fabricObjects.length > 0) {
+ } else if (
+ Array.isArray(layer.fabricObjects) &&
+ layer.fabricObjects.length > 0
+ ) {
// 普通图层,添加所有fabricObjects
layer.fabricObjects.forEach((obj) => {
const originalObj = canvasObjects.find((o) => o.id === obj.id);
@@ -1486,7 +1554,9 @@ export class LayerManager {
if (layer.isBackground) {
// 背景图层处理
if (layer.fabricObject) {
- const existsOnCanvas = canvasObjects.some((obj) => obj.id === layer.fabricObject.id);
+ const existsOnCanvas = canvasObjects.some(
+ (obj) => obj.id === layer.fabricObject.id
+ );
if (!existsOnCanvas) {
this.canvas.add(layer.fabricObject);
}
@@ -1621,7 +1691,8 @@ export class LayerManager {
layerCopy.children = layer.children.map((child) => {
const childCopy = JSON.parse(JSON.stringify(child));
if (child.fabricObjects && child.fabricObjects.length > 0) {
- childCopy.serializedObjects = this.getCurrLayerSerializedObjects(child);
+ childCopy.serializedObjects =
+ this.getCurrLayerSerializedObjects(child);
}
return childCopy;
});
@@ -1667,7 +1738,9 @@ export class LayerManager {
if (layer.fabricObjects && layer.fabricObjects.length > 0) {
layerCopy.serializedObjects = layer.fabricObjects
.map((obj) =>
- typeof obj.toObject === "function" ? obj.toObject(["id", "layerId", "layerName"]) : null
+ typeof obj.toObject === "function"
+ ? obj.toObject(["id", "layerId", "layerName"])
+ : null
)
.filter(Boolean);
}
@@ -1800,7 +1873,8 @@ export class LayerManager {
// 查找第一个非背景、非锁定的图层,排除指定的图层
return (
this.layers.value.find(
- (layer) => layer.id !== excludeLayerId && !layer.isBackground && !layer.locked
+ (layer) =>
+ layer.id !== excludeLayerId && !layer.isBackground && !layer.locked
) || null
);
}
@@ -1935,7 +2009,9 @@ export class LayerManager {
* @param {string} backgroundColor 背景颜色
*/
updateBackgroundColor(backgroundColor, options = {}) {
- const backgroundLayer = this.layers.value.find((layer) => layer.isBackground);
+ const backgroundLayer = this.layers.value.find(
+ (layer) => layer.isBackground
+ );
if (!backgroundLayer) {
console.warn("没有找到背景图层");
@@ -2135,7 +2211,8 @@ export class LayerManager {
if (!this.canvas || !textObject) return null;
// 确保对象有ID
- textObject.id = textObject.id || `text_${Date.now()}_${Math.floor(Math.random() * 1000)}`;
+ textObject.id =
+ textObject.id || `text_${Date.now()}_${Math.floor(Math.random() * 1000)}`;
// 创建文本图层
const layerName = options.name || "文本图层";
@@ -2152,7 +2229,9 @@ export class LayerManager {
overline: options.overline || textObject.overline || false,
fill: options.fill || textObject.fill || "#000000",
textBackgroundColor:
- options.textBackgroundColor || textObject.textBackgroundColor || "transparent",
+ options.textBackgroundColor ||
+ textObject.textBackgroundColor ||
+ "transparent",
lineHeight: options.lineHeight || textObject.lineHeight || 1.16,
charSpacing: options.charSpacing || textObject.charSpacing || 0,
},
@@ -2163,7 +2242,9 @@ export class LayerManager {
textObject.layerName = layerName;
// 添加到画布,如果还未添加
- const isOnCanvas = this.canvas.getObjects().some((obj) => obj.id === textObject.id);
+ const isOnCanvas = this.canvas
+ .getObjects()
+ .some((obj) => obj.id === textObject.id);
if (!isOnCanvas) {
this.canvas.add(textObject);
}
@@ -2172,7 +2253,9 @@ export class LayerManager {
const layer = this.getLayerById(layerId);
if (layer) {
layer.fabricObjects = layer.fabricObjects || [];
- layer.fabricObjects.push(textObject.toObject(["id", "layerId", "layerName"]));
+ layer.fabricObjects.push(
+ textObject.toObject(["id", "layerId", "layerName"])
+ );
}
// 设置此图层为活动图层
@@ -2205,7 +2288,9 @@ export class LayerManager {
// 检查普通图层
if (layer.fabricObjects && Array.isArray(layer.fabricObjects)) {
- const foundObject = layer.fabricObjects.find((obj) => obj.id === fabricObject.id);
+ const foundObject = layer.fabricObjects.find(
+ (obj) => obj.id === fabricObject.id
+ );
if (foundObject) {
return layer;
}
@@ -2286,7 +2371,12 @@ export class LayerManager {
* @returns {boolean} 是否排序成功
*/
reorderChildLayers(parentId, oldIndex, newIndex, layerId) {
- return this.layerSort?.reorderChildLayers(parentId, oldIndex, newIndex, layerId);
+ return this.layerSort?.reorderChildLayers(
+ parentId,
+ oldIndex,
+ newIndex,
+ layerId
+ );
}
/**
@@ -2467,13 +2557,19 @@ export class LayerManager {
const layersCount = this.layers?.value?.length || 0;
const shouldUseAsync =
- async !== null ? async : LayerSortUtils.shouldUseAsyncProcessing(objectsCount, layersCount);
+ async !== null
+ ? async
+ : LayerSortUtils.shouldUseAsyncProcessing(objectsCount, layersCount);
if (shouldUseAsync) {
- console.log(`使用异步排序处理 ${objectsCount} 个对象, ${layersCount} 个图层`);
+ console.log(
+ `使用异步排序处理 ${objectsCount} 个对象, ${layersCount} 个图层`
+ );
return this.layerSort.rearrangeObjectsAsync();
} else {
- console.log(`使用同步排序处理 ${objectsCount} 个对象, ${layersCount} 个图层`);
+ console.log(
+ `使用同步排序处理 ${objectsCount} 个对象, ${layersCount} 个图层`
+ );
this.layerSort.rearrangeObjects();
}
}
@@ -2582,7 +2678,10 @@ export class LayerManager {
moveLayerToIndex({ parentId, oldIndex, newIndex, layerId }) {
if (!this.layerSort) {
console.warn("图层排序工具未初始化,使用基础移动方法");
- return this.moveLayer(layerId, newIndex > this.getLayerIndex(layerId) ? "down" : "up");
+ return this.moveLayer(
+ layerId,
+ newIndex > this.getLayerIndex(layerId) ? "down" : "up"
+ );
}
const result = this.layerSort.moveLayerToIndex({
@@ -2593,7 +2692,9 @@ export class LayerManager {
});
if (result) {
- console.log(`图层 ${layerId} - oldIndex: ${oldIndex} 已移动到位置 ${newIndex}`);
+ console.log(
+ `图层 ${layerId} - oldIndex: ${oldIndex} 已移动到位置 ${newIndex}`
+ );
// 更新对象交互性
// this.updateLayersObjectsInteractivity();
}
@@ -2637,7 +2738,9 @@ export class LayerManager {
return -1;
}
- let layerIndex = this.layers.value.findIndex((layer) => layer.id === layerId);
+ let layerIndex = this.layers.value.findIndex(
+ (layer) => layer.id === layerId
+ );
if (layerIndex >= 0) return layerIndex;
// 如果未找到,尝试在子图层中查找
const { parent } = findLayerRecursively(this.layers.value, layerId);
@@ -2668,7 +2771,9 @@ export class LayerManager {
const result = this.layerSort.reorderLayers(oldIndex, newIndex, layerId);
if (result) {
- console.log(`高级排序完成: 图层 ${layerId} 从位置 ${oldIndex} 移动到 ${newIndex}`);
+ console.log(
+ `高级排序完成: 图层 ${layerId} 从位置 ${oldIndex} 移动到 ${newIndex}`
+ );
// 更新对象交互性
this.updateLayersObjectsInteractivity();
}
@@ -2685,7 +2790,12 @@ export class LayerManager {
* @returns {boolean} 是否排序成功
*/
advancedReorderChildLayers(parentId, oldIndex, newIndex, layerId) {
- const result = this.reorderChildLayers(parentId, oldIndex, newIndex, layerId);
+ const result = this.reorderChildLayers(
+ parentId,
+ oldIndex,
+ newIndex,
+ layerId
+ );
if (result) {
console.log(
@@ -2802,8 +2912,12 @@ export class LayerManager {
async mergeGroupLayers(groupId) {
// 查找组图层
const groupLayer = this.layers.value.find((l) => l.id === groupId);
- if (!groupLayer || !groupLayer.children || groupLayer.children.length === 0) {
- console.warn($t("找不到有效的组图层或组图层为空"));
+ if (
+ !groupLayer ||
+ !groupLayer.children ||
+ groupLayer.children.length === 0
+ ) {
+ console.warn(this.t("找不到有效的组图层或组图层为空"));
return [];
}
@@ -2837,22 +2951,25 @@ export class LayerManager {
const targetLayerId = layerId || this.activeLayerId.value;
if (!targetLayerId) {
- console.warn($t("没有指定要栅格化的图层"));
+ console.warn(this.t("没有指定要栅格化的图层"));
return false;
}
// 查找目标图层
// const targetLayer = this.getLayerById(targetLayerId);
- const { layer: targetLayer } = findLayerRecursively(this.layers.value, targetLayerId);
+ const { layer: targetLayer } = findLayerRecursively(
+ this.layers.value,
+ targetLayerId
+ );
if (!targetLayer) {
- console.error($t("图层不存在", { layerId: targetLayerId }));
+ console.error(this.t("图层不存在", { layerId: targetLayerId }));
return false;
}
// 不允许栅格化背景图层和固定图层
if (targetLayer.isBackground || targetLayer.isFixed) {
- console.warn($t("背景图层和固定图层不能栅格化"));
+ console.warn(this.t("背景图层和固定图层不能栅格化"));
return false;
}
@@ -2898,7 +3015,9 @@ export class LayerManager {
// 检查图层是否有内容可以栅格化
if (layer.type === "group" || layer.children.length > 0) {
// 组图层:检查是否有子图层且子图层有内容
- return layer.children.some((child) => child.fabricObjects && child.fabricObjects.length > 0);
+ return layer.children.some(
+ (child) => child.fabricObjects && child.fabricObjects.length > 0
+ );
} else {
// 普通图层:检查是否有对象
return layer.fabricObjects && layer.fabricObjects.length > 0;
@@ -2913,16 +3032,19 @@ export class LayerManager {
const targetLayerId = layerId || this.activeLayerId.value;
if (!targetLayerId) {
- console.warn($t("没有指定要栅格化的图层"));
+ console.warn(this.t("没有指定要栅格化的图层"));
return false;
}
// 查找目标图层
// const targetLayer = this.getLayerById(targetLayerId);
- const { layer: targetLayer } = findLayerRecursively(this.layers.value, targetLayerId);
+ const { layer: targetLayer } = findLayerRecursively(
+ this.layers.value,
+ targetLayerId
+ );
if (!targetLayer) {
- console.error($t("图层不存在", { layerId: targetLayerId }));
+ console.error(this.t("图层不存在", { layerId: targetLayerId }));
return false;
}
diff --git a/src/lang/cn.ts b/src/lang/cn.ts
index 8d45e6b8..a5709593 100644
--- a/src/lang/cn.ts
+++ b/src/lang/cn.ts
@@ -1,1029 +1,1052 @@
export default {
- Header:{
- hello:'你好',
- HOME:'首页',
- LIBRARY:'收藏',
- HISTORY:'历史',
- WORKS:'作品广场',
- EVENTS:'活动',
- Events:'活动',
- AdvancedTools:'高级工具',
- personal:'个人中心',
- bindEmail:'绑定邮箱',
- logOff:'退出登录',
- Tutorial:'教程',
- language:'中文',
- skip:'跳过',
- emailContent:'你绑定了的邮箱',
- Email:'邮箱',
- NextStep:'下一步',
- verification:'输入验证码',
- SentTo:'发送',
- Resend:'重发',
- Credits:'积分',
- SubscribeNow:'立即订阅',
- TaskList:'任务列表',
- ViewOrders:'查询订单',
- toolsToProduct:'线稿转产品图',
- toolsRelight:'产品图编辑',
- toolsToTransferPose:'产品图视频',
- toolsDeReconstruction:'拼贴重构廓形',
- toolsPatternMaking:'制版',
- toolsCanvas:'画布',
- NewProject:'新建项目',
- Rename:'重命名',
- Setting:'设置',
- BatchGeneration:'批量生成',
- Delete:'删除',
- onLiked:'取消喜欢',
- Language:'语言',
- Administrator:'管理员',
- Affiliate:'组织',
- Tools:'高级工具',
- Type:'类型',
- Filter:'筛选',
- Unfold:'布局',
- expand:'展开',
- collapse:'折叠',
- Size:'大小',
- Small:'小',
- Medium:'中',
- Large:'大',
- All:'全部',
- Design:'时装画',
- Product:'产品图',
- PoseTransfer:'时装视频',
- Today:'今天',
- Yesterday:'昨天',
- WithinAWeek:'一周内',
- Earlier:'更早',
- openUpgrade:'升级至专业版',
- pastDue:'只有成为正式用户后,您才能使用这些功能~',
- jsContent1:'邮箱格式不正确',
- jsContent2:'绑定邮箱成功',
- jsContent3:`已经长时间未操作,您必须活跃起来,否则将会在{numTime} S 后退出登录`,
- },
- allOrder:{
- Time:'时间',
- Serial:'ID',
- Money:'金额',
- Title:'名字',
- PaymentMethods:'支付方式',
- Payment:'支付方式',
- State:'状态',
- OrderType:'类型',
- Receipt:'收据',
- Income:'支出',
- Expend:'收入',
- credits:'积分',
- changedCredits:'积分变更',
- changeEvent:'增加/减少积分',
- createTime:'创建时间',
- },
- payOrder:{
- OrderInformation:'订单详情',
- CreditsInformation:'积分详情',
- },
- exportModel:{
- EditExport:'编辑 & 导出',
- CanvasSize:'画布大小',
- Height:'高',
- Width:'宽',
- CanvasNav:'系列',
- CanvasTool:'画布工具',
- Color:'颜色',
- Size:'大小',
- Brushwork:'笔触',
- Texture:'材质',
- FillBack:'填充 & 边',
- Layer:'层级',
- More:'参数',
- insufficient:'您的积分余额不足,如需使用此功能,请点击左上角充值',
- HDExport:'转高清',
- Save:'保存',
- Share:'发布',
- Export:'导出',
- SR:'请选择需要超分的图片',
- requiresCredits:'执行超分的图片需要消耗{data}积分',
- Scale:'倍率',
- Cancel:'取消',
- size:'区域',
- density:'强度',
- ShortcutKeys:'快捷键',
- Painting:'绘图',
- Eraser:'橡皮',
- Uncheck:'取消选择',
- Revoke:'撤回',
- Retreat:'反撤回',
- ReduceBrushSize:'减小笔触大小',
- IncreaseBrushSize:'增大笔触大小',
- DrinkingStraw:'吸色',
- Copy:'复制',
- Paste:'粘贴',
- UploadOpenimage:'Upload/Open image',
- jsContent1:"您是否已经保存画布内容?如果没有,请再关闭前点击'保存'。",
- jsContent2:'我们只支持对印花进行超分',
- jsContent3:'您的积分小于一次超分',
- jsContent4:'您的积分余额不足',
- jsContent5:'您选择的第{str}张图像在超分辨率增强后的分辨率超过2048。请选择较低的放大倍数。',
- jsContent6:'请选择需要超分的图片',
- jsContent7:'保存成功~',
- jsContent8:'是否继续编辑',
- jsContent9:'是否需要自动裁剪画布多余空间',
- jsContent10:'请选择一张图片后再次尝试',
- },
- upgradePlan:{
- BuyCredlts:'购买积分',
- credits:'积分',
- organization:'积分再任意场景都可以使用',
- CreditCard:'信用卡',
- Alipay:'支付宝',
- HongKong:'香港',
- MainlandChina:'中国大陆',
- Continue:'继续',
- payment:'选择付款方式',
- Cancel:'取消',
- Payment:'付款',
- PurchasePoints:'购买',
- paymentmethod:'请选择付款方式',
- policy:'继续注册账号即表示您同意我们的使用',
- policy1:'条款',
- policy2:'服务协议',
- policy3:'(包括服务范围)及',
- policy4:'订购协议',
- completed:'是否已完成支付?',
- hint:'请保持窗口打开,直到付款完成。如果您无法打开付款窗口,请检查您的浏览器设置,看看弹出窗口是否被阻止。成功付款后,积分可能会延迟发放。请等待1-3分钟,点击积分刷新按钮',
- Back:'返回',
- },
- taskPage:{
- TaskList:'任务列表',
- download:'下载',
-
- },
- Habit:{
- Workspace:'工作空间',
- WorkspaceSetting:'设置工作空间',
- settingWorkspace:'调整您的工作空间',
- Overall:'整体',
- Single:'单件',
- System:'系统',
- Designer:'设计师',
- Mannequin:'模特',
- Current:'当前',
- User:'用户',
- Style:'风格',
- Select:'选择',
- Clear:'清除',
- ProjectName:'项目名字',
- Role:'年龄',
- Adult:'成人',
- Child:'儿童',
- Gender:'性别',
- Female:'女性',
- Male:'男性',
- Brand:'品牌',
- BrandStrength:'品牌使用占比',
- Category:'种类',
- Complete:'完成',
- jsContent1:'是否删除指定工作空间',
- jsContent2:'请输入当前工作空间的名字',
- jsContent3:'看到您换了风格。您是否愿意将目前使用的模特替换为系统推荐的模特?',
- },
- RobotAssist:{
- inputContent1:"问我什么都行~",
- jsContent1:"请输入生成内容~",
- jsContent2:"欢迎来到AiDA。我是您友好的时尚设计助手。如果您有任何问题或需要帮助,请随时问我。",
- jsContent3:"看来您可能是新用户,我很乐意为您介绍我们全新升级的AiDA系统。您现在要开始教程吗?",
- jsContent4:"您可以随时告诉我要开始教程。",
- jsContent5:"在开始教程之前,我们需要刷新页面。您现在要开始教程吗?",
- },
- HomeView:{
- GetStarted:'开始设计',
- Start:'开始',
- Edit:'编辑',
- Reset:'重置',
- Design:'设计',
- Redesign:'重新设计',
- GeneratedDesign:'生成线稿',
- elementTitle:'设计素材',
- recycleBin:'回收站',
- SelectedDesign:'设计集',
- Export:'导出',
- moodboard:"情绪板",
- printboard:"印刷板",
- colorboard:"调色板",
- sketchboard:"线稿板",
- mannequins:"人体模型",
- masnnequinHint:"您使用的模特与当前的衣服不匹配,这将导致生成的模型不使用所选的衣服",
- FinalizeCollection:"完成系列",
- jsContent1:'您必须选择一种或多种颜色进行下一步。',
- jsContent2:'您必须选择一种或多种颜色进行下一步。',
- jsContent3:'导出文件失败。',
- jsContent4: "您的订阅将在 {days} 天 {hours} 小时后到期。为确保服务不中断,请点击此处续订->",
- jsContent8: "续订订阅。",
- jsContent7:"友情提示",
- jsContent5:"我们很高兴让您体验AiDA 3.0。请注意,部分服务在试用期间可能会受到限制。如果您已经准备好全身心投入并享受完整的体验,我们诚挚地邀请您订阅。只需访问",
- jsContent6:" 就可以开始订阅。感谢您试用我们的服务!",
- jsContent9:"您确定要清除当前系列并重新开始吗?",
- jsContent10:"二次创作的作品不允许使用'设计',但是您可以使用'重新设计'",
- jsContent11:"取消喜欢后相关联的元素会被删除,确认要删除吗",
- },
- ProductImg:{
- productInput:'输入关键词(例如风格、材质)',
- relightInput:'输入关键词(例如场景、地点)',
- Finalize:'完成',
- SelectCollection:'线稿图',
- SelectCollectionRelight:'产品图',
- DesignSelectCollection:'选择一副插图',
- SelectedDesign:'已选',
- DesignSelectedDesign:'已选',
- productImageDrafts:'生成结果',
- DesignproductImageDrafts:'生成结果',
- Upload:'上传',
- MagicTools:'转换产品图工具',
- relightingTool:'打光工具',
- Similarity:'相似度',
- SelectionFunction:'选择编辑模式',
- Highlight:'曝光强度',
- RelightDirection:'设置灯光方向',
- GenerateProduct:'生成的产品',
- SelectedProduct:'选择的产品',
- Export:'导出',
- moreTitle:'更多工具',
- ProductImage:'产品图',
- Relight:'打光',
- RightLight:'右侧光',
- LeftLight:'左侧光',
- TopLight:'顶部光',
- BottomLight:'底部光',
- Clear:'清空',
- jsContent1:'如果您离开此页,您的更改将会丢失。您确定要离开这一页吗?',
- jsContent2:'请至少选择一张图片',
- jsContent3:'您有一张图生成失败,请重试。',
- },
- poseTransfer:{
- SelectDesign:'产品图',
- Selectpose:'选择动作',
- LikeVideo:'已选',
- InputVideo:'生成结果',
- GeneratedVideo:'生成的视频',
- hint:'将草图改为逼真的照片,这条裙子的材质是牛仔布。',
- jsContent1:'生成视频预计需要三分钟,请问是否继续',
- },
- LibraryPage:{
- library:'收藏',
- Organize:'整理',
- Upload:'上传',
- Generate:'生成',
- Close:'取消',
- Reset:'重置',
- currently:'您排在队列中的第{generateLineUp}位',
- Delete:'删除',
- Rename:'编辑',
- Point:'点',
- inputContent1:'输入名字进行搜索',
- intersection:'交集',
- Tag:'标签:',
- Select:'选择',
- NoLabel:'空标签',
- unionSet:'并集',
- all:'全选',
- generated:'所有默认材质都是AiDA生成',
- ImageOnly:'图片',
- TextOnly:'文字',
- TextImage:'图片-文字',
- inputContent2:'输入生成图片的标题',
- maximumLength:'输入的内容超过允许输入的最大长度',
- Model1:'笔墨画风',
- Model2:'插画画风',
- Model3:'真实画风',
- Name:'名字:',
- Category:'类别:',
- inputContent3:'输入生成图片的标题',
- Cancel:'取消',
- Sure:'保存',
- Moodboard:'情绪板',
- Prints:'印花',
- Sketches:'服装',
- DesignElements:'设计元素',
- Mannequins:'模特',
- model:'模型',
- brandDNA:'品牌 DNA',
- jsContent1:'你确定要删除选中图片吗?',
- jsContent2:'你确定要删除选中图片吗?',
- jsContent3:'您只能上传图片文件!',
- jsContent4:'图片必须小于5MB',
- jsContent5:'图片已经上传是否继续上传',
- jsContent6:'输入的内容超过允许输入的最大长度',
- jsContent7:'请输入内容~',
- jsContent8:'上传失败',
- jsContent9:'选择一张图片~',
- jsContent10:'是否另存为当前模特?',
- jsContent11:'你确定删除当前品牌DNA吗?',
- jsContent12:'请先取消选中后就再次点击删除',
- jsContent13:'您必须选择至少一个模特,且最多不超过四个',
- },
- HistoryPage:{
- History:'历史',
- StartDate:'开始日期',
- EndDate:'结束日期',
- inputContent1:'输入名字进行搜索',
- Detail:'细节',
- Rename:'重命名',
- Retrieve:'选择',
- Delete:'删除',
- inputContent2:'请输入新名称',
- Submit:'保存',
- CollectionsName:'名字',
- source:'来源',
- UptateTime:'修改时间',
- SketchCounts:'项目名字',
- Operations:'Operations',
- jsContent1:'删除成功',
- jsContent2:'您确定要删除这个收藏吗?',
- jsContent3:'修改成功',
- jsContent4:'图片必须小于5MB',
- jsContent5:'图片已经上传是否继续上传',
- jsContent6:'输入的内容超过允许输入的最大长度',
- jsContent7:'请输入内容~',
- },
- ModelPlacement:{
- Registration:'新增模特',
- Submit:'保存',
- Preview:'预览',
- Back:'Back',
- Restore:'重置',
- System:'系统',
- Library:'收藏',
- Point:'点位',
- addPoint:'添加点位',
- RemovePoint:'删除点位',
- mannequinHint:'模特背景图片请使用白色或者其他颜色来增强效果',
- SHOULDER:'肩膀',
- WAISTBAND:'腰部',
- HAND:'手',
- jsContent1:"您还没有保存,模特不会上传,确定要继续吗?",
- jsContent2:'图片已经上传是否继续上传',
- },
- ModelPlacementMobile:{
- Registration:'新增模特',
- Submit:'保存',
- Preview:'预览',
- Back:'Back',
- Restore:'重置',
- System:'系统',
- Library:'收藏',
- Point:'点位',
- RemovePoint:'删除点位',
- mannequinHint:'模特背景图片请使用白色或者其他颜色来增强效果',
- SHOULDER:'肩膀',
- WAISTBAND:'腰部',
- HAND:'手',
- jsContent1:"您还没有保存,模特不会上传,确定要继续吗?",
- jsContent2:'图片已经上传是否继续上传',
- },
- Upload:{
- Delete:'删除',
- Maximum2M:'您最多可以上传10张照片,每张照片不能超过5MB',
- jsContent1:'您只能上传图片文件!',
- jsContent2:'图片必须小于5MB',
- jsContent3:'上传失败',
- },
- more:{
- delete:'删除',
- down:'下载',
- edit:'修改',
- enlargement:'放大',
- },
- SketchboardUpload:{
- Upload:'上传',
- Library:'收藏',
- Generate:'生成',
- Close:'取消',
- currently:'您排在队列中的第{generateLineUp}位',
- PIN:'PIN',
- Maximum:'最多可上传{maxImg}张图片,每张图片最大5MB',
- Thumbnail:'选择的线稿',
- inputContent1:'生成图片的标题',
- maximumLength:'输入的内容超过允许输入的最大长度',
- GenerateSketch:'生成线稿',
- jsContent1:"上传失败",
- jsContent2:"您只能上传图片文件!",
- jsContent3:'图片必须小于5MB',
- jsContent4:"超过允许上传的最大图片数量",
- jsContent5:"请选择一张图片",
- jsContent6:"输入的内容超过允许输入的最大长度",
- jsContent7:"请输入内容~",
- },
- PrintboardUpload:{
- Upload:'上传',
- Library:'收藏',
- Generate:'生成',
- Close:'取消',
- currently:'您排在队列中的第{generateLineUp}位',
- PIN:'必须',
- Maximum:'最多可上传16张图片,每张图片最大5MB',
- Thumbnail:'选择的印花',
- inputContent1:'生成图片的标题',
- maximumLength:'输入的内容超过允许输入的最大长度',
- PatternTitle:'生成可在服装上完全平铺的重复设计图案。',
- LogoTitle:'为文字内容创建艺术字体设计,适用于各种标语或短语。',
- SloganTitle:'输入的内容超过允许输入的最大长度',
- jsContent1:"您只能上传图片文件!",
- jsContent2:'图片必须小于5MB',
- jsContent3:"超过允许上传的最大图片数量",
- jsContent4:"请选择一张图片",
- jsContent5:"输入的内容超过允许输入的最大长度",
- jsContent6:"请输入内容~",
- jsContent7:"请确保所有必填项都填妥",
- },
- ColorboardUpload:{
- Thumbnail:'选择的颜色缩略图',
- Clear:'清除',
- Palette:'调色板',
- HEX:'HEX',
- RGBA:'RGBA',
- UploadImage:'提取主色',
- ColorCode:'颜色代码',
- SelectSuccessively:'连选',
- SelectSuccessivelyOnTitle:'连续选色模式开启.',
- SelectSuccessivelyOffTitle:'连续选色模式关闭.',
- SelectSeparately:'单选',
- ExtractColor:'提取',
- Single:'单色',
- Gradual:'渐变',
- Alignment:'线性',
- uploadTitle:'从本地上传图片',
- selectTitle:'从情绪版或印花版选择图片',
- jsContent1:"您的浏览器不支持",
- jsContent2:"找不到这个TCX的颜色",
- jsContent3:"您只能上传图片文件!",
- jsContent4:'图片必须小于5MB',
- jsContent5:"请输入正确的TCX值",
- jsContent6:"请至少选择一个情绪版或者印花",
- },
- selectImgList:{
- SelectImg:'选择图片来提取主色',
- Clear:'关闭',
- },
- MoodboardUpload:{
- Upload:'上传',
- Library:'收藏',
- Generate:'生成',
- Delete:'删除',
- Maximum:'最多可上传8张图片,每张图片最大5MB',
- Thumbnail:'选择的情绪板',
- layout:'布局',
- selected:'当前的情绪版布局',
- Edit:'编辑',
- jsContent1:'您最多可以选择8张图片',
- jsContent2:"上传失败",
- jsContent3:"您只能上传图片文件!",
- jsContent4:'图片必须小于5MB',
- jsContent5:'请点击布局进行随机排序',
- },
- Cropper:{
- Cutpicture:'切图',
- Finish:'完成',
- Cancel:'取消',
- CropPreview:'缩略图',
- },
- Material:{
- inputContent1:'输入名字进行搜索',
- PIN:'PIN',
- },
- MarketingSketchUpload:{
- Upload:'上传',
- MyLibrary:'我的收藏',
- maximumLength:'最多可以上传15张照片,每张照片不能超过5MB',
- jsContent1:'上传失败',
- jsContent2:"您只能上传图片文件!",
- jsContent3:'图片必须小于5MB',
- jsContent5:'超过允许上传的最大图片数量',
- },
- layout:{
- MoodBoardDesign:'设计情绪板',
- LayerOptions:'图层选项',
- Submit:'保存',
- },
- Generate:{
- ImageOnly:'图片',
- TextOnly:'文字',
- TextImage:'图片-文字',
- Model1:'笔墨画风',
- Model2:'插画画风',
- Model3:'真实画风',
- inputContent1:'输入生成图片的提示词',
- Generate:'生成',
- Sequence:'队列',
- Close:'取消',
- currently:'您排在队列中的第{generateLineUp}位',
- Merge:'合成',
- maximumLength:'输入的内容超过允许输入的最大长度',
- effectPoor:'当前生成的图像质量低于标准。请考虑调整您的提示词并再次尝试。',
- everyTimeEffectPoor:'您有一张图片生成图片质量低于标准,请考虑调整您的提示词并再次尝试。',
- Model:'模型',
- uploadTitle:'上传参考图',
- uploadproduct:'上传产品图',
- style:'风格',
- referenceImage:'参考图',
- sloganTitle:'输入文字内容',
- jsContent1:"您只能上传图片文件!",
- jsContent2:'图片必须小于5MB',
- jsContent3:"请输入内容~",
- jsContent4:'输入的内容超过允许输入的最大长度',
- jsContent5:"请输入内容~",
- jsContent6:"您最多可以选择8张图片",
- jsContent7:"上传失败",
- jsContent8:"您{str}还有{num}次生成额度。",
- jsContent9:"您的{str}生成额度已用完。",
- jsContent10:"请完成标语图片",
- jsContent11:"看到输入的内容可能存在重叠,重叠会影响最终效果哦~",
- jsContent12:"最少需要创建一个文字",
- },
- collectionModal:{
- Moodboard:'情绪板',
- Printboard:'印花板',
- Colorboard:'颜色板',
- Sketchboard:'线稿板块',
- Mannequin:'人体模特',
- Mannquinboard:'模特板块',
- MoodCollection:'为您的系列选择情绪版',
- PrinCollection:'为您的系列选择印花版',
- ColorCollection:'为您的系列选择颜色版',
- SketchCollection:'为您的系列选择线稿版',
- jsContent1:'因为您选择了多张图片,请点击布局后继续.',
- jsContent2:'上传的文件不会保存,是否继续? ',
- jsContent3:'您必须选择一种或多种颜色进行下一步。',
- jsContent5:"我们检测到您的({str})上的PIN数量超过了八个,这可能会导致一些已钉住的项目未被使用。您是否仍要继续?",
- },
- DesignDetail:{
- Details:'详情',
- EditDetails:'编辑设计的细节',
- editTitle:'修改单品',
- DetailTitle:'删除单品',
- compareTitle:'对比',
- Submit:'保存',
- CurrentApparel:'当前服装',
- editSketchTitle:'修改草图',
- CurrentPrint:'当前印花',
- CurrentColor:'当前颜色',
- CurrentElements:'当前元素',
- },
- DesignDetailAlter:{
- current:'当前使用',
- inProject:'项目使用',
- Upload:'上传',
- Library:'收藏',
- inputContent1:'输入名字进行搜索',
- Palette:'调色板',
- HEX:'HEX',
- RGBA:'RGBA',
- UploadImage:'上传图片',
- Delete:'删除',
- ColorCode:'颜色代码',
- jsContent1:"您的浏览器不支持",
- jsContent2:"您最多可以选择8张图片",
- jsContent3:"上传失败",
- jsContent4:'您只能上传图片文件!',
- jsContent5:'Image must smaller than 5MB!',
- jsContent6:"找不到这个TCX的颜色",
- jsContent7:"请先选择一个颜色",
- },
- addDetails:{
- AddDetails:'添加细节',
- submit:'保存',
- jsContent1:'请至少绘制一条线段',
- },
- DesignDetailEnd:{
- NewApparel:'选择的服装',
- NewPrint:'选择的印花',
- Placement:'模式',
- Overall:'整体',
- Single:'单个',
- NewColor:'选择的颜色',
- preview:'预览',
- Layout:'布局',
- jsContent1:'请选择印个印花',
- jsContent2:'请选择颜色',
- },
- DesignPrintOperation:{
- Placement:'调整位置',
- Overall:'整体',
- Single:'单件',
- Scale:'大小',
- Random:'随机',
- inputContent:'输入名字进行搜索',
- Preview:'预览',
- Submit:'提交',
- isOverall:'图案图像不能在单件模式下使用',
- Apparel:'衣服',
- Print:'印花',
- Color:'颜色',
- Elements:'元素',
- Model:'模特',
- CurrentSketch:'设计服装',
- CurrentPrint:'设计印花',
- CurrentColor:'设计颜色',
- Colorpelette:'选择颜色',
- Colorfromimage:'图片提取颜色',
- ColorCode:'颜色代码',
- ExtractColor:'提取颜色',
- CurrentElement:'设计元素',
- CurrentModel:'设计模特',
- NewApparel:'新服装',
- NewPrint:'新印花',
- NewModel:'新模特',
- jsContent1:'以上更改尚未保存,您确定要继续吗?',
- },
- uploadFile:{
- jsContent1:'您最多可以选择{maxImg}张图片哦',
- },
- isTest:{
- available:"此功能对试用用户不可用。",
- src:"此功能对试用用户不开放,请访问进行订阅。",
- userName:'试用用户',
- loginIsTest:"您是试用用户,试用期到 {date}。为了用户数据的安全,我们不会保存试用用户上传的任何个人数据,并会在每次注销后擦除个人数据。如果您需要订阅,请点击 ->",
- image:'由于您是试用用户,您只能上传10张图片。'
- },
- setLabel:{
- EditTag:'编辑标签',
- jsContent1:'请输入标签名称',
- },
- works:{
- WORKS:'作品广场',
- all:'全部',
- FavoriteWorks:'我的喜欢',
- MyWorks:'我的作品',
- RCAworkshop_2024:'AiDA工作坊 2024',
- NewYear_2025:'新年 2025',
- },
- Publish:{
- Publish:'发布到作品广场',
- CoverPicture:'封面图',
- CollectionTitle:'系列名字',
- topic:'话题',
- Description:'描述',
- Permissions:'权限',
- PermissionsItem1:'允许其他用户进行二次创作。',
- Close:'取消',
- UpdatePublish:'更新发布',
- jsContent1:'您确定要离开这一页吗?你的更改没有被保存。',
- jsContent2:'请输入您的作品名称',
- jsContent3:'这将把您的作品发布到广场上,供所有用户查看。请确认是否发布?',
- jsContent4:'发布成功!你可以在我的作品中找到',
- },
- newScaleImage:{
- Collection:'系列',
- SecondaryCreation:'二次创作',
- Follow:'关注',
- Unfollow:'取关',
- CreationTime:'创建时间',
- UpdateTime:'更新时间',
- Comment:'评论',
- NoComments:'没有评论',
- first:'你可以成为第一个评论',
- reply:'回复',
- unfold:'展开',
- Collapse:'折叠',
- Title:'标题',
- Original:'原创',
- from:'源自',
- Delete:'删除',
- Describe:'描述',
- replyAll:'所有回复',
- jsContent1:'请先登录或者升级为正式用户',
- jsContent2:'作者不允许二次创作',
- jsContent3:'请输入评论内容',
- jsContent4:'是否删除当前评论',
- jsContent5:'是否删除当前作品',
- jsContent6:'作品被作者删除',
- },
- scaleImage:{
- overlayOrNot:'是否覆盖当前图片',
- submitCanvas:'画布内容没有储存,是否继续',
- cover:'是否要把生成的内容存为新的设计',
- },
- account:{
- personCentered:'个人中心',
- back:'返回',
- frontPage:'我的信息',
- Home:'首页',
- Messages:'消息中心',
- Follow:'关注',
- Fans:'粉丝',
- editUser:'修改个人信息',
- notModifiable:'没有修改次数',
- remainingModifications:'本月剩余次数:',
- Country:'国家',
- CompanyName:'职业',
- //account首页
- myInfor:'我的信息',
- bindWeChat:'绑定',
- cancel:'取消订阅',
- //编辑个人信息页
- userName:'用户名',
- email:'邮箱',
- Submit:'提交',
- UpdateAvatar:'修改头像',
- information:'绑定个人信息',
- ModifyEmail:'修改邮箱',
- Email:'邮箱',
- plaseEmail:'请输入邮箱',
- plaseCountry:'请选择国家',
- plaseCompanyName:'请输入职业',
- Name:'名字',
- plaseSelectSex:'请选择',
- plaseFirst:'请输入姓',
- plaseLast:'请输入名',
- Mr:'先生',
- Ms:'女士',
- Miss:'小姐',
- //消息
- systemMessages:'系统消息',
- comment:'评论',
- like:'点赞',
- NewFans:'新增粉丝',
- AllRead:'全部已读',
- dataNull:'没有任何信息~',
- reply:'评论你的作品',
- followedYou:'关注了你',
- likedYourWork:'赞了你的作品',
- FollowFans:'关注 粉丝',
- //互动
- Interact:'互动',
- hisWorks:'他的作品',
- works:'作品',
- //取消
- jsContent1:'太贵了',
- jsContent2:'系统不友好',
- jsContent3:'太慢了',
- jsContent4:'操作困难',
- jsContent5:'教程不充足',
- jsContent6:'无法生成需要的内容',
- jsContent7:'请输入职业',
- jsContent8:'请选择一个国家',
- jsContent9:'请选择称呼',
- jsContent10:'请输入姓',
- jsContent11:'请输入名字',
- jsContent12:'邮箱格式不正确',
- },
- frontPage:{
- BindWechat:'绑定微信',
- Unbound:'未绑定',
- BindNow:'绑定',
- Unbind:'取消绑定',
- BindGmail:'绑定谷歌',
- ModifyEmail:'修改邮箱',
- Modify:'修改',
- jsContent1:'取消绑定成功',
- jsContent2:'当前网络无法加载谷歌',
- },
- Renew:{
- title:'根据您的需求选择最佳计划',
- Monthly:'月付',
- promotionCode:'优惠码',
- use:'应用',
- PromoCodeError:'请检查优惠码是否正确或者是否过期',
- Yearly:'年付',
- CreditCard:'信用卡',
- Alipay:'支付宝',
- Payment:'付款方式',
- PleaseSelectPayment:'请选择支付方式',
- SubscribeNow:'立即订阅',
- PersonalVersion:'个人版',
- HKDMonth:'HKD / 月',
- HKDYear:'HKD / 年',
- automatically:'是否自动续费',
- activity1:'限时优惠,仅限今日!',
- Strengths:'我们的优势',
- StrengthsTitle1:'无限的灵感创意',
- StrengthsTitle1_1:'',
- StrengthsInfo1:'灵感生成只需几分钟',
- StrengthsInfo1_1:'',
- StrengthsTitle2:'可持续且具成本效',
- StrengthsTitle2_1:'',
- StrengthsInfo2:'精简流程,减少浪费',
- StrengthsInfo2_1:'',
- StrengthsTitle3:'适用于所有级别的群体',
- StrengthsTitle3_1:'',
- StrengthsInfo3:'易操作简便且功能强大,',
- StrengthsInfo3_1:'适合各级别的设计师使用',
- StrengthsInfo3_2:'',
- StrengthsTitle4:'从灵感到成衣',
- StrengthsTitle4_1:'',
- StrengthsInfo4:'AiDA 全程助力',
- StrengthsInfo4_1:'你的时尚设计旅程',
- unlimited:'立即订阅!',
- },
- cancelRenewal:{
- cancelling:'您取消AiDA的原因是什么?',
- subscription:'您即将取消订阅',
- looseDate:'你将失去所有功能',
- looseCustomizations:'你将丢失你的设置和自定义',
- DonWorry:'别担心!您在 AiDA 中的数据是安全的.',
- Continue:'继续续订',
- cancel:'是的,取消',
- subscriptionRenewal:'没有自动续订的订阅计划.',
- },
- guide:{
- guide1:"在
工作空间中,您可以个性化您的设计设置,包括选择适用于男装或女装的设计,以及选择用于创作的人体模型。",
- guide2:"选择您要设计的服装性别。",
- guide3:'在此更改人体模型。',
- guide4:'您目前可以从我们的系统库中选择人体模型。稍后,您还可以在注册自己的人体模型后从用户库中进行选择。',
- guide5:'在这里开始您的创意之旅。 ',
- guide6:'对于情绪板、印花或服装,我们提供三种不同的图片添加方法。第一种选择是
上传,允许您直接从本地设备上传。',
- guide7:"第二种方法是从您的
收藏中选择。
您可能会注意到您的库页面目前是空的;不必担心。您上传的所有图像都将自动添加到您的库中。将来,您无需每次上传,只需从您的库中选择即可。",
- guide8:'第三种方法是使用最新的图像生成技术
生成图像。',
- guide9:"输入捕捉您希望表达的情绪的关键词,然后单击
生成按钮。",
- guide10:'为您的心情板选择两个图像。',
- guide11:"点击此处布局您的情绪版。",
- guide12:"点击这里进入下一步。",
- guide13:"点击此处生成印花图片。",
- // guide14:"我们为生成图片提供三个输入选项:仅图片、仅文本和图片文本。",
- // guide15:"选择此选项,我们将使用您上传的图片和输入的文本生成四张印花图片。",
- guide16:"在此处选择生成模型;不同的模型将以不同的风格生成图片。",
- // guide17:"在此处选择生成模型;不同的模型将以不同的风格生成图片。",
- guide18:"在此处上传输入图片。",
- // guide19:"点击此图片进行选择。",
- guide20:"输入关于您希望创建的印花的关键词,然后点击
生成按钮。",
- guide21:"选择您最喜欢的生成印花。",
- guide22:"点击此处进行下一步。",
- guide23:"点击此处从图像中提取主要颜色。",
- guide24:"从这些颜色块中选择您想要的第一种颜色。",
- guide25:"点击此块选择第二种颜色。",
- guide26:"从这些颜色块中选择您想要的颜色。",
- guide27:"点击此处进行下一步。",
- guide28:"点击此处生成服装草图。",
- // guide29:"使用仅文本选项进行生成。",
- guide30:"输入关于您希望创建的草图的关键词,然后点击
生成按钮。",
- guide31:"点击此处为生成的草图选择一个类别。",
- guide32:"为草图选择正确的类别。",
- guide33:"选择您最喜欢的生成草图。",
- guide34:"点击此处完成上传过程。",
- guide35:"点击此处让AI生成设计插图。",
- guide36:"请稍候几秒钟。",
- guide37:"点击小红心保存您喜欢的设计。",
- guide38:"点击“
重新设计”以生成八个新的服装供您选择。",
- guide39:"点击此处让AI生成设计插图。",
- guide40:"点击您感兴趣的任何设计图片以修改细节。",
- guide41:"点击衣服以修改其细节。",
- guide42:"点击此处添加或更改印花。",
- guide43:"您可以在收藏中找到您之前上传的印花。",
- guide44:"为此草图选择一个印花。",
- guide45:"点击此处布局所选印花。",
- guide46:"在此处预览印刷设计。",
- guide47:"在此处保存印刷设计。",
- guide48:"点击此处完成修改。",
- guide49:"点击此完成出您刚刚设计的系列。",
- guide51:"这个界面允许您将设计结果转换为产品图。您可以通过调整文字和相似度来获得理想的效果。点击此产品图进入下一步。",
- guide52:"点击此处生成产品图。",
- guide53:"点击此按钮可对产品图应用更多工具。",
- guide54:"我们可以改变这张图片的光照方向和背景。",
- guide55:"点击此处生成一张从右侧打光的产品图。",
- guide56:"如果您喜欢这个结果,可以点击小红心保存。",
- guide57:"点击此处进入导出页面。",
- guide58:"您可以将作品分享到作品广场或者导出到本地。",
- guide50:"您的指南已经完成,现在您可以自由创作。要了解更多见解和细节,请查看我们主页上的演示视频:
https://code-create.com.hk/aida/。您可以随时告诉机器人您想重新开始教程。",
- },
- createSlogan:{
- title:'Create Slogan',
- Color:'Color',
- FontAlign:'Font Align',
- FontStyle:'Font Style',
- FontFamily:'Font Family',
- add:'Add',
- delete:'Delete',
- submit:'Submit',
- },
- newProjectg:{
- helpYou:'今天我能为您做些什么呢?',
- Chat:'代理模式',
- Setting:'手动模式',
- SeriesDesign:'整身设计',
- SeriesDesignInfo:'系列设计专注于多品类服装的协调设计,是打造统一时尚系列的理想之选。使用“设计资源”面板中的“情绪板”、“印刷板”、“配色板”、“草图板”和“人体模型”工具,收集和整理您的灵感,打造和谐的服装组合。在“草稿”和“系列”面板中,使用“产品图像”、“重新照明”和“转移姿势”等强大工具,完善您的作品。准备就绪后,将所有内容导出到“画布”以展示完整的系列设计。',
- SingleDesign:'单品设计',
- DeepThinking:'深度思考',
- SingleDesignInfo:'单一设计专注于单一服装类别的独立设计,例如 T 恤、连衣裙或夹克,无需考虑与其他单品的搭配。使用“设计资源”面板中的“情绪板”、“打印板”、“配色板”和“草图板”来收集灵感,并专注于打造一件独一无二的作品。完成后,在“草稿”和“收藏”面板中使用“产品图像”、“重新照明”和“传输姿势”等工具优化您的设计,然后导出到“画布”以展示您的个人作品。',
- hintListSERIES1:'设计一套以夏日海滩为灵感的连衣裙。',
- hintListSERIES2:'设计一套暗色系,哥特风格的上衣。',
- hintListSERIES3:'设计一套男童的无帽夹克设计,要求以森林探险为主题。',
- hintListSIGNLE1:'设计一套以夏日海滩为灵感的连衣裙。',
- hintListSIGNLE2:'设设计一套女童连衣裙,田园风格。',
- hintListSIGNLE3:'设计一套男性短袖衬衫,阳光,活力的感觉。',
- jsContent1:'文件大小不能超过 5MB。',
- jsContent2:'您最多只能上传五张图片。',
- jsContent3:'您最多只能上传一个文件。',
- },
- DeReconstruction:{
- GenerateLineDrawing:'生成线稿图',
- Download:'下载',
- Girls:"女童",
- Boys:"男童",
- },
- patternMaking3D:{
- Clothing:'服装',
- Print:'印花',
- TechnicalSketch:'技术草图',
- front:'前',
- back:'后',
- FlatPattern:'展示图',
- },
- batchGeneration:{
- Project:'项目',
- Search:'搜索',
- Create:'创建',
- Rename:'重命名',
- Review:'查看',
- Delete:'删除',
- sequence:'序号',
- TaskName:'任务名字',
- TaskType:'任务类型',
- QuantityGenerated:'生成数量',
- Quantity:'数量',
- CreationTime:'创建时间',
- StartTime:'开始时间',
- UpdateTime:'结束时间',
- Status:'状态',
- Operation:'操作',
- Keyword:'提示词',
- CostCredit:'消耗积分',
- title:'创建批量生成任务',
- PleaseSelect:'请选择',
- enterNumber:'请输入数量',
- },
- brandDNA:{
- Addbrand:'创建新品牌',
- BrandName:'品牌名字',
- BrandTextarea:'从描述中创建品牌',
- BrandSlogan:'品牌标语',
- BrandLogo:'品牌logo',
- Generate:'生成',
- Slogan:'标语',
- Upload:'上传',
- Delete:'删除',
- textarea:'请阐述您对这个品牌的看法,我们将帮助您设计出名称、标志以及宣传语。',
- },
- chat:{
- DeepThinking:'深度思考',
- message:'输入',
- },
- Model:{
- Style:'风格',
- CurrentModel:'当前模特',
- all:'全部',
- },
- libraryList:{
- System:'系统',
- Library:'库',
- },
- Canvas:{
- layer:'图层',
- createGroup:'创建组',
- slutionGroup:'解组',
- deleteLayer:'删除图层',
- clearSelection:'清除选择',
- AddPinnedLayer:'添加置顶图层',
- selectedLayers:'选中的图层数量:',
- Hint:'提示:按住 Ctrl/Cmd 多选,Shift 范围选择,长按进入多选模式',
- CollapseUp:'收起组',
- CollapseDown:'展开组',
- showGroup:'显示图层',
- hideGroup:'隐藏图层',
- showHiddenLayer:'显示/隐藏图层',
- preview:'预览',
- EmptyLayer:'空图层',
- Scale:'缩放',
- ResetLayer:'重置视图',
- Help:'查看快捷键和触控操作',
- width:'宽度',
- height:'高度',
- color:'颜色',
- KeyboardShortcutsOperationGuide:'键盘快捷键 & 操作指南',
- TheDetectedPlatform:'检测到的平台',
- BasicOperations:'基础操作',
- Operation:'操作',
- ShortcutGesture:'快捷键/手势',
- viewOperations:'视图操作',
- toolSwitching:'工具切换',
- BrushAdjustmentOperation:'笔刷调整',
- undo:'撤销',
- Redo:'重做',
- Copy:'复制',
- Paste:'粘贴',
- Cut:'剪切',
- DeleteSelectedElement:'删除选中元素',
- MoveCanvas:'移动画布',
- ZoomCanvas:'缩放画布',
- MouseWheel:'鼠标滚轮',
- MacZoomCanvas:'鼠标滚轮 或 触控板缩放手势',
- SelectionMode:'选择模式',
- PaintingMode:'绘画模式',
- EraserMode:'橡皮擦模式',
- LassoTool:'套索工具',
- LiquifyTool:'液化工具',
- DecreaseBrush:'增加笔触大小',
- IncreaseBrush:'减小笔触大小',
- Layer1:'图层 1',
- }
-}
+ Header: {
+ hello: "你好",
+ HOME: "首页",
+ LIBRARY: "收藏",
+ HISTORY: "历史",
+ WORKS: "作品广场",
+ EVENTS: "活动",
+ Events: "活动",
+ AdvancedTools: "高级工具",
+ personal: "个人中心",
+ bindEmail: "绑定邮箱",
+ logOff: "退出登录",
+ Tutorial: "教程",
+ language: "中文",
+ skip: "跳过",
+ emailContent: "你绑定了的邮箱",
+ Email: "邮箱",
+ NextStep: "下一步",
+ verification: "输入验证码",
+ SentTo: "发送",
+ Resend: "重发",
+ Credits: "积分",
+ SubscribeNow: "立即订阅",
+ TaskList: "任务列表",
+ ViewOrders: "查询订单",
+ toolsToProduct: "线稿转产品图",
+ toolsRelight: "产品图编辑",
+ toolsToTransferPose: "产品图视频",
+ toolsDeReconstruction: "拼贴重构廓形",
+ toolsPatternMaking: "制版",
+ toolsCanvas: "画布",
+ NewProject: "新建项目",
+ Rename: "重命名",
+ Setting: "设置",
+ BatchGeneration: "批量生成",
+ Delete: "删除",
+ onLiked: "取消喜欢",
+ Language: "语言",
+ Administrator: "管理员",
+ Affiliate: "组织",
+ Tools: "高级工具",
+ Type: "类型",
+ Filter: "筛选",
+ Unfold: "布局",
+ expand: "展开",
+ collapse: "折叠",
+ Size: "大小",
+ Small: "小",
+ Medium: "中",
+ Large: "大",
+ All: "全部",
+ Design: "时装画",
+ Product: "产品图",
+ PoseTransfer: "时装视频",
+ Today: "今天",
+ Yesterday: "昨天",
+ WithinAWeek: "一周内",
+ Earlier: "更早",
+ openUpgrade: "升级至专业版",
+ pastDue: "只有成为正式用户后,您才能使用这些功能~",
+ jsContent1: "邮箱格式不正确",
+ jsContent2: "绑定邮箱成功",
+ jsContent3: `已经长时间未操作,您必须活跃起来,否则将会在{numTime} S 后退出登录`,
+ },
+ allOrder: {
+ Time: "时间",
+ Serial: "ID",
+ Money: "金额",
+ Title: "名字",
+ PaymentMethods: "支付方式",
+ Payment: "支付方式",
+ State: "状态",
+ OrderType: "类型",
+ Receipt: "收据",
+ Income: "支出",
+ Expend: "收入",
+ credits: "积分",
+ changedCredits: "积分变更",
+ changeEvent: "增加/减少积分",
+ createTime: "创建时间",
+ },
+ payOrder: {
+ OrderInformation: "订单详情",
+ CreditsInformation: "积分详情",
+ },
+ exportModel: {
+ EditExport: "编辑 & 导出",
+ CanvasSize: "画布大小",
+ Height: "高",
+ Width: "宽",
+ CanvasNav: "系列",
+ CanvasTool: "画布工具",
+ Color: "颜色",
+ Size: "大小",
+ Brushwork: "笔触",
+ Texture: "材质",
+ FillBack: "填充 & 边",
+ Layer: "层级",
+ More: "参数",
+ insufficient: "您的积分余额不足,如需使用此功能,请点击左上角充值",
+ HDExport: "转高清",
+ Save: "保存",
+ Share: "发布",
+ Export: "导出",
+ SR: "请选择需要超分的图片",
+ requiresCredits: "执行超分的图片需要消耗{data}积分",
+ Scale: "倍率",
+ Cancel: "取消",
+ size: "区域",
+ density: "强度",
+ ShortcutKeys: "快捷键",
+ Painting: "绘图",
+ Eraser: "橡皮",
+ Uncheck: "取消选择",
+ Revoke: "撤回",
+ Retreat: "反撤回",
+ ReduceBrushSize: "减小笔触大小",
+ IncreaseBrushSize: "增大笔触大小",
+ DrinkingStraw: "吸色",
+ Copy: "复制",
+ Paste: "粘贴",
+ UploadOpenimage: "Upload/Open image",
+ jsContent1: "您是否已经保存画布内容?如果没有,请再关闭前点击'保存'。",
+ jsContent2: "我们只支持对印花进行超分",
+ jsContent3: "您的积分小于一次超分",
+ jsContent4: "您的积分余额不足",
+ jsContent5:
+ "您选择的第{str}张图像在超分辨率增强后的分辨率超过2048。请选择较低的放大倍数。",
+ jsContent6: "请选择需要超分的图片",
+ jsContent7: "保存成功~",
+ jsContent8: "是否继续编辑",
+ jsContent9: "是否需要自动裁剪画布多余空间",
+ jsContent10: "请选择一张图片后再次尝试",
+ },
+ upgradePlan: {
+ BuyCredlts: "购买积分",
+ credits: "积分",
+ organization: "积分再任意场景都可以使用",
+ CreditCard: "信用卡",
+ Alipay: "支付宝",
+ HongKong: "香港",
+ MainlandChina: "中国大陆",
+ Continue: "继续",
+ payment: "选择付款方式",
+ Cancel: "取消",
+ Payment: "付款",
+ PurchasePoints: "购买",
+ paymentmethod: "请选择付款方式",
+ policy: "继续注册账号即表示您同意我们的使用",
+ policy1: "条款",
+ policy2: "服务协议",
+ policy3: "(包括服务范围)及",
+ policy4: "订购协议",
+ completed: "是否已完成支付?",
+ hint: "请保持窗口打开,直到付款完成。如果您无法打开付款窗口,请检查您的浏览器设置,看看弹出窗口是否被阻止。成功付款后,积分可能会延迟发放。请等待1-3分钟,点击积分刷新按钮",
+ Back: "返回",
+ },
+ taskPage: {
+ TaskList: "任务列表",
+ download: "下载",
+ },
+ Habit: {
+ Workspace: "工作空间",
+ WorkspaceSetting: "设置工作空间",
+ settingWorkspace: "调整您的工作空间",
+ Overall: "整体",
+ Single: "单件",
+ System: "系统",
+ Designer: "设计师",
+ Mannequin: "模特",
+ Current: "当前",
+ User: "用户",
+ Style: "风格",
+ Select: "选择",
+ Clear: "清除",
+ ProjectName: "项目名字",
+ Role: "年龄",
+ Adult: "成人",
+ Child: "儿童",
+ Gender: "性别",
+ Female: "女性",
+ Male: "男性",
+ Brand: "品牌",
+ BrandStrength: "品牌使用占比",
+ Category: "种类",
+ Complete: "完成",
+ jsContent1: "是否删除指定工作空间",
+ jsContent2: "请输入当前工作空间的名字",
+ jsContent3:
+ "看到您换了风格。您是否愿意将目前使用的模特替换为系统推荐的模特?",
+ },
+ RobotAssist: {
+ inputContent1: "问我什么都行~",
+ jsContent1: "请输入生成内容~",
+ jsContent2:
+ "欢迎来到AiDA。我是您友好的时尚设计助手。如果您有任何问题或需要帮助,请随时问我。",
+ jsContent3:
+ "看来您可能是新用户,我很乐意为您介绍我们全新升级的AiDA系统。您现在要开始教程吗?",
+ jsContent4: "您可以随时告诉我要开始教程。",
+ jsContent5: "在开始教程之前,我们需要刷新页面。您现在要开始教程吗?",
+ },
+ HomeView: {
+ GetStarted: "开始设计",
+ Start: "开始",
+ Edit: "编辑",
+ Reset: "重置",
+ Design: "设计",
+ Redesign: "重新设计",
+ GeneratedDesign: "生成线稿",
+ elementTitle: "设计素材",
+ recycleBin: "回收站",
+ SelectedDesign: "设计集",
+ Export: "导出",
+ moodboard: "情绪板",
+ printboard: "印刷板",
+ colorboard: "调色板",
+ sketchboard: "线稿板",
+ mannequins: "人体模型",
+ masnnequinHint:
+ "您使用的模特与当前的衣服不匹配,这将导致生成的模型不使用所选的衣服",
+ FinalizeCollection: "完成系列",
+ jsContent1: "您必须选择一种或多种颜色进行下一步。",
+ jsContent2: "您必须选择一种或多种颜色进行下一步。",
+ jsContent3: "导出文件失败。",
+ jsContent4:
+ "您的订阅将在 {days} 天 {hours} 小时后到期。为确保服务不中断,请点击此处续订->",
+ jsContent8: "续订订阅。",
+ jsContent7: "友情提示",
+ jsContent5:
+ "我们很高兴让您体验AiDA 3.0。请注意,部分服务在试用期间可能会受到限制。如果您已经准备好全身心投入并享受完整的体验,我们诚挚地邀请您订阅。只需访问",
+ jsContent6: " 就可以开始订阅。感谢您试用我们的服务!",
+ jsContent9: "您确定要清除当前系列并重新开始吗?",
+ jsContent10: "二次创作的作品不允许使用'设计',但是您可以使用'重新设计'",
+ jsContent11: "取消喜欢后相关联的元素会被删除,确认要删除吗",
+ },
+ ProductImg: {
+ productInput: "输入关键词(例如风格、材质)",
+ relightInput: "输入关键词(例如场景、地点)",
+ Finalize: "完成",
+ SelectCollection: "线稿图",
+ SelectCollectionRelight: "产品图",
+ DesignSelectCollection: "选择一副插图",
+ SelectedDesign: "已选",
+ DesignSelectedDesign: "已选",
+ productImageDrafts: "生成结果",
+ DesignproductImageDrafts: "生成结果",
+ Upload: "上传",
+ MagicTools: "转换产品图工具",
+ relightingTool: "打光工具",
+ Similarity: "相似度",
+ SelectionFunction: "选择编辑模式",
+ Highlight: "曝光强度",
+ RelightDirection: "设置灯光方向",
+ GenerateProduct: "生成的产品",
+ SelectedProduct: "选择的产品",
+ Export: "导出",
+ moreTitle: "更多工具",
+ ProductImage: "产品图",
+ Relight: "打光",
+ RightLight: "右侧光",
+ LeftLight: "左侧光",
+ TopLight: "顶部光",
+ BottomLight: "底部光",
+ Clear: "清空",
+ jsContent1: "如果您离开此页,您的更改将会丢失。您确定要离开这一页吗?",
+ jsContent2: "请至少选择一张图片",
+ jsContent3: "您有一张图生成失败,请重试。",
+ },
+ poseTransfer: {
+ SelectDesign: "产品图",
+ Selectpose: "选择动作",
+ LikeVideo: "已选",
+ InputVideo: "生成结果",
+ GeneratedVideo: "生成的视频",
+ hint: "将草图改为逼真的照片,这条裙子的材质是牛仔布。",
+ jsContent1: "生成视频预计需要三分钟,请问是否继续",
+ },
+ LibraryPage: {
+ library: "收藏",
+ Organize: "整理",
+ Upload: "上传",
+ Generate: "生成",
+ Close: "取消",
+ Reset: "重置",
+ currently: "您排在队列中的第{generateLineUp}位",
+ Delete: "删除",
+ Rename: "编辑",
+ Point: "点",
+ inputContent1: "输入名字进行搜索",
+ intersection: "交集",
+ Tag: "标签:",
+ Select: "选择",
+ NoLabel: "空标签",
+ unionSet: "并集",
+ all: "全选",
+ generated: "所有默认材质都是AiDA生成",
+ ImageOnly: "图片",
+ TextOnly: "文字",
+ TextImage: "图片-文字",
+ inputContent2: "输入生成图片的标题",
+ maximumLength: "输入的内容超过允许输入的最大长度",
+ Model1: "笔墨画风",
+ Model2: "插画画风",
+ Model3: "真实画风",
+ Name: "名字:",
+ Category: "类别:",
+ inputContent3: "输入生成图片的标题",
+ Cancel: "取消",
+ Sure: "保存",
+ Moodboard: "情绪板",
+ Prints: "印花",
+ Sketches: "服装",
+ DesignElements: "设计元素",
+ Mannequins: "模特",
+ model: "模型",
+ brandDNA: "品牌 DNA",
+ jsContent1: "你确定要删除选中图片吗?",
+ jsContent2: "你确定要删除选中图片吗?",
+ jsContent3: "您只能上传图片文件!",
+ jsContent4: "图片必须小于5MB",
+ jsContent5: "图片已经上传是否继续上传",
+ jsContent6: "输入的内容超过允许输入的最大长度",
+ jsContent7: "请输入内容~",
+ jsContent8: "上传失败",
+ jsContent9: "选择一张图片~",
+ jsContent10: "是否另存为当前模特?",
+ jsContent11: "你确定删除当前品牌DNA吗?",
+ jsContent12: "请先取消选中后就再次点击删除",
+ jsContent13: "您必须选择至少一个模特,且最多不超过四个",
+ },
+ HistoryPage: {
+ History: "历史",
+ StartDate: "开始日期",
+ EndDate: "结束日期",
+ inputContent1: "输入名字进行搜索",
+ Detail: "细节",
+ Rename: "重命名",
+ Retrieve: "选择",
+ Delete: "删除",
+ inputContent2: "请输入新名称",
+ Submit: "保存",
+ CollectionsName: "名字",
+ source: "来源",
+ UptateTime: "修改时间",
+ SketchCounts: "项目名字",
+ Operations: "Operations",
+ jsContent1: "删除成功",
+ jsContent2: "您确定要删除这个收藏吗?",
+ jsContent3: "修改成功",
+ jsContent4: "图片必须小于5MB",
+ jsContent5: "图片已经上传是否继续上传",
+ jsContent6: "输入的内容超过允许输入的最大长度",
+ jsContent7: "请输入内容~",
+ },
+ ModelPlacement: {
+ Registration: "新增模特",
+ Submit: "保存",
+ Preview: "预览",
+ Back: "Back",
+ Restore: "重置",
+ System: "系统",
+ Library: "收藏",
+ Point: "点位",
+ addPoint: "添加点位",
+ RemovePoint: "删除点位",
+ mannequinHint: "模特背景图片请使用白色或者其他颜色来增强效果",
+ SHOULDER: "肩膀",
+ WAISTBAND: "腰部",
+ HAND: "手",
+ jsContent1: "您还没有保存,模特不会上传,确定要继续吗?",
+ jsContent2: "图片已经上传是否继续上传",
+ },
+ ModelPlacementMobile: {
+ Registration: "新增模特",
+ Submit: "保存",
+ Preview: "预览",
+ Back: "Back",
+ Restore: "重置",
+ System: "系统",
+ Library: "收藏",
+ Point: "点位",
+ RemovePoint: "删除点位",
+ mannequinHint: "模特背景图片请使用白色或者其他颜色来增强效果",
+ SHOULDER: "肩膀",
+ WAISTBAND: "腰部",
+ HAND: "手",
+ jsContent1: "您还没有保存,模特不会上传,确定要继续吗?",
+ jsContent2: "图片已经上传是否继续上传",
+ },
+ Upload: {
+ Delete: "删除",
+ Maximum2M: "您最多可以上传10张照片,每张照片不能超过5MB",
+ jsContent1: "您只能上传图片文件!",
+ jsContent2: "图片必须小于5MB",
+ jsContent3: "上传失败",
+ },
+ more: {
+ delete: "删除",
+ down: "下载",
+ edit: "修改",
+ enlargement: "放大",
+ },
+ SketchboardUpload: {
+ Upload: "上传",
+ Library: "收藏",
+ Generate: "生成",
+ Close: "取消",
+ currently: "您排在队列中的第{generateLineUp}位",
+ PIN: "PIN",
+ Maximum: "最多可上传{maxImg}张图片,每张图片最大5MB",
+ Thumbnail: "选择的线稿",
+ inputContent1: "生成图片的标题",
+ maximumLength: "输入的内容超过允许输入的最大长度",
+ GenerateSketch: "生成线稿",
+ jsContent1: "上传失败",
+ jsContent2: "您只能上传图片文件!",
+ jsContent3: "图片必须小于5MB",
+ jsContent4: "超过允许上传的最大图片数量",
+ jsContent5: "请选择一张图片",
+ jsContent6: "输入的内容超过允许输入的最大长度",
+ jsContent7: "请输入内容~",
+ },
+ PrintboardUpload: {
+ Upload: "上传",
+ Library: "收藏",
+ Generate: "生成",
+ Close: "取消",
+ currently: "您排在队列中的第{generateLineUp}位",
+ PIN: "必须",
+ Maximum: "最多可上传16张图片,每张图片最大5MB",
+ Thumbnail: "选择的印花",
+ inputContent1: "生成图片的标题",
+ maximumLength: "输入的内容超过允许输入的最大长度",
+ PatternTitle: "生成可在服装上完全平铺的重复设计图案。",
+ LogoTitle: "为文字内容创建艺术字体设计,适用于各种标语或短语。",
+ SloganTitle: "输入的内容超过允许输入的最大长度",
+ jsContent1: "您只能上传图片文件!",
+ jsContent2: "图片必须小于5MB",
+ jsContent3: "超过允许上传的最大图片数量",
+ jsContent4: "请选择一张图片",
+ jsContent5: "输入的内容超过允许输入的最大长度",
+ jsContent6: "请输入内容~",
+ jsContent7: "请确保所有必填项都填妥",
+ },
+ ColorboardUpload: {
+ Thumbnail: "选择的颜色缩略图",
+ Clear: "清除",
+ Palette: "调色板",
+ HEX: "HEX",
+ RGBA: "RGBA",
+ UploadImage: "提取主色",
+ ColorCode: "颜色代码",
+ SelectSuccessively: "连选",
+ SelectSuccessivelyOnTitle: "连续选色模式开启.",
+ SelectSuccessivelyOffTitle: "连续选色模式关闭.",
+ SelectSeparately: "单选",
+ ExtractColor: "提取",
+ Single: "单色",
+ Gradual: "渐变",
+ Alignment: "线性",
+ uploadTitle: "从本地上传图片",
+ selectTitle: "从情绪版或印花版选择图片",
+ jsContent1: "您的浏览器不支持",
+ jsContent2: "找不到这个TCX的颜色",
+ jsContent3: "您只能上传图片文件!",
+ jsContent4: "图片必须小于5MB",
+ jsContent5: "请输入正确的TCX值",
+ jsContent6: "请至少选择一个情绪版或者印花",
+ },
+ selectImgList: {
+ SelectImg: "选择图片来提取主色",
+ Clear: "关闭",
+ },
+ MoodboardUpload: {
+ Upload: "上传",
+ Library: "收藏",
+ Generate: "生成",
+ Delete: "删除",
+ Maximum: "最多可上传8张图片,每张图片最大5MB",
+ Thumbnail: "选择的情绪板",
+ layout: "布局",
+ selected: "当前的情绪版布局",
+ Edit: "编辑",
+ jsContent1: "您最多可以选择8张图片",
+ jsContent2: "上传失败",
+ jsContent3: "您只能上传图片文件!",
+ jsContent4: "图片必须小于5MB",
+ jsContent5: "请点击布局进行随机排序",
+ },
+ Cropper: {
+ Cutpicture: "切图",
+ Finish: "完成",
+ Cancel: "取消",
+ CropPreview: "缩略图",
+ },
+ Material: {
+ inputContent1: "输入名字进行搜索",
+ PIN: "PIN",
+ },
+ MarketingSketchUpload: {
+ Upload: "上传",
+ MyLibrary: "我的收藏",
+ maximumLength: "最多可以上传15张照片,每张照片不能超过5MB",
+ jsContent1: "上传失败",
+ jsContent2: "您只能上传图片文件!",
+ jsContent3: "图片必须小于5MB",
+ jsContent5: "超过允许上传的最大图片数量",
+ },
+ layout: {
+ MoodBoardDesign: "设计情绪板",
+ LayerOptions: "图层选项",
+ Submit: "保存",
+ },
+ Generate: {
+ ImageOnly: "图片",
+ TextOnly: "文字",
+ TextImage: "图片-文字",
+ Model1: "笔墨画风",
+ Model2: "插画画风",
+ Model3: "真实画风",
+ inputContent1: "输入生成图片的提示词",
+ Generate: "生成",
+ Sequence: "队列",
+ Close: "取消",
+ currently: "您排在队列中的第{generateLineUp}位",
+ Merge: "合成",
+ maximumLength: "输入的内容超过允许输入的最大长度",
+ effectPoor: "当前生成的图像质量低于标准。请考虑调整您的提示词并再次尝试。",
+ everyTimeEffectPoor:
+ "您有一张图片生成图片质量低于标准,请考虑调整您的提示词并再次尝试。",
+ Model: "模型",
+ uploadTitle: "上传参考图",
+ uploadproduct: "上传产品图",
+ style: "风格",
+ referenceImage: "参考图",
+ sloganTitle: "输入文字内容",
+ jsContent1: "您只能上传图片文件!",
+ jsContent2: "图片必须小于5MB",
+ jsContent3: "请输入内容~",
+ jsContent4: "输入的内容超过允许输入的最大长度",
+ jsContent5: "请输入内容~",
+ jsContent6: "您最多可以选择8张图片",
+ jsContent7: "上传失败",
+ jsContent8: "您{str}还有{num}次生成额度。",
+ jsContent9: "您的{str}生成额度已用完。",
+ jsContent10: "请完成标语图片",
+ jsContent11: "看到输入的内容可能存在重叠,重叠会影响最终效果哦~",
+ jsContent12: "最少需要创建一个文字",
+ },
+ collectionModal: {
+ Moodboard: "情绪板",
+ Printboard: "印花板",
+ Colorboard: "颜色板",
+ Sketchboard: "线稿板块",
+ Mannequin: "人体模特",
+ Mannquinboard: "模特板块",
+ MoodCollection: "为您的系列选择情绪版",
+ PrinCollection: "为您的系列选择印花版",
+ ColorCollection: "为您的系列选择颜色版",
+ SketchCollection: "为您的系列选择线稿版",
+ jsContent1: "因为您选择了多张图片,请点击布局后继续.",
+ jsContent2: "上传的文件不会保存,是否继续? ",
+ jsContent3: "您必须选择一种或多种颜色进行下一步。",
+ jsContent5:
+ "我们检测到您的({str})上的PIN数量超过了八个,这可能会导致一些已钉住的项目未被使用。您是否仍要继续?",
+ },
+ DesignDetail: {
+ Details: "详情",
+ EditDetails: "编辑设计的细节",
+ editTitle: "修改单品",
+ DetailTitle: "删除单品",
+ compareTitle: "对比",
+ Submit: "保存",
+ CurrentApparel: "当前服装",
+ editSketchTitle: "修改草图",
+ CurrentPrint: "当前印花",
+ CurrentColor: "当前颜色",
+ CurrentElements: "当前元素",
+ },
+ DesignDetailAlter: {
+ current: "当前使用",
+ inProject: "项目使用",
+ Upload: "上传",
+ Library: "收藏",
+ inputContent1: "输入名字进行搜索",
+ Palette: "调色板",
+ HEX: "HEX",
+ RGBA: "RGBA",
+ UploadImage: "上传图片",
+ Delete: "删除",
+ ColorCode: "颜色代码",
+ jsContent1: "您的浏览器不支持",
+ jsContent2: "您最多可以选择8张图片",
+ jsContent3: "上传失败",
+ jsContent4: "您只能上传图片文件!",
+ jsContent5: "Image must smaller than 5MB!",
+ jsContent6: "找不到这个TCX的颜色",
+ jsContent7: "请先选择一个颜色",
+ },
+ addDetails: {
+ AddDetails: "添加细节",
+ submit: "保存",
+ jsContent1: "请至少绘制一条线段",
+ },
+ DesignDetailEnd: {
+ NewApparel: "选择的服装",
+ NewPrint: "选择的印花",
+ Placement: "模式",
+ Overall: "整体",
+ Single: "单个",
+ NewColor: "选择的颜色",
+ preview: "预览",
+ Layout: "布局",
+ jsContent1: "请选择印个印花",
+ jsContent2: "请选择颜色",
+ },
+ DesignPrintOperation: {
+ Placement: "调整位置",
+ Overall: "整体",
+ Single: "单件",
+ Scale: "大小",
+ Random: "随机",
+ inputContent: "输入名字进行搜索",
+ Preview: "预览",
+ Submit: "提交",
+ isOverall: "图案图像不能在单件模式下使用",
+ Apparel: "衣服",
+ Print: "印花",
+ Color: "颜色",
+ Elements: "元素",
+ Model: "模特",
+ CurrentSketch: "设计服装",
+ CurrentPrint: "设计印花",
+ CurrentColor: "设计颜色",
+ Colorpelette: "选择颜色",
+ Colorfromimage: "图片提取颜色",
+ ColorCode: "颜色代码",
+ ExtractColor: "提取颜色",
+ CurrentElement: "设计元素",
+ CurrentModel: "设计模特",
+ NewApparel: "新服装",
+ NewPrint: "新印花",
+ NewModel: "新模特",
+ jsContent1: "以上更改尚未保存,您确定要继续吗?",
+ },
+ uploadFile: {
+ jsContent1: "您最多可以选择{maxImg}张图片哦",
+ },
+ isTest: {
+ available: "此功能对试用用户不可用。",
+ src: "此功能对试用用户不开放,请访问进行订阅。",
+ userName: "试用用户",
+ loginIsTest:
+ "您是试用用户,试用期到 {date}。为了用户数据的安全,我们不会保存试用用户上传的任何个人数据,并会在每次注销后擦除个人数据。如果您需要订阅,请点击 ->",
+ image: "由于您是试用用户,您只能上传10张图片。",
+ },
+ setLabel: {
+ EditTag: "编辑标签",
+ jsContent1: "请输入标签名称",
+ },
+ works: {
+ WORKS: "作品广场",
+ all: "全部",
+ FavoriteWorks: "我的喜欢",
+ MyWorks: "我的作品",
+ RCAworkshop_2024: "AiDA工作坊 2024",
+ NewYear_2025: "新年 2025",
+ },
+ Publish: {
+ Publish: "发布到作品广场",
+ CoverPicture: "封面图",
+ CollectionTitle: "系列名字",
+ topic: "话题",
+ Description: "描述",
+ Permissions: "权限",
+ PermissionsItem1: "允许其他用户进行二次创作。",
+ Close: "取消",
+ UpdatePublish: "更新发布",
+ jsContent1: "您确定要离开这一页吗?你的更改没有被保存。",
+ jsContent2: "请输入您的作品名称",
+ jsContent3: "这将把您的作品发布到广场上,供所有用户查看。请确认是否发布?",
+ jsContent4: "发布成功!你可以在我的作品中找到",
+ },
+ newScaleImage: {
+ Collection: "系列",
+ SecondaryCreation: "二次创作",
+ Follow: "关注",
+ Unfollow: "取关",
+ CreationTime: "创建时间",
+ UpdateTime: "更新时间",
+ Comment: "评论",
+ NoComments: "没有评论",
+ first: "你可以成为第一个评论",
+ reply: "回复",
+ unfold: "展开",
+ Collapse: "折叠",
+ Title: "标题",
+ Original: "原创",
+ from: "源自",
+ Delete: "删除",
+ Describe: "描述",
+ replyAll: "所有回复",
+ jsContent1: "请先登录或者升级为正式用户",
+ jsContent2: "作者不允许二次创作",
+ jsContent3: "请输入评论内容",
+ jsContent4: "是否删除当前评论",
+ jsContent5: "是否删除当前作品",
+ jsContent6: "作品被作者删除",
+ },
+ scaleImage: {
+ overlayOrNot: "是否覆盖当前图片",
+ submitCanvas: "画布内容没有储存,是否继续",
+ cover: "是否要把生成的内容存为新的设计",
+ },
+ account: {
+ personCentered: "个人中心",
+ back: "返回",
+ frontPage: "我的信息",
+ Home: "首页",
+ Messages: "消息中心",
+ Follow: "关注",
+ Fans: "粉丝",
+ editUser: "修改个人信息",
+ notModifiable: "没有修改次数",
+ remainingModifications: "本月剩余次数:",
+ Country: "国家",
+ CompanyName: "职业",
+ //account首页
+ myInfor: "我的信息",
+ bindWeChat: "绑定",
+ cancel: "取消订阅",
+ //编辑个人信息页
+ userName: "用户名",
+ email: "邮箱",
+ Submit: "提交",
+ UpdateAvatar: "修改头像",
+ information: "绑定个人信息",
+ ModifyEmail: "修改邮箱",
+ Email: "邮箱",
+ plaseEmail: "请输入邮箱",
+ plaseCountry: "请选择国家",
+ plaseCompanyName: "请输入职业",
+ Name: "名字",
+ plaseSelectSex: "请选择",
+ plaseFirst: "请输入姓",
+ plaseLast: "请输入名",
+ Mr: "先生",
+ Ms: "女士",
+ Miss: "小姐",
+ //消息
+ systemMessages: "系统消息",
+ comment: "评论",
+ like: "点赞",
+ NewFans: "新增粉丝",
+ AllRead: "全部已读",
+ dataNull: "没有任何信息~",
+ reply: "评论你的作品",
+ followedYou: "关注了你",
+ likedYourWork: "赞了你的作品",
+ FollowFans: "关注 粉丝",
+ //互动
+ Interact: "互动",
+ hisWorks: "他的作品",
+ works: "作品",
+ //取消
+ jsContent1: "太贵了",
+ jsContent2: "系统不友好",
+ jsContent3: "太慢了",
+ jsContent4: "操作困难",
+ jsContent5: "教程不充足",
+ jsContent6: "无法生成需要的内容",
+ jsContent7: "请输入职业",
+ jsContent8: "请选择一个国家",
+ jsContent9: "请选择称呼",
+ jsContent10: "请输入姓",
+ jsContent11: "请输入名字",
+ jsContent12: "邮箱格式不正确",
+ },
+ frontPage: {
+ BindWechat: "绑定微信",
+ Unbound: "未绑定",
+ BindNow: "绑定",
+ Unbind: "取消绑定",
+ BindGmail: "绑定谷歌",
+ ModifyEmail: "修改邮箱",
+ Modify: "修改",
+ jsContent1: "取消绑定成功",
+ jsContent2: "当前网络无法加载谷歌",
+ },
+ Renew: {
+ title: "根据您的需求选择最佳计划",
+ Monthly: "月付",
+ promotionCode: "优惠码",
+ use: "应用",
+ PromoCodeError: "请检查优惠码是否正确或者是否过期",
+ Yearly: "年付",
+ CreditCard: "信用卡",
+ Alipay: "支付宝",
+ Payment: "付款方式",
+ PleaseSelectPayment: "请选择支付方式",
+ SubscribeNow: "立即订阅",
+ PersonalVersion: "个人版",
+ HKDMonth: "HKD / 月",
+ HKDYear: "HKD / 年",
+ automatically: "是否自动续费",
+ activity1: "限时优惠,仅限今日!",
+ Strengths: "我们的优势",
+ StrengthsTitle1: "无限的灵感创意",
+ StrengthsTitle1_1: "",
+ StrengthsInfo1: "灵感生成只需几分钟",
+ StrengthsInfo1_1: "",
+ StrengthsTitle2: "可持续且具成本效",
+ StrengthsTitle2_1: "",
+ StrengthsInfo2: "精简流程,减少浪费",
+ StrengthsInfo2_1: "",
+ StrengthsTitle3: "适用于所有级别的群体",
+ StrengthsTitle3_1: "",
+ StrengthsInfo3: "易操作简便且功能强大,",
+ StrengthsInfo3_1: "适合各级别的设计师使用",
+ StrengthsInfo3_2: "",
+ StrengthsTitle4: "从灵感到成衣",
+ StrengthsTitle4_1: "",
+ StrengthsInfo4: "AiDA 全程助力",
+ StrengthsInfo4_1: "你的时尚设计旅程",
+ unlimited: "立即订阅!",
+ },
+ cancelRenewal: {
+ cancelling: "您取消AiDA的原因是什么?",
+ subscription: "您即将取消订阅",
+ looseDate: "你将失去所有功能",
+ looseCustomizations: "你将丢失你的设置和自定义",
+ DonWorry: "别担心!您在 AiDA 中的数据是安全的.",
+ Continue: "继续续订",
+ cancel: "是的,取消",
+ subscriptionRenewal: "没有自动续订的订阅计划.",
+ },
+ guide: {
+ guide1:
+ "在
工作空间中,您可以个性化您的设计设置,包括选择适用于男装或女装的设计,以及选择用于创作的人体模型。",
+ guide2: "选择您要设计的服装性别。",
+ guide3: "在此更改人体模型。",
+ guide4:
+ "您目前可以从我们的系统库中选择人体模型。稍后,您还可以在注册自己的人体模型后从用户库中进行选择。",
+ guide5: "在这里开始您的创意之旅。 ",
+ guide6:
+ "对于情绪板、印花或服装,我们提供三种不同的图片添加方法。第一种选择是
上传,允许您直接从本地设备上传。",
+ guide7:
+ "第二种方法是从您的
收藏中选择。
您可能会注意到您的库页面目前是空的;不必担心。您上传的所有图像都将自动添加到您的库中。将来,您无需每次上传,只需从您的库中选择即可。",
+ guide8: "第三种方法是使用最新的图像生成技术
生成图像。",
+ guide9:
+ "输入捕捉您希望表达的情绪的关键词,然后单击
生成按钮。",
+ guide10: "为您的心情板选择两个图像。",
+ guide11: "点击此处布局您的情绪版。",
+ guide12: "点击这里进入下一步。",
+ guide13: "点击此处生成印花图片。",
+ // guide14:"我们为生成图片提供三个输入选项:仅图片、仅文本和图片文本。",
+ // guide15:"选择此选项,我们将使用您上传的图片和输入的文本生成四张印花图片。",
+ guide16: "在此处选择生成模型;不同的模型将以不同的风格生成图片。",
+ // guide17:"在此处选择生成模型;不同的模型将以不同的风格生成图片。",
+ guide18: "在此处上传输入图片。",
+ // guide19:"点击此图片进行选择。",
+ guide20:
+ "输入关于您希望创建的印花的关键词,然后点击
生成按钮。",
+ guide21: "选择您最喜欢的生成印花。",
+ guide22: "点击此处进行下一步。",
+ guide23: "点击此处从图像中提取主要颜色。",
+ guide24: "从这些颜色块中选择您想要的第一种颜色。",
+ guide25: "点击此块选择第二种颜色。",
+ guide26: "从这些颜色块中选择您想要的颜色。",
+ guide27: "点击此处进行下一步。",
+ guide28: "点击此处生成服装草图。",
+ // guide29:"使用仅文本选项进行生成。",
+ guide30:
+ "输入关于您希望创建的草图的关键词,然后点击
生成按钮。",
+ guide31: "点击此处为生成的草图选择一个类别。",
+ guide32: "为草图选择正确的类别。",
+ guide33: "选择您最喜欢的生成草图。",
+ guide34: "点击此处完成上传过程。",
+ guide35: "点击此处让AI生成设计插图。",
+ guide36: "请稍候几秒钟。",
+ guide37: "点击小红心保存您喜欢的设计。",
+ guide38: "点击“
重新设计”以生成八个新的服装供您选择。",
+ guide39: "点击此处让AI生成设计插图。",
+ guide40: "点击您感兴趣的任何设计图片以修改细节。",
+ guide41: "点击衣服以修改其细节。",
+ guide42: "点击此处添加或更改印花。",
+ guide43: "您可以在收藏中找到您之前上传的印花。",
+ guide44: "为此草图选择一个印花。",
+ guide45: "点击此处布局所选印花。",
+ guide46: "在此处预览印刷设计。",
+ guide47: "在此处保存印刷设计。",
+ guide48: "点击此处完成修改。",
+ guide49: "点击此完成出您刚刚设计的系列。",
+ guide51:
+ "这个界面允许您将设计结果转换为产品图。您可以通过调整文字和相似度来获得理想的效果。点击此产品图进入下一步。",
+ guide52: "点击此处生成产品图。",
+ guide53: "点击此按钮可对产品图应用更多工具。",
+ guide54: "我们可以改变这张图片的光照方向和背景。",
+ guide55: "点击此处生成一张从右侧打光的产品图。",
+ guide56: "如果您喜欢这个结果,可以点击小红心保存。",
+ guide57: "点击此处进入导出页面。",
+ guide58: "您可以将作品分享到作品广场或者导出到本地。",
+ guide50:
+ "您的指南已经完成,现在您可以自由创作。要了解更多见解和细节,请查看我们主页上的演示视频:
https://code-create.com.hk/aida/。您可以随时告诉机器人您想重新开始教程。",
+ },
+ createSlogan: {
+ title: "Create Slogan",
+ Color: "Color",
+ FontAlign: "Font Align",
+ FontStyle: "Font Style",
+ FontFamily: "Font Family",
+ add: "Add",
+ delete: "Delete",
+ submit: "Submit",
+ },
+ newProjectg: {
+ helpYou: "今天我能为您做些什么呢?",
+ Chat: "代理模式",
+ Setting: "手动模式",
+ SeriesDesign: "整身设计",
+ SeriesDesignInfo:
+ "系列设计专注于多品类服装的协调设计,是打造统一时尚系列的理想之选。使用“设计资源”面板中的“情绪板”、“印刷板”、“配色板”、“草图板”和“人体模型”工具,收集和整理您的灵感,打造和谐的服装组合。在“草稿”和“系列”面板中,使用“产品图像”、“重新照明”和“转移姿势”等强大工具,完善您的作品。准备就绪后,将所有内容导出到“画布”以展示完整的系列设计。",
+ SingleDesign: "单品设计",
+ DeepThinking: "深度思考",
+ SingleDesignInfo:
+ "单一设计专注于单一服装类别的独立设计,例如 T 恤、连衣裙或夹克,无需考虑与其他单品的搭配。使用“设计资源”面板中的“情绪板”、“打印板”、“配色板”和“草图板”来收集灵感,并专注于打造一件独一无二的作品。完成后,在“草稿”和“收藏”面板中使用“产品图像”、“重新照明”和“传输姿势”等工具优化您的设计,然后导出到“画布”以展示您的个人作品。",
+ hintListSERIES1: "设计一套以夏日海滩为灵感的连衣裙。",
+ hintListSERIES2: "设计一套暗色系,哥特风格的上衣。",
+ hintListSERIES3: "设计一套男童的无帽夹克设计,要求以森林探险为主题。",
+ hintListSIGNLE1: "设计一套以夏日海滩为灵感的连衣裙。",
+ hintListSIGNLE2: "设设计一套女童连衣裙,田园风格。",
+ hintListSIGNLE3: "设计一套男性短袖衬衫,阳光,活力的感觉。",
+ jsContent1: "文件大小不能超过 5MB。",
+ jsContent2: "您最多只能上传五张图片。",
+ jsContent3: "您最多只能上传一个文件。",
+ },
+ DeReconstruction: {
+ GenerateLineDrawing: "生成线稿图",
+ Download: "下载",
+ Girls: "女童",
+ Boys: "男童",
+ },
+ patternMaking3D: {
+ Clothing: "服装",
+ Print: "印花",
+ TechnicalSketch: "技术草图",
+ front: "前",
+ back: "后",
+ FlatPattern: "展示图",
+ },
+ batchGeneration: {
+ Project: "项目",
+ Search: "搜索",
+ Create: "创建",
+ Rename: "重命名",
+ Review: "查看",
+ Delete: "删除",
+ sequence: "序号",
+ TaskName: "任务名字",
+ TaskType: "任务类型",
+ QuantityGenerated: "生成数量",
+ Quantity: "数量",
+ CreationTime: "创建时间",
+ StartTime: "开始时间",
+ UpdateTime: "结束时间",
+ Status: "状态",
+ Operation: "操作",
+ Keyword: "提示词",
+ CostCredit: "消耗积分",
+ title: "创建批量生成任务",
+ PleaseSelect: "请选择",
+ enterNumber: "请输入数量",
+ },
+ brandDNA: {
+ Addbrand: "创建新品牌",
+ BrandName: "品牌名字",
+ BrandTextarea: "从描述中创建品牌",
+ BrandSlogan: "品牌标语",
+ BrandLogo: "品牌logo",
+ Generate: "生成",
+ Slogan: "标语",
+ Upload: "上传",
+ Delete: "删除",
+ textarea:
+ "请阐述您对这个品牌的看法,我们将帮助您设计出名称、标志以及宣传语。",
+ },
+ chat: {
+ DeepThinking: "深度思考",
+ message: "输入",
+ },
+ Model: {
+ Style: "风格",
+ CurrentModel: "当前模特",
+ all: "全部",
+ },
+ libraryList: {
+ System: "系统",
+ Library: "库",
+ },
+ Canvas: {
+ layer: "图层",
+ createGroup: "创建组",
+ slutionGroup: "解组",
+ deleteLayer: "删除图层",
+ clearSelection: "清除选择",
+ AddPinnedLayer: "添加置顶图层",
+ selectedLayers: "选中的图层数量:",
+ Hint: "提示:按住 Ctrl/Cmd 多选,Shift 范围选择,长按进入多选模式",
+ CollapseUp: "收起组",
+ CollapseDown: "展开组",
+ showGroup: "显示图层",
+ hideGroup: "隐藏图层",
+ showHiddenLayer: "显示/隐藏图层",
+ preview: "预览",
+ EmptyLayer: "空图层",
+ Scale: "缩放",
+ ResetLayer: "重置视图",
+ Help: "查看快捷键和触控操作",
+ width: "宽度",
+ height: "高度",
+ color: "颜色",
+ KeyboardShortcutsOperationGuide: "键盘快捷键 & 操作指南",
+ TheDetectedPlatform: "检测到的平台",
+ BasicOperations: "基础操作",
+ Operation: "操作",
+ ShortcutGesture: "快捷键/手势",
+ viewOperations: "视图操作",
+ toolSwitching: "工具切换",
+ BrushAdjustmentOperation: "笔刷调整",
+ undo: "撤销",
+ Redo: "重做",
+ Copy: "复制",
+ Paste: "粘贴",
+ Cut: "剪切",
+ DeleteSelectedElement: "删除选中元素",
+ MoveCanvas: "移动画布",
+ ZoomCanvas: "缩放画布",
+ MouseWheel: "鼠标滚轮",
+ MacZoomCanvas: "鼠标滚轮 或 触控板缩放手势",
+ SelectionMode: "选择模式",
+ PaintingMode: "绘画模式",
+ EraserMode: "橡皮擦模式",
+ LassoTool: "套索工具",
+ LiquifyTool: "液化工具",
+ DecreaseBrush: "增加笔触大小",
+ IncreaseBrush: "减小笔触大小",
+ Layer1: "图层 1",
+ FixedLayer: "固定图层",
+ Background: "背景",
+ },
+};
diff --git a/src/lang/en.ts b/src/lang/en.ts
index 01fe4420..0e200005 100644
--- a/src/lang/en.ts
+++ b/src/lang/en.ts
@@ -1,1029 +1,1097 @@
export default {
- Header:{
- hello:'hello',
- HOME:'HOME',
- LIBRARY:'LIBRARY',
- HISTORY:'HISTORY',
- WORKS:'GALLERY',
- EVENTS:'EVENTS',
- Events:'Events',
- AdvancedTools:'Advanced tools',
- personal:'Personal Center',
- bindEmail:'bind email',
- logOff:'log off',
- Tutorial:'Tutorial',
- language:'English',
- skip:'skip',
- emailContent:'you have binded email',
- Email:'Email',
- NextStep:'Next step',
- verification:'Enter verification code',
- SentTo:'Sent to',
- Resend:'Resend',
- Credits:'Credits',
- SubscribeNow:'Subscribe now',
- TaskList:'Task List',
- ViewOrders:'View Orders',
- toolsToProduct:'Line Drawing to Product',
- toolsRelight:'Product Image Editing',
- toolsToTransferPose:'Animate Product Image',
- toolsDeReconstruction:'Create Sketches',
- toolsPatternMaking:'3D Pattern Making',
- toolsCanvas:'Canvas',
- NewProject:'New Project',
- Rename:'Rename',
- Setting:'Setting',
- BatchGeneration:'Batch Generation',
- Delete:'Delete',
- onLiked:'Dislike',
- Language:'Language',
- Administrator:'Administrator',
- Affiliate:'Affiliate',
- Tools:'Advanced Tools',
- Type:'Type',
- Filter:'Filter',
- Unfold:'Layout',
- expand:'Expand',
- collapse:'Collapse',
- Size:'Size',
- Small:'Small',
- Large:'Large',
- Medium:'Medium',
- All:'All',
- Design:'Line Drawing',
- Product:'Product',
- PoseTransfer:'Video',
- Today:'Today',
- Yesterday:'Yesterday',
- WithinAWeek:'Within a week',
- Earlier:'Earlier',
- openUpgrade:'Upgrade to Pro',
- pastDue:'You can use these features only after becoming a regular user~',
- jsContent1:'The email format is incorrect',
- jsContent2:'Succeeded in binding the mailbox.',
- jsContent3:`You have not performed any operation for a long time. You must be active;otherwise, you will log out in {numTime} S`,
- },
- allOrder:{
- Time:'Date',
- Serial:'ID',
- Title:'Title',
- PaymentMethods:'Payment Methods',
- Money:'Amount',
- Payment:'Payment',
- State:'State',
- OrderType:'Order Type',
- Receipt:'Receipt',
- Income:'Income',
- Expend:'Expend',
- credits:'Credits',
- changedCredits:'Changed Credits',
- changeEvent:'Change Event',
- createTime:'Create Time',
- },
- payOrder:{
- OrderInformation:'Order Details',
- CreditsInformation:'Points Details',
- },
- exportModel:{
- EditExport:'Edit & Export',
- CanvasSize:'Canvas Size',
- Height:'Height',
- Width:'Width',
- CanvasNav:'Collection',
- CanvasTool:'Canvas Tool',
- Color:'Color',
- Size:'Size',
- Brushwork:'Brush',
- Texture:'Texture',
- FillBack:'Fill & Border',
- Layer:'Layer',
- More:'Adjustments',
- insufficient:'Your points balance is insufficient, if you need to use this feature, please click the top left corner to recharge',
- HDExport:'UpScale',
- Save:'Save',
- Share:'Share',
- Export:'Export',
- SR:'Please select the picture that requires upscale',
- requiresCredits:'Performing upscale image requires a {data} credits',
- Scale:'Scale',
- Cancel:'Cancel',
- size:'Size',
- density:'Density',
- ShortcutKeys:'Shortcut keys',
- Painting:'Painting',
- Eraser:'Eraser',
- Uncheck:'Uncheck',
- Revoke:'Revoke',
- Retreat:'Retreat',
- ReduceBrushSize:'Reduce brush size',
- IncreaseBrushSize:'Increase brush size',
- DrinkingStraw:'Drinking straw',
- Copy:'Copy',
- Paste:'Paste',
- UploadOpenimage:'Upload/Open image',
- jsContent1:"Have you saved your canvas content? If not, please click 'Save' before closing.",
- jsContent2:'We only provide super-resolution capabilities for printboard images.',
- jsContent3:'Your points are less than one SR',
- jsContent4:'Your points balance is insufficient',
- jsContent5:'After super-resolution enhancement, the {str} th image you selected has a resolution exceeding 2048, Please choose a lower magnification level.',
- jsContent6:'Please select the picture that requires upscale',
- jsContent7:'save successfully',
- jsContent8:'Whether to continue editing',
- jsContent9:'Whether you need to automatically crop your canvas excess space',
- jsContent10:'Please select a picture and try again',
- },
- upgradePlan:{
- BuyCredlts:'Buy credits',
- credits:'credits',
- organization:'All credits are shared within the name organization',
- CreditCard:'Credit Card',
- Alipay:'Alipay',
- HongKong:'Hong Kong',
- MainlandChina:'Mainland China',
- Continue:'Continue',
- payment:'Select payment method',
- Cancel:'Cancel',
- Payment:'Payment',
- PurchasePoints:'Purchase points',
- paymentmethod:'select a payment method',
- policy:'By continuing an account, you agree to our',
- policy1:'Terms',
- policy2:'Conditions',
- policy3:' (including the Scope of service) and the ',
- policy4:'Subscription Agreement',
- completed:'Is payment completed',
- hint:'Please keep the window open until the payment is completed. If you are unable to open the payment window, please check your browser settings to see if pop-ups are being blocked.Points may be delayed after successful payment. Please wait 1-3 minutes and click the credits refresh button',
- Back:'Back',
- },
- taskPage:{
- TaskList:'Task List',
- download:'Download',
-
- },
- Habit:{
- Workspace:'Workspace',
- WorkspaceSetting:'Workspace Setting',
- settingWorkspace:'adjust your workspace setting',
- Overall:'Overall',
- Single:'Single',
- System:'System',
- Designer:'Designer',
- Mannequin:'Mannequin',
- Current:'Current',
- User:'User',
- Style:'Style',
- Select:'Select',
- Clear:'Clear',
- ProjectName:'Project name',
- Role:'Role',
- Adult:'Adult',
- Child:'Child',
- Gender:'Gender',
- Male:'Male',
- Female:'Female',
- Brand:'Brand',
- BrandStrength:'Brand DNA Strength',
- Category:'Category',
- Complete:'Complete',
- jsContent1:'Whether to delete the workspace?',
- jsContent2:'Please enter a workbench name',
- jsContent3:"It looks like you've changed the style. Would you like to replace the currently used mannequin with the system-recommended model for this style?",
- },
- RobotAssist:{
- inputContent1:"write a message~",
- jsContent1:"Please enter content",
- jsContent2:"Welcome to AiDA. I am your friendly fashion design assistant. If you have any questions or need assistance, please don't hesitate to ask",
- jsContent3:"I see you might be new here, and I'd love to guide you through a tutorial to help you get acquainted with our new and improved AiDA system. Would you like to start the tutorial now?",
- jsContent4:"You can start the tutorial at any time by simply telling me that you want to.",
- jsContent5:"We need to refresh the page before starting the tutorial. Would you like to start the tutorial now?",
- },
- HomeView:{
- GetStarted:'Get Started',
- Start:'Start',
- Edit:'Edit',
- Reset:'Reset',
- Design:'Design',
- Redesign:'Redesign',
- GeneratedDesign:'Generated Line Drawing',
- elementTitle:'Design Assets',
- recycleBin:'Recycle Bin',
- SelectedDesign:'Design Collection',
- Export:'Export',
- moodboard:"moodboard",
- printboard:"printboard",
- colorboard:"colorboard",
- sketchboard:"sketchboard",
- mannequins:"mannequins",
- masnnequinHint:"The mannequin you use is not matched with the current clothes, which will cause the generated model to not use the selected clothes",
- FinalizeCollection:"complete series",
- jsContent1:'You must choose one or more colors for further process.',
- jsContent2:'You must choose one or more colors for further process.',
- jsContent3:'Failed to export the file',
- jsContent4:'Your subscription will expire in {days} days and {hours} hours. To ensure uninterrupted service, please click here to renew -> ',
- jsContent8:'Renew Subscription.',
- jsContent7:"Friendly Reminder",
- jsContent5:"We're delighted to have you experience AiDA 3.0. Please be aware that some services may be limited during the trial period. If you're ready to fully dive in and enjoy the complete experience, we warmly invite you to subscribe. Just visit ",
- jsContent6:" to get started. Thank you for trying our services!",
- jsContent9:"Are you sure to erase current collection and start over?",
- jsContent10:"Re-created works are not allowed to use 'design', but you can use 'redesign'",
- jsContent11:"By unliking this, all connected posts will be deleted. Are you sure you want to continue?",
- },
- ProductImg:{
- productInput:'Prompt to describe details',
- relightInput:'Enter keywords (e.g. Scene, Location)',
- Finalize:'Finalize',
- SelectCollection:'Line Drawings',
- SelectCollectionRelight:'Product Image',
- DesignSelectCollection:'Select an illustration',
- SelectedDesign:'Selected',
- DesignSelectedDesign:'Selected',
- productImageDrafts:'Generated',
- DesignproductImageDrafts:'Generated',
- Upload:'Upload',
- Similarity:'Similarity',
- SelectionFunction:'Choose Editing Mode',
- Highlight:'Adjust Exposure',
- RelightDirection:'Set Light Direction',
- MagicTools:'To Product lmage Tool',
- relightingTool:'Edit Product Image',
- GenerateProduct:'Generate Product',
- SelectedProduct:'Selected Product',
- Export:'Export',
- moreTitle:'More tools',
- ProductImage:'Product Image',
- Relight:'Relight',
- RightLight:'Right Light',
- LeftLight:'Left Light',
- TopLight:'Top Light',
- BottomLight:'Bottom Light',
- Clear:'Clear',
- jsContent1:'Your changes will be lost if you navigate away from this page. Are you sure you want to leave this page?',
- jsContent2:'Please select at least one picture',
- jsContent3:'One of your images failed to generate. Please try again.',
- },
- poseTransfer:{
- SelectDesign:'Product image',
- Selectpose:'Select pose',
- LikeVideo:'Selected',
- InputVideo:'Generated',
- GeneratedVideo:'Generated Video',
- hint:'change the sketch to realistic photo, the material of the skirt is denim',
- jsContent1:'Video generation will take approximately 3 minutes. Continue?',
- },
- LibraryPage:{
- library:'Library',
- Organize:'Organize',
- Upload:'Upload',
- Generate:'Generate',
- Close:'Cancel',
- Reset:'Reset',
- currently:'You are currently in the {generateLineUp} th position in the queue',
- Delete:'Delete',
- Rename:'Edit',
- Point:'Point',
- inputContent1:'Search by name',
- intersection:'intersection',
- Tag:'Tag:',
- Select:'Search by tag',
- NoLabel:'No Label',
- unionSet:'union set',
- all:'all',
- generated:'All default materials are generated by AiDA',
- ImageOnly:'Image Only',
- TextOnly:'Text Only',
- TextImage:'Text-Image',
- inputContent2:'Input prompt',
- maximumLength:'The entered content exceeds the maximum length.',
- Model1:'Painting Style',
- Model2:'Illustration Style',
- Model3:'Real Style',
- Name:'Name:',
- Category:'Category:',
- inputContent3:'Enter a new name',
- Cancel:'Cancel',
- Sure:'Submit',
- Moodboard:'Moodboard',
- Prints:'Prints',
- Sketches:'Sketches',
- DesignElements:'Design Elements',
- Mannequins:'Mannequins',
- model:'model',
- brandDNA:'Brand DNA',
- jsContent1:'Are you sure to delete this picture?',
- jsContent2:'Are you sure to delete this picture?',
- jsContent3:'You can only upload Image file!',
- jsContent4:'Image must smaller than 5MB!',
- jsContent5:'This picture has been uploaded whether to continue uploading?',
- jsContent6:'The entered content exceeds the maximum length.',
- jsContent7:'Please enter content',
- jsContent8:'upload failed',
- jsContent9:'Please select a picture',
- jsContent10:'Save as New or Overwrite Current Mannequin?',
- jsContent11:'Are you sure about deleting the current brand DNA?',
- jsContent12:'Please deselect first, then try deleting again.',
- jsContent13:'You must select at least one mannequin and no more than four.',
- },
- HistoryPage:{
- History:'History',
- StartDate:'Start Date',
- EndDate:'End Date',
- inputContent1:'Search by collection name',
- Detail:'Detail',
- Rename:'Rename',
- Retrieve:'Retrieve',
- Delete:'Delete',
- inputContent2:'Enter a new name',
- Submit:'Submit',
- CollectionsName:'Collections Name',
- source:'Source',
- UptateTime:'Uptate Time',
- SketchCounts:'Project Name',
- Operations:'Operations',
- jsContent1:'Deleted successfully',
- jsContent2:'Do you really want to delete this collection? ',
- jsContent3:'Change successfully',
- jsContent4:'Image must smaller than 5MB!',
- jsContent5:'This picture has been uploaded whether to continue uploading?',
- jsContent6:'The entered content exceeds the maximum length.',
- jsContent7:'Please enter content',
- },
- ModelPlacement:{
- Registration:'Registration',
- Submit:'Submit',
- Preview:'Preview',
- Back:'Back',
- Restore:'Restore',
- System:'System',
- Library:'Library',
- Point:'Point',
- addPoint:'Add points',
- RemovePoint:'Remove points',
- mannequinHint:'Please change the pure white inside the mannequin for another color to enhance your experience',
- SHOULDER:'SHOULDER',
- WAISTBAND:'WAISTBAND',
- HAND:'HAND',
- jsContent1:"You haven't marked the image yet, and the model will not be uploaded. Are you sure you want to close it?",
- jsContent2:'This picture has been uploaded whether to continue uploading?',
- },
- ModelPlacementMobile:{
- Registration:'Registration',
- Submit:'Submit',
- Preview:'Preview',
- Back:'Back',
- Restore:'Restore',
- System:'System',
- Library:'Library',
- Point:'Point',
- RemovePoint:'Remove Point',
- mannequinHint:'Please change the pure white inside the mannequin for another color to enhance your experience',
- SHOULDER:'SHOULDER',
- WAISTBAND:'WAISTBAND',
- HAND:'HAND',
- jsContent1:"You haven't marked the image yet, and the model will not be uploaded. Are you sure you want to close it?",
- jsContent2:'This picture has been uploaded whether to continue uploading?',
- },
- Upload:{
- Delete:'Delete',
- Maximum2M:'You can upload up to 8 images. Each image must be no larger than 5MB',
- jsContent1:'You can only upload Image file!',
- jsContent2:'Image must smaller than 5MB!',
- jsContent3:'upload failed',
- },
- more:{
- delete:'Delete',
- down:'Download',
- edit:'Modify',
- enlargement:'Enlargement',
- },
- SketchboardUpload:{
- Upload:'Upload',
- Library:'Library',
- Generate:'Generate',
- Close:'Cancel',
- currently:'You are currently in the {generateLineUp} th position in the queue',
- PIN:'PIN',
- Maximum:'Maximum {maxImg} images can be uploaded, Maximum 5MB per image',
- Thumbnail:'Selected sketchboard',
- inputContent1:'Input prompt for image generation',
- maximumLength:'The entered content exceeds the maximum length.',
- GenerateSketch:'Generate Sketch',
- jsContent1:"upload failed",
- jsContent2:"You can only upload Image file!",
- jsContent3:'Image must smaller than 5MB!',
- jsContent4:"Maximum number of allowable file uploads has been exceeded",
- jsContent5:"Please select a picture",
- jsContent6:"The entered content exceeds the maximum length.",
- jsContent7:"Please enter content",
- },
- PrintboardUpload:{
- Upload:'Upload',
- Library:'Library',
- Generate:'Generate',
- Close:'Cancel',
- currently:'You are currently in the {generateLineUp} th position in the queue',
- PIN:'PIN',
- Maximum:'Maximum 16 images can be uploaded, Maximum 5MB per image',
- Thumbnail:'Selected printboard',
- inputContent1:'Input prompt',
- maximumLength:'The entered content exceeds the maximum length.',
- PatternTitle:'Generates repeatable designs that can be fully tiled across garments.',
- LogoTitle:'Creates standalone graphic designs that can be placed individually or tiled.',
- SloganTitle:'Produces artistic typography for text, suitable for various slogans or phrases.',
- jsContent1:"You can only upload Image file!",
- jsContent2:'Image must smaller than 5MB!',
- jsContent3:"Maximum number of allowable file uploads has been exceeded",
- jsContent4:"Please select a picture",
- jsContent5:"The entered content exceeds the maximum length.",
- jsContent6:"Please enter content",
- jsContent7:"Please ensure all required fields are filled out",
- },
- ColorboardUpload:{
- Thumbnail:'Thumbnail preview of selected colors',
- Clear:'Clear',
- Palette:'Palette',
- HEX:'HEX',
- RGBA:'RGBA',
- UploadImage:'Extract main colors',////////////
- ColorCode:'Color Code',
- SelectSuccessively:'Successive',
- SelectSuccessivelyOnTitle:'Enable successive color selection.',
- SelectSuccessivelyOffTitle:'Disable successive color selection.',
- SelectSeparately:'Select Separately',
- ExtractColor:'Extract Color',
- Single:'Single',
- Gradual:'Gradual',
- Alignment:'Alignment',
- uploadTitle:'Upload image from local file',
- selectTitle:'Choose image from moodboard or printboard',
- jsContent1:"Your browser does not support it",
- jsContent2:"Can't find the TCX color",
- jsContent3:"You can only upload Image file!",
- jsContent4:'Image must smaller than 5MB!',
- jsContent5:"Please enter the correct TCX value",
- jsContent6:"Please select at least one mood plate or print",
- },
- selectImgList:{
- SelectImg:' Select image for main color extraction',
- Clear:'Close',
- },
- MoodboardUpload:{
- Upload:'Upload',
- Library:'Library',
- Generate:'Generate',
- Delete:'Delete',
- Maximum:'You can upload up to 8 images. Each image must be no larger than 5MB',
- Thumbnail:'Selected moodboard',
- layout:'Layout',
- selected:'Layout of selected moodboard',
- Edit:'Edit',
- jsContent1:'You can select up to 8 images',
- jsContent2:"upload failed",
- jsContent3:"You can only upload Image file!",
- jsContent4:'Image must smaller than 5MB!',
- jsContent5:'Please click Layout to sort randomly',
- },
- Cropper:{
- Cutpicture:'Crop image',
- Finish:'Finish',
- Cancel:'Cancel',
- CropPreview:'Crop Preview',
- },
- Material:{
- inputContent1:'Please enter name to search',
- PIN:'PIN',
- },
- MarketingSketchUpload:{
- Upload:'Upload',
- MyLibrary:'My Library',
- maximumLength:'Maximum 15 images can be uploaded, Maximum 5MB per image',
- jsContent1:'upload failed',
- jsContent2:"You can only upload Image file!",
- jsContent3:'Image must smaller than 5MB!',
- jsContent5:'Maximum number of allowable file uploads has been exceeded',
- },
- layout:{
- MoodBoardDesign:'MoodBoard Design',
- LayerOptions:'Layer Options',
- Submit:'Submit',
- },
- Generate:{
- ImageOnly:'Image Only',
- TextOnly:'Text Only',
- TextImage:'Text-Image',
- Model1:'Painting Style',
- Model2:'Illustration Style ',
- Model3:'Real Style',
- inputContent1:'Input prompt',
- Generate:'Generate',
- Sequence:'Sequence',
- Close:'Cancel',
- currently:'You are currently in the {generateLineUp} th position in the queue',
- Merge:'Merge',
- maximumLength:'The entered content exceeds the maximum length.',
- effectPoor:'The quality of the generated images currently falls below standard. Please consider adjusting your prompt and trying again.',
- everyTimeEffectPoor:'One generated image falls below quality thresholds. Modify your text prompt and regenerate.',
- Model:'Model',
- uploadTitle:'Upload reference image',
- uploadproduct:'Upload product picture',
- style:'Style',
- referenceImage:'Reference Image',
- sloganTitle:'Input text content',
- jsContent1:"You can only upload Image file!",
- jsContent2:'Image must smaller than 5MB!',
- jsContent3:"Please enter content",
- jsContent4:'The entered content exceeds the maximum length.',
- jsContent5:"Please enter content",
- jsContent6:"You can select up to 8 images",
- jsContent7:"upload failed",
- jsContent8:"You have {num} remaining opportunity to generate {str}.",
- jsContent9:"You have exhausted your generation opportunities {str}.",
- jsContent10:"Please complete the slogan picture",
- jsContent11:"See the input content may overlap, overlap will affect the final effect oh",
- jsContent12:"Complete at least one slogan",
- },
- collectionModal:{
- Moodboard:'Moodboard',
- Printboard:'Printboard',
- Colorboard:'Colorboard',
- Sketchboard:'Sketchboard',
- Mannequin:'Mannequin',
- Mannquinboard:'Mannquinboard',
- MoodCollection:'select moodboard for your collection',
- PrinCollection:'select printboard for your collection',
- ColorCollection:'select colors for your collection',
- SketchCollection:'select sketchboard for your collection',
- jsContent1:"Since you have selected multiple images, please click 'Layout' to proceed.",
- jsContent2:'The uploaded files will not be saved, being sure to continue? ',
- jsContent3:'You must choose one or more colors for further process.',
- jsContent5:"We've detected that the number of pins on your ({str}) exceeds eight, which may result in some pinned items not being used. Would you like to continue anyway?",
- },
- DesignDetail:{
- Details:'Details',
- EditDetails:'Edit the details of your design',
- editTitle:'Modify item',
- DetailTitle:'Deleta item',
- compareTitle:'Compare',
- Submit:'Submit',
- CurrentApparel:'Current Apparel',
- editSketchTitle:'Modify sketch',
- CurrentPrint:'Current Print',
- CurrentColor:'Current Color',
- CurrentElements:'Current Elements',
- },
- DesignDetailAlter:{
- current:'Selected',
- inProject:'In-Project',
- Upload:'Upload',
- Library:'Library',
- inputContent1:'Please input',
- Palette:'Palette',
- HEX:'HEX',
- RGBA:'RGBA',
- UploadImage:'Upload Image',////////////
- Delete:'Delete',
- ColorCode:'Color Code',
- jsContent1:"Your browser does not support it",
- jsContent2:"You can select up to 8 images",
- jsContent3:"upload failed",
- jsContent4:'You can only upload Image file!',
- jsContent5:'Image must smaller than 5MB!',
- jsContent6:"Can't find the TCX color",
- jsContent7:"Please choose a color first.",
- },
- addDetails:{
- AddDetails:'Add Details',
- submit:'Submit',
- jsContent1:'Please draw at least one line segment',
- },
- DesignDetailEnd:{
- NewApparel:'New Apparel',
- NewPrint:'New Print',
- Placement:'Placement',
- Overall:'Overall',
- Single:'Single',
- NewColor:'New Color',
- preview:'Preview',
- Layout:'Layout',
- jsContent1:'Please select print',
- jsContent2:'Please choose a color',
- },
- DesignPrintOperation:{
- Placement:'Placement',
- Overall:'Overall',
- Single:'Single',
- Scale:'Scale',
- Random:'Random',
- inputContent:'Please input',
- Preview:'Preview',
- Submit:'Submit',
- isOverall:'Pattern images cannot be used in Single mode',
- Apparel:'Apparel',
- Print:'Print',
- Color:'Color',
- Elements:'Elements',
- Model:'Model',
- CurrentSketch:'Current Sketch',
- CurrentPrint:'Current Print',
- CurrentColor:'Current Color',
- Colorpelette:'Color Pelette',
- Colorfromimage:'Choose color from image',
- ColorCode:'Color Code',
- ExtractColor:'Extract Color',
- CurrentElement:'Current Element',
- CurrentModel:'Current Model',
- NewApparel:'New Apparel',
- NewPrint:'New Print',
- NewModel:'New Model',
- jsContent1:'The above changes are not saved. Are you sure you want to continue? ',
- },
- uploadFile:{
- jsContent1:'You can select up to {maxImg} images',
- },
- isTest:{
- available:"This feature is not available to trial users",
- src:"This function is not open to trial users, if you need to subscribe, please visit ",
- userName:'Trial User',
- loginIsTest:"You are a trial user, Probation period until{date}. For the security of users' data, we do not save any personal data uploaded by trial users, and will erase personal data after each logout. if you need to subscribe, please click ->",
- image:'Because you are a trial user, you can only upload 10 images'
- },
- setLabel:{
- EditTag:'Edit Tag',
- jsContent1:'Please enter a tag name',
- },
- works:{
- WORKS:'Gallery',
- all:'All',
- FavoriteWorks:'My Likes',
- MyWorks:'My Works',
- RCAworkshop_2024:'AiDA Workshop 2024',
- NewYear_2025:'NewYear 2025',
- },
- Publish:{
- Publish:'Share',
- CoverPicture:'Cover Picture',
- CollectionTitle:'Share to gallery Title',
- topic:'Topic',
- Description:'Description',
- Permissions:'Permissions',
- PermissionsItem1:'Allow other users to perform secondary creation.',
- Close:'Cancel',
- UpdatePublish:'Update Publish',
- jsContent1:'Are you sure to leave this page? Your changes are not saved. ',
- jsContent2:'Please enter the name of your work',
- jsContent3:'This will publish your work to the square for all users to see. Please confirm whether to publish?',
- jsContent4:'Release success! You can find it in my work',
- },
- newScaleImage:{
- Collection:'Collection',
- SecondaryCreation:'Secondary Creation',
- Follow:'Following',
- Unfollow:'Unfollow',
- CreationTime:'CreationTime',
- UpdateTime:'UpdateTime',
- Comment:'Comment',
- NoComments:'No Comments',
- first:'You can be the first!',
- reply:'Reply',
- unfold:'Expand',
- Original:'Original',
- from:'Derived from',
- Title:'Title',
- Delete:'Delete',
- Describe:'Describe',
- Collapse:'Collapse',
- replyAll:'All replies',
- jsContent1:'Please log in or upgrade to an official user',
- jsContent2:'The author is not allowed to use it',
- jsContent3:'Please enter a comment',
- jsContent4:'Do you need to delete this comment',
- jsContent5:'Whether to delete the current gallery',
- jsContent6:'The author deleted the work',
- },
- scaleImage:{
- overlayOrNot:'Whether to overwrite the current picture',
- submitCanvas:'Canvas content is not saved, whether to continue',
- cover:'Save the generated content as a new design?',
- },
- account:{
- personCentered:'Account',
- back:'Back',
- frontPage:'Front Page',
- Home:'Home',
- Messages:'Messages',
- Follow:'Following',
- Fans:'Followers',
- editUser:'Change Information',
- notModifiable:'Not modifiable',
- remainingModifications:'Remaining this month:',
- Country:'Country',
- CompanyName:'Occupation',
- //account首页
- myInfor:'My Info',
- bindWeChat:'Link WeChat/Gmail',
- cancel:'Cancel Subscription Renewal',
- //编辑个人信息页
- userName:'User Name',
- email:'Email',
- Submit:'Submit',
- UpdateAvatar:'Update Avatar',
- information:'Bind personal information',
- ModifyEmail:'Modify Email',
- Email:'Email',
- plaseEmail:'Enter your email address',
- plaseCountry:'Please select country',
- plaseCompanyName:'Please enter occupation',
- Name:'Name',
- plaseSelectSex:'Please select',
- plaseFirst:'Please enter First',
- plaseLast:'Please enter Last',
- Mr:'Mr',
- Ms:'Ms',
- Miss:'Miss',
- //消息
- systemMessages:'System Notifications',
- comment:'Comment',
- like:'Like',
- NewFans:'New Followers',
- AllRead:'All read',
- dataNull:'No New Messages~',
- reply:'commented on your work',
- followedYou:'followed you',
- likedYourWork:'liked your work',
- FollowFans:'Follow Fans',
- //互动
- Interact:'interact',
- hisWorks:'His works',
- works:'Works',
- //取消
- jsContent1:'Too expensive',
- jsContent2:'Sytem not user friendly',
- jsContent3:'Too Slowy',
- jsContent4:'Difficult to edit',
- jsContent5:'Insufficlent Tutorial/Support',
- jsContent6:'Unable to generate what you need',
- jsContent7:'Please enter occupation',
- jsContent8:'Please select a country',
- jsContent9:'Please select a title',
- jsContent10:'Please enter surname',
- jsContent11:'Please enter givenName',
- jsContent12:'The email format is incorrect',
- },
- frontPage:{
- BindWechat:'Bind Wechat',
- Unbound:'Unbound',
- BindNow:'Bind Now',
- Unbind:'Unbind',
- BindGmail:'Bind Gmail',
- ModifyEmail:'Modify Email',
- Modify:'Modify',
- jsContent1:'Successful discharge',
- jsContent2:'The current network cannot load Google',
- },
- Renew:{
- title:'Find Your Ideal Plan',
- Monthly:'Monthly',
- Yearly:'Yearly',
- promotionCode:'Coupon',
- use:'Apply',
- PromoCodeError:'Please check if the promo code is correct or if the date has expired',
- CreditCard:'Credit Card',
- Alipay:'Alipay',
- Payment:'Payment method',
- PleaseSelectPayment:'Please select a payment method',
- SubscribeNow:'Subscribe Now',
- PersonalVersion:'Personal version',
- HKDMonth:'HKD / Month',
- HKDYear:'HKD / Year',
- automatically:'Whether to renew automatically',
- activity1:'Limited time offer, today only!',
- Strengths:'Our Core Strengths',
- StrengthsTitle1:'Unlimited',
- StrengthsTitle1_1:'creativity',
- StrengthsInfo1:'Generate ideas in minutes,',
- StrengthsInfo1_1:'not hours.',
- StrengthsTitle2:'Sustainable &',
- StrengthsTitle2_1:'Cost-efficient',
- StrengthsInfo2:'Streamline your process,',
- StrengthsInfo2_1:'reduce waste.',
- StrengthsTitle3:'AI design tool',
- StrengthsTitle3_1:'for all levels',
- StrengthsInfo3:'Easy to use with powerful AI features',
- StrengthsInfo3_1:'to make design accessible and',
- StrengthsInfo3_2:'efficient for everyone.',
- StrengthsTitle4:'From Idea',
- StrengthsTitle4_1:'to Garment',
- StrengthsInfo4:'Support your entire',
- StrengthsInfo4_1:'fashion design journey.',
- unlimited:'Subscribe Now!',
- },
- cancelRenewal:{
- cancelling:'What is your reason for cancelling AiDA?',
- subscription:'You’re about to cancel your subscription',
- looseDate:'You will loose all your date',
- looseCustomizations:'You will loose your settings and customizations',
- DonWorry:'Don’t worry! The data you have in AiDA will be safe.',
- Continue:'Continue to renew',
- cancel:'Yes,cancel it',
- subscriptionRenewal:'There are no subscription plans with automatic renewal.',
- },
- guide:{
- guide1:"You can personalize your design settings right here in the
Workspace, including choosing to design for men's or women's wear, as well as selecting the mannequin to use for your creations.",
- guide2:"Select the apparel type you'd like to work on.",
- guide3:'Change the mannequin here.',
- guide4:'You can currently select a mannequin from our system library. Later, you can also choose from the user library after registering your own mannequin.',
- guide5:'Begin your creative journey here. ',
- guide6:'For the Moodboard, Printboard, or Sketchboard, we provide three different sourcing methods to add images. The first option is
Upload, allowing you to
upload directly from your local device.',
- guide7:"The second method is to select from your
Library.
You might notice that your library page is currently empty; there's no need to worry. All the images you upload will be automatically added to your library. In the future, you won't have to upload each time—you can simply choose from your library instead.",
- guide8:'The third method is to
Generate images using the latest Image Generation technology.',
- guide9:"Enter keywords that capture the mood you wish to express and then click the
Low Quality button.",
- guide10:'Select two images for your moodboard.',
- guide11:"Click here to layout your moodboard.",
- guide12:"Click here for next step.",
- guide13:"Click here to generate print images.",
- // guide14:"We provide three input options for generating images: Image Only, Text Only, and Text-Image.",
- // guide15:"Select this option and we will generate four print images using both the picture you upload and the text you enter.",
- guide16:"Choose a generation model here; different models will generate images in various styles.",
- // guide17:"Choose a generation model here; different models will generate images in various styles.",
- guide18:"Upload the input picture here.",
- // guide19:"Click on this image to select it.",
- guide20:"Enter keywords about the print you wish to create and then click the
Generate button.",
- guide21:"Select the generated prints you like best.",
- guide22:"Click here for next step.",
- guide23:"Click here to extract primary colors from image.",
- guide24:"Select the color you want from these color blocks as the first color.",
- guide25:"Click on this block to select the second color.",
- guide26:"Choose the color you want from these color blocks.",
- guide27:"Click here for next step.",
- guide28:"Click here to generate clothing sketches.",
- // guide29:"Using text only option for generation.",
- guide30:"Enter keywords about the sketch you wish to create and then click the
Generate button.",
- guide31:"Click here to choose a category for the generated sketch.",
- guide32:"Choose correct category for the sketch.",
- guide33:"Select the generated sketches you like best.",
- guide34:"Cick here to complete the uploading process.",
- guide35:"Click here to let AI generate design illustrations.",
- guide36:"Please wait a few seconds.",
- guide37:"Click the little red heart to save your favorite design.",
- guide38:"Click '
Redesign' to generate eight new outfits for your collection to choose from.",
- guide39:"Click here to let AI generate design illustrations.",
- guide40:"Click on any design image you are interested in to modify the details.",
- guide41:"Click on the clothes to modify its details.",
- guide42:"Click here to add or change the print.",
- guide43:"You can find the print you uploaded earlier in your Library.",
- guide44:"Select a print for this sketch.",
- guide45:"Click here to layout the selected print",
- guide46:"Preview printed design here.",
- guide47:"Save printed design here.",
- guide48:"Click here to finalize your modification.",
- guide49:"Click here to access the finalize page.",
- guide51:"This interface allows you to transform design results into product images. You can achieve your desired effect by adjusting the text and similarity. Click this product image to proceed to the next step.",
- guide52:"Click here to generate the product image.",
- guide53:"Click this button to apply more tools to the product image. ",
- guide54:"We can adjust the lighting and background of this image. ",
- guide55:"Click here to generate a product image with lighting from the right side.",
- guide56:"If you like this result, click the little heart to save it.",
- guide57:"Click here to go to the export page. ",
- guide58:"You can share your work to the gallery or export to your local device.",
- guide50:"Your guide is complete, and now the canvas is yours to create freely. For more insights and details, check out our demo video on the homepage at
https://code-create.com.hk/aida/You can restart the tutorial at any time by simply telling the robot that you want to.",
- },
- createSlogan:{
- title:'Create Slogan',
- Color:'Color',
- FontAlign:'Font Align',
- FontStyle:'Font Style',
- FontFamily:'Font Family',
- add:'Add',
- delete:'Delete',
- submit:'Submit',
- },
- newProjectg:{
- helpYou:'How can I help you today?',
- Chat:'Agent Mode',
- Setting:'Manual Mode',
- SeriesDesign:'Overall illustrantion design',
- SeriesDesignInfo:'Series Design focuses on the coordinated design of multi-category clothing, ideal for creating a unified fashion collection. Gather and arrange your inspiration using the Moodboard, Printboard, Colorboard, Sketchboard, and Mannequin tools in the Design Assets panel to build harmonious outfit combinations. Refine your creations in the Draft and Collection panels using powerful tools like To Product Image, Relight, and Transfer Pose. When you’re ready, export everything to the Canvas to display your complete series design.',
- SingleDesign:'Single item design',
- DeepThinking:'Deep Thinking',
- SingleDesignInfo:'Single Design focuses on creating an individual clothing item, such as a T-shirt, dress, or jacket, without coordinating it with other pieces. Use the Moodboard, Printboard, Colorboard, and Sketchboard sections in the Design Assets panel to gather inspiration and develop a unique design. Once finished, refine your work in the Draft and Collection panels using tools like To Product Image, Relight, and Transfer Pose, then export to the Canvas to showcase your standalone creation. ',
- hintListSERIES1:'Design a collection of futuristic clothes, deep purple color scheme.',
- hintListSERIES2:'Design a set of bright-colored, Bohemian-style dresses.',
- hintListSERIES3:'Design a set of hip-hop street style denim jackets for boys.',
- hintListSIGNLE1:'A silver-gray, steampunk-style windbreaker.',
- hintListSIGNLE2:'Design a set of skirts in bright colors and ethnic styles.',
- hintListSIGNLE3:'Design a set of bright-colored, Bohemian-style dresses.',
- jsContent1:'The file size cannot exceed 5MB.',
- jsContent2:'You can only upload five pictures.',
- jsContent3:'You can only upload one file.',
- },
- DeReconstruction:{
- GenerateLineDrawing:'Generate Line Drawing',
- Download:'Download',
- Girls:"Girls' Fashion",
- Boys:"Boys' Fashion",
- },
- patternMaking3D:{
- Clothing:'Clothing',
- Print:'Print',
- TechnicalSketch:'Technical sketch',
- front:'Front',
- back:'Back',
- FlatPattern:'Flat pattern',
- },
- batchGeneration:{
- Project:'Project',
- Search:'Search',
- Create:'Create',
- Rename:'Rename',
- Review:'Review',
- Delete:'Delete',
- sequence:'Sequence',
- TaskName:'Task Name',
- TaskType:'Task Type',
- QuantityGenerated:'Quantity',
- Quantity:'Quantity',
- CreationTime:'Created Time',
- StartTime:'Start Time',
- UpdateTime:'Update Time',
- Status:'Status',
- Keyword:'Keyword',
- CostCredit:'Cost credit',
- Operation:'Actions',
- title:'Create Batch Generation Tasks',
- PleaseSelect:'Please select',
- enterNumber:'Please enter number',
- },
- brandDNA:{
- Addbrand:'Create new brand',
- BrandName:'Brand Name',
- BrandTextarea:'Generating brand from description',
- BrandSlogan:'Brand Slogan',
- BrandLogo:'Brand Logo',
- Generate:'Generate',
- Slogan:'Slogan',
- Upload:'Upload',
- Delete:'Delete',
- textarea:'Please enter your thoughts about this brand, and we will help you generate the name, logo, and slogan.',
- },
- chat:{
- DeepThinking:'Deep Thinking',
- message:'Write your message',
- },
- Model:{
- Style:'Style',
- CurrentModel:'Current Model',
- all:'All',
- },
- libraryList:{
- System:'System',
- Library:'Library',
- },
- Canvas:{
- layer:'Layer',
- createGroup:'Create Group',
- slutionGroup:'Slution Group',
- deleteLayer:'Delete Layer',
- clearSelection:'Clear Selection',
- AddPinnedLayer:'Add a pinned layer',
- selectedLayers:'The number of selected layers:',
- Hint:'Hint: Hold down Ctrl/Cmd for multiple selections, Shift for range selection, and long press to enter the multiple selection mode',
- CollapseUp:'Collapse Up',
- CollapseDown:'Collapse Down',
- showGroup:'Show Layer',
- hideGroup:'Hidden Layer',
- showHiddenLayer:'Show/Hidden Layer',
- preview:'Preview',
- EmptyLayer:'Empty layer',
- Scale:'Scale',
- ResetLayer:'Reset Layer',
- Help:'View the shortcut keys and touch operations',
- width:'Width',
- height:'Height',
- color:'Color',
- KeyboardShortcutsOperationGuide:'Keyboard shortcuts & Operation guide',
- TheDetectedPlatform:'Guide Detected Platform',
- BasicOperations:'Basic Operations',
- Operation:'Operation',
- ShortcutGesture:'Shortcut/Gesture',
- viewOperations:'View Operations',
- toolSwitching:'Tool Switching',
- BrushAdjustmentOperation:'Brush Adjustment Operation',
- Undo:'Undo',
- Redo:'Redo',
- Copy:'Copy',
- Paste:'Paste',
- Cut:'Cut',
- DeleteSelectedElement:'Delete Selected Element',
- MoveCanvas:'Move Canvas',
- ZoomCanvas:'Zoom Canvas',
- MouseWheel:'Mouse Wheel',
- MacZoomCanvas:'Mouse scroll wheel or touchpad zoom gesture',
- SelectionMode:'Selection Mode',
- PaintingMode:'Painting Mode',
- EraserMode:'Eraser Mode',
- LassoTool:'Lasso Tool',
- LiquifyTool:'Liquify Tool',
- DecreaseBrush:'Decrease Brush',
- IncreaseBrush:'Increase Brush',
- Layer1:'Layer 1',
- }
-}
+ Header: {
+ hello: "hello",
+ HOME: "HOME",
+ LIBRARY: "LIBRARY",
+ HISTORY: "HISTORY",
+ WORKS: "GALLERY",
+ EVENTS: "EVENTS",
+ Events: "Events",
+ AdvancedTools: "Advanced tools",
+ personal: "Personal Center",
+ bindEmail: "bind email",
+ logOff: "log off",
+ Tutorial: "Tutorial",
+ language: "English",
+ skip: "skip",
+ emailContent: "you have binded email",
+ Email: "Email",
+ NextStep: "Next step",
+ verification: "Enter verification code",
+ SentTo: "Sent to",
+ Resend: "Resend",
+ Credits: "Credits",
+ SubscribeNow: "Subscribe now",
+ TaskList: "Task List",
+ ViewOrders: "View Orders",
+ toolsToProduct: "Line Drawing to Product",
+ toolsRelight: "Product Image Editing",
+ toolsToTransferPose: "Animate Product Image",
+ toolsDeReconstruction: "Create Sketches",
+ toolsPatternMaking: "3D Pattern Making",
+ toolsCanvas: "Canvas",
+ NewProject: "New Project",
+ Rename: "Rename",
+ Setting: "Setting",
+ BatchGeneration: "Batch Generation",
+ Delete: "Delete",
+ onLiked: "Dislike",
+ Language: "Language",
+ Administrator: "Administrator",
+ Affiliate: "Affiliate",
+ Tools: "Advanced Tools",
+ Type: "Type",
+ Filter: "Filter",
+ Unfold: "Layout",
+ expand: "Expand",
+ collapse: "Collapse",
+ Size: "Size",
+ Small: "Small",
+ Large: "Large",
+ Medium: "Medium",
+ All: "All",
+ Design: "Line Drawing",
+ Product: "Product",
+ PoseTransfer: "Video",
+ Today: "Today",
+ Yesterday: "Yesterday",
+ WithinAWeek: "Within a week",
+ Earlier: "Earlier",
+ openUpgrade: "Upgrade to Pro",
+ pastDue: "You can use these features only after becoming a regular user~",
+ jsContent1: "The email format is incorrect",
+ jsContent2: "Succeeded in binding the mailbox.",
+ jsContent3: `You have not performed any operation for a long time. You must be active;otherwise, you will log out in {numTime} S`,
+ },
+ allOrder: {
+ Time: "Date",
+ Serial: "ID",
+ Title: "Title",
+ PaymentMethods: "Payment Methods",
+ Money: "Amount",
+ Payment: "Payment",
+ State: "State",
+ OrderType: "Order Type",
+ Receipt: "Receipt",
+ Income: "Income",
+ Expend: "Expend",
+ credits: "Credits",
+ changedCredits: "Changed Credits",
+ changeEvent: "Change Event",
+ createTime: "Create Time",
+ },
+ payOrder: {
+ OrderInformation: "Order Details",
+ CreditsInformation: "Points Details",
+ },
+ exportModel: {
+ EditExport: "Edit & Export",
+ CanvasSize: "Canvas Size",
+ Height: "Height",
+ Width: "Width",
+ CanvasNav: "Collection",
+ CanvasTool: "Canvas Tool",
+ Color: "Color",
+ Size: "Size",
+ Brushwork: "Brush",
+ Texture: "Texture",
+ FillBack: "Fill & Border",
+ Layer: "Layer",
+ More: "Adjustments",
+ insufficient:
+ "Your points balance is insufficient, if you need to use this feature, please click the top left corner to recharge",
+ HDExport: "UpScale",
+ Save: "Save",
+ Share: "Share",
+ Export: "Export",
+ SR: "Please select the picture that requires upscale",
+ requiresCredits: "Performing upscale image requires a {data} credits",
+ Scale: "Scale",
+ Cancel: "Cancel",
+ size: "Size",
+ density: "Density",
+ ShortcutKeys: "Shortcut keys",
+ Painting: "Painting",
+ Eraser: "Eraser",
+ Uncheck: "Uncheck",
+ Revoke: "Revoke",
+ Retreat: "Retreat",
+ ReduceBrushSize: "Reduce brush size",
+ IncreaseBrushSize: "Increase brush size",
+ DrinkingStraw: "Drinking straw",
+ Copy: "Copy",
+ Paste: "Paste",
+ UploadOpenimage: "Upload/Open image",
+ jsContent1:
+ "Have you saved your canvas content? If not, please click 'Save' before closing.",
+ jsContent2:
+ "We only provide super-resolution capabilities for printboard images.",
+ jsContent3: "Your points are less than one SR",
+ jsContent4: "Your points balance is insufficient",
+ jsContent5:
+ "After super-resolution enhancement, the {str} th image you selected has a resolution exceeding 2048, Please choose a lower magnification level.",
+ jsContent6: "Please select the picture that requires upscale",
+ jsContent7: "save successfully",
+ jsContent8: "Whether to continue editing",
+ jsContent9:
+ "Whether you need to automatically crop your canvas excess space",
+ jsContent10: "Please select a picture and try again",
+ },
+ upgradePlan: {
+ BuyCredlts: "Buy credits",
+ credits: "credits",
+ organization: "All credits are shared within the name organization",
+ CreditCard: "Credit Card",
+ Alipay: "Alipay",
+ HongKong: "Hong Kong",
+ MainlandChina: "Mainland China",
+ Continue: "Continue",
+ payment: "Select payment method",
+ Cancel: "Cancel",
+ Payment: "Payment",
+ PurchasePoints: "Purchase points",
+ paymentmethod: "select a payment method",
+ policy: "By continuing an account, you agree to our",
+ policy1: "Terms",
+ policy2: "Conditions",
+ policy3: " (including the Scope of service) and the ",
+ policy4: "Subscription Agreement",
+ completed: "Is payment completed",
+ hint: "Please keep the window open until the payment is completed. If you are unable to open the payment window, please check your browser settings to see if pop-ups are being blocked.Points may be delayed after successful payment. Please wait 1-3 minutes and click the credits refresh button",
+ Back: "Back",
+ },
+ taskPage: {
+ TaskList: "Task List",
+ download: "Download",
+ },
+ Habit: {
+ Workspace: "Workspace",
+ WorkspaceSetting: "Workspace Setting",
+ settingWorkspace: "adjust your workspace setting",
+ Overall: "Overall",
+ Single: "Single",
+ System: "System",
+ Designer: "Designer",
+ Mannequin: "Mannequin",
+ Current: "Current",
+ User: "User",
+ Style: "Style",
+ Select: "Select",
+ Clear: "Clear",
+ ProjectName: "Project name",
+ Role: "Role",
+ Adult: "Adult",
+ Child: "Child",
+ Gender: "Gender",
+ Male: "Male",
+ Female: "Female",
+ Brand: "Brand",
+ BrandStrength: "Brand DNA Strength",
+ Category: "Category",
+ Complete: "Complete",
+ jsContent1: "Whether to delete the workspace?",
+ jsContent2: "Please enter a workbench name",
+ jsContent3:
+ "It looks like you've changed the style. Would you like to replace the currently used mannequin with the system-recommended model for this style?",
+ },
+ RobotAssist: {
+ inputContent1: "write a message~",
+ jsContent1: "Please enter content",
+ jsContent2:
+ "Welcome to AiDA. I am your friendly fashion design assistant. If you have any questions or need assistance, please don't hesitate to ask",
+ jsContent3:
+ "I see you might be new here, and I'd love to guide you through a tutorial to help you get acquainted with our new and improved AiDA system. Would you like to start the tutorial now?",
+ jsContent4:
+ "You can start the tutorial at any time by simply telling me that you want to.",
+ jsContent5:
+ "We need to refresh the page before starting the tutorial. Would you like to start the tutorial now?",
+ },
+ HomeView: {
+ GetStarted: "Get Started",
+ Start: "Start",
+ Edit: "Edit",
+ Reset: "Reset",
+ Design: "Design",
+ Redesign: "Redesign",
+ GeneratedDesign: "Generated Line Drawing",
+ elementTitle: "Design Assets",
+ recycleBin: "Recycle Bin",
+ SelectedDesign: "Design Collection",
+ Export: "Export",
+ moodboard: "moodboard",
+ printboard: "printboard",
+ colorboard: "colorboard",
+ sketchboard: "sketchboard",
+ mannequins: "mannequins",
+ masnnequinHint:
+ "The mannequin you use is not matched with the current clothes, which will cause the generated model to not use the selected clothes",
+ FinalizeCollection: "complete series",
+ jsContent1: "You must choose one or more colors for further process.",
+ jsContent2: "You must choose one or more colors for further process.",
+ jsContent3: "Failed to export the file",
+ jsContent4:
+ "Your subscription will expire in {days} days and {hours} hours. To ensure uninterrupted service, please click here to renew -> ",
+ jsContent8: "Renew Subscription.",
+ jsContent7: "Friendly Reminder",
+ jsContent5:
+ "We're delighted to have you experience AiDA 3.0. Please be aware that some services may be limited during the trial period. If you're ready to fully dive in and enjoy the complete experience, we warmly invite you to subscribe. Just visit ",
+ jsContent6: " to get started. Thank you for trying our services!",
+ jsContent9: "Are you sure to erase current collection and start over?",
+ jsContent10:
+ "Re-created works are not allowed to use 'design', but you can use 'redesign'",
+ jsContent11:
+ "By unliking this, all connected posts will be deleted. Are you sure you want to continue?",
+ },
+ ProductImg: {
+ productInput: "Prompt to describe details",
+ relightInput: "Enter keywords (e.g. Scene, Location)",
+ Finalize: "Finalize",
+ SelectCollection: "Line Drawings",
+ SelectCollectionRelight: "Product Image",
+ DesignSelectCollection: "Select an illustration",
+ SelectedDesign: "Selected",
+ DesignSelectedDesign: "Selected",
+ productImageDrafts: "Generated",
+ DesignproductImageDrafts: "Generated",
+ Upload: "Upload",
+ Similarity: "Similarity",
+ SelectionFunction: "Choose Editing Mode",
+ Highlight: "Adjust Exposure",
+ RelightDirection: "Set Light Direction",
+ MagicTools: "To Product lmage Tool",
+ relightingTool: "Edit Product Image",
+ GenerateProduct: "Generate Product",
+ SelectedProduct: "Selected Product",
+ Export: "Export",
+ moreTitle: "More tools",
+ ProductImage: "Product Image",
+ Relight: "Relight",
+ RightLight: "Right Light",
+ LeftLight: "Left Light",
+ TopLight: "Top Light",
+ BottomLight: "Bottom Light",
+ Clear: "Clear",
+ jsContent1:
+ "Your changes will be lost if you navigate away from this page. Are you sure you want to leave this page?",
+ jsContent2: "Please select at least one picture",
+ jsContent3: "One of your images failed to generate. Please try again.",
+ },
+ poseTransfer: {
+ SelectDesign: "Product image",
+ Selectpose: "Select pose",
+ LikeVideo: "Selected",
+ InputVideo: "Generated",
+ GeneratedVideo: "Generated Video",
+ hint: "change the sketch to realistic photo, the material of the skirt is denim",
+ jsContent1: "Video generation will take approximately 3 minutes. Continue?",
+ },
+ LibraryPage: {
+ library: "Library",
+ Organize: "Organize",
+ Upload: "Upload",
+ Generate: "Generate",
+ Close: "Cancel",
+ Reset: "Reset",
+ currently:
+ "You are currently in the {generateLineUp} th position in the queue",
+ Delete: "Delete",
+ Rename: "Edit",
+ Point: "Point",
+ inputContent1: "Search by name",
+ intersection: "intersection",
+ Tag: "Tag:",
+ Select: "Search by tag",
+ NoLabel: "No Label",
+ unionSet: "union set",
+ all: "all",
+ generated: "All default materials are generated by AiDA",
+ ImageOnly: "Image Only",
+ TextOnly: "Text Only",
+ TextImage: "Text-Image",
+ inputContent2: "Input prompt",
+ maximumLength: "The entered content exceeds the maximum length.",
+ Model1: "Painting Style",
+ Model2: "Illustration Style",
+ Model3: "Real Style",
+ Name: "Name:",
+ Category: "Category:",
+ inputContent3: "Enter a new name",
+ Cancel: "Cancel",
+ Sure: "Submit",
+ Moodboard: "Moodboard",
+ Prints: "Prints",
+ Sketches: "Sketches",
+ DesignElements: "Design Elements",
+ Mannequins: "Mannequins",
+ model: "model",
+ brandDNA: "Brand DNA",
+ jsContent1: "Are you sure to delete this picture?",
+ jsContent2: "Are you sure to delete this picture?",
+ jsContent3: "You can only upload Image file!",
+ jsContent4: "Image must smaller than 5MB!",
+ jsContent5:
+ "This picture has been uploaded whether to continue uploading?",
+ jsContent6: "The entered content exceeds the maximum length.",
+ jsContent7: "Please enter content",
+ jsContent8: "upload failed",
+ jsContent9: "Please select a picture",
+ jsContent10: "Save as New or Overwrite Current Mannequin?",
+ jsContent11: "Are you sure about deleting the current brand DNA?",
+ jsContent12: "Please deselect first, then try deleting again.",
+ jsContent13:
+ "You must select at least one mannequin and no more than four.",
+ },
+ HistoryPage: {
+ History: "History",
+ StartDate: "Start Date",
+ EndDate: "End Date",
+ inputContent1: "Search by collection name",
+ Detail: "Detail",
+ Rename: "Rename",
+ Retrieve: "Retrieve",
+ Delete: "Delete",
+ inputContent2: "Enter a new name",
+ Submit: "Submit",
+ CollectionsName: "Collections Name",
+ source: "Source",
+ UptateTime: "Uptate Time",
+ SketchCounts: "Project Name",
+ Operations: "Operations",
+ jsContent1: "Deleted successfully",
+ jsContent2: "Do you really want to delete this collection? ",
+ jsContent3: "Change successfully",
+ jsContent4: "Image must smaller than 5MB!",
+ jsContent5:
+ "This picture has been uploaded whether to continue uploading?",
+ jsContent6: "The entered content exceeds the maximum length.",
+ jsContent7: "Please enter content",
+ },
+ ModelPlacement: {
+ Registration: "Registration",
+ Submit: "Submit",
+ Preview: "Preview",
+ Back: "Back",
+ Restore: "Restore",
+ System: "System",
+ Library: "Library",
+ Point: "Point",
+ addPoint: "Add points",
+ RemovePoint: "Remove points",
+ mannequinHint:
+ "Please change the pure white inside the mannequin for another color to enhance your experience",
+ SHOULDER: "SHOULDER",
+ WAISTBAND: "WAISTBAND",
+ HAND: "HAND",
+ jsContent1:
+ "You haven't marked the image yet, and the model will not be uploaded. Are you sure you want to close it?",
+ jsContent2:
+ "This picture has been uploaded whether to continue uploading?",
+ },
+ ModelPlacementMobile: {
+ Registration: "Registration",
+ Submit: "Submit",
+ Preview: "Preview",
+ Back: "Back",
+ Restore: "Restore",
+ System: "System",
+ Library: "Library",
+ Point: "Point",
+ RemovePoint: "Remove Point",
+ mannequinHint:
+ "Please change the pure white inside the mannequin for another color to enhance your experience",
+ SHOULDER: "SHOULDER",
+ WAISTBAND: "WAISTBAND",
+ HAND: "HAND",
+ jsContent1:
+ "You haven't marked the image yet, and the model will not be uploaded. Are you sure you want to close it?",
+ jsContent2:
+ "This picture has been uploaded whether to continue uploading?",
+ },
+ Upload: {
+ Delete: "Delete",
+ Maximum2M:
+ "You can upload up to 8 images. Each image must be no larger than 5MB",
+ jsContent1: "You can only upload Image file!",
+ jsContent2: "Image must smaller than 5MB!",
+ jsContent3: "upload failed",
+ },
+ more: {
+ delete: "Delete",
+ down: "Download",
+ edit: "Modify",
+ enlargement: "Enlargement",
+ },
+ SketchboardUpload: {
+ Upload: "Upload",
+ Library: "Library",
+ Generate: "Generate",
+ Close: "Cancel",
+ currently:
+ "You are currently in the {generateLineUp} th position in the queue",
+ PIN: "PIN",
+ Maximum: "Maximum {maxImg} images can be uploaded, Maximum 5MB per image",
+ Thumbnail: "Selected sketchboard",
+ inputContent1: "Input prompt for image generation",
+ maximumLength: "The entered content exceeds the maximum length.",
+ GenerateSketch: "Generate Sketch",
+ jsContent1: "upload failed",
+ jsContent2: "You can only upload Image file!",
+ jsContent3: "Image must smaller than 5MB!",
+ jsContent4: "Maximum number of allowable file uploads has been exceeded",
+ jsContent5: "Please select a picture",
+ jsContent6: "The entered content exceeds the maximum length.",
+ jsContent7: "Please enter content",
+ },
+ PrintboardUpload: {
+ Upload: "Upload",
+ Library: "Library",
+ Generate: "Generate",
+ Close: "Cancel",
+ currently:
+ "You are currently in the {generateLineUp} th position in the queue",
+ PIN: "PIN",
+ Maximum: "Maximum 16 images can be uploaded, Maximum 5MB per image",
+ Thumbnail: "Selected printboard",
+ inputContent1: "Input prompt",
+ maximumLength: "The entered content exceeds the maximum length.",
+ PatternTitle:
+ "Generates repeatable designs that can be fully tiled across garments.",
+ LogoTitle:
+ "Creates standalone graphic designs that can be placed individually or tiled.",
+ SloganTitle:
+ "Produces artistic typography for text, suitable for various slogans or phrases.",
+ jsContent1: "You can only upload Image file!",
+ jsContent2: "Image must smaller than 5MB!",
+ jsContent3: "Maximum number of allowable file uploads has been exceeded",
+ jsContent4: "Please select a picture",
+ jsContent5: "The entered content exceeds the maximum length.",
+ jsContent6: "Please enter content",
+ jsContent7: "Please ensure all required fields are filled out",
+ },
+ ColorboardUpload: {
+ Thumbnail: "Thumbnail preview of selected colors",
+ Clear: "Clear",
+ Palette: "Palette",
+ HEX: "HEX",
+ RGBA: "RGBA",
+ UploadImage: "Extract main colors", ////////////
+ ColorCode: "Color Code",
+ SelectSuccessively: "Successive",
+ SelectSuccessivelyOnTitle: "Enable successive color selection.",
+ SelectSuccessivelyOffTitle: "Disable successive color selection.",
+ SelectSeparately: "Select Separately",
+ ExtractColor: "Extract Color",
+ Single: "Single",
+ Gradual: "Gradual",
+ Alignment: "Alignment",
+ uploadTitle: "Upload image from local file",
+ selectTitle: "Choose image from moodboard or printboard",
+ jsContent1: "Your browser does not support it",
+ jsContent2: "Can't find the TCX color",
+ jsContent3: "You can only upload Image file!",
+ jsContent4: "Image must smaller than 5MB!",
+ jsContent5: "Please enter the correct TCX value",
+ jsContent6: "Please select at least one mood plate or print",
+ },
+ selectImgList: {
+ SelectImg: " Select image for main color extraction",
+ Clear: "Close",
+ },
+ MoodboardUpload: {
+ Upload: "Upload",
+ Library: "Library",
+ Generate: "Generate",
+ Delete: "Delete",
+ Maximum:
+ "You can upload up to 8 images. Each image must be no larger than 5MB",
+ Thumbnail: "Selected moodboard",
+ layout: "Layout",
+ selected: "Layout of selected moodboard",
+ Edit: "Edit",
+ jsContent1: "You can select up to 8 images",
+ jsContent2: "upload failed",
+ jsContent3: "You can only upload Image file!",
+ jsContent4: "Image must smaller than 5MB!",
+ jsContent5: "Please click Layout to sort randomly",
+ },
+ Cropper: {
+ Cutpicture: "Crop image",
+ Finish: "Finish",
+ Cancel: "Cancel",
+ CropPreview: "Crop Preview",
+ },
+ Material: {
+ inputContent1: "Please enter name to search",
+ PIN: "PIN",
+ },
+ MarketingSketchUpload: {
+ Upload: "Upload",
+ MyLibrary: "My Library",
+ maximumLength: "Maximum 15 images can be uploaded, Maximum 5MB per image",
+ jsContent1: "upload failed",
+ jsContent2: "You can only upload Image file!",
+ jsContent3: "Image must smaller than 5MB!",
+ jsContent5: "Maximum number of allowable file uploads has been exceeded",
+ },
+ layout: {
+ MoodBoardDesign: "MoodBoard Design",
+ LayerOptions: "Layer Options",
+ Submit: "Submit",
+ },
+ Generate: {
+ ImageOnly: "Image Only",
+ TextOnly: "Text Only",
+ TextImage: "Text-Image",
+ Model1: "Painting Style",
+ Model2: "Illustration Style ",
+ Model3: "Real Style",
+ inputContent1: "Input prompt",
+ Generate: "Generate",
+ Sequence: "Sequence",
+ Close: "Cancel",
+ currently:
+ "You are currently in the {generateLineUp} th position in the queue",
+ Merge: "Merge",
+ maximumLength: "The entered content exceeds the maximum length.",
+ effectPoor:
+ "The quality of the generated images currently falls below standard. Please consider adjusting your prompt and trying again.",
+ everyTimeEffectPoor:
+ "One generated image falls below quality thresholds. Modify your text prompt and regenerate.",
+ Model: "Model",
+ uploadTitle: "Upload reference image",
+ uploadproduct: "Upload product picture",
+ style: "Style",
+ referenceImage: "Reference Image",
+ sloganTitle: "Input text content",
+ jsContent1: "You can only upload Image file!",
+ jsContent2: "Image must smaller than 5MB!",
+ jsContent3: "Please enter content",
+ jsContent4: "The entered content exceeds the maximum length.",
+ jsContent5: "Please enter content",
+ jsContent6: "You can select up to 8 images",
+ jsContent7: "upload failed",
+ jsContent8: "You have {num} remaining opportunity to generate {str}.",
+ jsContent9: "You have exhausted your generation opportunities {str}.",
+ jsContent10: "Please complete the slogan picture",
+ jsContent11:
+ "See the input content may overlap, overlap will affect the final effect oh",
+ jsContent12: "Complete at least one slogan",
+ },
+ collectionModal: {
+ Moodboard: "Moodboard",
+ Printboard: "Printboard",
+ Colorboard: "Colorboard",
+ Sketchboard: "Sketchboard",
+ Mannequin: "Mannequin",
+ Mannquinboard: "Mannquinboard",
+ MoodCollection: "select moodboard for your collection",
+ PrinCollection: "select printboard for your collection",
+ ColorCollection: "select colors for your collection",
+ SketchCollection: "select sketchboard for your collection",
+ jsContent1:
+ "Since you have selected multiple images, please click 'Layout' to proceed.",
+ jsContent2:
+ "The uploaded files will not be saved, being sure to continue? ",
+ jsContent3: "You must choose one or more colors for further process.",
+ jsContent5:
+ "We've detected that the number of pins on your ({str}) exceeds eight, which may result in some pinned items not being used. Would you like to continue anyway?",
+ },
+ DesignDetail: {
+ Details: "Details",
+ EditDetails: "Edit the details of your design",
+ editTitle: "Modify item",
+ DetailTitle: "Deleta item",
+ compareTitle: "Compare",
+ Submit: "Submit",
+ CurrentApparel: "Current Apparel",
+ editSketchTitle: "Modify sketch",
+ CurrentPrint: "Current Print",
+ CurrentColor: "Current Color",
+ CurrentElements: "Current Elements",
+ },
+ DesignDetailAlter: {
+ current: "Selected",
+ inProject: "In-Project",
+ Upload: "Upload",
+ Library: "Library",
+ inputContent1: "Please input",
+ Palette: "Palette",
+ HEX: "HEX",
+ RGBA: "RGBA",
+ UploadImage: "Upload Image", ////////////
+ Delete: "Delete",
+ ColorCode: "Color Code",
+ jsContent1: "Your browser does not support it",
+ jsContent2: "You can select up to 8 images",
+ jsContent3: "upload failed",
+ jsContent4: "You can only upload Image file!",
+ jsContent5: "Image must smaller than 5MB!",
+ jsContent6: "Can't find the TCX color",
+ jsContent7: "Please choose a color first.",
+ },
+ addDetails: {
+ AddDetails: "Add Details",
+ submit: "Submit",
+ jsContent1: "Please draw at least one line segment",
+ },
+ DesignDetailEnd: {
+ NewApparel: "New Apparel",
+ NewPrint: "New Print",
+ Placement: "Placement",
+ Overall: "Overall",
+ Single: "Single",
+ NewColor: "New Color",
+ preview: "Preview",
+ Layout: "Layout",
+ jsContent1: "Please select print",
+ jsContent2: "Please choose a color",
+ },
+ DesignPrintOperation: {
+ Placement: "Placement",
+ Overall: "Overall",
+ Single: "Single",
+ Scale: "Scale",
+ Random: "Random",
+ inputContent: "Please input",
+ Preview: "Preview",
+ Submit: "Submit",
+ isOverall: "Pattern images cannot be used in Single mode",
+ Apparel: "Apparel",
+ Print: "Print",
+ Color: "Color",
+ Elements: "Elements",
+ Model: "Model",
+ CurrentSketch: "Current Sketch",
+ CurrentPrint: "Current Print",
+ CurrentColor: "Current Color",
+ Colorpelette: "Color Pelette",
+ Colorfromimage: "Choose color from image",
+ ColorCode: "Color Code",
+ ExtractColor: "Extract Color",
+ CurrentElement: "Current Element",
+ CurrentModel: "Current Model",
+ NewApparel: "New Apparel",
+ NewPrint: "New Print",
+ NewModel: "New Model",
+ jsContent1:
+ "The above changes are not saved. Are you sure you want to continue? ",
+ },
+ uploadFile: {
+ jsContent1: "You can select up to {maxImg} images",
+ },
+ isTest: {
+ available: "This feature is not available to trial users",
+ src: "This function is not open to trial users, if you need to subscribe, please visit ",
+ userName: "Trial User",
+ loginIsTest:
+ "You are a trial user, Probation period until{date}. For the security of users' data, we do not save any personal data uploaded by trial users, and will erase personal data after each logout. if you need to subscribe, please click ->",
+ image: "Because you are a trial user, you can only upload 10 images",
+ },
+ setLabel: {
+ EditTag: "Edit Tag",
+ jsContent1: "Please enter a tag name",
+ },
+ works: {
+ WORKS: "Gallery",
+ all: "All",
+ FavoriteWorks: "My Likes",
+ MyWorks: "My Works",
+ RCAworkshop_2024: "AiDA Workshop 2024",
+ NewYear_2025: "NewYear 2025",
+ },
+ Publish: {
+ Publish: "Share",
+ CoverPicture: "Cover Picture",
+ CollectionTitle: "Share to gallery Title",
+ topic: "Topic",
+ Description: "Description",
+ Permissions: "Permissions",
+ PermissionsItem1: "Allow other users to perform secondary creation.",
+ Close: "Cancel",
+ UpdatePublish: "Update Publish",
+ jsContent1: "Are you sure to leave this page? Your changes are not saved. ",
+ jsContent2: "Please enter the name of your work",
+ jsContent3:
+ "This will publish your work to the square for all users to see. Please confirm whether to publish?",
+ jsContent4: "Release success! You can find it in my work",
+ },
+ newScaleImage: {
+ Collection: "Collection",
+ SecondaryCreation: "Secondary Creation",
+ Follow: "Following",
+ Unfollow: "Unfollow",
+ CreationTime: "CreationTime",
+ UpdateTime: "UpdateTime",
+ Comment: "Comment",
+ NoComments: "No Comments",
+ first: "You can be the first!",
+ reply: "Reply",
+ unfold: "Expand",
+ Original: "Original",
+ from: "Derived from",
+ Title: "Title",
+ Delete: "Delete",
+ Describe: "Describe",
+ Collapse: "Collapse",
+ replyAll: "All replies",
+ jsContent1: "Please log in or upgrade to an official user",
+ jsContent2: "The author is not allowed to use it",
+ jsContent3: "Please enter a comment",
+ jsContent4: "Do you need to delete this comment",
+ jsContent5: "Whether to delete the current gallery",
+ jsContent6: "The author deleted the work",
+ },
+ scaleImage: {
+ overlayOrNot: "Whether to overwrite the current picture",
+ submitCanvas: "Canvas content is not saved, whether to continue",
+ cover: "Save the generated content as a new design?",
+ },
+ account: {
+ personCentered: "Account",
+ back: "Back",
+ frontPage: "Front Page",
+ Home: "Home",
+ Messages: "Messages",
+ Follow: "Following",
+ Fans: "Followers",
+ editUser: "Change Information",
+ notModifiable: "Not modifiable",
+ remainingModifications: "Remaining this month:",
+ Country: "Country",
+ CompanyName: "Occupation",
+ //account首页
+ myInfor: "My Info",
+ bindWeChat: "Link WeChat/Gmail",
+ cancel: "Cancel Subscription Renewal",
+ //编辑个人信息页
+ userName: "User Name",
+ email: "Email",
+ Submit: "Submit",
+ UpdateAvatar: "Update Avatar",
+ information: "Bind personal information",
+ ModifyEmail: "Modify Email",
+ Email: "Email",
+ plaseEmail: "Enter your email address",
+ plaseCountry: "Please select country",
+ plaseCompanyName: "Please enter occupation",
+ Name: "Name",
+ plaseSelectSex: "Please select",
+ plaseFirst: "Please enter First",
+ plaseLast: "Please enter Last",
+ Mr: "Mr",
+ Ms: "Ms",
+ Miss: "Miss",
+ //消息
+ systemMessages: "System Notifications",
+ comment: "Comment",
+ like: "Like",
+ NewFans: "New Followers",
+ AllRead: "All read",
+ dataNull: "No New Messages~",
+ reply: "commented on your work",
+ followedYou: "followed you",
+ likedYourWork: "liked your work",
+ FollowFans: "Follow Fans",
+ //互动
+ Interact: "interact",
+ hisWorks: "His works",
+ works: "Works",
+ //取消
+ jsContent1: "Too expensive",
+ jsContent2: "Sytem not user friendly",
+ jsContent3: "Too Slowy",
+ jsContent4: "Difficult to edit",
+ jsContent5: "Insufficlent Tutorial/Support",
+ jsContent6: "Unable to generate what you need",
+ jsContent7: "Please enter occupation",
+ jsContent8: "Please select a country",
+ jsContent9: "Please select a title",
+ jsContent10: "Please enter surname",
+ jsContent11: "Please enter givenName",
+ jsContent12: "The email format is incorrect",
+ },
+ frontPage: {
+ BindWechat: "Bind Wechat",
+ Unbound: "Unbound",
+ BindNow: "Bind Now",
+ Unbind: "Unbind",
+ BindGmail: "Bind Gmail",
+ ModifyEmail: "Modify Email",
+ Modify: "Modify",
+ jsContent1: "Successful discharge",
+ jsContent2: "The current network cannot load Google",
+ },
+ Renew: {
+ title: "Find Your Ideal Plan",
+ Monthly: "Monthly",
+ Yearly: "Yearly",
+ promotionCode: "Coupon",
+ use: "Apply",
+ PromoCodeError:
+ "Please check if the promo code is correct or if the date has expired",
+ CreditCard: "Credit Card",
+ Alipay: "Alipay",
+ Payment: "Payment method",
+ PleaseSelectPayment: "Please select a payment method",
+ SubscribeNow: "Subscribe Now",
+ PersonalVersion: "Personal version",
+ HKDMonth: "HKD / Month",
+ HKDYear: "HKD / Year",
+ automatically: "Whether to renew automatically",
+ activity1: "Limited time offer, today only!",
+ Strengths: "Our Core Strengths",
+ StrengthsTitle1: "Unlimited",
+ StrengthsTitle1_1: "creativity",
+ StrengthsInfo1: "Generate ideas in minutes,",
+ StrengthsInfo1_1: "not hours.",
+ StrengthsTitle2: "Sustainable &",
+ StrengthsTitle2_1: "Cost-efficient",
+ StrengthsInfo2: "Streamline your process,",
+ StrengthsInfo2_1: "reduce waste.",
+ StrengthsTitle3: "AI design tool",
+ StrengthsTitle3_1: "for all levels",
+ StrengthsInfo3: "Easy to use with powerful AI features",
+ StrengthsInfo3_1: "to make design accessible and",
+ StrengthsInfo3_2: "efficient for everyone.",
+ StrengthsTitle4: "From Idea",
+ StrengthsTitle4_1: "to Garment",
+ StrengthsInfo4: "Support your entire",
+ StrengthsInfo4_1: "fashion design journey.",
+ unlimited: "Subscribe Now!",
+ },
+ cancelRenewal: {
+ cancelling: "What is your reason for cancelling AiDA?",
+ subscription: "You’re about to cancel your subscription",
+ looseDate: "You will loose all your date",
+ looseCustomizations: "You will loose your settings and customizations",
+ DonWorry: "Don’t worry! The data you have in AiDA will be safe.",
+ Continue: "Continue to renew",
+ cancel: "Yes,cancel it",
+ subscriptionRenewal:
+ "There are no subscription plans with automatic renewal.",
+ },
+ guide: {
+ guide1:
+ "You can personalize your design settings right here in the
Workspace, including choosing to design for men's or women's wear, as well as selecting the mannequin to use for your creations.",
+ guide2: "Select the apparel type you'd like to work on.",
+ guide3: "Change the mannequin here.",
+ guide4:
+ "You can currently select a mannequin from our system library. Later, you can also choose from the user library after registering your own mannequin.",
+ guide5: "Begin your creative journey here. ",
+ guide6:
+ "For the Moodboard, Printboard, or Sketchboard, we provide three different sourcing methods to add images. The first option is
Upload, allowing you to
upload directly from your local device.",
+ guide7:
+ "The second method is to select from your
Library.
You might notice that your library page is currently empty; there's no need to worry. All the images you upload will be automatically added to your library. In the future, you won't have to upload each time—you can simply choose from your library instead.",
+ guide8:
+ "The third method is to
Generate images using the latest Image Generation technology.",
+ guide9:
+ "Enter keywords that capture the mood you wish to express and then click the
Low Quality button.",
+ guide10: "Select two images for your moodboard.",
+ guide11: "Click here to layout your moodboard.",
+ guide12: "Click here for next step.",
+ guide13: "Click here to generate print images.",
+ // guide14:"We provide three input options for generating images: Image Only, Text Only, and Text-Image.",
+ // guide15:"Select this option and we will generate four print images using both the picture you upload and the text you enter.",
+ guide16:
+ "Choose a generation model here; different models will generate images in various styles.",
+ // guide17:"Choose a generation model here; different models will generate images in various styles.",
+ guide18: "Upload the input picture here.",
+ // guide19:"Click on this image to select it.",
+ guide20:
+ "Enter keywords about the print you wish to create and then click the
Generate button.",
+ guide21: "Select the generated prints you like best.",
+ guide22: "Click here for next step.",
+ guide23: "Click here to extract primary colors from image.",
+ guide24:
+ "Select the color you want from these color blocks as the first color.",
+ guide25: "Click on this block to select the second color.",
+ guide26: "Choose the color you want from these color blocks.",
+ guide27: "Click here for next step.",
+ guide28: "Click here to generate clothing sketches.",
+ // guide29:"Using text only option for generation.",
+ guide30:
+ "Enter keywords about the sketch you wish to create and then click the
Generate button.",
+ guide31: "Click here to choose a category for the generated sketch.",
+ guide32: "Choose correct category for the sketch.",
+ guide33: "Select the generated sketches you like best.",
+ guide34: "Cick here to complete the uploading process.",
+ guide35: "Click here to let AI generate design illustrations.",
+ guide36: "Please wait a few seconds.",
+ guide37: "Click the little red heart to save your favorite design.",
+ guide38:
+ "Click '
Redesign' to generate eight new outfits for your collection to choose from.",
+ guide39: "Click here to let AI generate design illustrations.",
+ guide40:
+ "Click on any design image you are interested in to modify the details.",
+ guide41: "Click on the clothes to modify its details.",
+ guide42: "Click here to add or change the print.",
+ guide43: "You can find the print you uploaded earlier in your Library.",
+ guide44: "Select a print for this sketch.",
+ guide45: "Click here to layout the selected print",
+ guide46: "Preview printed design here.",
+ guide47: "Save printed design here.",
+ guide48: "Click here to finalize your modification.",
+ guide49: "Click here to access the finalize page.",
+ guide51:
+ "This interface allows you to transform design results into product images. You can achieve your desired effect by adjusting the text and similarity. Click this product image to proceed to the next step.",
+ guide52: "Click here to generate the product image.",
+ guide53: "Click this button to apply more tools to the product image. ",
+ guide54: "We can adjust the lighting and background of this image. ",
+ guide55:
+ "Click here to generate a product image with lighting from the right side.",
+ guide56: "If you like this result, click the little heart to save it.",
+ guide57: "Click here to go to the export page. ",
+ guide58:
+ "You can share your work to the gallery or export to your local device.",
+ guide50:
+ "Your guide is complete, and now the canvas is yours to create freely. For more insights and details, check out our demo video on the homepage at
https://code-create.com.hk/aida/You can restart the tutorial at any time by simply telling the robot that you want to.",
+ },
+ createSlogan: {
+ title: "Create Slogan",
+ Color: "Color",
+ FontAlign: "Font Align",
+ FontStyle: "Font Style",
+ FontFamily: "Font Family",
+ add: "Add",
+ delete: "Delete",
+ submit: "Submit",
+ },
+ newProjectg: {
+ helpYou: "How can I help you today?",
+ Chat: "Agent Mode",
+ Setting: "Manual Mode",
+ SeriesDesign: "Overall illustrantion design",
+ SeriesDesignInfo:
+ "Series Design focuses on the coordinated design of multi-category clothing, ideal for creating a unified fashion collection. Gather and arrange your inspiration using the Moodboard, Printboard, Colorboard, Sketchboard, and Mannequin tools in the Design Assets panel to build harmonious outfit combinations. Refine your creations in the Draft and Collection panels using powerful tools like To Product Image, Relight, and Transfer Pose. When you’re ready, export everything to the Canvas to display your complete series design.",
+ SingleDesign: "Single item design",
+ DeepThinking: "Deep Thinking",
+ SingleDesignInfo:
+ "Single Design focuses on creating an individual clothing item, such as a T-shirt, dress, or jacket, without coordinating it with other pieces. Use the Moodboard, Printboard, Colorboard, and Sketchboard sections in the Design Assets panel to gather inspiration and develop a unique design. Once finished, refine your work in the Draft and Collection panels using tools like To Product Image, Relight, and Transfer Pose, then export to the Canvas to showcase your standalone creation. ",
+ hintListSERIES1:
+ "Design a collection of futuristic clothes, deep purple color scheme.",
+ hintListSERIES2: "Design a set of bright-colored, Bohemian-style dresses.",
+ hintListSERIES3:
+ "Design a set of hip-hop street style denim jackets for boys.",
+ hintListSIGNLE1: "A silver-gray, steampunk-style windbreaker.",
+ hintListSIGNLE2:
+ "Design a set of skirts in bright colors and ethnic styles.",
+ hintListSIGNLE3: "Design a set of bright-colored, Bohemian-style dresses.",
+ jsContent1: "The file size cannot exceed 5MB.",
+ jsContent2: "You can only upload five pictures.",
+ jsContent3: "You can only upload one file.",
+ },
+ DeReconstruction: {
+ GenerateLineDrawing: "Generate Line Drawing",
+ Download: "Download",
+ Girls: "Girls' Fashion",
+ Boys: "Boys' Fashion",
+ },
+ patternMaking3D: {
+ Clothing: "Clothing",
+ Print: "Print",
+ TechnicalSketch: "Technical sketch",
+ front: "Front",
+ back: "Back",
+ FlatPattern: "Flat pattern",
+ },
+ batchGeneration: {
+ Project: "Project",
+ Search: "Search",
+ Create: "Create",
+ Rename: "Rename",
+ Review: "Review",
+ Delete: "Delete",
+ sequence: "Sequence",
+ TaskName: "Task Name",
+ TaskType: "Task Type",
+ QuantityGenerated: "Quantity",
+ Quantity: "Quantity",
+ CreationTime: "Created Time",
+ StartTime: "Start Time",
+ UpdateTime: "Update Time",
+ Status: "Status",
+ Keyword: "Keyword",
+ CostCredit: "Cost credit",
+ Operation: "Actions",
+ title: "Create Batch Generation Tasks",
+ PleaseSelect: "Please select",
+ enterNumber: "Please enter number",
+ },
+ brandDNA: {
+ Addbrand: "Create new brand",
+ BrandName: "Brand Name",
+ BrandTextarea: "Generating brand from description",
+ BrandSlogan: "Brand Slogan",
+ BrandLogo: "Brand Logo",
+ Generate: "Generate",
+ Slogan: "Slogan",
+ Upload: "Upload",
+ Delete: "Delete",
+ textarea:
+ "Please enter your thoughts about this brand, and we will help you generate the name, logo, and slogan.",
+ },
+ chat: {
+ DeepThinking: "Deep Thinking",
+ message: "Write your message",
+ },
+ Model: {
+ Style: "Style",
+ CurrentModel: "Current Model",
+ all: "All",
+ },
+ libraryList: {
+ System: "System",
+ Library: "Library",
+ },
+ Canvas: {
+ layer: "Layer",
+ createGroup: "Create Group",
+ slutionGroup: "Slution Group",
+ deleteLayer: "Delete Layer",
+ clearSelection: "Clear Selection",
+ AddPinnedLayer: "Add a pinned layer",
+ selectedLayers: "The number of selected layers:",
+ Hint: "Hint: Hold down Ctrl/Cmd for multiple selections, Shift for range selection, and long press to enter the multiple selection mode",
+ CollapseUp: "Collapse Up",
+ CollapseDown: "Collapse Down",
+ showGroup: "Show Layer",
+ hideGroup: "Hidden Layer",
+ showHiddenLayer: "Show/Hidden Layer",
+ preview: "Preview",
+ EmptyLayer: "Empty layer",
+ Scale: "Scale",
+ ResetLayer: "Reset Layer",
+ Help: "View the shortcut keys and touch operations",
+ width: "Width",
+ height: "Height",
+ color: "Color",
+ KeyboardShortcutsOperationGuide: "Keyboard shortcuts & Operation guide",
+ TheDetectedPlatform: "Guide Detected Platform",
+ BasicOperations: "Basic Operations",
+ Operation: "Operation",
+ ShortcutGesture: "Shortcut/Gesture",
+ viewOperations: "View Operations",
+ toolSwitching: "Tool Switching",
+ BrushAdjustmentOperation: "Brush Adjustment Operation",
+ Undo: "Undo",
+ Redo: "Redo",
+ Copy: "Copy",
+ Paste: "Paste",
+ Cut: "Cut",
+ DeleteSelectedElement: "Delete Selected Element",
+ MoveCanvas: "Move Canvas",
+ ZoomCanvas: "Zoom Canvas",
+ MouseWheel: "Mouse Wheel",
+ MacZoomCanvas: "Mouse scroll wheel or touchpad zoom gesture",
+ SelectionMode: "Selection Mode",
+ PaintingMode: "Painting Mode",
+ EraserMode: "Eraser Mode",
+ LassoTool: "Lasso Tool",
+ LiquifyTool: "Liquify Tool",
+ DecreaseBrush: "Decrease Brush",
+ IncreaseBrush: "Increase Brush",
+ Layer1: "Layer 1",
+ FixedLayer: "FixedLayer",
+ Background: "Background",
+ },
+};