Skip to content
This repository was archived by the owner on Jun 26, 2024. It is now read-only.

Commit 4a73ffc

Browse files
committed
site i18n
1 parent c67f94b commit 4a73ffc

File tree

166 files changed

+4753
-505
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+4753
-505
lines changed

Gemfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ group :jekyll_plugins do
99
gem 'jekyll-seo-tag', '2.4.0'
1010
gem 'jekyll-sitemap', '1.2.0'
1111
gem 'jekyll-redirect-from', '0.14.0'
12-
end
12+
gem "jekyll-polyglot", '1.3.1'
13+
end

Gemfile.lock

+4-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ GEM
3434
nokogiri (= 1.8.2)
3535
jekyll-feed (0.9.3)
3636
jekyll (~> 3.3)
37+
jekyll-polyglot (1.3.1)
38+
jekyll (>= 3.0)
3739
jekyll-redirect-from (0.14.0)
3840
jekyll (~> 3.3)
3941
jekyll-sass-converter (1.5.2)
@@ -77,9 +79,10 @@ DEPENDENCIES
7779
jekyll-archives (= 2.1.1)
7880
jekyll-extract-element (= 0.0.7)
7981
jekyll-feed (= 0.9.3)
82+
jekyll-polyglot (= 1.3.1)
8083
jekyll-redirect-from (= 0.14.0)
8184
jekyll-seo-tag (= 2.4.0)
8285
jekyll-sitemap (= 1.2.0)
8386

8487
BUNDLED WITH
85-
1.16.2
88+
2.1.1

README.md

+14-7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66

77
## Changelog
8+
#### 2020-05-11
9+
Translate Chinese site to English. English documents are located in `en` folder in `_faq`, `_help` and `_posts`.
10+
811
#### 2018-12-08
912
Updated URL schemes for the Knowledge base section:
1013
- We are now using SEO friendly (and much shorter) human-readable plain English words as opposed to the longer article title which gets converted to [Punycode](https://en.wikipedia.org/wiki/Punycode).
@@ -27,27 +30,31 @@ $ git checkout [email protected]:FydeOS/fydeos.github.io.git
2730
3. cd into your working copy and prep for the Jekyll and its deps:
2831
```bash
2932
$ cd your/dir/to/fydeos.github.io
30-
~/your/dir/to/fydeos.github.io $ gem install bundler jekyll
31-
~/your/dir/to/fydeos.github.io $ bundle exec jekyll serve --incremental
33+
$ gem install bundler jekyll
34+
$ bundle exec jekyll serve --incremental
3235
```
3336

3437
Now you should have **FydeOS FAQ & Knowledge base** showing up on your browser at [http://127.0.0.1:4000](http://127.0.0.1:4000)
3538

36-
3739
### Creating new content
3840
1. FAQ items
3941
- Locate the directory named `_faq` in your working copy.
4042
- Within `_faq` you shall find numerous of `*.md` files, each file corresponds to one piece of FAQ item.
41-
- To create a new question, simply create a new `*.md` file within this directory, with the **name of your question** being the filename. e.g. `如何使用OTA升级我的FydeOS?.md`.
43+
- To create a new question, simply create a new `*.md` file within this directory, with the **name of your question** being the filename. e.g. `如何使用 OTA 升级我的 FydeOS?.md`.
4244
- Edit this Markdown file you've just created, with content being the answer to the question. Note that the **first two lines of triple dashes** need to be preserved on each file, e.g.
4345

4446
```
4547
---
46-
anchor: <anchor_for_each_question>
48+
anchor: <anchor_for_scrolling_to_the_question>
49+
weight: <weight_for_sorting>
50+
lang: <language>
4751
---
4852
Your answer here
4953
```
50-
- Save your file, you should be able to find your item on the FAQ page.
54+
Save your file, you should be able to find your item on the FAQ page. Note that:
55+
56+
- The anchor and weight are both preferable.
57+
- The lang is required to filter for different translation. Use "zh_CN" or "en".
5158

5259
2. Knowledge base item
5360
- Locate the directory named `_post` in your working copy.
@@ -65,6 +72,7 @@ type: Document
6572
permalink: /<category_name>/<SEO_friendly_title>/
6673
redirect_from:
6774
- /<早期中文category>/<早期中文标题>/
75+
lang: <language>
6876
---
6977
Your tutorial content here
7078
```
@@ -76,5 +84,4 @@ You shall create a pull request along with your additions to this repository, up
7684

7785

7886
## Some other notes
79-
- The official language for contributing new contents is currently `zh_CN`, we will be making `EN` soon when we are ready to serve markets other than PR China.
8087
- This Jekyll template originates from `Base`, which was made by [CloudCannon](http://cloudcannon.com/), the Cloud CMS for Jekyll.

_config.yml

+8
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ social:
1919
links:
2020
- https://github.com/CloudCannon/base-jekyll-template
2121

22+
# i18n
23+
# https://github.com/untra/polyglot
24+
languages: ["zh_CN", "en"]
25+
default_lang: "zh_CN"
26+
exclude_from_localizations: ["css", images", "js"]
27+
parallel_localization: true
28+
2229
# -----
2330
# Build
2431

@@ -32,6 +39,7 @@ plugins:
3239
- jekyll-seo-tag
3340
- jekyll-feed
3441
- jekyll-redirect-from
42+
- jekyll-polyglot
3543

3644
whitelist:
3745
- jekyll-redirect-from

_data/help_sections.yml

+42-20
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,42 @@
1-
- name: "使用入门"
2-
slug: "getting-started"
3-
- name: "连接"
4-
slug: "connection"
5-
- name: "管理您的应用"
6-
slug: "apps"
7-
- name: "个性化"
8-
slug: "personalisation"
9-
- name: "照片"
10-
slug: "photos"
11-
- name: "打印"
12-
slug: "printing"
13-
- name: "平板模式"
14-
slug: "tablet-mode"
15-
- name: "触控笔"
16-
slug: "stylus"
17-
- name: "无障碍"
18-
slug: "accessiability"
19-
- name: "设备支持"
20-
slug: "device-support"
1+
zh_CN:
2+
- name: "使用入门"
3+
slug: "getting-started"
4+
- name: "连接"
5+
slug: "connection"
6+
- name: "管理您的应用"
7+
slug: "apps"
8+
- name: "个性化"
9+
slug: "personalisation"
10+
- name: "照片"
11+
slug: "photos"
12+
- name: "打印"
13+
slug: "printing"
14+
- name: "平板模式"
15+
slug: "tablet-mode"
16+
- name: "触控笔"
17+
slug: "stylus"
18+
- name: "无障碍"
19+
slug: "accessiability"
20+
- name: "设备支持"
21+
slug: "device-support"
22+
en:
23+
- name: "Getting started"
24+
slug: "getting-started"
25+
- name: "Connection"
26+
slug: "connection"
27+
- name: "Managing your apps"
28+
slug: "apps"
29+
- name: "Personalisation"
30+
slug: "personalisation"
31+
- name: "Photos"
32+
slug: "photos"
33+
- name: "Printing"
34+
slug: "printing"
35+
- name: "Tablet mode"
36+
slug: "tablet-mode"
37+
- name: "Stylus"
38+
slug: "stylus"
39+
- name: "Accessibility"
40+
slug: "accessibility"
41+
- name: "Device support"
42+
slug: "device-support"

_data/languages.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
zh_CN:
2+
label: 中文
3+
en:
4+
label: English

_data/navigation.yml

+14-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1-
- name: 常见问题
2-
link: /
3-
- name: 帮助文档
4-
link: /help/
5-
- name: 知识库
6-
link: /kb/
1+
zh_CN:
2+
- name: 常见问题
3+
link: /
4+
- name: 帮助文档
5+
link: /help/
6+
- name: 知识库
7+
link: /kb/
8+
en:
9+
- name: FAQ
10+
link: /
11+
- name: Help
12+
link: /help/
13+
- name: Knowledge Base
14+
link: /kb/

_faq/FydeOS 会向最终用户收费么?.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
2-
anchor: free-for-individual
2+
anchor: will-fydeos-charge-end-users
3+
weight: 840
4+
lang: zh_CN
35
---
46
不会。
57

_faq/FydeOS 会收集用户的隐私信息吗?.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
2-
anchor: privacy
2+
anchor: does-fydeos-collect-users-private-information
3+
weight: 850
4+
lang: zh_CN
35
---
46
会。具体收集的内容和我们使用及保护用户隐私信息的法律边界已在我们的[隐私保护政策](https://fydeos.com/privacy/)中详细指出,建议你尽早阅读。
57

_faq/FydeOS 可以在我的计算机上启动,但是 Wi-Fi 无法工作?.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
2-
anchor: wifi-not-working
2+
anchor: fydeos-can-start-on-my-computer-but-wifi-does-not-work
3+
weight: 860
4+
lang: zh_CN
35
---
46
我们正在努力提高 Wi-Fi 的兼容性。如果你启动后发现 Wi-Fi 无法在你的计算机上工作,可以尝试回退至启动时的第一个页面,通过「高级设置」切换 Wi-Fi 驱动。完成之后重启计算机,系统会启动我们为基于博通公司无线网卡芯片准备的另外一套驱动。如果你的计算机使用的是博通公司提供的无线网卡芯片,那么在切换后应该可以解决 Wi-Fi 不能工作的问题。
57

_faq/FydeOS 在我的计算机上能启动,但是某个设备无法被识别,怎么办?.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
2-
anchor: device-not-recognized
2+
anchor: fydeos-can-start-on-my-computer-but-a-device-cannot-be-recognized-what-should-i-do
33
weight: 996
4+
lang: zh_CN
45
---
56
FydeOS 致力于适配并且兼容更多的硬件设备和外接设备。由于 Chromium OS 系统结构的特殊性,FydeOS 目前对非主流、未提供主线 Linux 内核驱动以及对主流 Linux 发行版支持不完善的硬件设备兼容性较弱。
67

@@ -20,4 +21,4 @@ FydeOS 致力于适配并且兼容更多的硬件设备和外接设备。由于
2021
- 电源管理策略
2122
- 其它特有的外接设备
2223

23-
如果你发现你的「某个设备」无法在 FydeOS 上被识别导致功能缺失,可以在你的设备上尝试运行 [Ubuntu Desktop](https://cn.ubuntu.com/desktop/) 来检测该设备对 Linux 系统的兼容性。若出现在 Ubuntu 下能被识别及能正常工作而在 FydeOS 下失灵的情况,欢迎至我们的[中文社区](https://fydeos.com/community/)发帖求助并提供详细的硬件信息以帮助我们的开发团队进一步完善硬件兼容性。
24+
如果你发现你的「某个设备」无法在 FydeOS 上被识别导致功能缺失,可以在你的设备上尝试运行 [Ubuntu Desktop](https://cn.ubuntu.com/desktop/) 来检测该设备对 Linux 系统的兼容性。若出现在 Ubuntu 下能被识别及能正常工作而在 FydeOS 下失灵的情况,欢迎至我们的[中文社区](https://community.fydeos.com/)发帖求助并提供详细的硬件信息以帮助我们的开发团队进一步完善硬件兼容性。

_faq/FydeOS 应用商店中的「检查更新」是什么?.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
2-
anchor: what-is-check-for-update-in-store
2+
anchor: what-is-check-for-updates-in-the-fydeos-app-store
3+
weight: 870
4+
lang: zh_CN
35
---
46
FydeOS 应用商店中已有数千个应用供用户下载使用。由于这些应用全部来源于 Chrome Web Store,应用的自动更新在中国大陆地区可能无法正常进行。因此我们在应用商店中新增了「检查更新」功能以帮助用户将已安装的 Chrome 应用迁移成 FydeOS 应用。两者的区别仅有一处,即应用的自动更新链接。迁移完成之后,您即可享受应用自动更新的便利。
57

_faq/FydeOS 携带有病毒、木马或任何可能危害我信息安全的工具吗?.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
2-
anchor: virus
2+
anchor: does-fydeos-carry-viruses-trojan-or-any-tools-that-might-compromise-my-information-security
3+
weight: 880
4+
lang: zh_CN
35
---
46
我们仅能保证从 FydeOS 官方途径发布的带有 FydeOS 标志的操作系统镜像是安全的、无害的、符合我们《隐私保护政策》以及其它在中华人民共和国互联网安全相关法律条款的。
57

_faq/FydeOS 支持 Adobe Flash Player 吗?.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
2-
anchor: adobe-flash-player
2+
anchor: does-fydeos-support-adobe-flash-player
3+
weight: 890
4+
lang: zh_CN
35
---
46
在最新的 FydeOS for PC 版本中我们已经内嵌了 Adobe Flash Player,你可以直接使用。
57

_faq/FydeOS 的版本更新策略是怎样的?.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
2-
anchor: update-policy
2+
anchor: what-is-the-version-update-strategy-of-fydeos
3+
weight: 900
4+
lang: zh_CN
35
---
46
原则上 FydeOS 的核心版本会和上游项目 Chromium OS 以及 Google Chrome OS 的稳定版保持不超过 2 个大版本的间隔。比如,若 Google Chrome OS 目前的稳定版是`70.0.*.*`,则在最差情况下,FydeOS 会保持在`68.0.*.*`
57

_faq/FydeOS 预装的浏览器插件权限很高而且无法删除,是做什么用的?.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
2-
anchor: system-controller
2+
anchor: fydeos-preinstalled-browser-extension-has-high-permissions-and-cannot-be-deleted-what-is-it-used-for
3+
weight: 910
4+
lang: zh_CN
35
---
46
FydeOS 默认携带了名为「FydeOS 系统控制」的浏览器插件(id: `mofiofjpikncjaigmdlblhojbnkabako`)。此插件为 FydeOS 提供了不可或缺的系统功能,是 FydeOS 系统的重要组成部分。
57

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
anchor: after-i-experience-fydeos-how-do-i-restore-a-usb-drive
3+
weight: 950
4+
lang: en
5+
---
6+
You can use disk management tools (such as Disk Genius, etc.) to delete all partitions on the U disk and create a new partition, format it to the file system you want, please be careful.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
anchor: can-i-experience-fydeos-on-a-virtual-machine-program
3+
weight: 970
4+
lang: en
5+
---
6+
At present, a virtual machine version adapted to VMware has been launched. You can visit [download page](https://fydeos.com/download/), download and try it. It should be noted that this virtual machine image can only be adapted to VMWare Workstation Pro 15, Workstation Player 15 and WMWare Fusion 11. If you want to get the best experience, we still recommend you to use FydeOS for PC or FydeOS for You version.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
anchor: can-i-use-the-google-play-store
3+
weight: 995
4+
lang: en
5+
---
6+
The Google Play Store requires official Google authorization for distribution. The applications distributed through the Google Play Store usually rely on Google's service framework. Once the official authorization of Google is lost and the applications are installed into the operating system, these applications will often not work properly.
7+
8+
In addition, due to well-known reasons, the Google Play Store cannot be used normally in mainland China.
9+
10+
FydeOS currently presets "FydeOS App Store" and "Coolapk" (Android Subsystem Only) in the system, where you can get tens of thousands of extensions, Chrome apps, and Android apps.
11+
12+
If you have a certain hands-on ability and the need to use the Google version of Android services, you can obtain the relevant configuration program in the "FydeOS App Store" to configure it to meet your needs through the open source project "Open GApps". It should be noted that this feature is currently in the testing phase and cannot guarantee usability.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
anchor: can-i-use-the-services-provided-by-google-directly-on-fydeos
3+
weight: 995
4+
lang: en
5+
---
6+
**No.**
7+
8+
According to the relevant provisions of the "Administrative Measures on the International Internet Security Protection of Computer Information Networks", "Administrative Measures on Internet Information Services", "Network Security Law of the People's Republic of China", "Telecommunication Regulations of the People's Republic of China" and "Criminal Law of the People's Republic of China", Fyde Innovations (Beijing) Co., Ltd. does not provide methods, tools and services that violate the above laws and regulations.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
anchor: does-fydeos-carry-viruses-trojan-or-any-tools-that-might-compromise-my-information-security
3+
weight: 880
4+
lang: en
5+
---
6+
We can only guarantee that the operating system images with the FydeOS logo released from FydeOS official channels are safe, harmless, and comply with our "Privacy Protection Policy" and other relevant legal provisions on Internet security in the People's Republic of China.
7+
8+
We cannot make any security guarantee for FydeOS-like operating system products, derivative products developed based on FydeOS technology, and products based on secondary development of open source projects that we maintain.
9+
10+
The Chromium OS open source project used by FydeOS places great emphasis on security. If you find that Chromium OS (and any underlying components that accompany it) contains significant or undisclosed security risks, please contact us in time.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
anchor: does-fydeos-collect-users-private-information
3+
weight: 850
4+
lang: en
5+
---
6+
Yes. The specific content collected and the legal boundaries of our use and protection of users' private information have been pointed out in detail in our [Privacy Policy](https://fydeos.com/privacy/), it is recommended that you read it as soon as possible.
7+
8+
Before you start using FydeOS, we ask you to read and agree to our "Software License Agreement". By continuing to use FydeOS and its affiliated products, you agree to our "Privacy Policy".
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
anchor: does-fydeos-support-adobe-flash-player
3+
weight: 890
4+
lang: en
5+
---
6+
In the latest FydeOS for PC version, we have embedded Adobe Flash Player, which you can use directly.
7+
8+
In addition, Adobe Flash Player will gradually be eliminated by mainstream browsers due to its closed design and lack of security and will eventually stop updating. If you are still using a website or program that relies heavily on Flash technology, it is recommended that you replace it as soon as possible.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
anchor: fydeos-can-start-on-my-computer-but-wifi-does-not-work
3+
weight: 860
4+
lang: en
5+
---
6+
We are working hard to improve Wi-Fi compatibility. If you find that Wi-Fi does not work on your computer after startup, you can try to go back to the first page at startup and switch the Wi-Fi driver through "Advanced Settings". Restart the computer after completion, the system will start another set of drivers we prepared for Broadcom based wireless card chip. If your computer uses the wireless network card chip provided by Broadcom, then the problem of Wi-Fi not working after switching can be solved.
7+
8+
If you still can't solve the Wi-Fi problem, please post in the community and leave your computer's Wi-Fi chip brand and model, we will try our best to adapt the chip in future releases.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
anchor: fydeos-can-start-on-my-computer-but-a-device-cannot-be-recognized-what-should-i-do
3+
weight: 996
4+
lang: en
5+
---
6+
FydeOS is committed to adapting and compatible with more hardware devices and external devices. Due to the particularity of the Chromium OS system structure, FydeOS is currently less compatible with hardware devices that are not mainstream, do not provide mainline Linux kernel drivers, and do not support mainstream Linux distributions.
7+
8+
"A device" here may include but is not limited to:
9+
- Wireless network card
10+
- Ethernet card
11+
- Sound
12+
- Printer
13+
- Automatic identification of headphone jack
14+
- Touchpad
15+
- Touch screen
16+
- Stylus
17+
- Fingerprint reader
18+
- Camera
19+
- Gravity sensor module
20+
- Battery remaining display
21+
- Power management strategy
22+
- Other unique external devices
23+
24+
If you find that your "a device" cannot be recognized on FydeOS and the function is missing, you can try to run [Ubuntu Desktop](https://cn.ubuntu.com/desktop/) on your device to detect the device Compatibility with Linux systems. If it appears to be recognized under Ubuntu and can work normally but fails under FydeOS, welcome to our [Chinese Community](https://community.fydeos.com/) to post for help and provide detailed hardware information to help Our development team further improves hardware compatibility.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
anchor: fydeos-preinstalled-browser-extension-has-high-permissions-and-cannot-be-deleted-what-is-it-used-for
3+
weight: 910
4+
lang: en
5+
---
6+
FydeOS comes with a browser extension called "FydeOS System Controller" by default (id: `mofiofjpikncjaigmdlblhojbnkabako`). This extension provides indispensable system functions for FydeOS and is an important part of FydeOS system.
7+
8+
Due to the particularity of the extension, there are many contents of the permission applied by the extension displayed on the extension detail page. But don't worry, this plugin only provides services for FydeOS and its affiliated functions, and the interfaces involved in the bottom layer of the system are protected by solutions such as `minijail` (see [Design Document](https://www.chromium.org/chromium-os/developer-guide/chromium-os-sandboxing)), which guarantees the overall security of the system to the greatest extent.

0 commit comments

Comments
 (0)