From 1574805a5a4e55297328c689fdb7124f835a26a7 Mon Sep 17 00:00:00 2001 From: Edward Yang Date: Thu, 18 May 2023 15:31:11 +0800 Subject: [PATCH] change order total service and code format. --- .../Controllers/MultiFilterController.php | 2 +- beike/Repositories/PageCategoryRepo.php | 4 +- beike/Shop/Services/TotalService.php | 10 +- resources/lang/ko/address.php | 20 +- resources/lang/ko/admin/builder.php | 442 +++++++++--------- resources/lang/ko/admin/category.php | 8 +- resources/lang/ko/admin/common.php | 136 +++--- resources/lang/ko/admin/country.php | 4 +- resources/lang/ko/admin/currency.php | 8 +- resources/lang/ko/admin/customer.php | 38 +- resources/lang/ko/admin/customer_group.php | 14 +- resources/lang/ko/admin/dashboard.php | 14 +- resources/lang/ko/admin/design_builder.php | 14 +- resources/lang/ko/admin/file_manager.php | 42 +- resources/lang/ko/admin/language.php | 12 +- resources/lang/ko/admin/login.php | 2 +- resources/lang/ko/admin/marketing.php | 50 +- resources/lang/ko/admin/order.php | 20 +- resources/lang/ko/admin/page.php | 8 +- resources/lang/ko/admin/page_category.php | 8 +- resources/lang/ko/admin/plugin.php | 34 +- resources/lang/ko/admin/product.php | 56 +-- resources/lang/ko/admin/region.php | 14 +- resources/lang/ko/admin/rma.php | 22 +- resources/lang/ko/admin/rma_reason.php | 2 +- resources/lang/ko/admin/role.php | 10 +- resources/lang/ko/admin/setting.php | 116 ++--- resources/lang/ko/admin/tax_class.php | 12 +- resources/lang/ko/admin/tax_rate.php | 24 +- resources/lang/ko/admin/theme.php | 8 +- resources/lang/ko/admin/user.php | 14 +- resources/lang/ko/admin/zone.php | 4 +- resources/lang/ko/auth.php | 2 +- resources/lang/ko/brand.php | 4 +- resources/lang/ko/cart.php | 4 +- resources/lang/ko/category.php | 2 +- resources/lang/ko/common.php | 159 ++++--- resources/lang/ko/currency.php | 18 +- resources/lang/ko/customer.php | 6 +- resources/lang/ko/customer_group.php | 2 +- resources/lang/ko/mail.php | 26 +- resources/lang/ko/order.php | 58 +-- resources/lang/ko/page.php | 2 +- resources/lang/ko/page_category.php | 8 +- resources/lang/ko/pagination.php | 2 +- resources/lang/ko/passwords.php | 8 +- resources/lang/ko/product.php | 30 +- resources/lang/ko/rma.php | 30 +- resources/lang/ko/shop/account.php | 170 +++---- resources/lang/ko/shop/carts.php | 48 +- resources/lang/ko/shop/checkout.php | 46 +- resources/lang/ko/shop/common.php | 10 +- resources/lang/ko/shop/currency.php | 2 +- resources/lang/ko/shop/forgotten.php | 36 +- resources/lang/ko/shop/login.php | 50 +- resources/lang/ko/shop/order.php | 6 +- resources/lang/ko/shop/products.php | 14 +- resources/lang/ko/shop/steps.php | 8 +- resources/lang/ko/shop/wishlist.php | 2 +- resources/lang/ko/validation.php | 178 +++---- 60 files changed, 1052 insertions(+), 1051 deletions(-) diff --git a/beike/Admin/Http/Controllers/MultiFilterController.php b/beike/Admin/Http/Controllers/MultiFilterController.php index 59eed1d8..7f72f3ac 100644 --- a/beike/Admin/Http/Controllers/MultiFilterController.php +++ b/beike/Admin/Http/Controllers/MultiFilterController.php @@ -19,7 +19,7 @@ class MultiFilterController extends Controller { public function index() { - $multiFilter = system_setting('base.multi_filter') ?: []; + $multiFilter = system_setting('base.multi_filter') ?: []; $multiFilter['attribute'] = $multiFilter['attribute'] ?? []; if ($attributeIds = $multiFilter['attribute'] ?? []) { diff --git a/beike/Repositories/PageCategoryRepo.php b/beike/Repositories/PageCategoryRepo.php index 2216d536..6f960c79 100644 --- a/beike/Repositories/PageCategoryRepo.php +++ b/beike/Repositories/PageCategoryRepo.php @@ -163,8 +163,8 @@ class PageCategoryRepo return $pageCategory->description->title ?? ''; } - $pageCategoryId = (int)$pageCategory; - $pageCategory = PageCategory::query()->whereHas('description', function ($query) use ($pageCategoryId) { + $pageCategoryId = (int) $pageCategory; + $pageCategory = PageCategory::query()->whereHas('description', function ($query) use ($pageCategoryId) { $query->where('page_category_id', $pageCategoryId); })->first(); diff --git a/beike/Shop/Services/TotalService.php b/beike/Shop/Services/TotalService.php index d0f2f836..39726843 100644 --- a/beike/Shop/Services/TotalService.php +++ b/beike/Shop/Services/TotalService.php @@ -22,7 +22,6 @@ class TotalService 'tax', 'shipping', 'customer_discount', - 'order_total', ]; public Cart $currentCart; @@ -112,11 +111,14 @@ class TotalService { $maps = []; foreach (self::TOTAL_CODES as $code) { - $serviceName = Str::studly($code) . 'Service'; - $maps[$code] = "\Beike\\Shop\\Services\\TotalServices\\{$serviceName}"; + $serviceName = Str::studly($code) . 'Service'; + $maps[$code] = "\Beike\\Shop\\Services\\TotalServices\\{$serviceName}"; } - return hook_filter('service.total.maps', $maps); + $maps = hook_filter('service.total.maps', $maps); + $maps['order_total'] = "\Beike\\Shop\\Services\\TotalServices\\OrderTotalService"; + + return $maps; } /** diff --git a/resources/lang/ko/address.php b/resources/lang/ko/address.php index 42f32c77..80ceccae 100644 --- a/resources/lang/ko/address.php +++ b/resources/lang/ko/address.php @@ -10,16 +10,16 @@ */ return [ - 'index' => '주소 편집', - 'name' => '이름', - 'phone' => '전화번호', + 'index' => '주소 편집', + 'name' => '이름', + 'phone' => '전화번호', 'country_id' => '국가 ID', - 'zone' => '성', - 'zone_id' => '성 ID', - 'address_1' => '주소1', - 'address_2' => '주소2', - 'address' => '주소', + 'zone' => '성', + 'zone_id' => '성 ID', + 'address_1' => '주소1', + 'address_2' => '주소2', + 'address' => '주소', 'enter_city' => '주소 입력', - 'post_code' => '우편번호', - 'default' => '기본 주소', + 'post_code' => '우편번호', + 'default' => '기본 주소', ]; diff --git a/resources/lang/ko/admin/builder.php b/resources/lang/ko/admin/builder.php index 88e71383..1f0ed530 100644 --- a/resources/lang/ko/admin/builder.php +++ b/resources/lang/ko/admin/builder.php @@ -11,244 +11,244 @@ */ return [ - 'heading_title' => '페이지 편집', - 'page_category' => '문장 분류', - 'modules_instructions' => '사용 가능한 모듈, 페이지에 추가하기 클릭', - 'text_floor_prompt' => '설정(층 구성은 새로 고침 페이지를 저장해야 업데이트됩니다)', - 'text_new_page' => '새 페이지 추가', - 'text_quit' => '로그아웃', - 'text_save' => '저장', - 'text_view_page' => '페이지 보기', - 'text_module' => '모듈', - 'text_module_title' => '모듈', - 'text_menu' => '내비게이션', - 'text_drag_sort' => '드래그 정렬', - 'text_set_up' => '설치', - 'text_delete' => '삭제', - 'text_floor' => '층', - 'text_add_module' => '모듈 추가', - 'text_to_menu' => '내비게이션 메뉴 편집', - 'text_other' => '기타', - 'text_preparing' => '준비 중...', - 'text_floor_setting' => '층 설정', - 'text_background_color' => '배경컬러', - 'text_sure' => '확정', - 'text_page_name' => '새 페이지 이름을 입력하십시오.', - 'text_is_save' => '현재 페이지 데이터가 저장되었는지 확인하십시오!', - 'text_pop_ads' => '팝업광고', - 'text_style_setting' => '스타일 설정', - 'text_is_save_data' => '페이지 전환 전에 현재 페이지 데이터가 저장되었는지 확인하십시오?', - 'text_hint' => '힌트', - 'text_cancel' => '취소', - 'text_created_success' => '페이지 생성 성공', - 'text_html_none' => '모듈 로드 오류, HTML 데이터가 비어 있습니다!', - 'text_is_delete' => '삭제하시겠습니까', - 'text_enable' => '사용 가능', - 'text_set_title' => '설정 제목', - 'text_set_subtitle' => '부제목 설정', - 'text_suggested_size' => '장 크기(넓이 x 높이): ', - 'text_word' => '문자', - 'text_add_pictures' => '그림 추가', - 'text_refresh_cookie' => '갱신 Cookie', - 'text_popup_hint' => '참고: 사용자가 닫기를 누르면 브라우저가 닫히고 다시 열릴 때까지 표시되지 않습니다.로컬 테스트는 "쿠키 새로 고침"을 클릭하여 브라우저를 새로 고치고 팝업창을 다시 시작할 수 있습니다. ', + 'heading_title' => '페이지 편집', + 'page_category' => '문장 분류', + 'modules_instructions' => '사용 가능한 모듈, 페이지에 추가하기 클릭', + 'text_floor_prompt' => '설정(층 구성은 새로 고침 페이지를 저장해야 업데이트됩니다)', + 'text_new_page' => '새 페이지 추가', + 'text_quit' => '로그아웃', + 'text_save' => '저장', + 'text_view_page' => '페이지 보기', + 'text_module' => '모듈', + 'text_module_title' => '모듈', + 'text_menu' => '내비게이션', + 'text_drag_sort' => '드래그 정렬', + 'text_set_up' => '설치', + 'text_delete' => '삭제', + 'text_floor' => '층', + 'text_add_module' => '모듈 추가', + 'text_to_menu' => '내비게이션 메뉴 편집', + 'text_other' => '기타', + 'text_preparing' => '준비 중...', + 'text_floor_setting' => '층 설정', + 'text_background_color' => '배경컬러', + 'text_sure' => '확정', + 'text_page_name' => '새 페이지 이름을 입력하십시오.', + 'text_is_save' => '현재 페이지 데이터가 저장되었는지 확인하십시오!', + 'text_pop_ads' => '팝업광고', + 'text_style_setting' => '스타일 설정', + 'text_is_save_data' => '페이지 전환 전에 현재 페이지 데이터가 저장되었는지 확인하십시오?', + 'text_hint' => '힌트', + 'text_cancel' => '취소', + 'text_created_success' => '페이지 생성 성공', + 'text_html_none' => '모듈 로드 오류, HTML 데이터가 비어 있습니다!', + 'text_is_delete' => '삭제하시겠습니까', + 'text_enable' => '사용 가능', + 'text_set_title' => '설정 제목', + 'text_set_subtitle' => '부제목 설정', + 'text_suggested_size' => '장 크기(넓이 x 높이): ', + 'text_word' => '문자', + 'text_add_pictures' => '그림 추가', + 'text_refresh_cookie' => '갱신 Cookie', + 'text_popup_hint' => '참고: 사용자가 닫기를 누르면 브라우저가 닫히고 다시 열릴 때까지 표시되지 않습니다.로컬 테스트는 "쿠키 새로 고침"을 클릭하여 브라우저를 새로 고치고 팝업창을 다시 시작할 수 있습니다. ', 'text_cookie_refresh_success' => 'Cookie 새로 고침 성공, 브라우저 새로 고침으로 팝업 내용을 볼 수 있습니다.', - 'text_add_hot_links' => '실검 링크 추가', - 'text_add' => '추가', - 'text_margin_top' => '블록 내 여백 - 위', - 'text_margin_bottom' => '블록 내 여백 - 아래', - 'text_file_manager' => '파일 관리', - 'modules_link' => '링크', - 'modules_choose_link' => '링크 선택', - 'text_select_link' => '점프할 링크 페이지를 선택하십시오.', - 'text_no' => '무', - 'text_search' => '검색', - 'text_is_newpage' => '새 창에서 열 것입니까:', - 'text_manage' => '관리', - 'text_title_cover' => '제목(아래에서 선택한 링크 이름 덮어쓰기)', - 'text_enter_link' => '링크 주소를 입력하세요', - 'text_states' => '상태', - 'text_disable' => '사용제한', - 'text_no_data' => '데이터가 없거나 삭제되었습니다.', - 'text_to_add' => '추가하기', - 'text_category' => '상품분류', - 'text_information' => '특정 페이지', - 'text_manufacturer' => '상품 브랜드', - 'text_static' => '고정 연결', - 'text_custom' => '사용자 정의', - 'text_top_text' => '윗글', - 'text_edit_page_name' => '페이지 이름 수정', - 'text_page_name_no' => '이름 비워서는 안됩니다', - 'custom_name' => '사용자 이름', - 'move_down' => '아래로 이동', - 'move_up' => '위로 이동', + 'text_add_hot_links' => '실검 링크 추가', + 'text_add' => '추가', + 'text_margin_top' => '블록 내 여백 - 위', + 'text_margin_bottom' => '블록 내 여백 - 아래', + 'text_file_manager' => '파일 관리', + 'modules_link' => '링크', + 'modules_choose_link' => '링크 선택', + 'text_select_link' => '점프할 링크 페이지를 선택하십시오.', + 'text_no' => '무', + 'text_search' => '검색', + 'text_is_newpage' => '새 창에서 열 것입니까:', + 'text_manage' => '관리', + 'text_title_cover' => '제목(아래에서 선택한 링크 이름 덮어쓰기)', + 'text_enter_link' => '링크 주소를 입력하세요', + 'text_states' => '상태', + 'text_disable' => '사용제한', + 'text_no_data' => '데이터가 없거나 삭제되었습니다.', + 'text_to_add' => '추가하기', + 'text_category' => '상품분류', + 'text_information' => '특정 페이지', + 'text_manufacturer' => '상품 브랜드', + 'text_static' => '고정 연결', + 'text_custom' => '사용자 정의', + 'text_top_text' => '윗글', + 'text_edit_page_name' => '페이지 이름 수정', + 'text_page_name_no' => '이름 비워서는 안됩니다', + 'custom_name' => '사용자 이름', + 'move_down' => '아래로 이동', + 'move_up' => '위로 이동', // 고정연결 - 'text_static_product_latest' => '최신상품', - 'text_static_product_special' => '특가 상품', + 'text_static_product_latest' => '최신상품', + 'text_static_product_special' => '특가 상품', 'text_static_product_manufacturer' => '브랜드 코너', - 'text_static_account_account' => '회원중심', - 'text_static_account_order' => '이력주문', - 'text_static_account_wishlist' => '즐겨찾기 목록', - 'text_static_affiliate_login' => '연맹 회원', - 'text_static_account_newsletter' => '구독 상담', - 'text_static_information_contact' => '저희에게 연락주세요', - 'text_static_information_sitemap' => '사이트 지도', - 'text_static_information_faq' => '자주 문의되는 질문', - 'text_static_account_voucher' => '상품권', - 'text_static_account_login' => '등록', - 'text_static_account_register' => '등록', - 'text_static_checkout_cart' => '장바구니', - 'text_static_blog_home' => '블로그', + 'text_static_account_account' => '회원중심', + 'text_static_account_order' => '이력주문', + 'text_static_account_wishlist' => '즐겨찾기 목록', + 'text_static_affiliate_login' => '연맹 회원', + 'text_static_account_newsletter' => '구독 상담', + 'text_static_information_contact' => '저희에게 연락주세요', + 'text_static_information_sitemap' => '사이트 지도', + 'text_static_information_faq' => '자주 문의되는 질문', + 'text_static_account_voucher' => '상품권', + 'text_static_account_login' => '등록', + 'text_static_account_register' => '등록', + 'text_static_checkout_cart' => '장바구니', + 'text_static_blog_home' => '블로그', - 'text_edit_product' => '상품 상세 편집', - 'text_edit_home' => '페이지 편집', - 'text_edit_mb_home' => '휴대폰 초기화면 편집', - 'text_footer_edit' => '푸터 편집', - 'text_header_edit' => '페이지 편집', - 'text_save_refresh' => '저장 및 새로 고침', + 'text_edit_product' => '상품 상세 편집', + 'text_edit_home' => '페이지 편집', + 'text_edit_mb_home' => '휴대폰 초기화면 편집', + 'text_footer_edit' => '푸터 편집', + 'text_header_edit' => '페이지 편집', + 'text_save_refresh' => '저장 및 새로 고침', 'text_save_refresh_header' => '저장(페이지 새로 고침)', - 'text_service_icon' => '서비스 아이콘', - 'text_describe' => '묘사', - 'text_add_link' => '링크 추가', - 'text_is_btn' => '버튼 보이기 여부', - 'text_phone' => '전화', - 'text_address' => '주소', - 'text_email' => '이메일', - 'text_copyright' => '저작권/이미지', - 'text_yq_link' => '우정링크', - 'text_link_bar' => '링크바', - 'text_introduce' => '소개', - 'text_up_logo' => '업로드 logo', - 'text_hot_keywords' => '실검 키워드', - 'text_title' => '제목', - 'text_text_notific' => '텍스트 알림', - 'text_only_home' => '첫 화면에만 표시', - 'text_background_color' => '배경색', - 'text_font_color' => '글꼴 색상', - 'text_image' => '그림', - 'text_show' => '보기', - 'text_is_phone' => '연락처 보이기', - 'text_half_angle' => '반각 쉼표로 구분', - 'text_prompt_words' => '제시 문자', - 'text_search_bar' => '검색 막대', - 'text_btn_text' => '버튼 텍스트', - 'text_banner_ad' => '배너광고', - 'text_l_c' => '언어/통화란', - 'text_top_color' => '상부 색상', - 'text_title_color' => '타이틀 색상', - 'text_color' => '색깔', - 'text_left_text' => '왼쪽 문자', - 'text_right_icon' => '오른쪽 결제 아이콘', - 'text_bgi' => '배경도', - 'text_btn' => '버튼', + 'text_service_icon' => '서비스 아이콘', + 'text_describe' => '묘사', + 'text_add_link' => '링크 추가', + 'text_is_btn' => '버튼 보이기 여부', + 'text_phone' => '전화', + 'text_address' => '주소', + 'text_email' => '이메일', + 'text_copyright' => '저작권/이미지', + 'text_yq_link' => '우정링크', + 'text_link_bar' => '링크바', + 'text_introduce' => '소개', + 'text_up_logo' => '업로드 logo', + 'text_hot_keywords' => '실검 키워드', + 'text_title' => '제목', + 'text_text_notific' => '텍스트 알림', + 'text_only_home' => '첫 화면에만 표시', + 'text_background_color' => '배경색', + 'text_font_color' => '글꼴 색상', + 'text_image' => '그림', + 'text_show' => '보기', + 'text_is_phone' => '연락처 보이기', + 'text_half_angle' => '반각 쉼표로 구분', + 'text_prompt_words' => '제시 문자', + 'text_search_bar' => '검색 막대', + 'text_btn_text' => '버튼 텍스트', + 'text_banner_ad' => '배너광고', + 'text_l_c' => '언어/통화란', + 'text_top_color' => '상부 색상', + 'text_title_color' => '타이틀 색상', + 'text_color' => '색깔', + 'text_left_text' => '왼쪽 문자', + 'text_right_icon' => '오른쪽 결제 아이콘', + 'text_bgi' => '배경도', + 'text_btn' => '버튼', // page - 'page_product_title_size' => '상품 제목 글꼴 크기', - 'page_product_title_color' => '상품 제목 색상', - 'page_product_price_color' => '상품 가격 색상', - 'page_product_thumb_position' => '섬네일 위치', - 'page_product_image' => '상품 이미지', - 'page_product_bottom' => '바닥', - 'page_product_left' => '좌측', - 'page_product_magnifying_style' => '확대경 스타일', + 'page_product_title_size' => '상품 제목 글꼴 크기', + 'page_product_title_color' => '상품 제목 색상', + 'page_product_price_color' => '상품 가격 색상', + 'page_product_thumb_position' => '섬네일 위치', + 'page_product_image' => '상품 이미지', + 'page_product_bottom' => '바닥', + 'page_product_left' => '좌측', + 'page_product_magnifying_style' => '확대경 스타일', 'page_product_magnifying_window' => '외부창', - 'page_product_magnifying_inner' => '내부 부상', - 'page_product_magnifying_lens' => '내부 돋보기', - 'page_product_share' => '공유', - 'page_product_share_code' => '코드 공유', - 'page_product_general_settings' => '일반 설정', - 'page_product_font_size' => '문자 크기', + 'page_product_magnifying_inner' => '내부 부상', + 'page_product_magnifying_lens' => '내부 돋보기', + 'page_product_share' => '공유', + 'page_product_share_code' => '코드 공유', + 'page_product_general_settings' => '일반 설정', + 'page_product_font_size' => '문자 크기', // ModuleS List - 'modules_photo_text' => '그림과 텍스트 혼합', - 'modules_video_module' => '비디오 모듈', - 'modules_customer_reviews' => '고객 평가', - 'modules_images_link' => '멀티그램 링크', + 'modules_photo_text' => '그림과 텍스트 혼합', + 'modules_video_module' => '비디오 모듈', + 'modules_customer_reviews' => '고객 평가', + 'modules_images_link' => '멀티그램 링크', 'modules_background_icon_text' => '배경 아이콘 텍스트', - 'modules_slideshow_category' => '슬라이드 분류', - 'modules_bargain' => '흥정', - 'modules_bestseller' => '히트상품', - 'modules_blog' => '블로그', - 'modules_carousel' => '스윙 아이콘', - 'modules_category' => '분류 모듈', - 'modules_coupon' => '쿠폰', - 'modules_flash_sale' => '상품반짝세일', - 'modules_group_buying' => '공동구매', - 'modules_html' => '텍스트 리치', - 'modules_icon_text' => '아이콘 텍스트', - 'modules_image_100' => '단일 블록', - 'modules_image_200' => '한 줄 두 그림', - 'modules_image_300' => '일행삼도', - 'modules_image_301' => '일행삼도-pro', - 'modules_image_400' => '한 줄 네 그림', - 'modules_image_401' => '한 줄 네 그림-pro', - 'modules_latest' => '최신상품', - 'modules_manufacturer' => '브랜드 리스트', - 'modules_product' => '상품', - 'modules_product_tab' => '탭 상품', - 'modules_slideshow' => '슬라이드', - 'modules_quantity' => '표시수 제한', - 'modules_manage_bargain' => '할인상품 관리', - 'modules_manage_blog' => '블로그 관리', - 'modules_no_blog' => '글이 없으면 먼저 [컨텐츠 관리 -> 블로그 관리] 글 설정해주세요.', - 'modules_slides_per_view' => '수량 한 화면 표시', - 'modules_enter_content' => '내용을 입력하세요', - 'modules_full_screen' => '풀스크린 표시여부', - 'modules_content' => '내용', - 'modules_edit_content' => '내용 편집', - 'modules_select_image' => '그림 선택', - 'modules_quantity_line' => '한 줄에 몇 개 표시', - 'modules_please_choose' => '선택하세요', - 'modules_choose' => '선택', - 'modules_add_category' => '분류 추가', - 'modules_choose_category' => '구분 선택', - 'modules_set_coupon' => '쿠폰 설정', - 'modules_no_coupon' => '쿠폰 데이터 없음', - 'modules_manage_flash' => '초살 상품 관리', - 'modules_manage_group' => '모둠 상품 관리', - 'modules_no_state' => '현재 모듈이 켜져 있지 않거나 설정되어 있지 않습니다. 먼저 백그라운드 [모듈 관리]에서 모듈을 구성하십시오.', - 'modules_grid_mode' => '메쉬 모드', - 'modules_more_link' => '더 많은 링크', - 'modules_choose_brand' => '브랜드 선택', - 'modules_set_product' => '설정상품', - 'modules_keywords_search' => '검색어를 입력하세요', - 'modules_test_name' => '테스트 이름', - 'modules_please_products' => '상품을 추가해주세요', - 'modules_image_size' => '그림 크기', - 'modules_height' => '높이', - 'modules_width' => '너비', - 'modules_category_style' => '분류 표시 스타일', - 'modules_down' => '아래', - 'modules_left' => '왼쪽', - 'modules_category_no' => '분류하지 마라', - 'modules_review_name' => '명칭', - 'modules_profession' => '직업', - 'modules_video_cover' => '비디오 커버', - 'modules_video' => '비디오', + 'modules_slideshow_category' => '슬라이드 분류', + 'modules_bargain' => '흥정', + 'modules_bestseller' => '히트상품', + 'modules_blog' => '블로그', + 'modules_carousel' => '스윙 아이콘', + 'modules_category' => '분류 모듈', + 'modules_coupon' => '쿠폰', + 'modules_flash_sale' => '상품반짝세일', + 'modules_group_buying' => '공동구매', + 'modules_html' => '텍스트 리치', + 'modules_icon_text' => '아이콘 텍스트', + 'modules_image_100' => '단일 블록', + 'modules_image_200' => '한 줄 두 그림', + 'modules_image_300' => '일행삼도', + 'modules_image_301' => '일행삼도-pro', + 'modules_image_400' => '한 줄 네 그림', + 'modules_image_401' => '한 줄 네 그림-pro', + 'modules_latest' => '최신상품', + 'modules_manufacturer' => '브랜드 리스트', + 'modules_product' => '상품', + 'modules_product_tab' => '탭 상품', + 'modules_slideshow' => '슬라이드', + 'modules_quantity' => '표시수 제한', + 'modules_manage_bargain' => '할인상품 관리', + 'modules_manage_blog' => '블로그 관리', + 'modules_no_blog' => '글이 없으면 먼저 [컨텐츠 관리 -> 블로그 관리] 글 설정해주세요.', + 'modules_slides_per_view' => '수량 한 화면 표시', + 'modules_enter_content' => '내용을 입력하세요', + 'modules_full_screen' => '풀스크린 표시여부', + 'modules_content' => '내용', + 'modules_edit_content' => '내용 편집', + 'modules_select_image' => '그림 선택', + 'modules_quantity_line' => '한 줄에 몇 개 표시', + 'modules_please_choose' => '선택하세요', + 'modules_choose' => '선택', + 'modules_add_category' => '분류 추가', + 'modules_choose_category' => '구분 선택', + 'modules_set_coupon' => '쿠폰 설정', + 'modules_no_coupon' => '쿠폰 데이터 없음', + 'modules_manage_flash' => '초살 상품 관리', + 'modules_manage_group' => '모둠 상품 관리', + 'modules_no_state' => '현재 모듈이 켜져 있지 않거나 설정되어 있지 않습니다. 먼저 백그라운드 [모듈 관리]에서 모듈을 구성하십시오.', + 'modules_grid_mode' => '메쉬 모드', + 'modules_more_link' => '더 많은 링크', + 'modules_choose_brand' => '브랜드 선택', + 'modules_set_product' => '설정상품', + 'modules_keywords_search' => '검색어를 입력하세요', + 'modules_test_name' => '테스트 이름', + 'modules_please_products' => '상품을 추가해주세요', + 'modules_image_size' => '그림 크기', + 'modules_height' => '높이', + 'modules_width' => '너비', + 'modules_category_style' => '분류 표시 스타일', + 'modules_down' => '아래', + 'modules_left' => '왼쪽', + 'modules_category_no' => '분류하지 마라', + 'modules_review_name' => '명칭', + 'modules_profession' => '직업', + 'modules_video_cover' => '비디오 커버', + 'modules_video' => '비디오', // mobile - 'mobile_search' => '써치', + 'mobile_search' => '써치', 'mobile_search_normal' => '화면 상단에 고정되지 않음', - 'mobile_search_hide' => '맨 위 써치 표시되지 않음', - 'mobile_search_fixed' => '화면 맨 위에 고정 (기본값)', + 'mobile_search_hide' => '맨 위 써치 표시되지 않음', + 'mobile_search_fixed' => '화면 맨 위에 고정 (기본값)', // Menu - 'main_menu' => '메인메뉴', - 'please_add_data' => '데이터를 추가해주세요', - 'add_main_menu' => '메인 메뉴 추가', - 'main_menu_name_link' => '메인 메뉴명/링크', - 'main_menu_label' => '메인 메뉴 탭', + 'main_menu' => '메인메뉴', + 'please_add_data' => '데이터를 추가해주세요', + 'add_main_menu' => '메인 메뉴 추가', + 'main_menu_name_link' => '메인 메뉴명/링크', + 'main_menu_label' => '메인 메뉴 탭', 'label_background_color' => '태그 배경색', - 'label_text_color' => '라벨 문자색', - 'submenu_group' => '서브메뉴(그룹)', - 'add_menu_group' => '메뉴 그룹 추가', - 'full_screen' => '전체 화면인지 여부', - 'menu' => '메뉴', - 'add_submenu_link' => '서브메뉴 링크 추가', - 'type' => '유형', + 'label_text_color' => '라벨 문자색', + 'submenu_group' => '서브메뉴(그룹)', + 'add_menu_group' => '메뉴 그룹 추가', + 'full_screen' => '전체 화면인지 여부', + 'menu' => '메뉴', + 'add_submenu_link' => '서브메뉴 링크 추가', + 'type' => '유형', -// // footer - 'footer_edit' => '페이지 끝 편집기', - 'sub_title' => '부제목', - 'introduction' => '소개', + // // footer + 'footer_edit' => '페이지 끝 편집기', + 'sub_title' => '부제목', + 'introduction' => '소개', 'copyright_settings' => '저작권 설정', ]; diff --git a/resources/lang/ko/admin/category.php b/resources/lang/ko/admin/category.php index 2d3b86b2..259a80bc 100644 --- a/resources/lang/ko/admin/category.php +++ b/resources/lang/ko/admin/category.php @@ -10,13 +10,13 @@ */ return [ - 'index' => '분류', - 'edit_category' => '편집 분류', + 'index' => '분류', + 'edit_category' => '편집 분류', 'parent_category' => '상급 분류', - 'categories_index' => '분류 목록', + 'categories_index' => '분류 목록', 'categories_create' => '구분 만들기', - 'categories_show' => '분류상세', + 'categories_show' => '분류상세', 'categories_update' => '업데이트 카테고리', 'categories_delete' => '구분 삭제', ]; diff --git a/resources/lang/ko/admin/common.php b/resources/lang/ko/admin/common.php index 170924b7..cfcf0204 100644 --- a/resources/lang/ko/admin/common.php +++ b/resources/lang/ko/admin/common.php @@ -11,80 +11,80 @@ return [ 'admin_panel' => '백그라운드 관리', - 'edit' => '편집', - 'status' => '상태', - 'action' => '조작', - 'install' => '설치', - 'uninstall' => '지우기', + 'edit' => '편집', + 'status' => '상태', + 'action' => '조작', + 'install' => '설치', + 'uninstall' => '지우기', -// // errors - 'forbidden' => '접근금지', + // // errors + 'forbidden' => '접근금지', 'has_no_permission' => '이 페이지에 액세스할 수 있는 권한이 없습니다. 시스템 관리자에게 문의하십시오.', -// // header - 'home' => '홈페이지 관리', - 'order' => '주문관리', - 'rma' => 'A/S 관리', - 'rma_reason' => '반품교환원인관리', - 'product' => '상품관리', - 'brand' => '브랜드 관리', - 'attribute' => '속성 관리', + // // header + 'home' => '홈페이지 관리', + 'order' => '주문관리', + 'rma' => 'A/S 관리', + 'rma_reason' => '반품교환원인관리', + 'product' => '상품관리', + 'brand' => '브랜드 관리', + 'attribute' => '속성 관리', 'attribute_group' => '속성 그룹 관리', - 'category' => '분류관리', - 'customer_group' => '고객 그룹 관리', - 'customer' => '고객관리', - 'page' => '문장관리', - 'page_category' => '문장 분류', - 'setting' => '시스템 설정', - 'plugin' => '플러그인 관리', - 'marketing' => '플러그인마켓', - 'admin_user' => '백그라운드 사용자', - 'admin_role' => '사용자 역할', - 'region' => '영역 그룹', - 'tax_rate' => '세율관리', - 'tax_class' => '세금관리', - 'currency' => '화폐관리', - 'language' => '언어관리', - 'zone' => '성 관리', - 'country' => '국가관리', - 'file_manager' => '파일 관리자', + 'category' => '분류관리', + 'customer_group' => '고객 그룹 관리', + 'customer' => '고객관리', + 'page' => '문장관리', + 'page_category' => '문장 분류', + 'setting' => '시스템 설정', + 'plugin' => '플러그인 관리', + 'marketing' => '플러그인마켓', + 'admin_user' => '백그라운드 사용자', + 'admin_role' => '사용자 역할', + 'region' => '영역 그룹', + 'tax_rate' => '세율관리', + 'tax_class' => '세금관리', + 'currency' => '화폐관리', + 'language' => '언어관리', + 'zone' => '성 관리', + 'country' => '국가관리', + 'file_manager' => '파일 관리자', 'access_frontend' => '프런트 데스크에 액세스', // sidebar - 'theme_index' => '템플릿 설정', + 'theme_index' => '템플릿 설정', 'attribute_groups_index' => '속성 그룹', - 'attributes_index' => '속성', - 'settings_index' => '시스템 설정', - 'admin_users_index' => '백그라운드 사용자', - 'plugins_index' => '플러그인 설정', - 'marketing_index' => '플러그인마켓', - 'regions_index' => '영역 그룹', - 'tax_rates_index' => '세율 설정', - 'tax_classes_index' => '세금 카테고리', - 'currencies_index' => '화폐 관리', - 'languages_index' => '언어 관리', - 'design_index' => '홈페이지 인테리어', - 'pages_index' => '문장관리', - 'page_categories_index' => '문장 분류', - 'design_footer_index' => '페이지 끝 인테리어', - 'design_menu_index' => '내비게이션 설정', - 'categories_index' => '상품분류', - 'products_index' => '상품관리', - 'products_trashed' => '휴지통', - 'customers_trashed' => '휴지통', - 'brands_index' => '상품 브랜드', - 'orders_index' => '주문 목록', - 'rmas_index' => 'A/S 관리', - 'rma_reasons_index' => 'A/S 사유', - 'customers_index' => '고객 목록', - 'customer_groups_index' => '고객 그룹', - 'countries_index' => '국가 관리', - 'zones_index' => '성 관리', - 'update_nav' => '업데이트', - 'update_title' => '새로운 BeikeShop 버전을 발견, 즉시 업데이트하시겠습니까?', - 'update_new_version' => '최신 버전', - 'update_old_version' => '현재 버전', - 'update_date' => '업데이트 날짜', - 'update_btn' => '다운로드하러 가다', - 'expired_at' => '만료 기간', + 'attributes_index' => '속성', + 'settings_index' => '시스템 설정', + 'admin_users_index' => '백그라운드 사용자', + 'plugins_index' => '플러그인 설정', + 'marketing_index' => '플러그인마켓', + 'regions_index' => '영역 그룹', + 'tax_rates_index' => '세율 설정', + 'tax_classes_index' => '세금 카테고리', + 'currencies_index' => '화폐 관리', + 'languages_index' => '언어 관리', + 'design_index' => '홈페이지 인테리어', + 'pages_index' => '문장관리', + 'page_categories_index' => '문장 분류', + 'design_footer_index' => '페이지 끝 인테리어', + 'design_menu_index' => '내비게이션 설정', + 'categories_index' => '상품분류', + 'products_index' => '상품관리', + 'products_trashed' => '휴지통', + 'customers_trashed' => '휴지통', + 'brands_index' => '상품 브랜드', + 'orders_index' => '주문 목록', + 'rmas_index' => 'A/S 관리', + 'rma_reasons_index' => 'A/S 사유', + 'customers_index' => '고객 목록', + 'customer_groups_index' => '고객 그룹', + 'countries_index' => '국가 관리', + 'zones_index' => '성 관리', + 'update_nav' => '업데이트', + 'update_title' => '새로운 BeikeShop 버전을 발견, 즉시 업데이트하시겠습니까?', + 'update_new_version' => '최신 버전', + 'update_old_version' => '현재 버전', + 'update_date' => '업데이트 날짜', + 'update_btn' => '다운로드하러 가다', + 'expired_at' => '만료 기간', ]; diff --git a/resources/lang/ko/admin/country.php b/resources/lang/ko/admin/country.php index d58e73b2..41834455 100644 --- a/resources/lang/ko/admin/country.php +++ b/resources/lang/ko/admin/country.php @@ -11,8 +11,8 @@ return [ 'country_name' => '국가 이름', - 'countries_index' => '국가 목록', + 'countries_index' => '국가 목록', 'countries_create' => '국가 만들기', 'countries_update' => '국가 업데이트', - 'countries_delete' => '국가 삭제' + 'countries_delete' => '국가 삭제', ]; diff --git a/resources/lang/ko/admin/currency.php b/resources/lang/ko/admin/currency.php index a9947c0c..f2c22861 100644 --- a/resources/lang/ko/admin/currency.php +++ b/resources/lang/ko/admin/currency.php @@ -9,11 +9,11 @@ * @modified 2022-07-28 17:21:38 */ return [ - 'decimal_point' => '.', - 'thousand_point' => ',', - 'currencies_index' => '화폐 목록', + 'decimal_point' => '.', + 'thousand_point' => ',', + 'currencies_index' => '화폐 목록', 'currencies_create' => '화폐 창립', - 'currencies_show' => '화폐 상세', + 'currencies_show' => '화폐 상세', 'currencies_update' => '화폐 업데이트', 'currencies_delete' => '화폐 삭제', ]; diff --git a/resources/lang/ko/admin/customer.php b/resources/lang/ko/admin/customer.php index 8d75c160..cdf5fb0e 100644 --- a/resources/lang/ko/admin/customer.php +++ b/resources/lang/ko/admin/customer.php @@ -10,30 +10,30 @@ */ return [ - 'customers_index' => '고객 목록', + 'customers_index' => '고객 목록', 'customers_create' => '고객 만들기', - 'customers_show' => '고객 상세', + 'customers_show' => '고객 상세', 'customers_update' => '고객 업데이트', 'customers_delete' => '고객삭제', - 'user_info' => '사용자 정보', + 'user_info' => '사용자 정보', 'address_management' => '주소 관리', - 'user_name' => '사용자 이름', - 'password_info' => '비우면 원래 비밀번호 그대로 유지', - 'add_address' => '주소 추가', - 'no_address' => '현재 계정 주소 없음', - 'edit_address' => '주소 편집', - 'address' => '주소', - 'choose_country' => '나라 선택', - 'zones' => '성', - 'choose_zones' => '성 선택', - 'enter_city' => '도시 입력', - 'city' => '도시', - 'zipcode' => '우편번호', - 'address_1' => '상세 주소 1', - 'address_2' => '상세 주소 2', + 'user_name' => '사용자 이름', + 'password_info' => '비우면 원래 비밀번호 그대로 유지', + 'add_address' => '주소 추가', + 'no_address' => '현재 계정 주소 없음', + 'edit_address' => '주소 편집', + 'address' => '주소', + 'choose_country' => '나라 선택', + 'zones' => '성', + 'choose_zones' => '성 선택', + 'enter_city' => '도시 입력', + 'city' => '도시', + 'zipcode' => '우편번호', + 'address_1' => '상세 주소 1', + 'address_2' => '상세 주소 2', - 'cannot_delete_root' => '루트 계정 삭제 불가', - 'error_email' => '정확한 이메일 양식을 입력하세요', + 'cannot_delete_root' => '루트 계정 삭제 불가', + 'error_email' => '정확한 이메일 양식을 입력하세요', 'confirm_delete_address' => '주소를 삭제하시겠습니까?', ]; diff --git a/resources/lang/ko/admin/customer_group.php b/resources/lang/ko/admin/customer_group.php index a17818a3..720d2ce4 100644 --- a/resources/lang/ko/admin/customer_group.php +++ b/resources/lang/ko/admin/customer_group.php @@ -10,16 +10,16 @@ */ return [ - 'index' => '고객그룹', - 'consumption_limit' => '소비한도', - 'discount_rate' => '할인율', + 'index' => '고객그룹', + 'consumption_limit' => '소비한도', + 'discount_rate' => '할인율', 'reward_points_factor' => '보너스 포인트 계수', - 'integral_factor' => '적분계수 사용', + 'integral_factor' => '적분계수 사용', - 'customer_groups_index' => '고객 그룹 목록', + 'customer_groups_index' => '고객 그룹 목록', 'customer_groups_create' => '고객 그룹 만들기', - 'customer_groups_show' => '고객 그룹 상세', + 'customer_groups_show' => '고객 그룹 상세', 'customer_groups_update' => '고객 그룹 업데이트', 'customer_groups_delete' => '고객 그룹 삭제', - 'default_cannot_delete' => '기본 고객 그룹은 삭제할 수 없습니다.', + 'default_cannot_delete' => '기본 고객 그룹은 삭제할 수 없습니다.', ]; diff --git a/resources/lang/ko/admin/dashboard.php b/resources/lang/ko/admin/dashboard.php index 984bc691..32d88b2f 100644 --- a/resources/lang/ko/admin/dashboard.php +++ b/resources/lang/ko/admin/dashboard.php @@ -11,14 +11,14 @@ return [ 'customer_view' => '사용자 액세스', - 'order_total' => '주문량', - 'customer_new' => '신규 사용자', - 'order_amount' => '매출액', - 'yesterday' => '어제', - 'day_before' => '전날보다', + 'order_total' => '주문량', + 'customer_new' => '신규 사용자', + 'order_amount' => '매출액', + 'yesterday' => '어제', + 'day_before' => '전날보다', 'order_report' => '주문통계', 'latest_month' => '한 달', - 'latest_week' => '주간', - 'latest_year' => '1년', + 'latest_week' => '주간', + 'latest_year' => '1년', ]; diff --git a/resources/lang/ko/admin/design_builder.php b/resources/lang/ko/admin/design_builder.php index 21fb9838..e5ac4009 100644 --- a/resources/lang/ko/admin/design_builder.php +++ b/resources/lang/ko/admin/design_builder.php @@ -10,12 +10,12 @@ */ return [ - 'module_brand' => '브랜드 모듈', - 'module_banner' => '배너 모듈', + 'module_brand' => '브랜드 모듈', + 'module_banner' => '배너 모듈', 'module_four_image_pro' => '한 줄 네 그림 PRO', - 'module_slideshow' => '슬라이드 모듈', - 'module_tab_products' => '탭 상품', - 'module_product' => '상품 모듈', - 'module_icons' => '아이콘 모듈', - 'module_rich_text' => '텍스트 풍부한 모듈', + 'module_slideshow' => '슬라이드 모듈', + 'module_tab_products' => '탭 상품', + 'module_product' => '상품 모듈', + 'module_icons' => '아이콘 모듈', + 'module_rich_text' => '텍스트 풍부한 모듈', ]; diff --git a/resources/lang/ko/admin/file_manager.php b/resources/lang/ko/admin/file_manager.php index 10717435..5a025546 100644 --- a/resources/lang/ko/admin/file_manager.php +++ b/resources/lang/ko/admin/file_manager.php @@ -10,28 +10,28 @@ */ return [ - 'file_manager_create' => '디렉토리/파일 만들기', - 'file_manager_show' => '디렉토리/파일 보기', - 'file_manager_update' => '이름 바꾸기', - 'file_manager_delete' => '디렉토리/파일 삭제', + 'file_manager_create' => '디렉토리/파일 만들기', + 'file_manager_show' => '디렉토리/파일 보기', + 'file_manager_update' => '이름 바꾸기', + 'file_manager_delete' => '디렉토리/파일 삭제', 'directory_already_exist' => '디렉토리 존재', - 'directory_not_empty' => '디렉터리는 비울수 없습니다', - 'target_not_exist' => '원본 파일이나 폴더가 존재하지 않습니다.', - 'create_folder' => '폴더 만들기', - 'rename' => '이름 바꾸기', - 'download' => '다운로드', - 'upload_files' => '파일 업로드', - 'click_upload' => '클릭하여 업로드하거나, 그림을 여기로 끌어오기', - 'image_uploading' => '이미지 업로드 중', - 'no_file' => '파일 없음', - 'picture_space' => '이미지 공간', - 'show_pc' => 'PC에서 작업하세요', + 'directory_not_empty' => '디렉터리는 비울수 없습니다', + 'target_not_exist' => '원본 파일이나 폴더가 존재하지 않습니다.', + 'create_folder' => '폴더 만들기', + 'rename' => '이름 바꾸기', + 'download' => '다운로드', + 'upload_files' => '파일 업로드', + 'click_upload' => '클릭하여 업로드하거나, 그림을 여기로 끌어오기', + 'image_uploading' => '이미지 업로드 중', + 'no_file' => '파일 없음', + 'picture_space' => '이미지 공간', + 'show_pc' => 'PC에서 작업하세요', - 'confirm_delete_file' => '선택한 파일을 삭제하시겠습니까?', + 'confirm_delete_file' => '선택한 파일을 삭제하시겠습니까?', 'confirm_delete_folder' => '폴더 삭제 작업 중이고 폴더 내 모든 파일이 삭제됩니다. 확인하시겠습니까?', - 'new_folder' => '새 폴더', - 'can_empty' => '비울 수 없음', - 'finish' => '완성', - 'uploading' => '업로드 중', - 'file_manager' => '이미지 관리', + 'new_folder' => '새 폴더', + 'can_empty' => '비울 수 없음', + 'finish' => '완성', + 'uploading' => '업로드 중', + 'file_manager' => '이미지 관리', ]; diff --git a/resources/lang/ko/admin/language.php b/resources/lang/ko/admin/language.php index b6572de6..ab303cb1 100644 --- a/resources/lang/ko/admin/language.php +++ b/resources/lang/ko/admin/language.php @@ -10,11 +10,11 @@ */ return [ - 'languages_index' => '언어 목록', - 'languages_create' => '언어 만들기', - 'languages_show' => '언어상세', - 'languages_update' => '언어 업데이트', - 'languages_delete' => '언어 삭제', + 'languages_index' => '언어 목록', + 'languages_create' => '언어 만들기', + 'languages_show' => '언어상세', + 'languages_update' => '언어 업데이트', + 'languages_delete' => '언어 삭제', 'error_default_language_cannot_delete' => '기본 언어는 삭제할 수 없습니다!', - 'help_install' => '주의: 새로운 언어를 설치하려면 해당 언어의 상품, 분류, 내비게이션, 첫 페이지 모듈, 페이지 끝 등의 내용을 구성해야 합니다. 그렇지 않으면 페이지 표시 이상이 발생할 수 있습니다', + 'help_install' => '주의: 새로운 언어를 설치하려면 해당 언어의 상품, 분류, 내비게이션, 첫 페이지 모듈, 페이지 끝 등의 내용을 구성해야 합니다. 그렇지 않으면 페이지 표시 이상이 발생할 수 있습니다', ]; diff --git a/resources/lang/ko/admin/login.php b/resources/lang/ko/admin/login.php index e3de4f27..7ba4947f 100644 --- a/resources/lang/ko/admin/login.php +++ b/resources/lang/ko/admin/login.php @@ -11,5 +11,5 @@ return [ 'plugins_index' => 'BeikeShop 백그라운드로 로그인하기', - 'log_in' => '로그인', + 'log_in' => '로그인', ]; diff --git a/resources/lang/ko/admin/marketing.php b/resources/lang/ko/admin/marketing.php index 8085827e..ec580419 100644 --- a/resources/lang/ko/admin/marketing.php +++ b/resources/lang/ko/admin/marketing.php @@ -10,30 +10,30 @@ */ return [ - 'marketing_list' => '플러그인마켓', - 'marketing_index' => '마켓 초기화면', - 'marketing_show' => '플러그인 상세', - 'marketing_buy' => '플러그인 구매', - 'marketing_download' => '플러그인 다운로드', - 'set_token' => 'Token설치', - 'get_token_text' => 'BeikeShop 홈페이지 개인센터 로그인 - 도메인 이름 바인딩, 현재 도메인 이름 추가', - 'get_token' => 'Token을 클릭하여 획득합니다', - 'download_count' => '다운로드 횟수', - 'last_update' => '마지막 업데이트', - 'text_version' => '버전', - 'text_compatibility' => '호환성', - 'text_author' => '플러그인 작성자', - 'download_plugin' => '플러그인 다운로드', - 'download_description' => '플러그인 설명', - 'text_free' => '무료', - 'btn_buy' => '구매', - 'text_pay' => '지급금액', - 'select_pay' => '결제수단 선택', - 'wxpay' => '위챗 코드 스캔 결제!', - 'pay_success_title' => '결제 성공!', - 'pay_success_text' => '플러그인 구매 성공, 페이지 새로 고침 확정 클릭', - 'ali_pay_success' => '지불완료?', - 'ali_pay_text' => '결제가 완료되었으니 페이지를 새로고침해주세요', + 'marketing_list' => '플러그인마켓', + 'marketing_index' => '마켓 초기화면', + 'marketing_show' => '플러그인 상세', + 'marketing_buy' => '플러그인 구매', + 'marketing_download' => '플러그인 다운로드', + 'set_token' => 'Token설치', + 'get_token_text' => 'BeikeShop 홈페이지 개인센터 로그인 - 도메인 이름 바인딩, 현재 도메인 이름 추가', + 'get_token' => 'Token을 클릭하여 획득합니다', + 'download_count' => '다운로드 횟수', + 'last_update' => '마지막 업데이트', + 'text_version' => '버전', + 'text_compatibility' => '호환성', + 'text_author' => '플러그인 작성자', + 'download_plugin' => '플러그인 다운로드', + 'download_description' => '플러그인 설명', + 'text_free' => '무료', + 'btn_buy' => '구매', + 'text_pay' => '지급금액', + 'select_pay' => '결제수단 선택', + 'wxpay' => '위챗 코드 스캔 결제!', + 'pay_success_title' => '결제 성공!', + 'pay_success_text' => '플러그인 구매 성공, 페이지 새로 고침 확정 클릭', + 'ali_pay_success' => '지불완료?', + 'ali_pay_text' => '결제가 완료되었으니 페이지를 새로고침해주세요', 'version_compatible_text' => '이 플러그인은 현재 시스템 버전과 호환되지 않습니다 최신 버전 로 업그레이드하십시오.', - 'to_update' => '업그레이드하러 가기', + 'to_update' => '업그레이드하러 가기', ]; diff --git a/resources/lang/ko/admin/order.php b/resources/lang/ko/admin/order.php index ba28250e..68f2ba34 100644 --- a/resources/lang/ko/admin/order.php +++ b/resources/lang/ko/admin/order.php @@ -12,15 +12,15 @@ return [ 'list' => '주문 목록', - 'order_quantity' => '주문 수량', - 'order_amount' => '주문금액', - 'orders_index' => '주문 목록', - 'orders_create' => '주문 작성', - 'orders_show' => '주문내역', - 'orders_export' => '주문 내보내기', - 'orders_update' => '업데이트 오더', - 'orders_delete' => '주문 삭제', - 'notify' => '알림여부', + 'order_quantity' => '주문 수량', + 'order_amount' => '주문금액', + 'orders_index' => '주문 목록', + 'orders_create' => '주문 작성', + 'orders_show' => '주문내역', + 'orders_export' => '주문 내보내기', + 'orders_update' => '업데이트 오더', + 'orders_delete' => '주문 삭제', + 'notify' => '알림여부', 'orders_update_status' => '업데이트 상태', - 'error_status' => '상태를 선택하세요', + 'error_status' => '상태를 선택하세요', ]; diff --git a/resources/lang/ko/admin/page.php b/resources/lang/ko/admin/page.php index 9bed058f..705e6b95 100644 --- a/resources/lang/ko/admin/page.php +++ b/resources/lang/ko/admin/page.php @@ -10,13 +10,13 @@ */ return [ - 'index' => '문장관리', - 'info_title' => '메시지 제목', + 'index' => '문장관리', + 'info_title' => '메시지 제목', 'info_content' => '내용', - 'pages_index' => '글 목록', + 'pages_index' => '글 목록', 'pages_create' => '글 만들기', - 'pages_show' => '문장상세', + 'pages_show' => '문장상세', 'pages_update' => '문장 편집', 'pages_delete' => '글 삭제', ]; diff --git a/resources/lang/ko/admin/page_category.php b/resources/lang/ko/admin/page_category.php index 6674742c..03913d4b 100644 --- a/resources/lang/ko/admin/page_category.php +++ b/resources/lang/ko/admin/page_category.php @@ -10,13 +10,13 @@ */ return [ - 'index' => '문장구분', - 'info_title' => '분류 제목', + 'index' => '문장구분', + 'info_title' => '분류 제목', 'info_content' => '내용', - 'page_categories_index' => '분류 목록', + 'page_categories_index' => '분류 목록', 'page_categories_create' => '구분 만들기', - 'page_categories_show' => '분류상세', + 'page_categories_show' => '분류상세', 'page_categories_update' => '분류 편집', 'page_categories_delete' => '구분 삭제', ]; diff --git a/resources/lang/ko/admin/plugin.php b/resources/lang/ko/admin/plugin.php index 356ab9a5..b19ccbc4 100644 --- a/resources/lang/ko/admin/plugin.php +++ b/resources/lang/ko/admin/plugin.php @@ -10,27 +10,27 @@ */ return [ - 'plugins_index' => '플러그인 설정', - 'plugins_import' => '플러그인 업로드', - 'plugins_show' => '플러그인 상세', - 'plugins_update' => '플러그인 업데이트', + 'plugins_index' => '플러그인 설정', + 'plugins_import' => '플러그인 업로드', + 'plugins_show' => '플러그인 상세', + 'plugins_update' => '플러그인 업데이트', 'plugins_update_status' => '업데이트 상태', - 'plugins_install' => '설치', - 'plugins_uninstall' => '삭제', - 'to_enable' => '사용하기', - 'uninstall_hint' => '플러그를 제거하면 해당 플러그인의 모든 관련 데이터가 삭제됩니다. 제거하시겠습니까?', + 'plugins_install' => '설치', + 'plugins_uninstall' => '삭제', + 'to_enable' => '사용하기', + 'uninstall_hint' => '플러그를 제거하면 해당 플러그인의 모든 관련 데이터가 삭제됩니다. 제거하시겠습니까?', - 'plugin_list' => '플러그인 설정', - 'plugin_code' => '플러그인 코드', - 'plugin_type' => '플러그인 유형', + 'plugin_list' => '플러그인 설정', + 'plugin_code' => '플러그인 코드', + 'plugin_type' => '플러그인 유형', 'plugin_description' => '플러그인 설명', - 'plugin_upload' => '플러그인 업로드(zip 파일만 지원)', + 'plugin_upload' => '플러그인 업로드(zip 파일만 지원)', 'shipping' => '배달방식', - 'payment' => '지불방식', - 'social' => '소셜 네트워크', - 'total' => '주문계산', - 'feature' => '기능 모듈', + 'payment' => '지불방식', + 'social' => '소셜 네트워크', + 'total' => '주문계산', + 'feature' => '기능 모듈', 'language' => '언어번역', - 'theme' => '테마 틀', + 'theme' => '테마 틀', ]; diff --git a/resources/lang/ko/admin/product.php b/resources/lang/ko/admin/product.php index 6eee640a..a62117d3 100644 --- a/resources/lang/ko/admin/product.php +++ b/resources/lang/ko/admin/product.php @@ -10,40 +10,40 @@ */ return [ - 'products_index' => '상품 목록', - 'products_create' => '상품 만들기', - 'products_show' => '상품상세', - 'products_update' => '업데이트 상품', - 'products_delete' => '상품 삭제', + 'products_index' => '상품 목록', + 'products_create' => '상품 만들기', + 'products_show' => '상품상세', + 'products_update' => '업데이트 상품', + 'products_delete' => '상품 삭제', 'products_trashed' => '휴지통', 'products_restore' => '휴지통 복구', - 'clear_restore' => '휴지통 비우기', + 'clear_restore' => '휴지통 비우기', - 'batch_delete' => '대량 삭제', - 'batch_active' => '대량 로딩', + 'batch_delete' => '대량 삭제', + 'batch_active' => '대량 로딩', 'batch_inactive' => '대량 제거', - 'basic_information' => '기초정보', - 'product_details' => '상품상세', - 'product_relations' => '관련 상품', - 'stocks' => '상품재고', - 'model' => '모델', - 'price' => '가격', - 'origin_price' => '원가', - 'cost_price' => '원가', - 'quantity' => '수량', - 'enable_multi_spec' => '멀티 스펙 사용', - 'image_help' => '첫 번째 이미지는 상품 메인 이미지로 여러 장의 이미지를 동시에 업로드 할 수 있도록 지원되며, 여러 장의 이미지 간 위치 조정이 가능합니다', - 'add_variable' => '사양 추가', - 'add_variable_value' => '사양값 추가', - 'add_variable_image' => '사양 이미지 추가', + 'basic_information' => '기초정보', + 'product_details' => '상품상세', + 'product_relations' => '관련 상품', + 'stocks' => '상품재고', + 'model' => '모델', + 'price' => '가격', + 'origin_price' => '원가', + 'cost_price' => '원가', + 'quantity' => '수량', + 'enable_multi_spec' => '멀티 스펙 사용', + 'image_help' => '첫 번째 이미지는 상품 메인 이미지로 여러 장의 이미지를 동시에 업로드 할 수 있도록 지원되며, 여러 장의 이미지 간 위치 조정이 가능합니다', + 'add_variable' => '사양 추가', + 'add_variable_value' => '사양값 추가', + 'add_variable_image' => '사양 이미지 추가', 'default_main_product' => '기본 기본 상품', - 'modify_order' => '수정, 드래그 조정 순서 더블 클릭', - 'weight_text' => '무게', - 'weight_class' => '무게 단위', + 'modify_order' => '수정, 드래그 조정 순서 더블 클릭', + 'weight_text' => '무게', + 'weight_class' => '무게 단위', - 'confirm_batch_product' => '선택한 상품을 일괄 삭제하시겠습니까?', - 'confirm_batch_status' => '선택한 상품의 상태를 일괄 수정하시겠습니까?', - 'confirm_batch_restore' => '선택한 상품을 복구하시겠습니까?', + 'confirm_batch_product' => '선택한 상품을 일괄 삭제하시겠습니까?', + 'confirm_batch_status' => '선택한 상품의 상태를 일괄 수정하시겠습니까?', + 'confirm_batch_restore' => '선택한 상품을 복구하시겠습니까?', 'confirm_delete_restore' => '휴지대를 비우시겠습니까?', ]; diff --git a/resources/lang/ko/admin/region.php b/resources/lang/ko/admin/region.php index 299d44dc..d1b6fb54 100644 --- a/resources/lang/ko/admin/region.php +++ b/resources/lang/ko/admin/region.php @@ -10,14 +10,14 @@ */ return [ - 'index' => '영역 그룹', - 'regions_index' => '영역 그룹 목록', + 'index' => '영역 그룹', + 'regions_index' => '영역 그룹 목록', 'regions_create' => '영역 그룹 만들기', - 'regions_show' => '섹션 그룹 상세', + 'regions_show' => '섹션 그룹 상세', 'regions_update' => '영역 그룹 업데이트', 'regions_delete' => '영역 그룹 삭제', - 'name' => '이름', - 'describe' => '설명', - 'country' => '국가', - 'zone' => '성', + 'name' => '이름', + 'describe' => '설명', + 'country' => '국가', + 'zone' => '성', ]; diff --git a/resources/lang/ko/admin/rma.php b/resources/lang/ko/admin/rma.php index 1db9db7a..f0160e69 100644 --- a/resources/lang/ko/admin/rma.php +++ b/resources/lang/ko/admin/rma.php @@ -12,19 +12,19 @@ return [ 'index' => 'A/S 신청', - 'rmas_index' => 'A/S 목록', - 'rmas_show' => 'A/S 상세정보', + 'rmas_index' => 'A/S 목록', + 'rmas_show' => 'A/S 상세정보', 'rmas_update' => '업데이트 A/S', 'rmas_delete' => 'A/S 삭제', - 'customers_name' => '고객 이름', - 'quantity' => '수량', - 'service_type' => '서비스 유형', - 'rma_details' => 'A/S 신청내역', - 'reasons_return' => '반품 사유', - 'current_state' => '현재 상태', - 'modify_status' => '상태 수정', - 'remarks' => '메모 정보', - 'update_status' => '업데이트 상태', + 'customers_name' => '고객 이름', + 'quantity' => '수량', + 'service_type' => '서비스 유형', + 'rma_details' => 'A/S 신청내역', + 'reasons_return' => '반품 사유', + 'current_state' => '현재 상태', + 'modify_status' => '상태 수정', + 'remarks' => '메모 정보', + 'update_status' => '업데이트 상태', 'operation_history' => '조작 이력', ]; diff --git a/resources/lang/ko/admin/rma_reason.php b/resources/lang/ko/admin/rma_reason.php index 7495a440..cfbcf2f4 100644 --- a/resources/lang/ko/admin/rma_reason.php +++ b/resources/lang/ko/admin/rma_reason.php @@ -10,7 +10,7 @@ */ return [ - 'rma_reasons_index' => '원인 목록', + 'rma_reasons_index' => '원인 목록', 'rma_reasons_create' => '작성 이유', 'rma_reasons_update' => '업데이트 이유', 'rma_reasons_delete' => '삭제 사유', diff --git a/resources/lang/ko/admin/role.php b/resources/lang/ko/admin/role.php index a58d0be9..ee9dab90 100644 --- a/resources/lang/ko/admin/role.php +++ b/resources/lang/ko/admin/role.php @@ -10,10 +10,10 @@ */ return [ - 'admin_roles_index' => '캐릭터 목록', - 'admin_roles_create' => '캐릭터 만들기', - 'admin_roles_show' => '캐릭터 상세', - 'admin_roles_update' => '캐릭터 업데이트', - 'admin_roles_delete' => '캐릭터 삭제', + 'admin_roles_index' => '캐릭터 목록', + 'admin_roles_create' => '캐릭터 만들기', + 'admin_roles_show' => '캐릭터 상세', + 'admin_roles_update' => '캐릭터 업데이트', + 'admin_roles_delete' => '캐릭터 삭제', 'select_one_at_least' => '권한을 비워둘 수 없습니다. 하나 이상의 항목을 선택하십시오.', ]; diff --git a/resources/lang/ko/admin/setting.php b/resources/lang/ko/admin/setting.php index 648731e3..60c3504b 100644 --- a/resources/lang/ko/admin/setting.php +++ b/resources/lang/ko/admin/setting.php @@ -10,67 +10,67 @@ */ return [ - 'index' => '시스템 설정', - 'settings_index' => '시스템 설정 보기', - 'settings_update' => '시스템 설정 수정', - 'design_index' => '첫 페이지 편집기', + 'index' => '시스템 설정', + 'settings_index' => '시스템 설정 보기', + 'settings_update' => '시스템 설정 수정', + 'design_index' => '첫 페이지 편집기', 'design_footer_index' => '페이지 끝 편집기', - 'design_menu_index' => '내비게이션 편집기', - 'product_per_page' => '페이지당 표시 수', + 'design_menu_index' => '내비게이션 편집기', + 'product_per_page' => '페이지당 표시 수', - 'checkout_settings' => '계산 설정', - 'basic_settings' => '기본 설정', - 'store_settings' => '스토어 설정', - 'picture_settings' => '이미지 설정', - 'use_queue' => '큐 사용 여부', - 'mail_settings' => '메일 설정', - 'mail_engine' => '메일 엔진', - 'smtp_host' => '호스트', - 'smtp_username' => '사용자', - 'smtp_encryption' => '암호화 방식', + 'checkout_settings' => '계산 설정', + 'basic_settings' => '기본 설정', + 'store_settings' => '스토어 설정', + 'picture_settings' => '이미지 설정', + 'use_queue' => '큐 사용 여부', + 'mail_settings' => '메일 설정', + 'mail_engine' => '메일 엔진', + 'smtp_host' => '호스트', + 'smtp_username' => '사용자', + 'smtp_encryption' => '암호화 방식', 'smtp_encryption_info' => 'SSL 혹은 TLS', - 'smtp_password' => '비밀번호', - 'smtp_password_info' => 'SMTP 암호를 설정합니다.Gmail :https://security.google.com/settings/security/apppasswords', - 'smtp_port' => '포트', - 'smtp_timeout' => '시간 초과', - 'sendmail_path' => '실행 경로', - 'mailgun_domain' => '도메인 네임', - 'mailgun_secret' => '키', - 'mailgun_endpoint' => '포트', - 'mail_log' => '설명: 로그 엔진은 일반적으로 테스트 목적으로 사용됩니다!메일은 수신처로 실제 발송되지 않으며, 메일 내용은 로그 형식으로 `/storage/logs/laravel.log`에 저장됩니다.', - 'express_code_help' => '숫자, 문자, 밑줄', + 'smtp_password' => '비밀번호', + 'smtp_password_info' => 'SMTP 암호를 설정합니다.Gmail :https://security.google.com/settings/security/apppasswords', + 'smtp_port' => '포트', + 'smtp_timeout' => '시간 초과', + 'sendmail_path' => '실행 경로', + 'mailgun_domain' => '도메인 네임', + 'mailgun_secret' => '키', + 'mailgun_endpoint' => '포트', + 'mail_log' => '설명: 로그 엔진은 일반적으로 테스트 목적으로 사용됩니다!메일은 수신처로 실제 발송되지 않으며, 메일 내용은 로그 형식으로 `/storage/logs/laravel.log`에 저장됩니다.', + 'express_code_help' => '숫자, 문자, 밑줄', - 'guest_checkout' => '관광객 계산', - 'theme_default' => '기본 테마', - 'theme_black' => '블랙 테마', - 'shipping_address' => '배송지 주소', - 'payment_address' => '계산서 주소', - 'meta_title' => 'Meta 제목', - 'meta_description' => 'Meta 묘술', - 'meta_keywords' => 'Meta 키워드', - 'telephone' => '연락처', - 'email' => '이메일', - 'default_address' => '기본 주소', - 'default_country_set' => '기본 국가 설정', - 'default_zone_set' => '기본 지방 설정', - 'default_language' => '기본 언어', - 'default_currency' => '기본 통화', + 'guest_checkout' => '관광객 계산', + 'theme_default' => '기본 테마', + 'theme_black' => '블랙 테마', + 'shipping_address' => '배송지 주소', + 'payment_address' => '계산서 주소', + 'meta_title' => 'Meta 제목', + 'meta_description' => 'Meta 묘술', + 'meta_keywords' => 'Meta 키워드', + 'telephone' => '연락처', + 'email' => '이메일', + 'default_address' => '기본 주소', + 'default_country_set' => '기본 국가 설정', + 'default_zone_set' => '기본 지방 설정', + 'default_language' => '기본 언어', + 'default_currency' => '기본 통화', 'default_customer_group' => '기본 고객 그룹', - 'admin_name' => '백그라운드 디렉터리', - 'admin_name_info' => '백그라운드 디렉토리 관리, 기본값은 admin', - 'enable_tax' => '세금 활성화', - 'enable_tax_info' => '세금 계산 활성화 여부', - 'tax_address' => '세금주소', - 'tax_address_info' => '무슨 주소에 따라 세금을 계산합니까', - 'logo' => '사이트 Logo', - 'favicon' => 'favicon', - 'favicon_info' => '브라우저 탭에 표시되는 작은 아이콘은 PNG 형식 크기: 32*32 이어야 합니다.', - 'placeholder_image' => '위상도', - 'head_code' => '코드 삽입', - 'head_code_info' => '입력 상자의 코드를 전면 페이지 head에 삽입하여 코드를 집계하거나 특수 플러그인을 추가하는 데 사용할 수 있습니다', - 'rate_api_key' => '환율 API KEY', - 'multi_filter' => '고급 선별', - 'please_select' => '추가해주세요', - 'multi_filter_helper' => '필터 모듈에 표시할 속성을 선택하십시오.', - 'filter_attribute' => '속성 선별', + 'admin_name' => '백그라운드 디렉터리', + 'admin_name_info' => '백그라운드 디렉토리 관리, 기본값은 admin', + 'enable_tax' => '세금 활성화', + 'enable_tax_info' => '세금 계산 활성화 여부', + 'tax_address' => '세금주소', + 'tax_address_info' => '무슨 주소에 따라 세금을 계산합니까', + 'logo' => '사이트 Logo', + 'favicon' => 'favicon', + 'favicon_info' => '브라우저 탭에 표시되는 작은 아이콘은 PNG 형식 크기: 32*32 이어야 합니다.', + 'placeholder_image' => '위상도', + 'head_code' => '코드 삽입', + 'head_code_info' => '입력 상자의 코드를 전면 페이지 head에 삽입하여 코드를 집계하거나 특수 플러그인을 추가하는 데 사용할 수 있습니다', + 'rate_api_key' => '환율 API KEY', + 'multi_filter' => '고급 선별', + 'please_select' => '추가해주세요', + 'multi_filter_helper' => '필터 모듈에 표시할 속성을 선택하십시오.', + 'filter_attribute' => '속성 선별', ]; diff --git a/resources/lang/ko/admin/tax_class.php b/resources/lang/ko/admin/tax_class.php index ebaeee83..2ea58bd5 100644 --- a/resources/lang/ko/admin/tax_class.php +++ b/resources/lang/ko/admin/tax_class.php @@ -10,13 +10,13 @@ */ return [ - 'index' => '세류', - 'rule' => '규칙', - 'based_on' => '기초', - 'priority' => '우선순위', - 'tax_classes_index' => '세금 목록', + 'index' => '세류', + 'rule' => '규칙', + 'based_on' => '기초', + 'priority' => '우선순위', + 'tax_classes_index' => '세금 목록', 'tax_classes_create' => '세금 클래스 만들기', - 'tax_classes_show' => '세금 상세', + 'tax_classes_show' => '세금 상세', 'tax_classes_update' => '세금 클래스 업데이트', 'tax_classes_delete' => '세금 삭제', ]; diff --git a/resources/lang/ko/admin/tax_rate.php b/resources/lang/ko/admin/tax_rate.php index c74b879f..dd17166c 100644 --- a/resources/lang/ko/admin/tax_rate.php +++ b/resources/lang/ko/admin/tax_rate.php @@ -10,17 +10,17 @@ */ return [ - 'index' => '세율 설정', + 'index' => '세율 설정', 'tax_classes_index' => '세금 설정', - 'tax' => '세금', - 'tax_rate' => '세율', - 'type' => '유형', - 'area' => '구역', - 'percentage' => '백분율', - 'fixed_tax_rate' => '고정세율', - 'tax_rates_index' => '세율 목록', - 'tax_rates_create' => '세율 만들기', - 'tax_rates_show' => '세율 상세', - 'tax_rates_update' => '세율 갱신', - 'tax_rates_delete' => '세율 삭제', + 'tax' => '세금', + 'tax_rate' => '세율', + 'type' => '유형', + 'area' => '구역', + 'percentage' => '백분율', + 'fixed_tax_rate' => '고정세율', + 'tax_rates_index' => '세율 목록', + 'tax_rates_create' => '세율 만들기', + 'tax_rates_show' => '세율 상세', + 'tax_rates_update' => '세율 갱신', + 'tax_rates_delete' => '세율 삭제', ]; diff --git a/resources/lang/ko/admin/theme.php b/resources/lang/ko/admin/theme.php index a0d6eb5d..51c36724 100644 --- a/resources/lang/ko/admin/theme.php +++ b/resources/lang/ko/admin/theme.php @@ -10,9 +10,9 @@ */ return [ - 'page_title' => '나의 틀', - 'theme_name' => '기본 테마', - 'enabled_text' => '현재 사용', + 'page_title' => '나의 틀', + 'theme_name' => '기본 테마', + 'enabled_text' => '현재 사용', 'theme_pop_checkbox' => '데모 데이터 가져오기', - 'theme_pop_text' => '데모 데이터를 가져오면 기존 사양의 페이지 레이아웃, 분류, 상품 등의 데이터를 덮어쓸 수 있으니 먼저 백업하세요!', + 'theme_pop_text' => '데모 데이터를 가져오면 기존 사양의 페이지 레이아웃, 분류, 상품 등의 데이터를 덮어쓸 수 있으니 먼저 백업하세요!', ]; diff --git a/resources/lang/ko/admin/user.php b/resources/lang/ko/admin/user.php index 7640fdba..c1cadc41 100644 --- a/resources/lang/ko/admin/user.php +++ b/resources/lang/ko/admin/user.php @@ -10,12 +10,12 @@ */ return [ - 'admin_users_index' => '사용자 목록', - 'admin_users_create' => '사용자 만들기', - 'admin_users_show' => '사용자 상세', - 'admin_users_update' => '사용자 업데이트', - 'admin_users_delete' => '사용자 삭제', + 'admin_users_index' => '사용자 목록', + 'admin_users_create' => '사용자 만들기', + 'admin_users_show' => '사용자 상세', + 'admin_users_update' => '사용자 업데이트', + 'admin_users_delete' => '사용자 삭제', 'verify_code_expired' => '인증번호가 만료되었습니다(10분). 다시 가져오십시오.', - 'verify_code_error' => '인증번호 오류', - 'account_not_exist' => '계정 없음', + 'verify_code_error' => '인증번호 오류', + 'account_not_exist' => '계정 없음', ]; diff --git a/resources/lang/ko/admin/zone.php b/resources/lang/ko/admin/zone.php index 6acf87fe..c97818e1 100644 --- a/resources/lang/ko/admin/zone.php +++ b/resources/lang/ko/admin/zone.php @@ -9,10 +9,10 @@ * @modified 2022-08-29 17:21:38 */ return [ - 'zone_name' => '성 이름', + 'zone_name' => '성 이름', 'country_of_origin' => '소속 국가', - 'zones_index' => '성 목록', + 'zones_index' => '성 목록', 'zones_create' => '성 만들기', 'zones_update' => '갱신된 성', 'zones_delete' => '성 삭제', diff --git a/resources/lang/ko/auth.php b/resources/lang/ko/auth.php index e5b9526c..9ffd85db 100644 --- a/resources/lang/ko/auth.php +++ b/resources/lang/ko/auth.php @@ -13,7 +13,7 @@ return [ | */ - 'failed' => '계정 비밀번호 불일치', + 'failed' => '계정 비밀번호 불일치', 'password' => '비밀번호가 올바르지 않습니다', 'throttle' => '실패가 너무 많습니다. seconds 후 다시 시도하십시오.', diff --git a/resources/lang/ko/brand.php b/resources/lang/ko/brand.php index c84ffc92..932ca83b 100644 --- a/resources/lang/ko/brand.php +++ b/resources/lang/ko/brand.php @@ -10,7 +10,7 @@ */ return [ - 'name' => '브랜드명', - 'icon' => '아이콘', + 'name' => '브랜드명', + 'icon' => '아이콘', 'first_letter' => '첫글자', ]; diff --git a/resources/lang/ko/cart.php b/resources/lang/ko/cart.php index 01e06933..5e0e72ec 100644 --- a/resources/lang/ko/cart.php +++ b/resources/lang/ko/cart.php @@ -10,7 +10,7 @@ */ return [ - 'sku_id' => 'SKU ID', - 'quantity' => '구매수량', + 'sku_id' => 'SKU ID', + 'quantity' => '구매수량', 'stock_out' => '재고부족', ]; diff --git a/resources/lang/ko/category.php b/resources/lang/ko/category.php index e0edfcc6..06976348 100644 --- a/resources/lang/ko/category.php +++ b/resources/lang/ko/category.php @@ -10,6 +10,6 @@ */ return [ - 'name' => '분류명', + 'name' => '분류명', 'children' => '하위 분류', ]; diff --git a/resources/lang/ko/common.php b/resources/lang/ko/common.php index c10b7d35..59a57ab0 100644 --- a/resources/lang/ko/common.php +++ b/resources/lang/ko/common.php @@ -9,91 +9,90 @@ * @modified 2022-07-28 17:21:38 */ return [ - 'error_required' => '입력하세요:name', // 이것은 다른 용도로 사용됩니다. :name은 변수입니다. + 'error_required' => '입력하세요:name', // 이것은 다른 용도로 사용됩니다. :name은 변수입니다. 'error_input_required' => '입력 상자는 비워 둘 수 없습니다', - 'error_form' => '양식이 올바르게 작성되었는지 확인하십시오.', - 'email' => '이메일', - 'unauthenticated' => '먼저 로그인하세요', - 'success' => '성공', - 'no_data' => '데이터 없음~', - 'empty_items' => '데이터 없음', - 'created_success' => '만들기 성공!', - 'deleted_success' => '삭제 성공!', - 'restored_success' => '복구 성공!', - 'updated_success' => '업데이트 성공!', - 'edit_success' => '수정 성공!', - 'get_success' => '성공!', - 'all' => '다', - 'status' => '상태', - 'enable' => '사용', - 'disable' => '사용 안 함', - 'enabled' => '사용 가능', - 'disabled' => '사용 안 함', - 'home' => '첫 화면', - 'submit' => '제출', - 'title' => '제목', - 'save' => '저장', - 'cancel' => '취소', - 'confirm' => '확정', - 'no' => '아니오', - 'yes' => '예', - 'delete' => '삭제', - 'delete_all' => '모두 삭제', - 'sign_out' => '로그인 종료', - 'contact_us' => '연락해줘', - 'input' => '여기 검색 입력', - 'filter' => '선별', - 'reset' => '리셋', - 'export' => '내보내기', - 'edit' => '편집', - 'action' => '조작', - 'add' => '추가', - 'please_choose' => '선택해주세요', - 'recommend_size' => '제안사이즈', - 'pick_datetime' => '시간 선택', - 'confirm_delete' => '삭제하시겠습니까?', - 'text_hint' => '힌트', - 'restore' => '회복', - 'name' => '이름', - 'image' => '그림', - 'data' => '데이터', - 'view' => '보기', - 'phone' => '전화', - 'exit' => '퇴출', - 'return' => '돌아가다', - 'language' => '언어', - 'select_all' => '모두 선택', - 'menu' => '메뉴', - 'whether_open' => '열지 말지', - 'default' => '기본값', - 'to_setting' => '설정하러 가다', - 'low' => '낮다', - 'high' => '높다', - 'sales' => '판매량', - 'showing_page' => '1-:per_page 총:total 데이터', - 'text_grid' => '그리드', - 'text_list' => '목록', - 'text_form' => '부터', - 'text_to' => '까지', - 'batch_setting' => '배치 설정', - 'show_all' => '모두 보기', - 'get_more' => '추가', - 'view_more' => '자세히 보기', - 'view_details' => '자세히 보기', + 'error_form' => '양식이 올바르게 작성되었는지 확인하십시오.', + 'email' => '이메일', + 'unauthenticated' => '먼저 로그인하세요', + 'success' => '성공', + 'no_data' => '데이터 없음~', + 'empty_items' => '데이터 없음', + 'created_success' => '만들기 성공!', + 'deleted_success' => '삭제 성공!', + 'restored_success' => '복구 성공!', + 'updated_success' => '업데이트 성공!', + 'edit_success' => '수정 성공!', + 'get_success' => '성공!', + 'all' => '다', + 'status' => '상태', + 'enable' => '사용', + 'disable' => '사용 안 함', + 'enabled' => '사용 가능', + 'disabled' => '사용 안 함', + 'home' => '첫 화면', + 'submit' => '제출', + 'title' => '제목', + 'save' => '저장', + 'cancel' => '취소', + 'confirm' => '확정', + 'no' => '아니오', + 'yes' => '예', + 'delete' => '삭제', + 'delete_all' => '모두 삭제', + 'sign_out' => '로그인 종료', + 'contact_us' => '연락해줘', + 'input' => '여기 검색 입력', + 'filter' => '선별', + 'reset' => '리셋', + 'export' => '내보내기', + 'edit' => '편집', + 'action' => '조작', + 'add' => '추가', + 'please_choose' => '선택해주세요', + 'recommend_size' => '제안사이즈', + 'pick_datetime' => '시간 선택', + 'confirm_delete' => '삭제하시겠습니까?', + 'text_hint' => '힌트', + 'restore' => '회복', + 'name' => '이름', + 'image' => '그림', + 'data' => '데이터', + 'view' => '보기', + 'phone' => '전화', + 'exit' => '퇴출', + 'return' => '돌아가다', + 'language' => '언어', + 'select_all' => '모두 선택', + 'menu' => '메뉴', + 'whether_open' => '열지 말지', + 'default' => '기본값', + 'to_setting' => '설정하러 가다', + 'low' => '낮다', + 'high' => '높다', + 'sales' => '판매량', + 'showing_page' => '1-:per_page 총:total 데이터', + 'text_grid' => '그리드', + 'text_list' => '목록', + 'text_form' => '부터', + 'text_to' => '까지', + 'batch_setting' => '배치 설정', + 'show_all' => '모두 보기', + 'get_more' => '추가', + 'view_more' => '자세히 보기', + 'view_details' => '자세히 보기', - - 'id' => 'ID', - 'created_at' => '만드는 시간', - 'updated_at' => '시간 수정', - 'sort_order' => '정렬', - 'error_page' => '접속한 데이터가 존재하지 않거나 삭제되었습니다~', + 'id' => 'ID', + 'created_at' => '만드는 시간', + 'updated_at' => '시간 수정', + 'sort_order' => '정렬', + 'error_page' => '접속한 데이터가 존재하지 않거나 삭제되었습니다~', 'error_page_btn' => '이전 페이지로 돌아가기', - 'no_repeat' => '다시 추가하지 마세요', + 'no_repeat' => '다시 추가하지 마세요', 'order' => [ - 'unpaid' => '지불할 것', - 'paid' => '지불완료', - 'shipped' => '발송되었습니다', + 'unpaid' => '지불할 것', + 'paid' => '지불완료', + 'shipped' => '발송되었습니다', 'completed' => '완료됨', 'cancelled' => '취소되었습니다', ], diff --git a/resources/lang/ko/currency.php b/resources/lang/ko/currency.php index cecd4192..9a61fe62 100644 --- a/resources/lang/ko/currency.php +++ b/resources/lang/ko/currency.php @@ -10,14 +10,14 @@ */ return [ - 'decimal_point' => '.', + 'decimal_point' => '.', 'thousand_point' => ',', - 'name' => '이름', - 'code' => '코딩', - 'icon' => '아이콘', - 'symbol_left' => '왼쪽 기호', - 'symbol_right' => '오른쪽 기호', - 'value' => '환율값', - 'decimal_place' => '소수 자리수', - 'latest_value' => '최신 환율값', + 'name' => '이름', + 'code' => '코딩', + 'icon' => '아이콘', + 'symbol_left' => '왼쪽 기호', + 'symbol_right' => '오른쪽 기호', + 'value' => '환율값', + 'decimal_place' => '소수 자리수', + 'latest_value' => '최신 환율값', ]; diff --git a/resources/lang/ko/customer.php b/resources/lang/ko/customer.php index d5ddea2b..3c043b78 100644 --- a/resources/lang/ko/customer.php +++ b/resources/lang/ko/customer.php @@ -10,8 +10,8 @@ */ return [ - 'name' => '이름', - 'email' => 'Email', - 'from' => '등록출처', + 'name' => '이름', + 'email' => 'Email', + 'from' => '등록출처', 'customer_group' => '고객 그룹', ]; diff --git a/resources/lang/ko/customer_group.php b/resources/lang/ko/customer_group.php index 4f2c2f39..1b3ac03d 100644 --- a/resources/lang/ko/customer_group.php +++ b/resources/lang/ko/customer_group.php @@ -11,5 +11,5 @@ return [ 'level' => '등급', - 'name' => '고객 그룹 명칭', + 'name' => '고객 그룹 명칭', ]; diff --git a/resources/lang/ko/mail.php b/resources/lang/ko/mail.php index ddfd4c02..f2a8cbbc 100644 --- a/resources/lang/ko/mail.php +++ b/resources/lang/ko/mail.php @@ -10,18 +10,18 @@ */ return [ - 'order_success' => '주문제출 성공', - 'order_update' => '주문 상태 업데이트', - 'order_success_info' => '당신의 주문은 성공적으로 제출되었으며 아래는 주문 내역입니다', - 'not_oneself' => '본인이 아닌 작업은 무시할 수 있습니다.', - 'customer_name' => '존경하는:name 사용자, 안녕하세요!', - 'sincerely' => '이치', - 'team' => '팀', - 'order_update_status' => '주문: number 상태 업데이트', - 'welcome_register' => '등록을 환영합니다', - 'register_end' => '등록을 마쳤으니 아래 버튼을 클릭하여 쇼핑몰로 돌아가십시오.', - 'btn_buy_now' => '즉시 구매', + 'order_success' => '주문제출 성공', + 'order_update' => '주문 상태 업데이트', + 'order_success_info' => '당신의 주문은 성공적으로 제출되었으며 아래는 주문 내역입니다', + 'not_oneself' => '본인이 아닌 작업은 무시할 수 있습니다.', + 'customer_name' => '존경하는:name 사용자, 안녕하세요!', + 'sincerely' => '이치', + 'team' => '팀', + 'order_update_status' => '주문: number 상태 업데이트', + 'welcome_register' => '등록을 환영합니다', + 'register_end' => '등록을 마쳤으니 아래 버튼을 클릭하여 쇼핑몰로 돌아가십시오.', + 'btn_buy_now' => '즉시 구매', 'retrieve_password_title' => '비밀번호 찾기', - 'retrieve_password_text' => '비밀번호를 찾고 있습니다. 아래 버튼을 클릭하여 작업을 완료하십시오.', - 'retrieve_password_btn' => '비밀번호 재설정하려면 여기를 클릭하십시오.', + 'retrieve_password_text' => '비밀번호를 찾고 있습니다. 아래 버튼을 클릭하여 작업을 완료하십시오.', + 'retrieve_password_btn' => '비밀번호 재설정하려면 여기를 클릭하십시오.', ]; diff --git a/resources/lang/ko/order.php b/resources/lang/ko/order.php index e9929b02..57484534 100644 --- a/resources/lang/ko/order.php +++ b/resources/lang/ko/order.php @@ -10,46 +10,46 @@ */ return [ - 'id' => 'ID', - 'number' => '주문번호', - 'customer_name' => '고객 이름', - 'payment_method' => '지불방식', - 'email' => 'Email', - 'telephone' => '연락처', - 'created_at' => '만드는 시간', - 'updated_at' => '업데이트 시간', - 'status' => '상태', - 'status_format' => '상태', - 'total' => '주문 총액', - 'express_number' => '송장번호', + 'id' => 'ID', + 'number' => '주문번호', + 'customer_name' => '고객 이름', + 'payment_method' => '지불방식', + 'email' => 'Email', + 'telephone' => '연락처', + 'created_at' => '만드는 시간', + 'updated_at' => '업데이트 시간', + 'status' => '상태', + 'status_format' => '상태', + 'total' => '주문 총액', + 'express_number' => '송장번호', 'express_company' => '택배회사', 'order_shipments' => '배송정보', - 'address_info' => '주소 정보', + 'address_info' => '주소 정보', 'shipping_address' => '배송지 주소', - 'payment_address' => '계산서 주소', - 'order_status' => '주문상태', - 'current_status' => '현재 상태', + 'payment_address' => '계산서 주소', + 'order_status' => '주문상태', + 'current_status' => '현재 상태', 'change_to_status' => '상태 수정', - 'comment' => '메모 정보', - 'submit_status' => '업데이트 상태', + 'comment' => '메모 정보', + 'submit_status' => '업데이트 상태', - 'product_info' => '상품정보', - 'product_name' => '이름', - 'product_price' => '가격', + 'product_info' => '상품정보', + 'product_name' => '이름', + 'product_price' => '가격', 'product_sub_price' => '소계', - 'product_quantity' => '수량', - 'product_sku' => 'SKU', + 'product_quantity' => '수량', + 'product_sku' => 'SKU', - 'action_history' => '작업 로그', - 'history_status' => '상태', - 'history_comment' => '비고', + 'action_history' => '작업 로그', + 'history_status' => '상태', + 'history_comment' => '비고', 'history_created_at' => '업데이트 날짜', - 'unpaid' => '지불대기', - 'paid' => '지불완료', - 'shipped' => '발송됨', + 'unpaid' => '지불대기', + 'paid' => '지불완료', + 'shipped' => '발송됨', 'completed' => '완료됨', 'cancelled' => '취소됨', ]; diff --git a/resources/lang/ko/page.php b/resources/lang/ko/page.php index 95c21a4d..4dd97875 100644 --- a/resources/lang/ko/page.php +++ b/resources/lang/ko/page.php @@ -9,6 +9,6 @@ * @modified 2022-07-28 20:59:38 */ return [ - 'title' => '제목', + 'title' => '제목', 'content' => '내용', ]; diff --git a/resources/lang/ko/page_category.php b/resources/lang/ko/page_category.php index f75da8bc..257746ee 100644 --- a/resources/lang/ko/page_category.php +++ b/resources/lang/ko/page_category.php @@ -9,9 +9,9 @@ * @modified 2022-07-28 20:59:38 */ return [ - 'index' => '뉴스블로그', - 'author' => '작가', - 'views' => '수 보기', - 'created_at' => '발표시간', + 'index' => '뉴스블로그', + 'author' => '작가', + 'views' => '수 보기', + 'created_at' => '발표시간', 'text_summary' => '요약', ]; diff --git a/resources/lang/ko/pagination.php b/resources/lang/ko/pagination.php index 9e53cd96..b44caffa 100644 --- a/resources/lang/ko/pagination.php +++ b/resources/lang/ko/pagination.php @@ -14,6 +14,6 @@ return [ */ 'previous' => '« 이전 페이지', - 'next' => '다음 페이지 »', + 'next' => '다음 페이지 »', ]; diff --git a/resources/lang/ko/passwords.php b/resources/lang/ko/passwords.php index 2345a56b..526795fb 100644 --- a/resources/lang/ko/passwords.php +++ b/resources/lang/ko/passwords.php @@ -13,10 +13,10 @@ return [ | */ - 'reset' => 'Your password has been reset!', - 'sent' => 'We have emailed your password reset link!', + 'reset' => 'Your password has been reset!', + 'sent' => 'We have emailed your password reset link!', 'throttled' => 'Please wait before retrying.', - 'token' => 'This password reset token is invalid.', - 'user' => "We can't find a user with that email address.", + 'token' => 'This password reset token is invalid.', + 'user' => "We can't find a user with that email address.", ]; diff --git a/resources/lang/ko/product.php b/resources/lang/ko/product.php index 51716c7b..e12bfdf9 100644 --- a/resources/lang/ko/product.php +++ b/resources/lang/ko/product.php @@ -10,22 +10,22 @@ */ return [ - 'name' => '이름', - 'sku' => 'SKU', - 'price' => '가격', + 'name' => '이름', + 'sku' => 'SKU', + 'price' => '가격', 'origin_price' => '원가', - 'cost_price' => '원가', - 'brand' => '브랜드', - 'category' => '분류', - 'model' => '모델', - 'quantity' => '재고', - 'image' => '그림', - 'kg' => 'kg', - 'g' => 'g', - 'oz' => '온스', - 'lb' => '파운드', + 'cost_price' => '원가', + 'brand' => '브랜드', + 'category' => '분류', + 'model' => '모델', + 'quantity' => '재고', + 'image' => '그림', + 'kg' => 'kg', + 'g' => 'g', + 'oz' => '온스', + 'lb' => '파운드', - 'active' => '업로드', - 'inactive' => '품절', + 'active' => '업로드', + 'inactive' => '품절', 'has_been_inactive' => '해당 상품은 판매 종료되었습니다', ]; diff --git a/resources/lang/ko/rma.php b/resources/lang/ko/rma.php index c5bf9dd1..f1c69912 100644 --- a/resources/lang/ko/rma.php +++ b/resources/lang/ko/rma.php @@ -10,22 +10,22 @@ */ return [ - 'order_id' => '주문', + 'order_id' => '주문', 'order_product_id' => '주문상품', - 'customer_id' => '고객님', - 'quantity' => '수량', - 'opened' => '포장 뜯음', - 'rma_reason_id' => '반품사유', - 'type' => 'A/S 유형', + 'customer_id' => '고객님', + 'quantity' => '수량', + 'opened' => '포장 뜯음', + 'rma_reason_id' => '반품사유', + 'type' => 'A/S 유형', - 'status_pending' => '처리 대기 중', - 'status_rejected' => '거부됨', - 'status_approved' => '승인 완료(고객님이 상품을 보내주시면)', - 'status_shipped' => '발송(반송)되었습니다', + 'status_pending' => '처리 대기 중', + 'status_rejected' => '거부됨', + 'status_approved' => '승인 완료(고객님이 상품을 보내주시면)', + 'status_shipped' => '발송(반송)되었습니다', 'status_completed' => '완료됨', - 'type_return' => '반품', - 'type_exchange' => '교환', - 'type_repair' => '수리', - 'type_reissue' => '재발급 상품', - 'type_refund' => '환불', + 'type_return' => '반품', + 'type_exchange' => '교환', + 'type_repair' => '수리', + 'type_reissue' => '재발급 상품', + 'type_refund' => '환불', ]; diff --git a/resources/lang/ko/shop/account.php b/resources/lang/ko/shop/account.php index 1785c926..8f83ae6e 100644 --- a/resources/lang/ko/shop/account.php +++ b/resources/lang/ko/shop/account.php @@ -10,129 +10,129 @@ */ return [ - 'index' => '개인중심', - 'revise_info' => '정보 수정', - 'collect' => '소장', - '쿠폰' => '쿠폰', - 'my_order' => '내 주문', - 'orders' => '전체주문', - 'pending_payment' => '미지급금', - 'pending_send' => '출하 대기 중', - 'pending_receipt' => '수령대기', - 'after_sales' => 'A/S', - 'no_order' => '아직 주문이 없습니다!', - 'to_buy' => '주문하러 가기', - 'order_number' => '주문번호', - 'order_time' => '주문시간', - 'state' => '상태', - 'amount' => '금액', - 'check_details' => '상세보기', - 'all' => '공', - 'items' => '상품', + 'index' => '개인중심', + 'revise_info' => '정보 수정', + 'collect' => '소장', + '쿠폰' => '쿠폰', + 'my_order' => '내 주문', + 'orders' => '전체주문', + 'pending_payment' => '미지급금', + 'pending_send' => '출하 대기 중', + 'pending_receipt' => '수령대기', + 'after_sales' => 'A/S', + 'no_order' => '아직 주문이 없습니다!', + 'to_buy' => '주문하러 가기', + 'order_number' => '주문번호', + 'order_time' => '주문시간', + 'state' => '상태', + 'amount' => '금액', + 'check_details' => '상세보기', + 'all' => '공', + 'items' => '상품', 'verify_code_expired' => '인증번호가 만료되었습니다(10분). 다시 가져오십시오.', - 'verify_code_error' => '인증번호 오류', - 'account_not_exist' => '계정 없음', + 'verify_code_error' => '인증번호 오류', + 'account_not_exist' => '계정 없음', 'edit' => [ - 'index' => '개인정보 수정', - 'modify_avatar' => '프로필 수정', - 'suggest' => 'JPG 또는 PNG 이미지를 업로드합니다.300 x 300을 권장합니다.', - 'name' => '이름', - 'email' => '이메일', - 'crop' => '커팅', + 'index' => '개인정보 수정', + 'modify_avatar' => '프로필 수정', + 'suggest' => 'JPG 또는 PNG 이미지를 업로드합니다.300 x 300을 권장합니다.', + 'name' => '이름', + 'email' => '이메일', + 'crop' => '커팅', 'password_edit_success' => '비밀번호 수정 성공', - 'origin_password_fail' => '원래 비밀번호 오류', + 'origin_password_fail' => '원래 비밀번호 오류', ], 'wishlist' => [ - 'index' => '나의 컬렉션', - 'product' => '상품', - 'price' => '가격', + 'index' => '나의 컬렉션', + 'product' => '상품', + 'price' => '가격', 'check_details' => '상세보기', ], 'order' => [ - 'index' => '나의 주문', - 'completed' => '수령확인 완료', - 'cancelled' => '주문이 취소되었습니다', + 'index' => '나의 주문', + 'completed' => '수령확인 완료', + 'cancelled' => '주문이 취소되었습니다', 'order_details' => '주문내역', - 'amount' => '금액', - 'state' => '상태', - 'order_number' => '주문번호', - 'check' => '보기', + 'amount' => '금액', + 'state' => '상태', + 'order_number' => '주문번호', + 'check' => '보기', 'order_info' => [ - 'index' => '주문내역', - 'order_details' => '주문내역', - 'to_pay' => '지불하러 가다', - 'cancel' => '주문취소', - 'confirm_receipt' => '수령확인', - 'order_number' => '주문번호', - 'order_date' => '주문일자', - 'state' => '상태', - 'order_amount' => '주문금액', - 'order_items' => '주문상품', + 'index' => '주문내역', + 'order_details' => '주문내역', + 'to_pay' => '지불하러 가다', + 'cancel' => '주문취소', + 'confirm_receipt' => '수령확인', + 'order_number' => '주문번호', + 'order_date' => '주문일자', + 'state' => '상태', + 'order_amount' => '주문금액', + 'order_items' => '주문상품', 'apply_after_sales' => 'A/S 신청하기', - 'order_total' => '합계주문', - 'logistics_status' => '물류 상태', - 'order_status' => '주문상태', - 'remark' => '비고', - 'update_time' => '업데이트 시간', + 'order_total' => '합계주문', + 'logistics_status' => '물류 상태', + 'order_status' => '주문상태', + 'remark' => '비고', + 'update_time' => '업데이트 시간', ], 'order_success' => [ - 'order_success' => '축하드립니다, 주문 생성 성공!', - 'order_number' => '주문번호', - 'amounts_payable' => '미지급금액', - 'payment_method' => '지불방식', - 'view_order' => '주문내역보기', - 'pay_now' => '바로 지불', - 'kind_tips' => '따뜻한 힌트:주문 생성 완료, 빠른 결제 부탁드립니다~', - 'also' => '괜찮으십니다', - 'continue_purchase' => '계속 구매', + 'order_success' => '축하드립니다, 주문 생성 성공!', + 'order_number' => '주문번호', + 'amounts_payable' => '미지급금액', + 'payment_method' => '지불방식', + 'view_order' => '주문내역보기', + 'pay_now' => '바로 지불', + 'kind_tips' => '따뜻한 힌트:주문 생성 완료, 빠른 결제 부탁드립니다~', + 'also' => '괜찮으십니다', + 'continue_purchase' => '계속 구매', 'contact_customer_service' => '주문 과정에서 문제가 있으시면 언제든지 저희 고객 서비스 직원에게 연락하시면 됩니다', - 'emaill' => '메일함', - 'service_hotline' => '서비스 핫라인', + 'emaill' => '메일함', + 'service_hotline' => '서비스 핫라인', ], ], 'addresses' => [ - 'index' => '내 주소', - 'add_address' => '새 주소 추가', + 'index' => '내 주소', + 'add_address' => '새 주소 추가', 'default_address' => '기본 주소', - 'delete' => '삭제', - 'edit' => '편집', - 'enter_name' => '이름 입력하세요', - 'enter_phone' => '연락처를 입력하세요', - 'enter_address' => '상세주소 1을 입력하세요', + 'delete' => '삭제', + 'edit' => '편집', + 'enter_name' => '이름 입력하세요', + 'enter_phone' => '연락처를 입력하세요', + 'enter_address' => '상세주소 1을 입력하세요', 'select_province' => '성을 선택하십시오', - 'enter_city' => '도시를 적어주세요', - 'confirm_delete' => '주소를 삭제하시겠습니까?', - 'hint' => '힌트', - 'check_form' => '양식이 올바르게 작성되었는지 확인하십시오', + 'enter_city' => '도시를 적어주세요', + 'confirm_delete' => '주소를 삭제하시겠습니까?', + 'hint' => '힌트', + 'check_form' => '양식이 올바르게 작성되었는지 확인하십시오', ], 'rma' => [ - 'index' => '나의 A/S', - 'commodity' => '상품', - 'quantity' => '수량', - 'service_type' => '서비스 유형', + 'index' => '나의 A/S', + 'commodity' => '상품', + 'quantity' => '수량', + 'service_type' => '서비스 유형', 'return_reason' => '교체 사유', 'creation_time' => '만들기 시간', - 'check' => '보기', + 'check' => '보기', 'rma_info' => [ 'index' => 'A/S 내역', ], 'rma_form' => [ - 'index' => 'A/S 정보 제출하기', - 'service_type' => '서비스 유형', + 'index' => 'A/S 정보 제출하기', + 'service_type' => '서비스 유형', 'return_quantity' => '반환수량', - 'unpacked' => '포장 개봉 완료', - 'return_reason' => '교체 사유', - 'remark' => '비고', + 'unpacked' => '포장 개봉 완료', + 'return_reason' => '교체 사유', + 'remark' => '비고', ], ], ]; diff --git a/resources/lang/ko/shop/carts.php b/resources/lang/ko/shop/carts.php index fdc0688a..3388552c 100644 --- a/resources/lang/ko/shop/carts.php +++ b/resources/lang/ko/shop/carts.php @@ -10,31 +10,31 @@ */ return [ - 'index' => '장바구니', - 'added_to_cart' => '카트 가입 완료', - 'select_all' => '모두 선택', - 'commodity' => '상품', - 'quantity' => '수량', - 'subtotal' => '소계', - 'product_total' => '상품총계', + 'index' => '장바구니', + 'added_to_cart' => '카트 가입 완료', + 'select_all' => '모두 선택', + 'commodity' => '상품', + 'quantity' => '수량', + 'subtotal' => '소계', + 'product_total' => '상품총계', 'customer_discount' => '멤버십 혜택', - 'order_total' => '미지급총액', - 'shipping_fee' => '운임', - 'all' => '다', - 'selected' => '선택됨', - 'to_checkout' => '계산하러 가기', - 'cart_empty' => '장바구니가 비어 있습니다', - 'go_buy' => '사고 싶은 상품 보러 가기', - 'go_shopping' => '구경하러 가기', - 'must_select' => '적어도 하나의 상품을 선택해주세요', - 'mini' => '당신의 장바구니', - 'delete' => '삭제', - 'check_cart' => '장바구니 보기', + 'order_total' => '미지급총액', + 'shipping_fee' => '운임', + 'all' => '다', + 'selected' => '선택됨', + 'to_checkout' => '계산하러 가기', + 'cart_empty' => '장바구니가 비어 있습니다', + 'go_buy' => '사고 싶은 상품 보러 가기', + 'go_shopping' => '구경하러 가기', + 'must_select' => '적어도 하나의 상품을 선택해주세요', + 'mini' => '당신의 장바구니', + 'delete' => '삭제', + 'check_cart' => '장바구니 보기', - 'invalid_customer' => '장바구니 고객 무효', - 'empty_selected_products' => '장바구니 선택 상품이 비어 있습니다', + 'invalid_customer' => '장바구니 고객 무효', + 'empty_selected_products' => '장바구니 선택 상품이 비어 있습니다', 'invalid_shipping_address' => '배송지 주소가 유효하지 않습니다.', - 'invalid_payment_address' => '청구서 주소가 잘못되었습니다.', - 'invalid_shipping_method' => '배송수단 불가', - 'invalid_payment_method' => '지불수단 사용불가', + 'invalid_payment_address' => '청구서 주소가 잘못되었습니다.', + 'invalid_shipping_method' => '배송수단 불가', + 'invalid_payment_method' => '지불수단 사용불가', ]; diff --git a/resources/lang/ko/shop/checkout.php b/resources/lang/ko/shop/checkout.php index 5152774c..ba16e44a 100644 --- a/resources/lang/ko/shop/checkout.php +++ b/resources/lang/ko/shop/checkout.php @@ -10,32 +10,32 @@ */ return [ - 'index' => '계산', - 'address' => '배송지 주소', - 'payment_address' => '계산서 주소', + 'index' => '계산', + 'address' => '배송지 주소', + 'payment_address' => '계산서 주소', 'same_as_shipping_address' => '계산서주소와 수취주소', - 'chosen' => '선택됨', - 'edit' => '편집', - 'choose_another_address' => '다른 주소 선택', - 'add_new_address' => '새 주소 추가', - 'payment_method' => '지불방식', - 'delivery_method' => '배달방식', - 'cart_totals' => '카트 총수', - 'submit_order' => '주문제출', - 'enter_name' => '이름 입력하세요', - 'enter_phone' => '연락처를 입력하세요', - 'enter_address' => '상세주소 1을 입력하세요', - 'select_province' => '성을 선택하십시오', - 'enter_city' => '도시를 적어주세요', - 'check_form' => '양식이 올바르게 작성되었는지 확인하십시오', - 'error_payment_address' => '계산서 주소를 선택하세요', - 'checkout_success_title' => '주문 결제 완료!', + 'chosen' => '선택됨', + 'edit' => '편집', + 'choose_another_address' => '다른 주소 선택', + 'add_new_address' => '새 주소 추가', + 'payment_method' => '지불방식', + 'delivery_method' => '배달방식', + 'cart_totals' => '카트 총수', + 'submit_order' => '주문제출', + 'enter_name' => '이름 입력하세요', + 'enter_phone' => '연락처를 입력하세요', + 'enter_address' => '상세주소 1을 입력하세요', + 'select_province' => '성을 선택하십시오', + 'enter_city' => '도시를 적어주세요', + 'check_form' => '양식이 올바르게 작성되었는지 확인하십시오', + 'error_payment_address' => '계산서 주소를 선택하세요', + 'checkout_success_title' => '주문 결제 완료!', 'payment' => [ - 'index' => '지불하세요', - 'please_pay' => '주문 제출 완료, 결제 부탁드립니다', - 'order_number' => '주문번호', + 'index' => '지불하세요', + 'please_pay' => '주문 제출 완료, 결제 부탁드립니다', + 'order_number' => '주문번호', 'amounts_payable' => '미지급금액', - 'payment_method' => '지불방식', + 'payment_method' => '지불방식', ], ]; diff --git a/resources/lang/ko/shop/common.php b/resources/lang/ko/shop/common.php index 86fb2b11..6ed6a60a 100644 --- a/resources/lang/ko/shop/common.php +++ b/resources/lang/ko/shop/common.php @@ -10,10 +10,10 @@ */ return [ - 'home' => '첫 화면', - 'submit' => '제출', - 'cancel' => '취소', + 'home' => '첫 화면', + 'submit' => '제출', + 'cancel' => '취소', 'confirm' => '확정', - 'no' => '아니오', - 'yes' => '예', + 'no' => '아니오', + 'yes' => '예', ]; diff --git a/resources/lang/ko/shop/currency.php b/resources/lang/ko/shop/currency.php index 06f91864..c940c346 100644 --- a/resources/lang/ko/shop/currency.php +++ b/resources/lang/ko/shop/currency.php @@ -9,6 +9,6 @@ * @modified 2022-07-28 17:21:38 */ return [ - 'decimal_point' => '.', + 'decimal_point' => '.', 'thousand_point' => ',', ]; diff --git a/resources/lang/ko/shop/forgotten.php b/resources/lang/ko/shop/forgotten.php index 09df19b2..8beb1a57 100644 --- a/resources/lang/ko/shop/forgotten.php +++ b/resources/lang/ko/shop/forgotten.php @@ -11,23 +11,23 @@ */ return [ - 'index' => '비밀번호 잊어버림', - 'follow_prompt' => '힌트에 따라 비밀번호를 찾아주세요', - 'email_forCode' => '이메일 주소를 입력하여 인증번호를 받으십시오.', - 'enter_password' => '새 비밀번호를 입력하세요', - 'email' => '이메일', - 'email_address' => '이메일 주소', - 'verification_code' => '인증 코드', - 'password' => '비밀번호', - 'confirm_password' => '비밀번호 확인', - 'send_code' => '인증번호 보내기', - 'to_back' => '뒤로 돌아가기', - 'enter_password' => '비밀번호를 입력하세요', - 'enter_email' => '이메일을 입력하세요', - 'please_confirm' => '비밀번호를 확인하세요', - 'password_err' => '두번의 비밀번호 입력 불일치!', - 'email_err' => '정확한 이메일 주소를 입력하세요!', - 'enter_code' => '인증번호를 입력하세요', + 'index' => '비밀번호 잊어버림', + 'follow_prompt' => '힌트에 따라 비밀번호를 찾아주세요', + 'email_forCode' => '이메일 주소를 입력하여 인증번호를 받으십시오.', + 'enter_password' => '새 비밀번호를 입력하세요', + 'email' => '이메일', + 'email_address' => '이메일 주소', + 'verification_code' => '인증 코드', + 'password' => '비밀번호', + 'confirm_password' => '비밀번호 확인', + 'send_code' => '인증번호 보내기', + 'to_back' => '뒤로 돌아가기', + 'enter_password' => '비밀번호를 입력하세요', + 'enter_email' => '이메일을 입력하세요', + 'please_confirm' => '비밀번호를 확인하세요', + 'password_err' => '두번의 비밀번호 입력 불일치!', + 'email_err' => '정확한 이메일 주소를 입력하세요!', + 'enter_code' => '인증번호를 입력하세요', 'verification_code_sent' => '인증번호가 발송되었으니 확인하시고 인증번호를 입력해주세요', - 'password_updated' => '비밀번호 수정됨', + 'password_updated' => '비밀번호 수정됨', ]; diff --git a/resources/lang/ko/shop/login.php b/resources/lang/ko/shop/login.php index b70c9a71..ea899fee 100644 --- a/resources/lang/ko/shop/login.php +++ b/resources/lang/ko/shop/login.php @@ -11,30 +11,30 @@ */ return [ - 'index' => '사용자 로그인 및 등록', - 'login_and_sign' => '로그인/등록', - 'home' => '첫 화면', - 'library' => '개인중심', - 'login' => '로그인', - 'already' => '이미 우리 거래처인가요?', - 'description' => '이미 우리 고객인가요?', - 'email' => '메일', - 'email_address' => '메일 주소', - 'password' => '비밀번호', - 'forget_password' => '비밀번호를 잊어버림', - 'new' => '새 계정', - 'not_already' => '저희 등록 고객이 아닌가요?', - 'confirm_password' => '비밀번호 확인', - 'register' => '등록', - 'enter_password' => '비밀번호를 입력하세요', - 'enter_email' => '이메일을 입력하세요', - 'please_confirm' => '비밀번호를 확인하세요', - 'password_err' => '두번의 비밀번호 입력 불일치!', - 'email_err' => '정확한 이메일 주소를 입력하세요!', - 'check_form' => '양식이 올바르게 작성되었는지 확인하십시오', + 'index' => '사용자 로그인 및 등록', + 'login_and_sign' => '로그인/등록', + 'home' => '첫 화면', + 'library' => '개인중심', + 'login' => '로그인', + 'already' => '이미 우리 거래처인가요?', + 'description' => '이미 우리 고객인가요?', + 'email' => '메일', + 'email_address' => '메일 주소', + 'password' => '비밀번호', + 'forget_password' => '비밀번호를 잊어버림', + 'new' => '새 계정', + 'not_already' => '저희 등록 고객이 아닌가요?', + 'confirm_password' => '비밀번호 확인', + 'register' => '등록', + 'enter_password' => '비밀번호를 입력하세요', + 'enter_email' => '이메일을 입력하세요', + 'please_confirm' => '비밀번호를 확인하세요', + 'password_err' => '두번의 비밀번호 입력 불일치!', + 'email_err' => '정확한 이메일 주소를 입력하세요!', + 'check_form' => '양식이 올바르게 작성되었는지 확인하십시오', 'email_or_password_error' => '메일 또는 비밀번호 오류!', - 'customer_inactive' => '사용자가 비활성화되었습니다.', - 'login_successfully' => '로그인 성공', - 'register_success' => '등록 성공', - 'third_party_logins' => '서드파티 로그인', + 'customer_inactive' => '사용자가 비활성화되었습니다.', + 'login_successfully' => '로그인 성공', + 'register_success' => '등록 성공', + 'third_party_logins' => '서드파티 로그인', ]; diff --git a/resources/lang/ko/shop/order.php b/resources/lang/ko/shop/order.php index 2255c690..67790de5 100644 --- a/resources/lang/ko/shop/order.php +++ b/resources/lang/ko/shop/order.php @@ -11,8 +11,8 @@ */ return [ - 'invalid_order' => '무효 주문', - 'confirm_order' => '사용자가 수령 확인', - 'cancel_order' => '사용자의 주문 취소', + 'invalid_order' => '무효 주문', + 'confirm_order' => '사용자가 수령 확인', + 'cancel_order' => '사용자의 주문 취소', 'order_already_paid' => '주문 결제 완료', ]; diff --git a/resources/lang/ko/shop/products.php b/resources/lang/ko/shop/products.php index 8f5e7a13..7e7475e1 100644 --- a/resources/lang/ko/shop/products.php +++ b/resources/lang/ko/shop/products.php @@ -10,12 +10,12 @@ */ return [ - 'search' => '검색', + 'search' => '검색', 'add_to_favorites' => '즐겨찾기', - 'add_to_cart' => '장바구니 넣기', - 'buy_now' => '바로 구매하기', - 'product_details' => '상품상세', - 'in_stock' => '재고 있음', - 'out_stock' => '품절', - 'model' => '모델', + 'add_to_cart' => '장바구니 넣기', + 'buy_now' => '바로 구매하기', + 'product_details' => '상품상세', + 'in_stock' => '재고 있음', + 'out_stock' => '품절', + 'model' => '모델', ]; diff --git a/resources/lang/ko/shop/steps.php b/resources/lang/ko/shop/steps.php index 2e88ce0a..4d922956 100644 --- a/resources/lang/ko/shop/steps.php +++ b/resources/lang/ko/shop/steps.php @@ -10,9 +10,9 @@ */ return [ - 'index' => '단계', - 'cart' => '장바구니', - 'checkout' => '계산', + 'index' => '단계', + 'cart' => '장바구니', + 'checkout' => '계산', 'submitted_successfully' => '제출 성공', - 'payment' => '결제', + 'payment' => '결제', ]; diff --git a/resources/lang/ko/shop/wishlist.php b/resources/lang/ko/shop/wishlist.php index 81cc0070..85c57479 100644 --- a/resources/lang/ko/shop/wishlist.php +++ b/resources/lang/ko/shop/wishlist.php @@ -10,6 +10,6 @@ */ return [ - 'add_wishlist_success' => '즐겨찾기에 추가됨', + 'add_wishlist_success' => '즐겨찾기에 추가됨', 'remove_wishlist_success' => '즐겨찾기 제거 성공', ]; diff --git a/resources/lang/ko/validation.php b/resources/lang/ko/validation.php index 15d7f9ec..93e4b57b 100644 --- a/resources/lang/ko/validation.php +++ b/resources/lang/ko/validation.php @@ -13,119 +13,119 @@ return [ | */ - 'accepted' => ':attribute는 받아들여야 한다.', - 'accepted_if' => ':other가:value일 때:attribute는 수락해야 합니다.', - 'active_url' => ':attribute는 유효한 URL이어야 합니다.', - 'after' => ':attribute는 다음 날짜이어야 합니다.', - 'after_or_equal' => ':attribute는 다음과 같은 날짜여야 합니다.', - 'alpha' => ':attribute는 알파벳만 포함할 수 있습니다.', - 'alpha_dash' => ':attribute는 문자, 숫자, 중간 줄 또는 밑줄만 포함할 수 있습니다.', - 'alpha_num' => ':attribute는 문자와 숫자만 포함할 수 있습니다.', - 'array' => ':attribute는 배열이어야 합니다.', - 'before' => ':attribute는: date 이전 날짜여야 합니다.', + 'accepted' => ':attribute는 받아들여야 한다.', + 'accepted_if' => ':other가:value일 때:attribute는 수락해야 합니다.', + 'active_url' => ':attribute는 유효한 URL이어야 합니다.', + 'after' => ':attribute는 다음 날짜이어야 합니다.', + 'after_or_equal' => ':attribute는 다음과 같은 날짜여야 합니다.', + 'alpha' => ':attribute는 알파벳만 포함할 수 있습니다.', + 'alpha_dash' => ':attribute는 문자, 숫자, 중간 줄 또는 밑줄만 포함할 수 있습니다.', + 'alpha_num' => ':attribute는 문자와 숫자만 포함할 수 있습니다.', + 'array' => ':attribute는 배열이어야 합니다.', + 'before' => ':attribute는: date 이전 날짜여야 합니다.', 'before_or_equal' => ':attribute는: date 이전 또는 동일한 날짜여야 합니다.', - 'between' => [ + 'between' => [ 'numeric' => ':attribute는:min에서:max 사이여야 합니다.', - 'file' => ':attribute는:min에서:max KB 사이여야 합니다.', - 'string' => ':attribute는:min에서:max 사이에 있어야 합니다.', - 'array' => ':attribute는:min에서:max 항목 사이에 있어야 합니다.', + 'file' => ':attribute는:min에서:max KB 사이여야 합니다.', + 'string' => ':attribute는:min에서:max 사이에 있어야 합니다.', + 'array' => ':attribute는:min에서:max 항목 사이에 있어야 합니다.', ], - 'boolean' => ':attribute 문자는 true 또는 false이어야 합니다.', - 'confirmed' => ':attribute 2차 확인 불일치.', + 'boolean' => ':attribute 문자는 true 또는 false이어야 합니다.', + 'confirmed' => ':attribute 2차 확인 불일치.', 'current_password' => '비밀번호가 올바르지 않습니다.', - 'date' => ':attribute는 유효한 날짜여야 합니다.', - 'date_equals' => ':attribute는:date와 같아야 합니다.', - 'date_format' => ':attribute가 주어진 형식:format과 일치하지 않습니다.', - 'declined' => ':attribute는 거부되어야 합니다.', - 'declined_if' => ':other가:value.일 때:attribute는 거부되어야 합니다.', - 'different' => ':attribute는:other.', - 'digits' => ':attribute는 반드시: digits 자리수입니다.', - 'digits_between' => ':attribute는:min과:max 비트 사이여야 합니다.', - 'dimensions' => ':attribute에 잘못된 그림 크기가 있습니다.', - 'distinct' => ':attribute 필드에 중복된 값이 있습니다.', - 'email' => ':attribute는 유효한 이메일 주소여야 합니다.', - 'ends_with' => ':attribute는:values로 끝나야 합니다.', - 'exists' => '선택된: attribute는 유효하지 않습니다.', - 'file' => ':attribute는 파일이어야 합니다.', - 'filled' => ':attribute의 필드는 필수입니다.', - 'gt' => [ + 'date' => ':attribute는 유효한 날짜여야 합니다.', + 'date_equals' => ':attribute는:date와 같아야 합니다.', + 'date_format' => ':attribute가 주어진 형식:format과 일치하지 않습니다.', + 'declined' => ':attribute는 거부되어야 합니다.', + 'declined_if' => ':other가:value.일 때:attribute는 거부되어야 합니다.', + 'different' => ':attribute는:other.', + 'digits' => ':attribute는 반드시: digits 자리수입니다.', + 'digits_between' => ':attribute는:min과:max 비트 사이여야 합니다.', + 'dimensions' => ':attribute에 잘못된 그림 크기가 있습니다.', + 'distinct' => ':attribute 필드에 중복된 값이 있습니다.', + 'email' => ':attribute는 유효한 이메일 주소여야 합니다.', + 'ends_with' => ':attribute는:values로 끝나야 합니다.', + 'exists' => '선택된: attribute는 유효하지 않습니다.', + 'file' => ':attribute는 파일이어야 합니다.', + 'filled' => ':attribute의 필드는 필수입니다.', + 'gt' => [ 'numeric' => ':attribute는:value보다 커야 합니다.', - 'file' => ':attribute는:value KB보다 커야 합니다.', - 'string' => ':attribute:value 를 초과해야 합니다 . ', - 'array' => ':attribute는:value 항목을 초과해야 합니다 . ', + 'file' => ':attribute는:value KB보다 커야 합니다.', + 'string' => ':attribute:value 를 초과해야 합니다 . ', + 'array' => ':attribute는:value 항목을 초과해야 합니다 . ', ], 'gte' => [ 'numeric' => ':attribute는:value보다 크거나 같아야 합니다 . ', - 'file' => ':attribute는 value KB보다 크거나 같아야 합니다 . ', - 'string' => ':attribute는 value 문자보다 크거나 같아야 합니다 . ', - 'array' => ':attribute는:value 항목보다 크거나 같아야 합니다 . ', + 'file' => ':attribute는 value KB보다 크거나 같아야 합니다 . ', + 'string' => ':attribute는 value 문자보다 크거나 같아야 합니다 . ', + 'array' => ':attribute는:value 항목보다 크거나 같아야 합니다 . ', ], - 'image' => ':attribute는 이미지 형식이어야 합니다 . ', - 'in' => '선택된: attribute는 유효하지 않습니다 . ', + 'image' => ':attribute는 이미지 형식이어야 합니다 . ', + 'in' => '선택된: attribute는 유효하지 않습니다 . ', 'in_array' => ':attribute 필드가 없습니다:other . ', - 'integer' => ':attribute는 정수여야 합니다 . ', - 'ip' => ':attribute는 유효한 IP 주소여야 합니다 . ', - 'ipv4' => ':attribute는 유효한 IPv4 주소여야 합니다 . ', - 'ipv6' => ':attribute는 유효한 IPv6 주소여야 합니다 . ', - 'json' => ':attribute는 유효한 JSON 문자열이어야 합니다 . ', - 'lt' => [ + 'integer' => ':attribute는 정수여야 합니다 . ', + 'ip' => ':attribute는 유효한 IP 주소여야 합니다 . ', + 'ipv4' => ':attribute는 유효한 IPv4 주소여야 합니다 . ', + 'ipv6' => ':attribute는 유효한 IPv6 주소여야 합니다 . ', + 'json' => ':attribute는 유효한 JSON 문자열이어야 합니다 . ', + 'lt' => [ 'numeric' => ':attribute는:value보다 적어야 합니다 . ', - 'file' => ':attribute는:value KB보다 작아야 합니다 . ', - 'string' => ':attribute는 value보다 작아야 합니다 . ', - 'array' => ':attribute는:value 항목보다 작아야 합니다 . ', + 'file' => ':attribute는:value KB보다 작아야 합니다 . ', + 'string' => ':attribute는 value보다 작아야 합니다 . ', + 'array' => ':attribute는:value 항목보다 작아야 합니다 . ', ], 'lte' => [ 'numeric' => ':attribute는:value 보다 적거나 같아야 합니다', - 'file' => ':attribute는: value KB보다 적거나 같아야 합니다 . ', - 'string' => ':attribute는 value 문자보다 적거나 같아야 합니다 . ', - 'array' => ':attribute는:value 항목보다 적거나 같아야 합니다 . ', + 'file' => ':attribute는: value KB보다 적거나 같아야 합니다 . ', + 'string' => ':attribute는 value 문자보다 적거나 같아야 합니다 . ', + 'array' => ':attribute는:value 항목보다 적거나 같아야 합니다 . ', ], 'max' => [ 'numeric' => ':attribute의 최대 길이는:max 자릿수 . ', - 'file' => ':attribute의 최대 크기는:max KB . ', - 'string' => ':attribute의 최대 길이는:max 문자입니다 . ', - 'array' => ':attribute 최대값은:max 항목 . ', + 'file' => ':attribute의 최대 크기는:max KB . ', + 'string' => ':attribute의 최대 길이는:max 문자입니다 . ', + 'array' => ':attribute 최대값은:max 항목 . ', ], - 'mimes' => ':attribute의 파일 형식은:values . ', + 'mimes' => ':attribute의 파일 형식은:values . ', 'mimetypes' => ':attribute의 파일 형식은 다음과 같아야 합니다 . values . ', - 'min' => [ + 'min' => [ 'numeric' => ':attribute의 최소 길이는:min 자리수 . ', - 'file' => ':attribute의 크기는 최소한:min KB . ', - 'string' => ':attribute의 최소 길이는:min 문자입니다 . ', - 'array' => ':attribute 최소:min 항목 . ', + 'file' => ':attribute의 크기는 최소한:min KB . ', + 'string' => ':attribute의 최소 길이는:min 문자입니다 . ', + 'array' => ':attribute 최소:min 항목 . ', ], - 'multiple_of' => ':attribute는 value의 배수여야 합니다 . ', - 'not_in' => '선택된: attribute는 유효하지 않습니다 . ', - 'not_regex' => ':attribute 형식이 잘못되었습니다 . ', - 'numeric' => ':attribute는 숫자여야 합니다 . ', - 'password' => '비밀번호 오류 . ', - 'present' => ':attribute 필드가 있어야 합니다 . ', - 'prohibited' => ':attribute 필드는 금지되어 있습니다 . ', - 'prohibited_if' => ':attribute 필드는 금지되어 있습니다:other는:value . ', - 'prohibited_unless' => ':attribute 필드는 금지되어 있습니다:other는:values입니다 . ', - 'prohibits' => ':attribute 필드는 사용할 수 없습니다:other . ', - 'regex' => ':attribute 형식이 잘못되었습니다 . ', - 'required' => ':attribute 필드는 필수입니다 . ', - 'required_if' => ':attribute 필드 필수:other 예:value . ', - 'required_unless' => ': attribute 필드는 필수입니다 .:other가:values에 있어야 합니다 . ', - 'required_with' => ':attribute 필드가 필수:values가 존재합니다 . ', - 'required_with_all' => ':attribute 필드가 필수:values가 존재합니다 . ', - 'required_without' => ':attribute 필드는 필수입니다:values는 존재하지 않습니다 . ', + 'multiple_of' => ':attribute는 value의 배수여야 합니다 . ', + 'not_in' => '선택된: attribute는 유효하지 않습니다 . ', + 'not_regex' => ':attribute 형식이 잘못되었습니다 . ', + 'numeric' => ':attribute는 숫자여야 합니다 . ', + 'password' => '비밀번호 오류 . ', + 'present' => ':attribute 필드가 있어야 합니다 . ', + 'prohibited' => ':attribute 필드는 금지되어 있습니다 . ', + 'prohibited_if' => ':attribute 필드는 금지되어 있습니다:other는:value . ', + 'prohibited_unless' => ':attribute 필드는 금지되어 있습니다:other는:values입니다 . ', + 'prohibits' => ':attribute 필드는 사용할 수 없습니다:other . ', + 'regex' => ':attribute 형식이 잘못되었습니다 . ', + 'required' => ':attribute 필드는 필수입니다 . ', + 'required_if' => ':attribute 필드 필수:other 예:value . ', + 'required_unless' => ': attribute 필드는 필수입니다 .:other가:values에 있어야 합니다 . ', + 'required_with' => ':attribute 필드가 필수:values가 존재합니다 . ', + 'required_with_all' => ':attribute 필드가 필수:values가 존재합니다 . ', + 'required_without' => ':attribute 필드는 필수입니다:values는 존재하지 않습니다 . ', 'required_without_all' => ':attribute 필드는 필수입니다 . values는 존재합니다 . ', - 'same' => ':attribute와:other는 일치해야 합니다 . ', - 'size' => [ + 'same' => ':attribute와:other는 일치해야 합니다 . ', + 'size' => [ 'numeric' => ':attribute는 반드시:size 자리수여야 합니다 . ', - 'file' => ':attribute 必须是 :size KB。', - 'string' => ':attribute는 반드시:size 글자여야 합니다 . ', - 'array' => ':attribute는 다음과 같은 항목을 포함해야 합니다 . ', + 'file' => ':attribute 必须是 :size KB。', + 'string' => ':attribute는 반드시:size 글자여야 합니다 . ', + 'array' => ':attribute는 다음과 같은 항목을 포함해야 합니다 . ', ], 'starts_with' => ':attribute는:values로 시작해야 합니다 . ', - 'string' => ':attribute는 문자열이어야 합니다 . ', - 'timezone' => ':attribute는 유효한 시간대여야 합니다 . ', - 'unique' => ':attribute가 이미 존재합니다 . ', - 'uploaded' => ':attribute 업로드 실패 . ', - 'url' => ':attribute 형식이 잘못되었습니다 . ', - 'uuid' => ':attribute는 유효한 UUID여야 합니다 . ', + 'string' => ':attribute는 문자열이어야 합니다 . ', + 'timezone' => ':attribute는 유효한 시간대여야 합니다 . ', + 'unique' => ':attribute가 이미 존재합니다 . ', + 'uploaded' => ':attribute 업로드 실패 . ', + 'url' => ':attribute 형식이 잘못되었습니다 . ', + 'uuid' => ':attribute는 유효한 UUID여야 합니다 . ', /* |-------------------------------------------------------------------------- @@ -156,7 +156,7 @@ return [ */ 'attributes' => [ - 'descriptions . en . title' => '영문 제목', + 'descriptions . en . title' => '영문 제목', 'descriptions . zh_cn . title' => '중국어 제목', 'tax_rate' => [