-
Notifications
You must be signed in to change notification settings - Fork 387
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLDR-17803 site: fix frontmatter errs, add docker build (#3873)
- Loading branch information
Showing
8 changed files
with
58 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
--- | ||
title: @Getting Started | ||
title: Getting Started | ||
--- | ||
|
||
# @Getting Started | ||
# Getting Started | ||
|
||
Before getting started to contribute data in CLDR, and jumping in to using the Survey Tool, it is important that you understand the CLDR process. | ||
|
||
1. Understand the basics about the CLDR process and the community-based model and the Technical Committee. Read: [CLDR Process](https://cldr.unicode.org/index/process) | ||
2. Read the Getting Started topics on the Information Hub: | ||
- [Survey Tool Guide](https://cldr.unicode.org/translation/getting-started/guide) | ||
- [Survey Tool Stages](https://cldr.unicode.org/translation/getting-started/survey-tool-phases) | ||
- [Handling Errors and Warnings](https://cldr.unicode.org/translation/getting-started/errors-and-warnings) | ||
- [Survey Tool Stages](https://cldr.unicode.org/translation/getting-started/survey-tool-phases) | ||
- [Handling Errors and Warnings](https://cldr.unicode.org/translation/getting-started/errors-and-warnings) | ||
- [Handling Logical Group Errors](https://cldr.unicode.org/translation/getting-started/resolving-errors) | ||
- [Plurals & Units](https://cldr.unicode.org/translation/getting-started/plurals) | ||
- [Review Date & Time](https://cldr.unicode.org/translation/date-time) | ||
- [Review Numbers](https://cldr.unicode.org/translation/number-currency-formats) | ||
- [Review Zones](https://cldr.unicode.org/translation/time-zones-and-city-names) | ||
- [Data stability](https://cldr.unicode.org/translation/getting-started/data-stability) | ||
- [Empty cache](https://cldr.unicode.org/translation/getting-started/empty-cache) | ||
- [Empty cache](https://cldr.unicode.org/translation/getting-started/empty-cache) | ||
|
||
\*If you (individual or your organization) have not established a connection with the CLDR technical committee, start with [Survey Tool Accounts](https://cldr.unicode.org/index/survey-tool/survey-tool-accounts). | ||
|
||
![Unicode copyright](https://www.unicode.org/img/hb_notice.gif) | ||
![Unicode copyright](https://www.unicode.org/img/hb_notice.gif) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
--- | ||
title: @General translation Guide | ||
title: General translation Guide | ||
--- | ||
|
||
# @General translation Guide | ||
# General translation Guide | ||
|
||
- [Capitalization](https://cldr.unicode.org/translation/translation-guide-general/capitalization) | ||
- [Default Content](https://cldr.unicode.org/translation/translation-guide-general/default-content) | ||
- [References](https://cldr.unicode.org/translation/translation-guide-general/references) | ||
|
||
![Unicode copyright](https://www.unicode.org/img/hb_notice.gif) | ||
![Unicode copyright](https://www.unicode.org/img/hb_notice.gif) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
FROM jekyll/jekyll | ||
RUN gem install bundler github-pages kramdown-parser-gfm webrick |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Previewing locally | ||
|
||
1. install https://docker.io | ||
2. `docker compose up` | ||
3. visit <http://127.0.0.1:4000> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
services: | ||
site: | ||
build: . | ||
command: jekyll serve -s /src -d /tmp -p 4000 --watch | ||
ports: | ||
- 4000:4000 | ||
volumes: | ||
- ../../../../docs:/src | ||
environment: | ||
- PAGES_REPO_NWO=unicode-org/cldr |