Subversion Repositories Applications.papyrus

Rev

Rev 1688 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1075 ddelon 1
/*
1921 jp_milcent 2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
 *
5
 * == BEGIN LICENSE ==
6
 *
7
 * Licensed under the terms of any of the following licenses at your
8
 * choice:
9
 *
10
 *  - GNU General Public License Version 2 or later (the "GPL")
11
 *    http://www.gnu.org/licenses/gpl.html
12
 *
13
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
14
 *    http://www.gnu.org/licenses/lgpl.html
15
 *
16
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
17
 *    http://www.mozilla.org/MPL/MPL-1.1.html
18
 *
19
 * == END LICENSE ==
20
 *
21
 * Portuguese language file.
1075 ddelon 22
 */
23
 
24
var FCKLang =
25
{
26
// Language direction : "ltr" (left to right) or "rtl" (right to left).
27
Dir					: "ltr",
28
 
29
ToolbarCollapse		: "Fechar Barra",
30
ToolbarExpand		: "Expandir Barra",
31
 
32
// Toolbar Items and Context Menu
33
Save				: "Guardar",
34
NewPage				: "Nova Página",
35
Preview				: "Pré-visualizar",
36
Cut					: "Cortar",
37
Copy				: "Copiar",
38
Paste				: "Colar",
39
PasteText			: "Colar como texto não formatado",
40
PasteWord			: "Colar do Word",
41
Print				: "Imprimir",
42
SelectAll			: "Seleccionar Tudo",
43
RemoveFormat		: "Eliminar Formato",
44
InsertLinkLbl		: "Hiperligação",
45
InsertLink			: "Inserir/Editar Hiperligação",
46
RemoveLink			: "Eliminar Hiperligação",
1921 jp_milcent 47
VisitLink			: "Open Link",	//MISSING
1075 ddelon 48
Anchor				: " Inserir/Editar Âncora",
1921 jp_milcent 49
AnchorDelete		: "Remove Anchor",	//MISSING
1075 ddelon 50
InsertImageLbl		: "Imagem",
51
InsertImage			: "Inserir/Editar Imagem",
52
InsertFlashLbl		: "Flash",
53
InsertFlash			: "Inserir/Editar Flash",
54
InsertTableLbl		: "Tabela",
55
InsertTable			: "Inserir/Editar Tabela",
56
InsertLineLbl		: "Linha",
57
InsertLine			: "Inserir Linha Horizontal",
58
InsertSpecialCharLbl: "Caracter Especial",
59
InsertSpecialChar	: "Inserir Caracter Especial",
60
InsertSmileyLbl		: "Emoticons",
61
InsertSmiley		: "Inserir Emoticons",
62
About				: "Acerca do FCKeditor",
63
Bold				: "Negrito",
64
Italic				: "Itálico",
65
Underline			: "Sublinhado",
66
StrikeThrough		: "Rasurado",
67
Subscript			: "Superior à Linha",
68
Superscript			: "Inferior à Linha",
69
LeftJustify			: "Alinhar à Esquerda",
70
CenterJustify		: "Alinhar ao Centro",
71
RightJustify		: "Alinhar à Direita",
72
BlockJustify		: "Justificado",
73
DecreaseIndent		: "Diminuir Avanço",
74
IncreaseIndent		: "Aumentar Avanço",
1921 jp_milcent 75
Blockquote			: "Blockquote",	//MISSING
76
CreateDiv			: "Create Div Container",	//MISSING
77
EditDiv				: "Edit Div Container",	//MISSING
78
DeleteDiv			: "Remove Div Container",	//MISSING
1075 ddelon 79
Undo				: "Anular",
80
Redo				: "Repetir",
81
NumberedListLbl		: "Numeração",
82
NumberedList		: "Inserir/Eliminar Numeração",
83
BulletedListLbl		: "Marcas",
84
BulletedList		: "Inserir/Eliminar Marcas",
85
ShowTableBorders	: "Mostrar Limites da Tabelas",
86
ShowDetails			: "Mostrar Parágrafo",
87
Style				: "Estilo",
88
FontFormat			: "Formato",
89
Font				: "Tipo de Letra",
90
FontSize			: "Tamanho",
91
TextColor			: "Cor do Texto",
92
BGColor				: "Cor de Fundo",
93
Source				: "Fonte",
94
Find				: "Procurar",
95
Replace				: "Substituir",
96
SpellCheck			: "Verificação Ortográfica",
97
UniversalKeyboard	: "Teclado Universal",
98
PageBreakLbl		: "Quebra de Página",
99
PageBreak			: "Inserir Quebra de Página",
100
 
101
Form			: "Formulário",
102
Checkbox		: "Caixa de Verificação",
103
RadioButton		: "Botão de Opção",
104
TextField		: "Campo de Texto",
105
Textarea		: "Área de Texto",
106
HiddenField		: "Campo Escondido",
107
Button			: "Botão",
108
SelectionField	: "Caixa de Combinação",
109
ImageButton		: "Botão de Imagem",
110
 
111
FitWindow		: "Maximizar o tamanho do editor",
1921 jp_milcent 112
ShowBlocks		: "Show Blocks",	//MISSING
1075 ddelon 113
 
114
// Context Menu
115
EditLink			: "Editar Hiperligação",
116
CellCM				: "Célula",
117
RowCM				: "Linha",
118
ColumnCM			: "Coluna",
1921 jp_milcent 119
InsertRowAfter		: "Insert Row After",	//MISSING
120
InsertRowBefore		: "Insert Row Before",	//MISSING
1075 ddelon 121
DeleteRows			: "Eliminar Linhas",
1921 jp_milcent 122
InsertColumnAfter	: "Insert Column After",	//MISSING
123
InsertColumnBefore	: "Insert Column Before",	//MISSING
1075 ddelon 124
DeleteColumns		: "Eliminar Coluna",
1921 jp_milcent 125
InsertCellAfter		: "Insert Cell After",	//MISSING
126
InsertCellBefore	: "Insert Cell Before",	//MISSING
1075 ddelon 127
DeleteCells			: "Eliminar Célula",
128
MergeCells			: "Unir Células",
1921 jp_milcent 129
MergeRight			: "Merge Right",	//MISSING
130
MergeDown			: "Merge Down",	//MISSING
131
HorizontalSplitCell	: "Split Cell Horizontally",	//MISSING
132
VerticalSplitCell	: "Split Cell Vertically",	//MISSING
1075 ddelon 133
TableDelete			: "Eliminar Tabela",
134
CellProperties		: "Propriedades da Célula",
135
TableProperties		: "Propriedades da Tabela",
136
ImageProperties		: "Propriedades da Imagem",
137
FlashProperties		: "Propriedades do Flash",
138
 
139
AnchorProp			: "Propriedades da Âncora",
140
ButtonProp			: "Propriedades do Botão",
141
CheckboxProp		: "Propriedades da Caixa de Verificação",
142
HiddenFieldProp		: "Propriedades do Campo Escondido",
143
RadioButtonProp		: "Propriedades do Botão de Opção",
144
ImageButtonProp		: "Propriedades do Botão de imagens",
145
TextFieldProp		: "Propriedades do Campo de Texto",
146
SelectionFieldProp	: "Propriedades da Caixa de Combinação",
147
TextareaProp		: "Propriedades da Área de Texto",
148
FormProp			: "Propriedades do Formulário",
149
 
150
FontFormats			: "Normal;Formatado;Endereço;Título 1;Título 2;Título 3;Título 4;Título 5;Título 6",
151
 
152
// Alerts and Messages
153
ProcessingXHTML		: "A Processar XHTML. Por favor, espere...",
154
Done				: "Concluído",
155
PasteWordConfirm	: "O texto que deseja parece ter sido copiado do Word. Deseja limpar a formatação antes de colar?",
156
NotCompatiblePaste	: "Este comando só está disponível para Internet Explorer versão 5.5 ou superior. Deseja colar sem limpar a formatação?",
157
UnknownToolbarItem	: "Item de barra desconhecido \"%1\"",
158
UnknownCommand		: "Nome de comando desconhecido \"%1\"",
159
NotImplemented		: "Comando não implementado",
160
UnknownToolbarSet	: "Nome de barra \"%1\" não definido",
161
NoActiveX			: "As definições de segurança do navegador podem limitar algumas potencalidades do editr. Deve activar a opção \"Executar controlos e extensões ActiveX\". Pode ocorrer erros ou verificar que faltam potencialidades.",
162
BrowseServerBlocked : "Não foi possível abrir o navegador de recursos. Certifique-se que todos os bloqueadores de popup estão desactivados.",
163
DialogBlocked		: "Não foi possível abrir a janela de diálogo. Certifique-se que todos os bloqueadores de popup estão desactivados.",
1921 jp_milcent 164
VisitLinkBlocked	: "It was not possible to open a new window. Make sure all popup blockers are disabled.",	//MISSING
1075 ddelon 165
 
166
// Dialogs
167
DlgBtnOK			: "OK",
168
DlgBtnCancel		: "Cancelar",
169
DlgBtnClose			: "Fechar",
170
DlgBtnBrowseServer	: "Navegar no Servidor",
171
DlgAdvancedTag		: "Avançado",
172
DlgOpOther			: "<Outro>",
173
DlgInfoTab			: "Informação",
174
DlgAlertUrl			: "Por favor introduza o URL",
175
 
176
// General Dialogs Labels
177
DlgGenNotSet		: "<Não definido>",
178
DlgGenId			: "Id",
179
DlgGenLangDir		: "Orientação de idioma",
180
DlgGenLangDirLtr	: "Esquerda à Direita (LTR)",
181
DlgGenLangDirRtl	: "Direita a Esquerda (RTL)",
182
DlgGenLangCode		: "Código de Idioma",
183
DlgGenAccessKey		: "Chave de Acesso",
184
DlgGenName			: "Nome",
185
DlgGenTabIndex		: "Índice de Tubulação",
186
DlgGenLongDescr		: "Descrição Completa do URL",
187
DlgGenClass			: "Classes de Estilo de Folhas Classes",
188
DlgGenTitle			: "Título",
189
DlgGenContType		: "Tipo de Conteúdo",
190
DlgGenLinkCharset	: "Fonte de caracteres vinculado",
191
DlgGenStyle			: "Estilo",
192
 
193
// Image Dialog
194
DlgImgTitle			: "Propriedades da Imagem",
195
DlgImgInfoTab		: "Informação da Imagem",
196
DlgImgBtnUpload		: "Enviar para o Servidor",
197
DlgImgURL			: "URL",
198
DlgImgUpload		: "Carregar",
199
DlgImgAlt			: "Texto Alternativo",
200
DlgImgWidth			: "Largura",
201
DlgImgHeight		: "Altura",
202
DlgImgLockRatio		: "Proporcional",
203
DlgBtnResetSize		: "Tamanho Original",
204
DlgImgBorder		: "Limite",
205
DlgImgHSpace		: "Esp.Horiz",
206
DlgImgVSpace		: "Esp.Vert",
207
DlgImgAlign			: "Alinhamento",
208
DlgImgAlignLeft		: "Esquerda",
209
DlgImgAlignAbsBottom: "Abs inferior",
210
DlgImgAlignAbsMiddle: "Abs centro",
211
DlgImgAlignBaseline	: "Linha de base",
212
DlgImgAlignBottom	: "Fundo",
213
DlgImgAlignMiddle	: "Centro",
214
DlgImgAlignRight	: "Direita",
215
DlgImgAlignTextTop	: "Topo do texto",
216
DlgImgAlignTop		: "Topo",
217
DlgImgPreview		: "Pré-visualizar",
218
DlgImgAlertUrl		: "Por favor introduza o URL da imagem",
219
DlgImgLinkTab		: "Hiperligação",
220
 
221
// Flash Dialog
222
DlgFlashTitle		: "Propriedades do Flash",
223
DlgFlashChkPlay		: "Reproduzir automaticamente",
224
DlgFlashChkLoop		: "Loop",
225
DlgFlashChkMenu		: "Permitir Menu do Flash",
226
DlgFlashScale		: "Escala",
227
DlgFlashScaleAll	: "Mostrar tudo",
228
DlgFlashScaleNoBorder	: "Sem Limites",
229
DlgFlashScaleFit	: "Tamanho Exacto",
230
 
231
// Link Dialog
232
DlgLnkWindowTitle	: "Hiperligação",
233
DlgLnkInfoTab		: "Informação de Hiperligação",
234
DlgLnkTargetTab		: "Destino",
235
 
236
DlgLnkType			: "Tipo de Hiperligação",
237
DlgLnkTypeURL		: "URL",
238
DlgLnkTypeAnchor	: "Referência a esta página",
239
DlgLnkTypeEMail		: "E-Mail",
240
DlgLnkProto			: "Protocolo",
241
DlgLnkProtoOther	: "<outro>",
242
DlgLnkURL			: "URL",
243
DlgLnkAnchorSel		: "Seleccionar una referência",
244
DlgLnkAnchorByName	: "Por Nome de Referência",
245
DlgLnkAnchorById	: "Por ID de elemento",
1921 jp_milcent 246
DlgLnkNoAnchors		: "(Não há referências disponíveis no documento)",
1075 ddelon 247
DlgLnkEMail			: "Endereço de E-Mail",
248
DlgLnkEMailSubject	: "Título de Mensagem",
249
DlgLnkEMailBody		: "Corpo da Mensagem",
250
DlgLnkUpload		: "Carregar",
251
DlgLnkBtnUpload		: "Enviar ao Servidor",
252
 
253
DlgLnkTarget		: "Destino",
254
DlgLnkTargetFrame	: "<Frame>",
255
DlgLnkTargetPopup	: "<Janela de popup>",
256
DlgLnkTargetBlank	: "Nova Janela(_blank)",
257
DlgLnkTargetParent	: "Janela Pai (_parent)",
258
DlgLnkTargetSelf	: "Mesma janela (_self)",
259
DlgLnkTargetTop		: "Janela primaria (_top)",
260
DlgLnkTargetFrameName	: "Nome do Frame Destino",
261
DlgLnkPopWinName	: "Nome da Janela de Popup",
262
DlgLnkPopWinFeat	: "Características de Janela de Popup",
263
DlgLnkPopResize		: "Ajustável",
264
DlgLnkPopLocation	: "Barra de localização",
265
DlgLnkPopMenu		: "Barra de Menu",
266
DlgLnkPopScroll		: "Barras de deslocamento",
267
DlgLnkPopStatus		: "Barra de Estado",
268
DlgLnkPopToolbar	: "Barra de Ferramentas",
269
DlgLnkPopFullScrn	: "Janela Completa (IE)",
270
DlgLnkPopDependent	: "Dependente (Netscape)",
271
DlgLnkPopWidth		: "Largura",
272
DlgLnkPopHeight		: "Altura",
273
DlgLnkPopLeft		: "Posição Esquerda",
274
DlgLnkPopTop		: "Posição Direita",
275
 
276
DlnLnkMsgNoUrl		: "Por favor introduza a hiperligação URL",
277
DlnLnkMsgNoEMail	: "Por favor introduza o endereço de e-mail",
278
DlnLnkMsgNoAnchor	: "Por favor seleccione uma referência",
279
DlnLnkMsgInvPopName	: "The popup name must begin with an alphabetic character and must not contain spaces",	//MISSING
280
 
281
// Color Dialog
282
DlgColorTitle		: "Seleccionar Cor",
283
DlgColorBtnClear	: "Nenhuma",
284
DlgColorHighlight	: "Destacado",
285
DlgColorSelected	: "Seleccionado",
286
 
287
// Smiley Dialog
288
DlgSmileyTitle		: "Inserir um Emoticon",
289
 
290
// Special Character Dialog
291
DlgSpecialCharTitle	: "Seleccione um caracter especial",
292
 
293
// Table Dialog
294
DlgTableTitle		: "Propriedades da Tabela",
295
DlgTableRows		: "Linhas",
296
DlgTableColumns		: "Colunas",
297
DlgTableBorder		: "Tamanho do Limite",
298
DlgTableAlign		: "Alinhamento",
299
DlgTableAlignNotSet	: "<Não definido>",
300
DlgTableAlignLeft	: "Esquerda",
301
DlgTableAlignCenter	: "Centrado",
302
DlgTableAlignRight	: "Direita",
303
DlgTableWidth		: "Largura",
304
DlgTableWidthPx		: "pixeis",
305
DlgTableWidthPc		: "percentagem",
306
DlgTableHeight		: "Altura",
307
DlgTableCellSpace	: "Esp. e/células",
308
DlgTableCellPad		: "Esp. interior",
309
DlgTableCaption		: "Título",
310
DlgTableSummary		: "Sumário",
311
 
312
// Table Cell Dialog
313
DlgCellTitle		: "Propriedades da Célula",
314
DlgCellWidth		: "Largura",
315
DlgCellWidthPx		: "pixeis",
316
DlgCellWidthPc		: "percentagem",
317
DlgCellHeight		: "Altura",
318
DlgCellWordWrap		: "Moldar Texto",
319
DlgCellWordWrapNotSet	: "<Não definido>",
320
DlgCellWordWrapYes	: "Sim",
321
DlgCellWordWrapNo	: "Não",
322
DlgCellHorAlign		: "Alinhamento Horizontal",
323
DlgCellHorAlignNotSet	: "<Não definido>",
324
DlgCellHorAlignLeft	: "Esquerda",
325
DlgCellHorAlignCenter	: "Centrado",
326
DlgCellHorAlignRight: "Direita",
327
DlgCellVerAlign		: "Alinhamento Vertical",
328
DlgCellVerAlignNotSet	: "<Não definido>",
329
DlgCellVerAlignTop	: "Topo",
330
DlgCellVerAlignMiddle	: "Médio",
331
DlgCellVerAlignBottom	: "Fundi",
332
DlgCellVerAlignBaseline	: "Linha de Base",
333
DlgCellRowSpan		: "Unir Linhas",
334
DlgCellCollSpan		: "Unir Colunas",
335
DlgCellBackColor	: "Cor do Fundo",
336
DlgCellBorderColor	: "Cor do Limite",
337
DlgCellBtnSelect	: "Seleccione...",
338
 
1921 jp_milcent 339
// Find and Replace Dialog
340
DlgFindAndReplaceTitle	: "Find and Replace",	//MISSING
341
 
1075 ddelon 342
// Find Dialog
343
DlgFindTitle		: "Procurar",
344
DlgFindFindBtn		: "Procurar",
345
DlgFindNotFoundMsg	: "O texto especificado não foi encontrado.",
346
 
347
// Replace Dialog
348
DlgReplaceTitle			: "Substituir",
349
DlgReplaceFindLbl		: "Texto a Procurar:",
350
DlgReplaceReplaceLbl	: "Substituir por:",
351
DlgReplaceCaseChk		: "Maiúsculas/Minúsculas",
352
DlgReplaceReplaceBtn	: "Substituir",
353
DlgReplaceReplAllBtn	: "Substituir Tudo",
354
DlgReplaceWordChk		: "Coincidir com toda a palavra",
355
 
356
// Paste Operations / Dialog
357
PasteErrorCut	: "A configuração de segurança do navegador não permite a execução automática de operações de cortar. Por favor use o teclado (Ctrl+X).",
358
PasteErrorCopy	: "A configuração de segurança do navegador não permite a execução automática de operações de copiar. Por favor use o teclado (Ctrl+C).",
359
 
360
PasteAsText		: "Colar como Texto Simples",
361
PasteFromWord	: "Colar do Word",
362
 
363
DlgPasteMsg2	: "Por favor, cole dentro da seguinte caixa usando o teclado (<STRONG>Ctrl+V</STRONG>) e prima <STRONG>OK</STRONG>.",
1921 jp_milcent 364
DlgPasteSec		: "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.",	//MISSING
1075 ddelon 365
DlgPasteIgnoreFont		: "Ignorar da definições do Tipo de Letra ",
366
DlgPasteRemoveStyles	: "Remover as definições de Estilos",
367
 
368
// Color Picker
369
ColorAutomatic	: "Automático",
370
ColorMoreColors	: "Mais Cores...",
371
 
372
// Document Properties
373
DocProps		: "Propriedades do Documento",
374
 
375
// Anchor Dialog
376
DlgAnchorTitle		: "Propriedades da Âncora",
377
DlgAnchorName		: "Nome da Âncora",
378
DlgAnchorErrorName	: "Por favor, introduza o nome da âncora",
379
 
380
// Speller Pages Dialog
381
DlgSpellNotInDic		: "Não está num directório",
382
DlgSpellChangeTo		: "Mudar para",
383
DlgSpellBtnIgnore		: "Ignorar",
384
DlgSpellBtnIgnoreAll	: "Ignorar Tudo",
385
DlgSpellBtnReplace		: "Substituir",
386
DlgSpellBtnReplaceAll	: "Substituir Tudo",
387
DlgSpellBtnUndo			: "Anular",
388
DlgSpellNoSuggestions	: "- Sem sugestões -",
389
DlgSpellProgress		: "Verificação ortográfica em progresso…",
390
DlgSpellNoMispell		: "Verificação ortográfica completa: não foram encontrados erros",
391
DlgSpellNoChanges		: "Verificação ortográfica completa: não houve alteração de palavras",
392
DlgSpellOneChange		: "Verificação ortográfica completa: uma palavra alterada",
393
DlgSpellManyChanges		: "Verificação ortográfica completa: %1 palavras alteradas",
394
 
395
IeSpellDownload			: " Verificação ortográfica não instalada. Quer descarregar agora?",
396
 
397
// Button Dialog
398
DlgButtonText		: "Texto (Valor)",
399
DlgButtonType		: "Tipo",
400
DlgButtonTypeBtn	: "Button",	//MISSING
401
DlgButtonTypeSbm	: "Submit",	//MISSING
402
DlgButtonTypeRst	: "Reset",	//MISSING
403
 
404
// Checkbox and Radio Button Dialogs
405
DlgCheckboxName		: "Nome",
406
DlgCheckboxValue	: "Valor",
407
DlgCheckboxSelected	: "Seleccionado",
408
 
409
// Form Dialog
410
DlgFormName		: "Nome",
411
DlgFormAction	: "Acção",
412
DlgFormMethod	: "Método",
413
 
414
// Select Field Dialog
415
DlgSelectName		: "Nome",
416
DlgSelectValue		: "Valor",
417
DlgSelectSize		: "Tamanho",
418
DlgSelectLines		: "linhas",
419
DlgSelectChkMulti	: "Permitir selecções múltiplas",
420
DlgSelectOpAvail	: "Opções Possíveis",
421
DlgSelectOpText		: "Texto",
422
DlgSelectOpValue	: "Valor",
423
DlgSelectBtnAdd		: "Adicionar",
424
DlgSelectBtnModify	: "Modificar",
425
DlgSelectBtnUp		: "Para cima",
426
DlgSelectBtnDown	: "Para baixo",
427
DlgSelectBtnSetValue : "Definir um valor por defeito",
428
DlgSelectBtnDelete	: "Apagar",
429
 
430
// Textarea Dialog
431
DlgTextareaName	: "Nome",
432
DlgTextareaCols	: "Colunas",
433
DlgTextareaRows	: "Linhas",
434
 
435
// Text Field Dialog
436
DlgTextName			: "Nome",
437
DlgTextValue		: "Valor",
438
DlgTextCharWidth	: "Tamanho do caracter",
439
DlgTextMaxChars		: "Nr. Máximo de Caracteres",
440
DlgTextType			: "Tipo",
441
DlgTextTypeText		: "Texto",
442
DlgTextTypePass		: "Palavra-chave",
443
 
444
// Hidden Field Dialog
445
DlgHiddenName	: "Nome",
446
DlgHiddenValue	: "Valor",
447
 
448
// Bulleted List Dialog
449
BulletedListProp	: "Propriedades da Marca",
450
NumberedListProp	: "Propriedades da Numeração",
451
DlgLstStart			: "Start",	//MISSING
452
DlgLstType			: "Tipo",
453
DlgLstTypeCircle	: "Circulo",
454
DlgLstTypeDisc		: "Disco",
455
DlgLstTypeSquare	: "Quadrado",
456
DlgLstTypeNumbers	: "Números (1, 2, 3)",
457
DlgLstTypeLCase		: "Letras Minúsculas (a, b, c)",
458
DlgLstTypeUCase		: "Letras Maiúsculas (A, B, C)",
459
DlgLstTypeSRoman	: "Numeração Romana em Minúsculas (i, ii, iii)",
460
DlgLstTypeLRoman	: "Numeração Romana em Maiúsculas (I, II, III)",
461
 
462
// Document Properties Dialog
463
DlgDocGeneralTab	: "Geral",
464
DlgDocBackTab		: "Fundo",
465
DlgDocColorsTab		: "Cores e Margens",
466
DlgDocMetaTab		: "Meta Data",
467
 
468
DlgDocPageTitle		: "Título da Página",
469
DlgDocLangDir		: "Orientação de idioma",
470
DlgDocLangDirLTR	: "Esquerda à Direita (LTR)",
471
DlgDocLangDirRTL	: "Direita à Esquerda (RTL)",
472
DlgDocLangCode		: "Código de Idioma",
473
DlgDocCharSet		: "Codificação de Caracteres",
474
DlgDocCharSetCE		: "Central European",	//MISSING
475
DlgDocCharSetCT		: "Chinese Traditional (Big5)",	//MISSING
476
DlgDocCharSetCR		: "Cyrillic",	//MISSING
477
DlgDocCharSetGR		: "Greek",	//MISSING
478
DlgDocCharSetJP		: "Japanese",	//MISSING
479
DlgDocCharSetKR		: "Korean",	//MISSING
480
DlgDocCharSetTR		: "Turkish",	//MISSING
481
DlgDocCharSetUN		: "Unicode (UTF-8)",	//MISSING
482
DlgDocCharSetWE		: "Western European",	//MISSING
483
DlgDocCharSetOther	: "Outra Codificação de Caracteres",
484
 
485
DlgDocDocType		: "Tipo de Cabeçalho do Documento",
486
DlgDocDocTypeOther	: "Outro Tipo de Cabeçalho do Documento",
487
DlgDocIncXHTML		: "Incluir Declarações XHTML",
488
DlgDocBgColor		: "Cor de Fundo",
489
DlgDocBgImage		: "Caminho para a Imagem de Fundo",
490
DlgDocBgNoScroll	: "Fundo Fixo",
491
DlgDocCText			: "Texto",
492
DlgDocCLink			: "Hiperligação",
493
DlgDocCVisited		: "Hiperligação Visitada",
494
DlgDocCActive		: "Hiperligação Activa",
495
DlgDocMargins		: "Margem das Páginas",
496
DlgDocMaTop			: "Topo",
497
DlgDocMaLeft		: "Esquerda",
498
DlgDocMaRight		: "Direita",
499
DlgDocMaBottom		: "Fundo",
500
DlgDocMeIndex		: "Palavras de Indexação do Documento (separadas por virgula)",
501
DlgDocMeDescr		: "Descrição do Documento",
502
DlgDocMeAuthor		: "Autor",
503
DlgDocMeCopy		: "Direitos de Autor",
504
DlgDocPreview		: "Pré-visualizar",
505
 
506
// Templates Dialog
507
Templates			: "Modelos",
508
DlgTemplatesTitle	: "Modelo de Conteúdo",
509
DlgTemplatesSelMsg	: "Por favor, seleccione o modelo a abrir no editor<br>(o conteúdo actual será perdido):",
510
DlgTemplatesLoading	: "A carregar a lista de modelos. Aguarde por favor...",
511
DlgTemplatesNoTpl	: "(Sem modelos definidos)",
512
DlgTemplatesReplace	: "Replace actual contents",	//MISSING
513
 
514
// About Dialog
515
DlgAboutAboutTab	: "Acerca",
516
DlgAboutBrowserInfoTab	: "Informação do Nevegador",
517
DlgAboutLicenseTab	: "Licença",
518
DlgAboutVersion		: "versão",
1921 jp_milcent 519
DlgAboutInfo		: "Para mais informações por favor dirija-se a",
520
 
521
// Div Dialog
522
DlgDivGeneralTab	: "General",	//MISSING
523
DlgDivAdvancedTab	: "Advanced",	//MISSING
524
DlgDivStyle		: "Style",	//MISSING
525
DlgDivInlineStyle	: "Inline Style"	//MISSING
526
};