번역수정
This commit is contained in:
parent
521bfd4303
commit
325c2c1cc0
@ -84,7 +84,7 @@ export function useAuxiliaryDrawing(id, isUseEffect = true) {
|
||||
// innerLines가 있을경우 삭제
|
||||
const roofs = canvas?.getObjects().filter((obj) => obj.name === POLYGON_TYPE.ROOF)
|
||||
if (roofs.length === 0) {
|
||||
swalFire({ text: '지붕형상이 없습니다.' })
|
||||
swalFire({ text: getMessage('roof.line.not.found') })
|
||||
closePopup(id)
|
||||
return
|
||||
}
|
||||
|
||||
@ -52,7 +52,7 @@ export function useEavesGableEdit(id) {
|
||||
useEffect(() => {
|
||||
const outerLines = canvas.getObjects().filter((obj) => obj.name === 'outerLine')
|
||||
if (!outerLineFix || outerLines.length === 0) {
|
||||
swalFire({ text: '외벽선이 없습니다.' })
|
||||
swalFire({ text: getMessage('wall.line.not.found') })
|
||||
closePopup(id)
|
||||
}
|
||||
}, [])
|
||||
|
||||
@ -51,7 +51,7 @@ export function useRoofShapePassivitySetting(id) {
|
||||
useEffect(() => {
|
||||
const outerLines = canvas.getObjects().filter((obj) => obj.name === 'outerLine')
|
||||
if (!outerLineFix || outerLines.length === 0) {
|
||||
swalFire({ text: '외벽선이 없습니다.' })
|
||||
swalFire({ text: getMessage('wall.line.not.found') })
|
||||
closePopup(id)
|
||||
return
|
||||
}
|
||||
|
||||
@ -191,7 +191,7 @@ export function useRoofShapeSetting(id) {
|
||||
let direction
|
||||
|
||||
if (outerLines.length < 2) {
|
||||
swalFire({ text: '외벽선이 없습니다.', icon: 'error' })
|
||||
swalFire({ text: getMessage('wall.line.not.found') })
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
@ -60,7 +60,7 @@ export function useWallLineOffsetSetting(id) {
|
||||
useEffect(() => {
|
||||
const outerLines = canvas.getObjects().filter((obj) => obj.name === 'outerLine')
|
||||
if (outerLines.length === 0) {
|
||||
swalFire({ text: '외벽선이 없습니다.' })
|
||||
swalFire({ text: getMessage('wall.line.not.found') })
|
||||
closePopup(id)
|
||||
return
|
||||
}
|
||||
|
||||
@ -37,7 +37,7 @@
|
||||
"modal.roof.shape.setting.patten.a": "Aパターン",
|
||||
"modal.roof.shape.setting.patten.b": "Bパターン",
|
||||
"modal.roof.shape.setting.side": "別に設定",
|
||||
"plan.menu.roof.cover": "屋根作図",
|
||||
"plan.menu.roof.cover": "伏せ図入力",
|
||||
"plan.menu.roof.cover.outline.drawing": "外壁線を描く",
|
||||
"plan.menu.roof.cover.roof.shape.setting": "屋根形状の設定",
|
||||
"plan.menu.roof.cover.roof.shape.passivity.setting": "屋根形状の手動設定",
|
||||
@ -72,7 +72,7 @@
|
||||
"common.setting.rollback": "前に戻る",
|
||||
"modal.cover.outline.remove": "外壁の取り外し",
|
||||
"modal.cover.outline.select.move": "外壁選択の移動",
|
||||
"plan.menu.placement.surface": "配置面",
|
||||
"plan.menu.placement.surface": "実測値入力",
|
||||
"plan.menu.placement.surface.slope.setting": "傾斜設定",
|
||||
"plan.menu.placement.surface.drawing": "配置面の描画",
|
||||
"modal.placement.surface.drawing.straight.line": "直線",
|
||||
@ -1035,5 +1035,7 @@
|
||||
"outerLine.property.fix": "外壁線の属性設定 を完了しますか?",
|
||||
"outerLine.property.close": "外壁線の属性設定 を終了しますか?",
|
||||
"want.to.complete.auxiliary.creation": "보補助線の作成を完了しますか?",
|
||||
"modal.placement.initial.setting.plan.drawing.only.number": "(※数字は[半角]入力のみ可能です。)"
|
||||
"modal.placement.initial.setting.plan.drawing.only.number": "(※数字は[半角]入力のみ可能です。)",
|
||||
"wall.line.not.found": "外壁がありません",
|
||||
"roof.line.not.found": "屋根形状がありません"
|
||||
}
|
||||
|
||||
@ -1035,5 +1035,7 @@
|
||||
"outerLine.property.fix": "외벽선 속성 설정을 완료하시겠습니까?",
|
||||
"outerLine.property.close": "외벽선 속성 설정을 종료하시겠습니까?",
|
||||
"want.to.complete.auxiliary.creation": "보조선 작성을 완료하시겠습니까?",
|
||||
"modal.placement.initial.setting.plan.drawing.only.number": "(※ 숫자는 [반각]입력만 가능합니다.)"
|
||||
"modal.placement.initial.setting.plan.drawing.only.number": "(※ 숫자는 [반각]입력만 가능합니다.)",
|
||||
"wall.line.not.found": "외벽선이 없습니다.",
|
||||
"roof.line.not.found": "지붕형상이 없습니다."
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user