
- The ID of the respective entry is now displayed in "Manage entries" so that the admin can use the ID for comment management in Akismet/ CommentCenter. - Creating or managing the Akismet Api Key now leads directly to akismet.com instead of wordpress.com - The external link to the Akismet API Key Help has been updated - The comment center now contains a link to the wiki (dealing with spam comments) - Typo "flatpress" fixed in several places. FlatPress should always be spelled with a capital F and a capital P.
30 lines
693 B
PHP
30 lines
693 B
PHP
<?php
|
|
// Terminado 27 de Novembro de 2022.
|
|
|
|
$lang['admin']['panel']['main'] = 'Principal';
|
|
|
|
$lang['admin']['main']['default'] = array(
|
|
'head' => 'Bem-vindo ao painel de controle!',
|
|
'descr' => 'Selecione uma ação',
|
|
|
|
'op1' => 'Novo post',
|
|
'op1d' => 'Adicione um novo post',
|
|
|
|
'op2' => 'Posts',
|
|
'op2d' => 'Mostre e administre todos os posts',
|
|
|
|
'op3' => 'Widgets',
|
|
'op3d' => 'Administre sidebar, bottombar and topbar widgets',
|
|
|
|
'op4' => 'Plugins',
|
|
'op4d' => 'Instale, ative, desative plugins',
|
|
|
|
'op5' => 'Configuração',
|
|
'op5d' => 'Personalize seu FlatPress',
|
|
|
|
'op6' => 'Manutenção',
|
|
'op6d' => 'Limpe e restaure o FlatPress',
|
|
|
|
);
|
|
?>
|