diff --git a/CHANGELOG.md b/CHANGELOG.md index ca5d702dd03..7a707be8326 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,30 @@ This project adheres to [Semantic Versioning]. +## [4.9.28] (2022-03-31) + +**Fixed issues:** + +- [#4427] Handle long page titles and URLs in the search table ([leofeyer]) +- [#4424] Also hover over the parent records in "paste" mode ([leofeyer]) +- [#4423] Decode the folder name when checking for circular references ([leofeyer]) +- [#4219] Make the contao:install:lock command idempotent ([richardhj]) +- [#4408] Improve insert tags speed ([ausi]) +- [#4252] Fix the trigger_error() calls ([leofeyer]) +- [#4402] Fixed nested http client options not supported ([Toflar]) +- [#4357] Fix srcToInsertTag() for URL encoded paths ([fritzmg]) +- [#4294] Rename the Controller::reset() method ([aschempp]) +- [#4331] Fix typos in the Environment class ([fritzmg]) +- [#4293] Revert 'Do not use the `.tl_confirm` CSS class in the front end' ([leofeyer]) +- [#4299] Fix invalid news content element ID ([ausi]) +- [#4263] Make the search accent insensitive ([ausi]) +- [#4256] Allow fragment reference with fake model instance ([aschempp]) +- [#4236] Also create a new version if a checkbox is auto-submitted ([leofeyer]) +- [#4373] Also clean textarea of caption for last metawizard ([aschempp]) +- [#4322] Use FQCN instead of aliased class name ([bytehead]) +- [#4266] Forward IO to Composer filesystem in ScriptHandler ([aschempp]) +- [#4285] Fix DCA extractor wrongly assuming every DCA is database driven ([fritzmg]) + ## [4.9.27] (2022-03-09) **Fixed issues:** @@ -861,6 +885,7 @@ This project adheres to [Semantic Versioning]. - [#991] Replace mb_strlen() with Utf8::strlen() ([leofeyer]) [Semantic Versioning]: https://semver.org/spec/v2.0.0.html +[4.9.28]: https://github.com/contao/contao/releases/tag/4.9.28 [4.9.27]: https://github.com/contao/contao/releases/tag/4.9.27 [4.9.26]: https://github.com/contao/contao/releases/tag/4.9.26 [4.9.25]: https://github.com/contao/contao/releases/tag/4.9.25 @@ -928,6 +953,25 @@ This project adheres to [Semantic Versioning]. [xchs]: https://github.com/xchs [xprojects-de]: https://github.com/xprojects-de [zonky2]: https://github.com/zonky2 +[#4427]: https://github.com/contao/contao/pull/4427 +[#4424]: https://github.com/contao/contao/pull/4424 +[#4423]: https://github.com/contao/contao/pull/4423 +[#4219]: https://github.com/contao/contao/pull/4219 +[#4408]: https://github.com/contao/contao/pull/4408 +[#4252]: https://github.com/contao/contao/pull/4252 +[#4402]: https://github.com/contao/contao/pull/4402 +[#4357]: https://github.com/contao/contao/pull/4357 +[#4294]: https://github.com/contao/contao/pull/4294 +[#4331]: https://github.com/contao/contao/pull/4331 +[#4293]: https://github.com/contao/contao/pull/4293 +[#4299]: https://github.com/contao/contao/pull/4299 +[#4263]: https://github.com/contao/contao/pull/4263 +[#4256]: https://github.com/contao/contao/pull/4256 +[#4236]: https://github.com/contao/contao/pull/4236 +[#4373]: https://github.com/contao/contao/pull/4373 +[#4322]: https://github.com/contao/contao/pull/4322 +[#4266]: https://github.com/contao/contao/pull/4266 +[#4285]: https://github.com/contao/contao/pull/4285 [#4248]: https://github.com/contao/contao/pull/4248 [#4241]: https://github.com/contao/contao/pull/4241 [#4235]: https://github.com/contao/contao/pull/4235 diff --git a/calendar-bundle/src/Resources/contao/languages/pt/tl_calendar.xlf b/calendar-bundle/src/Resources/contao/languages/pt/tl_calendar.xlf index d74a06fb196..682b0f075ac 100644 --- a/calendar-bundle/src/Resources/contao/languages/pt/tl_calendar.xlf +++ b/calendar-bundle/src/Resources/contao/languages/pt/tl_calendar.xlf @@ -71,9 +71,11 @@ Allow only authenticated members to create comments. + Permitir apenas aos membros autenticados a criação de comentários. Disable spam protection + Desactivar a protecção contra spam Use this option only if you have limited comments to authenticated users. diff --git a/calendar-bundle/src/Resources/contao/languages/pt/tl_module.xlf b/calendar-bundle/src/Resources/contao/languages/pt/tl_module.xlf index b010470817b..2f1beb9b897 100644 --- a/calendar-bundle/src/Resources/contao/languages/pt/tl_module.xlf +++ b/calendar-bundle/src/Resources/contao/languages/pt/tl_module.xlf @@ -79,6 +79,7 @@ Here you can select an event template. + Aqui pode seleccionar um modelo de evento. Calendar template @@ -86,6 +87,7 @@ Here you can select a calendar template. + Aqui pode seleccionar um modelo de calendário. Show number of events diff --git a/comments-bundle/src/Resources/contao/languages/pt/tl_content.xlf b/comments-bundle/src/Resources/contao/languages/pt/tl_content.xlf index c1acf33c5e0..91a0443d59c 100644 --- a/comments-bundle/src/Resources/contao/languages/pt/tl_content.xlf +++ b/comments-bundle/src/Resources/contao/languages/pt/tl_content.xlf @@ -39,12 +39,15 @@ Allow only authenticated members to create comments. + Permitir apenas aos membros autenticados a criação de comentários. Disable spam protection + Desactivar a protecção contra spam Here you can disable the spam protection (not recommended). + Aqui pode desactivar a protecção contra spam (não recomendado). Comments template @@ -52,6 +55,7 @@ Here you can select a comments template. + Aqui pode seleccionar um modelo de comentários. Comment settings diff --git a/core-bundle/src/Resources/contao/config/constants.php b/core-bundle/src/Resources/contao/config/constants.php index ca1926b8327..4a32a7e57c3 100644 --- a/core-bundle/src/Resources/contao/config/constants.php +++ b/core-bundle/src/Resources/contao/config/constants.php @@ -10,7 +10,7 @@ // Core version define('VERSION', '4.9'); -define('BUILD', '27'); +define('BUILD', '28'); define('LONG_TERM_SUPPORT', true); // Link constants diff --git a/core-bundle/src/Resources/contao/languages/it/default.xlf b/core-bundle/src/Resources/contao/languages/it/default.xlf index 43ebf6578d5..93401d998c2 100644 --- a/core-bundle/src/Resources/contao/languages/it/default.xlf +++ b/core-bundle/src/Resources/contao/languages/it/default.xlf @@ -1519,6 +1519,7 @@ Learn more about speeding up your workflow by using <a href="https://to.contao.org/shortcuts" target="_blank" rel="noreferrer noopener">keyboard shortcuts</a>. + Scopri di più su come velocizzare il tuo flusso di lavoro usando le scelte rapide da tastiera. Toggle all diff --git a/core-bundle/src/Resources/contao/languages/it/exception.xlf b/core-bundle/src/Resources/contao/languages/it/exception.xlf index 3d197fbf3bc..8986ddc8366 100644 --- a/core-bundle/src/Resources/contao/languages/it/exception.xlf +++ b/core-bundle/src/Resources/contao/languages/it/exception.xlf @@ -31,6 +31,7 @@ The script execution stopped, because something does not work properly. The actual error message is hidden by this notice for security reasons and can be found in the current log file (see above). If you do not understand the error message or do not know how to fix the problem, visit the <a href="https://to.contao.org/support" target="_blank" rel="noreferrer noopener">Contao support page</a>. + L'esecuzione dello script si è arrestato, perché qualcosa non funziona correttamente. Il messaggio di errore effettivo è nascosto da questo avviso per motivi di sicurezza e può essere trovato nel file di log corrente (vedi sopra). Se non capisci il messaggio di errore o non sai come risolvere il problema, visita la pagina di <a href="https://to.contao.org/support" target="_blank" rel="noreferrer noopener">supporto di Contao</a>. Invalid request token @@ -42,6 +43,7 @@ Please <a href="javascript:window.location.href=window.location.href">click here</a> and try again. Do not use the back button of your browser. + Per favore, <a href="javascript:window.location.href=window.location.href">clicca qui</a> e riprova. Non usare il pulsante indietro del tuo browser. This error occurs if there is a POST request without a valid authentication token. In Contao 2.10, the referer check has been replaced with a request token system. If the problem persists, you may be using an incompatible third-party extension or have not correctly updated your Contao installation. @@ -49,6 +51,7 @@ For more information, visit the <a href="https://to.contao.org/support" target="_blank" rel="noreferrer noopener">Contao support page</a>. + Per maggiori informazioni, visita la <a href="https://to.contao.org/support" target="_blank" rel="noreferrer noopener">pagina di supporto di Contao</a>. Service unavailable diff --git a/core-bundle/src/Resources/contao/languages/it/explain.xlf b/core-bundle/src/Resources/contao/languages/it/explain.xlf index e2655bd03c5..2f7d571848f 100644 --- a/core-bundle/src/Resources/contao/languages/it/explain.xlf +++ b/core-bundle/src/Resources/contao/languages/it/explain.xlf @@ -7,6 +7,7 @@ For more information on TinyMCE, please visit <a href="https://www.tiny.cloud/tinymce/" target="_blank" rel="noreferrer noopener">https://www.tiny.cloud/tinymce/</a>. + Per ulteriori informazioni su TinyMCE, visitate <a href="https://www.tiny.cloud/tinymce/" target="_blank" rel="noreferrer noopener">https://www.tiny.cloud/tinymce/</a>. Insert tags @@ -14,6 +15,7 @@ For more information on insert tags, please visit <a href="https://docs.contao.org/dev/framework/insert-tags/" target="_blank" rel="noreferrer noopener">https://docs.contao.org/dev/framework/insert-tags/</a>. + Per ulteriori informazioni sui tag di inserimento, visitate <a href="https://docs.contao.org/dev/framework/insert-tags/" target="_blank" rel="noreferrer noopener">https://docs.contao.org/dev/framework/insert-tags/. Code editor @@ -21,6 +23,7 @@ For more information on Ace, please visit <a href="https://ace.c9.io" target="_blank" rel="noreferrer noopener">https://ace.c9.io</a>. + Per ulteriori informazioni su Ace, visitate <a href="https://ace.c9.io" target="_blank" rel="noreferrer noopener">https://ace.c9.io</a>. colspan @@ -92,6 +95,7 @@ The HTML attribute <code>sizes</code> defines the intended layout width of the image, optionally combined with a media query. You can use any CSS length value in this attribute.<br><br>E.g. <code>(max-width: 600px) 100vw, 50vw</code> means the image‘s width is 100% of the viewport for small screens and 50% of the viewport for larger screens.<br><br>And <code>(max-width: 600px) calc(100vw - 20px), 500px</code> means the image‘s width is 20px smaller than the viewport for small screens and 500px for larger screens.<br><br>The sizes attribute shouldn’t be used for styling, use CSS instead. The sizes attribute does not necessarily have to match up exactly with the actual image width as specified in the CSS.<br><br>For more information about the sizes attribute please visit <a href="https://www.w3.org/TR/2016/PR-html51-20160915/semantics-embedded-content.html#element-attrdef-img-sizes" target="_blank" rel="noreferrer noopener">w3.org</a>. + L'attributo HTML <code>sizes</code> definisce la larghezza del layout dell'immagine, opzionalmente combinato con una media query. Puoi usare qualsiasi valore di lunghezza CSS in questo attributo,<br><br> Per esempio <code>(max-width: 600px) 100vw, 50vw</code> significa che la larghezza dell'immagine è il 100% del viewport per schermi piccoli e il 50% del viewport per schermi più grandi. <br><br>E <code>(max-width: 600px) calc(100vw - 20px), 500px</code> significa che la larghezza dell'immagine è 20px più piccola del viewport per schermi piccoli e 500px per schermi più grandi. <br><br>L'attributo sizes non dovrebbe essere usato per lo stile, usa invece i CSS. L'attributo sizes non deve necessariamente corrispondere esattamente alla larghezza effettiva dell'immagine come specificato nel CSS. <br><br>Per maggiori informazioni sull'attributo sizes visita <a href="https://www.w3.org/TR/2016/PR-html51-20160915/semantics-embedded-content.html#element-attrdef-img-sizes" target="_blank" rel="noreferrer noopener">w3.org</a>. Pixel densities/<br>scale factors @@ -99,6 +103,7 @@ If the sizes attribute is not defined, this setting simply defines the pixel densities you want to support. The dimensions of the images are adjusted automatically. E.g. <code>1x, 1.5x, 2x</code> creates the following HTML code: <code>&lt;img srcset="img-a.jpg 1x, img-b.jpg 1.5x, img-c.jpg 2x"&gt;</code><br><br>If the sizes attribute is defined, the same image sizes are generated but width descriptors are used for the srcset attribute. E.g. a 200 pixel wide image with the densities <code>1x, 1.5x, 2x</code> creates the following HTML code: <code>&lt;img srcset="img-a.jpg 200w, img-b.jpg 300w, img-c.jpg 400w"&gt;</code><br><br>For more information about the srcset attribute please visit <a href="https://www.w3.org/TR/2016/PR-html51-20160915/semantics-embedded-content.html#element-attrdef-img-srcset" target="_blank" rel="noreferrer noopener">w3.org</a>. + Se l'attributo sizes non è definito, questa impostazione definisce semplicemente le densità di pixel che volete supportare. Le dimensioni delle immagini sono regolate automaticamente. Ad es. <code>1x, 1.5x, 2x</code> crea il seguente codice HTML: <code>&lt;img srcset="img-a.jpg 1x, img-b.jpg 1.5x, img-c.jpg 2x"&gt;</code><br><br>Se l'attributo sizes è definito, vengono generate le stesse dimensioni delle immagini ma vengono utilizzati descrittori di larghezza per l'attributo srcset. Per esempio, un'immagine larga 200 pixel con le densità <code>1x, 1.5x, 2x</code> crea il seguente codice HTML: <code>&lt;img srcset="img-a.jpg 200w, img-b.jpg 300w, img-c.jpg 400w"&gt;</code><br><br>Per maggiori informazioni sull'attributo srcset visitate <a href="https://www.w3.org/TR/2016/PR-html51-20160915/semantics-embedded-content.html#element-attrdef-img-srcset" target="_blank" rel="noreferrer noopener">w3.org</a>. diff --git a/core-bundle/src/Resources/contao/languages/lv/default.xlf b/core-bundle/src/Resources/contao/languages/lv/default.xlf index e665fe783e9..044c8daed47 100644 --- a/core-bundle/src/Resources/contao/languages/lv/default.xlf +++ b/core-bundle/src/Resources/contao/languages/lv/default.xlf @@ -186,6 +186,7 @@ Numeric aliases are not supported! + Ciparu aizstājvārdi netiek atbalstīti! The folder "%s" cannot be imported! @@ -237,6 +238,7 @@ Invalid selection (circular reference)! + Nederīga izvēle (apļveida atsauce)! None of the active website root pages without an explicit DNS setting have the language fallback option set. @@ -246,6 +248,7 @@ You can only define one website root page per domain as the language fallback. + Katrā domēnā kā rezerves valodu var noteikt tikai vienu vietnes saknes lapu. Top-level pages must be website root pages! @@ -253,6 +256,7 @@ There are top-level pages in the site structure which are not website root pages. + Vietnes struktūrā ir augstākā līmeņa lapas, kas nav vietnes saknes lapas. The form could not be sent @@ -260,6 +264,7 @@ You will not be able to send this form, because you have disabled cookies in your browser. + Jūs nevarēsiet nosūtīt šo veidlapu, jo jūsu pārlūkprogrammā ir atspējotas sīkdatnes. Please answer the security question! @@ -303,6 +308,7 @@ Duplicate layout section ID "%s"! + Dublēt salikuma sadaļu "%s"! Please assign all modules to a column! @@ -574,15 +580,19 @@ Fieldset start + Lauku kopas sākums The opening part of a fieldset with an optional legend. + Lauku kopas sākuma daļa ar neobligātu leģendu. Fieldset stop + Lauku kopas beigas The closing part of a fieldset. + Lauku kopas noslēdzošā daļa. Text field @@ -2428,12 +2438,15 @@ This token has already been confirmed + Šis žetons jau ir apstiprināts The e-mail address of the token does not match + Žetona e-pasta adrese neatbilst The token has been re-sent to %s. + Žetons ir atkārtoti nosūtīts uz %s. The link you were trying to open could not be verified. If you have clicked the link yourself or have received it by a trustworthy person, you can confirm the process below. @@ -2445,6 +2458,7 @@ Another user has created version %s while you were editing version %s of this record. + Cits lietotājs ir izveidojis versiju %s, kamēr jūs rediģējāt šī ieraksta versiju %s. Your changes have been now been saved as version %s and have potentially overwritten the changes of version %s, therefore please compare the versions below: @@ -2563,6 +2577,7 @@ When you regenerate the backup codes, your old codes will not work anymore. + Kad reģenerēsiet dublējumkodus, vecie kodi vairs nedarbosies. Trust this device @@ -2593,6 +2608,7 @@ The internal CSS editor has been deprecated and will be removed in Contao 5.0! Please consider exporting your existing style sheets and re-adding them to the page layout as external style sheets. + Iekšējais CSS redaktors ir novecojis un tiks noņemts Contao 5.0 versijā! Lūdzu, apsveriet iespēju eksportēt esošās stila lapas un atkārtoti pievienot tās lapas izkārtojumam kā ārējās stila lapas. Google search results preview diff --git a/core-bundle/src/Resources/contao/languages/lv/exception.xlf b/core-bundle/src/Resources/contao/languages/lv/exception.xlf index cc4a9d0ea9d..45cbf6b1f76 100644 --- a/core-bundle/src/Resources/contao/languages/lv/exception.xlf +++ b/core-bundle/src/Resources/contao/languages/lv/exception.xlf @@ -31,6 +31,7 @@ The script execution stopped, because something does not work properly. The actual error message is hidden by this notice for security reasons and can be found in the current log file (see above). If you do not understand the error message or do not know how to fix the problem, visit the <a href="https://to.contao.org/support" target="_blank" rel="noreferrer noopener">Contao support page</a>. + Skripta izpilde apstājās, jo kaut kas nedarbojas pareizi. Patiesais kļūdas ziņojums drošības apsvērumu dēļ šajā paziņojumā ir paslēpts, un to var atrast pašreizējā žurnāla failā (skatīt augstāk). Ja nesaprotat kļūdas ziņojumu vai nezināt, kā novērst problēmu, apmeklējiet <a href="https://to.contao.org/support" target="_blank" rel="noreferrer noopener">Contao atbalsta lapu</a>. Invalid request token @@ -42,12 +43,15 @@ Please <a href="javascript:window.location.href=window.location.href">click here</a> and try again. Do not use the back button of your browser. + Lūdzu, <a href="javascript:window.location.href=window.location.href">noklikšķiniet šeit</a> un mēģiniet vēlreiz. Neizmantojiet pārlūkprogrammas pogu "Atpakaļ". This error occurs if there is a POST request without a valid authentication token. In Contao 2.10, the referer check has been replaced with a request token system. If the problem persists, you may be using an incompatible third-party extension or have not correctly updated your Contao installation. + Šī kļūda rodas, ja tiek veikts POST pieprasījums bez derīga autentifikācijas marķiera. Contao 2.10 versijā atsauces pārbaude ir aizstāta ar pieprasījuma žetona sistēmu. Ja problēma saglabājas, iespējams, izmantojat nesaderīgu trešās puses paplašinājumu vai neesat pareizi atjauninājis Contao instalāciju. For more information, visit the <a href="https://to.contao.org/support" target="_blank" rel="noreferrer noopener">Contao support page</a>. + Lai iegūtu vairāk informācijas, apmeklējiet <a href="https://to.contao.org/support" target="_blank" rel="noreferrer noopener">Contao atbalsta lapu</a>. Service unavailable diff --git a/core-bundle/src/Resources/contao/languages/pt/default.xlf b/core-bundle/src/Resources/contao/languages/pt/default.xlf index 1226565e71a..69e18b45ded 100644 --- a/core-bundle/src/Resources/contao/languages/pt/default.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/default.xlf @@ -187,6 +187,7 @@ Numeric aliases are not supported! + Os pseudónimos numéricos não são suportados! The folder "%s" cannot be imported! @@ -238,6 +239,7 @@ Invalid selection (circular reference)! + Selecção inválida (referência circular) None of the active website root pages without an explicit DNS setting have the language fallback option set. @@ -653,9 +655,11 @@ Range slider + Deslizador do alcance A range slider to select a value or range of values between a specified min and max. + Um selector de intervalo para seleccionar um valor ou intervalo de valores entre um mínimo e um máximo especificados. Hidden field @@ -727,6 +731,7 @@ If a visitor requests a protected page without being authenticated, a 401 error page will be loaded instead. + Se um visitante solicitar uma página protegida sem ser autenticada, será carregada em vez disso uma página de erro 401. 403 Access denied @@ -734,6 +739,7 @@ If a member requests a protected page without permission, a 403 error page will be loaded instead. + Se um membro solicitar uma página protegida sem permissão, será carregada em vez disso uma página de erro 403. 404 Page not found @@ -741,6 +747,7 @@ If a visitor requests a non-existent page, a 404 error page will be loaded instead. + Se um visitante solicitar uma página inexistente, uma página de erro 404 será carregada em seu lugar. File operation permissions @@ -1444,6 +1451,7 @@ Confirm password + Confirmar senha Please confirm the password. @@ -1511,6 +1519,7 @@ Learn more about speeding up your workflow by using <a href="https://to.contao.org/shortcuts" target="_blank" rel="noreferrer noopener">keyboard shortcuts</a>. + Saiba mais sobre como acelerar o seu fluxo de trabalho usando <a href="https://to.contao.org/shortcuts" target="_blank" rel="noreferrer noopener">atalhos de teclado</a>. Toggle all @@ -2559,27 +2568,35 @@ Download %s Backup codes + Códigos de backup Show backup codes + Mostrar códigos de reserva Backup codes can be used to access your account if you have lost your authentication device and cannot generate two-factor codes anymore. Treat your backup codes with the same level of attention as your password! It is recommended to save them with a password manager such as Lastpass, 1Password or Keeper. + Os códigos de cópia de segurança podem ser utilizados para aceder à sua conta caso tenha perdido o seu dispositivo de autenticação e já não possa gerar códigos de dois factores. Trate os seus códigos de segurança com o mesmo nível de atenção que a sua palavra-passe! Recomenda-se salvá-los com um gestor de senhas como Lastpass, 1Password ou Keeper. Put the codes in a safe spot. If you lose your authentication device and do not have backup codes, you cannot access your account anymore! + Colocar os códigos num local seguro. Se perder o seu dispositivo de autenticação e não tiver códigos de reserva, não poderá mais aceder à sua conta! Generate backup codes + Gerar códigos de backup Regenerate backup codes + Regenerar os códigos de backup When you regenerate the backup codes, your old codes will not work anymore. + Quando regenerar os códigos de reserva, os seus códigos antigos já não funcionarão. Trust this device + Confie neste aparelho There is at least one regular user with access to the template editor. Since templates are PHP files, these users implicitly have full control over the system! @@ -2591,12 +2608,15 @@ Download %s There is at least one regular user with permission to import themes. Since themes can contain arbitrary templates and templates are PHP files, these users implicitly have full control over the system! + Há pelo menos um utilizador regular com permissão para importar temas. Uma vez que os temas podem conter modelos arbitrários e os modelos são ficheiros PHP, estes utilizadores têm implicitamente o controlo total sobre o sistema! There is at least one user group granting permission to import themes. Since themes can contain arbitrary templates and templates are PHP files, users of these groups implicitly have full control over the system! + Há pelo menos um grupo de utilizadores que concede permissão para importar temas. Uma vez que os temas podem conter modelos arbitrários e os modelos são ficheiros PHP, os utilizadores destes grupos têm implicitamente o controlo total sobre o sistema! There is at least one user group granting permission to the front end module "Listing" and its "list_*" fields. Since they can contain arbitrary SQL queries, users of these groups implicitly have full control over the system! + Há pelo menos um grupo de utilizadores que concede permissão para o módulo "Listing" e os seus campos "list_*". Uma vez que podem conter consultas SQL arbitrárias, os utilizadores destes grupos têm implicitamente o controlo total sobre o sistema! Enable @@ -2608,24 +2628,31 @@ Download %s The internal CSS editor has been deprecated and will be removed in Contao 5.0! Please consider exporting your existing style sheets and re-adding them to the page layout as external style sheets. + O editor interno do CSS foi depreciado e será removido no Contao 5.0! Por favor, considere exportar as suas folhas de estilo existentes e readmiti-las no layout da página como style sheets externas. Google search results preview + Pré-visualização dos resultados da pesquisa do Google Here you can preview the meta data in the Google search results. Other search engines might show longer texts or crop at a different position. + Aqui pode pré-visualizar os meta dados nos resultados da pesquisa do Google. Outros motores de busca podem mostrar textos mais longos ou cultivar numa posição diferente. Clear trusted devices + Dispositivos claros de confiança Trusted devices + Aparelhos de confiança Currently there are no trusted devices. + Actualmente não existem dispositivos de confiança. Device + Aparelho Browser @@ -2633,15 +2660,19 @@ Download %s Operating system + Sistema operativo Open the Contao toolbar + Abrir a barra de ferramentas Contao Close the Contao toolbar + Fechar a barra de ferramentas Contao Unknown option: %s + Opção desconhecida: %s Byte @@ -2850,12 +2881,15 @@ Colar após elemento ID %s Indexed %d URI(s) successfully. %d failed. + Indexado %d URi com sucesso. %dfaliado. %d URI(s) were skipped (if you are missing one, checkout the debug log). + %dURI(s) foram pulados. (se lhe faltar um, verifique o registo de depuração). Checked %d link(s) successfully. %d were broken. + Verificado %d ligação(ões) com sucesso. %dforam quebrados. diff --git a/core-bundle/src/Resources/contao/languages/pt/exception.xlf b/core-bundle/src/Resources/contao/languages/pt/exception.xlf index 8fd30a4663d..bb1bc5b046f 100644 --- a/core-bundle/src/Resources/contao/languages/pt/exception.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/exception.xlf @@ -31,6 +31,7 @@ The script execution stopped, because something does not work properly. The actual error message is hidden by this notice for security reasons and can be found in the current log file (see above). If you do not understand the error message or do not know how to fix the problem, visit the <a href="https://to.contao.org/support" target="_blank" rel="noreferrer noopener">Contao support page</a>. + A execução do guião parou, porque algo não funciona correctamente. A mensagem de erro real é escondida por este aviso por razões de segurança e pode ser encontrada no ficheiro de registo actual (ver acima). Se não compreende a mensagem de erro ou não sabe como resolver o problema, visite o <a href="https://to.contao.org/support" target="_blank" rel="noreferrer noopener">Página de suporte de contacto</a>. Invalid request token @@ -42,6 +43,7 @@ Please <a href="javascript:window.location.href=window.location.href">click here</a> and try again. Do not use the back button of your browser. + Por favor<a href="javascript:window.location.href=window.location.href">clique aquie</a> e tente novamente. Não utilize o botão voltar do seu navegador. This error occurs if there is a POST request without a valid authentication token. In Contao 2.10, the referer check has been replaced with a request token system. If the problem persists, you may be using an incompatible third-party extension or have not correctly updated your Contao installation. @@ -49,6 +51,7 @@ For more information, visit the <a href="https://to.contao.org/support" target="_blank" rel="noreferrer noopener">Contao support page</a>. + Para mais informações, visite o <a href="https://to.contao.org/support" target="_blank" rel="noreferrer noopener">Página de suporte de contacto</a>. Service unavailable diff --git a/core-bundle/src/Resources/contao/languages/pt/explain.xlf b/core-bundle/src/Resources/contao/languages/pt/explain.xlf index 8f9ba66cdba..fe9e2fa722f 100644 --- a/core-bundle/src/Resources/contao/languages/pt/explain.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/explain.xlf @@ -7,6 +7,7 @@ For more information on TinyMCE, please visit <a href="https://www.tiny.cloud/tinymce/" target="_blank" rel="noreferrer noopener">https://www.tiny.cloud/tinymce/</a>. + Para mais informações sobre o TinyMCE, por favor visite <a href="https://www.tiny.cloud/tinymce/" target="_blank" rel="noreferrer noopener">https://www.tiny.cloud/tinymce/</a>. Insert tags @@ -14,6 +15,7 @@ For more information on insert tags, please visit <a href="https://docs.contao.org/dev/framework/insert-tags/" target="_blank" rel="noreferrer noopener">https://docs.contao.org/dev/framework/insert-tags/</a>. + Para mais informações sobre o insert tags, por favor visite <a href="https://docs.contao.org/dev/framework/insert-tags/" target="_blank" rel="noreferrer noopener">https://docs.contao.org/dev/framework/insert-tags/</a>. Code editor @@ -21,6 +23,7 @@ For more information on Ace, please visit <a href="https://ace.c9.io" target="_blank" rel="noreferrer noopener">https://ace.c9.io</a>. + Para mais informações sobre o Ace, por favor visite <a href="https://ace.c9.io" target="_blank" rel="noreferrer noopener">https://ace.c9.io</a>. colspan @@ -92,6 +95,7 @@ The HTML attribute <code>sizes</code> defines the intended layout width of the image, optionally combined with a media query. You can use any CSS length value in this attribute.<br><br>E.g. <code>(max-width: 600px) 100vw, 50vw</code> means the image‘s width is 100% of the viewport for small screens and 50% of the viewport for larger screens.<br><br>And <code>(max-width: 600px) calc(100vw - 20px), 500px</code> means the image‘s width is 20px smaller than the viewport for small screens and 500px for larger screens.<br><br>The sizes attribute shouldn’t be used for styling, use CSS instead. The sizes attribute does not necessarily have to match up exactly with the actual image width as specified in the CSS.<br><br>For more information about the sizes attribute please visit <a href="https://www.w3.org/TR/2016/PR-html51-20160915/semantics-embedded-content.html#element-attrdef-img-sizes" target="_blank" rel="noreferrer noopener">w3.org</a>. + O atributo HTML <code>sizes</code> define a largura de disposição pretendida da imagem, opcionalmente combinada com uma consulta multimédia. Pode utilizar qualquer valor de comprimento CSS neste atributo.<br><br>P.e. <code>(max-width: 600px) 100vw, 50vw</code> significa que a largura da imagem é 100% do viewport para ecrãs pequenos e 50% do viewport para ecrãs maiores.<br><br>E <code>(max-width: 600px) calc(100vw - 20px), 500px</code> significa que a largura da imagem é 20px mais pequena do que a do viewport para ecrãs pequenos e 500px para ecrãs maiores.<br><br>O atributo tamanhos não deve ser utilizado para a criação de estilos, mas sim para o CSS. O atributo de tamanhos não tem necessariamente de corresponder exactamente à largura real da imagem, tal como especificado no CSS.<br><br>Para mais informações sobre o atributo dos tamanhos, por favor visite <a href="https://www.w3.org/TR/2016/PR-html51-20160915/semantics-embedded-content.html#element-attrdef-img-sizes" target="_blank" rel="noreferrer noopener">w3.org</a>. Pixel densities/<br>scale factors @@ -99,6 +103,7 @@ If the sizes attribute is not defined, this setting simply defines the pixel densities you want to support. The dimensions of the images are adjusted automatically. E.g. <code>1x, 1.5x, 2x</code> creates the following HTML code: <code>&lt;img srcset="img-a.jpg 1x, img-b.jpg 1.5x, img-c.jpg 2x"&gt;</code><br><br>If the sizes attribute is defined, the same image sizes are generated but width descriptors are used for the srcset attribute. E.g. a 200 pixel wide image with the densities <code>1x, 1.5x, 2x</code> creates the following HTML code: <code>&lt;img srcset="img-a.jpg 200w, img-b.jpg 300w, img-c.jpg 400w"&gt;</code><br><br>For more information about the srcset attribute please visit <a href="https://www.w3.org/TR/2016/PR-html51-20160915/semantics-embedded-content.html#element-attrdef-img-srcset" target="_blank" rel="noreferrer noopener">w3.org</a>. + Se o atributo tamanhos não estiver definido, esta definição define simplesmente as densidades de píxeis que pretende suportar. As dimensões das imagens são ajustadas automaticamente. P.e.<code>1x, 1.5x, 2x</code> cria o seguinte código HTML: <code>&lt;img srcset="img-a.jpg 1x, img-b.jpg 1.5x, img-c.jpg 2x"&gt;</code><br><br>Se o atributo tamanhos for definido, são gerados os mesmos tamanhos de imagem mas são utilizados descritores de largura para o atributo srcset. Por exemplo, uma imagem de 200 pixel de largura com as densidades <code>1x, 1.5x, 2x</code> cria o seguinte código HTML: <code>&lt;img srcset="img-a.jpg 200w, img-b.jpg 300w, img-c.jpg 400w"&gt;</code><br><br>Para mais informações sobre o atributo srcset, por favor visite <a href="https://www.w3.org/TR/2016/PR-html51-20160915/semantics-embedded-content.html#element-attrdef-img-srcset" target="_blank" rel="noreferrer noopener">w3.org</a>. diff --git a/core-bundle/src/Resources/contao/languages/pt/modules.xlf b/core-bundle/src/Resources/contao/languages/pt/modules.xlf index 0505ae8c524..55fe9c5fcd9 100644 --- a/core-bundle/src/Resources/contao/languages/pt/modules.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/modules.xlf @@ -15,6 +15,7 @@ Forms + Formulários Create custom forms and store or send the submitted data @@ -30,6 +31,7 @@ Manage themes, front end modules, page layouts or image sizes + Gerir temas, módulos front-end, layouts de página ou tamanhos de imagem Site structure @@ -45,6 +47,7 @@ Add or edit custom templates + Adicionar ou editar modelos personalizados Account manager @@ -56,6 +59,7 @@ Manage member accounts (front end) + Gerir as contas dos membros (front end) Member groups @@ -63,6 +67,7 @@ Manage member groups (front end) + Gerir grupos de membros (front end) Users @@ -70,6 +75,7 @@ Manage user accounts (back end) + Gerir contas de utilizador (back end) User groups @@ -77,6 +83,7 @@ Manage user groups (back end) + Gerir grupos de utilizadores (back end) Double opt-in @@ -84,6 +91,7 @@ Manage double opt-in tokens + Gerir fichas de dupla opção de inclusão System @@ -95,6 +103,7 @@ Manage files and folders + Gerir ficheiros e pastas System log @@ -102,6 +111,7 @@ Browse the system log + Navegar no registo do sistema Settings @@ -109,6 +119,7 @@ Adjust the Contao configuration + Ajustar a configuração do Contao Maintenance @@ -116,6 +127,7 @@ Crawl the website or purge generated data + Rastejar o website ou purgar os dados gerados Security @@ -283,6 +295,7 @@ Automatically logs out a member + Automatizar o logout de um membro Personal data @@ -290,6 +303,7 @@ Generates a form to edit a member's personal data + Gera um formulário para editar os dados pessoais de um membro Registration @@ -297,6 +311,7 @@ Generates a member registration form + Gera um formulário de registo de membro Change password diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_article.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_article.xlf index eca38027f4d..b6e04d0c51e 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_article.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_article.xlf @@ -83,9 +83,11 @@ Article template + Artigo modelo Here you can select the article template. + Aqui pode seleccionar o modelo do artigo. Protect article diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_content.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_content.xlf index 2f5cda89ce7..d34bed6b629 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_content.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_content.xlf @@ -363,9 +363,11 @@ Total number of items + Número total de itens Here you can limit the total number of items. Set to 0 to show all. + Aqui pode limitar o número total de artigos. Definir para 0 para mostrar todos. Order by @@ -389,12 +391,15 @@ Here you can select a gallery template. + Aqui pode seleccionar um modelo de galeria. Content element template + Modelo do elemento conteúdo Here you can select the content element template. + Aqui pode seleccionar o modelo do elemento de conteúdo. Video/audio files @@ -774,6 +779,7 @@ Auto (preload the entire video) + Automático (pré-carregar o vídeo completo) Metadata (preload the metadata only) @@ -813,6 +819,7 @@ Limit related videos to the same channel + Vídeos relacionados com limites para o mesmo canal Use the youtube-nocookie.com domain diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_files.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_files.xlf index 2357ec58045..932466cc5c1 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_files.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_files.xlf @@ -143,6 +143,7 @@ Path: %s + Senda: %s Added the file or folder "%s" @@ -226,6 +227,7 @@ Edit the source text of file "%s" + Editar o texto fonte do ficheiro "%s" Upload files to folder "%s" diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_form.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_form.xlf index 6934ac97df9..a84335f0342 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_form.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_form.xlf @@ -231,6 +231,7 @@ Define the available tables in the following DCA configuration: <code>%s</code>. + Definir as tabelas disponíveis na seguinte configuração do DCA: <code>%s</code>. diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_form_field.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_form_field.xlf index ac690e71476..790f85c9e7e 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_form_field.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_form_field.xlf @@ -187,9 +187,11 @@ Step + Etapa Here you can set the discrete step size of the field. + Aqui pode definir o tamanho do passo discreto do campo. Rows and columns @@ -297,9 +299,11 @@ Form field template + Modelo de campo do formulário Here you can select the form field template. + Aqui pode seleccionar o modelo do campo do formulário. Submit button label diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_image_size.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_image_size.xlf index 36946a40587..d6451164750 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_image_size.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_image_size.xlf @@ -47,6 +47,7 @@ Here you can define the intended layout width of the image, the actual size should be defined via CSS. Example: <em>(max-width: 600px) 100vw, 50vw</em>. + Aqui pode definir a largura de disposição pretendida da imagem, o tamanho real deve ser definido através do CSS. Exemplo: <em>(max-width: 600px) 100vw, 50vw</em>. Pixel densities/scale factors @@ -86,9 +87,11 @@ Enable lazy loading + Activar lazy loading Defer loading the image until it is scrolled into the viewport. + Adiar o carregamento da imagem até que esta seja rolada para o viewport. Revision date @@ -108,6 +111,7 @@ Loading options + Opções de carregamento Expert settings @@ -151,9 +155,11 @@ WEBP to PNG + WEBP para PNG WEBP to JPG + WEBP para JPG New diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_maintenance.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_maintenance.xlf index af148f19ed6..11904b57efb 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_maintenance.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_maintenance.xlf @@ -71,6 +71,7 @@ Truncates the <code>tl_crawl_queue</code> table which stores all the queue information from crawl processes. + Truncata a tabela <code>tl_crawl_queue</code> armazena toda a informação da fila de processos de crawl. Purge the image cache @@ -174,6 +175,7 @@ Crawling is not possible while the maintenance mode is enabled. + O rastejamento não é possível enquanto o modo de manutenção estiver activado. diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_member.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_member.xlf index be3cf24141f..4808569abe0 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_member.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_member.xlf @@ -183,6 +183,7 @@ If you want to prevent the account from being active before a certain date/time, you can enter it here. Otherwise leave the field blank. + Se quiser evitar que a conta esteja activa antes de uma determinada data/hora, pode introduzi-la aqui. Caso contrário, deixe o campo em branco. Deactivate on @@ -190,6 +191,7 @@ If you want to prevent the account from being active after a certain date/time, you can enter it here. Otherwise leave the field blank. + Se quiser evitar que a conta esteja activa após uma determinada data/hora, pode introduzi-la aqui. Caso contrário, deixe o campo em branco. Use two-factor authentication diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_member_group.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_member_group.xlf index b0773dc0d3e..3d0677b729e 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_member_group.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_member_group.xlf @@ -39,6 +39,7 @@ If you want to prevent the group from being active before a certain date/time, you can enter it here. Otherwise leave the field blank. + Se quiser evitar que o grupo esteja activo antes de uma determinada data/hora, pode introduzi-lo aqui. Caso contrário, deixe o campo em branco. Deactivate on @@ -46,6 +47,7 @@ If you want to prevent the group from being active after a certain date/time, you can enter it here. Otherwise leave the field blank. + Se quiser evitar que o grupo esteja activo após uma determinada data/hora, pode introduzi-lo aqui. Caso contrário, deixe o campo vazio. Title @@ -57,6 +59,7 @@ Group settings + Configurações de grupo New diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_module.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_module.xlf index d7c935eb28d..1ff6a472549 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_module.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_module.xlf @@ -55,6 +55,7 @@ Show items that are usually only visible to authenticated members. + Mostrar itens que normalmente só são visíveis aos membros autenticados. Set a reference page @@ -82,9 +83,11 @@ Module template + Modelo do módulo Here you can select the module template. + Aqui pode seleccionar o modelo do módulo. Pages @@ -132,6 +135,7 @@ Redirect the member back to the last page visited instead of the redirect page. + Redireccionar o membro de volta para a última página visitada em vez da página de redireccionamento. One column @@ -407,9 +411,11 @@ Disable spam protection + Desactivar a protecção contra spam Here you can disable the spam protection (not recommended). + Aqui pode desactivar a protecção contra spam (não recomendado). Member groups @@ -425,6 +431,7 @@ Allow the new member to log into the front end. + Permitir que o novo membro entre no front end. Skip username @@ -472,6 +479,7 @@ Please choose the page to which members will be redirected after the request has been completed. + Por favor escolha a página para a qual os membros serão redireccionados após o pedido ter sido completado. Activation message @@ -487,6 +495,7 @@ You can use the wildcards <em>##domain##</em> (domain name), <em>##link##</em> (activation link) and any member property (e.g. <em>##lastname##</em>). + Pode utilizar os wildcards <em>##domain##</em> (domain name), <em>##link##</em> (link de activação) e qualquer propriedade dos membros (p.e. <em>##lastname##</em>). Title and type diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_page.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_page.xlf index 5ebc308d9f5..28d566f6b55 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_page.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_page.xlf @@ -79,6 +79,7 @@ Redirect the member back to the last page visited instead of the redirect page. + Redireccionar o membro de volta para a última página visitada em vez da página de redireccionamento. Language fallback @@ -90,15 +91,19 @@ Favicon + Favicon Here you can select a favicon for the website. + Aqui pode seleccionar um favicon para o website. Custom robots.txt content + Conteúdo robots.txt personalizado Here you can enter custom robots.txt content. It may be extended automatically by extensions. + Aqui pode inserir conteúdos robots.txt personalizados. Pode ser alargado automaticamente através de extensões. Domain name @@ -130,6 +135,7 @@ This e-mail address will be used to send and receive system messages. + Este endereço de correio electrónico será utilizado para enviar e receber mensagens do sistema. Date format @@ -241,6 +247,7 @@ The period after which the page should no longer be considered fresh by a shared cache. + O período após o qual a página já não deve ser considerada fresca por uma cache partilhada. Always load from shared cache @@ -256,6 +263,7 @@ The period after which the page should no longer be considered fresh by a private cache. + O período após o qual a página já não deve ser considerada fresca por uma cache privada. Assign access rights @@ -335,6 +343,7 @@ Hide the page if a member is logged in. + Esconder a página se um membro estiver logado. Tab index @@ -390,6 +399,7 @@ Please choose the page to which members will be redirected to set up two-factor authentication. + Por favor escolha a página para a qual os membros serão redireccionados para estabelecer uma autenticação com dois factores. Name and type @@ -413,6 +423,7 @@ Website settings + Configurações do website Global settings diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_settings.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_settings.xlf index e44857bb161..a1f14d09fca 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_settings.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_settings.xlf @@ -7,6 +7,7 @@ This e-mail address will be used to send and receive system messages. + Este endereço de correio electrónico será utilizado para enviar e receber mensagens do sistema. Date format @@ -98,12 +99,15 @@ Allowed HTML attributes + Atributos HTML permitidos List of allowed HTML attributes that will not be stripped. The tag or attribute name <code>*</code> stands for all tags or attributes. Wildcards can be used for attributes with dashes like <code>data-*</code>. + Lista de atributos HTML permitidos que não serão descascados. O nome da etiqueta ou atributo <code>*</code> representa todas as etiquetas ou atributos. Os wildcards podem ser utilizados para atributos com traços como <code>data-*</code>. Allowing <code>*</code> attributes can be exploited for XSS attacks. Only do this if all backend users are trusted! + Permitindo <code>*</code> atributos pode ser explorado para ataques XSS. Só o faça se todos os utilizadores backend forem de confiança! Disable request tokens diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_style_sheet.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_style_sheet.xlf index 927cebeda89..e4caad02cc1 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_style_sheet.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_style_sheet.xlf @@ -91,9 +91,11 @@ Import + Importar Import a style sheet + Importar uma folha de estilo New diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_theme.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_theme.xlf index 9b69315f70e..5dc3113bd54 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_theme.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_theme.xlf @@ -123,9 +123,11 @@ Import + Importar Import a theme + Importar um tema Edit the theme settings diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_user.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_user.xlf index f3af12fe7c3..9e7d2d9eb79 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_user.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_user.xlf @@ -43,9 +43,11 @@ Fullscreen + Tela completa Do not limit the width of the back end. + Não limitar a largura da extremidade traseira. File uploader @@ -165,12 +167,15 @@ Here you can select the allowed content element types. + Aqui pode seleccionar os tipos de elementos de conteúdo permitidos. Form fields + Campos do formulário Here you can select the allowed form field types. + Aqui pode seleccionar os tipos de campo de formulário permitidos. Pagemounts @@ -242,6 +247,7 @@ If you want to prevent the account from being active before a certain date/time, you can enter it here. Otherwise leave the field blank. + Se quiser evitar que a conta esteja activa antes de uma determinada data/hora, pode introduzi-la aqui. Caso contrário, deixe o campo em branco. Deactivate on @@ -249,6 +255,7 @@ If you want to prevent the account from being active after a certain date/time, you can enter it here. Otherwise leave the field blank. + Se quiser evitar que a conta esteja activa após uma determinada data/hora, pode introduzi-la aqui. Caso contrário, deixe o campo em branco. Purge data @@ -288,6 +295,7 @@ Allowed elements + Elementos permitidos Pagemounts @@ -327,6 +335,7 @@ Shared cache + Cache partilhada The session data has been purged @@ -338,6 +347,7 @@ The shared cache has been purged + A cache partilhada foi purgada Default uploader diff --git a/core-bundle/src/Resources/contao/languages/pt/tl_user_group.xlf b/core-bundle/src/Resources/contao/languages/pt/tl_user_group.xlf index 3631b6782e2..5593bb5e7c6 100644 --- a/core-bundle/src/Resources/contao/languages/pt/tl_user_group.xlf +++ b/core-bundle/src/Resources/contao/languages/pt/tl_user_group.xlf @@ -31,6 +31,7 @@ If you want to prevent the group from being active before a certain date/time, you can enter it here. Otherwise leave the field blank. + Se quiser evitar que o grupo esteja activo antes de uma determinada data/hora, pode introduzi-lo aqui. Caso contrário, deixe o campo em branco. Deactivate on @@ -38,6 +39,7 @@ If you want to prevent the group from being active after a certain date/time, you can enter it here. Otherwise leave the field blank. + Se quiser evitar que o grupo esteja activo após uma determinada data/hora, pode introduzi-lo aqui. Caso contrário, deixe o campo vazio. Title @@ -49,6 +51,7 @@ Allowed elements + Elementos permitidos Pagemounts @@ -76,6 +79,7 @@ Group settings + Configurações de grupo New @@ -87,18 +91,23 @@ Show the details of user group ID %s + Mostrar os detalhes do ID do grupo de utilizadores %s Edit user group ID %s + Editar ID do grupo de utilizadores %s Duplicate user group ID %s + Duplicar o ID do grupo de utilizadores %s Delete user group ID %s + Eliminar o ID do grupo de utilizadores %s Activate/deactivate user group ID %s + Activar/desactivar o ID do grupo de utilizadores %s diff --git a/faq-bundle/src/Resources/contao/languages/pt/tl_faq_category.xlf b/faq-bundle/src/Resources/contao/languages/pt/tl_faq_category.xlf index e3d34a673b8..61450a5e9a1 100644 --- a/faq-bundle/src/Resources/contao/languages/pt/tl_faq_category.xlf +++ b/faq-bundle/src/Resources/contao/languages/pt/tl_faq_category.xlf @@ -79,9 +79,11 @@ Allow only authenticated members to create comments. + Permitir apenas aos membros autenticados a criação de comentários. Disable spam protection + Desactivar a protecção contra spam Use this option only if you have limited comments to authenticated users. diff --git a/installation-bundle/src/Resources/translations/ContaoInstallationBundle.pt.xlf b/installation-bundle/src/Resources/translations/ContaoInstallationBundle.pt.xlf new file mode 100644 index 00000000000..20ba7f42f27 --- /dev/null +++ b/installation-bundle/src/Resources/translations/ContaoInstallationBundle.pt.xlf @@ -0,0 +1,366 @@ + + + + + Contao install tool + Ferramenta de instalação do Contao + + + An error occurred + Ocorreu um erro + + + The install tool has been locked! + A ferramenta de instalação foi bloqueada! + + + For security reasons, the install tool has been locked after a wrong password had been entered more than three times in a row. To unlock it, run <code>vendor/bin/contao-console contao:install:unlock</code> on the command line. + Por razões de segurança a ferramenta de instalação foi bloqueada após se ter introduzido a senha errada três vezes. Para desbloquear, execute <code>vendor/bin/contao-console contao:install:unlock</code> na linha de comando. + + + PHP is not allowed to write files! + O PHP não tem permissão para escrever ficheiros! + + + Your server does not support file access via PHP; most likely PHP runs as Apache module under a different user. Please contact your server administrator and ask him to fix the problem. + O seu servidor não suporta acesso a ficheiros via PHP; provavelmente o PHP está a correr como módulo Apache com outro utilizador. Por favor contacte o seu administrador de servidor para resolver o problema. + + + <strong>Do not attempt to fix this yourself by making files and folders writable for everyone!</strong> + <strong>Não tente corrigir este problema sem ajuda ao tornar ficheiros e pastas acessíveis a todos os utilizadores!</strong> + + + Accept license + Aceitar licença + + + Install tool password + Senha da ferramenta de instalação + + + Please enter a password to prevent unauthorized access. + Por favor introduza uma senha para prevenir acesso não autorizado. + + + Password + Senha + + + Confirm password + Confirmar senha + + + Save password + Salvar senha + + + The password does not match the confirmation! + A senha não coincide! + + + The password should be at least %d characters long! + A senha tem de conter pelo menos %d caracteres! + + + Install tool login + Login da ferramenta de instalação + + + Please enter the install tool password. The install tool password is not the same as the Contao back end password. + Favor inserir a senha da ferramenta de instalação. A senha da ferramenta de instalação não é a mesma senha do back end do Contao. + + + You have to allow cookies to use Contao. + Para usar Contao, você precisa ter permissão de usar cookies. + + + Login + Login + + + Invalid password! + Senha inválida! + + + Database connection + Ligação a base de dados + + + Database connection established. + Conexão com o banco de dados ok. + + + The database name must not contain dots! + O nome da base de dados não pode conter pontos! + + + Could not connect to the database! + Impossivel ligar á base de dados! + + + Please enter your database connection parameters. + Inserir parâmetros do banco de dados + + + Host + Host + + + Port number + Porta número + + + Username + Usuário + + + Password + Senha + + + Database name + Nome da base de dados + + + Save settings + Guardar Configuração + + + Update the database + Atualizar base de dados + + + Please note that the update assistant only handles tables starting with <code>tl_</code>. + Tenha em consideração que o assistente de configuração apenas afecta tabelas com prefixo <code>tl_</code>. + + + The database is up to date. + O banco de dados está atualizado. + + + Update database + Checar/Atualizar banco de dados + + + Create tables + Criar tabelas + + + Change tables + Alterar tabelas + + + Add columns + Adicionar colunas + + + Change columns + Alterar colunas + + + Drop columns + Apagar colunas + + + Drop tables + Apagar tabela + + + Select all + Selecionar tudo + + + Import a template + Importar um modelo + + + Here you can import an <code>.sql</code> file from the <code>templates</code> directory. Any existing data will be deleted! If you only want to import a theme, please use the theme manager in the Contao back end instead. + Aqui pode importar um ficheiro <code>.sql</code> constante do directório de <code>modelos</code>. Quaisquer dados existentes serão apagados! Se apenas pretende importar um tema, utilize o gestor de temas no Contao back end. + + + The import failed! Is the database up to date and is the template file compatible with your Contao version? + Falha ao importar! Verifique se a base de dados está atualizada e se o ficheiro de modelo é compatível com a sua versão Contao. + + + Please choose a template file! + Favor escolher um arquivo modelo! + + + Any existing data will be deleted! + Todos os dados existentes serão apagados! + + + Template imported on %s. + Modelo importado em %s. + + + Templates + Modelos + + + Do not truncate the tables + Não truncar as tabelas + + + Any existing data will be deleted! Do you really want to continue? + Todos os dados existentes serão apagados! Você deseja continuar? + + + Import template + Importar tabela + + + Create an admin user + Criar um usuário administrador + + + Here you can create an admin user to log into the Contao back end. + Aqui pode criar um utilizador admin para entrar no Contao back end. + + + An admin user has been created. + Um usuário administrador foi criado. + + + Username + Usuário + + + Name + Nome + + + E-mail + Formato do e-mail + + + Create admin user + Criar utilizador admin + + + For security reasons you can not use the following characters here: #<>()\= + Por questões de segurança não pode usar os seguintes caracteres aqui: #<>()\= + + + The username must not contain any whitespace characters! + O nome de utilizador não pode conter espaços! + + + Please enter a valid e-mail address! + Favor inserir um endereço de e-mail válido! + + + The passwords did not match! + Senhas não conferem! + + + Your username and password must not be the same! + Seu nome de usuário e senha não podem ser os mesmos! + + + Please fill in all fields to create an admin user! + Favor preencher todos os campos para criar um usuário administrador! + + + Congratulations! + Parabéns! + + + You have successfully installed Contao. + Você instalou o Contao com sucesso! + + + Installation complete + Instalação completa + + + Now please go to the Contao back end and check the system settings. + Por favor verifique as configurações de sistema no Contao back end. + + + Contao back end + Contao back end + + + The database is too old! + A base de dados é demasiado antiga! + + + You need at least Contao 3.2 to upgrade to Contao 4. + Necessita no mínimo da versão 3.2 para actualizar para a versão Contao 4. + + + A post installation task could not be completed! + Uma tarefa pós instalação não pôde ser completada! + + + Duplicate newsletter subscriptions found: + Subscrições de newsletter duplicadas encontradas: + + + The duplicate entries have been purged automatically. A backup of the original subscriptions has been stored in <code>tl_newsletter_recipients_backup</code>. + As entradas duplicadas foram removidas automaticamente. Uma cópia de segurança das subscrições originais foi guardada em <code>tl_newsletter_recipients_backup</code>. + + + Your database version is not supported! + A sua versão de base de dados não é suportada! + + + Contao requires at least MySQL 5.1.0 but you have version %s. Please update your database version. + O Contao necessita que a versão MySQL seja no mínimo 5.1.0, a versão %s está instalada. Por favor actualize a versão de base de dados. + + + The configured collation is not supported! + A ordenação (collation) configurada não é suportada! + + + The configured collation <code>%s</code> is not available on your server. Please install it (recommended) or configure a different character set and collation in the <code>config/config.yml</code> file. + A colação configurada <code>%s</code> não está disponível no seu servidor. Por favor instale-o (recomendado) ou configure um conjunto de caracteres e agrupamento diferente no ficheiro <code>config/config.yml</code>. + + + The configured database engine is not supported! + O motor de base de dados configurado não é suportado! + + + The configured database engine <code>%s</code> is not available on your server. Please install it (recommended) or configure a different database engine in the <code>config/config.yml</code> file. + O motor de base de dados <code>%s</code> configurado não está disponível no seu servidor. Por favor instale-o (recomendado) ou configure um motor de base de dados diferente no ficheiro <code>config/config.yml</code>. + + + Invalid combination of database engine and collation! + Combinação inválida de motor de base de dados e de recolha de dados! + + + The configured database engine <code>%s</code> does not support utf8mb4. Please use InnoDB instead (recommended) or configure a different character set and collation in the <code>config/config.yml</code> file. + O motor de base de dados configurado <code>%s</code> ão suporta o utf8mb4. Por favor, utilizar InnoDB (recomendado) ou configurar um conjunto de caracteres e agrupamento diferente no ficheiro <code>config/config.yml</code>. + + + The innodb_large_prefix option is not enabled! + A opção innodb_large_prefix não está activada! + + + The <code>innodb_large_prefix</code> option is not enabled on your server. Please enable it (recommended) or configure a different character set and collation in the <code>config/config.yml</code> file. + A opção <code>innodb_large_prefix</code> onão está activada no seu servidor. Por favor active-o (recomendado) ou configure um conjunto e agrupamento de caracteres diferente no ficheiro <code>config/config.yml</code>. + + + InnoDB is not configured properly! + O InnoDB não está configurado correctamente! + + + Using large prefixes in MySQL versions prior to 5.7.7 and MariaDB versions prior to 10.2 requires the Barracuda file format and the <code>innodb_file_per_table</code> option. + A utilização de grandes prefixos em versões MySQL anteriores à 5.7.7 e versões MariaDB anteriores à 10.2 requer o formato de ficheiro Barracuda e a opção <code>innodb_file_per_table</code>. + + + Could not connect to the database using the connection URL found in the <code>DATABASE_URL</code> environment variable. + Impossível conectar a base de dados com recurso ao URL definido na variável de ambiente <code>DATABASE_URL</code>. + + + Your database server is not running in strict mode! + O seu servidor de bases de dados não está a funcionar em modo estrito! + + + Running MySQL in non-strict mode can cause corrupt or truncated data. Please enable the strict mode either in your <code>my.cnf</code> file or configure the connection options in the <code>config/config.yml</code> file as follows: + A execução do MySQL em modo não restritivo pode causar dados corruptos ou truncados. Por favor active o modo estrito ou no seu ficheiro <code>my.cnf</code> ou configurar as opções de ligação no ficheiro <code>config/config.yml</code>como segue: + + + + \ No newline at end of file diff --git a/listing-bundle/src/Resources/contao/languages/pt/tl_module.xlf b/listing-bundle/src/Resources/contao/languages/pt/tl_module.xlf index 5a5e700e29d..ef3880dd74f 100644 --- a/listing-bundle/src/Resources/contao/languages/pt/tl_module.xlf +++ b/listing-bundle/src/Resources/contao/languages/pt/tl_module.xlf @@ -63,6 +63,7 @@ Here you can select a list template. + Aqui pode seleccionar um modelo de lista. Details page template @@ -70,6 +71,7 @@ Here you can select a details page template. + Aqui pode seleccionar um modelo de página de detalhes. diff --git a/manager-bundle/src/Resources/translations/ContaoManagerBundle.pt.xlf b/manager-bundle/src/Resources/translations/ContaoManagerBundle.pt.xlf index dd62daa0ad1..8e05697d599 100644 --- a/manager-bundle/src/Resources/translations/ContaoManagerBundle.pt.xlf +++ b/manager-bundle/src/Resources/translations/ContaoManagerBundle.pt.xlf @@ -1,10 +1,14 @@ - + Debug mode Modo de depuração + + Manage updates and extensions and maintain the application + Gerir actualizações e extensões e manter a aplicação + \ No newline at end of file diff --git a/news-bundle/src/Resources/contao/languages/pt/tl_module.xlf b/news-bundle/src/Resources/contao/languages/pt/tl_module.xlf index e17da88f12c..e057eb25b3c 100644 --- a/news-bundle/src/Resources/contao/languages/pt/tl_module.xlf +++ b/news-bundle/src/Resources/contao/languages/pt/tl_module.xlf @@ -47,6 +47,7 @@ Here you can select a news template. + Aqui pode seleccionar um modelo de notícia. Archive format diff --git a/news-bundle/src/Resources/contao/languages/pt/tl_news_archive.xlf b/news-bundle/src/Resources/contao/languages/pt/tl_news_archive.xlf index 1e412200d9d..ac4e7590148 100644 --- a/news-bundle/src/Resources/contao/languages/pt/tl_news_archive.xlf +++ b/news-bundle/src/Resources/contao/languages/pt/tl_news_archive.xlf @@ -71,9 +71,11 @@ Allow only authenticated members to create comments. + Permitir apenas aos membros autenticados a criação de comentários. Disable spam protection + Desactivar a protecção contra spam Use this option only if you have limited comments to authenticated users. diff --git a/newsletter-bundle/src/Resources/contao/languages/pt/tl_module.xlf b/newsletter-bundle/src/Resources/contao/languages/pt/tl_module.xlf index 67b982bfe04..87254d7c1ae 100644 --- a/newsletter-bundle/src/Resources/contao/languages/pt/tl_module.xlf +++ b/newsletter-bundle/src/Resources/contao/languages/pt/tl_module.xlf @@ -55,6 +55,7 @@ Here you can select a newsletter template. + Aqui pode seleccionar um modelo newsletter. Custom text diff --git a/newsletter-bundle/src/Resources/contao/languages/pt/tl_newsletter.xlf b/newsletter-bundle/src/Resources/contao/languages/pt/tl_newsletter.xlf index d015f858190..928fcb9080b 100644 --- a/newsletter-bundle/src/Resources/contao/languages/pt/tl_newsletter.xlf +++ b/newsletter-bundle/src/Resources/contao/languages/pt/tl_newsletter.xlf @@ -55,6 +55,7 @@ Here you can override the e-mail template of the channel. + Aqui pode substituir o modelo de e-mail do canal. Send as plain text diff --git a/newsletter-bundle/src/Resources/contao/languages/pt/tl_newsletter_channel.xlf b/newsletter-bundle/src/Resources/contao/languages/pt/tl_newsletter_channel.xlf index 5cae8ee5e5d..91dd2bc1d0a 100644 --- a/newsletter-bundle/src/Resources/contao/languages/pt/tl_newsletter_channel.xlf +++ b/newsletter-bundle/src/Resources/contao/languages/pt/tl_newsletter_channel.xlf @@ -23,6 +23,7 @@ Here you can select an e-mail template. + Aqui pode seleccionar um modelo de e-mail. Sender e-mail address