diff --git a/public/libs/nav-manager.js b/public/libs/nav-manager.js index b4bec19..a14f8d7 100644 --- a/public/libs/nav-manager.js +++ b/public/libs/nav-manager.js @@ -96,7 +96,14 @@ async function loadPage(path) { //๋ฒˆ์—ญ async function loadTranslations(lang) { - const namespaces = ["header", "index"]; + const namespaces = [ + "header", + "index", + "contents", + "map-page", + "aiSchedule", + "my-page", + ]; const loaded = await Promise.all( namespaces.map((ns) => fetch(`/locales/${lang}/${ns}.json`, { cache: "no-store" }) @@ -242,7 +249,7 @@ function updateLoginUI(isLoggedIn, displayName = "") { loginBtn: !!loginBtn, logoutBtn: !!logoutBtn, isLoggedIn, - displayName + displayName, }); if (!loginBtn) { diff --git a/public/locales/en/aiSchedule.json b/public/locales/en/aiSchedule.json new file mode 100644 index 0000000..91086a8 --- /dev/null +++ b/public/locales/en/aiSchedule.json @@ -0,0 +1,28 @@ +{ + "title": { + "main": "AI Travel Recommendation" + }, + "breadcrumb": { + "main": "AI Recommend" + }, + "filter": { + "all": "All", + "drama": "Drama", + "movie": "Movie", + "kpop": "K-POP" + }, + "label": { + "cost": "Estimated Cost", + "days": "Recommended Duration", + "distance": "Distance", + "transport": "Transportation" + }, + "button": { + "recommend": "Get AI Recommendation", + "top": "Back to Top" + }, + "footer": { + "copy": "ยฉ 2025 Codetour. All rights reserved." + } +} + diff --git a/public/locales/en/contents.json b/public/locales/en/contents.json new file mode 100644 index 0000000..e29cd0f --- /dev/null +++ b/public/locales/en/contents.json @@ -0,0 +1,26 @@ +{ + "title": { + "main": "K-Spot - Korean Wave Travel Platform" + }, + "recent": { + "title": "Recently Visited Places", + "clearAll": "Clear All" + }, + "content": { + "title": "Destinations by Content", + "subtitle": "Find filming locations from your favorite dramas, movies, and shows" + }, + "tab": { + "kpop": "K-Pop", + "kdrama": "K-Drama/Movie", + "kwebtoon": "K-Webtoon", + "kfood": "K-Food", + "kent": "K-Entertainment" + }, + "footer": { + "copy": "ยฉ Kspot" + }, + "modal": { + "close": "Close" + } +} diff --git a/public/locales/en/map-page.json b/public/locales/en/map-page.json new file mode 100644 index 0000000..fcd11df --- /dev/null +++ b/public/locales/en/map-page.json @@ -0,0 +1,69 @@ +{ + "header": { + "title": "๐Ÿ‡บ๐Ÿ‡ธ K-Content Travel Map", + "subtitle": "Create your own special travel course with K-content" + }, + "btn": { + "home": "Home", + "search": "Search", + "saveCourse": "๐Ÿ’พ Save Course", + "showRoute": "๐Ÿš— Show Route", + "aiRecommend": "๐Ÿค– Get AI Recommendation", + "load": "Load", + "delete": "Delete", + "addToCourse": "+ Add to Course" + }, + "section": { + "search": "๐Ÿ” Search", + "myCourse": "๐Ÿ“ My Travel Course", + "savedCourses": "๐Ÿ’Ž Saved Courses" + }, + "tab": { + "place": "Search by Place", + "content": "Search by Content" + }, + "placeholder": { + "placeSearch": "Search by place name or address..." + }, + "option": { + "selectContent": "Select content...", + "selectUser": "Select user..." + }, + "hint": { + "dragOrder": "You can change the order by dragging" + }, + "user": { + "user1": "User 1", + "user2": "User 2", + "user3": "User 3" + }, + "alert": { + "enterSearch": "Please enter a search term ๐Ÿ˜Š", + "noResults": "No search results ๐Ÿ˜ข", + "selectContent": "Please select content ๐Ÿ˜Š", + "selectUser": "Please select a user ๐Ÿ˜Š", + "noLocations": "No filming locations for this content ๐Ÿ˜ข", + "deleteCourse": "Do you want to delete this course? ๐Ÿ—‘๏ธ", + "courseDeleted": "โœ… Course deleted!", + "addPlaces": "Please add places to your course ๐Ÿ“", + "courseNamePrompt": "Enter a name for your course โœจ", + "courseNameDefault": "My K-Travel Course", + "courseSaved": "๐ŸŽ‰ Saved successfully!\nCourse ID: ", + "saveFailed": "Failed to save ๐Ÿ˜ข", + "noSavedCourses": "No saved courses ๐Ÿ“ญ", + "courseLoaded": "โœจ Loaded course \"{name}\"!", + "minTwoPlaces": "You need at least 2 places to view the route ๐Ÿ—บ๏ธ", + "routeFailed": "Failed to load route ๐Ÿ˜ข", + "added": "โœจ {name} has been added to your course!" + }, + "route": { + "totalDistance": "๐Ÿ“ Total Distance: ", + "estimatedTime": "โฑ๏ธ Estimated Time: ", + "info": "๐Ÿš— Route Info" + }, + "text": { + "places": " places", + "km": " km", + "min": " min" + } +} diff --git a/public/locales/en/my-page.json b/public/locales/en/my-page.json new file mode 100644 index 0000000..1006738 --- /dev/null +++ b/public/locales/en/my-page.json @@ -0,0 +1,30 @@ +{ + "title": { + "mypage-main": "My Page" + }, + "subtitle": { + "nickname": "KimTravel" + }, + "card": { + "profile": { + "title": "Manage Personal Info", + "desc": "Change profile, email, password" + }, + "preference": { + "title": "Set Travel Preferences", + "desc": "Set interest tags, trips, travel styles" + }, + "favorite": { + "title": "Manage Favorite Content", + "desc": "View liked content, destinations, courses" + }, + "course": { + "title": "My Travel Courses", + "desc": "Create and save travel courses" + }, + "review": { + "title": "Manage Reviews", + "desc": "Manage written reviews and ratings" + } + } +} diff --git a/public/locales/ja/aiSchedule.json b/public/locales/ja/aiSchedule.json new file mode 100644 index 0000000..739527f --- /dev/null +++ b/public/locales/ja/aiSchedule.json @@ -0,0 +1,27 @@ +{ + "title": { + "main": "AIๆ—…่กŒใŠใ™ใ™ใ‚" + }, + "breadcrumb": { + "main": "AIใŠใ™ใ™ใ‚" + }, + "filter": { + "all": "ใ™ในใฆ", + "drama": "ใƒ‰ใƒฉใƒž", + "movie": "ๆ˜ ็”ป", + "kpop": "K-POP" + }, + "label": { + "cost": "ไบˆๆƒณ่ฒป็”จ", + "days": "ใŠใ™ใ™ใ‚ๆ—ฅ็จ‹", + "distance": "็งปๅ‹•่ท้›ข", + "transport": "ไบค้€šๆ‰‹ๆฎต" + }, + "button": { + "recommend": "AIใŠใ™ใ™ใ‚ใ‚’ๅ—ใ‘ๅ–ใ‚‹", + "top": "ใƒˆใƒƒใƒ—ใธๆˆปใ‚‹" + }, + "footer": { + "copy": "ยฉ 2025 Codetour. All rights reserved." + } +} diff --git a/public/locales/ja/contents.json b/public/locales/ja/contents.json new file mode 100644 index 0000000..2f7e5f6 --- /dev/null +++ b/public/locales/ja/contents.json @@ -0,0 +1,26 @@ +{ + "title": { + "main": "K-Spot - ้Ÿ“ๆตใ‚ณใƒณใƒ†ใƒณใƒ„ๆ—…่กŒใƒ—ใƒฉใƒƒใƒˆใƒ•ใ‚ฉใƒผใƒ " + }, + "recent": { + "title": "ๆœ€่ฟ‘่จชใ‚ŒใŸๅ ดๆ‰€", + "clearAll": "ใ™ในใฆๅ‰Š้™ค" + }, + "content": { + "title": "ใ‚ณใƒณใƒ†ใƒณใƒ„ๅˆฅๆ—…่กŒๅœฐ", + "subtitle": "ใŠๆฐ—ใซๅ…ฅใ‚Šใฎใƒ‰ใƒฉใƒžใ‚„ๆ˜ ็”ปใ€ใƒใƒฉใ‚จใƒ†ใ‚ฃใฎๆ’ฎๅฝฑๅœฐใ‚’ๆŽขใ—ใฆใฟใพใ—ใ‚‡ใ†" + }, + "tab": { + "kpop": "K-Pop", + "kdrama": "K-ใƒ‰ใƒฉใƒž/ๆ˜ ็”ป", + "kwebtoon": "K-ใ‚ฆใ‚งใƒ–ใƒˆใ‚ฅใƒผใƒณ", + "kfood": "K-ใƒ•ใƒผใƒ‰", + "kent": "K-ใ‚จใƒณใ‚ฟใƒก" + }, + "footer": { + "copy": "ยฉ Kspot" + }, + "modal": { + "close": "้–‰ใ˜ใ‚‹" + } +} diff --git a/public/locales/ja/map-page.json b/public/locales/ja/map-page.json new file mode 100644 index 0000000..463d564 --- /dev/null +++ b/public/locales/ja/map-page.json @@ -0,0 +1,69 @@ +{ + "header": { + "title": "๐Ÿ‡ฏ๐Ÿ‡ต Kใ‚ณใƒณใƒ†ใƒณใƒ„ๆ—…่กŒใƒžใƒƒใƒ—", + "subtitle": "้Ÿ“ๆตใ‚ณใƒณใƒ†ใƒณใƒ„ใง็‰นๅˆฅใชๆ—…่กŒใ‚ณใƒผใ‚นใ‚’ไฝœใ‚Šใพใ—ใ‚‡ใ†" + }, + "btn": { + "home": "ใƒ›ใƒผใƒ ใธ", + "search": "ๆคœ็ดข", + "saveCourse": "๐Ÿ’พ ใ‚ณใƒผใ‚นใ‚’ไฟๅญ˜", + "showRoute": "๐Ÿš— ็ตŒ่ทฏใ‚’่กจ็คบ", + "aiRecommend": "๐Ÿค– AIใŠใ™ใ™ใ‚ใ‚’ๅ—ใ‘ๅ–ใ‚‹", + "load": "่ชญใฟ่พผใฟ", + "delete": "ๅ‰Š้™ค", + "addToCourse": "+ ใ‚ณใƒผใ‚นใซ่ฟฝๅŠ " + }, + "section": { + "search": "๐Ÿ” ๆคœ็ดข", + "myCourse": "๐Ÿ“ ใƒžใ‚คๆ—…่กŒใ‚ณใƒผใ‚น", + "savedCourses": "๐Ÿ’Ž ไฟๅญ˜ใ•ใ‚ŒใŸใ‚ณใƒผใ‚น" + }, + "tab": { + "place": "ๅ ดๆ‰€ใงๆคœ็ดข", + "content": "ใ‚ณใƒณใƒ†ใƒณใƒ„ใงๆคœ็ดข" + }, + "placeholder": { + "placeSearch": "ๅ ดๆ‰€ๅใ€ไฝๆ‰€ใ‚’ๆคœ็ดข..." + }, + "option": { + "selectContent": "ใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚’้ธๆŠž...", + "selectUser": "ใƒฆใƒผใ‚ถใƒผใ‚’้ธๆŠž..." + }, + "hint": { + "dragOrder": "ใƒ‰ใƒฉใƒƒใ‚ฐใ—ใฆ้ †็•ชใ‚’ๅค‰ๆ›ดใงใใพใ™" + }, + "user": { + "user1": "ใƒฆใƒผใ‚ถใƒผ 1", + "user2": "ใƒฆใƒผใ‚ถใƒผ 2", + "user3": "ใƒฆใƒผใ‚ถใƒผ 3" + }, + "alert": { + "enterSearch": "ๆคœ็ดขใƒฏใƒผใƒ‰ใ‚’ๅ…ฅๅŠ›ใ—ใฆใใ ใ•ใ„ ๐Ÿ˜Š", + "noResults": "ๆคœ็ดข็ตๆžœใŒใ‚ใ‚Šใพใ›ใ‚“ ๐Ÿ˜ข", + "selectContent": "ใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚’้ธๆŠžใ—ใฆใใ ใ•ใ„ ๐Ÿ˜Š", + "selectUser": "ใƒฆใƒผใ‚ถใƒผใ‚’้ธๆŠžใ—ใฆใใ ใ•ใ„ ๐Ÿ˜Š", + "noLocations": "ใ“ใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใฎๆ’ฎๅฝฑๅœฐใฏใ‚ใ‚Šใพใ›ใ‚“ ๐Ÿ˜ข", + "deleteCourse": "ใ“ใฎใ‚ณใƒผใ‚นใ‚’ๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸ ๐Ÿ—‘๏ธ", + "courseDeleted": "โœ… ใ‚ณใƒผใ‚นใ‚’ๅ‰Š้™คใ—ใพใ—ใŸ๏ผ", + "addPlaces": "ใ‚ณใƒผใ‚นใซๅ ดๆ‰€ใ‚’่ฟฝๅŠ ใ—ใฆใใ ใ•ใ„ ๐Ÿ“", + "courseNamePrompt": "ใ‚ณใƒผใ‚นๅใ‚’ๅ…ฅๅŠ›ใ—ใฆใใ ใ•ใ„ โœจ", + "courseNameDefault": "็งใฎKๆ—…่กŒใ‚ณใƒผใ‚น", + "courseSaved": "๐ŸŽ‰ ไฟๅญ˜ๅฎŒไบ†๏ผ\nใ‚ณใƒผใ‚นID: ", + "saveFailed": "ไฟๅญ˜ใซๅคฑๆ•—ใ—ใพใ—ใŸ ๐Ÿ˜ข", + "noSavedCourses": "ไฟๅญ˜ใ•ใ‚ŒใŸใ‚ณใƒผใ‚นใŒใ‚ใ‚Šใพใ›ใ‚“ ๐Ÿ“ญ", + "courseLoaded": "โœจ ใ€Œ{name}ใ€ใ‚ณใƒผใ‚นใ‚’่ชญใฟ่พผใฟใพใ—ใŸ๏ผ", + "minTwoPlaces": "็ตŒ่ทฏใ‚’่ฆ‹ใ‚‹ใซใฏๅฐ‘ใชใใจใ‚‚2ใคใฎๅ ดๆ‰€ใŒๅฟ…่ฆใงใ™ ๐Ÿ—บ๏ธ", + "routeFailed": "็ตŒ่ทฏใฎๅ–ๅพ—ใซๅคฑๆ•—ใ—ใพใ—ใŸ ๐Ÿ˜ข", + "added": "โœจ {name} ใ‚’ใ‚ณใƒผใ‚นใซ่ฟฝๅŠ ใ—ใพใ—ใŸ๏ผ" + }, + "route": { + "totalDistance": "๐Ÿ“ ็ท่ท้›ข: ", + "estimatedTime": "โฑ๏ธ ๆ‰€่ฆๆ™‚้–“: ", + "info": "๐Ÿš— ็ตŒ่ทฏๆƒ…ๅ ฑ" + }, + "text": { + "places": "ใƒถๆ‰€", + "km": " km", + "min": " ๅˆ†" + } +} diff --git a/public/locales/ja/my-page.json b/public/locales/ja/my-page.json new file mode 100644 index 0000000..8974910 --- /dev/null +++ b/public/locales/ja/my-page.json @@ -0,0 +1,30 @@ +{ + "title": { + "mypage-main": "ใƒžใ‚คใƒšใƒผใ‚ธ" + }, + "subtitle": { + "nickname": "ใ‚ญใƒ ๆ—…่กŒ" + }, + "card": { + "profile": { + "title": "ๅ€‹ไบบๆƒ…ๅ ฑ็ฎก็†", + "desc": "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ€ใƒกใƒผใƒซใ€ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฎๅค‰ๆ›ด" + }, + "preference": { + "title": "ๆ—…่กŒใฎๅฅฝใฟ่จญๅฎš", + "desc": "่ˆˆๅ‘ณใ‚ฟใ‚ฐใ€ๆ—…่กŒใ€ๆ—…่กŒใ‚นใ‚ฟใ‚คใƒซใ‚’่จญๅฎš" + }, + "favorite": { + "title": "ใŠๆฐ—ใซๅ…ฅใ‚Šใ‚ณใƒณใƒ†ใƒณใƒ„็ฎก็†", + "desc": "ใ„ใ„ใญใ—ใŸใ‚ณใƒณใƒ†ใƒณใƒ„ใ€ๆ—…่กŒๅ…ˆใ€ใ‚ณใƒผใ‚นใ‚’่ฆ‹ใ‚‹" + }, + "course": { + "title": "็งใฎๆ—…่กŒใ‚ณใƒผใ‚น", + "desc": "ๆ—…่กŒใ‚ณใƒผใ‚นใฎไฝœๆˆใจไฟๅญ˜" + }, + "review": { + "title": "ใƒฌใƒ“ใƒฅใƒผ็ฎก็†", + "desc": "ๆ›ธใ„ใŸใƒฌใƒ“ใƒฅใƒผใ‚„่ฉ•ไพกใ‚’็ฎก็†" + } + } +} diff --git a/public/locales/ko/aiSchedule.json b/public/locales/ko/aiSchedule.json new file mode 100644 index 0000000..c7a4285 --- /dev/null +++ b/public/locales/ko/aiSchedule.json @@ -0,0 +1,27 @@ +{ + "title": { + "main": "AI ์ผ์ • ์ถ”์ฒœ" + }, + "breadcrumb": { + "main": "AI ์ถ”์ฒœ" + }, + "filter": { + "all": "๋ชจ๋‘", + "drama": "๋“œ๋ผ๋งˆ", + "movie": "์˜ํ™”", + "kpop": "K-POP" + }, + "label": { + "cost": "์˜ˆ์ƒ๊ฒฝ๋น„", + "days": "์ถ”์ฒœ์ผ์ •", + "distance": "์ด๋™๊ฑฐ๋ฆฌ", + "transport": "์ด๋™์ˆ˜๋‹จ" + }, + "button": { + "recommend": "AI ์ผ์ • ์ถ”์ฒœ๋ฐ›๊ธฐ", + "top": "๋งจ ์œ„๋กœ" + }, + "footer": { + "copy": "ยฉ 2025 Codetour. All rights reserved." + } +} diff --git a/public/locales/ko/contents.json b/public/locales/ko/contents.json new file mode 100644 index 0000000..0a89189 --- /dev/null +++ b/public/locales/ko/contents.json @@ -0,0 +1,26 @@ +{ + "title": { + "main": "K-Spot - ํ•œ๋ฅ˜ ์ฝ˜ํ…์ธ  ์—ฌํ–‰ ํ”Œ๋žซํผ" + }, + "recent": { + "title": "์ตœ๊ทผ ๋ฐฉ๋ฌธํ•œ ์žฅ์†Œ", + "clearAll": "์ „์ฒด ์‚ญ์ œ" + }, + "content": { + "title": "์ฝ˜ํ…์ธ ๋ณ„ ์—ฌํ–‰์ง€", + "subtitle": "์ข‹์•„ํ•˜๋Š” ๋“œ๋ผ๋งˆ, ์˜ํ™”, ์˜ˆ๋Šฅ์˜ ์ดฌ์˜์ง€๋ฅผ ์ฐพ์•„๋ณด์„ธ์š”" + }, + "tab": { + "kpop": "K-Pop", + "kdrama": "K-Drama/Movie", + "kwebtoon": "K-Webtoon", + "kfood": "K-Food", + "kent": "K-Ent" + }, + "footer": { + "copy": "ยฉ Kspot" + }, + "modal": { + "close": "๋‹ซ๊ธฐ" + } +} diff --git a/public/locales/ko/map-page.json b/public/locales/ko/map-page.json new file mode 100644 index 0000000..e4c11c9 --- /dev/null +++ b/public/locales/ko/map-page.json @@ -0,0 +1,69 @@ +{ + "header": { + "title": "๐Ÿ‡ฐ๐Ÿ‡ท K-์ฝ˜ํ…์ธ  ์—ฌํ–‰ ์ง€๋„", + "subtitle": "ํ•œ๋ฅ˜ ์ฝ˜ํ…์ธ ์™€ ํ•จ๊ป˜ํ•˜๋Š” ํŠน๋ณ„ํ•œ ์—ฌํ–‰ ์ฝ”์Šค๋ฅผ ๋งŒ๋“ค์–ด๋ณด์„ธ์š”" + }, + "btn": { + "home": "ํ™ˆ์œผ๋กœ", + "search": "๊ฒ€์ƒ‰", + "saveCourse": "๐Ÿ’พ ์ฝ”์Šค ์ €์žฅํ•˜๊ธฐ", + "showRoute": "๐Ÿš— ๊ฒฝ๋กœ ํ™•์ธํ•˜๊ธฐ", + "aiRecommend": "๐Ÿค– AI ์ถ”์ฒœ๋ฐ›๊ธฐ", + "load": "๋ถˆ๋Ÿฌ์˜ค๊ธฐ", + "delete": "์‚ญ์ œ", + "addToCourse": "+ ์ฝ”์Šค ์ถ”๊ฐ€" + }, + "section": { + "search": "๐Ÿ” ๊ฒ€์ƒ‰", + "myCourse": "๐Ÿ“ ๋‚˜๋งŒ์˜ ์—ฌํ–‰ ์ฝ”์Šค", + "savedCourses": "๐Ÿ’Ž ์ €์žฅ๋œ ์ฝ”์Šค" + }, + "tab": { + "place": "์žฅ์†Œ ๊ฒ€์ƒ‰", + "content": "์ฝ˜ํ…์ธ  ๊ฒ€์ƒ‰" + }, + "placeholder": { + "placeSearch": "์žฅ์†Œ๋ช…, ์ฃผ์†Œ ๊ฒ€์ƒ‰..." + }, + "option": { + "selectContent": "์ฝ˜ํ…์ธ  ์„ ํƒ...", + "selectUser": "์‚ฌ์šฉ์ž ์„ ํƒ..." + }, + "hint": { + "dragOrder": "๋“œ๋ž˜๊ทธ๋กœ ์ˆœ์„œ๋ฅผ ๋ณ€๊ฒฝํ•  ์ˆ˜ ์žˆ์–ด์š”" + }, + "user": { + "user1": "์‚ฌ์šฉ์ž 1", + "user2": "์‚ฌ์šฉ์ž 2", + "user3": "์‚ฌ์šฉ์ž 3" + }, + "alert": { + "enterSearch": "๊ฒ€์ƒ‰์–ด๋ฅผ ์ž…๋ ฅํ•ด์ฃผ์„ธ์š” ๐Ÿ˜Š", + "noResults": "๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค ๐Ÿ˜ข", + "selectContent": "์ฝ˜ํ…์ธ ๋ฅผ ์„ ํƒํ•ด์ฃผ์„ธ์š” ๐Ÿ˜Š", + "selectUser": "์‚ฌ์šฉ์ž๋ฅผ ์„ ํƒํ•ด์ฃผ์„ธ์š” ๐Ÿ˜Š", + "noLocations": "ํ•ด๋‹น ์ฝ˜ํ…์ธ ์˜ ์ดฌ์˜์ง€๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค ๐Ÿ˜ข", + "deleteCourse": "์ด ์ฝ”์Šค๋ฅผ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ? ๐Ÿ—‘๏ธ", + "courseDeleted": "โœ… ์ฝ”์Šค๊ฐ€ ์‚ญ์ œ๋˜์—ˆ์Šต๋‹ˆ๋‹ค!", + "addPlaces": "์ฝ”์Šค์— ์žฅ์†Œ๋ฅผ ์ถ”๊ฐ€ํ•ด์ฃผ์„ธ์š” ๐Ÿ“", + "courseNamePrompt": "์ฝ”์Šค ์ด๋ฆ„์„ ์ž…๋ ฅํ•˜์„ธ์š” โœจ", + "courseNameDefault": "๋‚˜์˜ K-์—ฌํ–‰ ์ฝ”์Šค", + "courseSaved": "๐ŸŽ‰ ์ €์žฅ ์™„๋ฃŒ!\n์ฝ”์Šค ID: ", + "saveFailed": "์ €์žฅ์— ์‹คํŒจํ–ˆ์Šต๋‹ˆ๋‹ค ๐Ÿ˜ข", + "noSavedCourses": "์ €์žฅ๋œ ์ฝ”์Šค๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค ๐Ÿ“ญ", + "courseLoaded": "โœจ \"{name}\" ์ฝ”์Šค๋ฅผ ๋ถˆ๋Ÿฌ์™”์Šต๋‹ˆ๋‹ค!", + "minTwoPlaces": "๊ฒฝ๋กœ๋ฅผ ๋ณด๋ ค๋ฉด ์ตœ์†Œ 2๊ฐœ ์ด์ƒ์˜ ์žฅ์†Œ๊ฐ€ ํ•„์š”ํ•ฉ๋‹ˆ๋‹ค ๐Ÿ—บ๏ธ", + "routeFailed": "๊ฒฝ๋กœ ๊ฒ€์ƒ‰์— ์‹คํŒจํ–ˆ์Šต๋‹ˆ๋‹ค ๐Ÿ˜ข", + "added": "โœจ {name}์ด(๊ฐ€) ์ฝ”์Šค์— ์ถ”๊ฐ€๋˜์—ˆ์Šต๋‹ˆ๋‹ค!" + }, + "route": { + "totalDistance": "๐Ÿ“ ์ด ๊ฑฐ๋ฆฌ: ", + "estimatedTime": "โฑ๏ธ ์˜ˆ์ƒ ์‹œ๊ฐ„: ", + "info": "๐Ÿš— ๊ฒฝ๋กœ ์ •๋ณด" + }, + "text": { + "places": "๊ฐœ ์žฅ์†Œ", + "km": " km", + "min": " ๋ถ„" + } +} diff --git a/public/locales/ko/my-page.json b/public/locales/ko/my-page.json new file mode 100644 index 0000000..857ec29 --- /dev/null +++ b/public/locales/ko/my-page.json @@ -0,0 +1,30 @@ +{ + "title": { + "mypage-main": "๋งˆ์ดํŽ˜์ด์ง€" + }, + "subtitle": { + "nickname": "๊น€์—ฌํ–‰" + }, + "card": { + "profile": { + "title": "๊ฐœ์ธ์ •๋ณด ๊ด€๋ฆฌ", + "desc": "ํ”„๋กœํ•„, ์ด๋ฉ”์ผ, ๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณ€๊ฒฝ" + }, + "preference": { + "title": "์—ฌํ–‰ ์„ ํ˜ธ๋„ ์„ค์ •", + "desc": "๊ด€์‹ฌ ํƒœ๊ทธ, ์—ฌํ–‰, ์—ฌํ–‰ ์Šคํƒ€์ผ ์„ค์ •" + }, + "favorite": { + "title": "๊ด€์‹ฌ ์ฝ˜ํ…์ธ  ๊ด€๋ฆฌ", + "desc": "์ข‹์•„์š”ํ•œ ์ปจํ…์ธ , ์—ฌํ–‰์ง€, ์ฝ”์Šค ๋ณด๊ธฐ" + }, + "course": { + "title": "๋‚˜์˜ ์—ฌํ–‰ ์ฝ”์Šค", + "desc": "์ƒ์„ฑ ๋ฐ ์ €์žฅ๋œ ์—ฌํ–‰ ์ฝ”์Šค" + }, + "review": { + "title": "๋ฆฌ๋ทฐ ๊ด€๋ฆฌ", + "desc": "์ž‘์„ฑํ•œ ๋ฆฌ๋ทฐ ๋ฐ ํ‰์  ๊ด€๋ฆฌ" + } + } +} diff --git a/source/pages/aiCourse/aiSchedule.html b/source/pages/aiCourse/aiSchedule.html index 40976b8..c3a6270 100644 --- a/source/pages/aiCourse/aiSchedule.html +++ b/source/pages/aiCourse/aiSchedule.html @@ -11,15 +11,15 @@ rel="stylesheet" /> - KSPOT - - - - - - - - + KSPOT + + + + + + + + @@ -130,7 +130,7 @@ Course / AI Recommend -

AI์ผ์ •์ถ”์ฒœ

+

AI ์ผ์ • ์ถ”์ฒœ

@@ -140,16 +140,22 @@

AI์ผ์ •์ถ”์ฒœ

@@ -166,13 +172,19 @@

Seoul

diff --git a/source/pages/contents/contents.html b/source/pages/contents/contents.html index fa22149..dd34e2b 100644 --- a/source/pages/contents/contents.html +++ b/source/pages/contents/contents.html @@ -3,7 +3,7 @@ - K-Spot - ํ•œ๋ฅ˜ ์ฝ˜ํ…์ธ  ์—ฌํ–‰ ํ”Œ๋žซํผ + K-Spot - ํ•œ๋ฅ˜ ์ฝ˜ํ…์ธ  ์—ฌํ–‰ ํ”Œ๋žซํผ @@ -29,8 +29,10 @@
-

์ตœ๊ทผ ๋ฐฉ๋ฌธํ•œ ์žฅ์†Œ

- +

์ตœ๊ทผ ๋ฐฉ๋ฌธํ•œ ์žฅ์†Œ

+
@@ -38,25 +40,47 @@

์ตœ๊ทผ ๋ฐฉ๋ฌธํ•œ ์žฅ์†Œ

-

์ฝ˜ํ…์ธ ๋ณ„ ์—ฌํ–‰์ง€

-

์ข‹์•„ํ•˜๋Š” ๋“œ๋ผ๋งˆ, ์˜ํ™”, ์˜ˆ๋Šฅ์˜ ์ดฌ์˜์ง€๋ฅผ ์ฐพ์•„๋ณด์„ธ์š”

+

์ฝ˜ํ…์ธ ๋ณ„ ์—ฌํ–‰์ง€

+

+ ์ข‹์•„ํ•˜๋Š” ๋“œ๋ผ๋งˆ, ์˜ํ™”, ์˜ˆ๋Šฅ์˜ ์ดฌ์˜์ง€๋ฅผ ์ฐพ์•„๋ณด์„ธ์š” +

- - + - - - + + +
@@ -101,40 +101,45 @@
-

๋งˆ์ดํŽ˜์ด์ง€

-

- ์•ˆ๋…•ํ•˜์„ธ์š”, ๊น€์—ฌํ–‰๋‹˜! +

๋งˆ์ดํŽ˜์ด์ง€

+

+ ์•ˆ๋…•ํ•˜์„ธ์š”, + ๊น€์—ฌํ–‰๋‹˜!

๐Ÿ‘ค
-

๊ฐœ์ธ์ •๋ณด ๊ด€๋ฆฌ

-

ํ”„๋กœํ•„, ์ด๋ฉ”์ผ, ๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณ€๊ฒฝ

+

๊ฐœ์ธ์ •๋ณด ๊ด€๋ฆฌ

+

ํ”„๋กœํ•„, ์ด๋ฉ”์ผ, ๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณ€๊ฒฝ

โš™๏ธ
-

์—ฌํ–‰ ์„ ํ˜ธ๋„ ์„ค์ •

-

๊ด€์‹ฌ ํƒœ๊ทธ, ์—ฌํ–‰, ์—ฌํ–‰ ์Šคํƒ€์ผ ์„ค์ •

+

์—ฌํ–‰ ์„ ํ˜ธ๋„ ์„ค์ •

+

+ ๊ด€์‹ฌ ํƒœ๊ทธ, ์—ฌํ–‰, ์—ฌํ–‰ ์Šคํƒ€์ผ ์„ค์ • +

โค๏ธ
-

๊ด€์‹ฌ ์ฝ˜ํ…์ธ  ๊ด€๋ฆฌ

-

์ข‹์•„์š”ํ•œ ์ปจํ…์ธ , ์—ฌํ–‰์ง€, ์ฝ”์Šค ๋ณด๊ธฐ

+

๊ด€์‹ฌ ์ฝ˜ํ…์ธ  ๊ด€๋ฆฌ

+

+ ์ข‹์•„์š”ํ•œ ์ปจํ…์ธ , ์—ฌํ–‰์ง€, ์ฝ”์Šค ๋ณด๊ธฐ +

๐Ÿ“‘
-

๋‚˜์˜ ์—ฌํ–‰ ์ฝ”์Šค

-

์ƒ์„ฑ ๋ฐ ์ €์žฅ๋œ ์—ฌํ–‰ ์ฝ”์Šค

+

๋‚˜์˜ ์—ฌํ–‰ ์ฝ”์Šค

+

์ƒ์„ฑ ๋ฐ ์ €์žฅ๋œ ์—ฌํ–‰ ์ฝ”์Šค

๐Ÿ’ฌ
-

๋ฆฌ๋ทฐ ๊ด€๋ฆฌ

-

์ž‘์„ฑํ•œ ๋ฆฌ๋ทฐ ๋ฐ ํ‰์  ๊ด€๋ฆฌ

+

๋ฆฌ๋ทฐ ๊ด€๋ฆฌ

+

์ž‘์„ฑํ•œ ๋ฆฌ๋ทฐ ๋ฐ ํ‰์  ๊ด€๋ฆฌ