Naruon
+Naruon
메일, 첨부, 일정, 작업을 맥락으로 묶어 판단과 실행으로 연결하는 AI 이메일 워크스페이스입니다.
diff --git a/.Jules/palette.md b/.Jules/palette.md index 8a7cf4c..8a20fe4 100644 --- a/.Jules/palette.md +++ b/.Jules/palette.md @@ -21,3 +21,7 @@ ## 2024-07-15 - Expand clickable area of project cards **Learning:** Using an anchor tag to wrap an entire card (block-level element) can result in verbose and confusing screen reader output. However, restricting the clickable area to just the title makes the UI harder to interact with (violating Fitts's Law). **Action:** Apply `position: relative` to the card container and use a `::after` pseudo-element with `position: absolute; inset: 0;` on the title's anchor tag. This expands the clickable area to the whole card while keeping semantic and accessible HTML structure. + +## 2026-08-30 - 외부 링크에 대한 title 속성 지원 개선 +**Learning:** 새 탭으로 열리는 외부 링크(`target="_blank"`)는 화면 판독기 사용자 및 일반 사용자에게 현재 페이지 문맥을 벗어난다는 점을 명확히 안내해야 합니다. 시각적으로 숨길 수 있는 유틸리티 클래스가 없으므로, 기본 제공 속성인 `title` 속성을 사용하여 접근성을 제공하는 것이 좋습니다. 또한 다국어 지원 환경에서는 하드코딩 대신 `data-i18n-title` 속성을 사용하여 언어 변경 시 툴팁도 동적으로 번역되도록 구현해야 합니다. +**Action:** 항상 `target="_blank"`를 사용하는 `a` 태그에 `data-i18n-title="externalLink"`를 추가하여 접근성과 다국어 사용자 경험(UX)을 개선합니다. diff --git a/i18n.js b/i18n.js index 00b81d3..1733ddb 100644 --- a/i18n.js +++ b/i18n.js @@ -144,7 +144,8 @@ const messages = { "work.fourTitle": "작업 흐름", "work.fourBody": "반복 탐색은 줄이고 근거 확인과 사람의 판단은 남기는 흐름.", "footer.founded": "Founded by", - "footer.line": "Context into judgment. Judgment into action." + "footer.line": "Context into judgment. Judgment into action.", + "externalLink": "새 창에서 열림" }, en: { metaTitle: "Contextual Wisdom Lab", @@ -291,7 +292,8 @@ const messages = { "work.fourTitle": "Agentic workflows", "work.fourBody": "Workflows that reduce repeated search while preserving evidence checks and human judgment.", "footer.founded": "Founded by", - "footer.line": "Context into judgment. Judgment into action." + "footer.line": "Context into judgment. Judgment into action.", + "externalLink": "Opens in a new window" } }; @@ -312,6 +314,7 @@ function preferredLanguage() { // ⚡ Bolt: Cache DOM queries and current state to prevent redundant lookups and layout thrashing let i18nNodes = null; +let i18nTitleNodes = null; let langButtons = null; let metaDesc = null; let ogDesc = null; @@ -367,6 +370,9 @@ function setLanguage(lang) { if (!i18nNodes) { i18nNodes = document.querySelectorAll("[data-i18n]"); } + if (!i18nTitleNodes) { + i18nTitleNodes = document.querySelectorAll("[data-i18n-title]"); + } // Only update textContent if it actually changed to avoid layout recalculations i18nNodes.forEach((node) => { @@ -375,6 +381,13 @@ function setLanguage(lang) { node.textContent = newText; } }); + + i18nTitleNodes.forEach((node) => { + const newTitle = dict[node.dataset.i18nTitle]; + if (newTitle && node.getAttribute("title") !== newTitle) { + node.setAttribute("title", newTitle); + } + }); } langButtons.forEach((button) => { diff --git a/index.html b/index.html index a2dbbd7..7bf300b 100644 --- a/index.html +++ b/index.html @@ -42,7 +42,7 @@ 프로젝트 Fork 작업 - GitHub + GitHub
메일, 첨부, 일정, 작업을 맥락으로 묶어 판단과 실행으로 연결하는 AI 이메일 워크스페이스입니다.
PostgreSQL 스키마를 리버스 엔지니어링하고 ERD와 DDL 공유 흐름으로 관리하는 클라우드 MVP입니다.
곡을 섹션, 역할, 템포, 연습 우선순위로 분석하는 로컬 우선 리허설 앱입니다.
긴 녹음을 메타데이터를 보존한 FLAC/Opus 조각으로 변환하는 Python CLI입니다.
스캔된 일본어 신문 PDF를 기사, 제목, 본문, 이미지 구조의 DOM형 JSON으로 파싱하는 API입니다.
트리 편집, 진행률 계산, CSV/JSON, 주간 Gantt를 지원하는 정적 HTML/CSS/JS WBS 플래너입니다.
바이브코딩 앱을 위한 보안 가드레일입니다. AI 개발 도구 규칙, 정적 점검, 리뷰와 수정 프롬프트를 다룹니다.
MLSIRM/MLS2PLM 모형의 시뮬레이션, 적합, 복원 진단을 빠르게 수행하는 Python/Rust 패키지입니다.
DNSBL 게시 기능을 갖춘 Rust 우선 WAF/IDS/AI SOC 게이트웨이입니다.
Founded by - Seongho Bae. + Seongho Bae. Context into judgment. Judgment into action.
diff --git a/test_i18n.html b/test_i18n.html index 2aae97d..e139b86 100644 --- a/test_i18n.html +++ b/test_i18n.html @@ -8,6 +8,7 @@