From 1ac8be548b826d0afaa108f1894eda1344e35ad1 Mon Sep 17 00:00:00 2001 From: Yangshun Date: Thu, 13 Apr 2023 16:21:16 +0800 Subject: [PATCH] qns(quiz): update for translations --- .gitignore | 3 ++- .../en-US.mdx | 2 +- .../en-US.mdx | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e194fa6f1..c34cfd214 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .DS_Store .vscode -node_modules \ No newline at end of file +node_modules +crowdin.yml \ No newline at end of file diff --git a/packages/quiz/questions/describe-the-difference-between-a-cookie-sessionstorage-and-localstorage/en-US.mdx b/packages/quiz/questions/describe-the-difference-between-a-cookie-sessionstorage-and-localstorage/en-US.mdx index 81fa08a7e..a86bd6b28 100644 --- a/packages/quiz/questions/describe-the-difference-between-a-cookie-sessionstorage-and-localstorage/en-US.mdx +++ b/packages/quiz/questions/describe-the-difference-between-a-cookie-sessionstorage-and-localstorage/en-US.mdx @@ -12,7 +12,7 @@ Cookies, `localStorage`, and `sessionStorage`, are all: ## Differences -| | Cookie | `localStorage` | `sessionStorage` | +| Property | Cookie | `localStorage` | `sessionStorage` | | --- | --- | --- | --- | | Initiator | Client or server. Server can use `Set-Cookie` header | Client | Client | | Expiry | Manually set | Forever | On tab close | diff --git a/packages/quiz/questions/whats-the-difference-between-inline-and-inline-block/en-US.mdx b/packages/quiz/questions/whats-the-difference-between-inline-and-inline-block/en-US.mdx index 11442035a..0974e79d3 100644 --- a/packages/quiz/questions/whats-the-difference-between-inline-and-inline-block/en-US.mdx +++ b/packages/quiz/questions/whats-the-difference-between-inline-and-inline-block/en-US.mdx @@ -4,7 +4,7 @@ title: What's the difference between `inline` and `inline-block`? Let's also compare with `display: block` for completeness sake. -| | `block` | `inline-block` | `inline` | +| Property | `block` | `inline-block` | `inline` | | --- | --- | --- | --- | | Size | Fills up the width of its parent container. | Depends on content. | Depends on content. | | Positioning | Start on a new line and tolerates no HTML elements next to it (except when you add `float`) | Flows along with other content and allows other elements beside it. | Flows along with other content and allows other elements beside it. |