@@ -0,0 +1,6 | |||||
|
1 | <%= @added_to %> | |||
|
2 | <%= @attachments.size %> arquivo(s) adicionado. | |||
|
3 | <% @attachments.each do |attachment | %> | |||
|
4 | - <%= attachment.filename %><% end %> | |||
|
5 | ||||
|
6 | <%= @url %> No newline at end of file |
@@ -0,0 +1,4 | |||||
|
1 | Um documento foi adicionado no projeto <%= @document.project.name %> (<%= @document.category.name %>): | |||
|
2 | <%= l(:field_title) %>: <%= @document.title %> | |||
|
3 | ||||
|
4 | http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file |
@@ -0,0 +1,3 | |||||
|
1 | Tarefa #<%= @issue.id %> foi incluída. | |||
|
2 | ---------------------------------------- | |||
|
3 | <%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %> No newline at end of file |
@@ -0,0 +1,8 | |||||
|
1 | Tarefa #<%= @issue.id %> foi alterada. | |||
|
2 | <%= @journal.user.name %> | |||
|
3 | <% for detail in @journal.details %> | |||
|
4 | <%= show_detail(detail, true) %> | |||
|
5 | <% end %> | |||
|
6 | <%= @journal.notes if @journal.notes? %> | |||
|
7 | ---------------------------------------- | |||
|
8 | <%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %> No newline at end of file |
@@ -0,0 +1,3 | |||||
|
1 | Para mudar sua senha, clique no link abaixo: | |||
|
2 | ||||
|
3 | http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> No newline at end of file |
@@ -0,0 +1,3 | |||||
|
1 | Para ativar sua conta do redMine, clique no link abaixo: | |||
|
2 | ||||
|
3 | http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> No newline at end of file |
@@ -0,0 +1,9 | |||||
|
1 | class SetLanguageLengthToFive < ActiveRecord::Migration | |||
|
2 | def self.up | |||
|
3 | change_column :users, :language, :string, :limit => 5, :default => "" | |||
|
4 | end | |||
|
5 | ||||
|
6 | def self.down | |||
|
7 | raise IrreversibleMigration | |||
|
8 | end | |||
|
9 | end |
@@ -0,0 +1,464 | |||||
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |||
|
2 | ||||
|
3 | actionview_datehelper_select_day_prefix: | |||
|
4 | actionview_datehelper_select_month_names: Janeiro,Fevereiro,Marco,Abrill,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro | |||
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez | |||
|
6 | actionview_datehelper_select_month_prefix: | |||
|
7 | actionview_datehelper_select_year_prefix: | |||
|
8 | actionview_datehelper_time_in_words_day: 1 dia | |||
|
9 | actionview_datehelper_time_in_words_day_plural: %d dias | |||
|
10 | actionview_datehelper_time_in_words_hour_about: sobre uma hora | |||
|
11 | actionview_datehelper_time_in_words_hour_about_plural: sobra %d horas | |||
|
12 | actionview_datehelper_time_in_words_hour_about_single: sobre uma hora | |||
|
13 | actionview_datehelper_time_in_words_minute: 1 minuto | |||
|
14 | actionview_datehelper_time_in_words_minute_half: meio minuto | |||
|
15 | actionview_datehelper_time_in_words_minute_less_than: menos que um minuto | |||
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minutos | |||
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minuto | |||
|
18 | actionview_datehelper_time_in_words_second_less_than: menos que um segundo | |||
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: menos que %d segundos | |||
|
20 | actionview_instancetag_blank_option: Selecione | |||
|
21 | ||||
|
22 | activerecord_error_inclusion: nao esta incluido na lista | |||
|
23 | activerecord_error_exclusion: esta reservado | |||
|
24 | activerecord_error_invalid: e invalido | |||
|
25 | activerecord_error_confirmation: confirmacao nao confere | |||
|
26 | activerecord_error_accepted: deve ser aceito | |||
|
27 | activerecord_error_empty: nao pode ser vazio | |||
|
28 | activerecord_error_blank: nao pode estar em branco | |||
|
29 | activerecord_error_too_long: e muito longo | |||
|
30 | activerecord_error_too_short: e muito comprido | |||
|
31 | activerecord_error_wrong_length: esta com o comprimento errado | |||
|
32 | activerecord_error_taken: ja esta examinado | |||
|
33 | activerecord_error_not_a_number: nao e um numero | |||
|
34 | activerecord_error_not_a_date: nao e uma data valida | |||
|
35 | activerecord_error_greater_than_start_date: deve ser maior que a data inicial | |||
|
36 | activerecord_error_not_same_project: doesn't belong to the same project | |||
|
37 | activerecord_error_circular_dependency: This relation would create a circular dependency | |||
|
38 | ||||
|
39 | general_fmt_age: %d yr | |||
|
40 | general_fmt_age_plural: %d yrs | |||
|
41 | general_fmt_date: %%m/%%d/%%Y | |||
|
42 | general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p | |||
|
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |||
|
44 | general_fmt_time: %%I:%%M %%p | |||
|
45 | general_text_No: 'Nao' | |||
|
46 | general_text_Yes: 'Sim' | |||
|
47 | general_text_no: 'nao' | |||
|
48 | general_text_yes: 'sim' | |||
|
49 | general_lang_name: 'Portugues Brasileiro' | |||
|
50 | general_csv_separator: ',' | |||
|
51 | general_csv_encoding: ISO-8859-1 | |||
|
52 | general_pdf_encoding: ISO-8859-1 | |||
|
53 | general_day_names: Segunda,Terca,Quarta,Quinta,Sexta,Sabado,Domingo | |||
|
54 | ||||
|
55 | notice_account_updated: Conta foi alterada com sucesso. | |||
|
56 | notice_account_invalid_creditentials: Usuario ou senha invalido. | |||
|
57 | notice_account_password_updated: Senha foi alterada com sucesso. | |||
|
58 | notice_account_wrong_password: Senha errada. | |||
|
59 | notice_account_register_done: Conta foi criada com sucesso. | |||
|
60 | notice_account_unknown_email: Usuario desconhecido. | |||
|
61 | notice_can_t_change_password: Esta conta usa autenticacao externa. E impossivel trocar a senha. | |||
|
62 | notice_account_lost_email_sent: Um email com instrucoes para escolher uma nova senha foi enviado para voce. | |||
|
63 | notice_account_activated: Sua conta foi ativada. Voce pode logar agora | |||
|
64 | notice_successful_create: Criado com sucesso. | |||
|
65 | notice_successful_update: Alterado com sucesso. | |||
|
66 | notice_successful_delete: Apagado com sucesso. | |||
|
67 | notice_successful_connection: Conectado com sucesso. | |||
|
68 | notice_file_not_found: A pagina que voce esta tentando acessar nao existe ou foi excluida. | |||
|
69 | notice_locking_conflict: Os dados foram atualizados por um outro usuario. | |||
|
70 | notice_scm_error: A entrada e/ou a revisao nao existem no repositorio. | |||
|
71 | notice_not_authorized: You are not authorized to access this page. | |||
|
72 | ||||
|
73 | mail_subject_lost_password: Sua senha do redMine. | |||
|
74 | mail_subject_register: Ativacao de conta do redMine. | |||
|
75 | ||||
|
76 | gui_validation_error: 1 erro | |||
|
77 | gui_validation_error_plural: %d erros | |||
|
78 | ||||
|
79 | field_name: Nome | |||
|
80 | field_description: Descricao | |||
|
81 | field_summary: Sumario | |||
|
82 | field_is_required: Obrigatorio | |||
|
83 | field_firstname: Primeiro nome | |||
|
84 | field_lastname: Ultimo nome | |||
|
85 | field_mail: Email | |||
|
86 | field_filename: Arquivo | |||
|
87 | field_filesize: Tamanho | |||
|
88 | field_downloads: Downloads | |||
|
89 | field_author: Autor | |||
|
90 | field_created_on: Criado | |||
|
91 | field_updated_on: Alterado | |||
|
92 | field_field_format: Formato | |||
|
93 | field_is_for_all: Para todos os projetos | |||
|
94 | field_possible_values: Possiveis valores | |||
|
95 | field_regexp: Expressao regular | |||
|
96 | field_min_length: Tamanho minimo | |||
|
97 | field_max_length: Tamanho maximo | |||
|
98 | field_value: Valor | |||
|
99 | field_category: Categoria | |||
|
100 | field_title: Titulo | |||
|
101 | field_project: Projeto | |||
|
102 | field_issue: Tarefa | |||
|
103 | field_status: Status | |||
|
104 | field_notes: Notas | |||
|
105 | field_is_closed: Tarefa fechada | |||
|
106 | field_is_default: Status padrao | |||
|
107 | field_html_color: Cor | |||
|
108 | field_tracker: Tipo | |||
|
109 | field_subject: Titulo | |||
|
110 | field_due_date: Data devida | |||
|
111 | field_assigned_to: Atribuido para | |||
|
112 | field_priority: Prioridade | |||
|
113 | field_fixed_version: Versao corrigida | |||
|
114 | field_user: Usuario | |||
|
115 | field_role: Regra | |||
|
116 | field_homepage: Pagina inicial | |||
|
117 | field_is_public: Publico | |||
|
118 | field_parent: Sub-projeto de | |||
|
119 | field_is_in_chlog: Tarefas mostradas no changelog | |||
|
120 | field_is_in_roadmap: Tarefas mostradas no roadmap | |||
|
121 | field_login: Login | |||
|
122 | field_mail_notification: Notificacoes por email | |||
|
123 | field_admin: Administrador | |||
|
124 | field_last_login_on: Ultima conexao | |||
|
125 | field_language: Lingua | |||
|
126 | field_effective_date: Data | |||
|
127 | field_password: Senha | |||
|
128 | field_new_password: Nova senha | |||
|
129 | field_password_confirmation: Confirmacao | |||
|
130 | field_version: Versao | |||
|
131 | field_type: Tipo | |||
|
132 | field_host: Servidor | |||
|
133 | field_port: Porta | |||
|
134 | field_account: Conta | |||
|
135 | field_base_dn: Base DN | |||
|
136 | field_attr_login: Atributo login | |||
|
137 | field_attr_firstname: Atributo primeiro nome | |||
|
138 | field_attr_lastname: Atributo ultimo nome | |||
|
139 | field_attr_mail: Atributo email | |||
|
140 | field_onthefly: Criacao de usuario on-the-fly | |||
|
141 | field_start_date: Inicio | |||
|
142 | field_done_ratio: %% Terminado | |||
|
143 | field_auth_source: Modo de autenticacao | |||
|
144 | field_hide_mail: Esconder meu email | |||
|
145 | field_comments: Comentario | |||
|
146 | field_url: URL | |||
|
147 | field_start_page: Pagina inicial | |||
|
148 | field_subproject: Sub-projeto | |||
|
149 | field_hours: Horas | |||
|
150 | field_activity: Atividade | |||
|
151 | field_spent_on: Data | |||
|
152 | field_identifier: Identificador | |||
|
153 | field_is_filter: Used as a filter | |||
|
154 | field_issue_to_id: Related issue | |||
|
155 | field_delay: Delay | |||
|
156 | ||||
|
157 | setting_app_title: Titulo da aplicacao | |||
|
158 | setting_app_subtitle: Sub-titulo da aplicacao | |||
|
159 | setting_welcome_text: Texto de boa-vinda | |||
|
160 | setting_default_language: Lingua padrao | |||
|
161 | setting_login_required: Autenticacao obrigatoria | |||
|
162 | setting_self_registration: Registro de si mesmo permitido | |||
|
163 | setting_attachment_max_size: Tamanho maximo do anexo | |||
|
164 | setting_issues_export_limit: Limite de exportacao das tarefas | |||
|
165 | setting_mail_from: Email enviado de | |||
|
166 | setting_host_name: Servidor | |||
|
167 | setting_text_formatting: Formato do texto | |||
|
168 | setting_wiki_compression: Compactacao do historio do Wiki | |||
|
169 | setting_feeds_limit: Limite do Feed | |||
|
170 | setting_autofetch_changesets: Autofetch SVN commits | |||
|
171 | setting_sys_api_enabled: Ativa WS para gerenciamento do repositorio | |||
|
172 | setting_commit_ref_keywords: Referencing keywords | |||
|
173 | setting_commit_fix_keywords: Fixing keywords | |||
|
174 | setting_autologin: Autologin | |||
|
175 | ||||
|
176 | label_user: Usuario | |||
|
177 | label_user_plural: Usuarios | |||
|
178 | label_user_new: Novo usuario | |||
|
179 | label_project: Projeto | |||
|
180 | label_project_new: Novo projeto | |||
|
181 | label_project_plural: Projetos | |||
|
182 | label_project_latest: Ultimos projetos | |||
|
183 | label_issue: Tarefa | |||
|
184 | label_issue_new: Nova tarefa | |||
|
185 | label_issue_plural: Tarefas | |||
|
186 | label_issue_view_all: Ver todas as tarefas | |||
|
187 | label_document: Documento | |||
|
188 | label_document_new: Novo documento | |||
|
189 | label_document_plural: Documentos | |||
|
190 | label_role: Regra | |||
|
191 | label_role_plural: Regras | |||
|
192 | label_role_new: Nova regra | |||
|
193 | label_role_and_permissions: Regras e permissoes | |||
|
194 | label_member: Membro | |||
|
195 | label_member_new: Novo membro | |||
|
196 | label_member_plural: Membros | |||
|
197 | label_tracker: Tipo | |||
|
198 | label_tracker_plural: Tipos | |||
|
199 | label_tracker_new: Novo tipo | |||
|
200 | label_workflow: Workflow | |||
|
201 | label_issue_status: Status da tarefa | |||
|
202 | label_issue_status_plural: Status das tarefas | |||
|
203 | label_issue_status_new: Novo status | |||
|
204 | label_issue_category: Categoria de tarefa | |||
|
205 | label_issue_category_plural: Categorias de tarefa | |||
|
206 | label_issue_category_new: Nova categoria | |||
|
207 | label_custom_field: Campo personalizado | |||
|
208 | label_custom_field_plural: Campos personalizado | |||
|
209 | label_custom_field_new: Novo campo personalizado | |||
|
210 | label_enumerations: Enumeracao | |||
|
211 | label_enumeration_new: Novo valor | |||
|
212 | label_information: Informacao | |||
|
213 | label_information_plural: Informacoes | |||
|
214 | label_please_login: Efetue login | |||
|
215 | label_register: Registre-se | |||
|
216 | label_password_lost: Perdi a senha | |||
|
217 | label_home: Pagina inicial | |||
|
218 | label_my_page: Minha pagina | |||
|
219 | label_my_account: Minha conta | |||
|
220 | label_my_projects: Meus projetos | |||
|
221 | label_administration: Administracao | |||
|
222 | label_login: Login | |||
|
223 | label_logout: Logout | |||
|
224 | label_help: Ajuda | |||
|
225 | label_reported_issues: Tarefas reportadas | |||
|
226 | label_assigned_to_me_issues: Tarefas atribuidas a mim | |||
|
227 | label_last_login: Utima conexao | |||
|
228 | label_last_updates: Ultima alteracao | |||
|
229 | label_last_updates_plural: %d Ultimas alteracoes | |||
|
230 | label_registered_on: Registrado em | |||
|
231 | label_activity: Atividade | |||
|
232 | label_new: Novo | |||
|
233 | label_logged_as: Logado como | |||
|
234 | label_environment: Ambiente | |||
|
235 | label_authentication: Autenticacao | |||
|
236 | label_auth_source: Modo de autenticacao | |||
|
237 | label_auth_source_new: Novo modo de autenticacao | |||
|
238 | label_auth_source_plural: Modos de autenticacao | |||
|
239 | label_subproject_plural: Sub-projetos | |||
|
240 | label_min_max_length: Tamanho min-max | |||
|
241 | label_list: Lista | |||
|
242 | label_date: Data | |||
|
243 | label_integer: Inteiro | |||
|
244 | label_boolean: Boleano | |||
|
245 | label_string: Texto | |||
|
246 | label_text: Texto longo | |||
|
247 | label_attribute: Atributo | |||
|
248 | label_attribute_plural: Atributos | |||
|
249 | label_download: %d Download | |||
|
250 | label_download_plural: %d Downloads | |||
|
251 | label_no_data: Sem dados para mostrar | |||
|
252 | label_change_status: Mudar status | |||
|
253 | label_history: Historico | |||
|
254 | label_attachment: Arquivo | |||
|
255 | label_attachment_new: Novo arquivo | |||
|
256 | label_attachment_delete: Apagar arquivo | |||
|
257 | label_attachment_plural: Arquivos | |||
|
258 | label_report: Relatorio | |||
|
259 | label_report_plural: Relatorio | |||
|
260 | label_news: Noticias | |||
|
261 | label_news_new: Adicionar noticias | |||
|
262 | label_news_plural: Noticias | |||
|
263 | label_news_latest: Ultimas noticias | |||
|
264 | label_news_view_all: Ver todas as noticias | |||
|
265 | label_change_log: Change log | |||
|
266 | label_settings: Ajustes | |||
|
267 | label_overview: Visao geral | |||
|
268 | label_version: Versao | |||
|
269 | label_version_new: Nova versao | |||
|
270 | label_version_plural: Versoes | |||
|
271 | label_confirmation: Confirmacao | |||
|
272 | label_export_to: Exportar para | |||
|
273 | label_read: Ler... | |||
|
274 | label_public_projects: Projetos publicos | |||
|
275 | label_open_issues: Aberto | |||
|
276 | label_open_issues_plural: Abertos | |||
|
277 | label_closed_issues: Fechado | |||
|
278 | label_closed_issues_plural: Fechados | |||
|
279 | label_total: Total | |||
|
280 | label_permissions: Permissoes | |||
|
281 | label_current_status: Status atual | |||
|
282 | label_new_statuses_allowed: Novo status permitido | |||
|
283 | label_all: todos | |||
|
284 | label_none: nenhum | |||
|
285 | label_next: Proximo | |||
|
286 | label_previous: Anterior | |||
|
287 | label_used_by: Usado por | |||
|
288 | label_details: Detalhes... | |||
|
289 | label_add_note: Adicionar nota | |||
|
290 | label_per_page: Por pagina | |||
|
291 | label_calendar: Calendario | |||
|
292 | label_months_from: Meses de | |||
|
293 | label_gantt: Gantt | |||
|
294 | label_internal: Interno | |||
|
295 | label_last_changes: utlimas %d mudancas | |||
|
296 | label_change_view_all: Mostrar todas as mudancas | |||
|
297 | label_personalize_page: Personalizar esta pagina | |||
|
298 | label_comment: Comentario | |||
|
299 | label_comment_plural: Comentarios | |||
|
300 | label_comment_add: Adicionar comentario | |||
|
301 | label_comment_added: Comentario adicionado | |||
|
302 | label_comment_delete: Apagar comentario | |||
|
303 | label_query: Consulta personalizada | |||
|
304 | label_query_plural: Consultas personalizadas | |||
|
305 | label_query_new: Nova consulta | |||
|
306 | label_filter_add: Adicionar filtro | |||
|
307 | label_filter_plural: Filtros | |||
|
308 | label_equals: e | |||
|
309 | label_not_equals: nao e | |||
|
310 | label_in_less_than: e maior que | |||
|
311 | label_in_more_than: e menor que | |||
|
312 | label_in: em | |||
|
313 | label_today: hoje | |||
|
314 | label_less_than_ago: faz menos de | |||
|
315 | label_more_than_ago: faz mais de | |||
|
316 | label_ago: dias atras | |||
|
317 | label_contains: contem | |||
|
318 | label_not_contains: nao contem | |||
|
319 | label_day_plural: dias | |||
|
320 | label_repository: SVN Repository | |||
|
321 | label_browse: Browse | |||
|
322 | label_modification: %d change | |||
|
323 | label_modification_plural: %d changes | |||
|
324 | label_revision: Revision | |||
|
325 | label_revision_plural: Revisions | |||
|
326 | label_added: added | |||
|
327 | label_modified: modified | |||
|
328 | label_deleted: deleted | |||
|
329 | label_latest_revision: Latest revision | |||
|
330 | label_latest_revision_plural: Latest revisions | |||
|
331 | label_view_revisions: View revisions | |||
|
332 | label_max_size: Maximum size | |||
|
333 | label_on: 'em' | |||
|
334 | label_sort_highest: Mover para o inicio | |||
|
335 | label_sort_higher: Mover para cima | |||
|
336 | label_sort_lower: Mover para baixo | |||
|
337 | label_sort_lowest: Mover para o fim | |||
|
338 | label_roadmap: Roadmap | |||
|
339 | label_roadmap_due_in: Due in | |||
|
340 | label_roadmap_no_issues: Sem tarefas para essa versao | |||
|
341 | label_search: Busca | |||
|
342 | label_result: %d resultado | |||
|
343 | label_result_plural: %d resultados | |||
|
344 | label_all_words: Todas as palavras | |||
|
345 | label_wiki: Wiki | |||
|
346 | label_wiki_edit: Wiki edit | |||
|
347 | label_wiki_edit_plural: Wiki edits | |||
|
348 | label_page_index: Index | |||
|
349 | label_current_version: Versao atual | |||
|
350 | label_preview: Previa | |||
|
351 | label_feed_plural: Feeds | |||
|
352 | label_changes_details: Detalhes de todas as mudancas | |||
|
353 | label_issue_tracking: Tarefas | |||
|
354 | label_spent_time: Tempo gasto | |||
|
355 | label_f_hour: %.2f hora | |||
|
356 | label_f_hour_plural: %.2f horas | |||
|
357 | label_time_tracking: Tempo trabalhado | |||
|
358 | label_change_plural: Mudancas | |||
|
359 | label_statistics: Estatisticas | |||
|
360 | label_commits_per_month: Commits por mes | |||
|
361 | label_commits_per_author: Commits por autor | |||
|
362 | label_view_diff: Ver diferencas | |||
|
363 | label_diff_inline: inline | |||
|
364 | label_diff_side_by_side: side by side | |||
|
365 | label_options: Opcoes | |||
|
366 | label_copy_workflow_from: Copiar workflow de | |||
|
367 | label_permissions_report: Relatorio de permissoes | |||
|
368 | label_watched_issues: Watched issues | |||
|
369 | label_related_issues: Related issues | |||
|
370 | label_applied_status: Applied status | |||
|
371 | label_loading: Loading... | |||
|
372 | label_relation_new: New relation | |||
|
373 | label_relation_delete: Delete relation | |||
|
374 | label_relates_to: related tp | |||
|
375 | label_duplicates: duplicates | |||
|
376 | label_blocks: blocks | |||
|
377 | label_blocked_by: blocked by | |||
|
378 | label_precedes: precedes | |||
|
379 | label_follows: follows | |||
|
380 | label_end_to_start: start to end | |||
|
381 | label_end_to_end: end to end | |||
|
382 | label_start_to_start: start to start | |||
|
383 | label_start_to_end: start to end | |||
|
384 | label_stay_logged_in: Stay logged in | |||
|
385 | label_disabled: disabled | |||
|
386 | label_show_completed_versions: Show completed versions | |||
|
387 | ||||
|
388 | button_login: Login | |||
|
389 | button_submit: Enviar | |||
|
390 | button_save: Salvar | |||
|
391 | button_check_all: Marcar todos | |||
|
392 | button_uncheck_all: Desmarcar todos | |||
|
393 | button_delete: Apagar | |||
|
394 | button_create: Criar | |||
|
395 | button_test: Testar | |||
|
396 | button_edit: Editar | |||
|
397 | button_add: Adicionar | |||
|
398 | button_change: Mudar | |||
|
399 | button_apply: Aplicar | |||
|
400 | button_clear: Limpar | |||
|
401 | button_lock: Bloquear | |||
|
402 | button_unlock: Desbloquear | |||
|
403 | button_download: Download | |||
|
404 | button_list: Listar | |||
|
405 | button_view: Ver | |||
|
406 | button_move: Mover | |||
|
407 | button_back: Voltar | |||
|
408 | button_cancel: Cancelar | |||
|
409 | button_activate: Ativar | |||
|
410 | button_sort: Ordenar | |||
|
411 | button_log_time: Tempo de trabalho | |||
|
412 | button_rollback: Voltar para esta versao | |||
|
413 | button_watch: Watch | |||
|
414 | button_unwatch: Unwatch | |||
|
415 | ||||
|
416 | status_active: ativo | |||
|
417 | status_registered: registrado | |||
|
418 | status_locked: bloqueado | |||
|
419 | ||||
|
420 | text_select_mail_notifications: Selecionar acoes para ser enviado uma notificacao por email | |||
|
421 | text_regexp_info: eg. ^[A-Z0-9]+$ | |||
|
422 | text_min_max_length_info: 0 siginifica sem restricao | |||
|
423 | text_project_destroy_confirmation: Voce tem certeza que deseja deletar este projeto e todas os dados relacionados? | |||
|
424 | text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow | |||
|
425 | text_are_you_sure: Voce tem certeza ? | |||
|
426 | text_journal_changed: alterado de %s para %s | |||
|
427 | text_journal_set_to: setar para %s | |||
|
428 | text_journal_deleted: apagado | |||
|
429 | text_tip_task_begin_day: tarefa comeca neste dia | |||
|
430 | text_tip_task_end_day: tarefa termina neste dia | |||
|
431 | text_tip_task_begin_end_day: tarefa comeca e termina neste dia | |||
|
432 | text_project_identifier_info: 'Letras minusculas (a-z), numeros e tracos permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.' | |||
|
433 | text_caracters_maximum: %d maximo de caracteres | |||
|
434 | text_length_between: Tamanho entre %d e %d caracteres. | |||
|
435 | text_tracker_no_workflow: Sem workflow definido para este tipo. | |||
|
436 | text_unallowed_characters: Unallowed characters | |||
|
437 | text_coma_separated: Multiple values allowed (coma separated). | |||
|
438 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages | |||
|
439 | ||||
|
440 | default_role_manager: Analista de Negocio ou Gerente de Projeto | |||
|
441 | default_role_developper: Desenvolvedor | |||
|
442 | default_role_reporter: Analista de Suporte | |||
|
443 | default_tracker_bug: Bug | |||
|
444 | default_tracker_feature: Implementacao | |||
|
445 | default_tracker_support: Suporte | |||
|
446 | default_issue_status_new: Novo | |||
|
447 | default_issue_status_assigned: Atribuido | |||
|
448 | default_issue_status_resolved: Resolvido | |||
|
449 | default_issue_status_feedback: Feedback | |||
|
450 | default_issue_status_closed: Fechado | |||
|
451 | default_issue_status_rejected: Rejeitado | |||
|
452 | default_doc_category_user: Documentacao do usuario | |||
|
453 | default_doc_category_tech: Documentacao do tecnica | |||
|
454 | default_priority_low: Baixo | |||
|
455 | default_priority_normal: Normal | |||
|
456 | default_priority_high: Alto | |||
|
457 | default_priority_urgent: Urgente | |||
|
458 | default_priority_immediate: Imediato | |||
|
459 | default_activity_design: Design | |||
|
460 | default_activity_development: Desenvolvimento | |||
|
461 | ||||
|
462 | enumeration_issue_priorities: Prioridade das tarefas | |||
|
463 | enumeration_doc_categories: Categorias de documento | |||
|
464 | enumeration_activities: Atividades (time tracking) |
@@ -0,0 +1,127 | |||||
|
1 | // ** I18N | |||
|
2 | ||||
|
3 | // Calendar pt_BR language | |||
|
4 | // Author: Adalberto Machado, <betosm@terra.com.br> | |||
|
5 | // Encoding: any | |||
|
6 | // Distributed under the same terms as the calendar itself. | |||
|
7 | ||||
|
8 | // For translators: please use UTF-8 if possible. We strongly believe that | |||
|
9 | // Unicode is the answer to a real internationalized world. Also please | |||
|
10 | // include your contact information in the header, as can be seen above. | |||
|
11 | ||||
|
12 | // full day names | |||
|
13 | Calendar._DN = new Array | |||
|
14 | ("Domingo", | |||
|
15 | "Segunda", | |||
|
16 | "Terca", | |||
|
17 | "Quarta", | |||
|
18 | "Quinta", | |||
|
19 | "Sexta", | |||
|
20 | "Sabado", | |||
|
21 | "Domingo"); | |||
|
22 | ||||
|
23 | // Please note that the following array of short day names (and the same goes | |||
|
24 | // for short month names, _SMN) isn't absolutely necessary. We give it here | |||
|
25 | // for exemplification on how one can customize the short day names, but if | |||
|
26 | // they are simply the first N letters of the full name you can simply say: | |||
|
27 | // | |||
|
28 | // Calendar._SDN_len = N; // short day name length | |||
|
29 | // Calendar._SMN_len = N; // short month name length | |||
|
30 | // | |||
|
31 | // If N = 3 then this is not needed either since we assume a value of 3 if not | |||
|
32 | // present, to be compatible with translation files that were written before | |||
|
33 | // this feature. | |||
|
34 | ||||
|
35 | // short day names | |||
|
36 | Calendar._SDN = new Array | |||
|
37 | ("Dom", | |||
|
38 | "Seg", | |||
|
39 | "Ter", | |||
|
40 | "Qua", | |||
|
41 | "Qui", | |||
|
42 | "Sex", | |||
|
43 | "Sab", | |||
|
44 | "Dom"); | |||
|
45 | ||||
|
46 | // First day of the week. "0" means display Sunday first, "1" means display | |||
|
47 | // Monday first, etc. | |||
|
48 | Calendar._FD = 1; | |||
|
49 | ||||
|
50 | // full month names | |||
|
51 | Calendar._MN = new Array | |||
|
52 | ("Janeiro", | |||
|
53 | "Fevereiro", | |||
|
54 | "Marco", | |||
|
55 | "Abril", | |||
|
56 | "Maio", | |||
|
57 | "Junho", | |||
|
58 | "Julho", | |||
|
59 | "Agosto", | |||
|
60 | "Setembro", | |||
|
61 | "Outubro", | |||
|
62 | "Novembro", | |||
|
63 | "Dezembro"); | |||
|
64 | ||||
|
65 | // short month names | |||
|
66 | Calendar._SMN = new Array | |||
|
67 | ("Jan", | |||
|
68 | "Fev", | |||
|
69 | "Mar", | |||
|
70 | "Abr", | |||
|
71 | "Mai", | |||
|
72 | "Jun", | |||
|
73 | "Jul", | |||
|
74 | "Ago", | |||
|
75 | "Set", | |||
|
76 | "Out", | |||
|
77 | "Nov", | |||
|
78 | "Dez"); | |||
|
79 | ||||
|
80 | // tooltips | |||
|
81 | Calendar._TT = {}; | |||
|
82 | Calendar._TT["INFO"] = "Sobre o calendario"; | |||
|
83 | ||||
|
84 | Calendar._TT["ABOUT"] = | |||
|
85 | "DHTML Date/Time Selector\n" + | |||
|
86 | "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-) | |||
|
87 | "Ultima versao visite: http://www.dynarch.com/projects/calendar/\n" + | |||
|
88 | "Distribuido sobre GNU LGPL. Veja http://gnu.org/licenses/lgpl.html para detalhes." + | |||
|
89 | "\n\n" + | |||
|
90 | "Selecao de data:\n" + | |||
|
91 | "- Use os botoes \xab, \xbb para selecionar o ano\n" + | |||
|
92 | "- Use os botoes " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " para selecionar o mes\n" + | |||
|
93 | "- Segure o botao do mouse em qualquer um desses botoes para selecao rapida."; | |||
|
94 | Calendar._TT["ABOUT_TIME"] = "\n\n" + | |||
|
95 | "Selecao de hora:\n" + | |||
|
96 | "- Clique em qualquer parte da hora para incrementar\n" + | |||
|
97 | "- ou Shift-click para decrementar\n" + | |||
|
98 | "- ou clique e segure para selecao rapida."; | |||
|
99 | ||||
|
100 | Calendar._TT["PREV_YEAR"] = "Ant. ano (segure para menu)"; | |||
|
101 | Calendar._TT["PREV_MONTH"] = "Ant. mes (segure para menu)"; | |||
|
102 | Calendar._TT["GO_TODAY"] = "Hoje"; | |||
|
103 | Calendar._TT["NEXT_MONTH"] = "Prox. mes (segure para menu)"; | |||
|
104 | Calendar._TT["NEXT_YEAR"] = "Prox. ano (segure para menu)"; | |||
|
105 | Calendar._TT["SEL_DATE"] = "Selecione a data"; | |||
|
106 | Calendar._TT["DRAG_TO_MOVE"] = "Arraste para mover"; | |||
|
107 | Calendar._TT["PART_TODAY"] = " (hoje)"; | |||
|
108 | ||||
|
109 | // the following is to inform that "%s" is to be the first day of week | |||
|
110 | // %s will be replaced with the day name. | |||
|
111 | Calendar._TT["DAY_FIRST"] = "Mostre %s primeiro"; | |||
|
112 | ||||
|
113 | // This may be locale-dependent. It specifies the week-end days, as an array | |||
|
114 | // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1 | |||
|
115 | // means Monday, etc. | |||
|
116 | Calendar._TT["WEEKEND"] = "0,6"; | |||
|
117 | ||||
|
118 | Calendar._TT["CLOSE"] = "Fechar"; | |||
|
119 | Calendar._TT["TODAY"] = "Hoje"; | |||
|
120 | Calendar._TT["TIME_PART"] = "(Shift-)Click ou arraste para mudar valor"; | |||
|
121 | ||||
|
122 | // date formats | |||
|
123 | Calendar._TT["DEF_DATE_FORMAT"] = "%d/%m/%Y"; | |||
|
124 | Calendar._TT["TT_DATE_FORMAT"] = "%a, %e %b"; | |||
|
125 | ||||
|
126 | Calendar._TT["WK"] = "sm"; | |||
|
127 | Calendar._TT["TIME"] = "Hora:"; |
@@ -191,7 +191,7 module ApplicationHelper | |||||
191 |
|
191 | |||
192 | def lang_options_for_select(blank=true) |
|
192 | def lang_options_for_select(blank=true) | |
193 | (blank ? [["(auto)", ""]] : []) + |
|
193 | (blank ? [["(auto)", ""]] : []) + | |
194 |
|
|
194 | GLoc.valid_languages.collect{|lang| [ ll(lang.to_s, :general_lang_name), lang.to_s]}.sort{|x,y| x.first <=> y.first } | |
195 | end |
|
195 | end | |
196 |
|
196 | |||
197 | def label_tag_for(name, option_tags = nil, options = {}) |
|
197 | def label_tag_for(name, option_tags = nil, options = {}) |
@@ -1,5 +1,5 | |||||
1 | <%= @added_to %> |
|
1 | <%= @added_to %> | |
2 |
<%= @attachments.size %> |
|
2 | <%= @attachments.size %> arquivo(s) adicionado. | |
3 | <% @attachments.each do |attachment | %> |
|
3 | <% @attachments.each do |attachment | %> | |
4 | - <%= attachment.filename %><% end %> |
|
4 | - <%= attachment.filename %><% end %> | |
5 |
|
5 |
@@ -1,4 +1,4 | |||||
1 |
|
|
1 | Um documento foi adicionado no projeto <%= @document.project.name %> (<%= @document.category.name %>): | |
2 | <%= l(:field_title) %>: <%= @document.title %> |
|
2 | <%= l(:field_title) %>: <%= @document.title %> | |
3 |
|
3 | |||
4 | http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file |
|
4 | http://<%= Setting.host_name %>/documents/show/<%= @document.id %> |
@@ -1,3 +1,3 | |||||
1 | Issue #<%= @issue.id %> has been reported. |
|
1 | Tarefa #<%= @issue.id %> foi incluída. | |
2 | ---------------------------------------- |
|
2 | ---------------------------------------- | |
3 | <%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %> No newline at end of file |
|
3 | <%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %> |
@@ -1,4 +1,4 | |||||
1 |
|
|
1 | Tarefa #<%= @issue.id %> foi alterada. | |
2 | <%= @journal.user.name %> |
|
2 | <%= @journal.user.name %> | |
3 | <% for detail in @journal.details %> |
|
3 | <% for detail in @journal.details %> | |
4 | <%= show_detail(detail, true) %> |
|
4 | <%= show_detail(detail, true) %> |
@@ -1,3 +1,3 | |||||
1 | To change your password, use the following link: |
|
1 | Para mudar sua senha, clique no link abaixo: | |
2 |
|
2 | |||
3 | http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> No newline at end of file |
|
3 | http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> |
@@ -1,3 +1,3 | |||||
1 | To activate your redMine account, use the following link: |
|
1 | Para ativar sua conta do redMine, clique no link abaixo: | |
2 |
|
2 | |||
3 | http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> No newline at end of file |
|
3 | http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> |
@@ -46,7 +46,7 general_text_No: 'Не' | |||||
46 | general_text_Yes: 'Да' |
|
46 | general_text_Yes: 'Да' | |
47 | general_text_no: 'не' |
|
47 | general_text_no: 'не' | |
48 | general_text_yes: 'да' |
|
48 | general_text_yes: 'да' | |
49 |
general_lang_ |
|
49 | general_lang_name: 'Bulgarian' | |
50 | general_csv_separator: ',' |
|
50 | general_csv_separator: ',' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 |
@@ -46,7 +46,7 general_text_No: 'Nein' | |||||
46 | general_text_Yes: 'Ja' |
|
46 | general_text_Yes: 'Ja' | |
47 | general_text_no: 'nein' |
|
47 | general_text_no: 'nein' | |
48 | general_text_yes: 'ja' |
|
48 | general_text_yes: 'ja' | |
49 |
general_lang_ |
|
49 | general_lang_name: 'Deutsch' | |
50 | general_csv_separator: ';' |
|
50 | general_csv_separator: ';' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 |
@@ -46,7 +46,7 general_text_No: 'No' | |||||
46 | general_text_Yes: 'Yes' |
|
46 | general_text_Yes: 'Yes' | |
47 | general_text_no: 'no' |
|
47 | general_text_no: 'no' | |
48 | general_text_yes: 'yes' |
|
48 | general_text_yes: 'yes' | |
49 |
general_lang_ |
|
49 | general_lang_name: 'English' | |
50 | general_csv_separator: ',' |
|
50 | general_csv_separator: ',' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 |
@@ -46,7 +46,7 general_text_No: 'No' | |||||
46 | general_text_Yes: 'Sí' |
|
46 | general_text_Yes: 'Sí' | |
47 | general_text_no: 'no' |
|
47 | general_text_no: 'no' | |
48 | general_text_yes: 'sí' |
|
48 | general_text_yes: 'sí' | |
49 |
general_lang_e |
|
49 | general_lang_name: 'Español' | |
50 | general_csv_separator: ';' |
|
50 | general_csv_separator: ';' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 |
@@ -46,7 +46,7 general_text_No: 'Non' | |||||
46 | general_text_Yes: 'Oui' |
|
46 | general_text_Yes: 'Oui' | |
47 | general_text_no: 'non' |
|
47 | general_text_no: 'non' | |
48 | general_text_yes: 'oui' |
|
48 | general_text_yes: 'oui' | |
49 |
general_lang_ |
|
49 | general_lang_name: 'Français' | |
50 | general_csv_separator: ';' |
|
50 | general_csv_separator: ';' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 |
@@ -46,7 +46,7 general_text_No: 'No' | |||||
46 | general_text_Yes: 'Si' |
|
46 | general_text_Yes: 'Si' | |
47 | general_text_no: 'no' |
|
47 | general_text_no: 'no' | |
48 | general_text_yes: 'si' |
|
48 | general_text_yes: 'si' | |
49 |
general_lang_ |
|
49 | general_lang_name: 'Italiano' | |
50 | general_csv_separator: ',' |
|
50 | general_csv_separator: ',' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 |
@@ -47,7 +47,7 general_text_No: 'いいえ' | |||||
47 | general_text_Yes: 'はい' |
|
47 | general_text_Yes: 'はい' | |
48 | general_text_no: 'いいえ' |
|
48 | general_text_no: 'いいえ' | |
49 | general_text_yes: 'はい' |
|
49 | general_text_yes: 'はい' | |
50 |
general_lang_ |
|
50 | general_lang_name: 'Japanese (日本語)' | |
51 | general_csv_separator: ',' |
|
51 | general_csv_separator: ',' | |
52 | general_csv_encoding: SJIS |
|
52 | general_csv_encoding: SJIS | |
53 | general_pdf_encoding: SJIS |
|
53 | general_pdf_encoding: SJIS |
@@ -1,87 +1,87 | |||||
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' |
|
1 | _gloc_rule_default: '|n| n==1 ? "" : "_plural" ' | |
2 |
|
2 | |||
3 | actionview_datehelper_select_day_prefix: |
|
3 | actionview_datehelper_select_day_prefix: | |
4 |
actionview_datehelper_select_month_names: Janeiro,Fevereiro,Mar |
|
4 | actionview_datehelper_select_month_names: Janeiro,Fevereiro,Março,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro | |
5 | actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez |
|
5 | actionview_datehelper_select_month_names_abbr: Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez | |
6 | actionview_datehelper_select_month_prefix: |
|
6 | actionview_datehelper_select_month_prefix: | |
7 | actionview_datehelper_select_year_prefix: |
|
7 | actionview_datehelper_select_year_prefix: | |
8 | actionview_datehelper_time_in_words_day: 1 dia |
|
8 | actionview_datehelper_time_in_words_day: 1 dia | |
9 | actionview_datehelper_time_in_words_day_plural: %d dias |
|
9 | actionview_datehelper_time_in_words_day_plural: %d dias | |
10 |
actionview_datehelper_time_in_words_hour_about: |
|
10 | actionview_datehelper_time_in_words_hour_about: em torno de uma hora | |
11 |
actionview_datehelper_time_in_words_hour_about_plural: |
|
11 | actionview_datehelper_time_in_words_hour_about_plural: em torno de %d horas | |
12 |
actionview_datehelper_time_in_words_hour_about_single: |
|
12 | actionview_datehelper_time_in_words_hour_about_single: em torno de uma hora | |
13 | actionview_datehelper_time_in_words_minute: 1 minuto |
|
13 | actionview_datehelper_time_in_words_minute: 1 minuto | |
14 | actionview_datehelper_time_in_words_minute_half: meio minuto |
|
14 | actionview_datehelper_time_in_words_minute_half: meio minuto | |
15 |
actionview_datehelper_time_in_words_minute_less_than: menos |
|
15 | actionview_datehelper_time_in_words_minute_less_than: menos de um minuto | |
16 | actionview_datehelper_time_in_words_minute_plural: %d minutos |
|
16 | actionview_datehelper_time_in_words_minute_plural: %d minutos | |
17 | actionview_datehelper_time_in_words_minute_single: 1 minuto |
|
17 | actionview_datehelper_time_in_words_minute_single: 1 minuto | |
18 |
actionview_datehelper_time_in_words_second_less_than: menos |
|
18 | actionview_datehelper_time_in_words_second_less_than: menos de um segundo | |
19 |
actionview_datehelper_time_in_words_second_less_than_plural: menos |
|
19 | actionview_datehelper_time_in_words_second_less_than_plural: menos de %d segundos | |
20 | actionview_instancetag_blank_option: Selecione |
|
20 | actionview_instancetag_blank_option: Selecione | |
21 |
|
21 | |||
22 |
activerecord_error_inclusion: n |
|
22 | activerecord_error_inclusion: não existe na lista | |
23 |
activerecord_error_exclusion: |
|
23 | activerecord_error_exclusion: já existe na lista | |
24 |
activerecord_error_invalid: |
|
24 | activerecord_error_invalid: é inválido | |
25 |
activerecord_error_confirmation: |
|
25 | activerecord_error_confirmation: não confere com sua confirmação | |
26 | activerecord_error_accepted: deve ser aceito |
|
26 | activerecord_error_accepted: deve ser aceito | |
27 |
activerecord_error_empty: n |
|
27 | activerecord_error_empty: não pode ser vazio | |
28 |
activerecord_error_blank: n |
|
28 | activerecord_error_blank: não pode estar em branco | |
29 |
activerecord_error_too_long: |
|
29 | activerecord_error_too_long: é muito longo | |
30 |
activerecord_error_too_short: |
|
30 | activerecord_error_too_short: é muito curto | |
31 |
activerecord_error_wrong_length: |
|
31 | activerecord_error_wrong_length: possui o comprimento errado | |
32 |
activerecord_error_taken: j |
|
32 | activerecord_error_taken: já foi usado em outro registro | |
33 |
activerecord_error_not_a_number: n |
|
33 | activerecord_error_not_a_number: não é um número | |
34 |
activerecord_error_not_a_date: n |
|
34 | activerecord_error_not_a_date: não é uma data válida | |
35 | activerecord_error_greater_than_start_date: deve ser maior que a data inicial |
|
35 | activerecord_error_greater_than_start_date: deve ser maior que a data inicial | |
36 |
activerecord_error_not_same_project: |
|
36 | activerecord_error_not_same_project: não pertence ao mesmo projeto | |
37 |
activerecord_error_circular_dependency: |
|
37 | activerecord_error_circular_dependency: Este relaão pode criar uma dependência circular | |
38 |
|
38 | |||
39 |
general_fmt_age: %d |
|
39 | general_fmt_age: %d ano | |
40 |
general_fmt_age_plural: %d |
|
40 | general_fmt_age_plural: %d anos | |
41 |
general_fmt_date: %% |
|
41 | general_fmt_date: %%d/%%m/%%Y | |
42 |
general_fmt_datetime: %% |
|
42 | general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p | |
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p |
|
43 | general_fmt_datetime_short: %%b %%d, %%I:%%M %%p | |
44 | general_fmt_time: %%I:%%M %%p |
|
44 | general_fmt_time: %%I:%%M %%p | |
45 |
general_text_No: 'N |
|
45 | general_text_No: 'Não' | |
46 | general_text_Yes: 'Sim' |
|
46 | general_text_Yes: 'Sim' | |
47 |
general_text_no: 'n |
|
47 | general_text_no: 'não' | |
48 | general_text_yes: 'sim' |
|
48 | general_text_yes: 'sim' | |
49 |
general_lang_ |
|
49 | general_lang_name: 'Português' | |
50 | general_csv_separator: ',' |
|
50 | general_csv_separator: ',' | |
51 | general_csv_encoding: ISO-8859-1 |
|
51 | general_csv_encoding: ISO-8859-1 | |
52 | general_pdf_encoding: ISO-8859-1 |
|
52 | general_pdf_encoding: ISO-8859-1 | |
53 |
general_day_names: Segunda,Ter |
|
53 | general_day_names: Segunda,Terça,Quarta,Quinta,Sexta,Sábado,Domingo | |
54 |
|
54 | |||
55 |
notice_account_updated: Conta foi a |
|
55 | notice_account_updated: Conta foi atualizada com sucesso. | |
56 |
notice_account_invalid_creditentials: Usu |
|
56 | notice_account_invalid_creditentials: Usuário ou senha inválidos. | |
57 | notice_account_password_updated: Senha foi alterada com sucesso. |
|
57 | notice_account_password_updated: Senha foi alterada com sucesso. | |
58 | notice_account_wrong_password: Senha errada. |
|
58 | notice_account_wrong_password: Senha errada. | |
59 | notice_account_register_done: Conta foi criada com sucesso. |
|
59 | notice_account_register_done: Conta foi criada com sucesso. | |
60 |
notice_account_unknown_email: Usu |
|
60 | notice_account_unknown_email: Usuário desconhecido. | |
61 |
notice_can_t_change_password: Esta conta usa autentica |
|
61 | notice_can_t_change_password: Esta conta usa autenticação externa. E impossível trocar a senha. | |
62 |
notice_account_lost_email_sent: Um email com instru |
|
62 | notice_account_lost_email_sent: Um email com as instruções para escolher uma nova senha foi enviado para você. | |
63 |
notice_account_activated: Sua conta foi ativada. Voc |
|
63 | notice_account_activated: Sua conta foi ativada. Você pode logar agora | |
64 | notice_successful_create: Criado com sucesso. |
|
64 | notice_successful_create: Criado com sucesso. | |
65 | notice_successful_update: Alterado com sucesso. |
|
65 | notice_successful_update: Alterado com sucesso. | |
66 | notice_successful_delete: Apagado com sucesso. |
|
66 | notice_successful_delete: Apagado com sucesso. | |
67 | notice_successful_connection: Conectado com sucesso. |
|
67 | notice_successful_connection: Conectado com sucesso. | |
68 |
notice_file_not_found: A p |
|
68 | notice_file_not_found: A página que você está tentando acessar não existe ou foi excluída. | |
69 |
notice_locking_conflict: Os dados foram atualizados por um outro usu |
|
69 | notice_locking_conflict: Os dados foram atualizados por um outro usuário. | |
70 |
notice_scm_error: A entrada e/ou a revis |
|
70 | notice_scm_error: A entrada e/ou a revisão não existem no repositório. | |
71 |
notice_not_authorized: |
|
71 | notice_not_authorized: Você não está autorizado a acessar esta página. | |
72 |
|
72 | |||
73 | mail_subject_lost_password: Sua senha do redMine. |
|
73 | mail_subject_lost_password: Sua senha do redMine. | |
74 |
mail_subject_register: Ativa |
|
74 | mail_subject_register: Ativação de conta do redMine. | |
75 |
|
75 | |||
76 | gui_validation_error: 1 erro |
|
76 | gui_validation_error: 1 erro | |
77 | gui_validation_error_plural: %d erros |
|
77 | gui_validation_error_plural: %d erros | |
78 |
|
78 | |||
79 | field_name: Nome |
|
79 | field_name: Nome | |
80 |
field_description: Descri |
|
80 | field_description: Descrição | |
81 |
field_summary: Sum |
|
81 | field_summary: Sumário | |
82 |
field_is_required: Obrigat |
|
82 | field_is_required: Obrigatório | |
83 | field_firstname: Primeiro nome |
|
83 | field_firstname: Primeiro nome | |
84 |
field_lastname: |
|
84 | field_lastname: Último nome | |
85 | field_mail: Email |
|
85 | field_mail: Email | |
86 | field_filename: Arquivo |
|
86 | field_filename: Arquivo | |
87 | field_filesize: Tamanho |
|
87 | field_filesize: Tamanho | |
@@ -91,43 +91,43 field_created_on: Criado | |||||
91 | field_updated_on: Alterado |
|
91 | field_updated_on: Alterado | |
92 | field_field_format: Formato |
|
92 | field_field_format: Formato | |
93 | field_is_for_all: Para todos os projetos |
|
93 | field_is_for_all: Para todos os projetos | |
94 |
field_possible_values: Poss |
|
94 | field_possible_values: Possíveis valores | |
95 |
field_regexp: Express |
|
95 | field_regexp: Expressão regular | |
96 |
field_min_length: Tamanho m |
|
96 | field_min_length: Tamanho mínimo | |
97 |
field_max_length: Tamanho m |
|
97 | field_max_length: Tamanho máximo | |
98 | field_value: Valor |
|
98 | field_value: Valor | |
99 | field_category: Categoria |
|
99 | field_category: Categoria | |
100 |
field_title: T |
|
100 | field_title: Título | |
101 | field_project: Projeto |
|
101 | field_project: Projeto | |
102 | field_issue: Tarefa |
|
102 | field_issue: Tarefa | |
103 | field_status: Status |
|
103 | field_status: Status | |
104 | field_notes: Notas |
|
104 | field_notes: Notas | |
105 | field_is_closed: Tarefa fechada |
|
105 | field_is_closed: Tarefa fechada | |
106 |
field_is_default: Status padr |
|
106 | field_is_default: Status padrão | |
107 | field_html_color: Cor |
|
107 | field_html_color: Cor | |
108 | field_tracker: Tipo |
|
108 | field_tracker: Tipo | |
109 |
field_subject: |
|
109 | field_subject: Assunto | |
110 |
field_due_date: Data |
|
110 | field_due_date: Data final | |
111 |
field_assigned_to: Atribu |
|
111 | field_assigned_to: Atribuído para | |
112 | field_priority: Prioridade |
|
112 | field_priority: Prioridade | |
113 |
field_fixed_version: Vers |
|
113 | field_fixed_version: Versão corrigida | |
114 |
field_user: Usu |
|
114 | field_user: Usuário | |
115 | field_role: Regra |
|
115 | field_role: Regra | |
116 |
field_homepage: P |
|
116 | field_homepage: Página inicial | |
117 |
field_is_public: P |
|
117 | field_is_public: Público | |
118 | field_parent: Sub-projeto de |
|
118 | field_parent: Sub-projeto de | |
119 | field_is_in_chlog: Tarefas mostradas no changelog |
|
119 | field_is_in_chlog: Tarefas mostradas no changelog | |
120 | field_is_in_roadmap: Tarefas mostradas no roadmap |
|
120 | field_is_in_roadmap: Tarefas mostradas no roadmap | |
121 | field_login: Login |
|
121 | field_login: Login | |
122 |
field_mail_notification: Notifica |
|
122 | field_mail_notification: Notificações por email | |
123 | field_admin: Administrador |
|
123 | field_admin: Administrador | |
124 |
field_last_login_on: |
|
124 | field_last_login_on: Última conexão | |
125 |
field_language: L |
|
125 | field_language: Língua | |
126 | field_effective_date: Data |
|
126 | field_effective_date: Data | |
127 | field_password: Senha |
|
127 | field_password: Senha | |
128 | field_new_password: Nova senha |
|
128 | field_new_password: Nova senha | |
129 |
field_password_confirmation: Confirma |
|
129 | field_password_confirmation: Confirmação | |
130 |
field_version: Vers |
|
130 | field_version: Versão | |
131 | field_type: Tipo |
|
131 | field_type: Tipo | |
132 | field_host: Servidor |
|
132 | field_host: Servidor | |
133 | field_port: Porta |
|
133 | field_port: Porta | |
@@ -135,51 +135,51 field_account: Conta | |||||
135 | field_base_dn: Base DN |
|
135 | field_base_dn: Base DN | |
136 | field_attr_login: Atributo login |
|
136 | field_attr_login: Atributo login | |
137 | field_attr_firstname: Atributo primeiro nome |
|
137 | field_attr_firstname: Atributo primeiro nome | |
138 |
field_attr_lastname: Atributo |
|
138 | field_attr_lastname: Atributo último nome | |
139 | field_attr_mail: Atributo email |
|
139 | field_attr_mail: Atributo email | |
140 |
field_onthefly: Cria |
|
140 | field_onthefly: Criação de usuário sob-demanda | |
141 |
field_start_date: In |
|
141 | field_start_date: Início | |
142 | field_done_ratio: %% Terminado |
|
142 | field_done_ratio: %% Terminado | |
143 |
field_auth_source: Modo de autentica |
|
143 | field_auth_source: Modo de autenticação | |
144 |
field_hide_mail: Escond |
|
144 | field_hide_mail: Esconda meu email | |
145 |
field_comments: Coment |
|
145 | field_comments: Comentário | |
146 | field_url: URL |
|
146 | field_url: URL | |
147 |
field_start_page: P |
|
147 | field_start_page: Página inicial | |
148 | field_subproject: Sub-projeto |
|
148 | field_subproject: Sub-projeto | |
149 | field_hours: Horas |
|
149 | field_hours: Horas | |
150 | field_activity: Atividade |
|
150 | field_activity: Atividade | |
151 | field_spent_on: Data |
|
151 | field_spent_on: Data | |
152 | field_identifier: Identificador |
|
152 | field_identifier: Identificador | |
153 |
field_is_filter: Us |
|
153 | field_is_filter: Usado como filtro | |
154 |
field_issue_to_id: |
|
154 | field_issue_to_id: Tarefa relacionada | |
155 |
field_delay: |
|
155 | field_delay: Atraso | |
156 |
|
156 | |||
157 |
setting_app_title: T |
|
157 | setting_app_title: Título da aplicação | |
158 |
setting_app_subtitle: Sub-t |
|
158 | setting_app_subtitle: Sub-título da aplicação | |
159 | setting_welcome_text: Texto de boa-vinda |
|
159 | setting_welcome_text: Texto de boas-vindas | |
160 |
setting_default_language: Lingua padr |
|
160 | setting_default_language: Linguagem padrão | |
161 |
setting_login_required: Autentica |
|
161 | setting_login_required: Autenticação obrigatória | |
162 |
setting_self_registration: Registro |
|
162 | setting_self_registration: Registro permitido | |
163 |
setting_attachment_max_size: Tamanho m |
|
163 | setting_attachment_max_size: Tamanho máximo do anexo | |
164 |
setting_issues_export_limit: Limite de exporta |
|
164 | setting_issues_export_limit: Limite de exportação das tarefas | |
165 | setting_mail_from: Email enviado de |
|
165 | setting_mail_from: Email enviado de | |
166 | setting_host_name: Servidor |
|
166 | setting_host_name: Servidor | |
167 | setting_text_formatting: Formato do texto |
|
167 | setting_text_formatting: Formato do texto | |
168 |
setting_wiki_compression: Compacta |
|
168 | setting_wiki_compression: Compactação do histórico do Wiki | |
169 | setting_feeds_limit: Limite do Feed |
|
169 | setting_feeds_limit: Limite do Feed | |
170 |
setting_autofetch_changesets: |
|
170 | setting_autofetch_changesets: Buscar automaticamente commits do SVN | |
171 |
setting_sys_api_enabled: Ativa WS para gerenciamento do reposit |
|
171 | setting_sys_api_enabled: Ativa WS para gerenciamento do repositório | |
172 |
setting_commit_ref_keywords: |
|
172 | setting_commit_ref_keywords: Palavras-chave de referôncia | |
173 |
setting_commit_fix_keywords: |
|
173 | setting_commit_fix_keywords: Palavras-chave fixas | |
174 | setting_autologin: Autologin |
|
174 | setting_autologin: Autologin | |
175 |
|
175 | |||
176 |
label_user: Usu |
|
176 | label_user: Usuário | |
177 |
label_user_plural: Usu |
|
177 | label_user_plural: Usuários | |
178 |
label_user_new: Novo usu |
|
178 | label_user_new: Novo usuário | |
179 | label_project: Projeto |
|
179 | label_project: Projeto | |
180 | label_project_new: Novo projeto |
|
180 | label_project_new: Novo projeto | |
181 | label_project_plural: Projetos |
|
181 | label_project_plural: Projetos | |
182 |
label_project_latest: |
|
182 | label_project_latest: Últimos projetos | |
183 | label_issue: Tarefa |
|
183 | label_issue: Tarefa | |
184 | label_issue_new: Nova tarefa |
|
184 | label_issue_new: Nova tarefa | |
185 | label_issue_plural: Tarefas |
|
185 | label_issue_plural: Tarefas | |
@@ -190,7 +190,7 label_document_plural: Documentos | |||||
190 | label_role: Regra |
|
190 | label_role: Regra | |
191 | label_role_plural: Regras |
|
191 | label_role_plural: Regras | |
192 | label_role_new: Nova regra |
|
192 | label_role_new: Nova regra | |
193 |
label_role_and_permissions: Regras e permiss |
|
193 | label_role_and_permissions: Regras e permissões | |
194 | label_member: Membro |
|
194 | label_member: Membro | |
195 | label_member_new: Novo membro |
|
195 | label_member_new: Novo membro | |
196 | label_member_plural: Membros |
|
196 | label_member_plural: Membros | |
@@ -201,47 +201,47 label_workflow: Workflow | |||||
201 | label_issue_status: Status da tarefa |
|
201 | label_issue_status: Status da tarefa | |
202 | label_issue_status_plural: Status das tarefas |
|
202 | label_issue_status_plural: Status das tarefas | |
203 | label_issue_status_new: Novo status |
|
203 | label_issue_status_new: Novo status | |
204 |
label_issue_category: Categoria d |
|
204 | label_issue_category: Categoria da tarefa | |
205 |
label_issue_category_plural: Categorias d |
|
205 | label_issue_category_plural: Categorias das tarefas | |
206 | label_issue_category_new: Nova categoria |
|
206 | label_issue_category_new: Nova categoria | |
207 | label_custom_field: Campo personalizado |
|
207 | label_custom_field: Campo personalizado | |
208 | label_custom_field_plural: Campos personalizado |
|
208 | label_custom_field_plural: Campos personalizados | |
209 | label_custom_field_new: Novo campo personalizado |
|
209 | label_custom_field_new: Novo campo personalizado | |
210 |
label_enumerations: Enumera |
|
210 | label_enumerations: Enumeração | |
211 | label_enumeration_new: Novo valor |
|
211 | label_enumeration_new: Novo valor | |
212 |
label_information: Informa |
|
212 | label_information: Informação | |
213 |
label_information_plural: Informa |
|
213 | label_information_plural: Informações | |
214 | label_please_login: Efetue login |
|
214 | label_please_login: Efetue login | |
215 | label_register: Registre-se |
|
215 | label_register: Registre-se | |
216 | label_password_lost: Perdi a senha |
|
216 | label_password_lost: Perdi a senha | |
217 |
label_home: P |
|
217 | label_home: Página inicial | |
218 |
label_my_page: Minha p |
|
218 | label_my_page: Minha página | |
219 | label_my_account: Minha conta |
|
219 | label_my_account: Minha conta | |
220 | label_my_projects: Meus projetos |
|
220 | label_my_projects: Meus projetos | |
221 |
label_administration: Administra |
|
221 | label_administration: Administração | |
222 | label_login: Login |
|
222 | label_login: Login | |
223 | label_logout: Logout |
|
223 | label_logout: Logout | |
224 | label_help: Ajuda |
|
224 | label_help: Ajuda | |
225 | label_reported_issues: Tarefas reportadas |
|
225 | label_reported_issues: Tarefas reportadas | |
226 |
label_assigned_to_me_issues: Tarefas atribu |
|
226 | label_assigned_to_me_issues: Tarefas atribuídas à mim | |
227 |
label_last_login: |
|
227 | label_last_login: Útima conexão | |
228 |
label_last_updates: |
|
228 | label_last_updates: Última alteração | |
229 |
label_last_updates_plural: %d |
|
229 | label_last_updates_plural: %d Últimas alterações | |
230 | label_registered_on: Registrado em |
|
230 | label_registered_on: Registrado em | |
231 | label_activity: Atividade |
|
231 | label_activity: Atividade | |
232 | label_new: Novo |
|
232 | label_new: Novo | |
233 | label_logged_as: Logado como |
|
233 | label_logged_as: Logado como | |
234 | label_environment: Ambiente |
|
234 | label_environment: Ambiente | |
235 |
label_authentication: Autentica |
|
235 | label_authentication: Autenticação | |
236 |
label_auth_source: Modo de autentica |
|
236 | label_auth_source: Modo de autenticação | |
237 |
label_auth_source_new: Novo modo de autentica |
|
237 | label_auth_source_new: Novo modo de autenticação | |
238 |
label_auth_source_plural: Modos de autentica |
|
238 | label_auth_source_plural: Modos de autenticação | |
239 | label_subproject_plural: Sub-projetos |
|
239 | label_subproject_plural: Sub-projetos | |
240 | label_min_max_length: Tamanho min-max |
|
240 | label_min_max_length: Tamanho min-max | |
241 | label_list: Lista |
|
241 | label_list: Lista | |
242 | label_date: Data |
|
242 | label_date: Data | |
243 | label_integer: Inteiro |
|
243 | label_integer: Inteiro | |
244 | label_boolean: Boleano |
|
244 | label_boolean: Booleano | |
245 | label_string: Texto |
|
245 | label_string: Texto | |
246 | label_text: Texto longo |
|
246 | label_text: Texto longo | |
247 | label_attribute: Atributo |
|
247 | label_attribute: Atributo | |
@@ -250,94 +250,94 label_download: %d Download | |||||
250 | label_download_plural: %d Downloads |
|
250 | label_download_plural: %d Downloads | |
251 | label_no_data: Sem dados para mostrar |
|
251 | label_no_data: Sem dados para mostrar | |
252 | label_change_status: Mudar status |
|
252 | label_change_status: Mudar status | |
253 |
label_history: Hist |
|
253 | label_history: Histórico | |
254 | label_attachment: Arquivo |
|
254 | label_attachment: Arquivo | |
255 | label_attachment_new: Novo arquivo |
|
255 | label_attachment_new: Novo arquivo | |
256 | label_attachment_delete: Apagar arquivo |
|
256 | label_attachment_delete: Apagar arquivo | |
257 | label_attachment_plural: Arquivos |
|
257 | label_attachment_plural: Arquivos | |
258 |
label_report: Relat |
|
258 | label_report: Relatório | |
259 |
label_report_plural: Relat |
|
259 | label_report_plural: Relatório | |
260 |
label_news: Not |
|
260 | label_news: Notícias | |
261 |
label_news_new: Adicionar not |
|
261 | label_news_new: Adicionar notícias | |
262 |
label_news_plural: Not |
|
262 | label_news_plural: Notícias | |
263 |
label_news_latest: |
|
263 | label_news_latest: Últimas notícias | |
264 |
label_news_view_all: Ver todas as not |
|
264 | label_news_view_all: Ver todas as notícias | |
265 |
label_change_log: |
|
265 | label_change_log: Log de mudanças | |
266 |
label_settings: |
|
266 | label_settings: Configurações | |
267 |
label_overview: Vis |
|
267 | label_overview: Visão geral | |
268 |
label_version: Vers |
|
268 | label_version: Versão | |
269 |
label_version_new: Nova vers |
|
269 | label_version_new: Nova versão | |
270 |
label_version_plural: Vers |
|
270 | label_version_plural: Versões | |
271 |
label_confirmation: Confirma |
|
271 | label_confirmation: Confirmação | |
272 | label_export_to: Exportar para |
|
272 | label_export_to: Exportar para | |
273 | label_read: Ler... |
|
273 | label_read: Ler... | |
274 |
label_public_projects: Projetos p |
|
274 | label_public_projects: Projetos públicos | |
275 | label_open_issues: Aberto |
|
275 | label_open_issues: Aberto | |
276 | label_open_issues_plural: Abertos |
|
276 | label_open_issues_plural: Abertos | |
277 | label_closed_issues: Fechado |
|
277 | label_closed_issues: Fechado | |
278 | label_closed_issues_plural: Fechados |
|
278 | label_closed_issues_plural: Fechados | |
279 | label_total: Total |
|
279 | label_total: Total | |
280 |
label_permissions: Permiss |
|
280 | label_permissions: Permissões | |
281 | label_current_status: Status atual |
|
281 | label_current_status: Status atual | |
282 | label_new_statuses_allowed: Novo status permitido |
|
282 | label_new_statuses_allowed: Novo status permitido | |
283 | label_all: todos |
|
283 | label_all: todos | |
284 | label_none: nenhum |
|
284 | label_none: nenhum | |
285 |
label_next: Pr |
|
285 | label_next: Próximo | |
286 | label_previous: Anterior |
|
286 | label_previous: Anterior | |
287 | label_used_by: Usado por |
|
287 | label_used_by: Usado por | |
288 | label_details: Detalhes... |
|
288 | label_details: Detalhes... | |
289 | label_add_note: Adicionar nota |
|
289 | label_add_note: Adicionar nota | |
290 |
label_per_page: Por p |
|
290 | label_per_page: Por página | |
291 |
label_calendar: Calend |
|
291 | label_calendar: Calendário | |
292 | label_months_from: Meses de |
|
292 | label_months_from: Meses de | |
293 | label_gantt: Gantt |
|
293 | label_gantt: Gantt | |
294 | label_internal: Interno |
|
294 | label_internal: Interno | |
295 |
label_last_changes: |
|
295 | label_last_changes: últimas %d mudanças | |
296 |
label_change_view_all: Mostrar todas as mudan |
|
296 | label_change_view_all: Mostrar todas as mudanças | |
297 |
label_personalize_page: Personalizar esta p |
|
297 | label_personalize_page: Personalizar esta página | |
298 |
label_comment: Coment |
|
298 | label_comment: Comentário | |
299 |
label_comment_plural: Coment |
|
299 | label_comment_plural: Comentários | |
300 |
label_comment_add: Adicionar coment |
|
300 | label_comment_add: Adicionar comentário | |
301 |
label_comment_added: Coment |
|
301 | label_comment_added: Comentário adicionado | |
302 |
label_comment_delete: Apagar coment |
|
302 | label_comment_delete: Apagar comentário | |
303 | label_query: Consulta personalizada |
|
303 | label_query: Consulta personalizada | |
304 | label_query_plural: Consultas personalizadas |
|
304 | label_query_plural: Consultas personalizadas | |
305 | label_query_new: Nova consulta |
|
305 | label_query_new: Nova consulta | |
306 | label_filter_add: Adicionar filtro |
|
306 | label_filter_add: Adicionar filtro | |
307 | label_filter_plural: Filtros |
|
307 | label_filter_plural: Filtros | |
308 |
label_equals: |
|
308 | label_equals: é | |
309 |
label_not_equals: n |
|
309 | label_not_equals: não e | |
310 |
label_in_less_than: |
|
310 | label_in_less_than: é maior que | |
311 |
label_in_more_than: |
|
311 | label_in_more_than: é menor que | |
312 | label_in: em |
|
312 | label_in: em | |
313 | label_today: hoje |
|
313 | label_today: hoje | |
314 | label_less_than_ago: faz menos de |
|
314 | label_less_than_ago: faz menos de | |
315 | label_more_than_ago: faz mais de |
|
315 | label_more_than_ago: faz mais de | |
316 |
label_ago: dias atr |
|
316 | label_ago: dias atrás | |
317 |
label_contains: cont |
|
317 | label_contains: contém | |
318 |
label_not_contains: n |
|
318 | label_not_contains: não contém | |
319 | label_day_plural: dias |
|
319 | label_day_plural: dias | |
320 |
label_repository: SVN |
|
320 | label_repository: Repositório SVN | |
321 |
label_browse: |
|
321 | label_browse: Procurar | |
322 |
label_modification: %d |
|
322 | label_modification: %d mudança | |
323 |
label_modification_plural: %d |
|
323 | label_modification_plural: %d mudanças | |
324 |
label_revision: Revis |
|
324 | label_revision: Revisão | |
325 |
label_revision_plural: Revis |
|
325 | label_revision_plural: Revisões | |
326 |
label_added: ad |
|
326 | label_added: adicionado | |
327 |
label_modified: modifi |
|
327 | label_modified: modificado | |
328 |
label_deleted: delet |
|
328 | label_deleted: deletado | |
329 |
label_latest_revision: |
|
329 | label_latest_revision: Última revisão | |
330 |
label_latest_revision_plural: |
|
330 | label_latest_revision_plural: Últimas revisões | |
331 |
label_view_revisions: V |
|
331 | label_view_revisions: Ver revisões | |
332 |
label_max_size: |
|
332 | label_max_size: Tamanho máximo | |
333 |
label_on: |
|
333 | label_on: em | |
334 |
label_sort_highest: Mover para o in |
|
334 | label_sort_highest: Mover para o início | |
335 | label_sort_higher: Mover para cima |
|
335 | label_sort_higher: Mover para cima | |
336 | label_sort_lower: Mover para baixo |
|
336 | label_sort_lower: Mover para baixo | |
337 | label_sort_lowest: Mover para o fim |
|
337 | label_sort_lowest: Mover para o fim | |
338 | label_roadmap: Roadmap |
|
338 | label_roadmap: Roadmap | |
339 |
label_roadmap_due_in: |
|
339 | label_roadmap_due_in: Termina em | |
340 |
label_roadmap_no_issues: Sem tarefas para essa vers |
|
340 | label_roadmap_no_issues: Sem tarefas para essa versão | |
341 | label_search: Busca |
|
341 | label_search: Busca | |
342 | label_result: %d resultado |
|
342 | label_result: %d resultado | |
343 | label_result_plural: %d resultados |
|
343 | label_result_plural: %d resultados | |
@@ -346,44 +346,44 label_wiki: Wiki | |||||
346 | label_wiki_edit: Wiki edit |
|
346 | label_wiki_edit: Wiki edit | |
347 | label_wiki_edit_plural: Wiki edits |
|
347 | label_wiki_edit_plural: Wiki edits | |
348 | label_page_index: Index |
|
348 | label_page_index: Index | |
349 |
label_current_version: Vers |
|
349 | label_current_version: Versão atual | |
350 |
label_preview: Pr |
|
350 | label_preview: Prévia | |
351 | label_feed_plural: Feeds |
|
351 | label_feed_plural: Feeds | |
352 |
label_changes_details: Detalhes de todas as mudan |
|
352 | label_changes_details: Detalhes de todas as mudanças | |
353 | label_issue_tracking: Tarefas |
|
353 | label_issue_tracking: Tarefas | |
354 | label_spent_time: Tempo gasto |
|
354 | label_spent_time: Tempo gasto | |
355 | label_f_hour: %.2f hora |
|
355 | label_f_hour: %.2f hora | |
356 | label_f_hour_plural: %.2f horas |
|
356 | label_f_hour_plural: %.2f horas | |
357 | label_time_tracking: Tempo trabalhado |
|
357 | label_time_tracking: Tempo trabalhado | |
358 |
label_change_plural: Mudan |
|
358 | label_change_plural: Mudanças | |
359 |
label_statistics: Estat |
|
359 | label_statistics: Estatísticas | |
360 |
label_commits_per_month: Commits por m |
|
360 | label_commits_per_month: Commits por mês | |
361 | label_commits_per_author: Commits por autor |
|
361 | label_commits_per_author: Commits por autor | |
362 |
label_view_diff: Ver diferen |
|
362 | label_view_diff: Ver diferenças | |
363 | label_diff_inline: inline |
|
363 | label_diff_inline: inline | |
364 |
label_diff_side_by_side: |
|
364 | label_diff_side_by_side: lado a lado | |
365 |
label_options: Op |
|
365 | label_options: Opções | |
366 | label_copy_workflow_from: Copiar workflow de |
|
366 | label_copy_workflow_from: Copiar workflow de | |
367 |
label_permissions_report: Relat |
|
367 | label_permissions_report: Relatório de permissões | |
368 |
label_watched_issues: |
|
368 | label_watched_issues: Tarefas observadas | |
369 |
label_related_issues: |
|
369 | label_related_issues: tarefas relacionadas | |
370 |
label_applied_status: |
|
370 | label_applied_status: Status aplicado | |
371 |
label_loading: |
|
371 | label_loading: Carregando... | |
372 |
label_relation_new: N |
|
372 | label_relation_new: Nova relação | |
373 |
label_relation_delete: Delet |
|
373 | label_relation_delete: Deletar relação | |
374 |
label_relates_to: rela |
|
374 | label_relates_to: relacionado à | |
375 |
label_duplicates: duplica |
|
375 | label_duplicates: duplicadas | |
376 |
label_blocks: blo |
|
376 | label_blocks: bloqueios | |
377 |
label_blocked_by: blo |
|
377 | label_blocked_by: bloqueado por | |
378 |
label_precedes: pr |
|
378 | label_precedes: procede | |
379 |
label_follows: |
|
379 | label_follows: segue | |
380 |
label_end_to_start: |
|
380 | label_end_to_start: fim ao início | |
381 |
label_end_to_end: |
|
381 | label_end_to_end: fim ao fim | |
382 |
label_start_to_start: |
|
382 | label_start_to_start: ínícia ao inícia | |
383 |
label_start_to_end: |
|
383 | label_start_to_end: inícia ao fim | |
384 |
label_stay_logged_in: |
|
384 | label_stay_logged_in: Rester connecté | |
385 |
label_disabled: d |
|
385 | label_disabled: désactivé | |
386 |
label_show_completed_versions: |
|
386 | label_show_completed_versions: Voire les versions passées | |
387 |
|
387 | |||
388 | button_login: Login |
|
388 | button_login: Login | |
389 | button_submit: Enviar |
|
389 | button_submit: Enviar | |
@@ -409,48 +409,48 button_cancel: Cancelar | |||||
409 | button_activate: Ativar |
|
409 | button_activate: Ativar | |
410 | button_sort: Ordenar |
|
410 | button_sort: Ordenar | |
411 | button_log_time: Tempo de trabalho |
|
411 | button_log_time: Tempo de trabalho | |
412 |
button_rollback: Voltar para esta vers |
|
412 | button_rollback: Voltar para esta versão | |
413 |
button_watch: |
|
413 | button_watch: Observar | |
414 |
button_unwatch: |
|
414 | button_unwatch: Não observar | |
415 |
|
415 | |||
416 | status_active: ativo |
|
416 | status_active: ativo | |
417 | status_registered: registrado |
|
417 | status_registered: registrado | |
418 | status_locked: bloqueado |
|
418 | status_locked: bloqueado | |
419 |
|
419 | |||
420 |
text_select_mail_notifications: Selecionar a |
|
420 | text_select_mail_notifications: Selecionar ações para ser enviada uma notificação por email | |
421 |
text_regexp_info: e |
|
421 | text_regexp_info: ex. ^[A-Z0-9]+$ | |
422 |
text_min_max_length_info: 0 siginifica sem restri |
|
422 | text_min_max_length_info: 0 siginifica sem restrição | |
423 |
text_project_destroy_confirmation: Voc |
|
423 | text_project_destroy_confirmation: Você tem certeza que deseja deletar este projeto e todos os dados relacionados? | |
424 | text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow |
|
424 | text_workflow_edit: Selecione uma regra e um tipo de tarefa para editar o workflow | |
425 |
text_are_you_sure: Voc |
|
425 | text_are_you_sure: Você tem certeza ? | |
426 | text_journal_changed: alterado de %s para %s |
|
426 | text_journal_changed: alterado de %s para %s | |
427 |
text_journal_set_to: |
|
427 | text_journal_set_to: alterar para %s | |
428 | text_journal_deleted: apagado |
|
428 | text_journal_deleted: apagado | |
429 |
text_tip_task_begin_day: tarefa come |
|
429 | text_tip_task_begin_day: tarefa começa neste dia | |
430 | text_tip_task_end_day: tarefa termina neste dia |
|
430 | text_tip_task_end_day: tarefa termina neste dia | |
431 |
text_tip_task_begin_end_day: tarefa come |
|
431 | text_tip_task_begin_end_day: tarefa começa e termina neste dia | |
432 |
text_project_identifier_info: 'Letras min |
|
432 | text_project_identifier_info: 'Letras minúsculas (a-z), números e traços permitido.<br />Uma vez salvo, o identificador nao pode ser mudado.' | |
433 |
text_caracters_maximum: %d m |
|
433 | text_caracters_maximum: %d móximo de caracteres | |
434 | text_length_between: Tamanho entre %d e %d caracteres. |
|
434 | text_length_between: Tamanho entre %d e %d caracteres. | |
435 | text_tracker_no_workflow: Sem workflow definido para este tipo. |
|
435 | text_tracker_no_workflow: Sem workflow definido para este tipo. | |
436 |
text_unallowed_characters: |
|
436 | text_unallowed_characters: Caracteres não permitidos | |
437 |
text_coma_separated: |
|
437 | text_coma_separated: Permitido múltiplos valores (separados por vírgula). | |
438 |
text_issues_ref_in_commit_messages: Referenci |
|
438 | text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit | |
439 |
|
439 | |||
440 |
default_role_manager: Analista de Neg |
|
440 | default_role_manager: Analista de Negócio ou Gerente de Projeto | |
441 | default_role_developper: Desenvolvedor |
|
441 | default_role_developper: Desenvolvedor | |
442 | default_role_reporter: Analista de Suporte |
|
442 | default_role_reporter: Analista de Suporte | |
443 | default_tracker_bug: Bug |
|
443 | default_tracker_bug: Bug | |
444 |
default_tracker_feature: Implementa |
|
444 | default_tracker_feature: Implementaçõo | |
445 | default_tracker_support: Suporte |
|
445 | default_tracker_support: Suporte | |
446 | default_issue_status_new: Novo |
|
446 | default_issue_status_new: Novo | |
447 |
default_issue_status_assigned: Atribu |
|
447 | default_issue_status_assigned: Atribuído | |
448 | default_issue_status_resolved: Resolvido |
|
448 | default_issue_status_resolved: Resolvido | |
449 | default_issue_status_feedback: Feedback |
|
449 | default_issue_status_feedback: Feedback | |
450 | default_issue_status_closed: Fechado |
|
450 | default_issue_status_closed: Fechado | |
451 | default_issue_status_rejected: Rejeitado |
|
451 | default_issue_status_rejected: Rejeitado | |
452 |
default_doc_category_user: Documenta |
|
452 | default_doc_category_user: Documentação do usuário | |
453 |
default_doc_category_tech: Documenta |
|
453 | default_doc_category_tech: Documentação técnica | |
454 | default_priority_low: Baixo |
|
454 | default_priority_low: Baixo | |
455 | default_priority_normal: Normal |
|
455 | default_priority_normal: Normal | |
456 | default_priority_high: Alto |
|
456 | default_priority_high: Alto |
@@ -49,7 +49,7 general_text_No: '否' | |||||
49 | general_text_Yes: '是' |
|
49 | general_text_Yes: '是' | |
50 | general_text_no: '否' |
|
50 | general_text_no: '否' | |
51 | general_text_yes: '是' |
|
51 | general_text_yes: '是' | |
52 |
general_lang_ |
|
52 | general_lang_name: 'Chinese (简体中文)' | |
53 | general_csv_separator: ',' |
|
53 | general_csv_separator: ',' | |
54 | general_csv_encoding: gb2312 |
|
54 | general_csv_encoding: gb2312 | |
55 | general_pdf_encoding: Big5 |
|
55 | general_pdf_encoding: Big5 |
1 | NO CONTENT: modified file |
|
NO CONTENT: modified file |
@@ -30,7 +30,7 class ApplicationControllerTest < Test::Unit::TestCase | |||||
30 |
|
30 | |||
31 | # check that all 6 supported languages are valid |
|
31 | # check that all 6 supported languages are valid | |
32 | def test_localization |
|
32 | def test_localization | |
33 |
assert_equal |
|
33 | assert_equal 10, GLoc.valid_languages.size | |
34 | GLoc.valid_languages.each do |lang| |
|
34 | GLoc.valid_languages.each do |lang| | |
35 | assert set_language_if_valid(lang) |
|
35 | assert set_language_if_valid(lang) | |
36 | end |
|
36 | end |
General Comments 0
You need to be logged in to leave comments.
Login now