p5 1.3.1 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "scripts": {
5
5
  "grunt": "grunt",
6
6
  "build": "grunt build",
7
- "dev": "grunt browserify:dev connect:yui watch:quick",
7
+ "dev": "grunt yui browserify:dev connect:yui watch:quick",
8
8
  "docs": "grunt yui",
9
9
  "docs:dev": "grunt yui:dev",
10
10
  "test": "grunt",
@@ -32,7 +32,7 @@
32
32
  "node --require @babel/register ./utils/sample-linter.js"
33
33
  ]
34
34
  },
35
- "version": "1.3.1",
35
+ "version": "1.4.2",
36
36
  "devDependencies": {
37
37
  "@babel/core": "^7.7.7",
38
38
  "@babel/preset-env": "^7.10.2",
@@ -73,7 +73,7 @@
73
73
  "i18next-browser-languagedetector": "^4.0.1",
74
74
  "libtess": "^1.2.2",
75
75
  "lint-staged": "^4.3.0",
76
- "marked": "^0.7.0",
76
+ "marked": "^4.0.10",
77
77
  "mocha": "^6.2.2",
78
78
  "np": "^5.2.1",
79
79
  "omggif": "^1.0.10",
@@ -81,11 +81,10 @@
81
81
  "opentype.js": "^0.9.0",
82
82
  "prettier": "^1.7.4",
83
83
  "promise-map-series": "^0.2.3",
84
- "puppeteer": "^5.5.0",
84
+ "puppeteer": "^10.2.0",
85
85
  "regenerator-runtime": "^0.13.3",
86
- "release-it": "^12.6.2",
87
86
  "request": "^2.88.0",
88
- "simple-git": "^1.132.0",
87
+ "simple-git": "^3.3.0",
89
88
  "whatwg-fetch": "^2.0.4"
90
89
  },
91
90
  "license": "LGPL-2.1",
@@ -1,7 +1,8 @@
1
1
  export { default as en_translation } from './en/translation';
2
2
  export { default as es_translation } from './es/translation';
3
+ export { default as ko_translation } from './ko/translation';
3
4
 
4
- /**
5
+ /**
5
6
  * When adding a new language, add a new "export" statement above this.
6
7
  * For example, if we were to add fr ( French ), we would write:
7
8
  * export { default as fr_translation } from './fr/translation';
@@ -9,7 +10,7 @@ export { default as es_translation } from './es/translation';
9
10
  * If the language key has a hypen (-), replace it with an underscore ( _ )
10
11
  * e.g. for es-MX we would write:
11
12
  * export { default as es_MX_translation } from './es-MX/translation';
12
- *
13
+ *
13
14
  * "es_MX" is the language key whereas "translation" is the filename
14
15
  * ( translation.json ) or the namespace
15
16
  */
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "fes": {
3
- "autoplay": "The media that tried to play (with '{{src}}') wasn't allowed to by this browser, most likely due to the browser's autoplay policy. Check out {{link}} for more information about why.",
4
- "checkUserDefinedFns": "It seems that you may have accidentally written {{name}} instead of {{actualName}}.\n\nPlease correct it if it's not intentional.",
3
+ "autoplay": "The media that tried to play (with '{{src}}') wasn't allowed to by this browser, most likely due to the browser's autoplay policy.\n\n+ More info: {{url}}",
4
+ "checkUserDefinedFns": "It seems that you may have accidentally written {{name}} instead of {{actualName}}. Please correct it if it's not intentional.",
5
5
  "fileLoadError": {
6
6
  "bytes": "It looks like there was a problem loading your file. {{suggestion}}",
7
7
  "font": "It looks like there was a problem loading your font. {{suggestion}}",
@@ -10,36 +10,43 @@
10
10
  "json": "It looks like there was a problem loading your JSON file. {{suggestion}}",
11
11
  "large": "If your large file isn't fetched successfully, we recommend splitting the file into smaller segments and fetching those.",
12
12
  "strings": "It looks like there was a problem loading your text file. {{suggestion}}",
13
- "suggestion": "Try checking if the file path ({{filePath}}) is correct, hosting the file online, or running a local server. (More info at {{link}})",
13
+ "suggestion": "Try checking if the file path ({{filePath}}) is correct, hosting the file online, or running a local server.\n\n+ More info: {{url}}",
14
14
  "table": "It looks like there was a problem loading your table file. {{suggestion}}",
15
15
  "xml": "It looks like there was a problem loading your XML file. {{suggestion}}"
16
16
  },
17
17
  "friendlyParamError": {
18
- "type_EMPTY_VAR": "{{func}}() was expecting {{formatType}} for the {{position}} parameter, received an empty variable instead. {{location}}\n\nIf not intentional, this is often a problem with scope: {{link}}",
19
- "type_TOO_FEW_ARGUMENTS": "{{func}}() was expecting at least {{minParams}} arguments, but received only {{argCount}}. {{location}}",
20
- "type_TOO_MANY_ARGUMENTS": "{{func}}() was expecting no more than {{maxParams}} arguments, but received {{argCount}}. {{location}}",
21
- "type_WRONG_TYPE": "{{func}}() was expecting {{formatType}} for the {{position}} parameter, received {{argType}} instead. {{location}}"
18
+ "type_EMPTY_VAR": "{{location}} {{func}}() was expecting {{formatType}} for the {{position}} parameter, received an empty variable instead. If not intentional, this is often a problem with scope.\n\n+ More info: {{url}}",
19
+ "type_TOO_FEW_ARGUMENTS": "{{location}} {{func}}() was expecting at least {{minParams}} arguments, but received only {{argCount}}.",
20
+ "type_TOO_MANY_ARGUMENTS": "{{location}} {{func}}() was expecting no more than {{maxParams}} arguments, but received {{argCount}}.",
21
+ "type_WRONG_TYPE": "{{location}} {{func}}() was expecting {{formatType}} for the {{position}} parameter, received {{argType}} instead."
22
22
  },
23
23
  "globalErrors": {
24
24
  "reference": {
25
- "notDefined": "There's an error due to \"{{symbol}}\" not being defined in the current scope {{location}}.\n\nIf you have defined it in your code, you should check its scope, spelling, and letter-casing (JavaScript is case-sensitive). For more:\n{{url1}}\n{{url2}}"
25
+ "cannotAccess": "\n{{location}} \"{{symbol}}\" is used before declaration. Make sure you have declared the variable before using it.\n\n+ More info: {{url}}",
26
+ "notDefined": "\n{{location}} \"{{symbol}}\" is not defined in the current scope. If you have defined it in your code, you should check its scope, spelling, and letter-casing (JavaScript is case-sensitive).\n\n+ More info: {{url}}"
26
27
  },
27
- "stackSubseq": "▶️ Called from line {{line}} in \"{{func}}\" in {{file}} ({{location}})\n\n",
28
- "stackTop": "▶️ Error at line {{line}} in \"{{func}}\" in {{file}} ({{location}})\n\n",
28
+ "stackSubseq": "└[{{location}}] \n\t Called from line {{line}} in {{func}}()\n",
29
+ "stackTop": "┌[{{location}}] \n\t Error at line {{line}} in {{func}}()\n",
29
30
  "syntax": {
30
- "invalidToken": "There's a syntax error due to a symbol that JavaScript doesn't recognize or didn't expect at it's place.\nFor more: {{url}}",
31
- "unexpectedToken": "There's a syntax error due to a symbol that wasn't expected at it's place.\nUsually this is due to a typo. Check the line number in the error below for anything missing/extra.\nFor more: {{url}}"
31
+ "badReturnOrYield": "\nSyntax Error - return lies outside of a function. Make sure you’re not missing any brackets, so that return lies inside a function.\n\n+ More info: {{url}}",
32
+ "invalidToken": "\nSyntax Error - Found a symbol that JavaScript doesn't recognize or didn't expect at it's place.\n\n+ More info: {{url}}",
33
+ "missingInitializer": "\nSyntax Error - A const variable is declared but not initialized. In JavaScript, an initializer for a const is required. A value must be specified in the same statement in which the variable is declared. Check the line number in the error and assign the const variable a value.\n\n+ More info: {{url}}",
34
+ "redeclaredVariable": "\nSyntax Error - \"{{symbol}}\" is being redeclared. JavaScript doesn't allow declaring a variable more than once. Check the line number in error for redeclaration of the variable.\n\n+ More info: {{url}}",
35
+ "unexpectedToken": "\nSyntax Error - Symbol present at a place that wasn't expected.\nUsually this is due to a typo. Check the line number in the error for anything missing/extra.\n\n+ More info: {{url}}"
32
36
  },
33
37
  "type": {
34
- "notfunc": "There's an error as \"{{symbol}}\" could not be called as a function {{location}}.\nCheck the spelling, letter-casing (Javacript is case-sensitive) and its type.\nFor more: {{url}}",
35
- "notfuncObj": "There's an error as \"{{symbol}}\" could not be called as a function {{location}}.\nVerify whether \"{{obj}}\" has \"{{symbol}}\" in it and check the spelling, letter-casing (Javacript is case-sensitive) and its type.\nFor more: {{url}}"
38
+ "constAssign": "\n{{location}} A const variable is being re-assigned. In javascript, re-assigning a value to a constant is not allowed. If you want to re-assign new values to a variable, make sure it is declared as var or let.\n\n+ More info: {{url}}",
39
+ "notfunc": "\n{{location}} \"{{symbol}}\" could not be called as a function.\nCheck the spelling, letter-casing (JavaScript is case-sensitive) and its type.\n\n+ More info: {{url}}",
40
+ "notfuncObj": "\n{{location}} \"{{symbol}}\" could not be called as a function.\nVerify whether \"{{obj}}\" has \"{{symbol}}\" in it and check the spelling, letter-casing (JavaScript is case-sensitive) and its type.\n\n+ More info: {{url}}",
41
+ "readFromNull": "\n{{location}} The property of null can't be read. In javascript the value null indicates that an object has no value.\n\n+ More info: {{url}}",
42
+ "readFromUndefined": "\n{{location}} Cannot read property of undefined. Check the line number in error and make sure the variable which is being operated is not undefined.\n\n + More info: {{url}}"
36
43
  }
37
44
  },
38
- "libraryError": "An error with message \"{{error}}\" occured inside the p5js library when {{func}} was called {{location}}\n\nIf not stated otherwise, it might be an issue with the arguments passed to {{func}}.",
39
- "location": "(on line {{line}} in {{file}} [{{location}}])",
40
- "misspelling": "It seems that you may have accidentally written \"{{name}}\" instead of \"{{actualName}}\" {{location}}.\n\nPlease correct it to {{actualName}} if you wish to use the {{type}} from p5.js",
41
- "misspelling_plural": "It seems that you may have accidentally written \"{{name}}\" {{location}}.\n\nYou may have meant one of the following:\n{{suggestions}}",
42
- "misusedTopLevel": "Did you just try to use p5.js's {{symbolName}} {{symbolType}}? If so, you may want to move it into your sketch's setup() function.\n\nFor more details, see: {{link}}",
45
+ "libraryError": "{{location}} An error with message \"{{error}}\" occurred inside the p5js library when {{func}} was called. If not stated otherwise, it might be an issue with the arguments passed to {{func}}.",
46
+ "location": "[{{file}}, line {{line}}]",
47
+ "misspelling": "{{location}} It seems that you may have accidentally written \"{{name}}\" instead of \"{{actualName}}\". Please correct it to {{actualName}} if you wish to use the {{type}} from p5.js.",
48
+ "misspelling_plural": "{{location}} It seems that you may have accidentally written \"{{name}}\".\nYou may have meant one of the following: \n{{suggestions}}",
49
+ "misusedTopLevel": "Did you just try to use p5.js's {{symbolName}} {{symbolType}}? If so, you may want to move it into your sketch's setup() function.\n\n+ More info: {{url}}",
43
50
  "positions": {
44
51
  "p_1": "first",
45
52
  "p_10": "tenth",
@@ -55,7 +62,11 @@
55
62
  "p_9": "ninth"
56
63
  },
57
64
  "pre": "\n🌸 p5.js says: {{message}}",
65
+ "sketchReaderErrors": {
66
+ "reservedConst": "you have used a p5.js reserved variable \"{{symbol}}\" make sure you change the variable name to something else.\n\n+ More info: {{url}}",
67
+ "reservedFunc": "you have used a p5.js reserved function \"{{symbol}}\" make sure you change the function name to something else.\n\n+ More info: {{url}}"
68
+ },
58
69
  "welcome": "Welcome! This is your friendly debugger. To turn me off, switch to using p5.min.js.",
59
- "wrongPreload": "An error with message \"{{error}}\" occured inside the p5js library when \"{{func}}\" was called {{location}}.\n\nIf not stated otherwise, it might be due to \"{{func}}\" being called from preload. Nothing besides load calls (loadImage, loadJSON, loadFont, loadStrings, etc.) should be inside the preload function."
70
+ "wrongPreload": "{{location}} An error with message \"{{error}}\" occurred inside the p5js library when \"{{func}}\" was called. If not stated otherwise, it might be due to \"{{func}}\" being called from preload. Nothing besides load calls (loadImage, loadJSON, loadFont, loadStrings, etc.) should be inside the preload function."
60
71
  }
61
- }
72
+ }
@@ -22,17 +22,24 @@
22
22
  },
23
23
  "globalErrors": {
24
24
  "reference": {
25
+ "cannotAccess": "",
25
26
  "notDefined": ""
26
27
  },
27
28
  "stackSubseq": "",
28
29
  "stackTop": "",
29
30
  "syntax": {
31
+ "badReturnOrYield": "",
30
32
  "invalidToken": "",
33
+ "missingInitializer": "",
34
+ "redeclaredVariable": "",
31
35
  "unexpectedToken": ""
32
36
  },
33
37
  "type": {
38
+ "constAssign": "",
34
39
  "notfunc": "",
35
- "notfuncObj": ""
40
+ "notfuncObj": "",
41
+ "readFromNull": "",
42
+ "readFromUndefined": ""
36
43
  }
37
44
  },
38
45
  "libraryError": "",
@@ -55,6 +62,10 @@
55
62
  "p_9": ""
56
63
  },
57
64
  "pre": "🌸 p5.js dice: {{message}}",
65
+ "sketchReaderErrors": {
66
+ "reservedConst": "",
67
+ "reservedFunc": ""
68
+ },
58
69
  "welcome": "",
59
70
  "wrongPreload": ""
60
71
  }
@@ -6,7 +6,7 @@ import en from './en/translation';
6
6
  /**
7
7
  * Here, we define a default/fallback language which we can use without internet.
8
8
  * You won't have to change this when adding a new language.
9
- *
9
+ *
10
10
  * `translation` is the namespace we are using for our initial set of strings
11
11
  */
12
12
  export default {
@@ -18,10 +18,11 @@ export default {
18
18
  /**
19
19
  * This is a list of languages that we have added so far.
20
20
  * If you have just added a new language (yay!), add its key to the list below
21
- * (`en` is english, `es` es español). Also add its export to
21
+ * (`en` is english, `es` es español). Also add its export to
22
22
  * dev.js, which is another file in this folder.
23
23
  */
24
24
  export const languages = [
25
25
  'en',
26
- 'es'
26
+ 'es',
27
+ 'ko'
27
28
  ];
@@ -0,0 +1,26 @@
1
+ # Welcome to the FES Korean branch!
2
+ 안녕하세요, FES 한국어 브랜치에 어서오세요!
3
+
4
+ ## 한국어 공동 번역 기여자 Korean Translation Credits
5
+ 2021년 가을부터 공동작업으로 진행되어 2022년 1월에 마무리된 FES 에러메시지 공동 번역 작업은 아래 분들이 함께하셨습니다.
6
+ * [염인화](https://yinhwa.art/) (Inhwa Yeom): artist/XR researcher based in South Korea. (Take a look at her works on [p5 for 50+](https://p5for50.plus/) ([Processing Foundation Fellows 2020](https://medium.com/processing-foundation/p5-js-for-ages-50-in-korea-50d47b5927fb)) and p5js website Korean translation)
7
+ * 전유진 (Youjin Jeon): artist/organizer based in Seoul, South Korea. [여성을 위한 열린 기술랩(Woman Open Tech Lab.kr)](http://womanopentechlab.kr/) and [Seoul Express](http://seoulexpress.kr/)
8
+ * [정앎](https://www.almichu.com/) (Alm Chung, organizer): Korean-American artist/researcher based in Seattle, WA.
9
+ * 이지현 (Jihyun Lee): Korean publishing editor based in South Korea
10
+
11
+ ## 영한 번역 리소스 (Korean-English Translation Resources)
12
+ * 영한 [번역에 도움이 되는 툴과 유의점들]입니다.
13
+ * 또한 영한 [번역 작업 중 마주치는 딜레마들] 속에서 저희가 채택한 방식을 모아 적어봤습니다.
14
+ * 외래 [기술 용어 다루기]에 대한 논의입니다.
15
+ * p5js 웹사이트와 기술 문서에서 사용하는 기술 용어들을 통일하기위해 사용하고 있 [p5js.org/ko 기술 용어 색인] 입니다.
16
+ * 현존하는 검색툴/번역 툴들과 연계 가능한 "[사이를 맴도는]" 번역문에 대해 생각해보는 글입니다.
17
+
18
+ 이 외에도 FES의 세계화 작업 과정, 그리고 과정 중 논의된 이슈들을 [Friendly Errors i18n Book ✎ 친절한 오류 메시지 세계화 가이드북]에서 읽어보실 수 있습니다. "친절한 오류 메시지 세계화 가이드북"은 오픈 소스 프로젝트이며, 이 [독립된 레파지토리 (repository)]를 통해 기여 가능합니다.
19
+
20
+
21
+ [번역에 도움이 되는 툴과 유의점들]: https://almchung.github.io/p5-fes-i18n-book/ch4/#tools
22
+ [번역 작업 중 마주치는 딜레마들]: https://almchung.github.io/p5-fes-i18n-book/ch4/#dilemmas
23
+ [기술 용어 다루기]: https://almchung.github.io/p5-fes-i18n-book/ch3/
24
+ [사이를 맴도는]: https://almchung.github.io/p5-fes-i18n-book/ch5/
25
+ [Friendly Errors i18n Book ✎ 친절한 오류 메시지 세계화 가이드북]: https://almchung.github.io/p5-fes-i18n-book/
26
+ [독립된 레파지토리 (repository)]: https://github.com/almchung/p5-fes-i18n-book
@@ -0,0 +1,72 @@
1
+ {
2
+ "fes": {
3
+ "autoplay": "미디어('{{src}}')가 이 브라우저에서는 재생되지 않았습니다. 사용하고 계신 브라우저의 자동 재생 정책 때문일 수 있습니다.\n\n+ 추가 정보: {{url}}",
4
+ "checkUserDefinedFns": "혹시 {{actualName}} 대신 {{name}}를 쓴 것이 아닌지 살펴보세요.",
5
+ "fileLoadError": {
6
+ "bytes": "파일을 로드하는 중에 문제가 발생했습니다. {{suggestion}}",
7
+ "font": "글꼴을 로드하는 중에 문제가 발생했습니다. {{suggestion}}",
8
+ "gif": "GIF 파일을 로드하는 중에 문제가 발생했습니다. GIF 파일의 인코딩 방식이 87a이거나 89a인지를 확인해보세요.",
9
+ "image": "이미지를 로드하는 중에 문제가 발생했습니다. {{suggestion}}",
10
+ "json": "JSON 파일을 로드하는 중에 문제가 발생했습니다. {{suggestion}}",
11
+ "large": "용량이 큰 파일을 한꺼번에 로드하는 중에 문제가 발생했습니다. 파일 용량을 줄여 보세요.",
12
+ "strings": "텍스트 파일을 로드하는 중에 문제가 발생했습니다. {{suggestion}}",
13
+ "suggestion": "파일 경로({{filePath}})가 올바른지 확인해보세요. 혹은 해당 파일을 호스팅 서비스를 이용하거나 로컬 서버를 구동하여 웹에 올리는 방법을 고려해 보세요.\n\n+ 추가 정보: {{url}}",
14
+ "table": "테이블 파일을 로드하는 중에 문제가 발생했습니다. {{suggestion}}",
15
+ "xml": "XML 파일을 로드하는 중에 문제가 발생했습니다. {{suggestion}}"
16
+ },
17
+ "friendlyParamError": {
18
+ "type_EMPTY_VAR": "{{location}} {{formatType}} 타입 값을 받는 {{func}}()의 {{position}} 매개변수(parameter)에 아무 값도 전달되지 않았습니다. 범위(scope)와 관련된 문제일 수 있습니다.\n\n+ 추가 정보: {{url}}",
19
+ "type_TOO_FEW_ARGUMENTS": "{{location}} 최소 {{minParams}}개의 인수(argument)를 받는 함수 {{func}}()에 인수가 {{argCount}}개만 입력되었습니다.",
20
+ "type_TOO_MANY_ARGUMENTS": "{{location}} 최대 {{maxParams}}개의 인수(argument)를 받는 함수 {{func}}()에 인수가 {{argCount}}개나 입력되었습니다.",
21
+ "type_WRONG_TYPE": "{{location}} {{formatType}} 타입의 값을 받는 {{func}}()의 {{position}} 매개변수(parameter)에 {{argType}} 타입의 값이 입력되었습니다."
22
+ },
23
+ "globalErrors": {
24
+ "reference": {
25
+ "cannotAccess": "\n{{location}} \"{{symbol}}\"가 선언되지 않은 채 사용되었습니다. 변수를 사용하기 전, 먼저 선언했는지 확인해보세요.\n\n+ 추가 정보: {{url}}",
26
+ "notDefined": "\n{{location}} \"{{symbol}}\"은 현재 범위(scope) 안에 정의되지 않았습니다. 만약 정의를 했다면, 해당 범위와 오탈자, 대소문자 등을 확인해보세요 (자바스크립트에서는 대소문자를 구분합니다).\n\n+ 추가 정보: {{url}}"
27
+ },
28
+ "stackSubseq": "└[{{location}}] \n\t {{func}}()에 있는 줄{{line}}에서 호출\n",
29
+ "stackTop": "┌[{{location}}] \n\t {{func}}()에 있는 줄{{line}}에서 오류 발생\n",
30
+ "syntax": {
31
+ "badReturnOrYield": "\n구문 오류 - 대괄호가 제대로 쓰였는지 확인해 본 후, return을 함수 안에 넣어주세요.\n\n+ 추가 정보: {{url}}",
32
+ "invalidToken": "\n구문 오류 - 자바스크립트가 인식할 수 없거나, 적합하지 않은 기호나 문구가 입력되었습니다.\n\n+ 추가 정보: {{url}}",
33
+ "missingInitializer": "\n구문 오류 - const 변수가 선언되었지만 초기화되지 않았습니다. 변수가 선언된 명령문 안에서 값을 지정해주세요.\n\n+ 추가 정보: {{url}}",
34
+ "redeclaredVariable": "\n구문 오류 - 이미 선언된 \"{{symbol}}\"가 재선언되었습니다. 자바스크립트에서는 같은 변수를 한 번 이상 선언할 수 없습니다.\n\n+ 추가 정보: {{url}}",
35
+ "unexpectedToken": "\n구문 오류 - 입력된 문구가 예상하지 못한 위치에 있습니다.보통 이런 상황은 오탈자 때문에 일어나는 경우가 많습니다. 누락되거나 추가된 내용이 없는지 확인하세요.\n\n+ 추가 정보: {{url}}"
36
+ },
37
+ "type": {
38
+ "constAssign": "\n{{location}} const 변수가 재지정되었습니다. 자바스크립트에서는 const 변수에 다른 값을 여러 번 지정할 수 없으므로 새로운 값을 여러 번 지정하시려면, const 대신 var나 let을 써서 변수를 선언해 주세요.\n\n+ 추가 정보: {{url}}",
39
+ "notfunc": "\n{{location}} \"{{symbol}}\"는 함수로 호출할 수 없습니다. 타입과 오탈자, 대소문자 등을 확인해주세요.\n\n+ 추가 정보: {{url}}",
40
+ "notfuncObj": "\n{{location}} \"{{symbol}}\"는 함수로 호출할 수 없습니다. \"{{obj}}\"가 \"{{symbol}}\"를 가지고 있는지 살펴보고, 타입과 오탈자, 대소문자 등을 확인해주세요.\n\n+ 추가 정보: {{url}}",
41
+ "readFromNull": "\n{{location}} null의 속성(property)을 읽을 수 없습니다. 자바스크립트에서 null이란, 객체(object)에 주어진 값이 비어있다는 뜻입니다.\n\n+ 추가 정보: {{url}}",
42
+ "readFromUndefined": "\n{{location}} undefined의 속성(property)을 읽을 수 없습니다. 혹시 연산 중인 변수가 정의되지 않았는지 확인하세요.\n\n+ 추가 정보: {{url}}"
43
+ }
44
+ },
45
+ "libraryError": "{{location}} 함수 {{func}}가 호출되었을 때, \"{{error}}\" 오류가 p5js 라이브러리 내에서 발생했습니다. 함수 {{func}}에 전달한 인수(argument)가 문제일 수 있습니다.",
46
+ "location": "[{{file}}, 줄{{line}}]",
47
+ "misspelling": "{{location}} 혹시 p5.js의 {{type}}를 사용하시려면 \"{{name}}\"를 {{actualName}}로 고쳐 보세요.",
48
+ "misspelling_plural": "{{location}} 혹시 p5.js의 {{type}}를 사용하시려면 \"{{name}}\"를 다음 중 하나로 고쳐보세요: \n{{suggestions}}",
49
+ "misusedTopLevel": "{{location}} 혹시 p5.js의 {{symbolType}} 타입 {{symbolName}}을 사용하셨나요? 그렇다면 {{symbolName}}을 작성 중인 setup() 함수의 대괄호 안으로 옮겨보세요.\n\n+ 추가 정보: {{url}}",
50
+ "positions": {
51
+ "p_1": "1번째",
52
+ "p_10": "10번째",
53
+ "p_11": "11번째",
54
+ "p_12": "12번째",
55
+ "p_2": "2번째",
56
+ "p_3": "3번째",
57
+ "p_4": "4번째",
58
+ "p_5": "5번째",
59
+ "p_6": "6번째",
60
+ "p_7": "7번째",
61
+ "p_8": "8번째",
62
+ "p_9": "9번째"
63
+ },
64
+ "pre": "\n🌸 p5.js says: {{message}}",
65
+ "sketchReaderErrors": {
66
+ "reservedConst": "p5.js에서 이미 쓰고 있는 변수 \"{{symbol}}\"를 사용하셨습니다. 해당 변수를 다른 이름으로 바꾸어 주세요.\n\n+ 추가 정보: {{url}}",
67
+ "reservedFunc": "p5.js에서 이미 쓰고 있는 함수 \"{{symbol}}\"를 사용하셨습니다. 해당 함수를 다른 이름으로 바꾸어 주세요.\n\n+ 추가 정보: {{url}}"
68
+ },
69
+ "welcome": "{{logo}} 환영합니다, 이 메세지는 에러를 찾는 디버깅 안내문입니다. 안내가 필요없는 경우 p5.js대신 p5.min.js를 사용하세요.",
70
+ "wrongPreload": "{{location}} \"{{func}}\"가 호출되며 p5js 라이브러리 내부에서 다음 오류가 발생했습니다: \"{{error}}\".\n\n 함수 \"{{func}}\"가 preload()에서 호출되었기 때문일 수 있습니다. preload() 함수 안에서는 지정된 함수(예: loadImage, loadJSON, loadFont, loadStrings 등)만 호출할 수 있습니다."
71
+ }
72
+ }