Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
// This file is part of Moodle - http://moodle.org/
3
//
4
// Moodle is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8
//
9
// Moodle is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16
 
17
/**
18
 * Strings for component 'report_coursestats', language 'pt_BR'
19
 *
20
 * @package   report
21
 * @subpackage coursestats
22
 * @copyright 2017 Paulo Jr.
23
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24
 */
25
 
26
$string['pluginname'] = 'Estatísticas de utilização de cursos';
27
$string['link_details'] = 'Mais detalhes';
28
$string['link_back'] = 'Voltar';
29
$string['link_csv'] = 'Exportar para CSV';
30
$string['lb_course_name'] = 'Nome breve';
31
$string['lb_course_fullname'] = 'Nome completo';
32
$string['lb_usage_type_name'] = 'Tipo de uso';
33
$string['lb_usage_type_desc'] = 'Descrição';
34
$string['lb_courses_amount'] = 'Qtde. cursos';
35
$string['lb_percent_of_used_courses'] = '% por cursos utilizados';
36
$string['lb_percent_of_created_courses'] = '% por cursos criados';
37
$string['lb_prev_usage_type'] = 'Tipo de uso anterior';
38
$string['lb_curr_usage_type'] = 'Tipo de uso atual';
39
$string['lb_last_update'] = 'Última atualização';
40
$string['lb_choose_category'] = 'Escolha uma categoria';
41
$string['lb_category'] = 'Categoria';
42
$string['lb_all_categories'] = 'Todas';
43
$string['lb_null_usage'] = 'Nenhum';
44
$string['lb_forum_usage'] = 'Fórum de notícias';
45
$string['lb_used_courses'] = 'Cursos utilizados';
46
$string['lb_not_used_courses'] = 'Cursos não utilizados';
47
$string['lb_courses_created_amount'] = 'Total de cursos criados';
48
$string['lb_forum_usage_help'] = 'Cursos que estão sendo utilizados apenas para comunicação entre professor e alunos, por meio do <b>Fórum de Notícias</b>.';
49
$string['lb_repository_usage'] = 'Repositório';
50
$string['lb_repository_usage_help'] = 'Cursos que estão sendo utilizados apenas como repositórios de arquivos. Ou seja, o professor disponibilizou
51
  apenas <b>arquivos</b>, <b>pastas</b> ou <b>URLs</b> nestes cursos.';
52
$string['lb_activity_usage'] = 'Atividades';
53
$string['lb_activity_usage_help'] = 'Cursos que estão sendo efetivamente utilizados. Ou seja, o professor criou tipos de módulos interessantes
54
  tais como <b>Fórum</b>, <b>Questionário</b>, <b>Quiz</b>, <b>Tarefas</b>, entre outros nestes cursos.';
55
$string['lb_chart_series_types_of_use'] = 'Estatísticas de uso de cursos';
56
$string['lb_chart_series_used_courses'] = 'Estatísticas geral de cursos';
57
$string['lb_there_are_no_courses_stats'] = 'Não há estatísticas de uso a serem apresentadas no momento!';
58