diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-07-26 09:02:30 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-07-26 09:02:30 -0400 |
commit | bff39f59a0c8e717a7a1a0757d5bcc7cfecaa72e (patch) | |
tree | 9014aac075087a5090e4161a13184ce89904acc1 /app/Locales/pt_BR | |
parent | 74b59e31119c00411461c056d49a3b2ab57a7da5 (diff) |
Fix bug: wrong date displayed by strftime (#178)
Diffstat (limited to 'app/Locales/pt_BR')
-rw-r--r-- | app/Locales/pt_BR/translations.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/Locales/pt_BR/translations.php b/app/Locales/pt_BR/translations.php index bb7a3719..793c30e6 100644 --- a/app/Locales/pt_BR/translations.php +++ b/app/Locales/pt_BR/translations.php @@ -109,7 +109,7 @@ return array( 'Open a task' => 'Abrir uma tarefa', 'Do you really want to open this task: "%s"?' => 'Quer realmente abrir esta tarefa: "%s"?', 'Back to the board' => 'Voltar ao quadro', - 'Created on %B %e, %G at %k:%M %p' => 'Criado em %d %B %G às %H:%M', + 'Created on %B %e, %Y at %k:%M %p' => 'Criado em %d %B %Y às %H:%M', 'There is nobody assigned' => 'Não há ninguém designado', 'Column on the board:' => 'Coluna no quadro:', 'Status is open' => 'Status está aberto', @@ -171,8 +171,8 @@ return array( 'Work in progress' => 'Em andamento', 'Done' => 'Encerrado', 'Application version:' => 'Versão da aplicação:', - 'Completed on %B %e, %G at %k:%M %p' => 'Encerrado em %d %B %G às %H:%M', - '%B %e, %G at %k:%M %p' => '%d %B %G às %H:%M', + 'Completed on %B %e, %Y at %k:%M %p' => 'Encerrado em %d %B %Y às %H:%M', + '%B %e, %Y at %k:%M %p' => '%d %B %Y às %H:%M', 'Date created' => 'Data de criação', 'Date completed' => 'Data de encerramento', 'Id' => 'Id', @@ -218,8 +218,8 @@ return array( 'm/d/Y' => 'd/m/Y', // Date format parsed with php 'month/day/year' => 'dia/mês/ano', // Help shown to the user 'Invalid date' => 'Data inválida', - 'Must be done before %B %e, %G' => 'Deve ser feito antes de %d %B %G', - '%B %e, %G' => '%d %B %G', + 'Must be done before %B %e, %Y' => 'Deve ser feito antes de %d %B %Y', + '%B %e, %Y' => '%d %B %Y', 'Automatic actions' => 'Ações automáticas', 'Your automatic action have been created successfully.' => 'Sua ação automética foi criada com sucesso.', 'Unable to create your automatic action.' => 'Impossível criar sua ação automática.', @@ -383,7 +383,7 @@ return array( // 'Link my GitHub Account' => '', // 'Unlink my GitHub Account' => '', // 'Created by %s' => 'Créé par %s', - // 'Last modified on %B %e, %G at %k:%M %p' => '', + // 'Last modified on %B %e, %Y at %k:%M %p' => '', // 'Tasks Export' => '', // 'Tasks exportation for "%s"' => '', // 'Start Date' => '', |