File Manager
<?php
$lang['warning_cron_updated'] = 'Denne test genereres kun sjældent. Der kan godt gå noget tid, før den forsvinder';
$lang['none'] = 'Ingen';
$lang['ssl'] = 'SSL';
$lang['tls'] = 'TLS';
$lang['secure'] = 'Kryptering';
$lang['info_secure'] = 'Gælder kun for SMTP mailer metoden, denne valgmulighed specificerer hvordan forbindelsen skal krypteres';
$lang['info_cmsmailer'] = 'Dette modul benyttes af et utal af andre moduler til at gøre det lettere at sende emails. Det skal opsættes i overensstemmelse med de krav, som din udbyder stiller. Benyt venligst de oplysninger, som du har fået af din udbyder til at redigere disse indstillinger. Hvis du alligevel ikke kan få sendt testbeskeden korrekt, så kan du blive nødt til at kontakte din udbyder for at få hjælp.';
$lang['charset'] = 'Tegnsæt';
$lang['sendtestmailconfirm'] = 'Dette vil sende en testbesked til den angivne adresse. Hvis afsendelsen lykkes vil du blive sendt tilbage til denne side. Vil du fortsætte?';
$lang['settingsconfirm'] = 'Gem disse værdier som CMSMailer indstillinger?';
$lang['testsubject'] = 'CMSMailer test besked';
$lang['testbody'] = 'Denne besked har kun til formål at teste indstillingerne i CMSMailer modulet. Hvis du modtager denne virker alt som det skal.';
$lang['error_notestaddress'] = 'Fejl: Test adresse ikke angivet';
$lang['prompt_testaddress'] = 'Test email adresse';
$lang['sendtest'] = 'Send test besked';
$lang['password'] = 'Kodeord';
$lang['username'] = 'Brugernavn';
$lang['smtpauth'] = 'SMTP godkendelse';
$lang['mailer'] = 'Mailer metode';
$lang['host'] = 'SMTP host navn<br/><i>(eller IP adresse)</i>';
$lang['port'] = 'SMTP server port';
$lang['from'] = 'Fra adresse';
$lang['fromuser'] = 'Fra brugernavn';
$lang['sendmail'] = 'Sendmail placering';
$lang['timeout'] = 'SMTP timeout';
$lang['submit'] = 'Send';
$lang['cancel'] = 'Fortryd';
$lang['info_mailer'] = 'Mail metode der skal benyttes (sendmail, smtp, mail). SMTP er som regel det mest pålidelige.';
$lang['info_host'] = 'SMTP hostname (gælder kun for smtp mail metoden)';
$lang['info_port'] = 'SMTP port nummer (typisk 25) (gælder kun for smtp mail metoden)';
$lang['info_from'] = 'Adresse der skal bruges som afsender af alle emails';
$lang['info_fromuser'] = 'Navn der skal bruges som afsender af alle emails';
$lang['info_sendmail'] = 'Den fuldstændige sti til sendmail programmet (gælder kun for sendmail mailer metoden)';
$lang['info_timeout'] = 'Antallet af sekunder i en SMTP kommunikation før det anses som en fejl (kun gyldig for smtp mailer metoden)';
$lang['info_smtpauth'] = 'Kræver din smtp host godkendelse (kun gyldig for smtp mailer metoden)';
$lang['info_username'] = 'SMTP godkendelse brugernavn (kun gyldig for smtp mailer metoden, når godkendelse er slået til)';
$lang['info_password'] = 'SMTP godkendelse kodeord (kun gyldig for smtp mailer metoden, når godkendelse er slået til)';
$lang['friendlyname'] = 'CMSMailer Module';
$lang['postinstall'] = 'CMSMailer modulet blev installeret';
$lang['postuninstall'] = 'CMSMailer modulet blev afinstalleret';
$lang['uninstalled'] = 'Modulet blev afinstalleret';
$lang['installed'] = 'Modul version %s installeret.';
$lang['accessdenied'] = 'Adgang nægtet! Tjek dine rettigheder.';
$lang['error'] = 'Fejl!';
$lang['upgraded'] = 'Modulet blev opgraderet til version %s.';
$lang['title_mod_prefs'] = 'Modul indstillinger';
$lang['title_mod_admin'] = 'Modul administrations panel';
$lang['title_admin_panel'] = 'CMSMailer modul';
$lang['moddescription'] = 'Dette er et interface til PHPMailer, det et tilsvarende API (funktion for funktion) og et simpelt interface til nogle standardværdier.';
$lang['changelog'] = '<ul>
<li>Version 1.73.1. October, 2005. Initial Release.</li>
<li>Version 1.73.2. October, 2005. Minor bug fix with the admin panel. The dropdown was not representing the current value from the preferences database</li>
<li>Version 1.73.3. October, 2005. Minor bug fix with sending html email</li>
<li>Version 1.73.4. November, 2005. Form fields in preferences are larger, fixed a problem with the fromuser, and called reset within the constructor</li>
<li>Version 1.73.5. November, 2005. Added the form fields and functionality for SMTP authentication.</li>
<li>Version 1.73.6. December, 2005. Default mailer method is SMTP on install, and improved documentation, and now I clear all the attachments, and addresses, etc. on reset.</li>
<li>Version 1.73.7. January, 2006. Increased field lengths in most fields</li>
<li>Version 1.73.8. January, 2006. Changed the preferences panel to be a bit more descriptive.</li>
<li>Version 1.73.9. January, 2006. Added test email capability, and confirmation on each button (except cancel)</li>
<li>Version 1.73.10. August, 2006. Modified to use lazy loading to minimize memory footprint when CMSMailer is not being used.</li>
<li>Version 1.73.13. January, 2008. Added more permissions checks.</li>
<li>Version 2.0.1 - January, 2011 - Remove cancel button.</li>
<li>Version 2.0.2 - September, 2011 - Set default charset to utf-8.</li>
</ul>';
$lang['help'] = '<h3>Hvad er det til for?</h3>
<p>Dette modul tilbyder ikke slutbrugeren nogen funktioner. Det er alene lavet mhp. integration i andre moduler, så de kan gøre brug af email. Mere er der ikke i det.</p>
<h3>Hvordan skal jeg anvende det?</h3>
<p>Dette modul giver let adgang til alle PHPMailers metoder og variable. Hensigten er, at modulet skal bruges af andre modul-udviklere. Herunder ses et eksempel og en hurtig API-reference. Læs venligst den dokumentation til PHPMailer, som medfølger for mere information.</p>
<h3>Et eksempel</h3>
<pre>
$cmsmailer = $this->GetModuleInstance(\'CMSMailer\');
$cmsmailer->AddAddress(\'calguy1000@hotmail.com\',\'calguy\');
$cmsmailer->SetBody(\'<h1>Denne besked er en prøve<h1>\');
$cmsmailer->IsHTML(true);
$cmsmailer->SetSubject(\'Prøvebesked\');
$cmsmailer->Send();
</pre>
<h3>API</h3>
<ul>
<li><p><b>void reset()</b></p>
<p>Nulstil objektet og gendan de værdier, som er specificeret i administrationspanelet</p>
</li>
<li><p><b>string GetAltBody()</b></p>
<p>Returnér emailens alternative indhold (body)</p>
</li>
<li><p><b>void SetAltBody( $string )</b></p>
<p>Bestem emailens alternative indhold (body)</p>
</li>
<li><p><b>string GetBody()</b></p>
<p>Returnér emailens primære indhold (body)</p>
</li>
<li><p><b>void SetBody( $string )</b></p>
<p>Bestem emailens primære indhold (body)</p>
</li>
<li><p><b>string GetCharSet()</b></p>
<p>Hvis intet andet er angivet, bruges iso-8859-1</p>
<p>Returnér mailerens tegnsæt</p>
</li>
<li><p><b>void SetCharSet( $string )</b></p>
<p>Bestem mailerens tegnsæt</p>
</li>
<li><p><b>string GetConfirmReadingTo()</b></p>
<p>Returnér modtageradresse ved emails, hvor modtageren bedes bekræfte at have læst emailen</p>
</li>
<li><p><b>void SetConfirmReadingTo( $address )</b></p>
<p>Anvend eller anvend ikke emailadresse for modtagelse af bekræftelse</p>
</li>
<li><p><b>string GetContentType()</b></p>
<p>Hvis intet er angivet bruges text/plain</p>
<p>Returnér indholdstype</p>
</li>
<li><p><b>void SetContentType()</b></p>
<p>Bestem indholdstype</p>
</li>
<li><p><b>string GetEncoding()</b></p>
<p>Returnér indkodning</p>
</li>
<li><p><b>void SetEncoding( $encoding )</b></p>
<p>iBestem ndkodning</p>
<p>Der er følgende muligheder: 8bit, 7bit, binary, base64, quoted-printable</p>
</li>
<li><p><b>string GetErrorInfo()</b></p>
<p>Returnér information om fejl, hvis de opstår</p>
</li>
<li><p><b>string GetFrom()</b></p>
<p>Returnér den aktuelle oprindelsesadresse</p>
</li>
<li><p><b>void SetFrom( $address )</b></p>
<p>Bestem den oprindelsesadresse, som emailen kommer fra</p>
</li>
<li><p><b>string GetFromName()</b></p>
<p>Returnér det aktuelle oprindelsesnavn</p>
</li>
<li><p><b>SetFromName( $name )</b></p>
<p>Bestem oprindelsesnavnet</p>
</li>
<li><p><b>string GetHelo()</b></p>
<p>Returnér HELO-teksten</p>
</li>
<li><p><b>SetHelo( $string )</b></p>
<p>Bestem HELO-teksten</p>
<p>Hvis intet andet er angivet, bruges $hostname</p>
</li>
<li><p><b>string GetHost()</b></p>
<p>Returnér SMTP'ernes host adskilt af semikolon</p>
</li>
<li><p><b>void SetHost( $string )</b></p>
<p>Bestem værtsnavn</p>
</li>
<li><p><b>string GetHostName()</b></p>
<p>Returnér det værtsnavn, som SMTP Helo bruger</p>
</li>
<li><p><b>void SetHostName( $hostname )</b></p>
<p>Bestem det værtsnavn, som SMTP Helo skal bruge</p>
</li>
<li><p><b>string GetMailer()</b></p>
<p>Returnér maileren</p>
</li>
<li><p><b>void SetMailer( $mailer )</b></p>
<p>Bestem maileren - enten sendmail,mail, eller smtp</p>
</li>
<li><p><b>string GetPassword()</b></p>
<p>Returnér adgangskoden til smtp auth</p>
</li>
<li><p><b>void SetPassword( $string )</b></p>
<p>Bestem adgangskoden til smtp auth</p>
</li>
<li><p><b>int GetPort()</b></p>
<p>Returnér smtp-forbindelsens portnummer</p>
</li>
<li><p><b>void SetPort( $int )</b></p>
<p>Bestem smtp-forbindelsens portnummer</p>
</li>
<li><p><b>int GetPriority()</b></p>
<p>Returnér beskedens prioritet</p>
</li>
<li><p><b>void SetPriority( int )</b></p>
<p>Bestem beskedens prioritet</p>
<p>Mulige værdier er 1=Høj, 3 = Normal, 5 = Lav</p>
</li>
<li><p><b>string GetSender()</b></p>
<p>Returnér afsender (adresse for modtagelse af besvarelse)</p>
</li>
<li><p><b>void SetSender( $address )</b></p>
<p>Bestem afsenderadresse</p>
</li>
<li><p><b>string GetSendmail()</b></p>
<p>Returnér stien til sendmail</p>
</li>
<li><p><b>void SetSendmail( $path )</b></p>
<p>Bestem stien til sendmail</p>
</li>
<li><p><b>bool GetSMTPAuth()</b></p>
<p>Return the current value of the smtp auth flag</p>
</li>
<li><p><b>SetSMTPAuth( $bool )</b></p>
<p>Set the smtp auth flag</p>
</li>
<li><p><b>bool GetSMTPDebug()</b></p>
<p>Return the value of the SMTP debug flag</p>
</li>
<li><p><b>void SetSMTPDebug( $bool )</b></p>
<p>Set the SMTP debug flag</p>
</li>
<li><p><b>bool GetSMTPKeepAlive()</b></p>
<p>Return the value of the SMTP keep alive flag</p>
</li>
<li><p><b>SetSMTPKeepAlive( $bool )</b></p>
<p>Set the SMTP keep alive flag</p>
</li>
<li><p><b>string GetSubject()</b></p>
<p>Return the current subject string</p>
</li>
<li><p><b>void SetSubject( $string )</b></p>
<p>Set the subject string</p>
</li>
<li><p><b>int GetTimeout()</b></p>
<p>Return the timeout value</p>
</li>
<li><p><b>void SetTimeout( $seconds )</b></p>
<p>Set the timeout value</p>
</li>
<li><p><b>string GetUsername()</b></p>
<p>Return the smtp auth username</p>
</li>
<li><p><b>void SetUsername( $string )</b></p>
<p>Set the smtp auth username</p>
</li>
<li><p><b>int GetWordWrap()</b></p>
<p>Return the wordwrap value</p>
</li>
<li><p><b>void SetWordWrap( $int )</b></p>
<p>Return the wordwrap value</p>
</li>
<li><p><b>AddAddress( $address, $name = \'\' )</b></p>
<p>Add a destination address</p>
</li>
<li><p><b>AddAttachment( $path, $name = \'\', $encoding = \'base64\', $type = \'application/octent-stream\' )</b></p>
<p>Add a file attachment</p>
</li>
<li><p><b>AddBCC( $address, $name = \'\' )</b></p>
<p>Add a BCC\'d destination address</p>
</li>
<li><p><b>AddCC( $address, $name = \'\' )</b></p>
<p>Add a CC\'d destination address</p>
</li>
<li><p><b>AddCustomHeader( $txt )</b></p>
<p>Add a custom header to the email</p>
</li>
<li><p><b>AddEmbeddedImage( $path, $cid, $name = \'\', $encoding = \'base64\', $type = \'application/octent-stream\' )</b></p>
<p>Add an embedded image</p>
</li>
<li><p><b>AddReplyTo( $address, $name = \'\' )</b></p>
<p>Add a reply to address</p>
</li>
<li><p><b>AddStringAttachment( $string, $filename, $encoding = \'base64\', $type = \'application/octent-stream\' )</b></p>
<p>Add a file attachment</p>
</li>
<li><p><b>ClearAddresses()</b></p>
<p>Clear all addresses</p>
</li>
<li><p><b>ClearAllRecipients()</b></p>
<p>Clear all recipients</p>
</li>
<li><p><b>ClearAttachments()</b></p>
<p>Clear all attachments</p>
</li>
<li><p><b>ClearBCCs()</b></p>
<p>Clear all BCC addresses</p>
</li>
<li><p><b>ClearCCs()</b></p>
<p>Clear all CC addresses</p>
</li>
<li><p><b>ClearCustomHeaders()</b></p>
<p>Clear all custom headers</p>
</li>
<li><p><b>ClearReplyto()</b></p>
<p>Clear reply to address</p>
</li>
<li><p><b>IsError()</b></p>
<p>Check for an error condition</p>
</li>
<li><p><b>bool IsHTML( $bool )</b></p>
<p>Set the html flag</p>
<p><i>Note</i> possibly this should be a get and set method</p>
</li>
<li><p><b>bool IsMail()</b></p>
<p>Check wether we are using mail</p>
</li>
<li><p><b>bool IsQmail()</b></p>
<p>Check wether we are using qmail</p>
</li>
<li><p><b>IsSendmail()</b></p>
<p>Check wether we are using sendmail</p>
</li>
<li><p><b>IsSMTP()</b></p>
<p>Check wether we are using smtp</p>
</li>
<li><p><b>Send()</b></p>
<p>Send the currently prepared email</p>
</li>
<li><p><b>SetLanguage( $lang_type, $lang_path = \'\' )</b></p>
<p>Set the current language and <em>(optional)</em> language path</p>
</li>
<li><p><b>SmtpClose()</b></p>
<p>Close the smtp connection</p>
</li>
</ul>
<h3>Support</h3>
<p>This module does not include commercial support. However, there are a number of resources available to help you with it:</p>
<ul>
<li>For the latest version of this module, FAQs, or to file a Bug Report or buy commercial support, please visit calguys homepage at <a href=\"http://techcom.dyndns.org\">techcom.dyndns.org</a>.</li>
<li>Additional discussion of this module may also be found in the <a href=\"http://forum.cmsmadesimple.org\">CMS Made Simple Forums</a>.</li>
<li>The author, calguy1000, can often be found in the <a href=\"irc://irc.freenode.net/#cms\">CMS IRC Channel</a>.</li>
<li>Lastly, you may have some success emailing the author directly.</li>
</ul>
<p>As per the GPL, this software is provided as-is. Please read the text
of the license for the full disclaimer.</p>
<h3>Copyright and License</h3>
<p>Copyright © 2005, Robert Campbell <a href=\"mailto:calguy1000@hotmail.com\"><calguy1000@hotmail.com></a>. All Rights Are Reserved.</p>
<p>This module has been released under the <a href=\"http://www.gnu.org/licenses/licenses.html#GPL\">GNU Public License</a>. You must agree to this license before using the module.</p>
';
$lang['utma'] = '156861353.1981595578.1376659451.1376667640.1376671417.4';
$lang['utmz'] = '156861353.1376667640.3.2.utmccn=(referral)|utmcsr=dev.cmsmadesimple.org|utmcct=/feature_request/view/9286|utmcmd=referral';
$lang['utmc'] = '156861353';
?>
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com