diff --git a/app/DoctrineMigrations/Version20210216120000.php b/app/DoctrineMigrations/Version20210216120000.php new file mode 100644 index 00000000000..85e81cab8ac --- /dev/null +++ b/app/DoctrineMigrations/Version20210216120000.php @@ -0,0 +1,33 @@ +connection->fetchColumn("SELECT COUNT(*) FROM dtb_block WHERE block_name = 'Googleアナリティクス'"); + if ($count > 0) { + return; + } + + // idを取得する + $id = $this->connection->fetchColumn('SELECT MAX(id) FROM dtb_block'); + $id++; + + $this->addSql("INSERT INTO dtb_block (id, block_name, file_name, use_controller, deletable, create_date, update_date, device_type_id, discriminator_type) VALUES ($id, 'Googleアナリティクス', 'google_analytics', false, false, '2021-02-16 12:00:00', '2021-02-16 12:00:00', 10, 'block')"); + $this->addSql("INSERT INTO dtb_block_position (section, block_id, layout_id, block_row, discriminator_type) VALUES (1, $id, 1, 0, 'blockposition')"); + } + + public function down(Schema $schema): void + { + // this down() migration is auto-generated, please modify it to your needs + } +} diff --git a/src/Eccube/Entity/BaseInfo.php b/src/Eccube/Entity/BaseInfo.php index a9768d16d7b..6f1328e4493 100644 --- a/src/Eccube/Entity/BaseInfo.php +++ b/src/Eccube/Entity/BaseInfo.php @@ -292,6 +292,13 @@ class BaseInfo extends \Eccube\Entity\AbstractEntity */ private $Pref; + /** + * @var string|null + * + * @ORM\Column(name="ga_id", type="string", length=255, nullable=true) + */ + private $gaId; + /** * Get id. * @@ -1142,5 +1149,29 @@ public function setPhpPath($php_path) return $this; } + + /** + * Set gaId. + * + * @param string|null $gaId + * + * @return BaseInfo + */ + public function setGaId($gaId = null) + { + $this->gaId = $gaId; + + return $this; + } + + /** + * Get gaId. + * + * @return string|null + */ + public function getGaId() + { + return $this->gaId; + } } } diff --git a/src/Eccube/Form/Type/Admin/ShopMasterType.php b/src/Eccube/Form/Type/Admin/ShopMasterType.php index 649d3a3ed15..64a65618d50 100644 --- a/src/Eccube/Form/Type/Admin/ShopMasterType.php +++ b/src/Eccube/Form/Type/Admin/ShopMasterType.php @@ -212,6 +212,14 @@ public function buildForm(FormBuilderInterface $builder, array $options) ]), ], ]) + ->add('ga_id', TextType::class, [ + 'required' => false, + 'constraints' => [ + new Assert\Length([ + 'max' => $this->eccubeConfig['eccube_stext_len'], + ]), + ], + ]) ; $builder->add( diff --git a/src/Eccube/Resource/doctrine/import_csv/en/dtb_block.csv b/src/Eccube/Resource/doctrine/import_csv/en/dtb_block.csv index 7b6e6a11840..29056e7b2a5 100644 --- a/src/Eccube/Resource/doctrine/import_csv/en/dtb_block.csv +++ b/src/Eccube/Resource/doctrine/import_csv/en/dtb_block.csv @@ -13,5 +13,6 @@ id,device_type_id,block_name,file_name,create_date,update_date,use_controller,de 12,10,News,news,2017-03-07 10:14:52,2017-03-07 10:14:52,0,0,block 13,10,Product Search,search_product,2017-03-07 10:14:52,2017-03-07 10:14:52,1,0,block 14,10,Featured,topic,2017-03-07 10:14:52,2017-03-07 10:14:52,0,0,block +16,10,Google Analytics,google_analytics,2021-02-16 12:00:00,2021-02-16 12:00:00,0,0,block 17,10,Calendar,calendar,2021-03-16 12:00:00,2021-03-16 12:00:00,1,0,block 18,10,Auto New Items,auto_new_item,2024-03-12 17:00:00,2024-03-12 17:00:00,1,0,block diff --git a/src/Eccube/Resource/doctrine/import_csv/en/dtb_block_position.csv b/src/Eccube/Resource/doctrine/import_csv/en/dtb_block_position.csv index ac0d57fda97..2971e591cad 100644 --- a/src/Eccube/Resource/doctrine/import_csv/en/dtb_block_position.csv +++ b/src/Eccube/Resource/doctrine/import_csv/en/dtb_block_position.csv @@ -18,3 +18,4 @@ "11","13","2","1","blockposition" "11","4","2","2","blockposition" "11","9","2","3","blockposition" +"1","16","1","0","blockposition" \ No newline at end of file diff --git a/src/Eccube/Resource/doctrine/import_csv/ja/dtb_block.csv b/src/Eccube/Resource/doctrine/import_csv/ja/dtb_block.csv index 702b659bb2c..af48b476862 100644 --- a/src/Eccube/Resource/doctrine/import_csv/ja/dtb_block.csv +++ b/src/Eccube/Resource/doctrine/import_csv/ja/dtb_block.csv @@ -13,5 +13,6 @@ "12","10","新着情報","news","2017-03-07 10:14:52","2017-03-07 10:14:52","0","0","block" "13","10","商品検索","search_product","2017-03-07 10:14:52","2017-03-07 10:14:52","1","0","block" "14","10","トピック","topic","2017-03-07 10:14:52","2017-03-07 10:14:52","0","0","block" +"16","10","Googleアナリティクス","google_analytics","2021-02-16 12:00:00","2021-02-16 12:00:00","0","0","block" "17","10","カレンダー","calendar","2021-03-16 12:00:00","2021-03-16 12:00:00","1","0","block" "18","10","新着商品(自動取得)","auto_new_item","2024-03-12 17:00:00","2024-03-12 17:00:00","1","0","block" diff --git a/src/Eccube/Resource/doctrine/import_csv/ja/dtb_block_position.csv b/src/Eccube/Resource/doctrine/import_csv/ja/dtb_block_position.csv index ac0d57fda97..2971e591cad 100644 --- a/src/Eccube/Resource/doctrine/import_csv/ja/dtb_block_position.csv +++ b/src/Eccube/Resource/doctrine/import_csv/ja/dtb_block_position.csv @@ -18,3 +18,4 @@ "11","13","2","1","blockposition" "11","4","2","2","blockposition" "11","9","2","3","blockposition" +"1","16","1","0","blockposition" \ No newline at end of file diff --git a/src/Eccube/Resource/locale/messages.en.yaml b/src/Eccube/Resource/locale/messages.en.yaml index 6d2e63ecfec..ecd21c78965 100644 --- a/src/Eccube/Resource/locale/messages.en.yaml +++ b/src/Eccube/Resource/locale/messages.en.yaml @@ -45,25 +45,25 @@ common.mail_address: Email common.mail_address_sample: e.g. ec-cube@example.com common.repeated_confirm: Please re-enter common.password: Password -common.password_sample: 'Alphabets, numbers and symbols %min% - %max%chars' +common.password_sample: "Alphabets, numbers and symbols %min% - %max%chars" common.password_eq_email: Password cannot be set to the same value as email address. common.password_for_confirmation: Password (Re-enter) common.gender: Gender common.job: Occupation common.birth_day: Date of Birth common.tax_include: Tax Incl. -common.separator__range: '-' -common.separator__colon: ':' +common.separator__range: "-" +common.separator__colon: ":" common.quantity: Qty -common.quantity__with_separator: 'Qty:' +common.quantity__with_separator: "Qty:" common.subtotal: Subtotal -common.subtotal__with_separator: 'Subtotal:' +common.subtotal__with_separator: "Subtotal:" common.total: Total -common.total__with_separator: 'Total:' -common.payment_total: 'Payment Total' -common.reduced_tax_rate_symbol: '*' -common.reduced_tax_rate_messeage: '* is subject to reduced tax rate.' -common.tax_rate_target: '%rate% %' +common.total__with_separator: "Total:" +common.payment_total: "Payment Total" +common.reduced_tax_rate_symbol: "*" +common.reduced_tax_rate_messeage: "* is subject to reduced tax rate." +common.tax_rate_target: "%rate% %" common.tax_amount: Tax amount common.delivery_fee: Shipping Charge common.charge: Charges @@ -71,18 +71,18 @@ common.discount: Discount common.point: Points common.enabled: Enabled common.disabled: Disabled -common.user_name: '%last_name% %first_name%' -common.user_name.honor: '(Mr/Ms)' +common.user_name: "%last_name% %first_name%" +common.user_name.honor: "(Mr/Ms)" common.login: Sign in common.remember_me: Remember me common.signup: Sign up common.forgot_login: Unable to sign in? -common.customer_address_count_is_over: 'You already have max number of addresses (%count% items). If you want to add a new one, please delete or overwrite the item(s) you have on the list.' +common.customer_address_count_is_over: "You already have max number of addresses (%count% items). If you want to add a new one, please delete or overwrite the item(s) you have on the list." common.search_keyword: Enter keywords common.delete_confirm: Do you want to continue? common.pagetop: Page top -common.name.prefix: '' -common.name.suffix: '' +common.name.prefix: "" +common.name.suffix: "" #==================================================================================== # Store Front @@ -109,9 +109,9 @@ front.block.eyecatch.title__en: CUBE GELATO ICE front.block.eyecatch.title__ja: Enjoy the colorful gelato 'CUBE' # Deprecated https://github.com/EC-CUBE/ec-cube/pull/4220 front.block.eyecatch.descriptiron: | - Gelato is ice cream made in the Italian style, which is generally lower in fat than other styles of ice cream. - Our fruity gelato is made of carefully selected fresh fruits of the season. Enjoy CUBE Gelato, rich yet healthy with moderate sweetness. - Also find our ice candies and ice sandwiches made with gelato recipes. + Gelato is ice cream made in the Italian style, which is generally lower in fat than other styles of ice cream. + Our fruity gelato is made of carefully selected fresh fruits of the season. Enjoy CUBE Gelato, rich yet healthy with moderate sweetness. + Also find our ice candies and ice sandwiches made with gelato recipes. front.block.eyecatch.description: | Gelato is ice cream made in the Italian style, which is generally lower in fat than other styles of ice cream. Our fruity gelato is made of carefully selected fresh fruits of the season. Enjoy CUBE Gelato, rich yet healthy with moderate sweetness. @@ -138,26 +138,25 @@ front.block.login.login: Sign in front.block.login.logout: Sign out front.block.login.to_cart: Proceed to Cart front.block.login.to_home: Back to Home -front.block.calendar.title__en: 'CALENDAR' -front.block.calendar.title__ja: 'Calendar' -front.block.calendar.month_format: 'M. Y' -front.block.calendar.sunday: 'Su' -front.block.calendar.monday: 'Mo' -front.block.calendar.tuesday: 'Tu' -front.block.calendar.wednesday: 'We' -front.block.calendar.thursday: 'Th' -front.block.calendar.friday: 'Fr' -front.block.calendar.saturday: 'Sa' -front.block.calendar.holiday_notice: '* The red characters are closed.' - +front.block.calendar.title__en: "CALENDAR" +front.block.calendar.title__ja: "Calendar" +front.block.calendar.month_format: "M. Y" +front.block.calendar.sunday: "Su" +front.block.calendar.monday: "Mo" +front.block.calendar.tuesday: "Tu" +front.block.calendar.wednesday: "We" +front.block.calendar.thursday: "Th" +front.block.calendar.friday: "Fr" +front.block.calendar.saturday: "Sa" +front.block.calendar.holiday_notice: "* The red characters are closed." #------------------------------------------------------------------------------------ # Contact Us #------------------------------------------------------------------------------------ front.contact.title: Contact Us front.contact.inquiry_notice: | - Please note that some inquiries may require more time to reply. - If it falls on our holidays, we will get back to you on/after our next working day. Thank you for your understanding. + Please note that some inquiries may require more time to reply. + If it falls on our holidays, we will get back to you on/after our next working day. Thank you for your understanding. front.contact.order_notice: For an inquiry about your order, please inform us of the order number. front.contact.inquiry_contents: Inquiry front.contact.complete_title: Thank you for your inquiry! @@ -175,18 +174,18 @@ front.entry.agree: Accept front.entry.disagree: Decline front.entry.confirm_title: Sign up - Review front.entry.confirm_message: | - Review your entry. - If all looks fine, press 'Sign up'. + Review your entry. + If all looks fine, press 'Sign up'. front.entry.do_register: Sign up front.entry.complete_title: Sign-up completed front.entry.complete_title__temporary: Temporary sign-up completed front.entry.complete_message__title: Thank you for signing up. front.entry.complete_message__temporary: | - You have been signed up as a temporary customer. We have sent a verification email to your email address. - Please complete your sign-up by clicking on the URL in the email. + You have been signed up as a temporary customer. We have sent a verification email to your email address. + Please complete your sign-up by clicking on the URL in the email. front.entry.complete_message__activated: | - Your sign-up is completed. - Please login with your email address and password and enjoy shopping! + Your sign-up is completed. + Please login with your email address and password and enjoy shopping! #------------------------------------------------------------------------------------ # Password Reset @@ -198,9 +197,9 @@ front.forgot.message2: "*You will receive an email to reset your password. Pleas front.forgot.complete_title: Password Reset (Email Sent) front.forgot.complete_message__title: Email has been sent to reset your password. front.forgot.complete_message__body: | - An email to reset your password has been sent to your registered email address. - Please follow the instructions in the email. - *In case you do not receive the email, please verify your email address and try again. + An email to reset your password has been sent to your registered email address. + Please follow the instructions in the email. + *In case you do not receive the email, please verify your email address and try again. front.forgot.reset_title: Password Reset front.forgot.reset_complete: Your password has been updated. front.forgot.reset_error: The URL is either expired or invalid. @@ -223,9 +222,9 @@ front.guide.title: Shopping Guide # マイページ #------------------------------------------------------------------------------------ -front.mypage.welcome: 'Hi %last_name% %first_name%' +front.mypage.welcome: "Hi %last_name% %first_name%" front.mypage.title: My Account -front.mypage.welcome__point: 'You have %point%points' +front.mypage.welcome__point: "You have %point%points" front.mypage.nav__history: Order History front.mypage.nav__history_detail: Order History Details front.mypage.nav__favorite: Favorites @@ -233,7 +232,7 @@ front.mypage.nav__customer: Edit Customer Information front.mypage.nav__customer_complete: Edit Customer Information (Completed) front.mypage.nav__customer_address: Shipping Addresses front.mypage.nav__withdrow: Cancel Membership -front.mypage.history_count: 'You have %count% item(s) in the order history.' +front.mypage.history_count: "You have %count% item(s) in the order history." front.mypage.history_not_found: No order history found. front.mypage.message_not_found: Not found front.mypage.view_detail: See details @@ -252,16 +251,16 @@ front.mypage.reorder: Reorder front.mypage.payment_info: Payment Info front.mypage.payment: Payment Method front.mypage.message: Contact Us -front.mypage.reorder_message: '*Please note that the price has been changed when you place your order again.' +front.mypage.reorder_message: "*Please note that the price has been changed when you place your order again." front.mypage.mail_not_found: No email found. front.mypage.mail_list: Email History front.mypage.customer_complete_message__title: Customer information has been updated front.mypage.customer_complete_message__body: Please continue your shopping! -front.mypage.favorite_count: '%count% item(s) found in Favorites' +front.mypage.favorite_count: "%count% item(s) found in Favorites" front.mypage.favorite_not_found: No item found in Favorites. -front.mypage.customer_address_count: '%count% items are registered in Delivery Addresses' +front.mypage.customer_address_count: "%count% items are registered in Delivery Addresses" front.mypage.customer_address_not_found: No address is found. -front.mypage.add_customer_address: 'Add a New Address' +front.mypage.add_customer_address: "Add a New Address" front.mypage.withdraw_message__title: Make sure before you cancel your membership front.mypage.withdraw_message__body: Please note that all information in Order History and Delivery Addresses etc. will be deleted upon cancellation of your membership. front.mypage.withdraw_execute_message__title: Are you sure to cancel your membership? @@ -270,8 +269,8 @@ front.mypage.withdraw_cancel: No, I do not front.mypage.withdraw_execute: Yes, I do front.mypage.withdraw_complete_message__title: You have canceled your membership front.mypage.withdraw_complete_message__body: | - Thank you so much for supporting our store. - We look forward to serving you again. + Thank you so much for supporting our store. + We look forward to serving you again. front.mypage.customer.notify_title: Change customer information front.mypage.delivery.notify_title: Change delivery information @@ -285,7 +284,7 @@ front.product.all_products: All Products front.product.search__category_not_found: No category is found front.product.search__product_not_found: No product is found -front.product.search_result__keyword: 'Search results for %name%' +front.product.search_result__keyword: "Search results for %name%" front.product.search_result__detail: '%count% item(s) found' front.product.add_cart: Add to Cart front.product.add_cart_complete: The item has been added to the cart. @@ -302,7 +301,7 @@ front.product.related_category: Related Category front.product.continue: Continue Shopping front.product.invalid_quantity: Please enter more than 1. front.product.product_class_unselected: The item is not selected. -front.product.pageno: 'Page %pageno%' +front.product.pageno: "Page %pageno%" #------------------------------------------------------------------------------------ # Cart @@ -314,9 +313,9 @@ front.cart.nav__customer_info: Customer Information front.cart.nav__order: Checkout front.cart.nav__confirm: Review front.cart.nav__complete: Order Placed -front.cart.total_price: 'Total: %price%' +front.cart.total_price: "Total: %price%" front.cart.divide_cart: Some item(s) in the cart can not be purchased in this order. -front.cart.delete: '' +front.cart.delete: "" front.cart.delete__confirm: Are you sure to delete this item from the cart? front.cart.product: Items front.cart.checkout: Proceed to Checkout @@ -342,7 +341,7 @@ front.shopping.delivery_time: Delivery Time front.shopping.to_multiple: Add Delivery Address front.shopping.payment_info: Payment Method front.shopping.point_info: Your Points -front.shopping.available_point: 'You have %point% pts.' +front.shopping.available_point: "You have %point% pts." front.shopping.point_prev: Points Used front.shopping.prev_point: Points before This Order front.shopping.next_point: Points after This Order @@ -366,8 +365,8 @@ front.shopping.back_to_order: Go back to Checkout front.shopping.complete_title: Order Placed front.shopping.complete_message__title: Thank you for your order! front.shopping.complete_message__body: | - We have sent an order confirmation email. - In case you do not receive it, please contact us as your order may have not been received. + We have sent an order confirmation email. + In case you do not receive it, please contact us as your order may have not been received. front.shopping.continue: Continue Shopping front.shopping.guest_purchase_message: Please proceed from here if you want to check out without signing up. front.shopping.guest_purchase: Guest Purchase @@ -379,14 +378,14 @@ front.shopping.error: Error in the checkout front.shopping.order_error: An error occurred during the checkout process. front.shopping.system_error: Sorry, we have faced an unexpected error during the checkout process. Please contact us from the inquiry form. We are sorry for the inconvenience. front.shopping.empty_items_error: Sorry, the checkout process have not completed in good order. Please place an order once again. We are sorry for the inconvenience. -front.shopping.out_of_stock: 'Sorry, there is no enough stock for %product%. You are not able to purchase more than the stock quantity.' -front.shopping.over_sale_limit: 'Sorry, we are limiting the sales of %product%. You are not able to purchase more than the max. purchase quantity.' -front.shopping.out_of_stock_zero: 'Sorry, we do not have enough stock for %product%. We have deleted this item from the cart.' +front.shopping.out_of_stock: "Sorry, there is no enough stock for %product%. You are not able to purchase more than the stock quantity." +front.shopping.over_sale_limit: "Sorry, we are limiting the sales of %product%. You are not able to purchase more than the max. purchase quantity." +front.shopping.out_of_stock_zero: "Sorry, we do not have enough stock for %product%. We have deleted this item from the cart." front.shopping.over_price_limit: Sorry, the quantity exceeds the max. purchase amount. Please reduce the purchase quantity. -front.shopping.in_preparation: 'Sorry, %product% is not ready for shipment. Please contact us from the inquiry form. We are sorry for the inconvenience.' +front.shopping.in_preparation: "Sorry, %product% is not ready for shipment. Please contact us from the inquiry form. We are sorry for the inconvenience." front.shopping.not_purchase: Sorry, your order includes item(s) currently unavailable. It has been deleted from your cart. -front.shopping.not_purchase_product_class: 'Sorry, %product% is currently unavailable. It has been deleted from your cart.' -front.shopping.price_changed: 'The selling price of %product% has been changed.' +front.shopping.not_purchase_product_class: "Sorry, %product% is currently unavailable. It has been deleted from your cart." +front.shopping.price_changed: "The selling price of %product% has been changed." front.shopping.payment_total_invalid: The total amount is invalid. front.shopping.different_payment_methods: Sorry, your order includes items with different purchase methods, which are unable to be processed in one order. front.shopping.payment_method_unselected: Please select the payment method. @@ -404,7 +403,7 @@ admin.common.save_complete: Saved admin.common.save_error: Failed to save admin.common.delete_complete: Deleted admin.common.delete_error: Failed to delete -admin.common.delete_error_foreign_key: 'Sorry, we are unable to delete %name%, because it has related data.' +admin.common.delete_error_foreign_key: "Sorry, we are unable to delete %name%, because it has related data." admin.common.delete_error_already_deleted: No data to delete admin.common.move_complete: The order is updated admin.common.move_error: Failed to update the order @@ -416,8 +415,8 @@ admin.common.send_complete: Email has been sent admin.common.send_error: Failed to send an Email admin.common.create_complete: Created admin.common.system_error: System error occurred -admin.common.to_show_complete: '%name% is displayed' -admin.common.to_hide_complete: '%name% is hidden' +admin.common.to_show_complete: "%name% is displayed" +admin.common.to_hide_complete: "%name% is hidden" admin.common.date_range_error: End date is set after start date # action labels @@ -449,8 +448,8 @@ admin.common.next: Next admin.common.first: Go to First admin.common.last: Go to Last admin.common.back: Go back -admin.common.open_detail: 'Show details' -admin.common.close_detail: 'Close details' +admin.common.open_detail: "Show details" +admin.common.close_detail: "Close details" # Generic Labels, Messages admin.common.show: Display @@ -463,15 +462,15 @@ admin.common.bulk_actions: All admin.common.select: Please select admin.common.select__pref: Select a prefecture admin.common.select__unspecified: Unspecified -admin.common.separator__range: '-' -admin.common.separator__colon: ':' -admin.common.count: '%count% items' +admin.common.separator__range: "-" +admin.common.separator__colon: ":" +admin.common.count: "%count% items" admin.common.search_detail: Advanced Search -admin.common.search_result: 'Search Results: %count% item(s) found.' +admin.common.search_result: "Search Results: %count% item(s) found." admin.common.search_invalid_condition: Error found in the search condition(s) admin.common.search_no_result: Sorry, no data matches your search condition(s) admin.common.search_try_change_condition: Please change the search condition(s) and try again. -admin.common.search_try_advanced_search: 'Try [Advanced Search]' +admin.common.search_try_advanced_search: "Try [Advanced Search]" admin.common.csv_download: Download CSV admin.common.csv_upload: Upload a CSV file admin.common.csv_skeleton_download: Download a template @@ -481,35 +480,34 @@ admin.common.file_select: Select a File admin.common.file_select_empty: Not selected admin.common.csv_invalid_format: Unmatched CSV format admin.common.csv_invalid_no_data: No CSV data found -admin.common.csv_invalid_required: '%name% is empty in the %line%' -admin.common.csv_invalid_greater_than_zero: '%name% should be more than 0 in the line %line%.' -admin.common.csv_invalid_format_line_name: 'Unmatched format in %name% in the line %line%' -admin.common.csv_invalid_format_line: 'Unmatched CSV format in the line %line%' -admin.common.csv_invalid_date_format: 'Unmatched date format in %name% in the line %line%' -admin.common.csv_invalid_not_found: '%name% is empty in the line %line%' +admin.common.csv_invalid_required: "%name% is empty in the %line%" +admin.common.csv_invalid_greater_than_zero: "%name% should be more than 0 in the line %line%." +admin.common.csv_invalid_format_line_name: "Unmatched format in %name% in the line %line%" +admin.common.csv_invalid_format_line: "Unmatched CSV format in the line %line%" +admin.common.csv_invalid_date_format: "Unmatched date format in %name% in the line %line%" +admin.common.csv_invalid_not_found: "%name% is empty in the line %line%" admin.common.csv_invalid_not_found_target: '"%target_name%" is empty in %name% in the line %line%' -admin.common.csv_invalid_not_same: 'You are not allowed to enter the same value in %name1% and %name2% in the line %line%' -admin.common.csv_invalid_can_not: '%name% is invalid in the line %line%' +admin.common.csv_invalid_not_same: "You are not allowed to enter the same value in %name1% and %name2% in the line %line%" +admin.common.csv_invalid_can_not: "%name% is invalid in the line %line%" admin.common.csv_invalid_image: 'Your are not allowed to use "/" or "../" as suffix in %name% in the %line%' -admin.common.csv_invalid_foreign_key: 'You are unable to delete %name% in the line %line% because it has related data' -admin.common.csv_invalid_description_detail_upper_limit: '%name% should be less than %max% characters in the line %line%.' -admin.common.csv_upload_in_progress: 'Uploading CSV file ...' -admin.common.csv_upload_line_success: 'The %from% to %to% lines have been registered.' -admin.common.csv_upload_line_error: 'An error has occurred. The registration process after the %from% line has been cancelled.' +admin.common.csv_invalid_foreign_key: "You are unable to delete %name% in the line %line% because it has related data" +admin.common.csv_invalid_description_detail_upper_limit: "%name% should be less than %max% characters in the line %line%." +admin.common.csv_upload_in_progress: "Uploading CSV file ..." +admin.common.csv_upload_line_success: "The %from% to %to% lines have been registered." +admin.common.csv_upload_line_error: "An error has occurred. The registration process after the %from% line has been cancelled." admin.common.drag_and_drop_description: You can change the order of the items by drag & drop. admin.common.drag_and_drop_image_description: Drag & drop the images or admin.common.delete_modal__title: Delete -admin.common.delete_modal__message: 'You can not revert this action. Are you sure to delete %name%?' +admin.common.delete_modal__message: "You can not revert this action. Are you sure to delete %name%?" admin.common.move_to_confirm_title: Move to another page -admin.common.move_to_confirm_message: 'Will move to %name% Setting page. Do you want to save current editing?' +admin.common.move_to_confirm_message: "Will move to %name% Setting page. Do you want to save current editing?" admin.common.move_to_confirm_move_only: Move admin.common.move_to_confirm_save_and_move: Save & Move admin.common.admin_url_warning: 'Please set the Admin Console URL that is hard to guess for security. You can set it at "Security".' -admin.common.restrict_file_upload_info: 'If this feature is used infrequently, disabling it while not in use provides additional security. You can disable this feature by setting the environment variable ECCUBE_RESTRICT_FILE_UPLOAD to 1.' -admin.common.notice_maintenance_mode: 'Currently in maintenance mode.' +admin.common.restrict_file_upload_info: "If this feature is used infrequently, disabling it while not in use provides additional security. You can disable this feature by setting the environment variable ECCUBE_RESTRICT_FILE_UPLOAD to 1." +admin.common.notice_maintenance_mode: "Currently in maintenance mode." admin.common.notice_debug_mode: The site is currently under debug mode. - # Labels related to entity admin.common.id: ID admin.common.name: Name @@ -547,6 +545,7 @@ admin.common.device_type: Type of Device admin.common.authority: Role admin.common.payment_method: Payment Method admin.common.charge: Charge +admin.common.ga.tracking_id: "G-XXXXXXXXXX" #------------------------------------------------------------------------------------ # Home #------------------------------------------------------------------------------------ @@ -562,10 +561,10 @@ admin.home.shop_status_out_of_stock: Number of Out-of-Stock Items admin.home.shop_status_products: Number of Products admin.home.shop_status_customers: Number of Customers admin.home.sales_summary_title: Sales -admin.home.sales_summary_value: '%amount% / %count% item(s) sold' -admin.home.sales_summary_this_month: 'This Month: Sales Amount / Volume' -admin.home.sales_summary_today: 'Today: Sales Amount / Volume' -admin.home.sales_summary_yesterday: 'Yesterday: Sales Amount / Volume' +admin.home.sales_summary_value: "%amount% / %count% item(s) sold" +admin.home.sales_summary_this_month: "This Month: Sales Amount / Volume" +admin.home.sales_summary_today: "Today: Sales Amount / Volume" +admin.home.sales_summary_yesterday: "Yesterday: Sales Amount / Volume" admin.home.sales_summary_weekly: Weekly admin.home.sales_summary_monthly: Monthly admin.home.sales_summary_yearly: Yearly @@ -575,7 +574,7 @@ admin.home.recommend_plugins_title: Recommended Plug-ins admin.home.recommend_plugins.owner_store: Owners' Store admin.home.news_title: What's New -admin.header.user_name: 'Hi %name%!' +admin.header.user_name: "Hi %name%!" admin.header.logout: Sign out admin.header.last_login: Last sign-in admin.header.change_password: Change Password @@ -610,7 +609,7 @@ admin.product.product_csv_upload: Product CSV admin.product.category_csv_upload: Category CSV # flash messages -admin.product.bulk_change_status_complete: '%status%: %count% item(s) is/are successfully applied.' +admin.product.bulk_change_status_complete: "%status%: %count% item(s) is/are successfully applied." admin.product.copy_complete: A product has been duplicated admin.product.copy_error: Failed to duplicate a product admin.product.reset_complete: Product option has been reset @@ -638,7 +637,7 @@ admin.product.copy__confirm_message: Are you sure you want to duplicate the prod admin.product.name: Product Name admin.product.image: Product Images admin.product.image__short: Images -admin.product.image_size: 'More than 600px x 600px is recommended' +admin.product.image_size: "More than 600px x 600px is recommended" admin.product.image__invalid_path: Invalid image path. admin.product.sale_type: Sales Type admin.product.description_detail: Product Descriptions @@ -668,7 +667,7 @@ admin.product.create_date__card_title: Update admin.product.move_to_category: Add / Edit a Category admin.product.move_to_tag: Add / Edit a Tag admin.product.move_to_product_class: Edit an Option -admin.product.move_to_product_class__confirm_title: '%name% Options' +admin.product.move_to_product_class__confirm_title: "%name% Options" admin.product.multi_search_label: Product Name / Product ID / SKU admin.product.product_class: Product Options admin.product.product_class__short: Options @@ -679,13 +678,13 @@ admin.product.product_class__card_title: Product Option Info admin.product.product_class__reset: Reset a Product Option admin.product.product_class__reset_confirm_title: Reset the option of this product admin.product.product_class__reset_confirm_message: | - Reset the option(s) set to this product - You will not be able to revert this action, although it does not affect the existing sales data. - Are you sure to reset? + Reset the option(s) set to this product + You will not be able to revert this action, although it does not affect the existing sales data. + Are you sure to reset? admin.product.product_class__reset_confirm_excecute: Reset an Option admin.product.product_class_set_stock_quantity: Enter stock quantity or check 'Unlimited'. admin.product.copy_first_line: Duplicate the first line to all -admin.product.procuct_class_count: 'There are %count% combinations' +admin.product.procuct_class_count: "There are %count% combinations" admin.product.stock_unlimited: Unlimited Stock admin.product.stock_unlimited__short: Unlimited admin.product.class_name: Option Name @@ -703,8 +702,8 @@ admin.product.class_category2__short: Option 2 admin.product.category: Categories admin.product.category__product_card_title: Categories admin.product.category_id: | - Category ID - To update categories, please enter the Category ID + Category ID + To update categories, please enter the Category ID admin.product.category_name: Category ID admin.product.parent_category_id: Parent Category ID admin.product.category_all: All Categories @@ -719,21 +718,21 @@ admin.product.unselected_class: Not selected admin.product.product_csv.product_id_col: Product ID admin.product.product_csv.product_id_description: For new product registration, please leave it empty. To update the registered product information, please specify the product ID. admin.product.product_csv.display_status_col: Display Status (ID) -admin.product.product_csv.display_status_description: '' +admin.product.product_csv.display_status_description: "" admin.product.product_csv.product_name_col: Product Name -admin.product.product_csv.product_name_description: '' +admin.product.product_csv.product_name_description: "" admin.product.product_csv.shop_memo_col: Store Notes -admin.product.product_csv.shop_memo_description: '' +admin.product.product_csv.shop_memo_description: "" admin.product.product_csv.description_list_col: Product Descriptions (All) -admin.product.product_csv.description_list_description: '' +admin.product.product_csv.description_list_description: "" admin.product.product_csv.description_detail_col: Product Descriptions (Details) -admin.product.product_csv.description_detail_description: '' +admin.product.product_csv.description_detail_description: "" admin.product.product_csv.keyword_col: Search Keywords -admin.product.product_csv.keyword_description: '' +admin.product.product_csv.keyword_description: "" admin.product.product_csv.free_area_col: Miscellaneous -admin.product.product_csv.free_area_description: '' +admin.product.product_csv.free_area_description: "" admin.product.product_csv.delete_flag_col: Product Deletion Flag -admin.product.product_csv.delete_flag_description: 'Specify 0: Register 1: Delete. If unspecified, it will be set to 0.' +admin.product.product_csv.delete_flag_description: "Specify 0: Register 1: Delete. If unspecified, it will be set to 0." admin.product.product_csv.product_image_col: Product Images admin.product.product_csv.product_image_description: Specify the name of the image file. For multiple images, please double-quote each file name. admin.product.product_csv.category_col: Product Category (ID) @@ -741,19 +740,19 @@ admin.product.product_csv.category_description: Specify the category ID. For mul admin.product.product_csv.tag_col: Tag (ID) admin.product.product_csv.tag_description: Specify the tag ID. For multiple tags, please double-quote each tag ID. admin.product.product_csv.sale_type_col: Sales Type (ID) -admin.product.product_csv.sale_type_description: '' +admin.product.product_csv.sale_type_description: "" admin.product.product_csv.class_category1_col: Option Group 1(ID) -admin.product.product_csv.class_category1_description: '' +admin.product.product_csv.class_category1_description: "" admin.product.product_csv.class_category2_col: Option Group 2(ID) -admin.product.product_csv.class_category2_description: '' +admin.product.product_csv.class_category2_description: "" admin.product.product_csv.delivery_duration_col: Estimated Shipping Date (ID) -admin.product.product_csv.delivery_duration_description: '' +admin.product.product_csv.delivery_duration_description: "" admin.product.product_csv.product_code_col: SKU -admin.product.product_csv.product_code_description: '' +admin.product.product_csv.product_code_description: "" admin.product.product_csv.stock_col: Stock Qty admin.product.product_csv.stock_description: If the unlimited stock flag is set to 0, please set the value more than 0. admin.product.product_csv.stock_unlimited_col: Unlimited Stock Flag -admin.product.product_csv.stock_unlimited_description: 'Specify 0: Limited or 1: Unlimited' +admin.product.product_csv.stock_unlimited_description: "Specify 0: Limited or 1: Unlimited" admin.product.product_csv.sale_limit_col: Max Sales Qty admin.product.product_csv.sale_limit_description: Set the value more than 1 admin.product.product_csv.normal_price_col: Regular Price @@ -771,15 +770,15 @@ admin.product.product_csv.product_class_visible_flag_description: 0:Invisible 1: admin.product.category_csv.category_id_col: Category ID admin.product.category_csv.category_id_description: For a new category registration, please leave it empty. To update the registered category, please specify the category ID. admin.product.category_csv.category_name_col: Category Name -admin.product.category_csv.category_name_description: '' +admin.product.category_csv.category_name_description: "" admin.product.category_csv.parent_category_id_col: Parent Category ID -admin.product.category_csv.parent_category_id_description: '' +admin.product.category_csv.parent_category_id_description: "" admin.product.category_csv.delete_flag_col: Category Deletion Flag -admin.product.category_csv.delete_flag_description: 'Specify 0: Upload or 1: Delete. If unspecified, it is set to 0.' +admin.product.category_csv.delete_flag_description: "Specify 0: Upload or 1: Delete. If unspecified, it is set to 0." # Product CSV -admin.product.product_csv_upload__title: 'Upload product CSV' -admin.product.product_csv_upload__message: 'Upload the product CSV file. Is it OK?' +admin.product.product_csv_upload__title: "Upload product CSV" +admin.product.product_csv_upload__message: "Upload the product CSV file. Is it OK?" #------------------------------------------------------------------------------------ # Orders @@ -825,7 +824,7 @@ admin.order.add_shipping: Add Shipping Info admin.order.delete_shipping: Delete Shipping Info admin.order.delete_shipping_error__confirm_title: Unable to delete shipping info admin.order.delete_shipping_error__confirm_message: To delete shipping information, please delete the order items in the ''Shipping Info''. -admin.order.delete_shipping__confirm_message: 'Shipping information will be deleted from the order. Are you sure to delete shipping information(%num%)?' +admin.order.delete_shipping__confirm_message: "Shipping information will be deleted from the order. Are you sure to delete shipping information(%num%)?" admin.order.order_item_info: Ordered Product Info admin.order.order_item_type: Item Type admin.order.add_product_item: Add a Product @@ -853,7 +852,7 @@ admin.order.purchase_count__start: Number of Repeat Purchase (Start) admin.order.purchase_count__end: Number of Repeat Purchase (End) admin.order.tracking_number: Tracking No. admin.order.tracking_number_error: Only Roman alphabets, numbers and hyphens are accepted for tracking numbers. -admin.order.mail_purchase_product_count: 'and %count% other items' +admin.order.mail_purchase_product_count: "and %count% other items" admin.order.mail_history: Email History admin.order.mail_send_date: Sending Date admin.order.mail_subject: Email Title @@ -876,7 +875,7 @@ admin.order.shop_memo_for_shipped: Shipping Notes admin.order.shipping__card_title: Shipping Info admin.order.shipping_id: Shipping ID admin.order.shipping_mail: Shipping Notice -admin.order.shipping_mail__completed: 'The shipping notice is already sent on %date%' +admin.order.shipping_mail__completed: "The shipping notice is already sent on %date%" admin.order.shipping_mail__sent: Sent admin.order.shipping_mail__unsent: Unsent admin.order.bulk_action__confirm_view_mail_body: Review Contents @@ -886,7 +885,7 @@ admin.order.bulk_action__complete_message: Completed. admin.order.shipping_mail_send: Send Shipping Notice admin.order.shipping_mail_send__confirm_title: Send shipping notice. admin.order.shipping_mail_send__confirm_message: Sending the shipping notice. Please review the contents before pressing [Send]. Note that you will not able to revert this action. -admin.order.shipping_mail_send__complete_message: '%count% notice(s) is/are sent.' +admin.order.shipping_mail_send__complete_message: "%count% notice(s) is/are sent." admin.order.to_shipped__confirm_title: Update to 'Shipped'. admin.order.to_shipped__confirm_message: Updating the shipping info to 'Shipped'. Please select other actions together then press [Submit]. Note that you will not be able to revert this action. admin.order.to_shipped__confirm_send_mail: Send Email @@ -901,7 +900,7 @@ admin.order.not_payment: Unpaid admin.order.unshipped: Unshipped admin.order.delete__confirm_title: Deleting Order Info admin.order.delete__confirm_message: Are you sure to delete the order information? -admin.order.delete_item__confirm_message: 'The item will be deleted from the order. Are you sure to delete %name%?' +admin.order.delete_item__confirm_message: "The item will be deleted from the order. Are you sure to delete %name%?" admin.order.change_payment_method_message: If the payment charge changes, please update it manually. admin.order.non_member: Non-Member admin.order.search_from_customer: Search by Customer @@ -925,15 +924,15 @@ admin.order.delivery_note_line1: Line 1 admin.order.delivery_note_line2: Line 2 admin.order.delivery_note_line3: Line 3 admin.order.delivery_note_save_input: Save Entry -admin.order.delivery_note_download_error: 'Failed to Download' -admin.order.delivery_note_parameter_error: 'Shipping ID is not specified' -admin.order.failed_to_change_status: '%name%: You are not allowed to change the status from %from% to %to%' -admin.order.failed_to_change_status__short: 'You are not allowed to change the status from %from% to %to%' -admin.order.skip_change_status: '%name%: Status change has been skipped' +admin.order.delivery_note_download_error: "Failed to Download" +admin.order.delivery_note_parameter_error: "Shipping ID is not specified" +admin.order.failed_to_change_status: "%name%: You are not allowed to change the status from %from% to %to%" +admin.order.failed_to_change_status__short: "You are not allowed to change the status from %from% to %to%" +admin.order.skip_change_status: "%name%: Status change has been skipped" # Shipping CSV Templates admin.order.shipping_csv.shipping_id_col: Shipping ID -admin.order.shipping_csv.shipping_id_description: '' +admin.order.shipping_csv.shipping_id_description: "" admin.order.shipping_csv.tracking_number_col: Tracking No. admin.order.shipping_csv.tracking_number_description: Enter alphanumeric characters or hyphens admin.order.shipping_csv.shipping_date_col: Shipping Date @@ -957,7 +956,7 @@ admin.customer.purchase_history__not_found: No order history is found admin.customer.customer_address: Delivery Address admin.customer.customer_address__not_found: No delivery address is found admin.customer.customer_address__add: Add a Delivery Address -admin.customer.customer_address_count_is_over: 'You have already reached the max number (%eccube_deliv_addr_max%) of delivery addresses. If you want to add more, either delete or overwrite a registered address.' +admin.customer.customer_address_count_is_over: "You have already reached the max number (%eccube_deliv_addr_max%) of delivery addresses. If you want to add more, either delete or overwrite a registered address." admin.customer.customer_address_id: Delivery Address ID admin.customer.customer_address_info: Delivery Address Info admin.customer.multi_search_label: Customer ID / Email / Name @@ -993,15 +992,15 @@ admin.content.file.directory_name: Folder Name admin.content.file.file_list__card_title: Files in This Directory admin.content.file.updated: Update admin.content.file.directory_tree: Directories -admin.content.file.upload_complete: '%success% file upload completed. (%success%/%count%)' -admin.content.file.upload_error: 'Failed to upload %file_name%. ' +admin.content.file.upload_complete: "%success% file upload completed. (%success%/%count%)" +admin.content.file.upload_error: "Failed to upload %file_name%. " admin.content.file.folder_name_symbol_error: The folder name contains invalid characters. admin.content.file.folder_name_period_error: Folder names beginning with a period(.) are not allowed. -admin.content.file.dir_exists: '%file_name% is already exists.' -admin.content.file.same_name_folder_exists: 'Cannot upload because a folder with the same name as the file exists.' -admin.content.file.phpfile_error: 'php files cannot be uploaded.' # Unused -admin.content.file.dotfile_error: 'Dot files cannot be uploaded.' -admin.content.file.extension_error: 'File extension cannot be uploaded.' +admin.content.file.dir_exists: "%file_name% is already exists." +admin.content.file.same_name_folder_exists: "Cannot upload because a folder with the same name as the file exists." +admin.content.file.phpfile_error: "php files cannot be uploaded." # Unused +admin.content.file.dotfile_error: "Dot files cannot be uploaded." +admin.content.file.extension_error: "File extension cannot be uploaded." admin.content.layout_delete: Delete Layouts admin.content.layout_no_page: Page not registered admin.content.layout__card_title: Layout Overview @@ -1016,25 +1015,25 @@ admin.content.layout_preview__select_page: Please select a page admin.content.layout_preview_select_page: Please select a page for preview admin.content.layout_preview_code: Preview Codes admin.content.layout_preview_code__confirm_title: Preview Block Codes -admin.content.layout_preview_code__confirm_message: 'To edit, please go to ''Edit Block'' (Note: The layout setting is not saved).' +admin.content.layout_preview_code__confirm_message: "To edit, please go to 'Edit Block' (Note: The layout setting is not saved)." admin.content.layout_preview_code__confirm_move_to_block: Edit Codes -admin.content.layout_move_to__confirm_title: 'Move a Block' +admin.content.layout_move_to__confirm_title: "Move a Block" admin.content.layout_move_to__confirm_message: Please select where to move the block admin.content.layout_move_to__execute: Move -admin.content.layout_section__unused: 'Unused Blocks' -admin.content.layout_section__head: 'Within the
tags' -admin.content.layout_section__body_after: 'Right below the tags' -admin.content.layout_section__header: '#header' -admin.content.layout_section__contents_top: '#contents_top' -admin.content.layout_section__side_left: '#side_left' +admin.content.layout_section__unused: "Unused Blocks" +admin.content.layout_section__head: "Within the tags" +admin.content.layout_section__body_after: "Right below the tags" +admin.content.layout_section__header: "#header" +admin.content.layout_section__contents_top: "#contents_top" +admin.content.layout_section__side_left: "#side_left" admin.content.layout_section__main: Main -admin.content.layout_section__main_top: '#main_top' -admin.content.layout_section__main_bottom: '#main_bottom' -admin.content.layout_section__side_right: '#side_right' -admin.content.layout_section__contents_bottom: '#contents_bottom' -admin.content.layout_section__footer: '#footer' -admin.content.layout_section__drawer: '#drawer' -admin.content.layout_section__close_body_before: 'Right before the tags' +admin.content.layout_section__main_top: "#main_top" +admin.content.layout_section__main_bottom: "#main_bottom" +admin.content.layout_section__side_right: "#side_right" +admin.content.layout_section__contents_bottom: "#contents_bottom" +admin.content.layout_section__footer: "#footer" +admin.content.layout_section__drawer: "#drawer" +admin.content.layout_section__close_body_before: "Right before the tags" admin.content.page_name: Page Name admin.content.page__card_title: Page Settings admin.content.page_route_name: Route Name @@ -1110,7 +1109,7 @@ admin.setting.shop.tax_setting: Taxes admin.setting.shop.mail_setting: Emails admin.setting.shop.csv_setting: CSV Outputs admin.setting.shop.order_status_setting: Order Status -admin.setting.shop.calendar_setting: 'Calendar' +admin.setting.shop.calendar_setting: "Calendar" admin.setting.system: System Settings admin.setting.system.member_management: Users admin.setting.system.member_password_change: Passwords @@ -1156,6 +1155,8 @@ admin.setting.shop.shop.option_point: Point Settings admin.setting.shop.shop.option_point_enabled: Points admin.setting.shop.shop.option_point_rate: Point Return Rate admin.setting.shop.shop.option_point_conversion_rate: Point Conversion Rate +admin.setting.shop.shop.ga: "Google Analytics" +admin.setting.shop.shop.ga.tracking_id: "Tracking ID" #------------------------------------------------------------------------------------ # Settings:Store Settings:Trade Law Settings @@ -1176,8 +1177,7 @@ admin.setting.shop.payment.unlimited: Any Amounts admin.setting.shop.payment.payment_id: ID admin.setting.shop.payment.payment_name: Payment Method Name admin.setting.shop.payment.logo_image: Logos -admin.setting.shop.payment.logo_image_size: 'Recommended size : 500px x 100px' - +admin.setting.shop.payment.logo_image_size: "Recommended size : 500px x 100px" #------------------------------------------------------------------------------------ # Settings : Store Settings : Delivery Methods @@ -1194,7 +1194,7 @@ admin.setting.shop.delivery.delivery_fee_by_pref: Shipping Charge by Prefecture admin.setting.shop.delivery.apply_to_pref__title: Flat Rate (Nationwide) admin.setting.shop.delivery.apply_to_pref__button: Apply to All Prefectures admin.setting.shop.delivery.fee.invalid: Please enter with numbers. -admin.setting.shop.delivery.payment_warning: 'There is no payment method that can be selected for purchases of %min% to %max% including tax. Please check the payment method condition settings.' +admin.setting.shop.delivery.payment_warning: "There is no payment method that can be selected for purchases of %min% to %max% including tax. Please check the payment method condition settings." #------------------------------------------------------------------------------------ # Settings : Store Settings : Tax Rate @@ -1237,9 +1237,9 @@ admin.setting.shop.csv.order__down: Move Down admin.setting.shop.csv.order__top: Move to Top admin.setting.shop.csv.order__bottom: Move to Bottom admin.setting.shop.csv.how_to_use: | - To add the output items, please select the item(s) on the left pane and press [Add]. - The item orders can be changed with [Item Orders] menus. - To select multiple items, hold Ctrl (Windows) or Command (Mac) and select. Or hold Shift to select a range of items. + To add the output items, please select the item(s) on the left pane and press [Add]. + The item orders can be changed with [Item Orders] menus. + To select multiple items, hold Ctrl (Windows) or Command (Mac) and select. Or hold Shift to select a range of items. #------------------------------------------------------------------------------------ # Settings:Store Settings : Order Status @@ -1256,9 +1256,9 @@ admin.setting.shop.order_status.display_order_count: Number display # Settings:Store Settings : Calendar #------------------------------------------------------------------------------------ -admin.setting.shop.calendar.title: 'Title' -admin.setting.shop.calendar.holiday: 'Date' -admin.setting.shop.calendar.holiday.available_error: 'Date is already existed.' +admin.setting.shop.calendar.title: "Title" +admin.setting.shop.calendar.holiday: "Date" +admin.setting.shop.calendar.holiday.available_error: "Date is already existed." #------------------------------------------------------------------------------------ # Settings : Customers : Change Password @@ -1297,8 +1297,8 @@ admin.setting.system.two_factor_auth.invalid_message__invalid: There is an error admin.setting.system.authority__card_title: Permission admin.setting.system.authority.description: | - Please enter the URL after %url% into the [Blocked URL] field. - The URL will be blocked, if it matches the URL entered there (left-hand match). + Please enter the URL after %url% into the [Blocked URL] field. + The URL will be blocked, if it matches the URL entered there (left-hand match). admin.setting.system.authority.example: 'e.g. /setting : / (slash) is required.' admin.setting.system.authority.authority: Role admin.setting.system.authority.deny_url: Blocked URL @@ -1321,12 +1321,12 @@ admin.setting.system.security.admin_url_description: It is recommended to set th admin.setting.system.security.admin_url_changed: The URL of Admin Console has been changed. Please sign in again. admin.setting.system.security.ip_limit: IP Restrictions(Allow List) admin.setting.system.security.ip_limit_description: | - This will restrict the access to the Admin Console to specified IP addresses. - Please enter the URLs one by one which you allow the access to. If no URLs are entered, any URL can access your Admin Console. - The IP address corresponds to the subnet mask notation. + This will restrict the access to the Admin Console to specified IP addresses. + Please enter the URLs one by one which you allow the access to. If no URLs are entered, any URL can access your Admin Console. + The IP address corresponds to the subnet mask notation. admin.setting.system.security.ip_limit_sample: | - 127.0.0.1/28 - 192.0.2.1 + 127.0.0.1/28 + 192.0.2.1 admin.setting.system.security.ip_limit_deny: IP Restrictions(Deny List) admin.setting.system.security.ip_limit_description_deny: | This will deny the access to the Admin Console from specified IP addresses. @@ -1342,8 +1342,8 @@ admin.setting.system.security.front_ip_limit_description_deny: | The IP address corresponds to the subnet mask notation. admin.setting.system.security.force_ssl: SSL is mandatory admin.setting.system.security.force_ssl_description: Only https access is allowed to set SSL restrictions. -admin.setting.system.security.ip_limit_invalid_ipv4: '%ip% is not an IPv4 address.' -admin.setting.system.security.ip_limit_invalid_https: 'http is not allowed to do this setting.' +admin.setting.system.security.ip_limit_invalid_ipv4: "%ip% is not an IPv4 address." +admin.setting.system.security.ip_limit_invalid_https: "http is not allowed to do this setting." admin.setting.system.security.admin_url_warning: Please set the Admin Console URL that is hard to guess for security. admin.setting.system.security.not_found_env_file: .env file not found. If you do not use the .env file you can not change security config in Admin Console. admin.setting.system.security.trusted_hosts: Trusted hosts @@ -1377,10 +1377,10 @@ admin.setting.system.log.read: Read admin.setting.system.master_data.select: Select admin.setting.system.master_data.description: | - You can set the value to the master data. - You are not allowed to register duplicated IDs. - If you leave the ID empty, the value will be deleted. - Warning: Your store may not work depending on the value you set. + You can set the value to the master data. + You are not allowed to register duplicated IDs. + If you leave the ID empty, the value will be deleted. + Warning: Your store may not work depending on the value you set. admin.setting.system.master_data.id: ID admin.setting.system.master_data.name: Name admin.setting.system.master_data.duplicate_id: You are not allowed to register duplicated IDs. @@ -1413,7 +1413,7 @@ admin.store.template.upload_new_template: Upload New Templates admin.store.template.template_name: Template Name admin.store.template.template_code: Template Code admin.store.template.template_file: Template File -admin.store.template.file_format: 'File format: zip,tar,tar.gz' +admin.store.template.file_format: "File format: zip,tar,tar.gz" admin.store.template.delete_error__default_template: You are not allowed to delete the default template. admin.store.template.delete_error__current_template: You are not allowed to delete the template in use. admin.store.template.template_code_already_exists: This template code is already used. @@ -1428,14 +1428,14 @@ admin.store.plugin.installed: Installed admin.store.plugin.update: Update admin.store.plugin.install.complete: A plugin has been installed. admin.store.plugin.install.failed: Failed to install plugin. -admin.store.plugin.enable.complete: '%plugin_name% is enabled.' -admin.store.plugin.already.enabled: '%plugin_name% has already been enabled.' -admin.store.plugin.disable.complete: '%plugin_name% is disabled.' -admin.store.plugin.already.disabled: '%plugin_name% has already been disabled.' +admin.store.plugin.enable.complete: "%plugin_name% is enabled." +admin.store.plugin.already.enabled: "%plugin_name% has already been enabled." +admin.store.plugin.disable.complete: "%plugin_name% is disabled." +admin.store.plugin.already.disabled: "%plugin_name% has already been disabled." admin.store.plugin.uninstall.complete: The plugin has been deleted. -admin.store.plugin.update.complete: '%plugin_name% has been updated.' -admin.store.plugin.update.failed: 'Failed to update %plugin_name% .' -admin.store.plugin.mkdir.error: 'Failed to creat a directory %dir_name%.' +admin.store.plugin.update.complete: "%plugin_name% has been updated." +admin.store.plugin.update.failed: "Failed to update %plugin_name% ." +admin.store.plugin.mkdir.error: "Failed to creat a directory %dir_name%." admin.store.setting: Authentication Key Settings admin.store.setting.api_key_setting: Set API authentication Key admin.store.setting.api_key_setting_info: Please set the authentication key. @@ -1452,9 +1452,8 @@ admin.store.package.api.0.error: Failed to communicate with Owners' Store. Pleas admin.store.package.api.403.error: Owners' Store failed to authenticate. Please confirm the authentication key settings. admin.store.package.api.500.error: Failed to communicate with Owners' Store. Please wait for a while and try again. admin.plugin.uninstall.error.not_disable: Please disable the plugin. -admin.plugin.uninstall.depend: 'Unable to delete %depend_name% because it depends on %name%.' -admin.plugin.disable.depend: 'Please disable %depend_name% before disabling %name%.' - +admin.plugin.uninstall.depend: "Unable to delete %depend_name% because it depends on %name%." +admin.plugin.disable.depend: "Please disable %depend_name% before disabling %name%." # TODO: Verify Message admin.store.plugin.popup.delete.confirm.title: Confirm the deletion of the plugin @@ -1491,7 +1490,7 @@ admin.store.plugin_confirm.title: Installation Confirmation admin.store.plugin_confirm.subtitle: Owner's Store admin.store.plugin_confirm.header: We are going to install the following plugins. admin.store.plugin_confirm.header.upgrade: The following plugins will be updated to the latest versions. -admin.store.plugin_confirm.require.header: '%name% requires following additional plugins. They will also be installed.' +admin.store.plugin_confirm.require.header: "%name% requires following additional plugins. They will also be installed." admin.store.plugin_confirm_uninstall.823: Owner's Store admin.store.plugin_confirm_uninstall.824: Delete Plugins admin.store.plugin_confirm_uninstall.825: The following plugins will be deleted. @@ -1517,13 +1516,13 @@ admin.store.plugin_owners_confirm.844: Downloads admin.store.plugin_owners_confirm.845: Plugin Version admin.store.plugin_owners_confirm.846: Last Updated admin.store.plugin_owners_confirm.847: Supported EC-CUBE Version -admin.store.plugin_owners_confirm.848: 'File sizeThe installation of EC-CUBE will be started.
Please have your database information (database name etc) at hand.
' +install.start_eccube_installation: "The installation of EC-CUBE will be started.
Please have your database information (database name etc) at hand.
" install.cooperation_of_providing_information: 'To improve EC-CUBE and debugging, please provide your site information. We will not use the provided information other than these purposes.EC-CUBEのインストールを開始します。
あらかじめ、使用するデータベースの情報(DB名など)をご準備ください。
' +install.start_eccube_installation: "EC-CUBEのインストールを開始します。
あらかじめ、使用するデータベースの情報(DB名など)をご準備ください。
" install.cooperation_of_providing_information: 'EC-CUBEのシステム向上・デバッグのため、サイト情報の提供にご協力おねがいいたします。