Documentation api/accelerator translated to pt-BR
This commit is contained in:
parent
f56d715104
commit
654626305c
1 changed files with 46 additions and 0 deletions
46
docs-translations/pt-BR/api/accelerator.md
Normal file
46
docs-translations/pt-BR/api/accelerator.md
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
# Acelerador (teclas de atalhos)
|
||||||
|
|
||||||
|
Um acelerador é uma string que representa um atalho de tecla. Isso pode conter
|
||||||
|
multiplos modificadores e códigos chaves, combinado pelo caracter `+`.
|
||||||
|
|
||||||
|
Exemplos:
|
||||||
|
|
||||||
|
* `Command+A`
|
||||||
|
* `Ctrl+Shift+Z`
|
||||||
|
|
||||||
|
## Aviso sobre plataformas
|
||||||
|
|
||||||
|
No Linux e no Windows a tecla `Command` não tem nenhum efeito,
|
||||||
|
então use `CommandOrControl` que representa a tecla `Command` existente no OSX e
|
||||||
|
`Control` no Linux e no Windows para definir aceleradores (atalhos).
|
||||||
|
|
||||||
|
A chave `Super` está mapeada para a tecla `Windows` para Windows e Linux,
|
||||||
|
e para a tecla `Cmd` para OSX.
|
||||||
|
|
||||||
|
## Modificadores disponiveis
|
||||||
|
|
||||||
|
* `Command` (ou `Cmd` abreviado)
|
||||||
|
* `Control` (ou `Ctrl` abreviado)
|
||||||
|
* `CommandOrControl` (ou `CmdOrCtrl` abreviado)
|
||||||
|
* `Alt`
|
||||||
|
* `Shift`
|
||||||
|
* `Super`
|
||||||
|
|
||||||
|
## Códigos chaves disponiveis
|
||||||
|
|
||||||
|
* `0` to `9`
|
||||||
|
* `A` to `Z`
|
||||||
|
* `F1` to `F24`
|
||||||
|
* Punctuations like `~`, `!`, `@`, `#`, `$`, etc.
|
||||||
|
* `Plus`
|
||||||
|
* `Space`
|
||||||
|
* `Backspace`
|
||||||
|
* `Delete`
|
||||||
|
* `Insert`
|
||||||
|
* `Return` (or `Enter` as alias)
|
||||||
|
* `Up`, `Down`, `Left` and `Right`
|
||||||
|
* `Home` and `End`
|
||||||
|
* `PageUp` and `PageDown`
|
||||||
|
* `Escape` (or `Esc` for short)
|
||||||
|
* `VolumeUp`, `VolumeDown` and `VolumeMute`
|
||||||
|
* `MediaNextTrack`, `MediaPreviousTrack`, `MediaStop` and `MediaPlayPause`
|
Loading…
Reference in a new issue