From 58706ce9dc0f32fdb5d8d4ed42e8cf15f87e2e86 Mon Sep 17 00:00:00 2001 From: Toru Kobayashi Date: Mon, 16 Oct 2023 22:02:52 +0900 Subject: [PATCH] docs: sync translation for the return value of useSWR --- pages/index.es-ES.mdx | 2 +- pages/index.fr-FR.mdx | 2 +- pages/index.pt-BR.mdx | 2 +- pages/index.ru.mdx | 2 +- pages/index.zh-CN.mdx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/index.es-ES.mdx b/pages/index.es-ES.mdx index a5ea820a..ac48f63a 100644 --- a/pages/index.es-ES.mdx +++ b/pages/index.es-ES.mdx @@ -44,7 +44,7 @@ function Profile() { En este ejemplo, el hook `useSWR` acepta una `key` que es un cadena y una función `fetcher`. `key` es un indentificador único de los datos (normalmente la URL de la API) y pasará al `fetcher`. El `fetcher` puede ser cualquier función asíncrona que devuelve datos, puedes utilizar el fetch nativo o herramientas como Axios. -El hook devuelve 2 valores: `data` y `error`, basados en el estado de la solicitud. +The hook returns 3 values: `data`, `isLoading` and `error`, based on the status of the request. ## Características [#features] diff --git a/pages/index.fr-FR.mdx b/pages/index.fr-FR.mdx index 5afe0afd..e60fd1b9 100644 --- a/pages/index.fr-FR.mdx +++ b/pages/index.fr-FR.mdx @@ -42,7 +42,7 @@ function Profile() { Dans cet exemple, le hook `useSWR` accepte un string `key` et une fonction `fetcher`. `key` est un identifiant unique de la donnée (normalement l'URL de l'API) et sera passé à `fetcher`. `fetcher` peut être n'importe quelle fonction asynchrone qui renvoie la donnée, vous pouvez utiliser le fetch natif ou des outils comme Axios. -Le hook renvoie 2 valeurs: `data` et `error`, en fonction du statut de la requête. +The hook returns 3 values: `data`, `isLoading` and `error`, based on the status of the request. ## Fonctionnalités [#features] diff --git a/pages/index.pt-BR.mdx b/pages/index.pt-BR.mdx index f229b5a6..0d06d50f 100644 --- a/pages/index.pt-BR.mdx +++ b/pages/index.pt-BR.mdx @@ -42,7 +42,7 @@ function Profile() { Nesse exemplo, o hook `useSWR` aceita uma string `key` e uma função `fetcher`. `key` é um identificador único do dado (normalmente a URL da API) e será passado para `fetcher`. `fetcher` pode ser qualquer função assíncrona que retorna o dado, você pode usar o fetch nativo ou ferramentas como Axios. -O hook retorna 2 valores: `data` e `error`, baseado no status da solicitação. +The hook returns 3 values: `data`, `isLoading` and `error`, based on the status of the request. ## Funcionalidades [#features] diff --git a/pages/index.ru.mdx b/pages/index.ru.mdx index f08c001b..acbad02c 100644 --- a/pages/index.ru.mdx +++ b/pages/index.ru.mdx @@ -43,7 +43,7 @@ function Profile() { В этом примере, хук `useSWR` принимает строку `key` и функцию `fetcher`. `key` — это уникальный идентификатор данных (обычно URL-адрес API), который будет передан в `fetcher`. `fetcher` может быть любая асинхронная функция, которая возвращает данные, будь то нативный fetch или такие инструменты как Axios. -Хук возвращает 2 значения: `data` и `error`, основанные на статусе запроса. +The hook returns 3 values: `data`, `isLoading` and `error`, based on the status of the request. ## Особенности [#features] diff --git a/pages/index.zh-CN.mdx b/pages/index.zh-CN.mdx index d37c6255..6904d51f 100644 --- a/pages/index.zh-CN.mdx +++ b/pages/index.zh-CN.mdx @@ -42,7 +42,7 @@ function Profile() { 该示例中,`useSWR` hook 接受一个字符串 `key` 和一个函数 `fetcher`。`key` 是数据的唯一标识符(通常是 API URL),并传递给 `fetcher`。`fetcher` 可以是任何返回数据的异步函数,你可以使用原生的 fetch 或 Axios 之类的工具。 -基于请求的状态,这个 hook 返回 2 个值:`data` 和 `error`。 +The hook returns 3 values: `data`, `isLoading` and `error`, based on the status of the request. ## 特性 [#features]