diff --git a/resources/views/menus/global-index.blade.php b/resources/views/menus/global-index.blade.php
index 47ce8119..4bb410ee 100644
--- a/resources/views/menus/global-index.blade.php
+++ b/resources/views/menus/global-index.blade.php
@@ -1,12 +1,12 @@
@extends('layouts.app')
-@section('title', '글로벌 메뉴 관리')
+@section('title', '기본 메뉴 관리')
@section('content')
-
글로벌 메뉴 관리
+
기본 메뉴 관리
시스템 전체에서 사용되는 기본 메뉴를 관리합니다. 테넌트는 이 메뉴를 복사하여 사용합니다.
@@ -19,7 +19,7 @@
메뉴 관리로 돌아가기
- + 새 글로벌 메뉴
+ + 새 기본 메뉴
@@ -179,7 +179,7 @@ function saveGlobalMenuOrder(items) {
// 삭제 확인
window.confirmDelete = function(id, name) {
- if (confirm(`"${name}" 글로벌 메뉴를 삭제하시겠습니까?`)) {
+ if (confirm(`"${name}" 기본 메뉴를 삭제하시겠습니까?`)) {
htmx.ajax('DELETE', `/api/admin/global-menus/${id}`, {
target: '#menu-table',
swap: 'none',
@@ -194,7 +194,7 @@ function saveGlobalMenuOrder(items) {
// 복원 확인
window.confirmRestore = function(id, name) {
- if (confirm(`"${name}" 글로벌 메뉴를 복원하시겠습니까?`)) {
+ if (confirm(`"${name}" 기본 메뉴를 복원하시겠습니까?`)) {
htmx.ajax('POST', `/api/admin/global-menus/${id}/restore`, {
target: '#menu-table',
swap: 'none',
@@ -209,7 +209,7 @@ function saveGlobalMenuOrder(items) {
// 영구삭제 확인
window.confirmForceDelete = function(id, name) {
- if (confirm(`⚠️ 경고: "${name}" 글로벌 메뉴를 영구 삭제하시겠습니까?\n\n이 작업은 되돌릴 수 없습니다!`)) {
+ if (confirm(`⚠️ 경고: "${name}" 기본 메뉴를 영구 삭제하시겠습니까?\n\n이 작업은 되돌릴 수 없습니다!`)) {
htmx.ajax('DELETE', `/api/admin/global-menus/${id}/force`, {
target: '#menu-table',
swap: 'none',
diff --git a/resources/views/menus/index.blade.php b/resources/views/menus/index.blade.php
index 2953e0a8..d766fa3c 100644
--- a/resources/views/menus/index.blade.php
+++ b/resources/views/menus/index.blade.php
@@ -23,7 +23,7 @@ class="mode-btn px-4 py-2 text-sm font-medium rounded-md transition bg-white tex
@@ -45,7 +45,7 @@ class="bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-lg transitio
- 글로벌 메뉴 관리
+ 기본 메뉴 관리
@endif
@@ -655,7 +655,7 @@ function saveMenuOrder(items) {
// 내 메뉴 버튼 비활성화 스타일
normalBtn.classList.remove('bg-white', 'text-gray-900', 'shadow-sm');
normalBtn.classList.add('bg-gray-200', 'text-gray-500', 'hover:text-gray-700', 'hover:bg-gray-300');
- // 글로벌에서 가져오기 버튼 활성화 스타일
+ // 기본에서 가져오기 버튼 활성화 스타일
importBtn.classList.add('bg-white', 'text-gray-900', 'shadow-sm');
importBtn.classList.remove('bg-gray-200', 'text-gray-500', 'hover:text-gray-700', 'hover:bg-gray-300');
@@ -669,9 +669,9 @@ function saveMenuOrder(items) {
importFilter.classList.remove('hidden');
// 설명 변경
- modeDescription.innerHTML = '글로벌 메뉴에서 가져올 항목을 선택하세요. 체크박스로 선택 후 선택 가져오기 버튼을 클릭하세요.';
+ modeDescription.innerHTML = '기본 메뉴에서 가져올 항목을 선택하세요. 체크박스로 선택 후 선택 가져오기 버튼을 클릭하세요.';
} else {
- // 글로벌에서 가져오기 버튼 비활성화 스타일
+ // 기본에서 가져오기 버튼 비활성화 스타일
importBtn.classList.remove('bg-white', 'text-gray-900', 'shadow-sm');
importBtn.classList.add('bg-gray-200', 'text-gray-500', 'hover:text-gray-700', 'hover:bg-gray-300');
// 내 메뉴 버튼 활성화 스타일
@@ -744,7 +744,7 @@ function saveMenuOrder(items) {
updateImportButtonState();
};
- // 선택된 글로벌 메뉴 가져오기 (가져올 수 있는 것만)
+ // 선택된 기본 메뉴 가져오기 (가져올 수 있는 것만)
window.importSelectedMenus = function() {
const checkboxes = document.querySelectorAll('#menu-sortable .import-checkbox:checked:not(:disabled)');
const menuIds = Array.from(checkboxes).map(cb => parseInt(cb.value));
diff --git a/resources/views/menus/partials/global-table.blade.php b/resources/views/menus/partials/global-table.blade.php
index 12cee0e6..2b0fdb82 100644
--- a/resources/views/menus/partials/global-table.blade.php
+++ b/resources/views/menus/partials/global-table.blade.php
@@ -2,14 +2,14 @@
- |
- No. |
- 메뉴명 |
- URL |
- 정렬 |
- 활성 |
- 숨김 |
- 작업 |
+ |
+ No. |
+ 메뉴명 |
+ URL |
+ 정렬 |
+ 활성 |
+ 숨김 |
+ 작업 |