[ Index ]
 

Code source de CMS made simple 1.0.5

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/modules/CMSMailer/lang/ext/ -> da_DK.php (source)

   1  <?php
   2  $lang['sendtestmailconfirm'] = 'Dette vil sende en testbesked til den specificeret adresse. Hvis afsendelsen lykkes vil du blive sendt tilbage til denne side. Vil du forts&aelig;tte?';
   3  $lang['settingsconfirm'] = 'Gem disse v&aelig;rdier sm CMSMailer indstillinger?';
   4  $lang['testsubject'] = 'CMSMailer test besked';
   5  $lang['testbody'] = 'Denne besked har kun til form&aring;l at teste indstillingerne i CMSMailer modulet. Hvis du modtager denne virker alt som det skal.';
   6  $lang['error_notestaddress'] = 'Fejl: Test adresse ikke angivet';
   7  $lang['prompt_testaddress'] = 'Test email adresse';
   8  $lang['sendtest'] = 'Sent test besked';
   9  $lang['password'] = 'Kodeord';
  10  $lang['username'] = 'Brugernavn';
  11  $lang['smtpauth'] = 'SMTP Authentication';
  12  $lang['mailer'] = 'Mailer metode';
  13  $lang['host'] = 'SMTP host navn<br/><i>(eller IP adresse)</i>';
  14  $lang['port'] = 'SMTP server port';
  15  $lang['from'] = 'Fra adresse';
  16  $lang['fromuser'] = 'Fra brugernavn';
  17  $lang['sendmail'] = 'Sendmail placering';
  18  $lang['timeout'] = 'SMTP timeout';
  19  $lang['submit'] = 'Send';
  20  $lang['cancel'] = 'Fortryd';
  21  $lang['info_mailer'] = 'Mail metode der skal benyttes (sendmail, smtp, mail). SMTP er som regel det mest p&aring;lidelige.';
  22  $lang['info_host'] = 'SMTP hostname (g&aelig;lder kun for smtp mail metoden)';
  23  $lang['info_port'] = 'SMTP port nummer (typisk 25) (g&aelig;lder kun for smtp mail metoden)';
  24  $lang['info_from'] = 'Adresse der skal bruges som afsender af alle emails';
  25  $lang['info_fromuser'] = 'Navn der skal bruges som afsender af alle emails';
  26  $lang['info_sendmail'] = 'Den fuldst&aelig;ndige sti til sendmail programmet (g&aelig;lder kun for sendmail mailer metoden)';
  27  $lang['info_timeout'] = 'The number of seconds in an SMTP conversation before an error occurs (valid for the smtp mailer method)';
  28  $lang['info_smtpauth'] = 'Does your smtp host require authentication (valid only for the smtp mailer method)';
  29  $lang['info_username'] = 'SMTP authentication username (valid only for smtp mailer method, when smtp auth is selected)';
  30  $lang['info_password'] = 'SMTP authentication password (valid only for smtp mailer method, when smtp auth is selected)';
  31  $lang['friendlyname'] = 'CMSMailer Module';
  32  $lang['postinstall'] = 'CMSMailer module has been successfully installed';
  33  $lang['postuninstall'] = 'CMSMailer module uninstalled... sorry to see you leave';
  34  $lang['uninstalled'] = 'Module Uninstalled.';
  35  $lang['installed'] = 'Module version %s installed.';
  36  $lang['accessdenied'] = 'Access Denied. Please check your permissions.';
  37  $lang['error'] = 'Error!';
  38  $lang['upgraded'] = 'Module upgraded to version %s.';
  39  $lang['title_mod_prefs'] = 'Module Preferences';
  40  $lang['title_mod_admin'] = 'Module Admin Panel';
  41  $lang['title_admin_panel'] = 'CMSMailer Module';
  42  $lang['moddescription'] = 'This is a simple wrapper around PHPMailer, it has an equivalent API (function for function) and a simple interface for some defaults.';
  43  $lang['welcome_text'] = '<p>Welcome to the CMSMailer module admin section';
  44  $lang['changelog'] = '<ul>
  45  <li>Version 1.73.1. October, 2005. Initial Release.</li>
  46  <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>
  47  <li>Version 1.73.3. October, 2005. Minor bug fix with sending html email</li>
  48  <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>
  49  <li>Version 1.73.5. November, 2005. Added the form fields and functionality for SMTP authentication.</li>
  50  <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>
  51  <li>Version 1.73.7. January, 2006. Increased field lengths in most fields</li>
  52  <li>Version 1.73.8. January, 2006. Changed the preferences panel to be a bit more descriptive.</li>
  53  <li>Version 1.73.9. January, 2006. Added test email capability, and confirmation on each button (except cancel)</li>
  54  </ul>';
  55  $lang['help'] = '<h3>What Does This Do?</h3>
  56  <p>This module provides no end user functionality.  It is designed to be integrated into other modules to provide email capabilities.  Thats it, nothing more.</p>
  57  <h3>How Do I Use It</h3>
  58  <p>This module provides a simple wrapper around all of the methods and variables of phpmailer.  It is designed for use by other module developers, below is an example, and a brief API reference.  Please read the PHPMailer documentation included for more information.</p>
  59  <h3>An Example</h3>
  60  <pre>
  61    $cmsmailer = $this->GetModuleInstance(&#039;CMSMailer&#039;);
  62    $cmsmailer->AddAddress(&#039;calguy1000@hotmail.com&#039;,&#039;calguy&#039;);
  63    $cmsmailer->SetBody(&#039;<h1>This is a test message<h1>&#039;);
  64    $cmsmailer->IsHTML(true);
  65    $cmsmailer->SetSubject(&#039;Test message&#039;);
  66    $cmsmailer->Send();
  67  </pre>
  68  <h3>API</h3>
  69  <ul>
  70  <li><p><b>void reset()</b></p>
  71  <p>Reset the object back to the values specified in the admin panel</p>
  72  </li>
  73  <li><p><b>string GetAltBody()</b></p>
  74  <p>Return the alternate body of the email</p>
  75  </li>
  76  <li><p><b>void SetAltBody( $string )</b></p>
  77  <p>Set the alternate body of the email</p>
  78  </li>
  79  <li><p><b>string GetBody()</b></p>
  80  <p>Return the primary body of the email</p>
  81  </li>
  82  <li><p><b>void SetBody( $string )</b></p>
  83  <p>Set the primary body of the email</p>
  84  </li>
  85  <li><p><b>string GetCharSet()</b></p>
  86  <p>Default: iso-8859-1</p>
  87  <p>Return the mailer character set</p>
  88  </li>
  89  <li><p><b>void SetCharSet( $string )</b></p>
  90  <p>Set the mailer character set</p>
  91  </li>
  92  <li><p><b>string GetConfirmReadingTo()</b></p>
  93  <p>Return the address confirmed reading email flag</p>
  94  </li>
  95  <li><p><b>void SetConfirmReadingTo( $address )</b></p>
  96  <p>Set or unset the confirm reading address</p>
  97  </li>
  98  <li><p><b>string GetContentType()</b></p>
  99  <p>Default: text/plain</p>
 100  <p>Return the content type</p>
 101  </li>
 102  <li><p><b>void SetContentType()</b></p>
 103  <p>Set the content type</p>
 104  </li>
 105  <li><p><b>string GetEncoding()</b></p>
 106  <p>Return the encoding</p>
 107  </li>
 108  <li><p><b>void SetEncoding( $encoding )</b></p>
 109  <p>Set the encoding</p>
 110  <p>Options are: 8bit, 7bit, binary, base64, quoted-printable</p>
 111  </li>
 112  <li><p><b>string GetErrorInfo()</b></p>
 113  <p>Return any error information</p>
 114  </li>
 115  <li><p><b>string GetFrom()</b></p>
 116  <p>Return the current originating address</p>
 117  </li>
 118  <li><p><b>void SetFrom( $address )</b></p>
 119  <p>Set the originating address</p>
 120  </li>
 121  <li><p><b>string GetFromName()</b></p>
 122  <p>Return the current originating name</p>
 123  </li>
 124  <li><p><b>SetFromName( $name )</b></p>
 125  <p>Set the originating name</p>
 126  </li>
 127  <li><p><b>string GetHelo()</b></p>
 128  <p>Return the HELO string</p>
 129  </li>
 130  <li><p><b>SetHelo( $string )</b></p>
 131  <p>Set the HELO string</p>
 132  <p>Default value: $hostname</p>
 133  </li>
 134  <li><p><b>string GetHost()</b></p>
 135  <p>Return the SMTPs host separated by semicolon</p>
 136  </li>
 137  <li><p><b>void SetHost( $string )</b></p>
 138  <p>Set the hosts</p>
 139  </li>
 140  <li><p><b>string GetHostName()</b></p>
 141  <p>Return the hostname used for SMTP Helo</p>
 142  </li>
 143  <li><p><b>void SetHostName( $hostname )</b></p>
 144  <p>Set the hostname used for SMTP Helo</p>
 145  </li>
 146  <li><p><b>string GetMailer()</b></p>
 147  <p>Return the mailer</p>
 148  </li>
 149  <li><p><b>void SetMailer( $mailer )</b></p>
 150  <p>Set the mailer, either sendmail,mail, or smtp</p>
 151  </li>
 152  <li><p><b>string GetPassword()</b></p>
 153  <p>Return the password for smtp auth</p>
 154  </li>
 155  <li><p><b>void SetPassword( $string )</b></p>
 156  <p>Set the password for smtp auth</p>
 157  </li>
 158  <li><p><b>int GetPort()</b></p>
 159  <p>Return the port number for smtp connections</p>
 160  </li>
 161  <li><p><b>void SetPort( $int )</b></p>
 162  <p>Set the port for smtp connections</p>
 163  </li>
 164  <li><p><b>int GetPriority()</b></p>
 165  <p>Return the message priority</p>
 166  </li>
 167  <li><p><b>void SetPriority( int )</b></p>
 168  <p>Set the message priority</p>
 169  <p>Values are 1=High, 3 = Normal, 5 = Low</p>
 170  </li>
 171  <li><p><b>string GetSender()</b></p>
 172  <p>Return the sender email (return path) string</p>
 173  </li>
 174  <li><p><b>void SetSender( $address )</b></p>
 175  <p>Set the sender string</p>
 176  </li>
 177  <li><p><b>string GetSendmail()</b></p>
 178  <p>Return the sendmail path</p>
 179  </li>
 180  <li><p><b>void SetSendmail( $path )</b></p>
 181  <p>Set the sendmail path</p>
 182  </li>
 183  <li><p><b>bool GetSMTPAuth()</b></p>
 184  <p>Return the current value of the smtp auth flag</p>
 185  </li>
 186  <li><p><b>SetSMTPAuth( $bool )</b></p>
 187  <p>Set the smtp auth flag</p>
 188  </li>
 189  <li><p><b>bool GetSMTPDebug()</b></p>
 190  <p>Return the value of the SMTP debug flag</p>
 191  </li>
 192  <li><p><b>void SetSMTPDebug( $bool )</b></p>
 193  <p>Set the SMTP debug flag</p>
 194  </li>
 195  <li><p><b>bool GetSMTPKeepAlive()</b></p>
 196  <p>Return the value of the SMTP keep alive flag</p>
 197  </li>
 198  <li><p><b>SetSMTPKeepAlive( $bool )</b></p>
 199  <p>Set the SMTP keep alive flag</p>
 200  </li>
 201  <li><p><b>string GetSubject()</b></p>
 202  <p>Return the current subject string</p>
 203  </li>
 204  <li><p><b>void SetSubject( $string )</b></p>
 205  <p>Set the subject string</p>
 206  </li>
 207  <li><p><b>int GetTimeout()</b></p>
 208  <p>Return the timeout value</p>
 209  </li>
 210  <li><p><b>void SetTimeout( $seconds )</b></p>
 211  <p>Set the timeout value</p>
 212  </li>
 213  <li><p><b>string GetUsername()</b></p>
 214  <p>Return the smtp auth username</p>
 215  </li>
 216  <li><p><b>void SetUsername( $string )</b></p>
 217  <p>Set the smtp auth username</p>
 218  </li>
 219  <li><p><b>int GetWordWrap()</b></p>
 220  <p>Return the wordwrap value</p>
 221  </li>
 222  <li><p><b>void SetWordWrap( $int )</b></p>
 223  <p>Return the wordwrap value</p>
 224  </li>
 225  <li><p><b>AddAddress( $address, $name = &#039;&#039; )</b></p>
 226  <p>Add a destination address</p>
 227  </li>
 228  <li><p><b>AddAttachment( $path, $name = &#039;&#039;, $encoding = &#039;base64&#039;, $type = &#039;application/octent-stream&#039; )</b></p>
 229  <p>Add a file attachment</p>
 230  </li>
 231  <li><p><b>AddBCC( $address, $name = &#039;&#039; )</b></p>
 232  <p>Add a BCC&#039;d destination address</p>
 233  </li>
 234  <li><p><b>AddCC( $address, $name = &#039;&#039; )</b></p>
 235  <p>Add a CC&#039;d destination address</p>
 236  </li>
 237  <li><p><b>AddCustomHeader( $txt )</b></p>
 238  <p>Add a custom header to the email</p>
 239  </li>
 240  <li><p><b>AddEmbeddedImage( $path, $cid, $name = &#039;&#039;, $encoding = &#039;base64&#039;, $type = &#039;application/octent-stream&#039; )</b></p>
 241  <p>Add an embedded image</p>
 242  </li>
 243  <li><p><b>AddReplyTo( $address, $name = &#039;&#039; )</b></p>
 244  <p>Add a reply to address</p>
 245  </li>
 246  <li><p><b>AddStringAttachment( $string, $filename, $encoding = &#039;base64&#039;, $type = &#039;application/octent-stream&#039; )</b></p>
 247  <p>Add a file attachment</p>
 248  </li>
 249  <li><p><b>ClearAddresses()</b></p>
 250  <p>Clear all addresses</p>
 251  </li>
 252  <li><p><b>ClearAllRecipients()</b></p>
 253  <p>Clear all recipients</p>
 254  </li>
 255  <li><p><b>ClearAttachments()</b></p>
 256  <p>Clear all attachments</p>
 257  </li>
 258  <li><p><b>ClearBCCs()</b></p>
 259  <p>Clear all BCC addresses</p>
 260  </li>
 261  <li><p><b>ClearCCs()</b></p>
 262  <p>Clear all CC addresses</p>
 263  </li>
 264  <li><p><b>ClearCustomHeaders()</b></p>
 265  <p>Clear all custom headers</p>
 266  </li>
 267  <li><p><b>ClearReplyto()</b></p>
 268  <p>Clear reply to address</p>
 269  </li>
 270  <li><p><b>IsError()</b></p>
 271  <p>Check for an error condition</p>
 272  </li>
 273  <li><p><b>bool IsHTML( $bool )</b></p>
 274  <p>Set the html flag</p>
 275  <p><i>Note</i> possibly this should be a get and set method</p>
 276  </li>
 277  <li><p><b>bool IsMail()</b></p>
 278  <p>Check wether we are using mail</p>
 279  </li>
 280  <li><p><b>bool IsQmail()</b></p>
 281  <p>Check wether we are using qmail</p>
 282  </li>
 283  <li><p><b>IsSendmail()</b></p>
 284  <p>Check wether we are using sendmail</p>
 285  </li>
 286  <li><p><b>IsSMTP()</b></p>
 287  <p>Check wether we are using smtp</p>
 288  </li>
 289  <li><p><b>Send()</b></p>
 290  <p>Send the currently prepared email</p>
 291  </li>
 292  <li><p><b>SetLanguage( $lang_type, $lang_path = &#039;&#039; )</b></p>
 293  <p>Set the current language and <em>(optional)</em> language path</p>
 294  </li>
 295  <li><p><b>SmtpClose()</b></p>
 296  <p>Close the smtp connection</p>
 297  </li>
 298  </ul>
 299  <h3>Support</h3>
 300  <p>This module does not include commercial support. However, there are a number of resources available to help you with it:</p>
 301  <ul>
 302  <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=&quot;http://techcom.dyndns.org&quot;>techcom.dyndns.org</a>.</li>
 303  <li>Additional discussion of this module may also be found in the <a href=&quot;http://forum.cmsmadesimple.org&quot;>CMS Made Simple Forums</a>.</li>
 304  <li>The author, calguy1000, can often be found in the <a href=&quot;irc://irc.freenode.net/#cms&quot;>CMS IRC Channel</a>.</li>
 305  <li>Lastly, you may have some success emailing the author directly.</li>  
 306  </ul>
 307  <p>As per the GPL, this software is provided as-is. Please read the text
 308  of the license for the full disclaimer.</p>
 309  
 310  <h3>Copyright and License</h3>
 311  <p>Copyright &copy; 2005, Robert Campbell <a href=&quot;mailto:calguy1000@hotmail.com&quot;><calguy1000@hotmail.com></a>. All Rights Are Reserved.</p>
 312  <p>This module has been released under the <a href=&quot;http://www.gnu.org/licenses/licenses.html#GPL&quot;>GNU Public License</a>. You must agree to this license before using the module.</p>
 313  ';
 314  ?>


Généré le : Tue Apr 3 18:50:37 2007 par Balluche grâce à PHPXref 0.7