Merge remote-tracking branch 'origin/dev_vite' into research
This commit is contained in:
@@ -9,11 +9,6 @@
|
||||
"id": 2,
|
||||
"title": "AiDA X SFT AI Fashion Award 2024",
|
||||
"imgUrl": "/image/events/Fashion-Award-2024.png"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"title": "AiDA Global Design Awards 2026",
|
||||
"imgUrl": "/image/events/award-poster.gif"
|
||||
}
|
||||
],
|
||||
"eventsItem": [
|
||||
|
||||
@@ -9,11 +9,6 @@
|
||||
"id": 2,
|
||||
"title": "AiDA X SFT AI时尚设计比赛2024",
|
||||
"imgUrl": "/image/events/Fashion-Award-2024.png"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"title": "AiDA全球设计奖 2026",
|
||||
"imgUrl": "/image/events/award-poster-zh.gif"
|
||||
}
|
||||
],
|
||||
"eventsItem": [
|
||||
|
||||
@@ -148,6 +148,7 @@
|
||||
total: total,
|
||||
showQuickJumper: true,
|
||||
bordered: false,
|
||||
showTotal: (total) => `Total Transaction: ${total}`
|
||||
}"
|
||||
>
|
||||
<template #bodyCell="{ column, text, record, index }">
|
||||
@@ -465,13 +466,16 @@ export default defineComponent({
|
||||
(rv: any) => {
|
||||
if (rv) {
|
||||
// this.dataList = rv
|
||||
// console.log('rv----',rv);
|
||||
|
||||
filter.dataList = rv.content;
|
||||
filterData.total = rv.total;
|
||||
filter.tableLoading = false;
|
||||
filterData.totalPayer = rv.content.reduce((total: number, item: any) => {
|
||||
const value = item && item.status === 'Success' ? parseFloat(item.payerTotal) : 0;
|
||||
return total + (isNaN(value) ? 0 : value);
|
||||
}, 0);
|
||||
filterData.totalPayer = rv.totalAmount;
|
||||
// filterData.totalPayer = rv.content.reduce((total: number, item: any) => {
|
||||
// const value = item && item.status === 'Success' ? parseFloat(item.payerTotal) : 0;
|
||||
// return total + (isNaN(value) ? 0 : value);
|
||||
// }, 0);
|
||||
|
||||
// this.workspaceItem.position = this.singleTypeList[0].label
|
||||
}
|
||||
|
||||
@@ -375,6 +375,7 @@ const confirm = ()=>{
|
||||
/* 图片网格 */
|
||||
.image-grid {
|
||||
display: grid;
|
||||
align-content: start;
|
||||
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
||||
gap: 16px;
|
||||
min-height: 20rem;
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
:enabledRedGreenMode="false"
|
||||
/>
|
||||
</div>
|
||||
<div class="btn">123
|
||||
<div class="btn">
|
||||
<div class="gallery_btn" @click="exportElement">Export</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -40,11 +40,29 @@ export default defineComponent({
|
||||
setup(props,{emit}) {
|
||||
const {t} = useI18n();
|
||||
const store = useStore();
|
||||
const updateCatecory = (arr)=>{
|
||||
arr.forEach((v:any) => {
|
||||
if(props.catecoryList)props.catecoryList.forEach((item:any) => {
|
||||
if(v.level2Type == item.value && !v.category){
|
||||
v.category=item.name
|
||||
v.categoryValue=item.value
|
||||
}
|
||||
})
|
||||
});
|
||||
}
|
||||
const detailData = reactive({
|
||||
allBoardData:computed(()=>store.state.UploadFilesModule.allBoardData),
|
||||
currentList:{
|
||||
sketch:computed(()=>store.state.UploadFilesModule.allBoardData.sketchboardFiles),
|
||||
print:computed(()=>store.state.UploadFilesModule.allBoardData.printboardFiles),
|
||||
sketch:computed(()=>{
|
||||
let sketch = store.state.UploadFilesModule.allBoardData.sketchboardFiles
|
||||
updateCatecory(sketch)
|
||||
return sketch
|
||||
}),
|
||||
print:computed(()=>{
|
||||
let print = store.state.UploadFilesModule.allBoardData.printboardFiles
|
||||
updateCatecory(print)
|
||||
return print
|
||||
}),
|
||||
color:computed(()=>store.state.UploadFilesModule.allBoardData.colorBoards),
|
||||
models:computed(()=>store.state.Workspace.probjects.model),
|
||||
},
|
||||
|
||||
@@ -76,6 +76,7 @@ export default defineComponent({
|
||||
selectImgItem(data)
|
||||
return
|
||||
}
|
||||
data.id = id
|
||||
if(data?.imgUrl)data.url = data.imgUrl
|
||||
let value = {
|
||||
data,
|
||||
|
||||
@@ -70,6 +70,7 @@ import generalMenu from "@/component/HomePage/generalMenu.vue"
|
||||
import eventData from "@/assets/json/events.json"
|
||||
import eventDataCn from "@/assets/json/events_cn.json"
|
||||
import { useStore } from "vuex"
|
||||
|
||||
export default defineComponent({
|
||||
components: {
|
||||
generalMenu,
|
||||
@@ -82,6 +83,7 @@ export default defineComponent({
|
||||
}
|
||||
},
|
||||
setup() {
|
||||
const { t, locale } = useI18n()
|
||||
const router = useRouter()
|
||||
const store = useStore()
|
||||
let filter: any = reactive({
|
||||
@@ -118,11 +120,13 @@ export default defineComponent({
|
||||
})
|
||||
}
|
||||
const openDetail = () => {
|
||||
// window.open("https://aida-global-design-awards.com.hk", "_blank")
|
||||
router.push("/award/index")
|
||||
let language = locale.value === "ENGLISH" ? "en" : "zh"
|
||||
let url = `https://aida-global-design-awards.com.hk/${language}`
|
||||
window.open(url, "_blank")
|
||||
|
||||
// router.push("/award/index")
|
||||
}
|
||||
onMounted(() => {
|
||||
const { t, locale } = useI18n()
|
||||
const currentLocale = locale.value
|
||||
let eventLangData: any
|
||||
if (currentLocale == "ENGLISH") {
|
||||
|
||||
@@ -853,9 +853,7 @@ export default defineComponent({
|
||||
level2Type = this.sketchboardList?.[0]?.categoryValue
|
||||
? this.sketchboardList[0].categoryValue
|
||||
: ''
|
||||
if (this.workspace.styleName) {
|
||||
sloganText = `${this.workspace.styleName},${sloganText}`
|
||||
}
|
||||
sloganText = `${this.workspace.styleName || 'all'},${sloganText}`
|
||||
} else if (this.upload.level1Type == 'Printboard') {
|
||||
level2Type = this.scene?.value
|
||||
if (level2Type == 'Slogan' && this.searchPictureName == '') {
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
:get-container="() => $refs.upgradePlan"
|
||||
width="35%"
|
||||
height="auto"
|
||||
zIndex="9999999"
|
||||
:maskClosable="false"
|
||||
:centered="true"
|
||||
:closable="false"
|
||||
|
||||
@@ -517,6 +517,7 @@ defineExpose({
|
||||
/* 图片网格 */
|
||||
.image-grid {
|
||||
display: grid;
|
||||
align-content: start;
|
||||
overflow-y: auto;
|
||||
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
||||
gap: 16px;
|
||||
|
||||
@@ -379,6 +379,7 @@ export default defineComponent({
|
||||
setup(props,{emit}) {
|
||||
const {t,locale} = useI18n()
|
||||
const store = useStore();
|
||||
const route = useRoute()
|
||||
const editDesignType = reactive({
|
||||
selectProbject:computed(()=>{
|
||||
return store.state.Workspace.probjects
|
||||
@@ -624,6 +625,7 @@ export default defineComponent({
|
||||
collItemSize.collTime = setTimeout(()=>{
|
||||
nextTick(()=>{
|
||||
let parentWidth = likeItemDom.value.parentElement.offsetWidth
|
||||
if(parentWidth == 0)return
|
||||
collItemSize.widthValue.value = collItemSize.widthValue.value == -1?100:collItemSize.widthValue.value
|
||||
collItemSize.widthValue.value = collItemSize.widthValue.value > parentWidth?parentWidth:collItemSize.widthValue.value
|
||||
collItemSize.collValue = Math.floor(parentWidth / collItemSize.widthValue.value)
|
||||
@@ -634,7 +636,6 @@ export default defineComponent({
|
||||
|
||||
collItemSize.collStyle.width = (collItemDom.value.offsetWidth - 30) / 3 * collItemSize.scale[0] + 'px'
|
||||
collItemSize.collStyle.height = (collItemDom.value.offsetWidth - 30) / 3 * collItemSize.scale[1] + 'px'
|
||||
|
||||
collItemSize.likeStyle.width = collItemSize.itemStyle.width + 'px'
|
||||
collItemSize.likeStyle.height = collItemSize.itemStyle.height + 'px'
|
||||
let elArr = likeItemDom.value.children
|
||||
|
||||
@@ -271,7 +271,7 @@ export default defineComponent({
|
||||
allCollectionStr.forEach((itemStr:any)=>{
|
||||
let list = [] as any
|
||||
allCollection[itemStr.value].forEach((imgItem)=>{
|
||||
list.push({url:imgItem.url || imgItem.imgUrl})
|
||||
list.push({url:imgItem?.url || imgItem?.imgUrl})
|
||||
})
|
||||
let obj = {
|
||||
value:itemStr.value,
|
||||
|
||||
@@ -196,9 +196,9 @@ export default defineComponent({
|
||||
type:rv.process == 'SERIES_DESIGN'?'seriesDesign':'singleProductDesign',
|
||||
httpType:rv.process,//项目类型
|
||||
ageGroup:rv.workspaceVO?.ageGroup,
|
||||
style:rv.workspaceVO?.style,
|
||||
styleId:rv.workspaceVO?.styleId,
|
||||
styleName:rv.workspaceVO?.styleName,
|
||||
style:rv.workspaceVO?.style || '',
|
||||
styleId:rv.workspaceVO?.styleId || null,
|
||||
styleName:rv.workspaceVO?.styleName || '',
|
||||
sex:rv.workspaceVO?.sex,
|
||||
userBrandDnaImg:rv.workspaceVO?.userBrandDnaImg,
|
||||
userBrandDnaName:rv.workspaceVO?.userBrandDnaName,
|
||||
|
||||
@@ -94,9 +94,9 @@ export default defineComponent({
|
||||
type:rv.process == 'SERIES_DESIGN'?'seriesDesign':'singleProductDesign',
|
||||
httpType:rv.process,//项目类型
|
||||
ageGroup:rv.workspaceVO.ageGroup,
|
||||
style:rv.workspaceVO.style,
|
||||
styleId:rv.workspaceVO.styleId,
|
||||
styleName:rv.workspaceVO.styleName,
|
||||
style:rv.workspaceVO.style || '',
|
||||
styleId:rv.workspaceVO.styleId || null,
|
||||
styleName:rv.workspaceVO.styleName || '',
|
||||
sex:rv.workspaceVO.sex,
|
||||
userBrandDnaImg:rv.workspaceVO.userBrandDnaImg,
|
||||
userBrandDnaName:rv.workspaceVO.userBrandDnaName,
|
||||
|
||||
@@ -179,9 +179,9 @@ export default defineComponent({
|
||||
dataDom.brandDNA.init(data.selectObject);
|
||||
}
|
||||
const setWorkspaceStyle = (value:any)=>{
|
||||
data.selectObject.styleName = value.name
|
||||
data.selectObject.style = value.value
|
||||
data.selectObject.styleId = value.id
|
||||
data.selectObject.styleName = value.name || ''
|
||||
data.selectObject.style = value.value || ''
|
||||
data.selectObject.styleId = value.id || null
|
||||
// store.commit('setProbject',data)
|
||||
}
|
||||
const setWorkspaceBrandDNA = (value:any)=>{
|
||||
@@ -238,9 +238,9 @@ export default defineComponent({
|
||||
// type:rv.process == 'SERIES_DESIGN'?'seriesDesign':'singleProductDesign',
|
||||
// httpType:rv.process,//项目类型
|
||||
ageGroup:rv.workspaceVO?.ageGroup,
|
||||
style:rv.workspaceVO?.style,
|
||||
styleId:rv.workspaceVO?.styleId,
|
||||
styleName:rv.workspaceVO?.styleName,
|
||||
style:rv.workspaceVO?.style || '',
|
||||
styleId:rv.workspaceVO?.styleId || null,
|
||||
styleName:rv.workspaceVO?.styleName || '',
|
||||
sex:rv.workspaceVO?.sex,
|
||||
userBrandDnaImg:rv.workspaceVO?.userBrandDnaImg,
|
||||
userBrandDnaName:rv.workspaceVO?.userBrandDnaName,
|
||||
|
||||
@@ -352,7 +352,8 @@ export default defineComponent({
|
||||
props: {
|
||||
isDesignPage: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
default: false,
|
||||
required:false
|
||||
},
|
||||
source: {
|
||||
type: String,
|
||||
@@ -773,7 +774,7 @@ export default defineComponent({
|
||||
data.lastSelectImg = res.data
|
||||
}
|
||||
}
|
||||
// 同步尾帧文件列表到全局 store
|
||||
// 同步尾帧文件列表到全局 store(使用专门的 lastFrameList)
|
||||
store.commit('setPoseTransferLastFrameList', {
|
||||
str: 'set',
|
||||
list: [file]
|
||||
@@ -989,6 +990,7 @@ export default defineComponent({
|
||||
if (data.lastSelectImg?.id === item.id) {
|
||||
data.lastSelectImg = {}
|
||||
}
|
||||
// 使用专门的 lastFrameList mutation 清空列表
|
||||
store.commit('setPoseTransferLastFrameList')
|
||||
} else {
|
||||
// 如果删除的是当前选中的首帧,清空选中状态
|
||||
@@ -1176,10 +1178,10 @@ export default defineComponent({
|
||||
firstFrameList.value = store.state.HomeStoreModule.uploadElement.filter(
|
||||
item => item.frameType === 'first'
|
||||
)
|
||||
|
||||
lastFrameList.value = store.state.HomeStoreModule.uploadElement.filter(
|
||||
item => item.frameType === 'last'
|
||||
)
|
||||
// 注意:尾帧通过专门的 watch (lastFrameList) 监听,不需要从这里过滤
|
||||
// lastFrameList.value = store.state.HomeStoreModule.uploadElement.filter(
|
||||
// item => item.frameType === 'last'
|
||||
// )
|
||||
// 更新 showFirstFrameList 中项的选中状态
|
||||
showFirstFrameList.value.forEach((listItem: any) => {
|
||||
if (listItem.id == data.selectImg.id) {
|
||||
|
||||
@@ -102,9 +102,9 @@ setup(props,{emit}) {
|
||||
// if(habitSetStyleData.styleList.length == 0){
|
||||
// getStyleList()
|
||||
// }
|
||||
oldDataId = data.styleId
|
||||
habitSetStyleData.selectStyle.id = data.styleId
|
||||
habitSetStyleData.selectStyle.name = data.styleName
|
||||
oldDataId = data.styleId || null
|
||||
habitSetStyleData.selectStyle.id = data.styleId || null
|
||||
habitSetStyleData.selectStyle.name = data.styleName || ''
|
||||
// habitSetStyleData.selectStyleId = 'feng2'
|
||||
}
|
||||
let setCover = (item:any)=>{
|
||||
|
||||
268
src/lang/cn.ts
268
src/lang/cn.ts
@@ -231,8 +231,7 @@ export default {
|
||||
colorboard: '调色板',
|
||||
sketchboard: '线稿板',
|
||||
mannequins: '人体模型',
|
||||
masnnequinHint:
|
||||
'您使用的模特与当前的衣服不匹配,这将导致生成的模型不使用所选的衣服',
|
||||
masnnequinHint: '您使用的模特与当前的衣服不匹配,这将导致生成的模型不使用所选的衣服',
|
||||
FinalizeCollection: '完成系列',
|
||||
jsContent1: '您必须选择一种或多种颜色进行下一步。',
|
||||
jsContent2: '您必须选择一种或多种颜色进行下一步。',
|
||||
@@ -979,13 +978,17 @@ export default {
|
||||
subscriptionRenewal: '没有自动续订的订阅计划.'
|
||||
},
|
||||
guide: {
|
||||
guide1: '在<strong>工作空间</strong>中,您可以个性化您的设计设置,包括选择适用于男装或女装的设计,以及选择用于创作的人体模型。',
|
||||
guide1:
|
||||
'在<strong>工作空间</strong>中,您可以个性化您的设计设置,包括选择适用于男装或女装的设计,以及选择用于创作的人体模型。',
|
||||
guide2: '选择您要设计的服装性别。',
|
||||
guide3: '在此更改人体模型。',
|
||||
guide4: '您目前可以从我们的系统库中选择人体模型。稍后,您还可以在注册自己的人体模型后从用户库中进行选择。',
|
||||
guide4:
|
||||
'您目前可以从我们的系统库中选择人体模型。稍后,您还可以在注册自己的人体模型后从用户库中进行选择。',
|
||||
guide5: '在这里开始您的创意之旅。 ',
|
||||
guide6: '对于情绪板、印花或服装,我们提供三种不同的图片添加方法。第一种选择是<strong>上传</strong>,允许您直接从本地设备上传。',
|
||||
guide7: '第二种方法是从您的<strong>收藏</strong>中选择。<br> 您可能会注意到您的库页面目前是空的;不必担心。您上传的所有图像都将自动添加到您的库中。将来,您无需每次上传,只需从您的库中选择即可。',
|
||||
guide6:
|
||||
'对于情绪板、印花或服装,我们提供三种不同的图片添加方法。第一种选择是<strong>上传</strong>,允许您直接从本地设备上传。',
|
||||
guide7:
|
||||
'第二种方法是从您的<strong>收藏</strong>中选择。<br> 您可能会注意到您的库页面目前是空的;不必担心。您上传的所有图像都将自动添加到您的库中。将来,您无需每次上传,只需从您的库中选择即可。',
|
||||
guide8: '第三种方法是使用最新的图像生成技术<strong>生成</strong>图像。',
|
||||
guide9: '输入捕捉您希望表达的情绪的关键词,然后单击<strong>生成</strong>按钮。',
|
||||
guide10: '为您的心情板选择两个图像。',
|
||||
@@ -1147,7 +1150,7 @@ export default {
|
||||
CanvasTitle: {
|
||||
ModifySketch: '修改草图',
|
||||
ModifyItem: '修改单品',
|
||||
RedGreen: '编辑前片后片'
|
||||
RedGreen: '编辑前片后片',
|
||||
},
|
||||
Canvas: {
|
||||
Canvas: '画布',
|
||||
@@ -1505,7 +1508,7 @@ export default {
|
||||
PointSelection: '点选',
|
||||
MarqueeSelection: '框选',
|
||||
BrushSelection: '画笔',
|
||||
Erase: '擦除'
|
||||
Erase: '擦除',
|
||||
},
|
||||
speedList: {
|
||||
High: '高级',
|
||||
@@ -1604,7 +1607,7 @@ export default {
|
||||
Cancel: '取消',
|
||||
SelectPlan: '选择计划',
|
||||
AllPlan: '全部',
|
||||
PlanStart: '订阅计划生效时间:'
|
||||
PlanStart:'订阅计划生效时间:'
|
||||
},
|
||||
Login: {
|
||||
Login: '登录',
|
||||
@@ -1612,7 +1615,8 @@ export default {
|
||||
ForgotPassword: '忘记密码',
|
||||
Welcome: '欢迎来到',
|
||||
AiDA: 'AiDA',
|
||||
Slogan: 'AiDA是一个业界首创的平台,致力于赋能时装设计师融汇灵感,人机协同,共创原创设计。',
|
||||
Slogan:
|
||||
'AiDA是一个业界首创的平台,致力于赋能时装设计师融汇灵感,人机协同,共创原创设计。',
|
||||
LoginMethod: '使用以下方式登录:',
|
||||
Individual: '个人账号',
|
||||
Academic: '学术账号',
|
||||
@@ -1622,7 +1626,7 @@ export default {
|
||||
AgreePolicies: '请勾选条款、隐私政策和费用',
|
||||
PasswordConditions: '您必须满足所有密码条件才能注册',
|
||||
LoginWithGoogle: '使用谷歌账号登录',
|
||||
LoginWithWechat: '使用微信登录'
|
||||
LoginWithWechat: '使用微信登录',
|
||||
},
|
||||
LoginPersonal: {
|
||||
Email: '邮箱',
|
||||
@@ -1715,247 +1719,5 @@ export default {
|
||||
IncorrectEmailFormat: '请输入正确的邮箱格式',
|
||||
CompleteVerificationCode: '请输入完整的验证码',
|
||||
PleaseEnterYourAccountNumberOrPassword: '请输入您的账号或密码'
|
||||
},
|
||||
AwardsPage: {
|
||||
submitApplication: '提交申请',
|
||||
applicationDeadline: '申请期限:2026年7月15日',
|
||||
howToApply: '申请方法',
|
||||
stepByStep: '步骤指南',
|
||||
step1Title: '1. 成为 AiDA 订阅用户',
|
||||
step1Desc:
|
||||
'所有申请者在提交时必须是\n活跃的AiDA 订阅用户。\n您可以选择按月或按年订阅。',
|
||||
step2Title: '2. 通过 AiDA 设计您的作品',
|
||||
step2Desc: '申请者必须仅使用AiDA\n平台完成设计作品。',
|
||||
step2ListTitle: '您的作品应清楚体现以下内容:',
|
||||
step2List: [
|
||||
'· AiDA在创作中的应用方式',
|
||||
'· 您的设计理念和创意方向',
|
||||
'· AI与人类创意的融合'
|
||||
],
|
||||
step3Title: '3. 准备提交材料',
|
||||
processVideo: '创作过程视频',
|
||||
processVideoDesc: '请提供一段屏幕录制视频,展示您\n使用AiDA的创作过程。',
|
||||
videoRequirements: '视频要求:',
|
||||
videoFormat: '格式:MP4',
|
||||
videoResolution: '分辨率:1080×1920px',
|
||||
videoDuration: '时长:最长1分钟',
|
||||
videoSize: '文件大小:不超过20MB',
|
||||
fileName: '文件命名',
|
||||
fileNameDesc: 'AiDAGlobalDesignAward\n2026_[你的名字]',
|
||||
designPortfolio: '设计作品集(PDF)',
|
||||
submitPdf: '提交一份包含以下内容的单一PDF文件:',
|
||||
requiredStructure: '',
|
||||
pdfDesignTitle: '设计标题',
|
||||
pdfMoodboard: '灵感板,情绪板',
|
||||
pdfConcept: '概念说明',
|
||||
pdfConceptDesc: '(说明如何使用AiDA进行设计创作)',
|
||||
pdfRequirements: 'PDF要求:',
|
||||
pdfMaxPages: '最多15页',
|
||||
pdfMaxSize: '最大文件大小:不超过20MB',
|
||||
pdfLanguage: '语言:英文,或本国语言附带英文翻译',
|
||||
step4Title: '4. 决赛入围选手提交要求',
|
||||
step4Subtitle: '(前20名设计师)',
|
||||
step4Desc: '入围的20名决赛选手需提交实体服装以供最终评审。',
|
||||
finalistPieces: '件数:1件套装',
|
||||
finalistBasedOn: '服装要求:必须根据提交的AiDA生成设计制作',
|
||||
finalistShipping: '运输说明:\n将由Code-create提供',
|
||||
bloomYourCreativity: '绽放你的创造力',
|
||||
themeOf2026: '赛事主题',
|
||||
bloomText: {
|
||||
desc1: {
|
||||
regular1: '',
|
||||
bold1: 'AiDA全球设计奖2026',
|
||||
regular2: '是由全球领先的AI时尚解决方案提供商',
|
||||
bold2: ' Code-create ',
|
||||
regular3: '主办的',
|
||||
bold3: '国际设计竞赛,\n',
|
||||
regular4:
|
||||
'旨在庆祝人工只能赋能下的未来创意。该赛事汇聚来自世界各地的设计师,\n将AI视为创意伙伴,突破传统时尚边界,探索技术与人类想象力结合的无限可能。',
|
||||
bold4: '',
|
||||
regular5: ''
|
||||
},
|
||||
desc2: {
|
||||
regular1: '本届大赛以',
|
||||
bold1: '"想象遇见创新,创意绽放"',
|
||||
regular2:
|
||||
'为主题,邀请参赛者将大胆创意转化为非凡设计,\n在 AI 辅助下实现艺术与科技的完美融合。AiDA 鼓励设计师突破常规,挑战时尚边界,\n并通过平台展示才华,与全球同行、行业领袖及 AI 专家建立深度联系,共同探索未来设计的可能。'
|
||||
}
|
||||
},
|
||||
panelOfJudges: '终审评委团',
|
||||
expertise: '权威阵容',
|
||||
judgesHat: {
|
||||
jae: 'Code‑Create 韩国分公司总监\nBesfxxk 创意总监',
|
||||
diego: 'OnTheList(香港)\n联合创始人兼首席执行官',
|
||||
gregory: 'Gabriela Hearst\n(意大利)高级设计师',
|
||||
vincenzo: '《南华早报》Style 杂志\n(香港)主编',
|
||||
tim: '现代传播集团\n(上海)时尚总监',
|
||||
desmond: '《Vogue》\n(新加坡)主编'
|
||||
},
|
||||
awardPrizes: '奖项与奖金',
|
||||
recognition: '荣誉认可',
|
||||
grandMoney: '5,000美元',
|
||||
goldMoney: '3,000美元',
|
||||
silverMoney: '1,000美元',
|
||||
grandAwards: '最高奖项',
|
||||
goldAwards: '金奖',
|
||||
silverAwards: '银奖',
|
||||
finalists: '决赛选手',
|
||||
cashAward: '现金奖励',
|
||||
awardCertificate: '获奖证书',
|
||||
globalMediaExposure: '全球媒体曝光',
|
||||
awardCertification: '获奖认证',
|
||||
TravelAllowance: '差旅补贴',
|
||||
selectionCriteria: '作品评选',
|
||||
evaluation: '考量标准',
|
||||
originality: '原创性',
|
||||
originalityDesc:
|
||||
'作品应体现设计师的独到视角与创新方法,展现突破常规的创意与实验性设计。',
|
||||
creativity: '创造力',
|
||||
creativityDesc:
|
||||
'作品应展现设计师的艺术视野与卓越设计水准,体现高水平的创意表达与专业执行力。',
|
||||
aidaIntegration: 'AiDA 创意整合程度',
|
||||
aidaIntegrationDesc:
|
||||
'作品应充分利用 AiDA 功能, 展现 AI 辅助创作在设计中的 有效应用与创新整合。',
|
||||
execution: '样衣做工',
|
||||
executionDesc:
|
||||
'作品应具备高水平的呈现质量与精湛的技术工艺,体现专业执行力与细节把控能力。',
|
||||
totalCashPrizes: '最高可达9,000美元',
|
||||
totalCashPrizesLabel: '现金奖励总额',
|
||||
globalMediaExpose: '全球媒体曝光',
|
||||
globalMediaExposeLabel: '由国际顶级媒体平台展示',
|
||||
networkingOpportunities: '链接全球行业人脉',
|
||||
networkingOpportunitiesLabel: '对接设计师与行业领军人物',
|
||||
awardCeremonyHongKong: '香港颁奖盛会',
|
||||
awardCeremonyLabel: '入围者享有差旅支持',
|
||||
competitionTimeline: '赛事时间表',
|
||||
shapingTheFuture: '重要节点',
|
||||
timelineApplicationLabel: '申请期限',
|
||||
timelineDeadlineLabel: '',
|
||||
timeJul15: '7月15日',
|
||||
applicationDeadlineDesc: '申请截止日期及\n作品审核流程开始',
|
||||
twentyFinalistsAnnounced: '20名入围者揭晓',
|
||||
announcedLabel: '',
|
||||
timeAug30: '8月30日',
|
||||
twentyFinalistsDesc: '公布进入终评阶段的 20 名入围者',
|
||||
finalistSubmission: '入围设计作品',
|
||||
submissionLabel: '提交最后期限',
|
||||
timeSept30: '9月30日',
|
||||
finalistSubmissionDesc: '入围者上传完成的设计\n作品以进行终评',
|
||||
receivingOutfits: '入围者',
|
||||
fromFinalistsLabel: '提交成衣',
|
||||
timeOctober: '10月',
|
||||
receivingOutfitsDesc: 'AiDA 接收每位入围\n的1套实物服装',
|
||||
awardCeremony: '奖项颁发仪式',
|
||||
ceremonyLabel: '',
|
||||
timeNov12: '11月12日',
|
||||
awardCeremonyDesc: '颁奖盛典与设计师社\n群聚会 – Soho House',
|
||||
submissionSuccessful: '提交成功',
|
||||
submissionSuccessfulDesc:
|
||||
'请在 AiDA 平台内的消息中查看您提交的信息。如有需要,您可以进行修改。\n比赛的最新消息和结果将通过邮箱发送。',
|
||||
deadlinePassed: '申请截止日期已过',
|
||||
deadlinePassedDesc:
|
||||
'AiDA 全球设计奖 2026 的作品提交已截止。\n我们不再接受新的报名。',
|
||||
uploadInProgress: '上传中…',
|
||||
uploadSuccess: '上传成功',
|
||||
uploadFailed: '上传失败',
|
||||
pdfFileTip: 'PDF文件,不超过20MB',
|
||||
videoFileTip: '视频文件(MP4, MOV),1080p,不超过100MB',
|
||||
wechatTitle: '微信公众号',
|
||||
wechatDesc: '请使用微信扫描二维码'
|
||||
},
|
||||
AwardApply: {
|
||||
// 页面主标题区域
|
||||
applicationForm: '参赛表格',
|
||||
emailVerification: '邮箱验证',
|
||||
aidaUsersOnly: '仅限 AiDA 用户',
|
||||
slogan: '绽放你的创意 • AiDA 全球设计奖 2026',
|
||||
// 邮箱验证部分
|
||||
emailAddress: '邮箱',
|
||||
sendCode: '发送验证码',
|
||||
pleaseUseRegisteredEmail: '请使用您在 AiDA 注册的邮箱',
|
||||
// 个人信息部分
|
||||
personalInformation: '个人信息',
|
||||
tellUsAboutYourself: '自我介绍',
|
||||
firstName: '名',
|
||||
lastName: '姓',
|
||||
gender: '性别',
|
||||
occupation: '职业',
|
||||
age: '年龄',
|
||||
countryRegionCity: '国家或地区及城市',
|
||||
phoneNumber: '电话号码',
|
||||
portfolioUrl: '作品集网址或Instagram(可选)',
|
||||
// 性别选项
|
||||
male: '男',
|
||||
female: '女',
|
||||
other: '其他',
|
||||
// 设计信息部分
|
||||
designInformation: '作品信息',
|
||||
shareYourCreativeVision: '分享您的创意构想',
|
||||
designTitle: '作品标题',
|
||||
designDescription: '设计说明',
|
||||
designDescriptionPlaceholder: '请简要描述您的设计理念、灵感和创意方向...',
|
||||
// 提交文件部分
|
||||
submissionFiles: '作品上传',
|
||||
uploadYourDesignMaterials: '上传你的设计材料',
|
||||
submissionRequirements: '提交要求',
|
||||
pdfRequirement: `单独PDF文件\n 作品标题、灵感板及情绪板,设计说明\n+ 4套服装设计及材料说明(页数:最多15页)`,
|
||||
rightContent: {
|
||||
format: '格式:单个 PDF 文件,最多15页,最大 20MB',
|
||||
video: `视频:创作过程,分辨率1080×1920 像素\n(9:16 纵向比例),最长 60 秒`
|
||||
},
|
||||
// PDF 上传
|
||||
uploadPdfTitle: '您在设计过程中如何使用 AiDA?',
|
||||
clickToUploadPdf: '点击选择或拖拽文件上传',
|
||||
pdfFileLimit: 'PDF 文件,不超过 20MB',
|
||||
// 视频上传
|
||||
uploadVideoTitle: '您在设计过程中如何使用 AiDA?',
|
||||
clickToUploadVideo: '点击选择或拖拽文件上传',
|
||||
videoFileLimit: '视频文件(MP4, MOV),1080P,不超过100MB',
|
||||
// 条款与条件
|
||||
termsAndConditions: '参赛条款',
|
||||
conditionFirst: '我确认所提交的作品均为原创,且由我本人独立创作。',
|
||||
conditionSecond:
|
||||
'我知悉 Code-Create 对提交的所有设计及视频享有市场宣传和推广权利。',
|
||||
conditionThird: '我同意在入围决赛后参加相关活动,包括 AiDA 培训及颁奖典礼。',
|
||||
conditionFourth: '我希望接收有关 AiDA 产品及未来比赛的最新信息。(可选)',
|
||||
// 提交按钮
|
||||
submitYourDesign: '提交作品',
|
||||
unfinishedFormTip: 'AiDA 平台内消息中的链接可保存您未完成的表单。',
|
||||
// 验证码弹窗
|
||||
checkYourEmail: '请查看您的邮箱',
|
||||
enterSixDigitCode: '请输入发送到邮箱的 6 位验证码',
|
||||
verify: '验证',
|
||||
resendCode: '重新发送',
|
||||
resendCodeIn: '重新发送',
|
||||
// 验证消息
|
||||
verificationSuccess: '验证成功!',
|
||||
pleaseVerifyEmailFirst: '请先验证您的邮箱',
|
||||
pleaseCheckTerms: '请同意参赛条款',
|
||||
pleaseFillRequiredFields: '请填写所有必填项',
|
||||
pleaseEnterCompleteCode: '请输入完整的6位验证码',
|
||||
// 上传状态
|
||||
fileUploadedSuccess: '文件上传成功。',
|
||||
fileUploadFailed: '文件上传失败。',
|
||||
// 验证器消息
|
||||
pleaseInputEmail: '请输入邮箱地址',
|
||||
pleaseInputValidEmail: '请输入有效的邮箱地址',
|
||||
pleaseInputFirstName: '请输入您的名',
|
||||
pleaseInputLastName: '请输入您的姓',
|
||||
pleaseSelectGender: '请选择您的性别',
|
||||
pleaseInputOccupation: '请输入您的职业',
|
||||
pleaseInputAge: '请输入您的年龄',
|
||||
pleaseInputCountry: '请输入您的国家/地区及城市',
|
||||
pleaseInputPhoneNumber: '请输入您的电话号码',
|
||||
pleaseInputValidPhone: '请输入有效的电话号码',
|
||||
pleaseInputDigits: '请输入数字',
|
||||
pleaseInputDesignTitle: '请输入您的作品标题',
|
||||
pleaseInputDesignDescription: '请输入您的设计说明',
|
||||
pleaseUploadPdf: '请上传您的PDF文件',
|
||||
pleaseUploadVideo: '请上传您的视频文件',
|
||||
uploadPdfOnly: '请仅上传 PDF 文件。',
|
||||
uploadVideoOnly: '请仅上传 MP4 或 MOV 文件。',
|
||||
fileSizeExceeds: '文件大小超过 {sizeLimit} 限制。请上传较小的文件。',
|
||||
videoDurationExceeds: '视频时长不可超过60秒',
|
||||
uploadFailed: '上传失败'
|
||||
}
|
||||
}
|
||||
|
||||
317
src/lang/en.ts
317
src/lang/en.ts
@@ -133,8 +133,7 @@ export default {
|
||||
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.',
|
||||
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:
|
||||
@@ -556,8 +555,7 @@ export default {
|
||||
inputContent1: 'Input prompt',
|
||||
GeneratePrint: 'Pattern',
|
||||
maximumLength: 'The entered content exceeds the maximum length.',
|
||||
PatternTitle:
|
||||
'Generates repeatable designs that can be fully tiled across garments.',
|
||||
PatternTitle: 'Generates repeatable designs that can be fully tiled across garments.',
|
||||
LogoTitle:
|
||||
'Creates standalone graphic designs that can be placed individually or tiled.',
|
||||
SloganTitle:
|
||||
@@ -1006,15 +1004,21 @@ export default {
|
||||
subscriptionRenewal: 'There are no subscription plans with automatic renewal.'
|
||||
},
|
||||
guide: {
|
||||
guide1: "You can personalize your design settings right here in the <strong>Workspace</strong>, including choosing to design for men's or women's wear, as well as selecting the mannequin to use for your creations.",
|
||||
guide1:
|
||||
"You can personalize your design settings right here in the <strong>Workspace</strong>, 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.',
|
||||
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 <strong>Upload</strong>, allowing you to <stront>upload</stront> directly from your local device.',
|
||||
guide7: "The second method is to select from your <strong>Library</strong>. <br> 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 <strong>Generate</strong> images using the latest Image Generation technology.',
|
||||
guide9: 'Enter keywords that capture the mood you wish to express and then click the <strong>Low Quality</strong> button.',
|
||||
guide6:
|
||||
'For the Moodboard, Printboard, or Sketchboard, we provide three different sourcing methods to add images. The first option is <strong>Upload</strong>, allowing you to <stront>upload</stront> directly from your local device.',
|
||||
guide7:
|
||||
"The second method is to select from your <strong>Library</strong>. <br> 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 <strong>Generate</strong> images using the latest Image Generation technology.',
|
||||
guide9:
|
||||
'Enter keywords that capture the mood you wish to express and then click the <strong>Low Quality</strong> button.',
|
||||
guide10: 'Select two images for your moodboard.',
|
||||
guide11: 'Click here to layout your moodboard.',
|
||||
guide12: 'Click here for next step.',
|
||||
@@ -1064,8 +1068,7 @@ export default {
|
||||
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.',
|
||||
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.',
|
||||
@@ -1229,8 +1232,7 @@ export default {
|
||||
touchDevicePrompts_2: 'Double-click an element to quickly enter edit mode.',
|
||||
touchDevicePrompts_3: 'Two-finger drag to pan the canvas.',
|
||||
touchDevicePrompts_4: 'Pinch to zoom.',
|
||||
touchDevicePrompts_5:
|
||||
"Two-finger tap to display the element's transform handles.",
|
||||
touchDevicePrompts_5: "Two-finger tap to display the element's transform handles.",
|
||||
touchDevicePrompts_6: 'Three-finger swipe left or right to undo/redo.',
|
||||
TheDetectedPlatform: 'Guide Detected Platform',
|
||||
BasicOperations: 'Basic Operations',
|
||||
@@ -1361,8 +1363,7 @@ export default {
|
||||
furCurvature: 'Curvature',
|
||||
furCurvatureDescription: 'Control the degree of hair curvature',
|
||||
randomizeDirection: 'Random Cirection',
|
||||
randomizeDirectionDescription:
|
||||
'Whether to randomize the direction of hair growth',
|
||||
randomizeDirectionDescription: 'Whether to randomize the direction of hair growth',
|
||||
//水墨
|
||||
InkSettings: 'Ink painting settings',
|
||||
InkAmount: 'The amount of ink',
|
||||
@@ -1388,8 +1389,7 @@ export default {
|
||||
//马克笔
|
||||
MarkerSettings: 'Marker Settings',
|
||||
MarkerWidth: 'Brush stroke width',
|
||||
MarkerWidthDescription:
|
||||
'Control the width of the brush strokes with the marker pen',
|
||||
MarkerWidthDescription: 'Control the width of the brush strokes with the marker pen',
|
||||
MarkerCapStyle: 'Writing style',
|
||||
MarkerCapStyleDescription: 'Set the shape of the marker pen tip',
|
||||
MarkerCapStyleRound: 'Round',
|
||||
@@ -1520,18 +1520,15 @@ export default {
|
||||
CompositeMultiply: 'Multiply',
|
||||
CompositeMultiplyTip: 'Multiply: Darken the image',
|
||||
CompositeColorBurn: 'Color Burn',
|
||||
CompositeColorBurnTip:
|
||||
'Color Burn: Increase contrast and darken the bottom color',
|
||||
CompositeColorBurnTip: 'Color Burn: Increase contrast and darken the bottom color',
|
||||
CompositeLighten: 'Lighten',
|
||||
CompositeLightenTip: 'Lighten: Take the brightest color',
|
||||
CompositeScreen: 'Screen',
|
||||
CompositeScreenTip: 'Screen: Lighten the image',
|
||||
CompositeColorDodge: 'Color Dodge',
|
||||
CompositeColorDodgeTip:
|
||||
'Color Dodge: Reduce contrast and lighten the bottom color',
|
||||
CompositeColorDodgeTip: 'Color Dodge: Reduce contrast and lighten the bottom color',
|
||||
CompositeLighter: 'Color Dodge (Add)',
|
||||
CompositeLighterTip:
|
||||
'Color Dodge (Add): Add the brightness of the overlapping parts',
|
||||
CompositeLighterTip: 'Color Dodge (Add): Add the brightness of the overlapping parts',
|
||||
CompositeOverlay: 'Overlay',
|
||||
CompositeOverlayTip: 'Overlay: Highlight effect',
|
||||
CompositeSoftLight: 'Soft Light',
|
||||
@@ -1587,7 +1584,7 @@ export default {
|
||||
},
|
||||
event: {
|
||||
back: 'Back',
|
||||
detail:'View Details'
|
||||
detail: 'View Details'
|
||||
},
|
||||
admin: {
|
||||
allUser: 'All User',
|
||||
@@ -1669,7 +1666,8 @@ export default {
|
||||
ForgotPassword: '忘记密码',
|
||||
Welcome: 'Welcome to',
|
||||
AiDA: 'AiDA',
|
||||
Slogan: 'AiDA, a first-to-market technology that empowers fashion designers, based on their creative inspirations, to work with AI to create original designs.',
|
||||
Slogan:
|
||||
'AiDA, a first-to-market technology that empowers fashion designers, based on their creative inspirations, to work with AI to create original designs.',
|
||||
LoginMethod: 'Continue with one of these:',
|
||||
Individual: 'Individual',
|
||||
Academic: 'Academic',
|
||||
@@ -1710,8 +1708,7 @@ export default {
|
||||
IncorrectEmail: 'The email format is incorrect',
|
||||
IncorrectEmailFormat: 'The email format is incorrect',
|
||||
CompleteVerificationCode: 'Please enter the complete verification code.',
|
||||
PleaseEnterYourAccountNumberOrPassword:
|
||||
'Please enter your account number or password'
|
||||
PleaseEnterYourAccountNumberOrPassword: 'Please enter your account number or password'
|
||||
},
|
||||
LoginSchool: {
|
||||
School: 'School',
|
||||
@@ -1742,8 +1739,7 @@ export default {
|
||||
IncorrectEmail: 'The email format is incorrect',
|
||||
IncorrectEmailFormat: 'The email format is incorrect',
|
||||
CompleteVerificationCode: 'Please enter the complete verification code.',
|
||||
PleaseEnterYourAccountNumberOrPassword:
|
||||
'Please enter your account number or password'
|
||||
PleaseEnterYourAccountNumberOrPassword: 'Please enter your account number or password'
|
||||
},
|
||||
LoginEnterprise: {
|
||||
Enterprise: 'Enterprise',
|
||||
@@ -1773,265 +1769,6 @@ export default {
|
||||
IncorrectEmail: 'The email format is incorrect',
|
||||
IncorrectEmailFormat: 'The email format is incorrect',
|
||||
CompleteVerificationCode: 'Please enter the complete verification code.',
|
||||
PleaseEnterYourAccountNumberOrPassword:
|
||||
'Please enter your account number or password'
|
||||
},
|
||||
AwardsPage: {
|
||||
submitApplication: 'Submit your Application',
|
||||
applicationDeadline: 'Application Deadline:15th July 2026',
|
||||
howToApply: 'How to Apply',
|
||||
stepByStep: 'Step by step',
|
||||
step1Title: 'Step 1. Become an\nAiDA Subscriber',
|
||||
step1Desc:
|
||||
'All applicants must be active\nAiDA subscribers at the time of\nsubmission. You may subscribe\nunder either a monthly or yearly plan.',
|
||||
step2Title: 'Step 2. Create Your Design Using AiDA',
|
||||
step2Desc:
|
||||
'Applicants must create their\ndesigns exclusively using the\nAiDA platform. ',
|
||||
step2ListTitle: 'Your work should clearly demonstrate:',
|
||||
step2List: [
|
||||
'· How AiDA is used as a creative tool',
|
||||
'· Your design concept and creative direction',
|
||||
'· The intergration of AI and human creativity'
|
||||
],
|
||||
step3Title: 'Step 3. Prepare Your Submission',
|
||||
processVideo: 'Process Video',
|
||||
processVideoDesc:
|
||||
'Include a screen‑recorded video\nyour creative process\nusing AiDA.',
|
||||
videoRequirements: 'Video requirements:',
|
||||
videoFormat: 'Format: MP4',
|
||||
videoResolution: 'Resolution: 1080×1920 px',
|
||||
videoDuration: 'Duration: Maximum 1 minute',
|
||||
videoSize: 'File size: Maximum 20MB',
|
||||
fileName: 'File Name',
|
||||
fileNameDesc: 'AiDAGlobalDesignAward\n2026_[Your Full Name]',
|
||||
designPortfolio: 'Design Portfolio(PDF)',
|
||||
submitPdf: 'Submit one single PDF file that includes:',
|
||||
requiredStructure: 'Required structure:',
|
||||
pdfDesignTitle: 'Design title',
|
||||
pdfMoodboard: 'Moodboard',
|
||||
pdfConcept: 'Concept explanation',
|
||||
pdfConceptDesc: '(How to use AiDA to develop design)',
|
||||
pdfRequirements: 'PDF requirements:',
|
||||
pdfMaxPages: 'Maximum 15 pages',
|
||||
pdfMaxSize: 'Maximum file size: 20MB',
|
||||
pdfLanguage: 'Language: English or native language\nwith English translation',
|
||||
step4Title: 'Step 4. Finalist Requirement',
|
||||
step4Subtitle: '(for top 20 Designers)',
|
||||
step4Desc:
|
||||
'The 20 finalists will be required to\nsubmit physical garments for final\nevaluation',
|
||||
finalistPieces: 'Number of pieces: 1 full outfit',
|
||||
finalistBasedOn:
|
||||
'Garments must be produced\nbased on the submitted\nAiDA-generated designs',
|
||||
finalistShipping: 'Shipping instructions will be provided by\nCode-create',
|
||||
bloomYourCreativity: 'Bloom Your Creativity',
|
||||
themeOf2026: 'Theme of 2026',
|
||||
bloomText: {
|
||||
desc1: {
|
||||
regular1: 'The',
|
||||
bold1: 'AiDA Global Design Award 2026',
|
||||
regular2: 'is an ',
|
||||
bold2: 'international design competition ',
|
||||
regular3: 'hosted by ',
|
||||
bold3: 'Code-create ',
|
||||
regular4: ', a globally leading\n',
|
||||
bold4: 'AI fashion solutions provider,',
|
||||
regular5:
|
||||
'celebrating the future of creativity powered by artificial intelligence.\nBringing together designers from around the world, AiDA empowers AI as a creative partner—pushing fashion beyond traditional boundaries and unlocking new possibilities where technology amplifies human imagination.'
|
||||
},
|
||||
desc2: {
|
||||
regular1: 'Under the theme',
|
||||
bold1: '“Where Imagination Meets Innovation, Creativity Blooms,” ',
|
||||
regular2:
|
||||
'participants are invited to transform bold ideas into extraordinary designs, seamlessly merging human artistry with artificial intelligence to shape the next era of fashion.'
|
||||
}
|
||||
},
|
||||
bloomDesc1:
|
||||
'The AiDA Global Design Award 2026 is an\ninternational design competition hosted by\nCode‑Create, a globally leading AI fashion solutions provider,\ncelebrating the future of creativity powered by artificial intelligence.\nBringing together designers from around the world, AiDA empowers AI as a creative partner—pushing fashion beyond traditional boundaries and unlocking new possibilities where technology amplifies human imagination.',
|
||||
bloomDesc2:
|
||||
'Under the theme “Where Imagination Meets Innovation, Creativity Blooms,” participants are invited to transform bold ideas into extraordinary designs, seamlessly merging human artistry with artificial intelligence to shape the next era of fashion.',
|
||||
panelOfJudges: 'Panel of Judges',
|
||||
expertise: 'Expertise',
|
||||
judgesHat: {
|
||||
jae: 'Code-create\nKorea Branch Director\nBesfxxk creative director',
|
||||
diego: 'Co-founder & Chief Father\nOfficer of OnTheList\n(Hong Kong)',
|
||||
gregory: 'Senior Designer at\nGabriela Heasrst (Italy)',
|
||||
vincenzo: 'Cheif Editor of SCMP Style\n(Hong Kong)',
|
||||
tim: 'Group Fashion Direction of\n Modern Media Group\n(Shanghai)',
|
||||
desmond: 'Cheif Editor of Vogue\n(Singapore)'
|
||||
},
|
||||
awardPrizes: 'Award & Prizes',
|
||||
recognition: 'Recognition',
|
||||
grandMoney: 'US$5,000',
|
||||
goldMoney: 'US$3,000',
|
||||
silverMoney: 'US$1,000',
|
||||
grandAwards: 'Grand Awards',
|
||||
goldAwards: 'Gold Awards',
|
||||
silverAwards: 'Silver Awards',
|
||||
finalists: 'Finalists',
|
||||
cashAward: 'Cash Award',
|
||||
awardCertificate: 'Award Certificate',
|
||||
globalMediaExposure: 'Global Media Exposure',
|
||||
awardCertification: 'Award\nCertification',
|
||||
TravelAllowance: 'Travel Allowance',
|
||||
selectionCriteria: 'Selection Criteria',
|
||||
evaluation: 'Evaluation',
|
||||
originality: 'Originality',
|
||||
originalityDesc: 'Unique perspective and\ninnovative approach to\nfashion design',
|
||||
creativity: 'Creativity',
|
||||
creativityDesc: 'Artistic vision and exceptional\ndesign excellence',
|
||||
aidaIntegration: 'AiDA Integration',
|
||||
aidaIntegrationDesc: 'Effective application of\nAiDA functions',
|
||||
execution: 'Execution',
|
||||
executionDesc: 'Quality of presentation and\ntechnical craftsmanship',
|
||||
totalCashPrizes: 'UP TO\nUS$9000',
|
||||
totalCashPrizesLabel: 'In total cash prizes',
|
||||
globalMediaExpose: 'GLOBAL MEDIA\nEXPOSE',
|
||||
globalMediaExposeLabel: 'Showcased by top\ninternational media platforms',
|
||||
networkingOpportunities: 'NETWORKING\nOPPORTUNITIES',
|
||||
networkingOpportunitiesLabel:
|
||||
'Build connections with\ndesigners and industry leaders',
|
||||
awardCeremonyHongKong: 'AWARD CEREMONY\nIN HONG KONG',
|
||||
awardCeremonyLabel: 'Travel allowance\nprovided for finalists',
|
||||
competitionTimeline: 'Competition Timeline',
|
||||
shapingTheFuture: 'Shaping the Future',
|
||||
timelineApplicationLabel: 'Application',
|
||||
timelineDeadlineLabel: 'Deadline',
|
||||
timeJul15: 'Jul 15',
|
||||
applicationDeadlineDesc:
|
||||
'Application deadline and\nentry review process\nbegins.',
|
||||
twentyFinalistsAnnounced: '20 Finallists',
|
||||
announcedLabel: 'Announced',
|
||||
timeAug30: 'Aug 30',
|
||||
twentyFinalistsDesc:
|
||||
'Announcement of 20\nfinalists entering final\nevaluation stage.',
|
||||
finalistSubmission: 'Finallist\nSubmission',
|
||||
submissionLabel: 'Deadline',
|
||||
timeSept30: 'Sept 30',
|
||||
finalistSubmissionDesc:
|
||||
'Finalists submit\ncompleted outfits for\nfinal assessment.',
|
||||
receivingOutfits: 'Receiving Outfits',
|
||||
fromFinalistsLabel: 'from Finallists',
|
||||
timeOctober: 'October',
|
||||
receivingOutfitsDesc: 'AiDA receives physical\noutfits from all 20\nfinalists.',
|
||||
awardCeremony: 'Award',
|
||||
ceremonyLabel: 'Ceremony',
|
||||
timeNov12: 'Nov 12',
|
||||
awardCeremonyDesc: 'Award Ceremony &\nCommunity Gathering\n– Soho House.',
|
||||
submissionSuccessful: 'Submission Successful',
|
||||
submissionSuccessfulDesc:
|
||||
'Please review your submitted information in the AiDA in-platform message.\nYou may edit it if needed. Competition updates and results will be sent via email.',
|
||||
deadlinePassed: 'Application Deadline Passed',
|
||||
deadlinePassedDesc:
|
||||
'The submission deadline for AiDA Global Fashion Award 2026 has ended.\nWe are no longer accepting new applications.',
|
||||
uploadInProgress: 'Upload in progress…',
|
||||
uploadSuccess: 'Uploaded Successfully',
|
||||
uploadFailed: 'Upload failed',
|
||||
pdfFileTip: 'PDF file, max 20MB',
|
||||
videoFileTip: 'Video file (MP4, MOV), 1080p, max 100MB',
|
||||
wechatTitle: 'WeChat Official Account',
|
||||
wechatDesc: 'Scan the QR code in WeChat'
|
||||
},
|
||||
AwardApply: {
|
||||
// 页面主标题区域
|
||||
applicationForm: 'Application Form',
|
||||
emailVerification: 'Email Verification',
|
||||
aidaUsersOnly: 'AiDA Users Only',
|
||||
slogan: 'BLOOM YOUR CREATIVITY • AIDA GLOBAL DESIGN AWARDS 2026',
|
||||
// 邮箱验证部分
|
||||
emailAddress: 'Email Address',
|
||||
sendCode: 'Send Code',
|
||||
pleaseUseRegisteredEmail:
|
||||
'Please use the email address you registered with AiDA.',
|
||||
// 个人信息部分
|
||||
personalInformation: 'Personal Information',
|
||||
tellUsAboutYourself: 'Tell us about yourself',
|
||||
firstName: 'First Name',
|
||||
lastName: 'Last Name',
|
||||
gender: 'Gender',
|
||||
occupation: 'Occupation',
|
||||
age: 'Age',
|
||||
countryRegionCity: 'Country/Region and City',
|
||||
phoneNumber: 'Phone Number',
|
||||
portfolioUrl: 'Portfolio Website/Instagram (Optional)',
|
||||
// 性别选项
|
||||
male: 'Male',
|
||||
female: 'Female',
|
||||
other: 'Other',
|
||||
// 设计信息部分
|
||||
designInformation: 'Design Information',
|
||||
shareYourCreativeVision: 'Share your creative vision',
|
||||
designTitle: 'Design Title',
|
||||
designDescription: 'Design description',
|
||||
designDescriptionPlaceholder:
|
||||
'Briefly describe your design concept, inspiration, and creative direction...',
|
||||
// 提交文件部分
|
||||
submissionFiles: 'Submission Files',
|
||||
uploadYourDesignMaterials: 'Upload your design materials',
|
||||
submissionRequirements: 'Submission Requirements',
|
||||
pdfRequirement: `Single PDF file\n Title, mood board, elaboration\n+ 4 outfit design with materials (max 15 pages)`,
|
||||
rightContent: {
|
||||
format: 'Format: Single PDF file, 15 pages, maximum 20MB',
|
||||
video: `Video: Design process, 1080×1920 pixels (9:16 ratio), maximum 60 seconds`
|
||||
},
|
||||
// PDF 上传
|
||||
uploadPdfTitle: 'How will you use AiDA in your design process?',
|
||||
clickToUploadPdf: 'Click to upload or drag and drop',
|
||||
pdfFileLimit: 'PDF file, max 20MB',
|
||||
// 视频上传
|
||||
uploadVideoTitle: 'How will you use AiDA in your design process?',
|
||||
clickToUploadVideo: 'Click to upload or drag and drop',
|
||||
videoFileLimit: 'Video file (MP4, MOV), 1080p, max 100MB',
|
||||
// 条款与条件
|
||||
termsAndConditions: 'Terms & Conditions',
|
||||
conditionFirst:
|
||||
'I confirm that all submitted work is original and created by me.',
|
||||
conditionSecond:
|
||||
'I understand that Code-Create has marketing and promotional rights to all submitted designs and videos.',
|
||||
conditionThird:
|
||||
'I agree to participate in finalist activities if selected, including AiDA training and award ceremony.',
|
||||
conditionFourth:
|
||||
'I would like to receive updates about AiDA products and future competitions. (Optional)',
|
||||
// 提交按钮
|
||||
submitYourDesign: 'Submit your Design',
|
||||
unfinishedFormTip:
|
||||
'The link in the AiDA in-platform message will save your unfinished form.',
|
||||
// 验证码弹窗
|
||||
checkYourEmail: 'Check your email',
|
||||
enterSixDigitCode: 'Enter the 6-digit code sent to',
|
||||
verify: 'Verify',
|
||||
resendCode: 'Resend',
|
||||
resendCodeIn: 'Resend Code in',
|
||||
// 验证消息
|
||||
verificationSuccess: 'Verification successful!',
|
||||
pleaseVerifyEmailFirst: 'Please verify your email first',
|
||||
pleaseCheckTerms: 'Please agree to the terms and conditions',
|
||||
pleaseFillRequiredFields: 'Please fill in all the required fields',
|
||||
pleaseEnterCompleteCode: 'Please enter the complete 6-digit verification code',
|
||||
// 上传状态
|
||||
fileUploadedSuccess: '{fileName} file uploaded successfully.',
|
||||
fileUploadFailed: '{fileName} file upload failed.',
|
||||
// 验证器消息
|
||||
pleaseInputEmail: 'Please input the email address',
|
||||
pleaseInputValidEmail: 'Please input a valid email address',
|
||||
pleaseInputFirstName: 'Please input your first name',
|
||||
pleaseInputLastName: 'Please input your last name',
|
||||
pleaseSelectGender: 'Please select your gender',
|
||||
pleaseInputOccupation: 'Please input your occupation',
|
||||
pleaseInputAge: 'Please input your age',
|
||||
pleaseInputCountry: 'Please input your country/region and city',
|
||||
pleaseInputPhoneNumber: 'Please enter your phone number.',
|
||||
pleaseInputValidPhone: 'Please enter a valid phone number.',
|
||||
pleaseInputDigits: 'Please enter digits only',
|
||||
pleaseInputDesignTitle: 'Please input your design title',
|
||||
pleaseInputDesignDescription: 'Please input your design description',
|
||||
pleaseUploadPdf: 'Please upload your PDF',
|
||||
pleaseUploadVideo: 'Please upload your video',
|
||||
uploadPdfOnly: 'Please upload a PDF file only.',
|
||||
uploadVideoOnly: 'Please upload a MP4 or MOV file only.',
|
||||
fileSizeExceeds:
|
||||
'File size exceeds {sizeLimit} limit. Please upload a smaller file.',
|
||||
videoDurationExceeds:
|
||||
'Video duration exceeds 60 seconds limit. Please upload a shorter video.',
|
||||
uploadFailed: 'Upload failed'
|
||||
PleaseEnterYourAccountNumberOrPassword: 'Please enter your account number or password'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -53,6 +53,12 @@ const routes: Array<RouteRecordRaw> = [
|
||||
meta: { enter: "all" },
|
||||
component: () => import("@/views/Register.vue"),
|
||||
},
|
||||
{
|
||||
path: "/register/:lang",
|
||||
name: "registerLang",
|
||||
meta: { enter: "all" },
|
||||
component: () => import("@/views/Register.vue"),
|
||||
},
|
||||
{
|
||||
path: "/upgrade",
|
||||
name: "upgrade",
|
||||
|
||||
@@ -74,7 +74,7 @@ const HomeStoreModule : Module<DesignDetail,RootState> = {
|
||||
},
|
||||
setPoseTransferLastFrameList(state,data){
|
||||
// 支持两种方式:set 替换整个列表;add/删除与 uploadElement 一致
|
||||
if(data.str === 'set'){
|
||||
if(data?.str === 'set'){
|
||||
state.lastFrameList = data.list || []
|
||||
return
|
||||
}else{
|
||||
|
||||
@@ -77,7 +77,7 @@ const userHabit : Module<UserHabit,RootState> = {
|
||||
followeeCount: '-',
|
||||
followerCount: '-',
|
||||
accountExtendList:null,
|
||||
systemList:[],
|
||||
systemList:[1],
|
||||
expireTime:null,
|
||||
language:'',
|
||||
organizationId: null,
|
||||
@@ -194,7 +194,7 @@ const userHabit : Module<UserHabit,RootState> = {
|
||||
followeeCount: '-',
|
||||
followerCount: '-',
|
||||
accountExtendList:null,
|
||||
systemList:[],
|
||||
systemList:[1],
|
||||
expireTime:null,
|
||||
language:'',
|
||||
organizationId: null,
|
||||
@@ -407,7 +407,7 @@ const userHabit : Module<UserHabit,RootState> = {
|
||||
item.name = name
|
||||
});
|
||||
// const {t} = useI18n()
|
||||
rv.unshift({name:t('Model.all'),value:'',id:''})
|
||||
rv.unshift({name:t('Model.all'),value:'',id:null})
|
||||
store.commit('setMannequinStyle',rv)
|
||||
resolve('')
|
||||
}
|
||||
|
||||
@@ -74,7 +74,8 @@ const Workspace: Module<DesignDetail, RootState> = {
|
||||
},
|
||||
setProbject(state, data) {
|
||||
for (const key in data) {
|
||||
if (data[key] == undefined) continue
|
||||
let list = ['styleName','styleId','style']
|
||||
if (data[key] == undefined && !list.includes(key)) continue
|
||||
state.probjects[key] = data[key]
|
||||
}
|
||||
},
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1721,9 +1721,8 @@ export default defineComponent({
|
||||
sloganText = this.captionGeneration
|
||||
if(this.selectCode == "Sketchboard"){
|
||||
level2Type = this.selectGenerateList?.[0]?.categoryValue?this.selectGenerateList[0].categoryValue:''
|
||||
if(this.workspace.styleName){
|
||||
sloganText = `${this.workspace.styleName},${sloganText}`
|
||||
}
|
||||
// sloganText = `${this.workspace.styleName || 'all'},${sloganText}`
|
||||
sloganText = `'all',${sloganText}`
|
||||
}else if(this.selectCode == "Printboard"){
|
||||
level2Type = this.scene?.value
|
||||
if(level2Type == 'Slogan' && this.captionGeneration == ''){
|
||||
|
||||
@@ -85,7 +85,7 @@ import {
|
||||
import { setCookie, getCookie, WriteCookie, clonAllCookie } from '@/tool/cookie'
|
||||
import { Https } from '@/tool/https'
|
||||
import { useStore } from 'vuex'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { useRouter, useRoute } from 'vue-router'
|
||||
import signUp from '@/component/mainPage/signUp/index.vue'
|
||||
export default defineComponent({
|
||||
components: {
|
||||
@@ -93,6 +93,7 @@ export default defineComponent({
|
||||
},
|
||||
setup() {
|
||||
const store = useStore()
|
||||
const route = useRoute();
|
||||
const router = useRouter()
|
||||
let data = reactive({
|
||||
homeRecommendMax: null,
|
||||
@@ -148,7 +149,14 @@ export default defineComponent({
|
||||
|
||||
onMounted(() => {
|
||||
updataIsMoblie()
|
||||
const savedLang = localStorage.getItem('loginLanguage')
|
||||
let savedLang = localStorage.getItem('loginLanguage') || 'ENGLISH'
|
||||
if(route?.params?.lang == 'cn'){
|
||||
savedLang = 'CHINESE_SIMPLIFIED'
|
||||
localStorage.setItem('loginLanguage', savedLang)
|
||||
}else if(route?.params?.lang == 'en'){
|
||||
savedLang = 'ENGLISH'
|
||||
localStorage.setItem('loginLanguage', savedLang)
|
||||
}
|
||||
if (savedLang) {
|
||||
data.isSelectSuccessively = savedLang === 'CHINESE_SIMPLIFIED'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user