Skip to content

Commit

Permalink
Merge pull request #19 from nmpribeiro/develop
Browse files Browse the repository at this point in the history
Added de locale pt and pt-BR
  • Loading branch information
nWidart committed Aug 26, 2015
2 parents 2c5e672 + a5d0ee7 commit 1e92751
Show file tree
Hide file tree
Showing 21 changed files with 273 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Resources/lang/de/blog.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

return [
'title' => 'Blog'
];
4 changes: 4 additions & 0 deletions Resources/lang/de/button.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?php

return [
];
24 changes: 24 additions & 0 deletions Resources/lang/de/category.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

return [
'title' => [
'category' => 'Kategorie',
'create category' => 'Kategorie erstellen',
'edit category' => 'Kategorie bearbeiten',
],
'button' => [
'create category' => 'Kategorie erstellen',
],
'table' => [
'created at' => 'Erstellt am',
'name' => 'Namen',
'slug' => 'Slug',
],
'form' => [
'name' => 'Namen',
'slug' => 'Slug',
],
'navigation' => [
'back to index' => 'Zurück zur Kategorie Index'
],
];
19 changes: 19 additions & 0 deletions Resources/lang/de/messages.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

return [
/* Post management */
'post created' => 'Beitrag erfolgreich erstellt.',
'post not found' => 'Beitrag nicht gefunden.',
'post updated' => 'Beitrag erfolgreich aktualisiert.',
'post deleted' => 'Beitrag erfolgreich gelöscht.',

'title is required' => 'Titel ist erforderlich',
'slug is required' => 'Slug ist erforderlich',
'slug is unique' => 'Diese slug ist bereits vergeben',

/* Category management */
'category created' => 'Kategorie erfolgreich erstellt.',
'category not found' => 'Kategorie nicht gefunden.',
'category updated' => 'Kategorie erfolgreich aktualisiert.',
'category deleted' => 'Kategorie erfolgreich gelöscht.',
];
25 changes: 25 additions & 0 deletions Resources/lang/de/post.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

return [
'title' => [
'post' => 'Beiträge',
'create post' => 'Beiträge erstellen',
'edit post' => 'Beiträge bearbeiten',
],
'button' => [
'create post' => 'Beiträge erstellen',
],
'table' => [
'title' => 'Title',
'slug' => 'Slug',
'status' => 'Status',
],
'form' => [
'title' => 'Title',
'slug' => 'Slug',
],
'navigation' => [
'back to index' => 'Zurück zum Index Beiträge'
],
'latest posts' => 'Letzte Beiträge',
];
6 changes: 6 additions & 0 deletions Resources/lang/de/settings.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

return [
'posts-per-page' => 'Beiträge pro Seite',
'latest-posts-amount' => 'Menge neusten Beiträge',
];
8 changes: 8 additions & 0 deletions Resources/lang/de/status.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

return [
'draft' => 'Draft',
'pending review' => 'Pending review',
'published' => 'Published',
'unpublished' => 'Unpublished',
];
5 changes: 5 additions & 0 deletions Resources/lang/pt-BR/blog.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

return [
'title' => 'Blog'
];
4 changes: 4 additions & 0 deletions Resources/lang/pt-BR/button.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?php

return [
];
24 changes: 24 additions & 0 deletions Resources/lang/pt-BR/category.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

return [
'title' => [
'category' => 'Categorias',
'create category' => 'Criar categoria',
'edit category' => 'Editar categoria',
],
'button' => [
'create category' => 'Criar categoria',
],
'table' => [
'created at' => 'Criado em',
'name' => 'Nome',
'slug' => 'Slug',
],
'form' => [
'name' => 'Nome',
'slug' => 'Slug',
],
'navigation' => [
'back to index' => 'Voltar ao índice de categorias.'
],
];
19 changes: 19 additions & 0 deletions Resources/lang/pt-BR/messages.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

return [
/* Post management */
'post created' => 'Post criado com sucesso.',
'post not found' => 'Post não encontrado.',
'post updated' => 'Post actualizado com sucesso.',
'post deleted' => 'Post eliminado com sucesso.',

'title is required' => 'O Título é necessário',
'slug is required' => 'O Slug é necessário',
'slug is unique' => 'Este slug já está a ser utilizado',

/* Category management */
'category created' => 'Categoria criada com êxito.',
'category not found' => 'Categoria não encontrada.',
'category updated' => 'Categoria atualizada com sucesso.',
'category deleted' => 'Categoria eliminada com sucesso.',
];
25 changes: 25 additions & 0 deletions Resources/lang/pt-BR/post.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

return [
'title' => [
'post' => 'Posts',
'create post' => 'Criar post',
'edit post' => 'Editar post',
],
'button' => [
'create post' => 'Criar post',
],
'table' => [
'title' => 'Título',
'slug' => 'Slug',
'status' => 'Status',
],
'form' => [
'title' => 'Título',
'slug' => 'Slug',
],
'navigation' => [
'back to index' => 'Voltar ao index de posts'
],
'latest posts' => 'Últimos posts',
];
6 changes: 6 additions & 0 deletions Resources/lang/pt-BR/settings.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

return [
'posts-per-page' => 'Posts por página',
'latest-posts-amount' => 'Quantidade de posts mais recentes',
];
8 changes: 8 additions & 0 deletions Resources/lang/pt-BR/status.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

return [
'draft' => 'Rascunho',
'pending review' => 'Revisão pendente',
'published' => 'Publicado',
'unpublished' => 'Não publicado',
];
5 changes: 5 additions & 0 deletions Resources/lang/pt/blog.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

return [
'title' => 'Blog'
];
4 changes: 4 additions & 0 deletions Resources/lang/pt/button.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?php

return [
];
24 changes: 24 additions & 0 deletions Resources/lang/pt/category.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

return [
'title' => [
'category' => 'Categorias',
'create category' => 'Criar categoria',
'edit category' => 'Editar categoria',
],
'button' => [
'create category' => 'Criar categoria',
],
'table' => [
'created at' => 'Criado em',
'name' => 'Nome',
'slug' => 'Slug',
],
'form' => [
'name' => 'Nome',
'slug' => 'Slug',
],
'navigation' => [
'back to index' => 'Voltar ao índice de categorias.'
],
];
19 changes: 19 additions & 0 deletions Resources/lang/pt/messages.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

return [
/* Post management */
'post created' => 'Post criado com sucesso.',
'post not found' => 'Post não encontrado.',
'post updated' => 'Post actualizado com sucesso.',
'post deleted' => 'Post eliminado com sucesso.',

'title is required' => 'O Título é necessário',
'slug is required' => 'O Slug é necessário',
'slug is unique' => 'Este slug já está a ser utilizado',

/* Category management */
'category created' => 'Categoria criada com êxito.',
'category not found' => 'Categoria não encontrada.',
'category updated' => 'Categoria atualizada com sucesso.',
'category deleted' => 'Categoria eliminada com sucesso.',
];
25 changes: 25 additions & 0 deletions Resources/lang/pt/post.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

return [
'title' => [
'post' => 'Posts',
'create post' => 'Criar post',
'edit post' => 'Editar post',
],
'button' => [
'create post' => 'Criar post',
],
'table' => [
'title' => 'Título',
'slug' => 'Slug',
'status' => 'Status',
],
'form' => [
'title' => 'Título',
'slug' => 'Slug',
],
'navigation' => [
'back to index' => 'Voltar ao index de posts'
],
'latest posts' => 'Últimos posts',
];
6 changes: 6 additions & 0 deletions Resources/lang/pt/settings.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

return [
'posts-per-page' => 'Posts por página',
'latest-posts-amount' => 'Quantidade de posts mais recentes',
];
8 changes: 8 additions & 0 deletions Resources/lang/pt/status.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

return [
'draft' => 'Rascunho',
'pending review' => 'Revisão pendente',
'published' => 'Publicado',
'unpublished' => 'Não publicado',
];

0 comments on commit 1e92751

Please sign in to comment.