Skip to content

Commit

Permalink
Merge branch 'yiisoft:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
WinterSilence authored Nov 27, 2022
2 parents f4f2dc5 + 5202140 commit 35671e3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/guide-es/rest-response-formatting.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Cuando se maneja una petición al API RESTful, una aplicación realiza usualment
con el formato de la respuesta:

1. Determinar varios factores que pueden afectar al formato de la respuesta, como son el tipo de medio, lenguaje, versión, etc.
Este proceso es también conocido como [negociación de contenido (content negotiation)](https://en.wikipedia.org/wiki/Content_negotiation).
Este proceso es también conocido como [negociación de contenido (content negotiation)](https://es.wikipedia.org/wiki/Negociaci%C3%B3n_de_contenido).
2. La conversión de objetos recurso en arrays, como está descrito en la sección [Recursos (Resources)](rest-resources.md).
Esto es realizado por la clase [[yii\rest\Serializer]].
3. La conversión de arrays en cadenas con el formato determinado por el paso de negociación de contenido. Esto es
Expand Down
2 changes: 1 addition & 1 deletion docs/guide-ja/rest-controllers.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function behaviors()
コントローラに [CORS (クロス・オリジン・リソース共有)](structure-filters.md#cors) フィルタを追加するのは、上記の他のフィルタを追加するのより、若干複雑になります。
と言うのは、CORS フィルタは認証メソッドより前に適用されなければならないため、他のフィルタとは少し異なるアプローチが必要だからです。
また、ブラウザが認証クレデンシャルを送信する必要なく、リクエストが出来るかどうかを前もって安全に判断できるように、
[CORS プリフライト・リクエスト](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#preflighted_requests)
[CORS プリフライト・リクエスト](https://developer.mozilla.org/ja/docs/Web/HTTP/CORS#preflighted_requests)
の認証を無効にする必要もあります。
下記のコードは、[[yii\rest\ActiveController]] を拡張した既存のコントローラに
[[yii\filters\Cors]] フィルタを追加するのに必要なコードを示しています。
Expand Down
2 changes: 1 addition & 1 deletion docs/guide-zh-CN/rest-controllers.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function behaviors()
[Cross-Origin Resource Sharing](structure-filters.md#cors) 过滤器添加到控制器比添加到上述其他过滤器中要复杂一些,
因为必须在认证方法之前应用 CORS 过滤器,
因此与其他过滤器相比,需要一些稍微不同的方式来实现。
并且还要为 [CORS Preflight requests](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#preflighted_requests) 禁用身份验证,
并且还要为 [CORS Preflight requests](https://developer.mozilla.org/zh-CN/docs/Web/HTTP/CORS#%E9%A2%84%E6%A3%80%E8%AF%B7%E6%B1%82) 禁用身份验证,
这样浏览器就可以安全地确定是否可以事先做出请求,
而无需发送身份验证凭据。
下面显示了将 [[yii\filters\Cors]] 过滤器添加到从 [[yii\rest\ActiveController]] 扩展的控制器所需的代码:
Expand Down
2 changes: 1 addition & 1 deletion docs/guide-zh-CN/rest-response-formatting.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
来处理响应格式:

1. 确定可能影响响应格式的各种因素,例如媒介类型,语言,版本,等等。
这个过程也被称为 [content negotiation](https://en.wikipedia.org/wiki/Content_negotiation)
这个过程也被称为 [content negotiation](https://zh.wikipedia.org/wiki/%E5%86%85%E5%AE%B9%E5%8D%8F%E5%95%86)
2. 资源对象转换为数组,如在 [Resources](rest-resources.md) 部分中所描述的。
通过 [[yii\rest\Serializer]] 来完成。
3. 通过内容协商步骤将数组转换成字符串。
Expand Down
2 changes: 1 addition & 1 deletion framework/messages/pt/yii.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
'The requested view "{name}" was not found.' => 'A visualização solicitada "{name}" não foi encontrada.',
'Unknown alias: -{name}' => 'Alias desconhecido: -{name}',
'Unknown filter attribute "{attribute}"' => 'Atributo de filtro desconhecido "{attribute}"',
'View' => 'Vêr',
'View' => 'Ver',
'Yii Framework' => 'Yii Framework',
'You should upload at least {limit, number} {limit, plural, one{file} other{files}}.' => 'A transferência deve ser pelo menos {limit, number} {limit, plural, one{ficheiro} other{ficheiros}}. ',
'in {delta, plural, =1{a day} other{# days}}' => 'em {delta, plural, =1{um dia} other{# dias}}',
Expand Down

0 comments on commit 35671e3

Please sign in to comment.