You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
darksunlight 8596a0ed61 Merge pull request 'Update mirror list' (#1) from darksunlight-patch-mirror-update into master 1 year ago
.github/workflows Add ESLint to GitHub Actions 2 years ago
public Add info box 2 years ago
src Update 'src/components/translations/en-US.json' 1 year ago
.babel-plugin-macrosrc.js initial commit 2 years ago
.babelrc initial commit 2 years ago
.eslintrc.js initial commit 2 years ago
.gitignore initial commit 2 years ago
.prettierrc prettier config 2 years ago
CONTRIBUTING.md docs fix + CONTRIBUTING.md 2 years ago
LICENSE Change license to GPL 3.0 2 years ago
README.md fixed README 2 years ago
package.json footer edit + dark mode in cookie 2 years ago
tailwind.config.js Merge branch 'master' of server.omame.tech:windowsboy111/website-wip 2 years ago
tsconfig.json initial commit 2 years ago
types.d.ts initial commit 2 years ago
webpack.config.js Add info box 2 years ago
yarn.lock mainly fixed footer and more i18n customisations 2 years ago

README.md

CyberOS Website

Currently a work-in-progress. You can help by submitting a pull request!

Developing:

To preview the website, run:

yarn
yarn start

Translating:

Note: We uses ISO 639-3 codes

  1. to i18n.ts in src/components, add your language alphabetically in the form of:
'en-US': {
    translation: en,
},
  1. import the translation file at the top of i18n.ts: (don't forget to sort them alphabetically!)
import en from './translations/en-US.json'
  1. copy a fully translated language file (en-US.json will work best) to <your-language-code>.json in src/components/translations/

  2. Start translating!