Skip to content

Commit 5d24043

Browse files
author
brendon silva
committed
docs: adding pt-br translations
1 parent 697a2a7 commit 5d24043

39 files changed

+219
-222
lines changed

docs/pt-br/_coverpage.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

docs/pt-br/_navbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
- [Inglês](/en/readme.md)
22
- [Chinês](/zh-cn/readme.md)
3-
- [Portuguese](/pt-br/readme.md)
3+
- [Português](/pt-br/readme.md)

docs/pt-br/_sidebar.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
- [Information](/en/readme.md)
2-
- [Quick start](/en/quick-start/quick-start.md)
3-
- Class component
4-
- [Component](/en/class-component/component/component.md)
5-
- [Property](/en/class-component/property/property.md)
6-
- [Method](/en/class-component/method/method.md)
7-
- [Hooks](/en/class-component/hooks/hooks.md)
8-
- [Component property](/en/class-component/component-property/component-property.md)
9-
- [Accessor](/en/class-component/accessor/accessor.md)
10-
- [Event](/en/class-component/event/event.md)
11-
- [Reference](/en/class-component/reference/reference.md)
12-
- [Watcher](/en/class-component/watcher/watcher.md)
13-
- [Injection](/en/class-component/injection/injection.md)
14-
- [Model](/en/class-component/model/model.md)
15-
- [Use](/en/class-component/use/use.md)
16-
- Inheritance
17-
- [ECMAScript class](/en/inheritance/es-class/es-class.md)
18-
- [Component](/en/inheritance/component/component.md)
19-
- [Complex example](/en/inheritance/complex-example/complex-example.md)
1+
- [Informações](/pt-br/readme.md)
2+
- [Começar](/pt-br/quick-start/quick-start.md)
3+
- Class components
4+
- [Componentes](/pt-br/class-component/component/component.md)
5+
- [Propriedades](/pt-br/class-component/property/property.md)
6+
- [Métodos](/pt-br/class-component/method/method.md)
7+
- [Hooks](/pt-br/class-component/hooks/hooks.md)
8+
- [Propriedades dos Componentes](/pt-br/class-component/component-property/component-property.md)
9+
- [Acessores](/pt-br/class-component/accessor/accessor.md)
10+
- [Eventos](/pt-br/class-component/event/event.md)
11+
- [Referencias](/pt-br/class-component/reference/reference.md)
12+
- [Observadores](/pt-br/class-component/watcher/watcher.md)
13+
- [Inject](/pt-br/class-component/injection/injection.md)
14+
- [Model](/pt-br/class-component/model/model.md)
15+
- [Use](/pt-br/class-component/use/use.md)
16+
- Herança
17+
- [Classes ECMAScript](/pt-br/inheritance/es-class/es-class.md)
18+
- [Componentes](/pt-br/inheritance/component/component.md)
19+
- [Exemplo complexo](/pt-br/inheritance/complex-example/complex-example.md)
2020
- TSX
21-
- [TSX render](/en/tsx/tsx-render/tsx-render.md)
22-
- [Attribute types](/en/tsx/attribute-types/attribute-types.md)
23-
- Compatibility
24-
- [reflect-metadata](/en/compatibility/reflect-metadata/reflect-metadata.md)
21+
- [TSX render](/pt-br/tsx/tsx-render/tsx-render.md)
22+
- [Tipando Atributos](/pt-br/tsx/attribute-types/attribute-types.md)
23+
- Compatibilidade
24+
- [reflect-metadata](/pt-br/compatibility/reflect-metadata/reflect-metadata.md)
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
## Usage
1+
## Utilização
22

3-
Property getters will be tranformed into `{computed:{get:Foo}}`.
3+
Getters de uma propriedade será transformada em `{computed:{get:Foo}}`.
44

55
[](./code-usage.ts ':include :type=code typescript')
66

7-
## Writable
7+
## Escrita
88

9-
Property setters will be tranformed into `{computed:{set:Foo}}`.
9+
Setters de uma propriedade será transformada em `{computed:{set:Foo}}`.
1010

1111
[](./code-writable.ts ':include :type=code typescript')
1212

1313
## Vanilla getter
1414

15-
We can define a ES vanilla getter by `@Vanilla`.
15+
Nós podemos definir um getter utilizando ES vanilla com `@Vanilla`.
1616

1717
[](./code-vanilla-getter.ts ':include :type=code typescript')
1818

1919
## Vanilla setter
2020

21-
We can define a ES vanilla setter by `@Vanilla`.
21+
Nós podemos definir também um setter utilizando ES vanilla com `@Vanilla`.
2222

2323
[](./code-vanilla-setter.ts ':include :type=code typescript')
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
## Usage
1+
## Utilização
22

3-
Use `Prop` decorator to define a property in vue's `props`.
3+
Utilize o decorator `Prop` para definir uma propriedade na opção `props` do vue.
44

55
[](./code-usage.ts ':include :type=code typescript')
66

7-
## Options
7+
## Opções
88

99
### default
1010

11-
This is the `default` in vue `props`.
11+
Assim fica a propriedade `default` na opção `props` do vue.
1212

1313
[](./code-option-default.ts ':include :type=code typescript')
1414

1515
### required
1616

17-
This is the `required` in vue `props`.
17+
Assim fica a propriedade `required` na opção `props` do vue.
1818

1919
[](./code-option-required.ts ':include :type=code typescript')
2020

2121
### type
2222

23-
This is the `type` in vue `props`.
23+
Assim fica a propriedade `type` na opção `props` do vue.
2424

2525
[](./code-option-type.ts ':include :type=code typescript')
2626

2727
### validator
2828

29-
This is the `validator` in vue `props`.
29+
Assim fica a propriedade `validator` na opção `props` do vue.
3030

3131
[](./code-option-validator.ts ':include :type=code typescript')

docs/pt-br/class-component/component/code-option-components.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class MyAnotherComponent extends Vue {
77
}
88

99
/*
10-
Vue options component
10+
Componente Vue com options API
1111
{
1212
components:{
1313
MyAnotherComponent

docs/pt-br/class-component/component/code-option-directives.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Component, Vue } from 'vue-facing-decorator'
33

44
/*
5-
Vue options component
5+
Componente Vue com options API
66
{
77
directives:{
88
MyDirective:{}

docs/pt-br/class-component/component/code-option-emits.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Component, Vue } from 'vue-facing-decorator'
33

44
/*
5-
Vue options component
5+
Componente Vue com options API
66
{
77
emits:['MyEvent']
88
}

docs/pt-br/class-component/component/code-option-expose.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Component, Vue } from 'vue-facing-decorator'
33

44
/*
5-
Vue options component
5+
Componente Vue com options API
66
{
77
expose:['name']
88
}

docs/pt-br/class-component/component/code-option-inherit-attrs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Component, Vue } from 'vue-facing-decorator'
33

44
/*
5-
Vue options component
5+
Componente Vue com options API
66
{
77
inheritAttrs:true
88
}

0 commit comments

Comments
 (0)