[ Index ] |
|
Code source de Serendipity 1.2 |
1 <?php # $Id:$ 2 3 ########################################################################## 4 # serendipity - another blogger... # 5 ########################################################################## 6 # # 7 # (c) 2003 Jannis Hermanns <J@hacked.it> # 8 # http://www.jannis.to/programming/serendipity.html # 9 # # 10 # Translated by # 11 # João P. Matos <jmatos@math.ist.utl.pt> # 12 # # 13 ########################################################################## 14 15 @define('PLUGIN_EVENT_STATISTICS_NAME', 'EstatÃsticas'); 16 @define('PLUGIN_EVENT_STATISTICS_DESC', 'Junta uma ligação a estatÃsticas interessantes no seu painel entradas, incluindo um contador de visitantes'); 17 @define('PLUGIN_EVENT_STATISTICS_OUT_STATISTICS', 'EstatÃsticas'); 18 @define('PLUGIN_EVENT_STATISTICS_OUT_FIRST_ENTRY', 'Primeira entrada'); 19 @define('PLUGIN_EVENT_STATISTICS_OUT_LAST_ENTRY', 'Última entrada'); 20 @define('PLUGIN_EVENT_STATISTICS_OUT_TOTAL_ENTRIES', 'Número total de entradas'); 21 @define('PLUGIN_EVENT_STATISTICS_OUT_ENTRIES', 'entradas'); 22 @define('PLUGIN_EVENT_STATISTICS_OUT_TOTAL_PUBLIC', ' ... públicos'); 23 @define('PLUGIN_EVENT_STATISTICS_OUT_TOTAL_DRAFTS', ' ... rascunhos'); 24 @define('PLUGIN_EVENT_STATISTICS_OUT_CATEGORIES', 'Categorias'); 25 @define('PLUGIN_EVENT_STATISTICS_OUT_CATEGORIES2', 'categorias'); 26 @define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_CATEGORIES', 'Distribuição das entradas'); 27 @define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_CATEGORIES2', 'entradas'); 28 @define('PLUGIN_EVENT_STATISTICS_OUT_UPLOADED_IMAGES', 'Imagens recebidas'); 29 @define('PLUGIN_EVENT_STATISTICS_OUT_UPLOADED_IMAGES2', 'imagen(s)'); 30 @define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_IMAGES', 'Distribuição dos tipes de imagem'); 31 @define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_IMAGES2', 'ficheiros'); 32 @define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS', 'Comentários recebidos'); 33 @define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS2', 'comentário(s)'); 34 @define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS3', 'Entradas mais comentadas'); 35 @define('PLUGIN_EVENT_STATISTICS_OUT_TOPCOMMENTS', 'Comentadores mais frequentes'); 36 @define('PLUGIN_EVENT_STATISTICS_OUT_LINK', 'ligação'); 37 @define('PLUGIN_EVENT_STATISTICS_OUT_SUBSCRIBERS', 'Subscritores'); 38 @define('PLUGIN_EVENT_STATISTICS_OUT_SUBSCRIBERS2', 'subscritor(es)'); 39 @define('PLUGIN_EVENT_STATISTICS_OUT_TOPSUBSCRIBERS', 'Entradas mais subscritas'); 40 @define('PLUGIN_EVENT_STATISTICS_OUT_TOPSUBSCRIBERS2', 'subscritor(es)'); 41 @define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS', 'Retroligações recebidas'); 42 @define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS2', 'retroligações'); 43 @define('PLUGIN_EVENT_STATISTICS_OUT_TOPTRACKBACK', 'Entradas com maior número de retroligações'); 44 @define('PLUGIN_EVENT_STATISTICS_OUT_TOPTRACKBACK2', 'retroligações'); 45 @define('PLUGIN_EVENT_STATISTICS_OUT_TOPTRACKBACKS3', 'Pessoas que fizeram mais retroligações'); 46 @define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS_PER_ARTICLE', 'comentários por notÃcia (estimativa)'); 47 @define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS_PER_ARTICLE', 'retroligações por notÃcia (estimation)'); 48 @define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_DAY', 'entradas por dia (estimativa)'); 49 @define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_WEEK', 'entradas por semana (estimativa)'); 50 @define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_MONTH', 'entradas por mês (estimativa)'); 51 @define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS_PER_ARTICLE2', 'comentários/entrada'); 52 @define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS_PER_ARTICLE2', 'retroligações/entrada'); 53 @define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_DAY2', 'entradas/dia'); 54 @define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_WEEK2', 'entradas/semana'); 55 @define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_MONTH2', 'entradas/mês'); 56 @define('PLUGIN_EVENT_STATISTICS_OUT_CHARS', 'Número total de caracteres'); 57 @define('PLUGIN_EVENT_STATISTICS_OUT_CHARS2', 'caracteres'); 58 @define('PLUGIN_EVENT_STATISTICS_OUT_CHARS_PER_ARTICLE', 'Caracteres por entrada'); 59 @define('PLUGIN_EVENT_STATISTICS_OUT_CHARS_PER_ARTICLE2', 'caracteres/entrada'); 60 @define('PLUGIN_EVENT_STATISTICS_OUT_LONGEST_ARTICLES', 'As %s entradas mais longas'); 61 @define('PLUGIN_EVENT_STATISTICS_MAX_ITEMS', 'Número máximo de elementos'); 62 @define('PLUGIN_EVENT_STATISTICS_MAX_ITEMS_DESC', 'Quantos itens por estatÃstica? Valor por omissão: 20'); 63 64 //Language constants for the Extended Visitors feature 65 @define('PLUGIN_EVENT_STATISTICS_EXT_ADD', 'EstatÃsticas Adicionais de Visitantes'); 66 @define('PLUGIN_EVENT_STATISTICS_EXT_ADD_DESC', 'Juntar EstatÃsticas Adicionais de Visitantes? (por omissão: não)'); 67 @define('PLUGIN_EVENT_STATISTICS_EXT_OPT1', 'Não!'); 68 @define('PLUGIN_EVENT_STATISTICS_EXT_OPT2', 'Sim, no fundo da página'); 69 @define('PLUGIN_EVENT_STATISTICS_EXT_OPT3', 'Sim, no topo da página'); 70 @define('PLUGIN_EVENT_STATISTICS_EXT_VISITORS', 'Nº de visitantes'); 71 @define('PLUGIN_EVENT_STATISTICS_EXT_VISTODAY', 'Nº de visitantes hoje'); 72 @define('PLUGIN_EVENT_STATISTICS_EXT_VISTOTAL', 'Nº total de visitantes'); 73 @define('PLUGIN_EVENT_STATISTICS_EXT_VISSINCE', 'As estatÃsticas adicionais de visitantes têm coligido dados desde'); 74 @define('PLUGIN_EVENT_STATISTICS_EXT_VISLATEST', 'Visitantes mais recentes'); 75 @define('PLUGIN_EVENT_STATISTICS_EXT_TOPREFS', 'Referenciadores mais importantes'); 76 @define('PLUGIN_EVENT_STATISTICS_EXT_TOPREFS_NONE', 'Nenhum referenciador registado por enquanto.'); 77 @define('PLUGIN_EVENT_STATISTICS_OUT_EXT_STATISTICS', 'EstatÃsticas Adicionais de Visitantes'); 78 @define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS', 'Banir da contagem navegadores'); 79 @define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS_DESC', 'Inserir navegadores que devem ser excluÃdos da contagem, separados por "|"'); 80 81 82 /* vim: set sts=4 ts=4 expandtab : */ 83 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Nov 24 09:00:37 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |