Click here to Skip to main content
15,885,366 members
Articles / Programming Languages / PHP

Bug Submitter Dialog

Rate me:
Please Sign up or sign in to vote.
3.67/5 (5 votes)
28 Apr 2009GPL33 min read 35.5K   411   29  
Dialog that enables user to submit various types of bugs via a webservice
<?php
/**
 * PHPMailer language file.
 * Norwegian Version
 */

$PHPMAILER_LANG = array();

$PHPMAILER_LANG["provide_address"]      = 'Du må ha med minst en' .
                                          'mottager adresse.';
$PHPMAILER_LANG["mailer_not_supported"] = ' mailer er ikke supportert.';
$PHPMAILER_LANG["execute"]              = 'Kunne ikke utføre: ';
$PHPMAILER_LANG["instantiate"]          = 'Kunne ikke instantiate mail funksjonen.';
$PHPMAILER_LANG["authenticate"]         = 'SMTP Feil: Kunne ikke authentisere.';
$PHPMAILER_LANG["from_failed"]          = 'Følgende Fra feilet: ';
$PHPMAILER_LANG["recipients_failed"]    = 'SMTP Feil: Følgende' .
                                          'mottagere feilet: ';
$PHPMAILER_LANG["data_not_accepted"]    = 'SMTP Feil: Data ble ikke akseptert.';
$PHPMAILER_LANG["connect_host"]         = 'SMTP Feil: Kunne ikke koble til SMTP host.';
$PHPMAILER_LANG["file_access"]          = 'Kunne ikke få tilgang til filen: ';
$PHPMAILER_LANG["file_open"]            = 'Fil feil: Kunne ikke åpne filen: ';
$PHPMAILER_LANG["encoding"]             = 'Ukjent encoding: ';
$PHPMAILER_LANG["signing"]              = 'Signing Error: ';

?>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer
Belgium Belgium
I am a free and open source software enthusiast and freelance software developer with multiple years of experience in both web and desktop development. Currently my primarily focus is on MediaWiki and Semantic MediaWiki work. I'm in the all time top 10 MediaWiki comitters and am one of the WikiWorks consultants. You can contact me at jeroendedauw at gmail for development jobs and questions related to my work.

More info can be found on my website [0] and my blog [1]. You can also follow me on twitter [2] and identi.ca [3].

[0] http://www.jeroendedauw.com/
[1] http://blog.bn2vs.com/
[2] https://twitter.com/#!/JeroenDeDauw
[3] http://identi.ca/jeroendedauw

Comments and Discussions