Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: new Crowdin updates #2516

Merged
merged 18 commits into from
Jan 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
2c1a938
docs: new translation icu-syntax.md (French) [ci skip]
longlho Jan 18, 2021
e6824ec
docs: new translation upgrade-guide-3.x.md (French) [ci skip]
longlho Jan 18, 2021
568ce79
docs: new translation icu-syntax.md (Spanish) [ci skip]
longlho Jan 18, 2021
071bb72
docs: new translation upgrade-guide-3.x.md (Spanish) [ci skip]
longlho Jan 18, 2021
b5633a7
docs: new translation icu-syntax.md (Japanese) [ci skip]
longlho Jan 18, 2021
e80ec15
docs: new translation intl-messageformat.md (Chinese Traditional) [ci…
longlho Jan 18, 2021
472d181
docs: new translation icu-syntax.md (Chinese Simplified) [ci skip]
longlho Jan 18, 2021
8e0a688
docs: new translation upgrade-guide-3.x.md (Japanese) [ci skip]
longlho Jan 18, 2021
dbedd8a
docs: new translation icu-syntax.md (Portuguese) [ci skip]
longlho Jan 18, 2021
d66fa92
docs: new translation upgrade-guide-3.x.md (Portuguese) [ci skip]
longlho Jan 18, 2021
3f92862
docs: new translation upgrade-guide-3.x.md (Chinese Simplified) [ci s…
longlho Jan 18, 2021
1602922
docs: new translation icu-syntax.md (Chinese Traditional) [ci skip]
longlho Jan 18, 2021
b7a6004
docs: new translation upgrade-guide-3.x.md (Chinese Traditional) [ci …
longlho Jan 18, 2021
fc533da
docs: new translation intl-messageformat.md (French) [ci skip]
longlho Jan 18, 2021
fddea0b
docs: new translation intl-messageformat.md (Japanese) [ci skip]
longlho Jan 18, 2021
b3fda04
docs: new translation intl-messageformat.md (Spanish) [ci skip]
longlho Jan 18, 2021
7ed74b3
docs: new translation intl-messageformat.md (Chinese Simplified) [ci …
longlho Jan 18, 2021
4b2a6d9
docs: new translation intl-messageformat.md (Portuguese) [ci skip]
longlho Jan 18, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions translated/es-ES/website/docs/core-concepts/icu-syntax.md
Expand Up @@ -58,7 +58,7 @@ Sometimes embedding how the number will be formatted provides great context to t
The price of this bagel is {num, number, ::sign-always compact-short currency/GBP}
```

You can read more about this [here](https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md).
You can read more about this [here](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html).

### `date` Type

Expand Down Expand Up @@ -92,7 +92,7 @@ Internally it uses the `Intl.DateTimeFormat` API. You can define custom values f

### Supported DateTime Skeleton

Similar to `number` type, we also support ICU DateTime skeleton. ICU provides a [wide array of pattern](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table) to customize date time format. However, not all of them are available via ECMA402's Intl API. Therefore, we only support the following patterns
Similar to `number` type, we also support ICU DateTime skeleton. ICU provides a [wide array of pattern](https://unicode-org.github.io/icu/userguide/format_parse/datetime/#date-field-symbol-table) to customize date time format. However, not all of them are available via ECMA402's Intl API. Therefore, we only support the following patterns

| Symbol | Meaning | Notes |
| ------ | ----------------------------- | ------------------------- |
Expand Down
2 changes: 1 addition & 1 deletion translated/es-ES/website/docs/intl-messageformat.md
Expand Up @@ -210,7 +210,7 @@ new IntlMessageFormat(
).format({price: 100})
```

A full set of options and syntax can be found [here](https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md)
A full set of options and syntax can be found [here](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html)

#### Date/Time Skeleton

Expand Down
Expand Up @@ -350,7 +350,7 @@ This is especially beneficial in SSR where you can reuse the same `intl` object

## Message Format Syntax Changes

We've rewritten our parser to be more faithful to [ICU Message Format](https://unicode-org.github.io/icu-docs/apidoc/released/icu4j/com/ibm/icu/text/MessageFormat.html), in order to potentially support skeleton. So far the backwards-incompatible changes are:
We've rewritten our parser to be more faithful to [ICU Message Format](https://unicode-org.github.io/icu/userguide/format_parse/messages/), in order to potentially support skeleton. So far the backwards-incompatible changes are:

### Escape character has been changed to apostrophe (`'`).

Expand Down
4 changes: 2 additions & 2 deletions translated/fr-FR/website/docs/core-concepts/icu-syntax.md
Expand Up @@ -58,7 +58,7 @@ Sometimes embedding how the number will be formatted provides great context to t
The price of this bagel is {num, number, ::sign-always compact-short currency/GBP}
```

You can read more about this [here](https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md).
You can read more about this [here](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html).

### `date` Type

Expand Down Expand Up @@ -92,7 +92,7 @@ Internally it uses the `Intl.DateTimeFormat` API. You can define custom values f

### Supported DateTime Skeleton

Similar to `number` type, we also support ICU DateTime skeleton. ICU provides a [wide array of pattern](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table) to customize date time format. However, not all of them are available via ECMA402's Intl API. Therefore, we only support the following patterns
Similar to `number` type, we also support ICU DateTime skeleton. ICU provides a [wide array of pattern](https://unicode-org.github.io/icu/userguide/format_parse/datetime/#date-field-symbol-table) to customize date time format. However, not all of them are available via ECMA402's Intl API. Therefore, we only support the following patterns

| Symbol | Meaning | Notes |
| ------ | ----------------------------- | ------------------------- |
Expand Down
2 changes: 1 addition & 1 deletion translated/fr-FR/website/docs/intl-messageformat.md
Expand Up @@ -210,7 +210,7 @@ new IntlMessageFormat(
).format({price: 100})
```

A full set of options and syntax can be found [here](https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md)
A full set of options and syntax can be found [here](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html)

#### Date/Time Skeleton

Expand Down
Expand Up @@ -350,7 +350,7 @@ This is especially beneficial in SSR where you can reuse the same `intl` object

## Message Format Syntax Changes

We've rewritten our parser to be more faithful to [ICU Message Format](https://unicode-org.github.io/icu-docs/apidoc/released/icu4j/com/ibm/icu/text/MessageFormat.html), in order to potentially support skeleton. So far the backwards-incompatible changes are:
We've rewritten our parser to be more faithful to [ICU Message Format](https://unicode-org.github.io/icu/userguide/format_parse/messages/), in order to potentially support skeleton. So far the backwards-incompatible changes are:

### Escape character has been changed to apostrophe (`'`).

Expand Down
4 changes: 2 additions & 2 deletions translated/ja-JP/website/docs/core-concepts/icu-syntax.md
Expand Up @@ -58,7 +58,7 @@ Sometimes embedding how the number will be formatted provides great context to t
The price of this bagel is {num, number, ::sign-always compact-short currency/GBP}
```

You can read more about this [here](https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md).
You can read more about this [here](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html).

### `date` Type

Expand Down Expand Up @@ -92,7 +92,7 @@ Internally it uses the `Intl.DateTimeFormat` API. You can define custom values f

### Supported DateTime Skeleton

Similar to `number` type, we also support ICU DateTime skeleton. ICU provides a [wide array of pattern](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table) to customize date time format. However, not all of them are available via ECMA402's Intl API. Therefore, we only support the following patterns
Similar to `number` type, we also support ICU DateTime skeleton. ICU provides a [wide array of pattern](https://unicode-org.github.io/icu/userguide/format_parse/datetime/#date-field-symbol-table) to customize date time format. However, not all of them are available via ECMA402's Intl API. Therefore, we only support the following patterns

| Symbol | Meaning | Notes |
| ------ | ----------------------------- | ------------------------- |
Expand Down
2 changes: 1 addition & 1 deletion translated/ja-JP/website/docs/intl-messageformat.md
Expand Up @@ -210,7 +210,7 @@ new IntlMessageFormat(
).format({price: 100})
```

A full set of options and syntax can be found [here](https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md)
A full set of options and syntax can be found [here](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html)

#### Date/Time Skeleton

Expand Down
Expand Up @@ -350,7 +350,7 @@ This is especially beneficial in SSR where you can reuse the same `intl` object

## Message Format Syntax Changes

We've rewritten our parser to be more faithful to [ICU Message Format](https://unicode-org.github.io/icu-docs/apidoc/released/icu4j/com/ibm/icu/text/MessageFormat.html), in order to potentially support skeleton. So far the backwards-incompatible changes are:
We've rewritten our parser to be more faithful to [ICU Message Format](https://unicode-org.github.io/icu/userguide/format_parse/messages/), in order to potentially support skeleton. So far the backwards-incompatible changes are:

### Escape character has been changed to apostrophe (`'`).

Expand Down
4 changes: 2 additions & 2 deletions translated/pt-PT/website/docs/core-concepts/icu-syntax.md
Expand Up @@ -58,7 +58,7 @@ Sometimes embedding how the number will be formatted provides great context to t
The price of this bagel is {num, number, ::sign-always compact-short currency/GBP}
```

You can read more about this [here](https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md).
You can read more about this [here](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html).

### `date` Type

Expand Down Expand Up @@ -92,7 +92,7 @@ Internally it uses the `Intl.DateTimeFormat` API. You can define custom values f

### Supported DateTime Skeleton

Similar to `number` type, we also support ICU DateTime skeleton. ICU provides a [wide array of pattern](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table) to customize date time format. However, not all of them are available via ECMA402's Intl API. Therefore, we only support the following patterns
Similar to `number` type, we also support ICU DateTime skeleton. ICU provides a [wide array of pattern](https://unicode-org.github.io/icu/userguide/format_parse/datetime/#date-field-symbol-table) to customize date time format. However, not all of them are available via ECMA402's Intl API. Therefore, we only support the following patterns

| Symbol | Meaning | Notes |
| ------ | ----------------------------- | ------------------------- |
Expand Down
2 changes: 1 addition & 1 deletion translated/pt-PT/website/docs/intl-messageformat.md
Expand Up @@ -210,7 +210,7 @@ new IntlMessageFormat(
).format({price: 100})
```

A full set of options and syntax can be found [here](https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md)
A full set of options and syntax can be found [here](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html)

#### Date/Time Skeleton

Expand Down
Expand Up @@ -350,7 +350,7 @@ This is especially beneficial in SSR where you can reuse the same `intl` object

## Message Format Syntax Changes

We've rewritten our parser to be more faithful to [ICU Message Format](https://unicode-org.github.io/icu-docs/apidoc/released/icu4j/com/ibm/icu/text/MessageFormat.html), in order to potentially support skeleton. So far the backwards-incompatible changes are:
We've rewritten our parser to be more faithful to [ICU Message Format](https://unicode-org.github.io/icu/userguide/format_parse/messages/), in order to potentially support skeleton. So far the backwards-incompatible changes are:

### Escape character has been changed to apostrophe (`'`).

Expand Down
4 changes: 2 additions & 2 deletions translated/zh-CN/website/docs/core-concepts/icu-syntax.md
Expand Up @@ -58,7 +58,7 @@ Sometimes embedding how the number will be formatted provides great context to t
The price of this bagel is {num, number, ::sign-always compact-short currency/GBP}
```

You can read more about this [here](https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md).
You can read more about this [here](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html).

### `date` Type

Expand Down Expand Up @@ -92,7 +92,7 @@ Internally it uses the `Intl.DateTimeFormat` API. You can define custom values f

### Supported DateTime Skeleton

Similar to `number` type, we also support ICU DateTime skeleton. ICU provides a [wide array of pattern](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table) to customize date time format. However, not all of them are available via ECMA402's Intl API. Therefore, we only support the following patterns
Similar to `number` type, we also support ICU DateTime skeleton. ICU provides a [wide array of pattern](https://unicode-org.github.io/icu/userguide/format_parse/datetime/#date-field-symbol-table) to customize date time format. However, not all of them are available via ECMA402's Intl API. Therefore, we only support the following patterns

| Symbol | Meaning | Notes |
| ------ | ----------------------------- | ------------------------- |
Expand Down
2 changes: 1 addition & 1 deletion translated/zh-CN/website/docs/intl-messageformat.md
Expand Up @@ -210,7 +210,7 @@ new IntlMessageFormat(
).format({price: 100})
```

A full set of options and syntax can be found [here](https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md)
A full set of options and syntax can be found [here](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html)

#### Date/Time Skeleton

Expand Down
Expand Up @@ -350,7 +350,7 @@ This is especially beneficial in SSR where you can reuse the same `intl` object

## Message Format Syntax Changes

We've rewritten our parser to be more faithful to [ICU Message Format](https://unicode-org.github.io/icu-docs/apidoc/released/icu4j/com/ibm/icu/text/MessageFormat.html), in order to potentially support skeleton. So far the backwards-incompatible changes are:
We've rewritten our parser to be more faithful to [ICU Message Format](https://unicode-org.github.io/icu/userguide/format_parse/messages/), in order to potentially support skeleton. So far the backwards-incompatible changes are:

### Escape character has been changed to apostrophe (`'`).

Expand Down
4 changes: 2 additions & 2 deletions translated/zh-TW/website/docs/core-concepts/icu-syntax.md
Expand Up @@ -58,7 +58,7 @@ Sometimes embedding how the number will be formatted provides great context to t
The price of this bagel is {num, number, ::sign-always compact-short currency/GBP}
```

You can read more about this [here](https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md).
You can read more about this [here](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html).

### `date` Type

Expand Down Expand Up @@ -92,7 +92,7 @@ Internally it uses the `Intl.DateTimeFormat` API. You can define custom values f

### Supported DateTime Skeleton

Similar to `number` type, we also support ICU DateTime skeleton. ICU provides a [wide array of pattern](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table) to customize date time format. However, not all of them are available via ECMA402's Intl API. Therefore, we only support the following patterns
Similar to `number` type, we also support ICU DateTime skeleton. ICU provides a [wide array of pattern](https://unicode-org.github.io/icu/userguide/format_parse/datetime/#date-field-symbol-table) to customize date time format. However, not all of them are available via ECMA402's Intl API. Therefore, we only support the following patterns

| Symbol | Meaning | Notes |
| ------ | ----------------------------- | ------------------------- |
Expand Down
2 changes: 1 addition & 1 deletion translated/zh-TW/website/docs/intl-messageformat.md
Expand Up @@ -210,7 +210,7 @@ new IntlMessageFormat(
).format({price: 100})
```

A full set of options and syntax can be found [here](https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md)
A full set of options and syntax can be found [here](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html)

#### Date/Time Skeleton

Expand Down
Expand Up @@ -350,7 +350,7 @@ This is especially beneficial in SSR where you can reuse the same `intl` object

## Message Format Syntax Changes

We've rewritten our parser to be more faithful to [ICU Message Format](https://unicode-org.github.io/icu-docs/apidoc/released/icu4j/com/ibm/icu/text/MessageFormat.html), in order to potentially support skeleton. So far the backwards-incompatible changes are:
We've rewritten our parser to be more faithful to [ICU Message Format](https://unicode-org.github.io/icu/userguide/format_parse/messages/), in order to potentially support skeleton. So far the backwards-incompatible changes are:

### Escape character has been changed to apostrophe (`'`).

Expand Down