3 * English (en) translation file.
4 * Based on phpScheduleIt translation file.
5 * This also serves as the base translation file from which to derive
6 * all other translations.
8 * @author Samuel Tran <stran2005@users.sourceforge.net>
9 * @author Brian Wong <bwsource@users.sourceforge.net>
10 * @author Nicolas Peyrussie <peyrouz@users.sourceforge.net>
14 * Copyright (C) 2005 - 2007 MailZu
15 * License: GPL, see LICENSE
17 ///////////////////////////////////////////////////////////
19 ///////////////////////////////////////////////////////////
20 // This file contains all of the strings that are used throughout phpScheduleit.
21 // Please save the translated file as '2 letter language code'.lang.php. For example, en.lang.php.
23 // To make phpScheduleIt available in another language, simply translate each
24 // of the following strings into the appropriate one for the language. If there
25 // is no direct translation, please provide the closest translation. Please be sure
26 // to make the proper additions the /config/langs.php file (instructions are in the file).
27 // Also, please add a help translation for your language using en.help.php as a base.
29 // You will probably keep all sprintf (%s) tags in their current place. These tags
30 // are there as a substitution placeholder. Please check the output after translating
31 // to be sure that the sentences make sense.
33 // + Please use single quotes ' around all $strings. If you need to use the ' character, please enter it as \'
34 // + Please use double quotes " around all $email. If you need to use the " character, please enter it as \"
36 // + For all $dates please use the PHP strftime() syntax
37 // http://us2.php.net/manual/en/function.strftime.php
39 // + Non-intuitive parts of this file will be explained with comments. If you
40 // have any questions, please email lqqkout13@users.sourceforge.net
41 // or post questions in the Developers forum on SourceForge
42 // http://sourceforge.net/forum/forum.php?forum_id=331297
43 ///////////////////////////////////////////////////////////
45 ////////////////////////////////
46 /* Do not modify this section */
47 ////////////////////////////////
56 global $days_letter; //
57 global $months_full; //
58 global $months_abbr; //
59 global $days_letter; //
60 /******************************/
62 // Charset for this language
63 // 'iso-8859-1' will work for most languages
64 $charset = 'iso-8859-1';
68 All of these arrays MUST start with Sunday as the first element
69 and go through the seven day week, ending on Saturday
72 $days_full = array('Domingo', 'Segunda-Feira', 'Terça-Feira', 'Quarta-Feira', 'Quinta-Feira', 'Sexta-Feira', 'Sábado');
73 // The three letter abbreviation
74 $days_abbr = array('Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sab');
75 // The two letter abbreviation
76 $days_two = array('Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa');
77 // The one letter abbreviation
78 $days_letter = array('D', 'S', 'T', 'Q', 'U', 'S', 'S');
82 All of these arrays MUST start with January as the first element
83 and go through the twelve months of the year, ending on December
85 // The full month name
86 $months_full = array('Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro');
87 // The three letter month name
88 $months_abbr = array('Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez');
90 // All letters of the alphabet starting with A and ending with Z
91 $letters = array ('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');
95 All of the date formatting must use the PHP strftime() syntax
96 You can include any text/HTML formatting in the translation
98 // General date formatting used for all date display unless otherwise noted
99 $dates['general_date'] = '%m/%d/%Y';
100 // General datetime formatting used for all datetime display unless otherwise noted
101 // The hour:minute:second will always follow this format
102 $dates['general_datetime'] = '%m/%d/%Y @';
103 $dates['header'] = '%A, %B %d, %Y';
107 All of these strings should be translated from the English value (right side of the equals sign) to the new language.
108 - Please keep the keys (between the [] brackets) as they are. The keys will not always be the same as the value.
109 - Please keep the sprintf formatting (%s) placeholders where they are unless you are sure it needs to be moved.
110 - Please keep the HTML and punctuation as-is unless you know that you want to change it.
112 $strings['hours'] = 'horas';
113 $strings['minutes'] = 'minutos';
114 // The common abbreviation to hint that a user should enter the month as 2 digits
115 $strings['mm'] = 'mm';
116 // The common abbreviation to hint that a user should enter the day as 2 digits
117 $strings['dd'] = 'dd';
118 // The common abbreviation to hint that a user should enter the year as 4 digits
119 $strings['yyyy'] = 'yyyy';
120 $strings['am'] = 'am';
121 $strings['pm'] = 'pm';
123 $strings['Administrator'] = 'Administrador';
124 $strings['Welcome Back'] = 'Bem Vindo, %s';
125 $strings['Log Out'] = 'Sair';
126 $strings['Help'] = 'Ajuda';
128 $strings['Admin Email'] = 'Admin Email';
130 $strings['Default'] = 'Padrão';
131 $strings['Reset'] = 'Resetar';
132 $strings['Edit'] = 'Editar';
133 $strings['Delete'] = 'Deletar';
134 $strings['Cancel'] = 'Cancelar';
135 $strings['View'] = 'Ver';
136 $strings['Modify'] = 'Modificar';
137 $strings['Save'] = 'Salvar';
138 $strings['Back'] = 'Voltar';
139 $strings['BackMessageIndex'] = 'Voltar para Menssagens';
140 $strings['ToggleHeaders'] = 'Mostrar Cabeçalhos';
141 $strings['ViewOriginal'] = 'Ver Original';
142 $strings['Next'] = 'próxima';
143 $strings['Close Window'] = 'Fechar Janela';
144 $strings['Search'] = 'Pesquisar';
145 $strings['Clear'] = 'Limpar';
147 $strings['Days to Show'] = 'Dias para Mostrar';
148 $strings['Reservation Offset'] = 'Reservation Offset';
149 $strings['Hidden'] = 'Esconder';
150 $strings['Show Summary'] = 'Mastrar Agendamento';
151 $strings['Add Schedule'] = 'Adicionar Agendamento';
152 $strings['Edit Schedule'] = 'Editar Agendamento';
153 $strings['No'] = 'Não';
154 $strings['Yes'] = 'Sim';
155 $strings['Name'] = 'Nome';
156 $strings['First Name'] = 'Primeiro Nome';
157 $strings['Last Name'] = 'Último Nome';
158 $strings['Resource Name'] = 'Recurso';
159 $strings['Email'] = 'Email';
160 $strings['Institution'] = 'Empresa';
161 $strings['Phone'] = 'Telefone';
162 $strings['Password'] = 'Senha';
163 $strings['Permissions'] = 'Permissões';
164 $strings['View information about'] = 'Ver Informações sobre %s %s';
165 $strings['Send email to'] = 'Enviar e-mail para %s %s';
166 $strings['Reset password for'] = 'Resetar senha para %s %s';
167 $strings['Edit permissions for'] = 'Editar permissões para %s %s';
168 $strings['Position'] = 'Posição';
169 $strings['Password (6 char min)'] = 'Senha (%s caracteres min.)'; // @since 1.1.0
170 $strings['Re-Enter Password'] = 'Redigitar Senha';
172 $strings['Date'] = 'Data';
173 $strings['Email Users'] = 'Email Users';
174 $strings['Subject'] = 'Assunto';
175 $strings['Message'] = 'Mensagem';
176 $strings['Send Email'] = 'Enviar E-mail';
177 $strings['problem sending email'] = 'Desculpa, ocorreu um erro ao enviar seu E-mail. Tente mais tarde.';
178 $strings['The email sent successfully.'] = 'E-mail enviado com sucesso.';
179 $strings['Email address'] = 'Endereço de E-mail';
180 $strings['Please Log In'] = 'Informações de Login';
181 $strings['Keep me logged in'] = 'Manter-se logado <br/>(requer cookies)';
182 $strings['Password'] = 'Senha';
183 $strings['Log In'] = 'Entrar';
184 $strings['Get online help'] = 'Ajuda online';
185 $strings['Language'] = 'Idioma';
186 $strings['(Default)'] = '(Padrão)';
188 $strings['Email Administrator'] = 'E-mail p/ Administrador';
190 $strings['N/A'] = 'N/A';
191 $strings['Summary'] = 'Sumário';
193 $strings['View stats for schedule'] = 'Ver status da Agenda:';
194 $strings['At A Glance'] = 'At A Glance';
195 $strings['Total Users'] = 'Total Users:';
196 $strings['Total Resources'] = 'Total Resources:';
197 $strings['Total Reservations'] = 'Total Reservations:';
198 $strings['Max Reservation'] = 'Max Reservation:';
199 $strings['Min Reservation'] = 'Min Reservation:';
200 $strings['Avg Reservation'] = 'Avg Reservation:';
201 $strings['Most Active Resource'] = 'Most Active Resource:';
202 $strings['Most Active User'] = 'Most Active User:';
203 $strings['System Stats'] = 'System Stats';
204 $strings['phpScheduleIt version'] = 'phpScheduleIt version:';
205 $strings['Database backend'] = 'Database backend:';
206 $strings['Database name'] = 'Database name:';
207 $strings['PHP version'] = 'PHP version:';
208 $strings['Server OS'] = 'Server OS:';
209 $strings['Server name'] = 'Server name:';
210 $strings['phpScheduleIt root directory'] = 'phpScheduleIt root directory:';
211 $strings['Using permissions'] = 'Using permissions:';
212 $strings['Using logging'] = 'Using logging:';
213 $strings['Log file'] = 'Log file:';
214 $strings['Admin email address'] = 'Admin email address:';
215 $strings['Tech email address'] = 'Tech email address:';
216 $strings['CC email addresses'] = 'CC email addresses:';
217 $strings['Reservation start time'] = 'Reservation start time:';
218 $strings['Reservation end time'] = 'Reservation end time:';
219 $strings['Days shown at a time'] = 'Days shown at a time:';
220 $strings['Reservations'] = 'Reservations';
221 $strings['Return to top'] = 'Return to top';
222 $strings['for'] = 'for';
224 $strings['Per page'] = 'Por página:';
225 $strings['Page'] = 'Página:';
227 $strings['You are not logged in!'] = 'Você não esta logado!';
229 $strings['Setup'] = 'Setup';
230 $strings['Invalid User Name/Password.'] = 'Usuário/Senha inválidos.';
232 $strings['Valid username is required'] = 'Requerido um nome de usuário válido';
234 $strings['Close'] = 'Fechar';
236 $strings['Admin'] = 'Admin';
238 $strings['My Quick Links'] = 'Meus Links';
240 $strings['Go to first page'] = 'Ir para primeira página';
241 $strings['Go to last page'] = 'Ir para última página';
242 $strings['Sort by descending order'] = 'Ordem descendente';
243 $strings['Sort by ascending order'] = 'Ordem ascendente';
244 $strings['Spam Quarantine'] = 'Quarentena de Spam';
245 $strings['Message View'] = 'Visualizando Mensagem';
246 $strings['Attachment Quarantine'] = 'Quarentena de Anexos';
247 $strings['No such content type'] = 'Tipo de conteúdo não existe';
248 $strings['No message was selected'] = 'Nenhuma mensagem foi selecionada ...';
249 $strings['Unknown action type'] = 'Tipo de ação desconhecido ...';
250 $strings['A problem occured when trying to release the following messages'] = 'Ocorreu um problema ao tentar liberar as mensagens selecionadas';
251 $strings['A problem occured when trying to delete the following messages'] = 'Ocorreu um problema ao tentar deletar as mesagens selecionadas';
252 $strings['Please release the following messages'] = 'Liberar as seguintes mensagens';
253 $strings['To'] = 'Para';
254 $strings['From'] = 'De';
255 $strings['Subject'] = 'Assunto';
256 $strings['Date'] = 'Data';
257 $strings['Score'] = 'Pontos';
258 $strings['Mail ID'] = 'Mail ID';
259 $strings['Status'] = 'Status';
260 $strings['Print'] = 'Imprimir';
261 $strings['CloseWindow'] = 'Fechar';
262 $strings['Unknown server type'] = 'Tipo de servidor desconhecido ...';
263 $strings['Showing messages'] = "Mostrando mensagen %s até %s (%s no total)\r\n";
264 $strings['View this message'] = 'Ver esta Mensagem';
265 $strings['Message Unavailable'] = 'Mensagem Indisponível';
266 $strings['My Quarantine'] = 'Minha Quarentena';
267 $strings['Site Quarantine'] = 'Quarentena do Site';
268 $strings['Message Processing'] = 'Processando Mensagem';
269 $strings['Quarantine Summary'] = 'Sumário da Quarantena';
270 $strings['Login'] = 'Usuário';
271 $strings['spam(s)'] = 'spam(s)';
272 $strings['attachment(s)'] = 'bloqueio(s) por anexo(s)';
273 $strings['pending release request(s)'] = 'pedidos de liberação pendentes';
274 $strings['You have to type some text'] = 'Você deve digitar algum texto';
275 $strings['Release'] = 'Liberar';
276 $strings['Release/Request release'] = 'Liberar/Solicitar Liberação';
277 $strings['Request release'] = 'Solicitar Liberação';
278 $strings['Delete'] = 'Deletar';
279 $strings['Delete All'] = 'Deletar Todas';
280 $strings['Send report and go back'] = 'Enviar relatório e voltar';
281 $strings['Go back'] = "Voltar";
282 $strings['Select All'] = "Selecionar Todas";
283 $strings['Clear All'] = "Limpar Todas";
284 $strings['Access Denied'] = "Acesso Negado";
285 $strings['My Pending Requests'] = "Minhas Pendências<br /> de Liberação";
286 $strings['Site Pending Requests'] = "Pendências de Liberação";
287 $strings['Cancel Request'] = "Cancelar Requisição";
288 $strings['User is not allowed to login'] = "Usuário sem permissão para entar";
289 $strings['Authentication successful'] = "Autenticação efetuada com sucesso";
290 $strings['Authentication failed'] = "Falha na Autenticação";
291 $strings['LDAP connection failed'] = "Falha na conexão com LDAP/AD";
292 $strings['Logout successful'] = "Logout efetuado com sucesso";
293 $strings['IMAP Authentication: no match'] = "Autenticação IMAP: não corresponde";
294 $strings['Search for messages whose:'] = "Procurar por mensagens:";
295 $strings['Content Type'] = "Tipo de Conteúdo";
296 $strings['Clear search results'] = "Limpar resultados da pesquisa";
297 $strings['contains'] = "contém";
298 $strings['doesn\'t contain'] = "não contém";
299 $strings['equals'] = "é igual";
300 $strings['doesn\'t equal'] = "não é igual";
301 $strings['All'] = "Todos";
302 $strings['Spam'] = "Spam";
303 $strings['Banned'] = "Anexo";
304 $strings['last'] = "ultima";
305 $strings['first'] = "primeira";
306 $strings['previous'] = "anterior";
307 $strings['There was an error executing your query'] = 'Ocoreu um erro executando sua pesquisa:';
308 $strings['There are no matching records.'] = 'Nenhum registro encontrado.';
309 $strings['Domain'] = 'Dominio';
310 $strings['X-Amavis-Alert'] = 'X-Amavis-Alert';
311 $strings['Loading Summary...'] = 'Loading Summary...';
312 $strings['Retrieving Messages...'] = 'Retrieving Messages...';