mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 09:56:38 +02:00
MDL-22059 Installer strings exported from AMOS
This commit is contained in:
parent
c94fc98c87
commit
c0fb582d26
385 changed files with 11804 additions and 3091 deletions
37
install/lang/pt/error.php
Normal file
37
install/lang/pt/error.php
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Automatically generated strings for Moodle installer
|
||||
*
|
||||
* Do not edit this file manually! It contains just a subset of strings
|
||||
* needed during the very first steps of installation. This file was
|
||||
* generated automatically by export-installer.php (which is part of AMOS
|
||||
* {@link http://docs.moodle.org/en/Development:Languages/AMOS}) using the
|
||||
* list of strings defined in /install/stringnames.txt.
|
||||
*
|
||||
* @package installer
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
$string['cannotcreatelangdir'] = 'Não é possível criar o directório para pacotes linguísticos';
|
||||
$string['cannotdownloadcomponents'] = 'Não é possível descarregar a cópia dos componentes';
|
||||
$string['cannotdownloadzipfile'] = 'Não é possível descarregar a cópia do ficheiro ZIP';
|
||||
$string['cannotfindcomponent'] = 'Não foi encontrado um componente';
|
||||
$string['cannotsavemd5file'] = 'Não é possível gravar ficheiro md5';
|
||||
$string['cannotsavezipfile'] = 'Não é possível gravar ficheiro ZIP';
|
||||
$string['cannotunzipfile'] = 'Não é possível descompactar ficheiro ZIP';
|
66
install/lang/pt/install.php
Normal file
66
install/lang/pt/install.php
Normal file
|
@ -0,0 +1,66 @@
|
|||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Automatically generated strings for Moodle installer
|
||||
*
|
||||
* Do not edit this file manually! It contains just a subset of strings
|
||||
* needed during the very first steps of installation. This file was
|
||||
* generated automatically by export-installer.php (which is part of AMOS
|
||||
* {@link http://docs.moodle.org/en/Development:Languages/AMOS}) using the
|
||||
* list of strings defined in /install/stringnames.txt.
|
||||
*
|
||||
* @package installer
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
$string['admindirname'] = 'Directório de Administração';
|
||||
$string['availablelangs'] = 'Lista de línguas disponíveis';
|
||||
$string['dataroot'] = 'Directório de dados';
|
||||
$string['dirroot'] = 'Directório do Moodle';
|
||||
$string['errorsinenvironment'] = 'Erros no ambiente!';
|
||||
$string['chooselanguagehead'] = 'Escolha uma língua';
|
||||
$string['chooselanguagesub'] = 'Escolha a língua substituta';
|
||||
$string['installation'] = 'Instalação';
|
||||
$string['langdownloaderror'] = 'A língua "{$a}" não foi instalada. O processo de instalação continuará em inglês.';
|
||||
$string['memorylimithelp'] = '<p>Actualmente o seu servidor impõe ao PHP um limite de memoria de {$a}.</p>
|
||||
|
||||
<p>Isso poderá causar mais tarde problemas de memoria, especialmente se tiver um grande número de módulos activos e/ou um número elevado de utilizadores.</p>
|
||||
|
||||
<p>Recomendamos que configure o PHP com um limite maior, por exemplo, 40M.
|
||||
Existem várias formas que pode tentar para fazer essa alteração:</p>
|
||||
<ol>
|
||||
<li>Se poder, recompile o PHP com <i>--enable-memory-limit</i>.
|
||||
Isso permitirá que o próprio Moodle modifique o limite de memoria.</li>
|
||||
<li>Se tiver acesso ao seu ficheiro php.ini, poderá modificar o valor de <b>memory_limit</b> para algo como 40M. Se não tiver acesso, poderá pedir ao adiminstrador do seu sistema que o faça</li>
|
||||
<li>Em alguns servidores PHP poderá criar um ficheiro .htaccess, no directório do Moodle, com a linha seguinte:
|
||||
<p><blockquote>php_value memory_limit 40M</blockquote></p>
|
||||
<p>No entanto, em alguns servidores isso faz com que nenhuma página PHP funcione (verá erros quando tentar ver as páginas) e terá que apagar o ficheiro .htaccess.</p></li>
|
||||
</ol>';
|
||||
$string['phpversion'] = 'Versão do PHP';
|
||||
$string['phpversionhelp'] = '<p>Moodle precisa da vesão 4.3.0 ou 5.1.0 do PHP (5.0.x produz vários problemas).</p>
|
||||
<p>Actualmente está a utilizar a versão {$a}</p>
|
||||
<p>Deverá actualizar o PHP ou migrar para outro servidor com uma versão do PHP mais recente!</p>
|
||||
(No caso da versão 5.0.x, poderá regredir para uma versão 4.4.x)</p>';
|
||||
$string['welcomep10'] = '{$a->installername} ({$a->installerversion})';
|
||||
$string['welcomep20'] = 'Está a ver esta página porque o pacote <strong>{$a->packname} {$a->packversion}</strong> foi instalado e posto a funcionar com sucesso no seu computador. Parabens!';
|
||||
$string['welcomep30'] = 'Esta versão do <strong>{$a->installername}</strong> inclui aplicações para criar um ambiente onde o <strong>Moodle</strong> possa funcionar, nomeadamente:';
|
||||
$string['welcomep40'] = 'Este pacote também inclui <strong>Moodle {$a->moodlerelease} ({$a->moodleversion})</strong>.';
|
||||
$string['welcomep50'] = 'A utilização de todas as aplicações neste pacote está regida pelas respectivas licenças. O pacote <strong>{$a->installername}</strong> completo é <a href="http://www.opensource.org/docs/definition_plain.html">open source</a> distribuido nos termos da licença <a href="http://www.gnu.org/copyleft/gpl.html">GPL</a>.';
|
||||
$string['welcomep60'] = 'As páginas seguintes vão conduzí-lo por alguns passos simples de seguir para configurar o <strong>Moodle</strong> no seu computador. Poderá aceitar as definições seleccionadas por omissão, ou, opcionalmente, usar outras definições mais apropriadas às suas necessidades.';
|
||||
$string['welcomep70'] = 'Clique no botão "Seguinte" em baixo, para continuar com a configuração do <strong>Moodle</strong>.';
|
||||
$string['wwwroot'] = 'Endereço Web';
|
|
@ -1,43 +0,0 @@
|
|||
<?php
|
||||
/// Please, do not edit this file manually! It's auto generated from
|
||||
/// contents stored in your standard lang pack files:
|
||||
/// (langconfig.php, install.php, moodle.php, admin.php and error.php)
|
||||
///
|
||||
/// If you find some missing string in Moodle installation, please,
|
||||
/// keep us informed using http://moodle.org/bugs Thanks!
|
||||
///
|
||||
/// File generated by cvs://contrib/lang2installer/installer_builder
|
||||
/// using strings defined in stringnames.txt (same dir)
|
||||
|
||||
$string['availablelangs'] = 'Lista de línguas disponíveis';
|
||||
$string['cannotcreatelangdir'] = 'Não é possível criar o directório para pacotes linguísticos';
|
||||
$string['cannotdownloadcomponents'] = 'Não é possível descarregar a cópia dos componentes';
|
||||
$string['cannotdownloadzipfile'] = 'Não é possível descarregar a cópia do ficheiro ZIP';
|
||||
$string['cannotfindcomponent'] = 'Não foi encontrado um componente';
|
||||
$string['cannotsavemd5file'] = 'Não é possível gravar ficheiro md5';
|
||||
$string['cannotsavezipfile'] = 'Não é possível gravar ficheiro ZIP';
|
||||
$string['cannotunzipfile'] = 'Não é possível descompactar ficheiro ZIP';
|
||||
$string['chooselanguagehead'] = 'Escolha uma língua';
|
||||
$string['chooselanguagesub'] = 'Escolha a língua substituta';
|
||||
$string['dataroot'] = 'Directório de dados';
|
||||
$string['dirroot'] = 'Directório do Moodle';
|
||||
$string['environment'] = 'Ambiente';
|
||||
$string['environmentrequireinstall'] = 'é necessário estar instalada/activa';
|
||||
$string['environmentrequireversion'] = 'É requerida a versão $a->needed e está a correr a versão $a->current';
|
||||
$string['errorsinenvironment'] = 'Erros no ambiente!';
|
||||
$string['installation'] = 'Instalação';
|
||||
$string['language'] = 'Língua';
|
||||
$string['parentlanguage'] = '<< TRADUTORES: Se existir uma língua semelhante à sua, que poderá ser usada quando alguma frase não estiver traduzida no sue pacote linguístico, especifique o código dessa língua aqui. Se deixar este espaço em branco, será usado o inglês. exemplo: nl >>';
|
||||
$string['phpversion'] = 'Versão do PHP';
|
||||
$string['reload'] = 'Recarregar';
|
||||
$string['thischarset'] = 'UTF-8';
|
||||
$string['thislanguage'] = 'Português - Portugal';
|
||||
$string['welcomep10'] = '$a->installername ($a->installerversion)';
|
||||
$string['welcomep20'] = 'Está a ver esta página porque o pacote <strong>$a->packname $a->packversion</strong> foi instalado e posto a funcionar com sucesso no seu computador. Parabens!';
|
||||
$string['welcomep30'] = 'Esta versão do <strong>$a->installername</strong> inclui aplicações para criar um ambiente onde o <strong>Moodle</strong> possa funcionar, nomeadamente:';
|
||||
$string['welcomep40'] = 'Este pacote também inclui <strong>Moodle $a->moodlerelease ($a->moodleversion)</strong>.';
|
||||
$string['welcomep50'] = 'A utilização de todas as aplicações neste pacote está regida pelas respectivas licenças. O pacote <strong>$a->installername</strong> completo é <a href=\"http://www.opensource.org/docs/definition_plain.html\">open source</a> distribuido nos termos da licença <a href=\"http://www.gnu.org/copyleft/gpl.html\">GPL</a>.';
|
||||
$string['welcomep60'] = 'As páginas seguintes vão conduzí-lo por alguns passos simples de seguir para configurar o <strong>Moodle</strong> no seu computador. Poderá aceitar as definições seleccionadas por omissão, ou, opcionalmente, usar outras definições mais apropriadas às suas necessidades.';
|
||||
$string['welcomep70'] = 'Clique no botão \"Seguinte\" em baixo, para continuar com a configuração do <strong>Moodle</strong>.';
|
||||
$string['wwwroot'] = 'Endereço Web';
|
||||
?>
|
32
install/lang/pt/langconfig.php
Normal file
32
install/lang/pt/langconfig.php
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Automatically generated strings for Moodle installer
|
||||
*
|
||||
* Do not edit this file manually! It contains just a subset of strings
|
||||
* needed during the very first steps of installation. This file was
|
||||
* generated automatically by export-installer.php (which is part of AMOS
|
||||
* {@link http://docs.moodle.org/en/Development:Languages/AMOS}) using the
|
||||
* list of strings defined in /install/stringnames.txt.
|
||||
*
|
||||
* @package installer
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
$string['thisdirection'] = 'ltr';
|
||||
$string['thislanguage'] = 'Português - Portugal';
|
33
install/lang/pt/moodle.php
Normal file
33
install/lang/pt/moodle.php
Normal file
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Automatically generated strings for Moodle installer
|
||||
*
|
||||
* Do not edit this file manually! It contains just a subset of strings
|
||||
* needed during the very first steps of installation. This file was
|
||||
* generated automatically by export-installer.php (which is part of AMOS
|
||||
* {@link http://docs.moodle.org/en/Development:Languages/AMOS}) using the
|
||||
* list of strings defined in /install/stringnames.txt.
|
||||
*
|
||||
* @package installer
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
$string['language'] = 'Língua';
|
||||
$string['next'] = 'Próximo';
|
||||
$string['previous'] = 'Prévio';
|
Loading…
Add table
Add a link
Reference in a new issue