Skip to content

Commit

Permalink
Create posts.php
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoGon committed Aug 17, 2014
1 parent 4d9a0ca commit 4f9bb09
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions pt_PT/posts.php
@@ -0,0 +1,47 @@
<?php

return array(

'posts' => 'Artigos',

'create_post' => 'Criar um novo artigo',
'noposts_desc' => 'Você não tem nenhum artigo!',

// form fields
'title' => 'Título do artigo',
'title_explain' => '',
'title_missing' => 'Insira um título',

'content' => 'Conteúdo do artigo',
'content_explain' => 'Basta escrever.',

'slug' => 'URL',
'slug_explain' => 'Coloque um URL de identificação, os URLs contêm apenas caracteres alfanuméricos, sem acentos nem espaços.',
'slug_missing' => 'Coloque um URL, os URLs contêm apenas caracteres alfanuméricos, sem acentos nem espaços.',
'slug_duplicate' => 'Este URL já existe',
'slug_invalid' => 'O URL tem de conter letras',

'description' => 'Descrição',
'description_explain' => '',

'status' => 'Estado',
'status_explain' => '',

'category' => 'Categoria',
'category_explain' => '',

'allow_comments' => 'Permitir Comentários',
'allow_comments_explain' => '',

'custom_css' => 'CSS personalizado',
'custom_css_explain' => '',

'custom_js' => 'JS personalizado',
'custom_js_explain' => '',

// messages
'updated' => 'O seu artigo foi actualizado',
'created' => 'O seu novo artigo foi criado',
'deleted' => 'O seu artigo foi eliminado'

);

0 comments on commit 4f9bb09

Please sign in to comment.