# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # Variables: # $directive (String): the name of a CSP directive, such as "script-src". csp-error-missing-directive = 정책이 필수 요소인 '{ $directive }' 지시자가 빠졌음 # Variables: # $directive (String): the name of a CSP directive, such as "script-src". # $keyword (String): the name of a CSP keyword, usually 'unsafe-inline'. csp-error-illegal-keyword = '{ $directive }' 지시자가 금지된 { $keyword } 키워드를 포함함 # Variables: # $directive (String): the name of a CSP directive, such as "script-src". # $scheme (String): a protocol name, such as "http", which appears as "http:", as it would in a URL. csp-error-illegal-protocol = '{ $directive }' 지시자가 금지된 { $scheme }: 프로토콜 소스를 포함함 # Variables: # $directive (String): the name of a CSP directive, such as "script-src". # $scheme (String): a protocol name, such as "http", which appears as "http:", as it would in a URL. csp-error-missing-host = { $scheme }: '{ $directive }' 지시자의 프로토콜에 호스트가 필요함 # Variables: # $directive (String): the name of a CSP directive, such as "script-src". # $source (String): the name of a CSP source, usually 'self'. csp-error-missing-source = '{ $directive }'는 반드시 소스 { $source }를 포함하여야 함 # Variables: # $directive (String): the name of a CSP directive, such as "script-src". # $scheme (String): a protocol name, such as "http", which appears as "http:", as it would in a URL. csp-error-illegal-host-wildcard = { $scheme }: '{ $directive }' 지시자의 와일드카드 소스는 최소한 하나의 일반적이지 않은 하위 도메인(예: *.com 대신 *.example.com)을 포함하여야 함