Browse Source

Fix #15656: Error in the documentation of widget theming (#15734) [skip ci]

tags/2.0.14.1
Vlad Nikishin 7 years ago committed by Alexander Makarov
parent
commit
8cc3830f46
  1. 2
      docs/guide-es/output-theming.md
  2. 2
      docs/guide-ja/output-theming.md
  3. 2
      docs/guide-pt-BR/output-theming.md
  4. 2
      docs/guide-ru/output-theming.md
  5. 2
      docs/guide/output-theming.md

2
docs/guide-es/output-theming.md

@ -76,7 +76,7 @@ siguiente configuración para el componente vista, tema:
```
Con la configuración anterior, se puede crear una versión de la vista `@app/widgets/currency/index.php` para que se
aplique el tema en `@app/themes/basic/widgets/currency/index.php`.
aplique el tema en `@app/themes/basic/widgets/currency/views/index.php`.
Uso de Multiples Rutas
----------------------

2
docs/guide-ja/output-theming.md

@ -81,7 +81,7 @@ $file = $theme->getPath('img/logo.gif');
],
```
これによって、`@app/widgets/currency/views/index.php` に `@app/themes/basic/widgets/currency/index.php` というテーマを適用することが出来ます。
これによって、`@app/widgets/currency/views/index.php` に `@app/themes/basic/widgets/currency/views/index.php` というテーマを適用することが出来ます。
## テーマの継承 <span id="theme-inheritance"></span>

2
docs/guide-pt-BR/output-theming.md

@ -74,7 +74,7 @@ A fim de configurar temas por widgets, você pode configurar [[yii\base\Theme::p
],
```
Isto lhe permitirá tematizar `@app/widgets/currency/views/index.php` com `@app/themes/basic/widgets/currency/index.php`.
Isto lhe permitirá tematizar `@app/widgets/currency/views/index.php` com `@app/themes/basic/widgets/currency/views/index.php`.
## Herança de Tema <span id="theme-inheritance"></span>

2
docs/guide-ru/output-theming.md

@ -82,7 +82,7 @@ $file = $theme->getPath('img/logo.gif');
],
```
Это позволит вам темизировать `@app/widgets/currency/views/index.php` в `@app/themes/basic/widgets/currency/index.php`.
Это позволит вам темизировать `@app/widgets/currency/views/index.php` в `@app/themes/basic/widgets/currency/views/index.php`.
## Наследование тем <span id="theme-inheritance"></span>

2
docs/guide/output-theming.md

@ -82,7 +82,7 @@ In order to theme widgets, you can configure [[yii\base\Theme::pathMap]] in the
],
```
This will allow you to theme `@app/widgets/currency/views/index.php` into `@app/themes/basic/widgets/currency/index.php`.
This will allow you to theme `@app/widgets/currency/views/index.php` into `@app/themes/basic/widgets/currency/views/index.php`.
## Theme Inheritance <span id="theme-inheritance"></span>

Loading…
Cancel
Save