@bobfrankston/rmfmail 1.2.274 → 1.2.277
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.commitmsg +31 -0
- package/bin/build-tinymce.js +27 -0
- package/client/android-bootstrap.bundle.js +169 -0
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +231 -23
- package/client/app.bundle.js.map +4 -4
- package/client/app.js +81 -1
- package/client/app.js.map +1 -1
- package/client/app.ts +75 -1
- package/client/components/invite-card.js +107 -0
- package/client/components/invite-card.js.map +1 -0
- package/client/components/invite-card.ts +119 -0
- package/client/components/message-viewer.js +42 -17
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +42 -16
- package/client/compose/compose.bundle.js +90 -2
- package/client/compose/compose.bundle.js.map +4 -4
- package/client/compose/compose.js +26 -1
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +22 -1
- package/client/compose/editor.js +12 -1
- package/client/compose/editor.js.map +1 -1
- package/client/compose/editor.ts +17 -2
- package/client/index.html +1 -0
- package/client/lib/rmf-tiny.js +3 -0
- package/client/lib/tinymce/langs/ar-SA.js +440 -0
- package/client/lib/tinymce/langs/ar.js +441 -0
- package/client/lib/tinymce/langs/az.js +440 -0
- package/client/lib/tinymce/langs/be.js +440 -0
- package/client/lib/tinymce/langs/bg-BG.js +440 -0
- package/client/lib/tinymce/langs/bn-BD.js +440 -0
- package/client/lib/tinymce/langs/bs.js +440 -0
- package/client/lib/tinymce/langs/ca.js +440 -0
- package/client/lib/tinymce/langs/cs.js +440 -0
- package/client/lib/tinymce/langs/cy.js +440 -0
- package/client/lib/tinymce/langs/da.js +440 -0
- package/client/lib/tinymce/langs/de.js +440 -0
- package/client/lib/tinymce/langs/el.js +440 -0
- package/client/lib/tinymce/langs/eo.js +440 -0
- package/client/lib/tinymce/langs/es-MX.js +440 -0
- package/client/lib/tinymce/langs/es.js +440 -0
- package/client/lib/tinymce/langs/et.js +440 -0
- package/client/lib/tinymce/langs/eu.js +440 -0
- package/client/lib/tinymce/langs/fa.js +441 -0
- package/client/lib/tinymce/langs/fi.js +440 -0
- package/client/lib/tinymce/langs/fr-FR.js +440 -0
- package/client/lib/tinymce/langs/gl.js +440 -0
- package/client/lib/tinymce/langs/he-IL.js +440 -0
- package/client/lib/tinymce/langs/hr.js +440 -0
- package/client/lib/tinymce/langs/hu-HU.js +440 -0
- package/client/lib/tinymce/langs/hy.js +440 -0
- package/client/lib/tinymce/langs/id.js +440 -0
- package/client/lib/tinymce/langs/index.json +63 -0
- package/client/lib/tinymce/langs/is-IS.js +440 -0
- package/client/lib/tinymce/langs/it.js +440 -0
- package/client/lib/tinymce/langs/ja.js +440 -0
- package/client/lib/tinymce/langs/ka-GE.js +440 -0
- package/client/lib/tinymce/langs/kab.js +440 -0
- package/client/lib/tinymce/langs/kk.js +440 -0
- package/client/lib/tinymce/langs/ko-KR.js +440 -0
- package/client/lib/tinymce/langs/lt.js +440 -0
- package/client/lib/tinymce/langs/lv.js +440 -0
- package/client/lib/tinymce/langs/nb-NO.js +440 -0
- package/client/lib/tinymce/langs/ne.js +440 -0
- package/client/lib/tinymce/langs/nl-BE.js +440 -0
- package/client/lib/tinymce/langs/nl.js +440 -0
- package/client/lib/tinymce/langs/oc.js +440 -0
- package/client/lib/tinymce/langs/pl.js +440 -0
- package/client/lib/tinymce/langs/pt-BR.js +440 -0
- package/client/lib/tinymce/langs/pt-PT.js +440 -0
- package/client/lib/tinymce/langs/ro.js +440 -0
- package/client/lib/tinymce/langs/ru.js +440 -0
- package/client/lib/tinymce/langs/sk.js +440 -0
- package/client/lib/tinymce/langs/sl-SI.js +440 -0
- package/client/lib/tinymce/langs/sr.js +440 -0
- package/client/lib/tinymce/langs/sv-SE.js +440 -0
- package/client/lib/tinymce/langs/ta.js +440 -0
- package/client/lib/tinymce/langs/tg.js +440 -0
- package/client/lib/tinymce/langs/th-TH.js +440 -0
- package/client/lib/tinymce/langs/tr.js +440 -0
- package/client/lib/tinymce/langs/ug.js +440 -0
- package/client/lib/tinymce/langs/uk.js +440 -0
- package/client/lib/tinymce/langs/vi.js +440 -0
- package/client/lib/tinymce/langs/zh-CN.js +440 -0
- package/client/lib/tinymce/langs/zh-HK.js +440 -0
- package/client/lib/tinymce/langs/zh-MO.js +440 -0
- package/client/lib/tinymce/langs/zh-TW.js +440 -0
- package/client/lib/tinymce-langs.js +96 -0
- package/client/lib/tinymce-langs.js.map +1 -0
- package/client/lib/tinymce-langs.ts +99 -0
- package/client/package.json +1 -1
- package/client/styles/components.css +48 -0
- package/docs/editor.md +29 -3
- package/docs/preferences.md +2 -1
- package/npmchanges.md +29 -0
- package/package.json +18 -15
- package/packages/mailx-imap/package-lock.json +2 -2
- package/packages/mailx-imap/package.json +2 -2
- package/packages/mailx-settings/package.json +1 -1
- package/packages/mailx-store/package.json +1 -1
- package/packages/mailx-store/store.d.ts +5 -0
- package/packages/mailx-store/store.d.ts.map +1 -1
- package/packages/mailx-store/store.js +21 -0
- package/packages/mailx-store/store.js.map +1 -1
- package/packages/mailx-store/store.ts +27 -0
- package/packages/mailx-types/index.d.ts +56 -0
- package/packages/mailx-types/index.d.ts.map +1 -1
- package/packages/mailx-types/index.js +187 -0
- package/packages/mailx-types/index.js.map +1 -1
- package/packages/mailx-types/index.ts +192 -0
- package/packages/mailx-types/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-31304 → node_modules.npmglobalize-stash-48352}/.package-lock.json +0 -0
|
@@ -0,0 +1,440 @@
|
|
|
1
|
+
tinymce.addI18n("pt-BR", {
|
|
2
|
+
"#": "#",
|
|
3
|
+
"Accessibility": "Acessibilidade",
|
|
4
|
+
"Accordion": "Acorde\xe3o",
|
|
5
|
+
"Accordion body...": "Corpo do acorde\xe3o...",
|
|
6
|
+
"Accordion summary...": "Resumo do acorde\xe3o...",
|
|
7
|
+
"Action": "A\xe7\xe3o",
|
|
8
|
+
"Activity": "Atividade",
|
|
9
|
+
"Address": "Endere\xe7o",
|
|
10
|
+
"Advanced": "Avan\xe7ado",
|
|
11
|
+
"Align": "Alinhamento",
|
|
12
|
+
"Align center": "Centralizar",
|
|
13
|
+
"Align left": "Alinhar \xe0 esquerda",
|
|
14
|
+
"Align right": "Alinhar \xe0 direita",
|
|
15
|
+
"Alignment": "Alinhamento",
|
|
16
|
+
"Alignment {0}": "Alinhamento {0}",
|
|
17
|
+
"All": "Tudo",
|
|
18
|
+
"Alternative description": "Descri\xe7\xe3o alternativa",
|
|
19
|
+
"Alternative source": "Endere\xe7o alternativo",
|
|
20
|
+
"Alternative source URL": "Endere\xe7o URL alternativo",
|
|
21
|
+
"Anchor": "\xc2ncora",
|
|
22
|
+
"Anchor...": "\xc2ncora...",
|
|
23
|
+
"Anchors": "\xc2ncoras",
|
|
24
|
+
"Animals and Nature": "Animais e Natureza",
|
|
25
|
+
"Arrows": "Setas",
|
|
26
|
+
"B": "B",
|
|
27
|
+
"Background color": "Cor do fundo",
|
|
28
|
+
"Background color menu": "Menu de cor de fundo",
|
|
29
|
+
"Background color {0}": "Cor de fundo {0}",
|
|
30
|
+
"Black": "Preto",
|
|
31
|
+
"Block": "Par\xe1grafo",
|
|
32
|
+
"Block {0}": "Bloco {0}",
|
|
33
|
+
"Blockquote": "Bloco de cita\xe7\xe3o",
|
|
34
|
+
"Blocks": "Par\xe1grafo",
|
|
35
|
+
"Blue": "Azul",
|
|
36
|
+
"Blue channel": "Canal azul",
|
|
37
|
+
"Body": "Corpo",
|
|
38
|
+
"Bold": "Negrito",
|
|
39
|
+
"Border": "Borda",
|
|
40
|
+
"Border color": "Cor da borda",
|
|
41
|
+
"Border style": "Estilo da borda",
|
|
42
|
+
"Border width": "Espessura da borda",
|
|
43
|
+
"Bottom": "Inferior",
|
|
44
|
+
"Browse files": "Procurar arquivos",
|
|
45
|
+
"Browse for an image": "Procurar uma imagem",
|
|
46
|
+
"Browse links": "Procurar links",
|
|
47
|
+
"Build with {0}": "Crie com o {0}",
|
|
48
|
+
"Bullet list": "Lista com marcadores",
|
|
49
|
+
"Cancel": "Cancelar",
|
|
50
|
+
"Caption": "Legenda",
|
|
51
|
+
"Cell": "C\xe9lula",
|
|
52
|
+
"Cell padding": "Espa\xe7amento interno da c\xe9lula",
|
|
53
|
+
"Cell properties": "Propriedades da c\xe9lula",
|
|
54
|
+
"Cell spacing": "Espa\xe7amento da c\xe9lula",
|
|
55
|
+
"Cell styles": "Estilos da c\xe9lula",
|
|
56
|
+
"Cell type": "Tipo de c\xe9lula",
|
|
57
|
+
"Center": "Centro",
|
|
58
|
+
"Characters": "Caracteres",
|
|
59
|
+
"Characters (no spaces)": "Caracteres (sem espa\xe7os)",
|
|
60
|
+
"Circle": "C\xedrculo",
|
|
61
|
+
"Class": "Classe",
|
|
62
|
+
"Clear formatting": "Limpar formata\xe7\xe3o",
|
|
63
|
+
"Close": "Fechar",
|
|
64
|
+
"Code": "Mono espa\xe7ada",
|
|
65
|
+
"Code sample...": "C\xf3digo...",
|
|
66
|
+
"Code view": "Ver c\xf3digo",
|
|
67
|
+
"Color Picker": "Seletor de cores",
|
|
68
|
+
"Color swatch": "Amostra de cor",
|
|
69
|
+
"Cols": "Colunas",
|
|
70
|
+
"Column": "Coluna",
|
|
71
|
+
"Column clipboard actions": "A\xe7\xf5es da \xe1rea de transfer\xeancia de colunas",
|
|
72
|
+
"Column group": "Grupo de colunas",
|
|
73
|
+
"Column header": "Cabe\xe7alho da coluna",
|
|
74
|
+
"Constrain proportions": "Restringir propor\xe7\xf5es",
|
|
75
|
+
"Copy": "Copiar",
|
|
76
|
+
"Copy column": "Copiar coluna",
|
|
77
|
+
"Copy row": "Copiar linha",
|
|
78
|
+
"Could not find the specified string.": "N\xe3o foi poss\xedvel encontrar o termo especificado.",
|
|
79
|
+
"Could not load emojis": "N\xe3o foi poss\xedvel carregar os emojis",
|
|
80
|
+
"Count": "Contar",
|
|
81
|
+
"Currency": "Moeda",
|
|
82
|
+
"Current window": "Janela atual",
|
|
83
|
+
"Custom color": "Cor personalizada",
|
|
84
|
+
"Custom...": "Personalizado...",
|
|
85
|
+
"Cut": "Recortar",
|
|
86
|
+
"Cut column": "Recortar coluna",
|
|
87
|
+
"Cut row": "Recortar linha",
|
|
88
|
+
"Dark Blue": "Azul escuro",
|
|
89
|
+
"Dark Gray": "Cinza escuro",
|
|
90
|
+
"Dark Green": "Verde escuro",
|
|
91
|
+
"Dark Orange": "Laranja escuro",
|
|
92
|
+
"Dark Purple": "Roxo escuro",
|
|
93
|
+
"Dark Red": "Vermelho escuro",
|
|
94
|
+
"Dark Turquoise": "Turquesa escuro",
|
|
95
|
+
"Dark Yellow": "Amarelo escuro",
|
|
96
|
+
"Dashed": "Tracejada",
|
|
97
|
+
"Date/time": "Data/hora",
|
|
98
|
+
"Decrease indent": "Diminuir recuo",
|
|
99
|
+
"Default": "Padr\xe3o",
|
|
100
|
+
"Delete accordion": "Excluir acorde\xe3o",
|
|
101
|
+
"Delete column": "Excluir coluna",
|
|
102
|
+
"Delete row": "Excluir linha",
|
|
103
|
+
"Delete table": "Excluir tabela",
|
|
104
|
+
"Dimensions": "Dimens\xf5es",
|
|
105
|
+
"Disc": "Disco",
|
|
106
|
+
"Div": "Se\xe7\xe3o (div)",
|
|
107
|
+
"Document": "Documento",
|
|
108
|
+
"Dotted": "Pontilhada",
|
|
109
|
+
"Double": "Dupla",
|
|
110
|
+
"Drop an image here": "Arraste uma imagem para c\xe1",
|
|
111
|
+
"Dropped file type is not supported": "O tipo do arquivo arrastado n\xe3o \xe9 compat\xedvel",
|
|
112
|
+
"Edit": "Editar",
|
|
113
|
+
"Editor's height: {0} pixels": "Altura do editor: {0} p\xedxeis",
|
|
114
|
+
"Editor's height: {0} pixels, Editor's width: {1} pixels": "Altura do editor: {0} p\xedxeis, Largura do editor: {1} p\xedxeis",
|
|
115
|
+
"Embed": "Incorporar",
|
|
116
|
+
"Emojis": "Emojis",
|
|
117
|
+
"Emojis...": "Emojis...",
|
|
118
|
+
"Error": "Erro",
|
|
119
|
+
"Error: Form submit field collision.": "Erro: colis\xe3o de bot\xe3o de envio do formul\xe1rio.",
|
|
120
|
+
"Error: No form element found.": "Erro: elemento de formul\xe1rio n\xe3o encontrado.",
|
|
121
|
+
"Extended Latin": "Latino estendido",
|
|
122
|
+
"Failed to initialize plugin: {0}": "Falha ao iniciar plugin: {0}",
|
|
123
|
+
"Failed to load plugin url: {0}": "Falha ao carregar URL do plugin: {0}",
|
|
124
|
+
"Failed to load plugin: {0} from url {1}": "Falha ao carregar plugin: {0} da URL {1}",
|
|
125
|
+
"Failed to upload image: {0}": "Falha ao carregar imagem: {0}",
|
|
126
|
+
"File": "Arquivo",
|
|
127
|
+
"Find": "Localizar",
|
|
128
|
+
"Find (if searchreplace plugin activated)": "Localizar (se o plugin de localizar e substituir estiver ativado)",
|
|
129
|
+
"Find and Replace": "Localizar e substituir",
|
|
130
|
+
"Find and replace...": "Localizar e substituir...",
|
|
131
|
+
"Find in selection": "Localizar na sele\xe7\xe3o",
|
|
132
|
+
"Find whole words only": "Encontrar somente palavras inteiras",
|
|
133
|
+
"Flags": "Bandeiras",
|
|
134
|
+
"Focus to contextual toolbar": "Focalizar barra de ferramentas contextual",
|
|
135
|
+
"Focus to element path": "Focalizar caminho do elemento",
|
|
136
|
+
"Focus to menubar": "Focalizar barra de menus",
|
|
137
|
+
"Focus to notification": "Foco na notifica\xe7\xe3o",
|
|
138
|
+
"Focus to toolbar": "Focalizar barra de ferramentas",
|
|
139
|
+
"Font": "Fonte",
|
|
140
|
+
"Font size {0}": "Tamanho da fonte {0}",
|
|
141
|
+
"Font sizes": "Tamanho da fonte",
|
|
142
|
+
"Font {0}": "Fonte {0}",
|
|
143
|
+
"Fonts": "Fonte",
|
|
144
|
+
"Food and Drink": "Comida e Bebida",
|
|
145
|
+
"Footer": "Rodap\xe9",
|
|
146
|
+
"Format": "Formatar",
|
|
147
|
+
"Format {0}": "Formato {0}",
|
|
148
|
+
"Formats": "Formata\xe7\xe3o",
|
|
149
|
+
"Fullscreen": "Tela cheia",
|
|
150
|
+
"G": "G",
|
|
151
|
+
"General": "Geral",
|
|
152
|
+
"Gray": "Cinza",
|
|
153
|
+
"Green": "Verde",
|
|
154
|
+
"Green channel": "Canal verde",
|
|
155
|
+
"Groove": "Chanfrada",
|
|
156
|
+
"Handy Shortcuts": "Atalhos \xfateis",
|
|
157
|
+
"Header": "Cabe\xe7alho",
|
|
158
|
+
"Header cell": "C\xe9lula de cabe\xe7alho",
|
|
159
|
+
"Heading 1": "T\xedtulo 1",
|
|
160
|
+
"Heading 2": "T\xedtulo 2",
|
|
161
|
+
"Heading 3": "T\xedtulo 3",
|
|
162
|
+
"Heading 4": "T\xedtulo 4",
|
|
163
|
+
"Heading 5": "T\xedtulo 5",
|
|
164
|
+
"Heading 6": "T\xedtulo 6",
|
|
165
|
+
"Headings": "T\xedtulos",
|
|
166
|
+
"Height": "Altura",
|
|
167
|
+
"Height:": "Altura:",
|
|
168
|
+
"Help": "Ajuda",
|
|
169
|
+
"Hex color code": "C\xf3digo hexadecimal de cor",
|
|
170
|
+
"Hexadecimal only, 000000 to FFFFFF": "Somente hexadecimal, 000000 a FFFFFF",
|
|
171
|
+
"Hidden": "Oculta",
|
|
172
|
+
"Horizontal align": "Alinhamento horizontal",
|
|
173
|
+
"Horizontal line": "Linha horizontal",
|
|
174
|
+
"Horizontal space": "Espa\xe7o horizontal",
|
|
175
|
+
"ID": "ID",
|
|
176
|
+
"ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "O ID deve come\xe7ar com uma letra, seguida apenas por letras, n\xfameros, tra\xe7os, v\xedrgulas ou sublinhas.",
|
|
177
|
+
"Image is decorative": "A imagem \xe9 decorativa",
|
|
178
|
+
"Image list": "Lista de imagens",
|
|
179
|
+
"Image title": "T\xedtulo da imagem",
|
|
180
|
+
"Image...": "Imagem...",
|
|
181
|
+
"ImageProxy HTTP error: Could not find Image Proxy": "Erro de HTTP ImageProxy: n\xe3o foi poss\xedvel encontrar o proxy de imagem",
|
|
182
|
+
"ImageProxy HTTP error: Incorrect Image Proxy URL": "Erro de HTTP ImageProxy: URL de proxy de imagem incorreto",
|
|
183
|
+
"ImageProxy HTTP error: Rejected request": "Erro HTTP ImageProxy: solicita\xe7\xe3o rejeitada",
|
|
184
|
+
"ImageProxy HTTP error: Unknown ImageProxy error": "Erro de HTTP ImageProxy: erro ImageProxy desconhecido",
|
|
185
|
+
"Increase indent": "Aumentar recuo",
|
|
186
|
+
"Inline": "Fonte",
|
|
187
|
+
"Insert": "Inserir",
|
|
188
|
+
"Insert Template": "Inserir modelo",
|
|
189
|
+
"Insert accordion": "Inserir acorde\xe3o",
|
|
190
|
+
"Insert column after": "Inserir coluna depois",
|
|
191
|
+
"Insert column before": "Inserir coluna antes",
|
|
192
|
+
"Insert date/time": "Inserir data/hora",
|
|
193
|
+
"Insert date/time menu": "Menu de inser\xe7\xe3o de data/hora",
|
|
194
|
+
"Insert image": "Inserir imagem",
|
|
195
|
+
"Insert link (if link plugin activated)": "Inserir link (se o plugin de link estiver ativado)",
|
|
196
|
+
"Insert row after": "Inserir linha depois",
|
|
197
|
+
"Insert row before": "Inserir linha antes",
|
|
198
|
+
"Insert table": "Inserir tabela",
|
|
199
|
+
"Insert template...": "Inserir modelo...",
|
|
200
|
+
"Insert video": "Inserir v\xeddeo",
|
|
201
|
+
"Insert/Edit code sample": "Inserir/editar c\xf3digo",
|
|
202
|
+
"Insert/edit image": "Inserir/editar imagem",
|
|
203
|
+
"Insert/edit link": "Inserir/editar link",
|
|
204
|
+
"Insert/edit media": "Inserir/editar m\xeddia",
|
|
205
|
+
"Insert/edit video": "Inserir/editar v\xeddeo",
|
|
206
|
+
"Inset": "Baixo relevo",
|
|
207
|
+
"Invalid hex color code: {0}": "C\xf3digo hexadecimal de cor inv\xe1lido: {0}",
|
|
208
|
+
"Invalid input": "Entrada inv\xe1lida",
|
|
209
|
+
"Italic": "It\xe1lico",
|
|
210
|
+
"Justify": "Justificar",
|
|
211
|
+
"Keyboard Navigation": "Navega\xe7\xe3o pelo teclado",
|
|
212
|
+
"Language": "Idioma",
|
|
213
|
+
"Learn more...": "Saber mais...",
|
|
214
|
+
"Left": "\xc0 esquerda",
|
|
215
|
+
"Left to right": "Esquerda para direita",
|
|
216
|
+
"Light Blue": "Azul claro",
|
|
217
|
+
"Light Gray": "Cinza claro",
|
|
218
|
+
"Light Green": "Verde claro",
|
|
219
|
+
"Light Purple": "Roxo claro",
|
|
220
|
+
"Light Red": "Vermelho claro",
|
|
221
|
+
"Light Yellow": "Amarelo claro",
|
|
222
|
+
"Line height": "Altura da linha",
|
|
223
|
+
"Link": "Link",
|
|
224
|
+
"Link list": "Lista de links",
|
|
225
|
+
"Link...": "Link...",
|
|
226
|
+
"List Properties": "Listar propriedades",
|
|
227
|
+
"List properties...": "Listar propriedades...",
|
|
228
|
+
"Loading emojis...": "Carregando emojis...",
|
|
229
|
+
"Loading...": "Carregando...",
|
|
230
|
+
"Lower Alpha": "Letra Min\xfasc",
|
|
231
|
+
"Lower Greek": "Grego Min\xfasc.",
|
|
232
|
+
"Lower Roman": "Romano Min\xfasc.",
|
|
233
|
+
"Match case": "Diferenciar mai\xfascula/min\xfascula",
|
|
234
|
+
"Mathematical": "Matem\xe1tico",
|
|
235
|
+
"Media poster (Image URL)": "Post de m\xeddia (URL da Imagem)",
|
|
236
|
+
"Media...": "M\xeddia...",
|
|
237
|
+
"Medium Blue": "Azul m\xe9dio",
|
|
238
|
+
"Medium Gray": "Cinza m\xe9dio",
|
|
239
|
+
"Medium Purple": "Roxo m\xe9dio",
|
|
240
|
+
"Merge cells": "Agrupar c\xe9lulas",
|
|
241
|
+
"Middle": "Meio",
|
|
242
|
+
"Midnight Blue": "Azul meia-noite",
|
|
243
|
+
"More...": "Mais...",
|
|
244
|
+
"Name": "Nome",
|
|
245
|
+
"Navy Blue": "Azul marinho",
|
|
246
|
+
"New document": "Novo documento",
|
|
247
|
+
"New window": "Nova janela",
|
|
248
|
+
"Next": "Pr\xf3xima",
|
|
249
|
+
"No": "N\xe3o",
|
|
250
|
+
"No alignment": "Sem alinhamento",
|
|
251
|
+
"No color": "Nenhuma cor",
|
|
252
|
+
"Nonbreaking space": "Espa\xe7o inquebr\xe1vel",
|
|
253
|
+
"None": "Nenhum(a)",
|
|
254
|
+
"Numbered list": "Lista numerada",
|
|
255
|
+
"Numbers only, 0 to 255": "Somente n\xfameros, 0 a 255",
|
|
256
|
+
"OR": "OU",
|
|
257
|
+
"Objects": "Objetos",
|
|
258
|
+
"Ok": "OK",
|
|
259
|
+
"Open help dialog": "Abrir di\xe1logo de ajuda",
|
|
260
|
+
"Open link": "Abrir link",
|
|
261
|
+
"Open link in...": "Abrir link em...",
|
|
262
|
+
"Open popup menu for split buttons": "Abrir menu popup para bot\xf5es com divis\xe3o",
|
|
263
|
+
"Orange": "Laranja",
|
|
264
|
+
"Outset": "Alto relevo",
|
|
265
|
+
"Page break": "Quebra de p\xe1gina",
|
|
266
|
+
"Paragraph": "Simples",
|
|
267
|
+
"Paste": "Colar",
|
|
268
|
+
"Paste as text": "Colar como texto",
|
|
269
|
+
"Paste column after": "Colar coluna depois",
|
|
270
|
+
"Paste column before": "Colar coluna antes",
|
|
271
|
+
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando Colar est\xe1 no modo de texto simples. O conte\xfado ser\xe1 colado como texto simples, at\xe9 voc\xea desligar essa op\xe7\xe3o.",
|
|
272
|
+
"Paste or type a link": "Cole ou digite um link",
|
|
273
|
+
"Paste row after": "Colar linha depois",
|
|
274
|
+
"Paste row before": "Colar linha antes",
|
|
275
|
+
"Paste your embed code below:": "Insira o c\xf3digo de incorpora\xe7\xe3o abaixo:",
|
|
276
|
+
"People": "Pessoas",
|
|
277
|
+
"Plugins": "Plugins",
|
|
278
|
+
"Plugins installed ({0}):": "Plugins instalados ({0}):",
|
|
279
|
+
"Powered by {0}": "Distribu\xeddo por {0}",
|
|
280
|
+
"Pre": "Pr\xe9-formatado (pre)",
|
|
281
|
+
"Preferences": "Prefer\xeancias",
|
|
282
|
+
"Preformatted": "Pr\xe9-formatado",
|
|
283
|
+
"Premium plugins:": "Plugins premium:",
|
|
284
|
+
"Press the Up and Down arrow keys to resize the editor.": "Use as teclas de seta acima e abaixo para redimensionar o editor.",
|
|
285
|
+
"Press the arrow keys to resize the editor.": "Pressione as teclas de seta para redimensionar o editor.",
|
|
286
|
+
"Press {0} for help": "Pressione {0} para ajuda",
|
|
287
|
+
"Preview": "Pr\xe9-visualizar",
|
|
288
|
+
"Previous": "Anterior",
|
|
289
|
+
"Print": "Imprimir",
|
|
290
|
+
"Print...": "Imprimir...",
|
|
291
|
+
"Purple": "Roxo",
|
|
292
|
+
"Quotations": "Cita\xe7\xf5es",
|
|
293
|
+
"R": "R",
|
|
294
|
+
"Range 0 to 255": "Faixa entre 0 e 255",
|
|
295
|
+
"Red": "Vermelho",
|
|
296
|
+
"Red channel": "Canal vermelho",
|
|
297
|
+
"Redo": "Refazer",
|
|
298
|
+
"Remove": "Remover",
|
|
299
|
+
"Remove color": "Remover cor",
|
|
300
|
+
"Remove link": "Remover link",
|
|
301
|
+
"Replace": "Substituir",
|
|
302
|
+
"Replace all": "Substituir tudo",
|
|
303
|
+
"Replace with": "Substituir por",
|
|
304
|
+
"Resize": "Redimensionar",
|
|
305
|
+
"Restore last draft": "Restaurar \xfaltimo rascunho",
|
|
306
|
+
"Reveal or hide additional toolbar items": "Exibir ou ocultar itens adicionais da barra de ferramentas",
|
|
307
|
+
"Rich Text Area": "\xc1rea de texto rico",
|
|
308
|
+
"Rich Text Area. Press ALT-0 for help.": "\xc1rea de texto rico. Pressione Alt+0 para ajuda.",
|
|
309
|
+
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\xc1rea de texto rico. Pressione Alt+F9 para exibir o menu, Alt+F10 para exibir a barra de ferramentas ou Alt+0 para exibir a ajuda.",
|
|
310
|
+
"Ridge": "Ressaltada",
|
|
311
|
+
"Right": "\xc0 direita",
|
|
312
|
+
"Right to left": "Direita para esquerda",
|
|
313
|
+
"Row": "Linha",
|
|
314
|
+
"Row clipboard actions": "A\xe7\xf5es da \xe1rea de transfer\xeancia de linhas",
|
|
315
|
+
"Row group": "Grupo de linhas",
|
|
316
|
+
"Row header": "Cabe\xe7alho da linha",
|
|
317
|
+
"Row properties": "Propriedades da linha",
|
|
318
|
+
"Row type": "Tipo de linha",
|
|
319
|
+
"Rows": "Linhas",
|
|
320
|
+
"Save": "Salvar",
|
|
321
|
+
"Save (if save plugin activated)": "Salvar (se o plugin de salvar estiver ativado)",
|
|
322
|
+
"Scope": "Escopo",
|
|
323
|
+
"Search": "Pesquisar",
|
|
324
|
+
"Select all": "Selecionar tudo",
|
|
325
|
+
"Select the {0} element": "Selecionar o elemento {0}",
|
|
326
|
+
"Select...": "Selecionar...",
|
|
327
|
+
"Selection": "Sele\xe7\xe3o",
|
|
328
|
+
"Shortcut": "Atalho",
|
|
329
|
+
"Show blocks": "Mostrar blocos",
|
|
330
|
+
"Show caption": "Exibir legenda",
|
|
331
|
+
"Show invisible characters": "Exibir caracteres invis\xedveis",
|
|
332
|
+
"Size": "Tamanho",
|
|
333
|
+
"Solid": "S\xf3lida",
|
|
334
|
+
"Source": "Endere\xe7o",
|
|
335
|
+
"Source code": "C\xf3digo-fonte",
|
|
336
|
+
"Special Character": "Caractere especial",
|
|
337
|
+
"Special character...": "Caractere especial...",
|
|
338
|
+
"Split cell": "Dividir c\xe9lula",
|
|
339
|
+
"Square": "Quadrado",
|
|
340
|
+
"Start list at number": "Iniciar a lista no n\xfamero",
|
|
341
|
+
"Strikethrough": "Tachado",
|
|
342
|
+
"Style": "Estilo",
|
|
343
|
+
"Subscript": "Subscrito",
|
|
344
|
+
"Superscript": "Sobrescrito",
|
|
345
|
+
"Switch to or from fullscreen mode": "Abrir ou fechar modo de tela cheia",
|
|
346
|
+
"Symbols": "S\xedmbolos",
|
|
347
|
+
"System Font": "Fonte do sistema",
|
|
348
|
+
"Table": "Tabela",
|
|
349
|
+
"Table caption": "Legenda da tabela",
|
|
350
|
+
"Table properties": "Propriedades da tabela",
|
|
351
|
+
"Table styles": "Estilos de tabela",
|
|
352
|
+
"Template": "Modelo",
|
|
353
|
+
"Templates": "Modelos",
|
|
354
|
+
"Text": "Texto",
|
|
355
|
+
"Text color": "Cor do texto",
|
|
356
|
+
"Text color menu": "Menu de cor do texto",
|
|
357
|
+
"Text color {0}": "Cor do texto {0}",
|
|
358
|
+
"Text to display": "Texto a ser exibido",
|
|
359
|
+
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "A URL que voc\xea informou parece ser um endere\xe7o de e-mail. Deseja adicionar o prefixo obrigat\xf3rio mailto:?",
|
|
360
|
+
"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "A URL que voc\xea informou parece ser um link externo. Deseja incluir o prefixo http://?",
|
|
361
|
+
"The URL you entered seems to be an external link. Do you want to add the required https:// prefix?": "A URL informada parece ser um link externo. Deseja adicionar o prefixo obrigat\xf3rio https://?",
|
|
362
|
+
"Title": "T\xedtulo",
|
|
363
|
+
"To open the popup, press Shift+Enter": "Para abrir o di\xe1logo, pressione Shit+Enter",
|
|
364
|
+
"Toggle accordion": "Alternar acorde\xe3o",
|
|
365
|
+
"Tools": "Ferramentas",
|
|
366
|
+
"Top": "Superior",
|
|
367
|
+
"Travel and Places": "Viagem e Lugares",
|
|
368
|
+
"Turquoise": "Turquesa",
|
|
369
|
+
"Underline": "Sublinhado",
|
|
370
|
+
"Undo": "Desfazer",
|
|
371
|
+
"Upload": "Carregar",
|
|
372
|
+
"Uploading image": "Carregando imagem",
|
|
373
|
+
"Upper Alpha": "Letra Mai\xfasc.",
|
|
374
|
+
"Upper Roman": "Romano Mai\xfasc.",
|
|
375
|
+
"Url": "URL",
|
|
376
|
+
"Use arrow keys to navigate.": "Use as teclas de seta para navegar.",
|
|
377
|
+
"User Defined": "Definido pelo Usu\xe1rio",
|
|
378
|
+
"Valid": "V\xe1lido",
|
|
379
|
+
"Version": "Vers\xe3o",
|
|
380
|
+
"Vertical align": "Alinhamento vertical",
|
|
381
|
+
"Vertical space": "Espa\xe7o vertical",
|
|
382
|
+
"View": "Visualizar",
|
|
383
|
+
"Visual aids": "Ajuda visual",
|
|
384
|
+
"Warn": "Alerta",
|
|
385
|
+
"White": "Branco",
|
|
386
|
+
"Width": "Largura",
|
|
387
|
+
"Width:": "Largura:",
|
|
388
|
+
"Word count": "Contador de palavras",
|
|
389
|
+
"Words": "Palavras",
|
|
390
|
+
"Words: {0}": "Palavras: {0}",
|
|
391
|
+
"Yellow": "Amarelo",
|
|
392
|
+
"Yes": "Sim",
|
|
393
|
+
"You are using {0}": "Voc\xea est\xe1 usando {0}",
|
|
394
|
+
"You have unsaved changes are you sure you want to navigate away?": "Voc\xea tem altera\xe7\xf5es n\xe3o salvas. Voc\xea tem certeza de que deseja sair?",
|
|
395
|
+
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": "\nSeu navegador n\xe3o suporta acesso direto \xe0 \xe1rea de transfer\xeancia. Em vez disso, use os atalhos de teclado Ctrl+X/C/V.",
|
|
396
|
+
"alignment": "alinhamento",
|
|
397
|
+
"austral sign": "s\xedmbolo do austral",
|
|
398
|
+
"cedi sign": "s\xedmbolo do cedi",
|
|
399
|
+
"colon sign": "s\xedmbolo do colon",
|
|
400
|
+
"cruzeiro sign": "s\xedmbolo do cruzeiro",
|
|
401
|
+
"currency sign": "s\xedmbolo de moeda",
|
|
402
|
+
"dollar sign": "s\xedmbolo do d\xf3lar",
|
|
403
|
+
"dong sign": "s\xedmbolo do dong",
|
|
404
|
+
"drachma sign": "s\xedmbolo do drachma",
|
|
405
|
+
"euro-currency sign": "s\xedmbolo do euro",
|
|
406
|
+
"example": "exemplo",
|
|
407
|
+
"formatting": "formata\xe7\xe3o",
|
|
408
|
+
"french franc sign": "s\xedmbolo do franco franc\xeas",
|
|
409
|
+
"german penny symbol": "s\xedmbolo de centavo alem\xe3o",
|
|
410
|
+
"guarani sign": "s\xedmbolo do guarani",
|
|
411
|
+
"history": "hist\xf3rico",
|
|
412
|
+
"hryvnia sign": "s\xedmbolo do hryvnia",
|
|
413
|
+
"indentation": "indenta\xe7\xe3o",
|
|
414
|
+
"indian rupee sign": "s\xedmbolo de r\xfapia indiana",
|
|
415
|
+
"kip sign": "s\xedmbolo do kip",
|
|
416
|
+
"lira sign": "s\xedmbolo da lira",
|
|
417
|
+
"livre tournois sign": "s\xedmbolo do livre tournois",
|
|
418
|
+
"manat sign": "s\xedmbolo do manat",
|
|
419
|
+
"mill sign": "s\xedmbolo do mill",
|
|
420
|
+
"naira sign": "s\xedmbolo da naira",
|
|
421
|
+
"new sheqel sign": "s\xedmbolo do novo sheqel",
|
|
422
|
+
"nordic mark sign": "s\xedmbolo do marco n\xf3rdico",
|
|
423
|
+
"peseta sign": "s\xedmbolo da peseta",
|
|
424
|
+
"peso sign": "s\xedmbolo do peso",
|
|
425
|
+
"ruble sign": "s\xedmbolo do rublo",
|
|
426
|
+
"rupee sign": "s\xedmbolo da r\xfapia",
|
|
427
|
+
"spesmilo sign": "s\xedmbolo do spesmilo",
|
|
428
|
+
"styles": "estilos",
|
|
429
|
+
"tenge sign": "s\xedmbolo do tenge",
|
|
430
|
+
"tugrik sign": "s\xedmbolo do tugrik",
|
|
431
|
+
"turkish lira sign": "s\xedmbolo de lira turca",
|
|
432
|
+
"won sign": "s\xedmbolo do won",
|
|
433
|
+
"yen character": "caractere do yen",
|
|
434
|
+
"yen/yuan character variant one": "varia\xe7\xe3o do caractere de yen/yuan",
|
|
435
|
+
"yuan character": "caractere do yuan",
|
|
436
|
+
"yuan character, in hong kong and taiwan": "caractere do yuan, em Hong Kong e Taiwan",
|
|
437
|
+
"{0} characters": "{0} caracteres",
|
|
438
|
+
"{0} columns, {1} rows": "{0} colunas, {1} linhas",
|
|
439
|
+
"{0} words": "{0} palavras"
|
|
440
|
+
});
|