1<?php 2/** 3 * Slovak language for the "SMTP" DokuWiki plugin 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Martin Hanula <mh.ikar@gmail.com> 7 */ 8 9$lang['smtp_host'] = 'Meno/adresa SMTP servera pre odosielanie pošty'; // eng: 'Your outgoing SMTP server.'; 10$lang['smtp_port'] = 'Číslo portu, na ktorom počúva SMTP server. Väčšinou 25, resp. 465 pre SSL.'; // eng: 'The port your SMTP server listens on. Usually 25. 465 for SSL.'; 11$lang['smtp_ssl'] = 'Typ šifrovania, ktorý sa používa pri komunikácii s SMTP serverom'; // eng: 'What kind of encryption is used when communicating with your SMTP Server?'; // off, ssl, tls 12 13$lang['smtp_ssl_o_'] = 'žiadne'; // eng: 'none'; 14$lang['smtp_ssl_o_ssl'] = 'SSL'; // eng: 'SSL'; 15$lang['smtp_ssl_o_tls'] = 'TLS'; // eng: 'TLS'; 16 17$lang['auth_user'] = 'Ak SMTP server vyžaduje autentifikáciu, použiť nasledovné meno používateľa'; // eng: 'If authentication is required, put your user name here.'; 18$lang['auth_pass'] = 'Ak SMTP server vyžaduje autentifikáciu, použiť nasledovné heslo používateľa'; // eng: 'Password for the above user.'; 19 20$lang['localdomain'] = 'Meno použité v HELO fáze SMTP. Malo by to byť FQDN webservera, na ktorom beží DokuWiki. Pre autodetekciu nechať pole prázdne.'; // eng: 'The name to be used during HELO phase of SMTP. Should be the FQDN of the webserver DokuWiki is running on. Leave empty for autodetection.'; 21 22$lang['debug'] = 'Zobraziť celý chybový log keď odosielanie zlyhá? <b>Deaktivovať, ak všetko funguje!</b>'; // eng: 'Print a full error log when sending fails? Disable when everything works!'; 23