Skip to content

Commit

Permalink
temporary manual fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
outofambit committed Mar 5, 2024
1 parent 510915b commit 6643ae3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/content/contributor-docs/en/internationalization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ would become something like
console.log(translator('fileLoading.notFound', { fileName: file.name }))
```
Translations like this expect the variables it uses to have a certain name, so make sure you use that. Check a translation file (look in translations/{YOUR_LANGUAGE}/) to see what the variable name is. You'll find the translation under the object path in the translation key.
Translations like this expect the variables it uses to have a certain name, so make sure you use that. Check a translation file (look in `translations/{YOUR_LANGUAGE}/`) to see what the variable name is. You'll find the translation under the object path in the translation key.

"`fileLoading.notFound`" would be found at

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ There are definitely points of improvement on the editor, for instance:
* **01/07 - [#1467 Mobile Sketch Preview Screen](https://github.com/processing/p5.js-web-editor/pull/1467)**
* **01/07 - [#1472 Mobile Preferences Screen Prototype](https://github.com/processing/p5.js-web-editor/pull/1472)**
* 06/07 - [#1490 Fixes #1487](https://github.com/processing/p5.js-web-editor/pull/1490)
* **21/07 - [#1502 Add <Console /> to Mobile Views](https://github.com/processing/p5.js-web-editor/pull/1502)**
* 21/07 - [#1507 Refactor mobile components to react hooks](https://github.com/processing/p5.js-web-editor/pull/1507)
* 03/08 - [#1513 Add Dropdown Menu to the mobile IDE View](https://github.com/processing/p5.js-web-editor/pull/1513)
* 04/08 - [#1531 \[HOTFIX\] Restore Devtools Sidebar](https://github.com/processing/p5.js-web-editor/pull/1531)
* **17/08 - [#1528 Feature/mobile examples](https://github.com/processing/p5.js-web-editor/pull/1528)**
* **17/08 - [#1539 Implement Mobile version of Files tab / sidebar](https://github.com/processing/p5.js-web-editor/pull/1539)**
* **22/08 - [#1543 Add Login/Logout functionality to mobile layout](https://github.com/processing/p5.js-web-editor/pull/1543)**
* **22/08 - [#1564 Feature/switch mobile desktop](https://github.com/processing/p5.js-web-editor/pull/1564)**
- **21/07 - [#1502 Add `<Console />` to Mobile Views](https://github.com/processing/p5.js-web-editor/pull/1502)**
2 changes: 1 addition & 1 deletion src/content/contributor-docs/ko/internationalization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ console.log('I couldnt find ' + file.name + '. Are you sure it's there?')
console.log(translator('fileLoading.notFound', { fileName: file.name }))
```
이와 같은 번역에서는 특정 이름을 사용하는 변수가 필요하므로 반드시 해당 이름을 사용해야 합니다. 변수명을 확인하기 위해 번역파일 (translations/{YOUR_LANGUAGE})을 확인해 보세요. 번역은 번역키 안에 오브젝트 경로 아래에서 찾아볼 수 있습니다.
이와 같은 번역에서는 특정 이름을 사용하는 변수가 필요하므로 반드시 해당 이름을 사용해야 합니다. 변수명을 확인하기 위해 번역파일 (`translations/{YOUR_LANGUAGE}`)을 확인해 보세요. 번역은 번역키 안에 오브젝트 경로 아래에서 찾아볼 수 있습니다.
"`fileLoading.notFound`"는 다음에서 찾아볼 수 있습니다.
Expand Down
2 changes: 1 addition & 1 deletion src/content/contributor-docs/zh/internationalization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ console.log('I couldnt find ' + file.name + '. Are you sure it's there?')
console.log(translator('fileLoading.notFound', { fileName: file.name }))
```
此类翻译期望使用特定名称的变量,请确保使用该名称。查看翻译文件(在 translations/{YOUR_LANGUAGE}/ 中查找)以查看变量名称。您将在翻译键的对象路径下找到翻译。
此类翻译期望使用特定名称的变量,请确保使用该名称。查看翻译文件(在 `translations/{YOUR_LANGUAGE}/` 中查找)以查看变量名称。您将在翻译键的对象路径下找到翻译。
"`fileLoading.notFound`" 可以在以下位置找到:
Expand Down

0 comments on commit 6643ae3

Please sign in to comment.