- From: Eric <notifications@github.com>
- Date: Tue, 25 Jun 2024 01:43:40 -0700
- To: w3c/manifest <manifest@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 25 June 2024 08:43:44 UTC
String localization should be a native feature for all strings, so it is not proper to call it translation.
A string is can be as simple as a very primitive string like this, which only support one language:
```text
"Hello world!"
```
or it can be a multi language supported one like this:
```json
{
"en": " Hello World!",
"en-us": " Hello World!",
"zh": "你好世界!"
"zh-cn": "你好世界!"
// ...
}
```
--
Reply to this email directly or view it on GitHub:
https://github.com/w3c/manifest/issues/676#issuecomment-2188324370
You are receiving this because you are subscribed to this thread.
Message ID: <w3c/manifest/issues/676/2188324370@github.com>
Received on Tuesday, 25 June 2024 08:43:44 UTC