diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js
index 8da20eb1d..e70032ce9 100644
--- a/website/docusaurus.config.js
+++ b/website/docusaurus.config.js
@@ -30,6 +30,11 @@ const config = {
direction: "ltr",
htmlLang: "zh-Hans",
},
+ ja: {
+ label: "日本語",
+ direction: "ltr",
+ htmlLang: "ja-JP",
+ },
ru: {
label: "Русский",
direction: "ltr",
@@ -37,14 +42,9 @@ const config = {
},
ko: {
label: "한국어",
- direction: "ltr",
- htmlLang: "ko-KR",
+ direction: "ltr",
+ htmlLang: "ko-KR",
},
- ja: {
- label: "日本語",
- direction: "ltr",
- htmlLang: "ja-JP",
- },
},
},
plugins: [],
diff --git a/website/i18n/ja/docusaurus-plugin-content-docs/current/community/showcase/modalfilemanager.mdx b/website/i18n/ja/docusaurus-plugin-content-docs/current/community/showcase/modalfilemanager.mdx
index 8d671a10c..ca0f4466a 100644
--- a/website/i18n/ja/docusaurus-plugin-content-docs/current/community/showcase/modalfilemanager.mdx
+++ b/website/i18n/ja/docusaurus-plugin-content-docs/current/community/showcase/modalfilemanager.mdx
@@ -1,7 +1,7 @@
# Modal File Manager
- 
+ 
[Modal File Manager](https://github.com/raguay/ModalFileManager) is a dual pane file manager using web technologies. My original design was based on NW.js and can be found [here](https://github.com/raguay/ModalFileManager-NWjs). This version uses the same Svelte based frontend code (but it has be greatly modified since the departure from NW.js), but the backend is a [Wails 2](https://wails.io/) implementation. By using this implementation, I no longer use command line `rm`, `cp`, etc. commands. It is fully coded using Go and runs much faster than the previous versions.
diff --git a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/_category_.json b/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/_category_.json
deleted file mode 100644
index fad21931a..000000000
--- a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/_category_.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "label": "Contributing",
- "position": 99
-}
diff --git a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/developing-new-features.mdx b/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/developing-new-features.mdx
deleted file mode 100644
index 57c5b101b..000000000
--- a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/developing-new-features.mdx
+++ /dev/null
@@ -1,29 +0,0 @@
----
-sidebar_position: 20
----
-
-# Developing New Features
-
-We are always keen to add features to Wails and expand on what the project can do. The process for adding new features are as follows:
-
-- Pick an enhancement ticket with the "TODO" label. It's preferable to select one from the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) but the choice is yours.
-- Before developing, check that the ticket includes the following information:
-- The purpose of the enhancement
-- What is out of scope for the enhancement
-- What platforms the enhancement targets (most features should be cross-platform unless there's a very specific reason)
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket. Sometimes placeholder tickets are created and require more details
-- Comment on the ticket stating you wish to develop the feature
-- Clone the repository and create a branch with the format `feature/_`
-- New features often require documentation so please ensure you have also added or updated the documentation as part of the changes
-- Once the feature is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-enhancement requests are reviewed for good fit. Not all ideas will be selected so it's best to have discussion
-on the ticket first.
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-:::
diff --git a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/documenting.mdx b/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/documenting.mdx
deleted file mode 100644
index 652f665ce..000000000
--- a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/documenting.mdx
+++ /dev/null
@@ -1,34 +0,0 @@
----
-sidebar_position: 40
----
-
-# Documenting
-
-This website is also the main documentation site for the project. Sometimes this gets out of date and needs some slight adjustments. Some of the documentation isn't written to the best standards either. Developing documentation is hard and so any contribution to this is greatly appreciated. Features without documentation are unfinished so to the project, it's *as important* as the code.
-
-We generally do not create tickets for updating documentation so if there is text you think should be updated or rephrased then feel free to submit a PR for that. This site is in the main repository under the `website` directory. We use [Docusaurus](https://docusaurus.io/) to create the site so there is plenty of existing documentation and tutorials around to get started.
-
-To set up a local documentation development environment, do the following:
-
-- [Install npm](https://docs.npmjs.com/cli/v8/configuring-npm/install)
-- `cd website`
-- `npm install`
-- `npm run start`
-
-After it has all installed and is running, you should see the site at [`http://localhost:3000`](http://localhost:3000). Any changes made to the site text will be immediately reflected in the browser.
-
-## Versioning
-
-We employ a versioning system where we have the "latest" documentation AKA "Next Version" which has all the changes that have occurred since the last release. We also keep the last release documentation as well as the version before that.
-
-There isn't usually a reason to update released documentation so we don't generally update the documents in the `versioned_docs` or `versioned_sidebars` directories.
-
-The "next version" docs are mainly in `website/docs` with some "version independent" documents in `src/pages`. Any updates should be made in the `website/docs` directory.
-
-## Languages
-
-The default documents of the Wails project are English documents. We use the "crowdin" tool to translate documents in other languages and synchronize them to the website. You can [join our project](https://crowdin.com/project/wails) and submit your translations to make contributions.
-
-### Add new language
-
-If you want to add a new language to the documentation, please follow the prompts to [fill in and submit an Issue](https://github.com/wailsapp/wails/issues/new?assignees=&labels=documentation&template=documentation.yml). After being confirmed by the maintainer, we will add the language to the "crowdin" and you will then be able to submit your translation.
diff --git a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/fixing-bugs.mdx b/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/fixing-bugs.mdx
deleted file mode 100644
index 51bd90b74..000000000
--- a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/fixing-bugs.mdx
+++ /dev/null
@@ -1,27 +0,0 @@
----
-sidebar_position: 30
----
-
-# Fixing Bugs
-
-The process for fixing bugs are as follows:
-
-- Check the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) and select a bug to fix
-- Before developing, check that the ticket includes the following information:
-- The scope of the issue including platforms affected
-- The steps to reproduce. Sometimes bugs are opened that are not Wails issues and the onus is on the reporter to prove that it is a Wails issue with a minimal reproducible example
-- The output of `wails doctor`
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket.
-- Comment on the ticket stating you wish to develop a fix
-- Clone the repository and create a branch with the format `bugfix/_`
-- Once the fix is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-bugfixes should be discussed as the approach may have unintended side effects.
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-:::
diff --git a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/helping-others.mdx b/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/helping-others.mdx
deleted file mode 100644
index 933c06b35..000000000
--- a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/helping-others.mdx
+++ /dev/null
@@ -1,13 +0,0 @@
----
-sidebar_position: 50
----
-
-# Helping Others
-
-A great way to contribute to the project is to help others who are experiencing difficulty. This is normally reported as a ticket or a message on the Wails slack channel. Even just clarifying the issue can really help out. Sometimes, when an issue is discussed and gets resolved, we create a guide out of it to help others who face the same issues.
-
-To join the Wails slack channel, accept the invite [here](https://gophers.slack.com/join/shared_invite/zt-197vymgt3-sJt4oyakb6nqlVKjXTyeVw#/shared-invite/email) and join us on the channel by following [this link](https://gophers.slack.com/?redir=%2Fmessages%2FCJ4P9F7MZ%2F).
-
-:::note
-Work In Progress
-:::
diff --git a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/setting-up-a-dev-environment.mdx b/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/setting-up-a-dev-environment.mdx
deleted file mode 100644
index b933af9a6..000000000
--- a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/setting-up-a-dev-environment.mdx
+++ /dev/null
@@ -1,30 +0,0 @@
----
-sidebar_position: 10
----
-
-# Setting up a Development Environment
-
-You can set up a development environment by doing the following:
-
-- Install the latest versions of Go and Git
-- `git clone https://github.com/wailsapp/wails`
-- `cd wails/v2/cmd/wails`
-- `go install`
-
-NOTE: The directory that you cloned the project into will now be called "clonedir".
-
-The Wails CLI will now be at the very latest version.
-
-To update projects to use the latest version, update the project's `go.mod` and ensure the following line is at the bottom of the file:
-
-`replace github.com/wailsapp/wails/v2 => `
-
-Example:
-
-On Windows: `replace github.com/wailsapp/wails/v2 => C:\Users\leaan\Documents\wails-v2-beta\wails\v2`
-
-On 'nix: `replace github.com/wailsapp/wails/v2 => /home/me/projects/wails/v2`
-
-To revert back to a stable version, run:
-
-`go install github.com/wailsapp/wails/v2/cmd/wails@latest`
diff --git a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/testing.mdx b/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/testing.mdx
deleted file mode 100644
index e751dfc3e..000000000
--- a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/testing.mdx
+++ /dev/null
@@ -1,16 +0,0 @@
----
-sidebar_position: 35
----
-
-# Testing
-
-Testing is vitally important to ensure quality in the project. There are a couple of scenarios where testing can really help the project:
-
-- Testing if a bug is reproducible on your local system
-- Testing PRs to ensure that they work correctly
-
-If you chose to test if someone's bug report is reproducible on your local system, then feel free to add a comment on the ticket confirming this with the output of `wails doctor`.
-
-To test PRs, choose a PR to test and check if the PR description has the testing scenarios listed. If not, please ask the person who opened the PR to provide that list. Once you have determined a valid test scenario, please report your findings on the PR.
-
-If you ever need more clarity or help on testing, please ask a question in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion or on slack.
diff --git a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/ways-of-contributing.mdx b/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/ways-of-contributing.mdx
deleted file mode 100644
index 6b76d99d9..000000000
--- a/website/i18n/ja/docusaurus-plugin-content-docs/current/contributing/ways-of-contributing.mdx
+++ /dev/null
@@ -1,18 +0,0 @@
----
-sidebar_position: 1
----
-
-# Ways of contributing
-
-Wails is an open source, community driven project. We welcome anyone to join us in contributing to the project. This documentation is aimed at anyone wishing to get familiar with the project and the development processes.
-
-There are many ways to contribute to the project:
-
-- Developing new features
-- Fixing bugs
-- Testing
-- Documenting features
-- Writing tutorials / guides
-- Helping others on the issues + discussions boards
-
-Guides for these have been created in their own sections. Before getting started, please introduce yourself in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion.
diff --git a/website/i18n/ja/docusaurus-plugin-content-docs/version-v2.0.0-beta.38.json b/website/i18n/ja/docusaurus-plugin-content-docs/version-v2.0.0-beta.38.json
deleted file mode 100644
index c195ee101..000000000
--- a/website/i18n/ja/docusaurus-plugin-content-docs/version-v2.0.0-beta.38.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "version.label": {
- "message": "v2.0.0-beta.38",
- "description": "The label for version v2.0.0-beta.38"
- },
- "sidebar.tutorialSidebar.category.Getting Started": {
- "message": "Getting Started",
- "description": "The label for category Getting Started in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Reference": {
- "message": "Reference",
- "description": "The label for category Reference in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Runtime": {
- "message": "Runtime",
- "description": "The label for category Runtime in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Community": {
- "message": "Community",
- "description": "The label for category Community in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Showcase": {
- "message": "Showcase",
- "description": "The label for category Showcase in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Guides": {
- "message": "Guides",
- "description": "The label for category Guides in sidebar tutorialSidebar"
- }
-}
diff --git a/website/i18n/ja/docusaurus-plugin-content-docs/version-v2.0.0-beta.39.json b/website/i18n/ja/docusaurus-plugin-content-docs/version-v2.0.0-beta.39.json
deleted file mode 100644
index 50826a275..000000000
--- a/website/i18n/ja/docusaurus-plugin-content-docs/version-v2.0.0-beta.39.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "version.label": {
- "message": "v2.0.0-beta.39",
- "description": "The label for version v2.0.0-beta.39"
- },
- "sidebar.tutorialSidebar.category.Getting Started": {
- "message": "Getting Started",
- "description": "The label for category Getting Started in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Reference": {
- "message": "Reference",
- "description": "The label for category Reference in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Runtime": {
- "message": "Runtime",
- "description": "The label for category Runtime in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Community": {
- "message": "Community",
- "description": "The label for category Community in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Showcase": {
- "message": "Showcase",
- "description": "The label for category Showcase in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Guides": {
- "message": "Guides",
- "description": "The label for category Guides in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Tutorials": {
- "message": "Tutorials",
- "description": "The label for category Tutorials in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Contributing": {
- "message": "Contributing",
- "description": "The label for category Contributing in sidebar tutorialSidebar"
- }
-}
diff --git a/website/i18n/ja/docusaurus-plugin-content-pages/changelog.md b/website/i18n/ja/docusaurus-plugin-content-pages/changelog.mdx
similarity index 100%
rename from website/i18n/ja/docusaurus-plugin-content-pages/changelog.md
rename to website/i18n/ja/docusaurus-plugin-content-pages/changelog.mdx
diff --git a/website/i18n/ja/docusaurus-plugin-content-pages/community-guide.md b/website/i18n/ja/docusaurus-plugin-content-pages/community-guide.md
deleted file mode 100644
index 686c10393..000000000
--- a/website/i18n/ja/docusaurus-plugin-content-pages/community-guide.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Community Guide
-
-The number of Wails users is growing at an incredible rate, and if you're reading this, chances are you're ready to join. So... welcome!
diff --git a/website/i18n/ja/docusaurus-plugin-content-pages/faq.md b/website/i18n/ja/docusaurus-plugin-content-pages/faq.md
deleted file mode 100644
index 32cce9075..000000000
--- a/website/i18n/ja/docusaurus-plugin-content-pages/faq.md
+++ /dev/null
@@ -1 +0,0 @@
-# FAQ
\ No newline at end of file
diff --git a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/_category_.json b/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/_category_.json
deleted file mode 100644
index fad21931a..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/_category_.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "label": "Contributing",
- "position": 99
-}
diff --git a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/developing-new-features.mdx b/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/developing-new-features.mdx
deleted file mode 100644
index 57c5b101b..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/developing-new-features.mdx
+++ /dev/null
@@ -1,29 +0,0 @@
----
-sidebar_position: 20
----
-
-# Developing New Features
-
-We are always keen to add features to Wails and expand on what the project can do. The process for adding new features are as follows:
-
-- Pick an enhancement ticket with the "TODO" label. It's preferable to select one from the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) but the choice is yours.
-- Before developing, check that the ticket includes the following information:
-- The purpose of the enhancement
-- What is out of scope for the enhancement
-- What platforms the enhancement targets (most features should be cross-platform unless there's a very specific reason)
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket. Sometimes placeholder tickets are created and require more details
-- Comment on the ticket stating you wish to develop the feature
-- Clone the repository and create a branch with the format `feature/_`
-- New features often require documentation so please ensure you have also added or updated the documentation as part of the changes
-- Once the feature is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-enhancement requests are reviewed for good fit. Not all ideas will be selected so it's best to have discussion
-on the ticket first.
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-:::
diff --git a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/documenting.mdx b/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/documenting.mdx
deleted file mode 100644
index 06f33914b..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/documenting.mdx
+++ /dev/null
@@ -1,34 +0,0 @@
----
-sidebar_position: 40
----
-
-# Documenting
-
-This website is also the main documentation site for the project. Sometimes this gets out of date and needs some slight adjustments. Some of the documentation isn't written to the best standards either. Developing documentation is hard and so any contribution to this is greatly appreciated. Features without documentation are unfinished so to the project, it's _as important_ as the code.
-
-We generally do not create tickets for updating documentation so if there is text you think should be updated or rephrased then feel free to submit a PR for that. This site is in the main repository under the `website` directory. We use [Docusaurus](https://docusaurus.io/) to create the site so there is plenty of existing documentation and tutorials around to get started.
-
-To set up a local documentation development environment, do the following:
-
-- [Install npm](https://docs.npmjs.com/cli/v8/configuring-npm/install)
-- `cd website`
-- `npm install`
-- `npm run start`
-
-After it has all installed and is running, you should see the site at [`http://localhost:3000`](http://localhost:3000). Any changes made to the site text will be immediately reflected in the browser.
-
-## Versioning
-
-We employ a versioning system where we have the "latest" documentation AKA "Next Version" which has all the changes that have occurred since the last release. We also keep the last release documentation as well as the version before that.
-
-There isn't usually a reason to update released documentation so we don't generally update the documents in the `versioned_docs` or `versioned_sidebars` directories.
-
-The "next version" docs are mainly in `website/docs` with some "version independent" documents in `src/pages`. Any updates should be made in the `website/docs` directory.
-
-## Languages
-
-The default documents of the Wails project are English documents. We use the "crowdin" tool to translate documents in other languages and synchronize them to the website. You can [join our project](https://crowdin.com/project/wails) and submit your translations to make contributions.
-
-### Add new language
-
-If you want to add a new language to the documentation, please follow the prompts to [fill in and submit an Issue](https://github.com/wailsapp/wails/issues/new?assignees=&labels=documentation&template=documentation.yml). After being confirmed by the maintainer, we will add the language to the "crowdin" and you will then be able to submit your translation.
diff --git a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/fixing-bugs.mdx b/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/fixing-bugs.mdx
deleted file mode 100644
index 51bd90b74..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/fixing-bugs.mdx
+++ /dev/null
@@ -1,27 +0,0 @@
----
-sidebar_position: 30
----
-
-# Fixing Bugs
-
-The process for fixing bugs are as follows:
-
-- Check the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) and select a bug to fix
-- Before developing, check that the ticket includes the following information:
-- The scope of the issue including platforms affected
-- The steps to reproduce. Sometimes bugs are opened that are not Wails issues and the onus is on the reporter to prove that it is a Wails issue with a minimal reproducible example
-- The output of `wails doctor`
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket.
-- Comment on the ticket stating you wish to develop a fix
-- Clone the repository and create a branch with the format `bugfix/_`
-- Once the fix is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-bugfixes should be discussed as the approach may have unintended side effects.
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-:::
diff --git a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/helping-others.mdx b/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/helping-others.mdx
deleted file mode 100644
index 933c06b35..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/helping-others.mdx
+++ /dev/null
@@ -1,13 +0,0 @@
----
-sidebar_position: 50
----
-
-# Helping Others
-
-A great way to contribute to the project is to help others who are experiencing difficulty. This is normally reported as a ticket or a message on the Wails slack channel. Even just clarifying the issue can really help out. Sometimes, when an issue is discussed and gets resolved, we create a guide out of it to help others who face the same issues.
-
-To join the Wails slack channel, accept the invite [here](https://gophers.slack.com/join/shared_invite/zt-197vymgt3-sJt4oyakb6nqlVKjXTyeVw#/shared-invite/email) and join us on the channel by following [this link](https://gophers.slack.com/?redir=%2Fmessages%2FCJ4P9F7MZ%2F).
-
-:::note
-Work In Progress
-:::
diff --git a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/setting-up-a-dev-environment.mdx b/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/setting-up-a-dev-environment.mdx
deleted file mode 100644
index b933af9a6..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/setting-up-a-dev-environment.mdx
+++ /dev/null
@@ -1,30 +0,0 @@
----
-sidebar_position: 10
----
-
-# Setting up a Development Environment
-
-You can set up a development environment by doing the following:
-
-- Install the latest versions of Go and Git
-- `git clone https://github.com/wailsapp/wails`
-- `cd wails/v2/cmd/wails`
-- `go install`
-
-NOTE: The directory that you cloned the project into will now be called "clonedir".
-
-The Wails CLI will now be at the very latest version.
-
-To update projects to use the latest version, update the project's `go.mod` and ensure the following line is at the bottom of the file:
-
-`replace github.com/wailsapp/wails/v2 => `
-
-Example:
-
-On Windows: `replace github.com/wailsapp/wails/v2 => C:\Users\leaan\Documents\wails-v2-beta\wails\v2`
-
-On 'nix: `replace github.com/wailsapp/wails/v2 => /home/me/projects/wails/v2`
-
-To revert back to a stable version, run:
-
-`go install github.com/wailsapp/wails/v2/cmd/wails@latest`
diff --git a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/testing.mdx b/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/testing.mdx
deleted file mode 100644
index e751dfc3e..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/testing.mdx
+++ /dev/null
@@ -1,16 +0,0 @@
----
-sidebar_position: 35
----
-
-# Testing
-
-Testing is vitally important to ensure quality in the project. There are a couple of scenarios where testing can really help the project:
-
-- Testing if a bug is reproducible on your local system
-- Testing PRs to ensure that they work correctly
-
-If you chose to test if someone's bug report is reproducible on your local system, then feel free to add a comment on the ticket confirming this with the output of `wails doctor`.
-
-To test PRs, choose a PR to test and check if the PR description has the testing scenarios listed. If not, please ask the person who opened the PR to provide that list. Once you have determined a valid test scenario, please report your findings on the PR.
-
-If you ever need more clarity or help on testing, please ask a question in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion or on slack.
diff --git a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/ways-of-contributing.mdx b/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/ways-of-contributing.mdx
deleted file mode 100644
index 6b76d99d9..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-docs/current/contributing/ways-of-contributing.mdx
+++ /dev/null
@@ -1,18 +0,0 @@
----
-sidebar_position: 1
----
-
-# Ways of contributing
-
-Wails is an open source, community driven project. We welcome anyone to join us in contributing to the project. This documentation is aimed at anyone wishing to get familiar with the project and the development processes.
-
-There are many ways to contribute to the project:
-
-- Developing new features
-- Fixing bugs
-- Testing
-- Documenting features
-- Writing tutorials / guides
-- Helping others on the issues + discussions boards
-
-Guides for these have been created in their own sections. Before getting started, please introduce yourself in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion.
diff --git a/website/i18n/ko/docusaurus-plugin-content-docs/version-v2.0.0-beta.38.json b/website/i18n/ko/docusaurus-plugin-content-docs/version-v2.0.0-beta.38.json
deleted file mode 100644
index c195ee101..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-docs/version-v2.0.0-beta.38.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "version.label": {
- "message": "v2.0.0-beta.38",
- "description": "The label for version v2.0.0-beta.38"
- },
- "sidebar.tutorialSidebar.category.Getting Started": {
- "message": "Getting Started",
- "description": "The label for category Getting Started in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Reference": {
- "message": "Reference",
- "description": "The label for category Reference in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Runtime": {
- "message": "Runtime",
- "description": "The label for category Runtime in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Community": {
- "message": "Community",
- "description": "The label for category Community in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Showcase": {
- "message": "Showcase",
- "description": "The label for category Showcase in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Guides": {
- "message": "Guides",
- "description": "The label for category Guides in sidebar tutorialSidebar"
- }
-}
diff --git a/website/i18n/ko/docusaurus-plugin-content-docs/version-v2.0.0-beta.39.json b/website/i18n/ko/docusaurus-plugin-content-docs/version-v2.0.0-beta.39.json
deleted file mode 100644
index 50826a275..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-docs/version-v2.0.0-beta.39.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "version.label": {
- "message": "v2.0.0-beta.39",
- "description": "The label for version v2.0.0-beta.39"
- },
- "sidebar.tutorialSidebar.category.Getting Started": {
- "message": "Getting Started",
- "description": "The label for category Getting Started in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Reference": {
- "message": "Reference",
- "description": "The label for category Reference in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Runtime": {
- "message": "Runtime",
- "description": "The label for category Runtime in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Community": {
- "message": "Community",
- "description": "The label for category Community in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Showcase": {
- "message": "Showcase",
- "description": "The label for category Showcase in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Guides": {
- "message": "Guides",
- "description": "The label for category Guides in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Tutorials": {
- "message": "Tutorials",
- "description": "The label for category Tutorials in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Contributing": {
- "message": "Contributing",
- "description": "The label for category Contributing in sidebar tutorialSidebar"
- }
-}
diff --git a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/developing-new-features.mdx b/website/i18n/ko/docusaurus-plugin-content-pages/contributing/developing-new-features.mdx
deleted file mode 100644
index 57c5b101b..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/developing-new-features.mdx
+++ /dev/null
@@ -1,29 +0,0 @@
----
-sidebar_position: 20
----
-
-# Developing New Features
-
-We are always keen to add features to Wails and expand on what the project can do. The process for adding new features are as follows:
-
-- Pick an enhancement ticket with the "TODO" label. It's preferable to select one from the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) but the choice is yours.
-- Before developing, check that the ticket includes the following information:
-- The purpose of the enhancement
-- What is out of scope for the enhancement
-- What platforms the enhancement targets (most features should be cross-platform unless there's a very specific reason)
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket. Sometimes placeholder tickets are created and require more details
-- Comment on the ticket stating you wish to develop the feature
-- Clone the repository and create a branch with the format `feature/_`
-- New features often require documentation so please ensure you have also added or updated the documentation as part of the changes
-- Once the feature is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-enhancement requests are reviewed for good fit. Not all ideas will be selected so it's best to have discussion
-on the ticket first.
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-:::
diff --git a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/documenting.mdx b/website/i18n/ko/docusaurus-plugin-content-pages/contributing/documenting.mdx
deleted file mode 100644
index 06f33914b..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/documenting.mdx
+++ /dev/null
@@ -1,34 +0,0 @@
----
-sidebar_position: 40
----
-
-# Documenting
-
-This website is also the main documentation site for the project. Sometimes this gets out of date and needs some slight adjustments. Some of the documentation isn't written to the best standards either. Developing documentation is hard and so any contribution to this is greatly appreciated. Features without documentation are unfinished so to the project, it's _as important_ as the code.
-
-We generally do not create tickets for updating documentation so if there is text you think should be updated or rephrased then feel free to submit a PR for that. This site is in the main repository under the `website` directory. We use [Docusaurus](https://docusaurus.io/) to create the site so there is plenty of existing documentation and tutorials around to get started.
-
-To set up a local documentation development environment, do the following:
-
-- [Install npm](https://docs.npmjs.com/cli/v8/configuring-npm/install)
-- `cd website`
-- `npm install`
-- `npm run start`
-
-After it has all installed and is running, you should see the site at [`http://localhost:3000`](http://localhost:3000). Any changes made to the site text will be immediately reflected in the browser.
-
-## Versioning
-
-We employ a versioning system where we have the "latest" documentation AKA "Next Version" which has all the changes that have occurred since the last release. We also keep the last release documentation as well as the version before that.
-
-There isn't usually a reason to update released documentation so we don't generally update the documents in the `versioned_docs` or `versioned_sidebars` directories.
-
-The "next version" docs are mainly in `website/docs` with some "version independent" documents in `src/pages`. Any updates should be made in the `website/docs` directory.
-
-## Languages
-
-The default documents of the Wails project are English documents. We use the "crowdin" tool to translate documents in other languages and synchronize them to the website. You can [join our project](https://crowdin.com/project/wails) and submit your translations to make contributions.
-
-### Add new language
-
-If you want to add a new language to the documentation, please follow the prompts to [fill in and submit an Issue](https://github.com/wailsapp/wails/issues/new?assignees=&labels=documentation&template=documentation.yml). After being confirmed by the maintainer, we will add the language to the "crowdin" and you will then be able to submit your translation.
diff --git a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/fixing-bugs.mdx b/website/i18n/ko/docusaurus-plugin-content-pages/contributing/fixing-bugs.mdx
deleted file mode 100644
index 51bd90b74..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/fixing-bugs.mdx
+++ /dev/null
@@ -1,27 +0,0 @@
----
-sidebar_position: 30
----
-
-# Fixing Bugs
-
-The process for fixing bugs are as follows:
-
-- Check the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) and select a bug to fix
-- Before developing, check that the ticket includes the following information:
-- The scope of the issue including platforms affected
-- The steps to reproduce. Sometimes bugs are opened that are not Wails issues and the onus is on the reporter to prove that it is a Wails issue with a minimal reproducible example
-- The output of `wails doctor`
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket.
-- Comment on the ticket stating you wish to develop a fix
-- Clone the repository and create a branch with the format `bugfix/_`
-- Once the fix is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-bugfixes should be discussed as the approach may have unintended side effects.
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-:::
diff --git a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/helping-others.mdx b/website/i18n/ko/docusaurus-plugin-content-pages/contributing/helping-others.mdx
deleted file mode 100644
index 933c06b35..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/helping-others.mdx
+++ /dev/null
@@ -1,13 +0,0 @@
----
-sidebar_position: 50
----
-
-# Helping Others
-
-A great way to contribute to the project is to help others who are experiencing difficulty. This is normally reported as a ticket or a message on the Wails slack channel. Even just clarifying the issue can really help out. Sometimes, when an issue is discussed and gets resolved, we create a guide out of it to help others who face the same issues.
-
-To join the Wails slack channel, accept the invite [here](https://gophers.slack.com/join/shared_invite/zt-197vymgt3-sJt4oyakb6nqlVKjXTyeVw#/shared-invite/email) and join us on the channel by following [this link](https://gophers.slack.com/?redir=%2Fmessages%2FCJ4P9F7MZ%2F).
-
-:::note
-Work In Progress
-:::
diff --git a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/setting-up-a-dev-environment.mdx b/website/i18n/ko/docusaurus-plugin-content-pages/contributing/setting-up-a-dev-environment.mdx
deleted file mode 100644
index b933af9a6..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/setting-up-a-dev-environment.mdx
+++ /dev/null
@@ -1,30 +0,0 @@
----
-sidebar_position: 10
----
-
-# Setting up a Development Environment
-
-You can set up a development environment by doing the following:
-
-- Install the latest versions of Go and Git
-- `git clone https://github.com/wailsapp/wails`
-- `cd wails/v2/cmd/wails`
-- `go install`
-
-NOTE: The directory that you cloned the project into will now be called "clonedir".
-
-The Wails CLI will now be at the very latest version.
-
-To update projects to use the latest version, update the project's `go.mod` and ensure the following line is at the bottom of the file:
-
-`replace github.com/wailsapp/wails/v2 => `
-
-Example:
-
-On Windows: `replace github.com/wailsapp/wails/v2 => C:\Users\leaan\Documents\wails-v2-beta\wails\v2`
-
-On 'nix: `replace github.com/wailsapp/wails/v2 => /home/me/projects/wails/v2`
-
-To revert back to a stable version, run:
-
-`go install github.com/wailsapp/wails/v2/cmd/wails@latest`
diff --git a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/testing.mdx b/website/i18n/ko/docusaurus-plugin-content-pages/contributing/testing.mdx
deleted file mode 100644
index e751dfc3e..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/testing.mdx
+++ /dev/null
@@ -1,16 +0,0 @@
----
-sidebar_position: 35
----
-
-# Testing
-
-Testing is vitally important to ensure quality in the project. There are a couple of scenarios where testing can really help the project:
-
-- Testing if a bug is reproducible on your local system
-- Testing PRs to ensure that they work correctly
-
-If you chose to test if someone's bug report is reproducible on your local system, then feel free to add a comment on the ticket confirming this with the output of `wails doctor`.
-
-To test PRs, choose a PR to test and check if the PR description has the testing scenarios listed. If not, please ask the person who opened the PR to provide that list. Once you have determined a valid test scenario, please report your findings on the PR.
-
-If you ever need more clarity or help on testing, please ask a question in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion or on slack.
diff --git a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/ways-of-contributing.mdx b/website/i18n/ko/docusaurus-plugin-content-pages/contributing/ways-of-contributing.mdx
deleted file mode 100644
index 6b76d99d9..000000000
--- a/website/i18n/ko/docusaurus-plugin-content-pages/contributing/ways-of-contributing.mdx
+++ /dev/null
@@ -1,18 +0,0 @@
----
-sidebar_position: 1
----
-
-# Ways of contributing
-
-Wails is an open source, community driven project. We welcome anyone to join us in contributing to the project. This documentation is aimed at anyone wishing to get familiar with the project and the development processes.
-
-There are many ways to contribute to the project:
-
-- Developing new features
-- Fixing bugs
-- Testing
-- Documenting features
-- Writing tutorials / guides
-- Helping others on the issues + discussions boards
-
-Guides for these have been created in their own sections. Before getting started, please introduce yourself in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion.
diff --git a/website/i18n/ru/docusaurus-plugin-content-docs/current/community/showcase/emailit.mdx b/website/i18n/ru/docusaurus-plugin-content-docs/current/community/showcase/emailit.mdx
index e95f313d2..629b67be8 100644
--- a/website/i18n/ru/docusaurus-plugin-content-docs/current/community/showcase/emailit.mdx
+++ b/website/i18n/ru/docusaurus-plugin-content-docs/current/community/showcase/emailit.mdx
@@ -1,7 +1,7 @@
# EmailIt
- 
+ 
[EmailIt](https://github.com/raguay/EmailIt/) is a Wails 2 program that is a markdown based email sender only with nine notepads, scripts to manipulate the text, and templates. It also has a builtin [Node-Red](https://nodered.org/) server, scripts terminal, and the [ScriptBar](https://github.com/raguay/ScriptBarApp) program for displaying results from Node-Red or a script on your system. Documentation is very scarce, but the programs works. It’s built using Wails2 and Svelte, and the download is a universal macOS application.
diff --git a/website/i18n/ru/docusaurus-plugin-content-docs/current/community/showcase/modalfilemanager.mdx b/website/i18n/ru/docusaurus-plugin-content-docs/current/community/showcase/modalfilemanager.mdx
index 8d671a10c..ca0f4466a 100644
--- a/website/i18n/ru/docusaurus-plugin-content-docs/current/community/showcase/modalfilemanager.mdx
+++ b/website/i18n/ru/docusaurus-plugin-content-docs/current/community/showcase/modalfilemanager.mdx
@@ -1,7 +1,7 @@
# Modal File Manager
- 
+ 
[Modal File Manager](https://github.com/raguay/ModalFileManager) is a dual pane file manager using web technologies. My original design was based on NW.js and can be found [here](https://github.com/raguay/ModalFileManager-NWjs). This version uses the same Svelte based frontend code (but it has be greatly modified since the departure from NW.js), but the backend is a [Wails 2](https://wails.io/) implementation. By using this implementation, I no longer use command line `rm`, `cp`, etc. commands. It is fully coded using Go and runs much faster than the previous versions.
diff --git a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/_category_.json b/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/_category_.json
deleted file mode 100644
index fad21931a..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/_category_.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "label": "Contributing",
- "position": 99
-}
diff --git a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/developing-new-features.mdx b/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/developing-new-features.mdx
deleted file mode 100644
index 57c5b101b..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/developing-new-features.mdx
+++ /dev/null
@@ -1,29 +0,0 @@
----
-sidebar_position: 20
----
-
-# Developing New Features
-
-We are always keen to add features to Wails and expand on what the project can do. The process for adding new features are as follows:
-
-- Pick an enhancement ticket with the "TODO" label. It's preferable to select one from the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) but the choice is yours.
-- Before developing, check that the ticket includes the following information:
-- The purpose of the enhancement
-- What is out of scope for the enhancement
-- What platforms the enhancement targets (most features should be cross-platform unless there's a very specific reason)
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket. Sometimes placeholder tickets are created and require more details
-- Comment on the ticket stating you wish to develop the feature
-- Clone the repository and create a branch with the format `feature/_`
-- New features often require documentation so please ensure you have also added or updated the documentation as part of the changes
-- Once the feature is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-enhancement requests are reviewed for good fit. Not all ideas will be selected so it's best to have discussion
-on the ticket first.
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-:::
diff --git a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/documenting.mdx b/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/documenting.mdx
deleted file mode 100644
index 652f665ce..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/documenting.mdx
+++ /dev/null
@@ -1,34 +0,0 @@
----
-sidebar_position: 40
----
-
-# Documenting
-
-This website is also the main documentation site for the project. Sometimes this gets out of date and needs some slight adjustments. Some of the documentation isn't written to the best standards either. Developing documentation is hard and so any contribution to this is greatly appreciated. Features without documentation are unfinished so to the project, it's *as important* as the code.
-
-We generally do not create tickets for updating documentation so if there is text you think should be updated or rephrased then feel free to submit a PR for that. This site is in the main repository under the `website` directory. We use [Docusaurus](https://docusaurus.io/) to create the site so there is plenty of existing documentation and tutorials around to get started.
-
-To set up a local documentation development environment, do the following:
-
-- [Install npm](https://docs.npmjs.com/cli/v8/configuring-npm/install)
-- `cd website`
-- `npm install`
-- `npm run start`
-
-After it has all installed and is running, you should see the site at [`http://localhost:3000`](http://localhost:3000). Any changes made to the site text will be immediately reflected in the browser.
-
-## Versioning
-
-We employ a versioning system where we have the "latest" documentation AKA "Next Version" which has all the changes that have occurred since the last release. We also keep the last release documentation as well as the version before that.
-
-There isn't usually a reason to update released documentation so we don't generally update the documents in the `versioned_docs` or `versioned_sidebars` directories.
-
-The "next version" docs are mainly in `website/docs` with some "version independent" documents in `src/pages`. Any updates should be made in the `website/docs` directory.
-
-## Languages
-
-The default documents of the Wails project are English documents. We use the "crowdin" tool to translate documents in other languages and synchronize them to the website. You can [join our project](https://crowdin.com/project/wails) and submit your translations to make contributions.
-
-### Add new language
-
-If you want to add a new language to the documentation, please follow the prompts to [fill in and submit an Issue](https://github.com/wailsapp/wails/issues/new?assignees=&labels=documentation&template=documentation.yml). After being confirmed by the maintainer, we will add the language to the "crowdin" and you will then be able to submit your translation.
diff --git a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/fixing-bugs.mdx b/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/fixing-bugs.mdx
deleted file mode 100644
index 51bd90b74..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/fixing-bugs.mdx
+++ /dev/null
@@ -1,27 +0,0 @@
----
-sidebar_position: 30
----
-
-# Fixing Bugs
-
-The process for fixing bugs are as follows:
-
-- Check the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) and select a bug to fix
-- Before developing, check that the ticket includes the following information:
-- The scope of the issue including platforms affected
-- The steps to reproduce. Sometimes bugs are opened that are not Wails issues and the onus is on the reporter to prove that it is a Wails issue with a minimal reproducible example
-- The output of `wails doctor`
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket.
-- Comment on the ticket stating you wish to develop a fix
-- Clone the repository and create a branch with the format `bugfix/_`
-- Once the fix is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-bugfixes should be discussed as the approach may have unintended side effects.
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-:::
diff --git a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/helping-others.mdx b/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/helping-others.mdx
deleted file mode 100644
index 933c06b35..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/helping-others.mdx
+++ /dev/null
@@ -1,13 +0,0 @@
----
-sidebar_position: 50
----
-
-# Helping Others
-
-A great way to contribute to the project is to help others who are experiencing difficulty. This is normally reported as a ticket or a message on the Wails slack channel. Even just clarifying the issue can really help out. Sometimes, when an issue is discussed and gets resolved, we create a guide out of it to help others who face the same issues.
-
-To join the Wails slack channel, accept the invite [here](https://gophers.slack.com/join/shared_invite/zt-197vymgt3-sJt4oyakb6nqlVKjXTyeVw#/shared-invite/email) and join us on the channel by following [this link](https://gophers.slack.com/?redir=%2Fmessages%2FCJ4P9F7MZ%2F).
-
-:::note
-Work In Progress
-:::
diff --git a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/setting-up-a-dev-environment.mdx b/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/setting-up-a-dev-environment.mdx
deleted file mode 100644
index b933af9a6..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/setting-up-a-dev-environment.mdx
+++ /dev/null
@@ -1,30 +0,0 @@
----
-sidebar_position: 10
----
-
-# Setting up a Development Environment
-
-You can set up a development environment by doing the following:
-
-- Install the latest versions of Go and Git
-- `git clone https://github.com/wailsapp/wails`
-- `cd wails/v2/cmd/wails`
-- `go install`
-
-NOTE: The directory that you cloned the project into will now be called "clonedir".
-
-The Wails CLI will now be at the very latest version.
-
-To update projects to use the latest version, update the project's `go.mod` and ensure the following line is at the bottom of the file:
-
-`replace github.com/wailsapp/wails/v2 => `
-
-Example:
-
-On Windows: `replace github.com/wailsapp/wails/v2 => C:\Users\leaan\Documents\wails-v2-beta\wails\v2`
-
-On 'nix: `replace github.com/wailsapp/wails/v2 => /home/me/projects/wails/v2`
-
-To revert back to a stable version, run:
-
-`go install github.com/wailsapp/wails/v2/cmd/wails@latest`
diff --git a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/testing.mdx b/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/testing.mdx
deleted file mode 100644
index e751dfc3e..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/testing.mdx
+++ /dev/null
@@ -1,16 +0,0 @@
----
-sidebar_position: 35
----
-
-# Testing
-
-Testing is vitally important to ensure quality in the project. There are a couple of scenarios where testing can really help the project:
-
-- Testing if a bug is reproducible on your local system
-- Testing PRs to ensure that they work correctly
-
-If you chose to test if someone's bug report is reproducible on your local system, then feel free to add a comment on the ticket confirming this with the output of `wails doctor`.
-
-To test PRs, choose a PR to test and check if the PR description has the testing scenarios listed. If not, please ask the person who opened the PR to provide that list. Once you have determined a valid test scenario, please report your findings on the PR.
-
-If you ever need more clarity or help on testing, please ask a question in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion or on slack.
diff --git a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/ways-of-contributing.mdx b/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/ways-of-contributing.mdx
deleted file mode 100644
index 6b76d99d9..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-docs/current/contributing/ways-of-contributing.mdx
+++ /dev/null
@@ -1,18 +0,0 @@
----
-sidebar_position: 1
----
-
-# Ways of contributing
-
-Wails is an open source, community driven project. We welcome anyone to join us in contributing to the project. This documentation is aimed at anyone wishing to get familiar with the project and the development processes.
-
-There are many ways to contribute to the project:
-
-- Developing new features
-- Fixing bugs
-- Testing
-- Documenting features
-- Writing tutorials / guides
-- Helping others on the issues + discussions boards
-
-Guides for these have been created in their own sections. Before getting started, please introduce yourself in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion.
diff --git a/website/i18n/ru/docusaurus-plugin-content-docs/version-v2.0.0-beta.38.json b/website/i18n/ru/docusaurus-plugin-content-docs/version-v2.0.0-beta.38.json
deleted file mode 100644
index c195ee101..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-docs/version-v2.0.0-beta.38.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "version.label": {
- "message": "v2.0.0-beta.38",
- "description": "The label for version v2.0.0-beta.38"
- },
- "sidebar.tutorialSidebar.category.Getting Started": {
- "message": "Getting Started",
- "description": "The label for category Getting Started in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Reference": {
- "message": "Reference",
- "description": "The label for category Reference in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Runtime": {
- "message": "Runtime",
- "description": "The label for category Runtime in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Community": {
- "message": "Community",
- "description": "The label for category Community in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Showcase": {
- "message": "Showcase",
- "description": "The label for category Showcase in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Guides": {
- "message": "Guides",
- "description": "The label for category Guides in sidebar tutorialSidebar"
- }
-}
diff --git a/website/i18n/ru/docusaurus-plugin-content-docs/version-v2.0.0-beta.39.json b/website/i18n/ru/docusaurus-plugin-content-docs/version-v2.0.0-beta.39.json
deleted file mode 100644
index 50826a275..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-docs/version-v2.0.0-beta.39.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "version.label": {
- "message": "v2.0.0-beta.39",
- "description": "The label for version v2.0.0-beta.39"
- },
- "sidebar.tutorialSidebar.category.Getting Started": {
- "message": "Getting Started",
- "description": "The label for category Getting Started in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Reference": {
- "message": "Reference",
- "description": "The label for category Reference in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Runtime": {
- "message": "Runtime",
- "description": "The label for category Runtime in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Community": {
- "message": "Community",
- "description": "The label for category Community in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Showcase": {
- "message": "Showcase",
- "description": "The label for category Showcase in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Guides": {
- "message": "Guides",
- "description": "The label for category Guides in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Tutorials": {
- "message": "Tutorials",
- "description": "The label for category Tutorials in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Contributing": {
- "message": "Contributing",
- "description": "The label for category Contributing in sidebar tutorialSidebar"
- }
-}
diff --git a/website/i18n/ru/docusaurus-plugin-content-pages/changelog.md b/website/i18n/ru/docusaurus-plugin-content-pages/changelog.mdx
similarity index 100%
rename from website/i18n/ru/docusaurus-plugin-content-pages/changelog.md
rename to website/i18n/ru/docusaurus-plugin-content-pages/changelog.mdx
diff --git a/website/i18n/ru/docusaurus-plugin-content-pages/community-guide.md b/website/i18n/ru/docusaurus-plugin-content-pages/community-guide.md
deleted file mode 100644
index ac8c83d39..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-pages/community-guide.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Руководство сообщества
-
-Количество пользователей Wails растет невероятно быстро, и если вы читаете это, то у вас есть возможность вступить. Итак... добро пожаловать!
diff --git a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/developing-new-features.mdx b/website/i18n/ru/docusaurus-plugin-content-pages/contributing/developing-new-features.mdx
deleted file mode 100644
index 57c5b101b..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/developing-new-features.mdx
+++ /dev/null
@@ -1,29 +0,0 @@
----
-sidebar_position: 20
----
-
-# Developing New Features
-
-We are always keen to add features to Wails and expand on what the project can do. The process for adding new features are as follows:
-
-- Pick an enhancement ticket with the "TODO" label. It's preferable to select one from the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) but the choice is yours.
-- Before developing, check that the ticket includes the following information:
-- The purpose of the enhancement
-- What is out of scope for the enhancement
-- What platforms the enhancement targets (most features should be cross-platform unless there's a very specific reason)
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket. Sometimes placeholder tickets are created and require more details
-- Comment on the ticket stating you wish to develop the feature
-- Clone the repository and create a branch with the format `feature/_`
-- New features often require documentation so please ensure you have also added or updated the documentation as part of the changes
-- Once the feature is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-enhancement requests are reviewed for good fit. Not all ideas will be selected so it's best to have discussion
-on the ticket first.
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-:::
diff --git a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/documenting.mdx b/website/i18n/ru/docusaurus-plugin-content-pages/contributing/documenting.mdx
deleted file mode 100644
index 652f665ce..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/documenting.mdx
+++ /dev/null
@@ -1,34 +0,0 @@
----
-sidebar_position: 40
----
-
-# Documenting
-
-This website is also the main documentation site for the project. Sometimes this gets out of date and needs some slight adjustments. Some of the documentation isn't written to the best standards either. Developing documentation is hard and so any contribution to this is greatly appreciated. Features without documentation are unfinished so to the project, it's *as important* as the code.
-
-We generally do not create tickets for updating documentation so if there is text you think should be updated or rephrased then feel free to submit a PR for that. This site is in the main repository under the `website` directory. We use [Docusaurus](https://docusaurus.io/) to create the site so there is plenty of existing documentation and tutorials around to get started.
-
-To set up a local documentation development environment, do the following:
-
-- [Install npm](https://docs.npmjs.com/cli/v8/configuring-npm/install)
-- `cd website`
-- `npm install`
-- `npm run start`
-
-After it has all installed and is running, you should see the site at [`http://localhost:3000`](http://localhost:3000). Any changes made to the site text will be immediately reflected in the browser.
-
-## Versioning
-
-We employ a versioning system where we have the "latest" documentation AKA "Next Version" which has all the changes that have occurred since the last release. We also keep the last release documentation as well as the version before that.
-
-There isn't usually a reason to update released documentation so we don't generally update the documents in the `versioned_docs` or `versioned_sidebars` directories.
-
-The "next version" docs are mainly in `website/docs` with some "version independent" documents in `src/pages`. Any updates should be made in the `website/docs` directory.
-
-## Languages
-
-The default documents of the Wails project are English documents. We use the "crowdin" tool to translate documents in other languages and synchronize them to the website. You can [join our project](https://crowdin.com/project/wails) and submit your translations to make contributions.
-
-### Add new language
-
-If you want to add a new language to the documentation, please follow the prompts to [fill in and submit an Issue](https://github.com/wailsapp/wails/issues/new?assignees=&labels=documentation&template=documentation.yml). After being confirmed by the maintainer, we will add the language to the "crowdin" and you will then be able to submit your translation.
diff --git a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/fixing-bugs.mdx b/website/i18n/ru/docusaurus-plugin-content-pages/contributing/fixing-bugs.mdx
deleted file mode 100644
index 51bd90b74..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/fixing-bugs.mdx
+++ /dev/null
@@ -1,27 +0,0 @@
----
-sidebar_position: 30
----
-
-# Fixing Bugs
-
-The process for fixing bugs are as follows:
-
-- Check the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) and select a bug to fix
-- Before developing, check that the ticket includes the following information:
-- The scope of the issue including platforms affected
-- The steps to reproduce. Sometimes bugs are opened that are not Wails issues and the onus is on the reporter to prove that it is a Wails issue with a minimal reproducible example
-- The output of `wails doctor`
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket.
-- Comment on the ticket stating you wish to develop a fix
-- Clone the repository and create a branch with the format `bugfix/_`
-- Once the fix is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-bugfixes should be discussed as the approach may have unintended side effects.
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-:::
diff --git a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/helping-others.mdx b/website/i18n/ru/docusaurus-plugin-content-pages/contributing/helping-others.mdx
deleted file mode 100644
index 933c06b35..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/helping-others.mdx
+++ /dev/null
@@ -1,13 +0,0 @@
----
-sidebar_position: 50
----
-
-# Helping Others
-
-A great way to contribute to the project is to help others who are experiencing difficulty. This is normally reported as a ticket or a message on the Wails slack channel. Even just clarifying the issue can really help out. Sometimes, when an issue is discussed and gets resolved, we create a guide out of it to help others who face the same issues.
-
-To join the Wails slack channel, accept the invite [here](https://gophers.slack.com/join/shared_invite/zt-197vymgt3-sJt4oyakb6nqlVKjXTyeVw#/shared-invite/email) and join us on the channel by following [this link](https://gophers.slack.com/?redir=%2Fmessages%2FCJ4P9F7MZ%2F).
-
-:::note
-Work In Progress
-:::
diff --git a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/setting-up-a-dev-environment.mdx b/website/i18n/ru/docusaurus-plugin-content-pages/contributing/setting-up-a-dev-environment.mdx
deleted file mode 100644
index b933af9a6..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/setting-up-a-dev-environment.mdx
+++ /dev/null
@@ -1,30 +0,0 @@
----
-sidebar_position: 10
----
-
-# Setting up a Development Environment
-
-You can set up a development environment by doing the following:
-
-- Install the latest versions of Go and Git
-- `git clone https://github.com/wailsapp/wails`
-- `cd wails/v2/cmd/wails`
-- `go install`
-
-NOTE: The directory that you cloned the project into will now be called "clonedir".
-
-The Wails CLI will now be at the very latest version.
-
-To update projects to use the latest version, update the project's `go.mod` and ensure the following line is at the bottom of the file:
-
-`replace github.com/wailsapp/wails/v2 => `
-
-Example:
-
-On Windows: `replace github.com/wailsapp/wails/v2 => C:\Users\leaan\Documents\wails-v2-beta\wails\v2`
-
-On 'nix: `replace github.com/wailsapp/wails/v2 => /home/me/projects/wails/v2`
-
-To revert back to a stable version, run:
-
-`go install github.com/wailsapp/wails/v2/cmd/wails@latest`
diff --git a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/testing.mdx b/website/i18n/ru/docusaurus-plugin-content-pages/contributing/testing.mdx
deleted file mode 100644
index e751dfc3e..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/testing.mdx
+++ /dev/null
@@ -1,16 +0,0 @@
----
-sidebar_position: 35
----
-
-# Testing
-
-Testing is vitally important to ensure quality in the project. There are a couple of scenarios where testing can really help the project:
-
-- Testing if a bug is reproducible on your local system
-- Testing PRs to ensure that they work correctly
-
-If you chose to test if someone's bug report is reproducible on your local system, then feel free to add a comment on the ticket confirming this with the output of `wails doctor`.
-
-To test PRs, choose a PR to test and check if the PR description has the testing scenarios listed. If not, please ask the person who opened the PR to provide that list. Once you have determined a valid test scenario, please report your findings on the PR.
-
-If you ever need more clarity or help on testing, please ask a question in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion or on slack.
diff --git a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/ways-of-contributing.mdx b/website/i18n/ru/docusaurus-plugin-content-pages/contributing/ways-of-contributing.mdx
deleted file mode 100644
index 6b76d99d9..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-pages/contributing/ways-of-contributing.mdx
+++ /dev/null
@@ -1,18 +0,0 @@
----
-sidebar_position: 1
----
-
-# Ways of contributing
-
-Wails is an open source, community driven project. We welcome anyone to join us in contributing to the project. This documentation is aimed at anyone wishing to get familiar with the project and the development processes.
-
-There are many ways to contribute to the project:
-
-- Developing new features
-- Fixing bugs
-- Testing
-- Documenting features
-- Writing tutorials / guides
-- Helping others on the issues + discussions boards
-
-Guides for these have been created in their own sections. Before getting started, please introduce yourself in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion.
diff --git a/website/i18n/ru/docusaurus-plugin-content-pages/faq.md b/website/i18n/ru/docusaurus-plugin-content-pages/faq.md
deleted file mode 100644
index b8b018eb1..000000000
--- a/website/i18n/ru/docusaurus-plugin-content-pages/faq.md
+++ /dev/null
@@ -1 +0,0 @@
-# ЧаВо
\ No newline at end of file
diff --git a/website/i18n/zh-Hans/code.json b/website/i18n/zh-Hans/code.json
index ecb5f0e63..cc56b491b 100644
--- a/website/i18n/zh-Hans/code.json
+++ b/website/i18n/zh-Hans/code.json
@@ -301,115 +301,115 @@
"description": "The title attribute for toggle word wrapping button of code block lines"
},
"theme.admonition.note": {
- "message": "note",
+ "message": "备注",
"description": "The default label used for the Note admonition (:::note)"
},
"theme.admonition.tip": {
- "message": "tip",
+ "message": "提示",
"description": "The default label used for the Tip admonition (:::tip)"
},
"theme.admonition.danger": {
- "message": "danger",
+ "message": "危险",
"description": "The default label used for the Danger admonition (:::danger)"
},
"theme.admonition.info": {
- "message": "info",
+ "message": "信息",
"description": "The default label used for the Info admonition (:::info)"
},
"theme.admonition.caution": {
- "message": "caution",
+ "message": "警告",
"description": "The default label used for the Caution admonition (:::caution)"
},
"theme.SearchModal.searchBox.resetButtonTitle": {
- "message": "Clear the query",
+ "message": "清除查询",
"description": "The label and ARIA label for search box reset button"
},
"theme.SearchModal.searchBox.cancelButtonText": {
- "message": "Cancel",
+ "message": "取消",
"description": "The label and ARIA label for search box cancel button"
},
"theme.SearchModal.startScreen.recentSearchesTitle": {
- "message": "Recent",
+ "message": "最近搜索",
"description": "The title for recent searches"
},
"theme.SearchModal.startScreen.noRecentSearchesText": {
- "message": "No recent searches",
+ "message": "没有最近搜索",
"description": "The text when no recent searches"
},
"theme.SearchModal.startScreen.saveRecentSearchButtonTitle": {
- "message": "Save this search",
+ "message": "保存这个搜索",
"description": "The label for save recent search button"
},
"theme.SearchModal.startScreen.removeRecentSearchButtonTitle": {
- "message": "Remove this search from history",
+ "message": "从历史记录中删除这个搜索",
"description": "The label for remove recent search button"
},
"theme.SearchModal.startScreen.favoriteSearchesTitle": {
- "message": "Favorite",
+ "message": "收藏",
"description": "The title for favorite searches"
},
"theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": {
- "message": "Remove this search from favorites",
+ "message": "从收藏列表中删除这个搜索",
"description": "The label for remove favorite search button"
},
"theme.SearchModal.errorScreen.titleText": {
- "message": "Unable to fetch results",
+ "message": "无法获取结果",
"description": "The title for error screen of search modal"
},
"theme.SearchModal.errorScreen.helpText": {
- "message": "You might want to check your network connection.",
+ "message": "你可能需要检查网络连接。",
"description": "The help text for error screen of search modal"
},
"theme.SearchModal.footer.selectText": {
- "message": "to select",
+ "message": "选中",
"description": "The explanatory text of the action for the enter key"
},
"theme.SearchModal.footer.selectKeyAriaLabel": {
- "message": "Enter key",
+ "message": "Enter 键",
"description": "The ARIA label for the Enter key button that makes the selection"
},
"theme.SearchModal.footer.navigateText": {
- "message": "to navigate",
+ "message": "导航",
"description": "The explanatory text of the action for the Arrow up and Arrow down key"
},
"theme.SearchModal.footer.navigateUpKeyAriaLabel": {
- "message": "Arrow up",
+ "message": "向上键",
"description": "The ARIA label for the Arrow up key button that makes the navigation"
},
"theme.SearchModal.footer.navigateDownKeyAriaLabel": {
- "message": "Arrow down",
+ "message": "向下键",
"description": "The ARIA label for the Arrow down key button that makes the navigation"
},
"theme.SearchModal.footer.closeText": {
- "message": "to close",
+ "message": "关闭",
"description": "The explanatory text of the action for Escape key"
},
"theme.SearchModal.footer.closeKeyAriaLabel": {
- "message": "Escape key",
+ "message": "Esc 键",
"description": "The ARIA label for the Escape key button that close the modal"
},
"theme.SearchModal.footer.searchByText": {
- "message": "Search by",
+ "message": "搜索提供",
"description": "The text explain that the search is making by Algolia"
},
"theme.SearchModal.noResultsScreen.noResultsText": {
- "message": "No results for",
+ "message": "没有结果:",
"description": "The text explains that there are no results for the following search"
},
"theme.SearchModal.noResultsScreen.suggestedQueryText": {
- "message": "Try searching for",
+ "message": "试试搜索",
"description": "The text for the suggested query when no results are found for the following search"
},
"theme.SearchModal.noResultsScreen.reportMissingResultsText": {
- "message": "Believe this query should return results?",
+ "message": "认为这个查询应该有结果?",
"description": "The text for the question where the user thinks there are missing results"
},
"theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": {
- "message": "Let us know.",
+ "message": "请告知我们。",
"description": "The text for the link to report missing results"
},
"theme.SearchModal.placeholder": {
- "message": "Search docs",
+ "message": "搜索文档",
"description": "The placeholder of the input of the DocSearch pop-up modal"
}
}
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/community/showcase/emailit.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/community/showcase/emailit.mdx
index e95f313d2..629b67be8 100644
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/community/showcase/emailit.mdx
+++ b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/community/showcase/emailit.mdx
@@ -1,7 +1,7 @@
# EmailIt
- 
+ 
[EmailIt](https://github.com/raguay/EmailIt/) is a Wails 2 program that is a markdown based email sender only with nine notepads, scripts to manipulate the text, and templates. It also has a builtin [Node-Red](https://nodered.org/) server, scripts terminal, and the [ScriptBar](https://github.com/raguay/ScriptBarApp) program for displaying results from Node-Red or a script on your system. Documentation is very scarce, but the programs works. It’s built using Wails2 and Svelte, and the download is a universal macOS application.
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/community/showcase/modalfilemanager.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/community/showcase/modalfilemanager.mdx
index 8d671a10c..ca0f4466a 100644
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/community/showcase/modalfilemanager.mdx
+++ b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/community/showcase/modalfilemanager.mdx
@@ -1,7 +1,7 @@
# Modal File Manager
- 
+ 
[Modal File Manager](https://github.com/raguay/ModalFileManager) is a dual pane file manager using web technologies. My original design was based on NW.js and can be found [here](https://github.com/raguay/ModalFileManager-NWjs). This version uses the same Svelte based frontend code (but it has be greatly modified since the departure from NW.js), but the backend is a [Wails 2](https://wails.io/) implementation. By using this implementation, I no longer use command line `rm`, `cp`, etc. commands. It is fully coded using Go and runs much faster than the previous versions.
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/_category_.json b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/_category_.json
deleted file mode 100644
index fad21931a..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/_category_.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "label": "Contributing",
- "position": 99
-}
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/developing-new-features.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/developing-new-features.mdx
deleted file mode 100644
index 9fc9025bd..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/developing-new-features.mdx
+++ /dev/null
@@ -1,34 +0,0 @@
----
-sidebar_position: 20
----
-
-# 开发新功能
-
-We are always keen to add features to Wails and expand on what the project can do. The process for adding new features are as follows: The process for adding new features are as follows: We are always keen to add features to Wails and expand on what the project can do. The process for adding new features are as follows: The process for adding new features are as follows: The process for adding new features are as follows:
-
-- Pick an enhancement ticket with the "TODO" label. Pick an enhancement ticket with the "TODO" label. Pick an enhancement ticket with the "TODO" label. It's preferable to select one from the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) but the choice is yours.
-- Before developing, check that the ticket includes the following information:
-- The purpose of the enhancement
-- What is out of scope for the enhancement
-- What platforms the enhancement targets (most features should be cross-platform unless there's a very specific reason)
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket. Sometimes placeholder tickets are created and require more details Sometimes placeholder tickets are created and require more details Sometimes placeholder tickets are created and require more details
-- Comment on the ticket stating you wish to develop the feature
-- Clone the repository and create a branch with the format `feature/_`
-- New features often require documentation so please ensure you have also added or updated the documentation as part of the changes
-- Once the feature is ready for testing, create a draft PR. Once the feature is ready for testing, create a draft PR. Once the feature is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested. Once the feature is ready for testing, create a draft PR. Once the feature is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested. Once the feature is ready for testing, create a draft PR. Once the feature is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-enhancement requests are reviewed for good fit. Not all ideas will be selected so it's best to have discussion
-on the ticket first.
-::: Not all ideas will be selected so it's best to have discussion
-on the ticket first.
-::: Not all ideas will be selected so it's best to have discussion
-on the ticket first.
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-::: :::
-:::
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/documenting.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/documenting.mdx
deleted file mode 100644
index 84e472903..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/documenting.mdx
+++ /dev/null
@@ -1,34 +0,0 @@
----
-sidebar_position: 40
----
-
-# 文档
-
-This website is also the main documentation site for the project. Sometimes this gets out of date and needs some slight adjustments. Some of the documentation isn't written to the best standards either. Developing documentation is hard and so any contribution to this is greatly appreciated. Features without documentation are unfinished so to the project, it's _as important_ as the code.
-
-We generally do not create tickets for updating documentation so if there is text you think should be updated or rephrased then feel free to submit a PR for that. This site is in the main repository under the `website` directory. We use [Docusaurus](https://docusaurus.io/) to create the site so there is plenty of existing documentation and tutorials around to get started. This site is in the main repository under the `website` directory. We use [Docusaurus](https://docusaurus.io/) to create the site so there is plenty of existing documentation and tutorials around to get started. This site is in the main repository under the `website` directory. We use [Docusaurus](https://docusaurus.io/) to create the site so there is plenty of existing documentation and tutorials around to get started.
-
-To set up a local documentation development environment, do the following:
-
-- [Install npm](https://docs.npmjs.com/cli/v8/configuring-npm/install)
-- `cd website`
-- `npm install`
-- `npm run start`
-
-After it has all installed and is running, you should see the site at [`http://localhost:3000`](http://localhost:3000). Any changes made to the site text will be immediately reflected in the browser. Any changes made to the site text will be immediately reflected in the browser. Any changes made to the site text will be immediately reflected in the browser.
-
-## Versioning
-
-We employ a versioning system where we have the "latest" documentation AKA "Next Version" which has all the changes that have occurred since the last release. We also keep the last release documentation as well as the version before that. We also keep the last release documentation as well as the version before that. We also keep the last release documentation as well as the version before that.
-
-There isn't usually a reason to update released documentation so we don't generally update the documents in the `versioned_docs` or `versioned_sidebars` directories.
-
-The "next version" docs are mainly in `website/docs` with some "version independent" documents in `src/pages`. Any updates should be made in the `website/docs` directory. Any updates should be made in the `website/docs` directory. Any updates should be made in the `website/docs` directory.
-
-## Languages
-
-The default documents of the Wails project are English documents. We use the "crowdin" tool to translate documents in other languages and synchronize them to the website. You can [join our project](https://crowdin.com/project/wails) and submit your translations to make contributions.
-
-### Add new language
-
-If you want to add a new language to the documentation, please follow the prompts to [fill in and submit an Issue](https://github.com/wailsapp/wails/issues/new?assignees=&labels=documentation&template=documentation.yml). After being confirmed by the maintainer, we will add the language to the "crowdin" and you will then be able to submit your translation.
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/fixing-bugs.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/fixing-bugs.mdx
deleted file mode 100644
index 01eceeccd..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/fixing-bugs.mdx
+++ /dev/null
@@ -1,29 +0,0 @@
----
-sidebar_position: 30
----
-
-# 修复漏洞
-
-The process for fixing bugs are as follows:
-
-- Check the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) and select a bug to fix
-- Before developing, check that the ticket includes the following information:
-- The scope of the issue including platforms affected
-- The steps to reproduce. The steps to reproduce. The steps to reproduce. Sometimes bugs are opened that are not Wails issues and the onus is on the reporter to prove that it is a Wails issue with a minimal reproducible example
-- The output of `wails doctor`
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket.
-- Comment on the ticket stating you wish to develop a fix
-- Clone the repository and create a branch with the format `bugfix/_`
-- Once the fix is ready for testing, create a draft PR. Once the fix is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested. Once the fix is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-bugfixes should be discussed as the approach may have unintended side effects.
-::: :::
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-::: :::
-:::
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/helping-others.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/helping-others.mdx
deleted file mode 100644
index 83671d83e..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/helping-others.mdx
+++ /dev/null
@@ -1,13 +0,0 @@
----
-sidebar_position: 50
----
-
-# 帮助其他人
-
-A great way to contribute to the project is to help others who are experiencing difficulty. This is normally reported as a ticket or a message on the Wails slack channel. Even just clarifying the issue can really help out. Sometimes, when an issue is discussed and gets resolved, we create a guide out of it to help others who face the same issues.
-
-To join the Wails slack channel, accept the invite [here](https://gophers.slack.com/join/shared_invite/zt-197vymgt3-sJt4oyakb6nqlVKjXTyeVw#/shared-invite/email) and join us on the channel by following [this link](https://gophers.slack.com/?redir=%2Fmessages%2FCJ4P9F7MZ%2F).
-
-:::note
-Work In Progress
-:::
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/setting-up-a-dev-environment.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/setting-up-a-dev-environment.mdx
deleted file mode 100644
index 1133e275d..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/setting-up-a-dev-environment.mdx
+++ /dev/null
@@ -1,30 +0,0 @@
----
-sidebar_position: 10
----
-
-# 设置开发环境
-
-You can set up a development environment by doing the following:
-
-- Install the latest versions of Go and Git
-- `git clone https://github.com/wailsapp/wails`
-- `cd wails/v2/cmd/wails`
-- `go install`
-
-NOTE: The directory that you cloned the project into will now be called "clonedir".
-
-The Wails CLI will now be at the very latest version.
-
-To update projects to use the latest version, update the project's `go.mod` and ensure the following line is at the bottom of the file:
-
-`replace github.com/wailsapp/wails/v2 => `
-
-Example:
-
-On Windows: `replace github.com/wailsapp/wails/v2 => C:\Users\leaan\Documents\wails-v2-beta\wails\v2`
-
-On 'nix: `replace github.com/wailsapp/wails/v2 => /home/me/projects/wails/v2`
-
-To revert back to a stable version, run:
-
-`go install github.com/wailsapp/wails/v2/cmd/wails@latest`
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/testing.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/testing.mdx
deleted file mode 100644
index 5fcd55205..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/testing.mdx
+++ /dev/null
@@ -1,16 +0,0 @@
----
-sidebar_position: 35
----
-
-# 测试
-
-Testing is vitally important to ensure quality in the project. Testing is vitally important to ensure quality in the project. There are a couple of scenarios where testing can really help the project: Testing is vitally important to ensure quality in the project. There are a couple of scenarios where testing can really help the project:
-
-- Testing if a bug is reproducible on your local system
-- Testing PRs to ensure that they work correctly
-
-If you chose to test if someone's bug report is reproducible on your local system, then feel free to add a comment on the ticket confirming this with the output of `wails doctor`.
-
-To test PRs, choose a PR to test and check if the PR description has the testing scenarios listed. If not, please ask the person who opened the PR to provide that list. Once you have determined a valid test scenario, please report your findings on the PR. If not, please ask the person who opened the PR to provide that list. Once you have determined a valid test scenario, please report your findings on the PR. If not, please ask the person who opened the PR to provide that list. Once you have determined a valid test scenario, please report your findings on the PR.
-
-If you ever need more clarity or help on testing, please ask a question in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion or on slack.
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/ways-of-contributing.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/ways-of-contributing.mdx
deleted file mode 100644
index 3bbe9a889..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing/ways-of-contributing.mdx
+++ /dev/null
@@ -1,18 +0,0 @@
----
-sidebar_position: 1
----
-
-# 贡献方式
-
-Wails is an open source, community driven project. We welcome anyone to join us in contributing to the project. This documentation is aimed at anyone wishing to get familiar with the project and the development processes. We welcome anyone to join us in contributing to the project. This documentation is aimed at anyone wishing to get familiar with the project and the development processes.
-
-There are many ways to contribute to the project:
-
-- Developing new features
-- Fixing bugs
-- Testing
-- Documenting features
-- Writing tutorials / guides
-- Helping others on the issues + discussions boards
-
-Guides for these have been created in their own sections. Guides for these have been created in their own sections. Guides for these have been created in their own sections. Before getting started, please introduce yourself in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion.
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/guides/troubleshooting.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/guides/troubleshooting.mdx
index 2ff20041c..3596e3ffd 100644
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/guides/troubleshooting.mdx
+++ b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/guides/troubleshooting.mdx
@@ -14,6 +14,7 @@ If your system is reporting that the `wails` command is missing, make sure you h
//go:embed frontend/dist
var assets embed.FS
```
+
如果您构建的应用程序在 finder 中如下所示:
### Mac
@@ -35,7 +36,7 @@ Reference: https://github.com/wailsapp/wails/issues/1504#issuecomment-1174317433
如果您有使用可变参数定义的后端方法,例如:
-
+
您的应用程序的 `info.plist` 可能无效。 更新 `build/.app/Contents/info.plist` 文件并检查数据是否有效,例如二进制文件名称是否正确。 要保留更改,请将文件复制回 `build/darwin` 目录。
@@ -43,12 +44,15 @@ Reference: https://github.com/wailsapp/wails/issues/1504#issuecomment-1174317433
## 尝试安装 Wails 时遇到代理错误
归功于:https://github.com/wailsapp/wails/issues/1186
+
```go
func (a *App) TestFunc(msg string, args ...interface{}) error {
// Code
}
```
+
如果您遇到这样的错误:
+
```js
var msg = "Hello ";
var args = ["Go", "JS"];
@@ -61,7 +65,9 @@ window.go.main.App.TestFunc(msg, args)
//handle error
});
```
+
解决办法:
+
```js
var msg = "Hello: ";
var args = ["Go", "JS"];
@@ -73,19 +79,24 @@ window.go.main.App.TestFunc(msg, ...args)
//handle error
});
```
+
来源:https://github.com/wailsapp/wails/issues/1233
## I''m having getting proxy errors when trying to install Wails
If you are getting errors like this:
+
```
"https://proxy.golang.org/github.com/wailsapp/wails/cmd/wails/@v/list": dial tcp 172.217.163.49:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
```
+
这可能是因为官方 Go Proxy 被阻止(中国用户反馈了这一点)。 解决方案是手动设置代理,例如:
+
```
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct
```
+
Source: https://github.com/wailsapp/wails/issues/1233
## The generated Typescript doesn''t have the correct types
@@ -98,9 +109,9 @@ If you navigate away from `index.html` to a new html file, the context will be l
```html
-
-
+
+
```
-Source: https://github.com/wailsapp/wails/discussions/1512
\ No newline at end of file
+Source: https://github.com/wailsapp/wails/discussions/1512
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/version-v2.0.0-beta.38.json b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/version-v2.0.0-beta.38.json
deleted file mode 100644
index c195ee101..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/version-v2.0.0-beta.38.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "version.label": {
- "message": "v2.0.0-beta.38",
- "description": "The label for version v2.0.0-beta.38"
- },
- "sidebar.tutorialSidebar.category.Getting Started": {
- "message": "Getting Started",
- "description": "The label for category Getting Started in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Reference": {
- "message": "Reference",
- "description": "The label for category Reference in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Runtime": {
- "message": "Runtime",
- "description": "The label for category Runtime in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Community": {
- "message": "Community",
- "description": "The label for category Community in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Showcase": {
- "message": "Showcase",
- "description": "The label for category Showcase in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Guides": {
- "message": "Guides",
- "description": "The label for category Guides in sidebar tutorialSidebar"
- }
-}
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/version-v2.0.0-beta.39.json b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/version-v2.0.0-beta.39.json
deleted file mode 100644
index 50826a275..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/version-v2.0.0-beta.39.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "version.label": {
- "message": "v2.0.0-beta.39",
- "description": "The label for version v2.0.0-beta.39"
- },
- "sidebar.tutorialSidebar.category.Getting Started": {
- "message": "Getting Started",
- "description": "The label for category Getting Started in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Reference": {
- "message": "Reference",
- "description": "The label for category Reference in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Runtime": {
- "message": "Runtime",
- "description": "The label for category Runtime in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Community": {
- "message": "Community",
- "description": "The label for category Community in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Showcase": {
- "message": "Showcase",
- "description": "The label for category Showcase in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Guides": {
- "message": "Guides",
- "description": "The label for category Guides in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Tutorials": {
- "message": "Tutorials",
- "description": "The label for category Tutorials in sidebar tutorialSidebar"
- },
- "sidebar.tutorialSidebar.category.Contributing": {
- "message": "Contributing",
- "description": "The label for category Contributing in sidebar tutorialSidebar"
- }
-}
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/version-v2.0.0-beta.43.json b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/version-v2.0.0-beta.43.json
index 375e7f9ef..0e4bd205a 100644
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/version-v2.0.0-beta.43.json
+++ b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/version-v2.0.0-beta.43.json
@@ -4,35 +4,35 @@
"description": "The label for version v2.0.0-beta.43"
},
"sidebar.tutorialSidebar.category.Getting Started": {
- "message": "Getting Started",
+ "message": "快速入门",
"description": "The label for category Getting Started in sidebar tutorialSidebar"
},
"sidebar.tutorialSidebar.category.Reference": {
- "message": "Reference",
+ "message": "参考",
"description": "The label for category Reference in sidebar tutorialSidebar"
},
"sidebar.tutorialSidebar.category.Runtime": {
- "message": "Runtime",
+ "message": "运行时",
"description": "The label for category Runtime in sidebar tutorialSidebar"
},
"sidebar.tutorialSidebar.category.Community": {
- "message": "Community",
+ "message": "社区",
"description": "The label for category Community in sidebar tutorialSidebar"
},
"sidebar.tutorialSidebar.category.Showcase": {
- "message": "Showcase",
+ "message": "案例展示",
"description": "The label for category Showcase in sidebar tutorialSidebar"
},
"sidebar.tutorialSidebar.category.Guides": {
- "message": "Guides",
+ "message": "指南",
"description": "The label for category Guides in sidebar tutorialSidebar"
},
"sidebar.tutorialSidebar.category.Tutorials": {
- "message": "Tutorials",
+ "message": "教程",
"description": "The label for category Tutorials in sidebar tutorialSidebar"
},
"sidebar.tutorialSidebar.category.Contributing": {
- "message": "Contributing",
+ "message": "参与贡献",
"description": "The label for category Contributing in sidebar tutorialSidebar"
}
}
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/changelog.md b/website/i18n/zh-Hans/docusaurus-plugin-content-pages/changelog.mdx
similarity index 100%
rename from website/i18n/zh-Hans/docusaurus-plugin-content-pages/changelog.md
rename to website/i18n/zh-Hans/docusaurus-plugin-content-pages/changelog.mdx
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/community-guide.md b/website/i18n/zh-Hans/docusaurus-plugin-content-pages/community-guide.md
deleted file mode 100644
index 0018a4632..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/community-guide.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# 社区指南
-
-Wails 用户量正在以惊人的速度增长,如果您正在阅读本文,那么您很有可能已经准备好加入它。 那么……欢迎加入!
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/developing-new-features.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/developing-new-features.mdx
deleted file mode 100644
index 9fc9025bd..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/developing-new-features.mdx
+++ /dev/null
@@ -1,34 +0,0 @@
----
-sidebar_position: 20
----
-
-# 开发新功能
-
-We are always keen to add features to Wails and expand on what the project can do. The process for adding new features are as follows: The process for adding new features are as follows: We are always keen to add features to Wails and expand on what the project can do. The process for adding new features are as follows: The process for adding new features are as follows: The process for adding new features are as follows:
-
-- Pick an enhancement ticket with the "TODO" label. Pick an enhancement ticket with the "TODO" label. Pick an enhancement ticket with the "TODO" label. It's preferable to select one from the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) but the choice is yours.
-- Before developing, check that the ticket includes the following information:
-- The purpose of the enhancement
-- What is out of scope for the enhancement
-- What platforms the enhancement targets (most features should be cross-platform unless there's a very specific reason)
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket. Sometimes placeholder tickets are created and require more details Sometimes placeholder tickets are created and require more details Sometimes placeholder tickets are created and require more details
-- Comment on the ticket stating you wish to develop the feature
-- Clone the repository and create a branch with the format `feature/_`
-- New features often require documentation so please ensure you have also added or updated the documentation as part of the changes
-- Once the feature is ready for testing, create a draft PR. Once the feature is ready for testing, create a draft PR. Once the feature is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested. Once the feature is ready for testing, create a draft PR. Once the feature is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested. Once the feature is ready for testing, create a draft PR. Once the feature is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-enhancement requests are reviewed for good fit. Not all ideas will be selected so it's best to have discussion
-on the ticket first.
-::: Not all ideas will be selected so it's best to have discussion
-on the ticket first.
-::: Not all ideas will be selected so it's best to have discussion
-on the ticket first.
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-::: :::
-:::
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/documenting.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/documenting.mdx
deleted file mode 100644
index 84e472903..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/documenting.mdx
+++ /dev/null
@@ -1,34 +0,0 @@
----
-sidebar_position: 40
----
-
-# 文档
-
-This website is also the main documentation site for the project. Sometimes this gets out of date and needs some slight adjustments. Some of the documentation isn't written to the best standards either. Developing documentation is hard and so any contribution to this is greatly appreciated. Features without documentation are unfinished so to the project, it's _as important_ as the code.
-
-We generally do not create tickets for updating documentation so if there is text you think should be updated or rephrased then feel free to submit a PR for that. This site is in the main repository under the `website` directory. We use [Docusaurus](https://docusaurus.io/) to create the site so there is plenty of existing documentation and tutorials around to get started. This site is in the main repository under the `website` directory. We use [Docusaurus](https://docusaurus.io/) to create the site so there is plenty of existing documentation and tutorials around to get started. This site is in the main repository under the `website` directory. We use [Docusaurus](https://docusaurus.io/) to create the site so there is plenty of existing documentation and tutorials around to get started.
-
-To set up a local documentation development environment, do the following:
-
-- [Install npm](https://docs.npmjs.com/cli/v8/configuring-npm/install)
-- `cd website`
-- `npm install`
-- `npm run start`
-
-After it has all installed and is running, you should see the site at [`http://localhost:3000`](http://localhost:3000). Any changes made to the site text will be immediately reflected in the browser. Any changes made to the site text will be immediately reflected in the browser. Any changes made to the site text will be immediately reflected in the browser.
-
-## Versioning
-
-We employ a versioning system where we have the "latest" documentation AKA "Next Version" which has all the changes that have occurred since the last release. We also keep the last release documentation as well as the version before that. We also keep the last release documentation as well as the version before that. We also keep the last release documentation as well as the version before that.
-
-There isn't usually a reason to update released documentation so we don't generally update the documents in the `versioned_docs` or `versioned_sidebars` directories.
-
-The "next version" docs are mainly in `website/docs` with some "version independent" documents in `src/pages`. Any updates should be made in the `website/docs` directory. Any updates should be made in the `website/docs` directory. Any updates should be made in the `website/docs` directory.
-
-## Languages
-
-The default documents of the Wails project are English documents. We use the "crowdin" tool to translate documents in other languages and synchronize them to the website. You can [join our project](https://crowdin.com/project/wails) and submit your translations to make contributions.
-
-### Add new language
-
-If you want to add a new language to the documentation, please follow the prompts to [fill in and submit an Issue](https://github.com/wailsapp/wails/issues/new?assignees=&labels=documentation&template=documentation.yml). After being confirmed by the maintainer, we will add the language to the "crowdin" and you will then be able to submit your translation.
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/fixing-bugs.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/fixing-bugs.mdx
deleted file mode 100644
index 01eceeccd..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/fixing-bugs.mdx
+++ /dev/null
@@ -1,29 +0,0 @@
----
-sidebar_position: 30
----
-
-# 修复漏洞
-
-The process for fixing bugs are as follows:
-
-- Check the current [Backlog](https://github.com/orgs/wailsapp/projects/1/views/1) and select a bug to fix
-- Before developing, check that the ticket includes the following information:
-- The scope of the issue including platforms affected
-- The steps to reproduce. The steps to reproduce. The steps to reproduce. Sometimes bugs are opened that are not Wails issues and the onus is on the reporter to prove that it is a Wails issue with a minimal reproducible example
-- The output of `wails doctor`
-- If the ticket does not include this information, feel free to request the information from the person who opened the ticket.
-- Comment on the ticket stating you wish to develop a fix
-- Clone the repository and create a branch with the format `bugfix/_`
-- Once the fix is ready for testing, create a draft PR. Once the fix is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested. Once the fix is ready for testing, create a draft PR. Please ensure the PR description has the test scenarios and test cases listed with checkmarks, so that others can know what still needs to be tested.
-- Once all the testing is completed, please update the status of the PR from draft and leave a message.
-
-:::note
-There is nothing stopping you from opening a ticket and working on it yourself, but please be aware that all
-bugfixes should be discussed as the approach may have unintended side effects.
-::: :::
-:::
-
-:::warning
-Any PRs opened without a corresponding ticket may be rejected.
-::: :::
-:::
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/helping-others.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/helping-others.mdx
deleted file mode 100644
index 83671d83e..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/helping-others.mdx
+++ /dev/null
@@ -1,13 +0,0 @@
----
-sidebar_position: 50
----
-
-# 帮助其他人
-
-A great way to contribute to the project is to help others who are experiencing difficulty. This is normally reported as a ticket or a message on the Wails slack channel. Even just clarifying the issue can really help out. Sometimes, when an issue is discussed and gets resolved, we create a guide out of it to help others who face the same issues.
-
-To join the Wails slack channel, accept the invite [here](https://gophers.slack.com/join/shared_invite/zt-197vymgt3-sJt4oyakb6nqlVKjXTyeVw#/shared-invite/email) and join us on the channel by following [this link](https://gophers.slack.com/?redir=%2Fmessages%2FCJ4P9F7MZ%2F).
-
-:::note
-Work In Progress
-:::
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/setting-up-a-dev-environment.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/setting-up-a-dev-environment.mdx
deleted file mode 100644
index 1133e275d..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/setting-up-a-dev-environment.mdx
+++ /dev/null
@@ -1,30 +0,0 @@
----
-sidebar_position: 10
----
-
-# 设置开发环境
-
-You can set up a development environment by doing the following:
-
-- Install the latest versions of Go and Git
-- `git clone https://github.com/wailsapp/wails`
-- `cd wails/v2/cmd/wails`
-- `go install`
-
-NOTE: The directory that you cloned the project into will now be called "clonedir".
-
-The Wails CLI will now be at the very latest version.
-
-To update projects to use the latest version, update the project's `go.mod` and ensure the following line is at the bottom of the file:
-
-`replace github.com/wailsapp/wails/v2 => `
-
-Example:
-
-On Windows: `replace github.com/wailsapp/wails/v2 => C:\Users\leaan\Documents\wails-v2-beta\wails\v2`
-
-On 'nix: `replace github.com/wailsapp/wails/v2 => /home/me/projects/wails/v2`
-
-To revert back to a stable version, run:
-
-`go install github.com/wailsapp/wails/v2/cmd/wails@latest`
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/testing.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/testing.mdx
deleted file mode 100644
index 5fcd55205..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/testing.mdx
+++ /dev/null
@@ -1,16 +0,0 @@
----
-sidebar_position: 35
----
-
-# 测试
-
-Testing is vitally important to ensure quality in the project. Testing is vitally important to ensure quality in the project. There are a couple of scenarios where testing can really help the project: Testing is vitally important to ensure quality in the project. There are a couple of scenarios where testing can really help the project:
-
-- Testing if a bug is reproducible on your local system
-- Testing PRs to ensure that they work correctly
-
-If you chose to test if someone's bug report is reproducible on your local system, then feel free to add a comment on the ticket confirming this with the output of `wails doctor`.
-
-To test PRs, choose a PR to test and check if the PR description has the testing scenarios listed. If not, please ask the person who opened the PR to provide that list. Once you have determined a valid test scenario, please report your findings on the PR. If not, please ask the person who opened the PR to provide that list. Once you have determined a valid test scenario, please report your findings on the PR. If not, please ask the person who opened the PR to provide that list. Once you have determined a valid test scenario, please report your findings on the PR.
-
-If you ever need more clarity or help on testing, please ask a question in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion or on slack.
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/ways-of-contributing.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/ways-of-contributing.mdx
deleted file mode 100644
index 3bbe9a889..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/contributing/ways-of-contributing.mdx
+++ /dev/null
@@ -1,18 +0,0 @@
----
-sidebar_position: 1
----
-
-# 贡献方式
-
-Wails is an open source, community driven project. We welcome anyone to join us in contributing to the project. This documentation is aimed at anyone wishing to get familiar with the project and the development processes. We welcome anyone to join us in contributing to the project. This documentation is aimed at anyone wishing to get familiar with the project and the development processes.
-
-There are many ways to contribute to the project:
-
-- Developing new features
-- Fixing bugs
-- Testing
-- Documenting features
-- Writing tutorials / guides
-- Helping others on the issues + discussions boards
-
-Guides for these have been created in their own sections. Guides for these have been created in their own sections. Guides for these have been created in their own sections. Before getting started, please introduce yourself in the [Contributing to Wails](https://github.com/wailsapp/wails/discussions/1520) discussion.
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/faq.md b/website/i18n/zh-Hans/docusaurus-plugin-content-pages/faq.md
deleted file mode 100644
index 307d253c7..000000000
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-pages/faq.md
+++ /dev/null
@@ -1 +0,0 @@
-# 常见问题
\ No newline at end of file
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/encrypteasy.mdx b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/encrypteasy.mdx
index e2723e0a3..5df462ac5 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/encrypteasy.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/encrypteasy.mdx
@@ -2,7 +2,7 @@
# EncryptEasy
- 
+ 
**[EncryptEasy](https://www.encrypteasy.app) is a simple and easy to use PGP encryption tool, managing all your and your contacts keys. Encryption should be simple. Developed with Wails.**
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/filehound.mdx b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/filehound.mdx
index d1a5637d7..c4e5d96d0 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/filehound.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/filehound.mdx
@@ -2,7 +2,7 @@
# FileHound Export Utility
- 
+ 
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/mollywallet.mdx b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/mollywallet.mdx
index 65c8f00b4..2354e566e 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/mollywallet.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/mollywallet.mdx
@@ -2,7 +2,7 @@
# Molley Wallet
- 
+ 
[Molly Wallet](https://github.com/grvlle/constellation_wallet/) the official $DAG wallet of the Constellation Network. It'll let users interact with the Hypergraph Network in various ways, not limited to producing $DAG transactions.
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/october.mdx b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/october.mdx
index bcaeca8f9..f9db3cede 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/october.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/october.mdx
@@ -1,7 +1,7 @@
# October
- 
+ 
[October](https://october.utf9k.net) is a small Wails application that makes it really easy to extract highlights from [Kobo eReaders](https://en.wikipedia.org/wiki/Kobo_eReader) and then forward them to [Readwise](https://readwise.io).
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/optimus.mdx b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/optimus.mdx
index 6b7afbbca..f35de9442 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/optimus.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/optimus.mdx
@@ -2,7 +2,7 @@
# Optimus
- 
+ 
[Optimus](https://github.com/splode/optimus) is a desktop image optimization application. It supports conversion and compression between WebP, JPEG, and PNG image formats.
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/portfall.mdx b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/portfall.mdx
index ce59d3cc5..63524e35c 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/portfall.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/portfall.mdx
@@ -2,7 +2,7 @@
# Portfall
- 
+ 
[Portfall](https://github.com/rekon-oss/portfall) - A desktop k8s port-forwarding portal for easy access to all your cluster UIs
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/restic-browser.mdx b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/restic-browser.mdx
index 5642bb298..034370609 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/restic-browser.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/restic-browser.mdx
@@ -2,7 +2,7 @@
# Restic Browser
- 
+ 
[Restic-Browser](https://github.com/emuell/restic-browser) - A simple, cross-platform [restic](https://github.com/restic/restic) backup GUI for browsing and restoring restic repositories.
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/riftshare.mdx b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/riftshare.mdx
index 59680bdb3..892d3d7fb 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/riftshare.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/riftshare.mdx
@@ -2,7 +2,7 @@
# RiftShare
- 
+ 
Easy, Secure, and Free file sharing for everyone. Learn more at [Riftshare.app](https://riftshare.app)
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/surge.mdx b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/surge.mdx
index b1693a6de..02fba67c0 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/surge.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/surge.mdx
@@ -2,7 +2,7 @@
# Surge
- 
+ 
[Surge](https://getsurge.io/) is a p2p filesharing app designed to utilize blockchain technologies to enable 100% anonymous file transfers. Surge is end-to-end encrypted, decentralized and open source.
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/wally.mdx b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/wally.mdx
index d2c7c3acd..b4bb707c7 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/wally.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/wally.mdx
@@ -2,7 +2,7 @@
# Wally
- 
+ 
[Wally](https://ergodox-ez.com/pages/wally) is the official firmware flasher for [Ergodox](https://ergodox-ez.com/) keyboards. It looks great and is a fantastic example of what you can achieve with Wails: the ability to combine the power of Go and the rich graphical tools of the web development world.
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/wombat.mdx b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/wombat.mdx
index 22f4b6f69..d580c7eca 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/wombat.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/wombat.mdx
@@ -2,7 +2,7 @@
# Wombat
- 
+ 
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/ytd.mdx b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/ytd.mdx
index af27c9e6e..5b7568436 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/ytd.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/community/showcase/ytd.mdx
@@ -2,7 +2,7 @@
# Ytd
- 
+ 
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/guides/dynamic-assets.mdx b/website/versioned_docs/version-v2.0.0-beta.43/guides/dynamic-assets.mdx
index a7ba3347e..a8438a397 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/guides/dynamic-assets.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/guides/dynamic-assets.mdx
@@ -92,13 +92,13 @@ This will generate an error in the devtools. We can see that the error is what w
our custom assets handler:
-
+
However, if we request `go.mod`, we will see the following output:
-
+
This technique can be used to load images directly into the page. If we updated our default vanilla template and
@@ -113,7 +113,7 @@ with:
Then we would see the following:
-
+
:::warning
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/guides/ides.mdx b/website/versioned_docs/version-v2.0.0-beta.43/guides/ides.mdx
index d45fa2057..a3e998b6a 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/guides/ides.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/guides/ides.mdx
@@ -9,7 +9,7 @@ Currently, we support [Visual Studio Code](https://code.visualstudio.com/) but a
## Visual Studio Code
-
+
When generating a project using the `-ide vscode` flags, IDE files will be created alongside the other project files.
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/guides/troubleshooting.mdx b/website/versioned_docs/version-v2.0.0-beta.43/guides/troubleshooting.mdx
index 90c7d78dc..dfbb6a41a 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/guides/troubleshooting.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/guides/troubleshooting.mdx
@@ -39,7 +39,7 @@ Reference: https://github.com/wailsapp/wails/issues/1504#issuecomment-1174317433
If your built application looks like this in finder:
-
+
it''s likely that your application''s `info.plist` is invalid. Update the file in `build/.app/Contents/info.plist`
diff --git a/website/versioned_docs/version-v2.0.0-beta.43/guides/windows-installer.mdx b/website/versioned_docs/version-v2.0.0-beta.43/guides/windows-installer.mdx
index f75cb7145..decfe0b42 100644
--- a/website/versioned_docs/version-v2.0.0-beta.43/guides/windows-installer.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.43/guides/windows-installer.mdx
@@ -1,7 +1,7 @@
# NSIS installer
- 
+ 
Wails supports generating Windows installers using the [NSIS installer](https://nsis.sourceforge.io/).
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/emailit.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/emailit.mdx
index e95f313d2..629b67be8 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/emailit.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/emailit.mdx
@@ -1,7 +1,7 @@
# EmailIt
- 
+ 
[EmailIt](https://github.com/raguay/EmailIt/) is a Wails 2 program that is a markdown based email sender only with nine notepads, scripts to manipulate the text, and templates. It also has a builtin [Node-Red](https://nodered.org/) server, scripts terminal, and the [ScriptBar](https://github.com/raguay/ScriptBarApp) program for displaying results from Node-Red or a script on your system. Documentation is very scarce, but the programs works. It’s built using Wails2 and Svelte, and the download is a universal macOS application.
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/encrypteasy.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/encrypteasy.mdx
index e2723e0a3..5df462ac5 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/encrypteasy.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/encrypteasy.mdx
@@ -2,7 +2,7 @@
# EncryptEasy
- 
+ 
**[EncryptEasy](https://www.encrypteasy.app) is a simple and easy to use PGP encryption tool, managing all your and your contacts keys. Encryption should be simple. Developed with Wails.**
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/filehound.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/filehound.mdx
index d1a5637d7..c4e5d96d0 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/filehound.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/filehound.mdx
@@ -2,7 +2,7 @@
# FileHound Export Utility
- 
+ 
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/modalfilemanager.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/modalfilemanager.mdx
index a0f3c9c54..6245d8171 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/modalfilemanager.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/modalfilemanager.mdx
@@ -1,7 +1,7 @@
# Modal File Manager
- 
+ 
[Modal File Manager](https://github.com/raguay/ModalFileManager) is a dual pane file manager using web technologies. My original design was based on NW.js and can be found [here](https://github.com/raguay/ModalFileManager-NWjs). This version uses the same Svelte based frontend code (but it has be greatly modified since the departure from NW.js), but the backend is a [Wails 2](https://wails.io/) implementation. By using this implementation, I no longer use command line `rm`, `cp`, etc. commands. It is fully coded using Go and runs much faster than the previous versions.
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/mollywallet.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/mollywallet.mdx
index 65c8f00b4..2354e566e 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/mollywallet.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/mollywallet.mdx
@@ -2,7 +2,7 @@
# Molley Wallet
- 
+ 
[Molly Wallet](https://github.com/grvlle/constellation_wallet/) the official $DAG wallet of the Constellation Network. It'll let users interact with the Hypergraph Network in various ways, not limited to producing $DAG transactions.
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/october.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/october.mdx
index bcaeca8f9..f9db3cede 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/october.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/october.mdx
@@ -1,7 +1,7 @@
# October
- 
+ 
[October](https://october.utf9k.net) is a small Wails application that makes it really easy to extract highlights from [Kobo eReaders](https://en.wikipedia.org/wiki/Kobo_eReader) and then forward them to [Readwise](https://readwise.io).
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/optimus.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/optimus.mdx
index 6b7afbbca..f35de9442 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/optimus.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/optimus.mdx
@@ -2,7 +2,7 @@
# Optimus
- 
+ 
[Optimus](https://github.com/splode/optimus) is a desktop image optimization application. It supports conversion and compression between WebP, JPEG, and PNG image formats.
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/portfall.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/portfall.mdx
index ce59d3cc5..63524e35c 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/portfall.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/portfall.mdx
@@ -2,7 +2,7 @@
# Portfall
- 
+ 
[Portfall](https://github.com/rekon-oss/portfall) - A desktop k8s port-forwarding portal for easy access to all your cluster UIs
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/restic-browser.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/restic-browser.mdx
index 5642bb298..034370609 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/restic-browser.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/restic-browser.mdx
@@ -2,7 +2,7 @@
# Restic Browser
- 
+ 
[Restic-Browser](https://github.com/emuell/restic-browser) - A simple, cross-platform [restic](https://github.com/restic/restic) backup GUI for browsing and restoring restic repositories.
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/riftshare.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/riftshare.mdx
index 59680bdb3..892d3d7fb 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/riftshare.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/riftshare.mdx
@@ -2,7 +2,7 @@
# RiftShare
- 
+ 
Easy, Secure, and Free file sharing for everyone. Learn more at [Riftshare.app](https://riftshare.app)
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/scriptbar.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/scriptbar.mdx
index 8628e6865..02538a030 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/scriptbar.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/scriptbar.mdx
@@ -1,7 +1,7 @@
# ScriptBar
- 
+ 
[ScriptBar](https://GitHub.com/raguay/ScriptBarApp) is a program to show the output of the embedded [Node-Red](https://nodered.org) server in the [EmailIt](https://GitHub.com/raguay/EmailIt) application. It also displays the output of scripts on your system. ScriptBar doesn't put them in the menubar, but has them all in a convient window for easy viewing. You can have multiple tabs to have many different things show. You can also keep the links to your most visited web sites.
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/surge.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/surge.mdx
index b1693a6de..02fba67c0 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/surge.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/surge.mdx
@@ -2,7 +2,7 @@
# Surge
- 
+ 
[Surge](https://getsurge.io/) is a p2p filesharing app designed to utilize blockchain technologies to enable 100% anonymous file transfers. Surge is end-to-end encrypted, decentralized and open source.
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/wally.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/wally.mdx
index d2c7c3acd..b4bb707c7 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/wally.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/wally.mdx
@@ -2,7 +2,7 @@
# Wally
- 
+ 
[Wally](https://ergodox-ez.com/pages/wally) is the official firmware flasher for [Ergodox](https://ergodox-ez.com/) keyboards. It looks great and is a fantastic example of what you can achieve with Wails: the ability to combine the power of Go and the rich graphical tools of the web development world.
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/wombat.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/wombat.mdx
index 22f4b6f69..d580c7eca 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/wombat.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/wombat.mdx
@@ -2,7 +2,7 @@
# Wombat
- 
+ 
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/ytd.mdx b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/ytd.mdx
index af27c9e6e..5b7568436 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/ytd.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/community/showcase/ytd.mdx
@@ -2,7 +2,7 @@
# Ytd
- 
+ 
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/guides/dynamic-assets.mdx b/website/versioned_docs/version-v2.0.0-beta.44/guides/dynamic-assets.mdx
index a7ba3347e..a8438a397 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/guides/dynamic-assets.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/guides/dynamic-assets.mdx
@@ -92,13 +92,13 @@ This will generate an error in the devtools. We can see that the error is what w
our custom assets handler:
-
+
However, if we request `go.mod`, we will see the following output:
-
+
This technique can be used to load images directly into the page. If we updated our default vanilla template and
@@ -113,7 +113,7 @@ with:
Then we would see the following:
-
+
:::warning
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/guides/ides.mdx b/website/versioned_docs/version-v2.0.0-beta.44/guides/ides.mdx
index 64b3fceed..46f0268ff 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/guides/ides.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/guides/ides.mdx
@@ -8,7 +8,7 @@ Currently, we support [Visual Studio Code](https://code.visualstudio.com/) but a
## Visual Studio Code
-
+
When generating a project using the `-ide vscode` flags, IDE files will be created alongside the other project files.
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/guides/troubleshooting.mdx b/website/versioned_docs/version-v2.0.0-beta.44/guides/troubleshooting.mdx
index 90c7d78dc..dfbb6a41a 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/guides/troubleshooting.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/guides/troubleshooting.mdx
@@ -39,7 +39,7 @@ Reference: https://github.com/wailsapp/wails/issues/1504#issuecomment-1174317433
If your built application looks like this in finder:
-
+
it''s likely that your application''s `info.plist` is invalid. Update the file in `build/.app/Contents/info.plist`
diff --git a/website/versioned_docs/version-v2.0.0-beta.44/guides/windows-installer.mdx b/website/versioned_docs/version-v2.0.0-beta.44/guides/windows-installer.mdx
index f75cb7145..decfe0b42 100644
--- a/website/versioned_docs/version-v2.0.0-beta.44/guides/windows-installer.mdx
+++ b/website/versioned_docs/version-v2.0.0-beta.44/guides/windows-installer.mdx
@@ -1,7 +1,7 @@
# NSIS installer
- 
+ 
Wails supports generating Windows installers using the [NSIS installer](https://nsis.sourceforge.io/).