1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-08-07 17:42:53 +03:00

Initial Import in SourceForge

git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1 a1433add-5e2c-0410-b055-b7f2511e0802
This commit is contained in:
Mischa Peters
2007-03-24 07:27:00 +00:00
commit 85dc57beee
152 changed files with 21000 additions and 0 deletions

52
ADDITIONS/README.TXT Normal file
View File

@@ -0,0 +1,52 @@
#
# Postfix Admin ADDITIONS
#
BEFORE YOU START
----------------
**** ALL THESE SCRIPTS ARE CREATED BY THIRD PARTIES ****
**** THEY ARE AS IS, USE AT YOUR OWN RISK! ****
ADDITIONS
---------
In this directory you will find additional scripts that are build by others.
- change_password.tgz
by George Vieira <george at citadelcomputer dot com dot au>
SquirrelMail plugin to change your passwor
- cleanupdirs.pl
by jared bell <jared at beol dot net>
Displays a list of mailboxes that need to be deleted
- mailbox_remover.pl
by Petr Znojemsky
Deletes all unused mailboxes
- mkeveryone.pl
by Joshua Preston
Generate an 'everybody' alias for a domain.
- pfa_maildir_cleanup.pl
by Stephen Fulton <sfulton at esoteric dot ca>
Deletes all unused mailboxes
- postfixadmin-0.3-1.4.tar.gz
by Florian Kimmerl <info at spacekoeln dot de>
The Postfixadmin SquirrelMail plugin let users change their virtual alias,
vacation status/message and password.
- virtualmaildel.php
by George Vieira <george at citadelcomputer dot com dot au>
Deletes all unused mailboxes
- postfixadmin-mailbox-postcreation.sh
- postfixadmin-mailbox-postdeletion.sh
- postfixadmin-domain-postdeletion.sh
by Troels Arvin <troels@arvin.dk>
Examples of scripts relevant to the optional
$CONF['mailbox_postcreation_script'],
$CONF['mailbox_postdeletion_script'] and
$CONF['domain_postdeletion_script'] configuration options.

Binary file not shown.

103
ADDITIONS/cleanupdirs.pl Normal file
View File

@@ -0,0 +1,103 @@
#!/usr/bin/perl -w
################################################################################
#
# cleanupdirs 1.2 by jared bell <jared@beol.net>
#
# display/remove maildir & domains directory tree's not listed in the postfix
# mysql database. currently setup for use with postfixadmin, but can be
# adapted. edit settings where it says 'change settings as needed.' by default
# this program will display a list of directories which need deleted, nothing
# is actually deleted. to change this behavior, look into the command line
# arguments.
#
# command line arguments:
# --delete
# force automatic deletion of directories. instead of displaying a list
# of deleted directories, they will be logged in the specified logfile.
# --print
# display deleted directories as well as log them. only valid when
# '--delete' has been specified.
#
# settings:
# $root_path = "/home/vmail";
# if maildir is '/home/vmail/domain.tld/user' then '/home/vmail' is the
# $root_path. if your maildirs are '/home/vmail/user@domain.tld' then
# this program will need to be modified in order to work right.
# $logfile = "/var/log/removed_maildirs.log";
# the logfile to use when $delete_old_dirs is set to 1
# $db_* = "*";
# sets the host, port, database, user and pass to your mysql server
#
# version history:
# 1.2 - removed uneeded settings. added '--print' command line argument
# 1.1 - added '--delete' command line argument
# 1.0 - initial release
#
################################################################################
use strict;
use DBI;
use File::Path;
use Getopt::Long;
### change settings as needed, see notes above #################################
my $root_path = "/home/vmail";
my $logfile = "/var/log/removed_maildirs.log";
my $db_hostname = "localhost";
my $db_port = "3306";
my $db_database = "postfix";
my $db_username = "someuser";
my $db_password = "somepass";
################################################################################
### begin program ##############################################################
my(@dirs_to_delete, $logfile_open);
my $delete_old_dirs = 0; # do not delete by default, use cmdline to change this
my $print_also = 0; # also print items when deleting, use cmdline to change this
GetOptions ('delete' => \$delete_old_dirs, 'print' => \$print_also);
my $conn_info = "DBI:mysql:database=$db_database;hostname=$db_hostname;port=$db_port";
my $dbh = DBI->connect($conn_info, $db_username, $db_password)
or die $DBI::errstr;
opendir DOMAINDIR, $root_path
or die "Unable to access directory '$root_path' ($!)";
foreach my $domain_dir (sort readdir DOMAINDIR) {
next if $domain_dir =~ /^\./; # skip dotted dirs
my $full_domain_dir = "$root_path/$domain_dir";
opendir USERDIR, $full_domain_dir
or die "Unable to access directory '$full_domain_dir' ($!)";
foreach my $user_dir (sort readdir USERDIR) {
next if $user_dir =~ /^\./; # skip dotted dirs
push @dirs_to_delete, "$full_domain_dir/$user_dir"
if &check_dir("SELECT maildir FROM mailbox WHERE maildir = ?",
"$domain_dir/$user_dir/"); # end slash needed for checkdir
}
push @dirs_to_delete, $full_domain_dir
if &check_dir("SELECT domain FROM domain WHERE domain = ?", $domain_dir);
}
closedir USERDIR;
closedir DOMAINDIR;
$dbh->disconnect;
if (@dirs_to_delete) {
foreach my $to_delete (@dirs_to_delete) {
if ($delete_old_dirs == 1) {
$logfile_open = open LOGFILE, ">> $logfile"
or die "Unable to append logfile '$logfile' ($!)"
unless $logfile_open;
rmtree $to_delete;
print LOGFILE localtime() . " Deleting directory '$to_delete'\n";
print localtime() . " Deleting directory '$to_delete'\n"
if $print_also;
} else {
print localtime() . " Need to delete directory '$to_delete'\n";
}
}
}
close LOGFILE if $logfile_open;
sub check_dir {
my($query, $dir) = @_;
my $sth = $dbh->prepare($query);
my $num_rows = $sth->execute($dir);
$sth->finish;
($num_rows eq "0E0") ? 1 : 0;
}

View File

@@ -0,0 +1,66 @@
#!/usr/bin/perl
#
# by Petr Znojemsky (c) 2004
# Mailbox remover 0.1a 23/10/2004 - the very first version for MySQL
# removes maildirs from disk when they are not found in a database
# Run program and read the $logfile before uncommenting the "rmtree" line!
# All your maildirs or other directories could be accidentally removed.
# Use it at own risk. No warranties!
use DBI;
use File::Path;
##########
# Set these variables according to your configuration
$maildir_path="/var/mail/virtual/";
$logfile="/var/log/mail/removed_maildirs";
# database information
$host="localhost";
$port="3306";
$userid="postfix";
$passwd="postfix";
$db="postfix";
############
$connectionInfo="DBI:mysql:database=$db;$host:$port";
# make connection to database
$dbh = DBI->connect($connectionInfo,$userid,$passwd);
# prepare and execute query
$query = "SELECT username FROM mailbox";
$sth = $dbh->prepare($query);
$sth->execute();
# assign fields to variables
$sth->bind_columns(\$username);
# output computer list to the browser
while($sth->fetch()) {
push(@usernames, $username);
}
$sth->finish();
# disconnect from database
$dbh->disconnect;
# store maildir list to @directories
opendir(DIRHANDLE, $maildir_path) || die "Cannot open dir $maildir_path: $!";
foreach $name (sort readdir(DIRHANDLE))
{
push (@directories, $name);
}
closedir(DIRHANDLE);
# eliminate "." and ".." from the maildir list
($dot, $doubledot, @directories) = @directories;
# compare two arrays and erase maildirs not found in database
foreach $maildir (@directories)
{
if ((grep { $_ eq $maildir} @usernames)==0)
{
# username not found, delete maildir.
# Please read $logfile before uncommenting following line!
# rmtree($maildir_path.$maildir);
open(INFO, ">>$logfile") || die "Cannot write to the logfile: $logfile.";
print INFO localtime()." Maildir ".$maildir_path.$maildir." has been deleted.\n";
close(INFO);
}
}

167
ADDITIONS/mkeveryone.pl Normal file
View File

@@ -0,0 +1,167 @@
#!/usr/bin/perl
#
# Generate an 'everybody' alias for a domain.
#
# Create the file /etc/mkeveryone.conf
# chmod 640 /etc/mkeveryone.conf
# Example of mkeveryone.conf
#
# userid=postfix
# passwd=postfix
# db=postfix
# host=localhost
# port=3306
# domain=domain.tld
# target=everybody@domain.tld
# ignore=vacation@domain.tld
# ignore=spam@domain.tld
# ignore=newsletter@domain.tld
# ignore=root@domain.tld
#
# Save this file in, for example, /usr/local/sbin/mkeveryone.pl
# chmod 750 /usr/local/sbin/mkeveryone.pl
#
# Run the script!
#
use DBI;
use Time::Local;
use POSIX qw(EAGAIN);
use Fcntl;
use IO;
use IO::File;
my $timeNow=time();
my $DATFILE = "/etc/mkeveryone.conf";
my $FILEHANDLE = "";
# database information
my $db="postfix";
my $host="localhost";
my $port="3306";
my $userid="postfix";
my $passwd="postfix";
my $domain="domain.tld";
my $target="everyone@$domain";
my @ignore;
my @dest;
open (FILEHANDLE, $DATFILE);
while ( $LINE = <FILEHANDLE> ) {
if ( length $LINE > 0 ) {
chomp $LINE;
$RETURNCODE = 0;
SWITCH: {
$LINE =~ /^ignore/i and do {
$LINE =~ s/^ignore// && $LINE =~ s/=// && $LINE =~ s/^ //g;
@ignore = (@ignore,$LINE);
};
$LINE =~ /^userid/i and do {
# Userid found.";
$LINE =~ s/^userid// && $LINE =~ s/=// && $LINE =~ s/^ //g;
$userid = $LINE;
};
$LINE =~ /^passwd/i and do {
# Passwd found.";
$LINE =~ s/^passwd// && $LINE =~ s/=// && $LINE =~ s/^ //g;
$passwd = $LINE;
};
$LINE =~ /^db/i and do {
# Database found.";
$LINE =~ s/^db// && $LINE =~ s/=// && $LINE =~ s/^ //g;
$db = $LINE;
};
$LINE =~ /^host/i and do {
# Database host found.";
$LINE =~ s/^host// && $LINE =~ s/=// && $LINE =~ s/^ //g;
$host = $LINE;
};
$LINE =~ /^port/i and do {
# Database host found.";
$LINE =~ s/^port// && $LINE =~ s/=// && $LINE =~ s/^ //g;
$port = $LINE;
};
$LINE =~ /^target/i and do {
# Database host found.";
$LINE =~ s/^target// && $LINE =~ s/=// && $LINE =~ s/^ //g;
$target = $LINE;
};
$LINE =~ /^domain/i and do {
# Database host found.";
$LINE =~ s/^domain// && $LINE =~ s/=// && $LINE =~ s/^ //g;
$domain = $LINE;
};
}
}
}
print "Connecting to database $db on $host:$port...\n\r";
print "Target email address is $target...\n\r";
my $connectionInfo="DBI:mysql:database=$db;$host:$port";
# make connection to database
$dbh = DBI->connect($connectionInfo,$userid,$passwd);
# Delete the old message...prepare and execute query
$query = "SELECT username FROM mailbox WHERE domain='$domain';";
$sth = $dbh->prepare($query);
$sth->execute();
# assign fields to variables
$sth->bind_columns(\$username);
my $ign="false";
while($sth->fetch()) {
$ign = "false";
foreach $ignored ( @ignore ) {
if ( $username eq $ignored ){
$ign = "true";
}
}
if ( $ign eq "false" ) {
@dest = (@dest,$username);
}
}
# Delete the old aliases...prepare and execute query
$query = "DELETE FROM alias WHERE address='$target';";
$sth = $dbh->prepare($query);
$sth->execute();
print "Record deleted from the database.\r\n";
$sth->finish();
$goto = join(",",@dest);
print "$goto\n\r\n\r";
# Insert the new message...prepare and execute query
$query = "INSERT INTO alias (address,goto,domain,created,modified) VALUES ('$target','$goto','$domain',now(),now());";
$sth = $dbh->prepare($query);
$sth->execute();
print "Record added to the database.\r\n";
$sth->finish();
# disconnect from databse
$dbh->disconnect;

View File

@@ -0,0 +1,111 @@
#!/usr/bin/perl
#
##
## pfa_maildir_cleanup.pl
##
## (c) 2004 by Stephen Fulton (sfulton@esoteric.ca)
##
## based on a script by Petr Znojemsky (thanks!)
##
## Simple script to remove maildirs/domains not listed in a MySQL database.
## Set up for use with those using PostfixAdmin, but can be adapted.
##
## Edit the variables between the ##EDIT## to match your setup.
##
## USE AT YOUR OWN RISK. I ASSUME NO RESPONSIBILITY.
##
use DBI;
use File::Path;
##EDIT##
$root_path = "/home/mail";
$logfile = "/var/log/removed_maildirs.log";
$db_host = "localhost";
$db_database = "database";
$db_user = "username";
$db_password = 'password';
##END EDIT##
$connectionInfo = "DBI:mysql:database=$db_database;$db_host:3306";
## Read a list of domain directories in the root path /remote/mail1
opendir(DIRHANDLE, $root_path) || die "Cannot access directory $maildir_path: $!";
my @directories = ();
foreach $directory (sort readdir(DIRHANDLE)) {
push (@directories, $directory);
}
closedir(DIRHANDLE);
## Strip the "." and ".." from the directories array
($dot, $doubledot, @directories) = @directories;
## For each of the domain directories..
foreach $domain_dir (@directories) {
$complete_domain_path = "$root_path/$domain_dir";
## Get a list of user directories within each domain directory...
opendir(DOMAINHANDLE, $complete_domain_path) || die "Cannot access directory $complete_domain_path: $!";
my @user_directories = ();
foreach $dir (sort readdir(DOMAINHANDLE)) {
push(@user_directories, $dir);
}
close(DOMAINHANDLE);
## Now remove any "." or ".." directory entries and construct a domain/maildir variable
## valid for one iteration of loop.
foreach $user_directory (@user_directories) {
if( not($user_directory eq '..') && not($user_directory eq '.') ) {
$short_user_dir = "$domain_dir/$user_directory/";
## Here is where the $short_user_dir is compared against the DB entry.
$dbh = DBI->connect($connectionInfo,$db_user,$db_password);
$user_query = "SELECT maildir FROM mailbox WHERE maildir = '$short_user_dir'";
$sth = $dbh->prepare($user_query);
$rows = $sth->execute();
## If there are no rows that match, then directory is orphaned and can
## be deleted.
if($rows == 0) {
$maildir_path = "$root_path/$short_user_dir";
open(INFO, ">>$logfile") || die "Cannot write to the logfile: $logfile.";
rmtree($maildir_path);
print INFO localtime()." Maildir ".$maildir_path." has been deleted.\n";
(INFO);
}
$sth->finish;
$dbh->disconnect;
}
}
$dbh2 = DBI->connect($connectionInfo,$db_user,$db_password);
$domain_query = "SELECT domain FROM domain WHERE domain = '$domain_dir'";
$sth2 = $dbh2->prepare($domain_query);
$domain_rows = $sth2->execute();
if($domain_rows == 0) {
open(INFO, ">>$logfile") || die "Cannot write to the logfile: $logfile.";
rmtree($complete_domain_path);
print INFO localtime()." Domain directory ".$complete_domain_path." has been deleted.\n";
close(INFO);
}
$sth2->finish;
$dbh2->disconnect;
}

Binary file not shown.

View File

@@ -0,0 +1,62 @@
#!/bin/sh
# Example script for removing a Maildir domain top-level folder
# from a Courier-IMAP virtual mail hierarchy.
# The script only looks at argument 1, assuming that it
# indicates the relative name of a domain, such as
# "somedomain.com". If $basedir/somedomain.com exists, it will
# be removed.
# The script will not actually delete the directory. I moves it
# to a special directory which may once in a while be cleaned up
# by the system administrator.
# This script should be run as the user which owns the maildirs. If
# the script is actually run by the apache user (e.g. through PHP),
# then you could use "sudo" to grant apache the rights to run
# this script as the relevant user.
# Assume this script has been saved as
# /usr/local/bin/postfixadmin-domain-postdeletion.sh and has been
# made executable. Now, an example /etc/sudoers line:
# apache ALL=(courier) NOPASSWD: /usr/local/bin/postfixadmin-domain-postdeletion.sh
# The line states that the apache user may run the script as the
# user "courier" without providing a password.
# Change this to where you keep your virtual mail users' maildirs.
basedir=/var/spool/maildirs
# Change this to where you would like deleted maildirs to reside.
trashbase=/var/spool/deleted-maildirs
if [ `echo $1 | fgrep '..'` ]; then
echo "First argument contained a double-dot sequence; bailing out."
exit 1
fi
if [ ! -e "$trashbase" ]; then
echo "trashbase '$trashbase' does not exist; bailing out."
exit 1
fi
trashdir="${trashbase}/`date +%F_%T`_$1"
domaindir="${basedir}/$1"
if [ ! -e "$domaindir" ]; then
echo "Directory '$domaindir' does not exits; nothing to do."
exit 0;
fi
if [ ! -d "$domaindir" ]; then
echo "'$domaindir' is not a directory; bailing out."
exit 1
fi
if [ -e "$trashdir" ]; then
echo "Directory '$trashdir' already exits; bailing out."
exit 1;
fi
mv $domaindir $trashdir
exit $?

View File

@@ -0,0 +1,63 @@
#!/bin/sh
# Example script for adding a Maildir to a Courier-IMAP virtual mail
# hierarchy.
# The script only looks at argument 3, assuming that it
# indicates the relative name of a maildir, such as
# "somedomain.com/peter/".
# This script should be run as the user which owns the maildirs. If
# the script is actually run by the apache user (e.g. through PHP),
# then you could use "sudo" to grant apache the rights to run
# this script as the relevant user.
# Assume this script has been saved as
# /usr/local/bin/postfixadmin-mailbox-postcreation.sh and has been
# made executable. Now, an example /etc/sudoers line:
# apache ALL=(courier) NOPASSWD: /usr/local/bin/postfixadmin-mailbox-postcreation.sh
# The line states that the apache user may run the script as the
# user "courier" without providing a password.
# Change this to where you keep your virtual mail users' maildirs.
basedir=/var/spool/maildirs
if [ ! -e "$basedir" ]; then
echo "basedir '$basedir' does not exist; bailing out."
exit 1
fi
if [ `echo $3 | fgrep '..'` ]; then
echo "An argument contained a double-dot sequence; bailing out."
exit 1
fi
maildir="${basedir}/$3"
parent=`dirname "$maildir"`
if [ ! -d "$parent" ]; then
if [ -e "$parent" ]; then
echo "Strainge - directory '$parent' exists, but is not a directory."
echo "Bailing out."
exit 1
else
mkdir -p "${parent}"
if [ $? -ne 0 ]; then
echo "mkdir -p '$parent' returned non-zero; bailing out."
exit 1
fi
fi
fi
if [ -e "$maildir" ]; then
echo "Directory '$maildir' already exists! Bailing out"
exit 1
fi
maildirmake "$maildir"
if [ ! -d "$maildir" ]; then
echo "maildirmake didn't produce a directory"
echo "Bailing out."
exit 1
fi
exit 0

View File

@@ -0,0 +1,77 @@
#!/bin/sh
# Example script for removing a Maildir from a Courier-IMAP virtual mail
# hierarchy.
# The script looks at arguments 1 and 2, assuming that they
# indicate username and domain, respectively.
# The script will not actually delete the maildir. I moves it
# to a special directory which may once in a while be cleaned up
# by the system administrator.
# This script should be run as the user which owns the maildirs. If
# the script is actually run by the apache user (e.g. through PHP),
# then you could use "sudo" to grant apache the rights to run
# this script as the relevant user.
# Assume this script has been saved as
# /usr/local/bin/postfixadmin-mailbox-postdeletion.sh and has been
# made executable. Now, an example /etc/sudoers line:
# apache ALL=(courier) NOPASSWD: /usr/local/bin/postfixadmin-mailbox-postdeletion.sh
# The line states that the apache user may run the script as the
# user "courier" without providing a password.
# Change this to where you keep your virtual mail users' maildirs.
basedir=/var/spool/maildirs
# Change this to where you would like deleted maildirs to reside.
trashbase=/var/spool/deleted-maildirs
if [ ! -e "$trashbase" ]; then
echo "trashbase '$trashbase' does not exist; bailing out."
exit 1
fi
if [ `echo $1 | fgrep '..'` ]; then
echo "First argument contained a double-dot sequence; bailing out."
exit 1
fi
if [ `echo $2 | fgrep '..'` ]; then
echo "First argument contained a double-dot sequence; bailing out."
exit 1
fi
subdir=`echo "$1" | sed 's/@.*//'`
maildir="${basedir}/$2/${subdir}"
trashdir="${trashbase}/$2/`date +%F_%T`_${subdir}"
parent=`dirname "$trashdir"`
if [ ! -d "$parent" ]; then
if [ -e "$parent" ]; then
echo "Strainge - directory '$parent' exists, but is not a directory."
echo "Bailing out."
exit 1
else
mkdir -p "$parent"
if [ $? -ne 0 ]; then
echo "mkdir -p '$parent' returned non-zero; bailing out."
exit 1
fi
fi
fi
if [ ! -e "$maildir" ]; then
echo "maildir '$maildir' does not exist; nothing to do."
exit 1
fi
if [ -e "$trashdir" ]; then
echo "trashdir '$trashdir' already exists; bailing out."
exit 1
fi
mv $maildir $trashdir
exit $?

View File

@@ -0,0 +1,185 @@
<?php
//
// Virtual Mail Delete
// by George Vieira <george at citadelcomputer dot com dot au>
//
// You can run this from your crontab with something like
//
// 0 4 * * * * vmail php -q virtualmaildel.php >/dev/null
//
// Setup location of postfixadmin config files. Needed to login to mysql
//
$conf = '/home/httpd/mail/admin/config.inc.php';
//
// Where's the homedir accounts stored. (GET THIS RIGHT OTHERWISE IT THINK NONE EXIST AND DELETES ALL)
//
$homedir = '/home/virtual';
//
// Make sure everything is everything before continuing
//
if ( ! file_exists( $conf ) )
die( "Cannot find config file $conf\n" );
if ( ! is_dir( $homedir ) )
die( "Cannot find home directory for virtual mailboxes in $homedir\n" );
//
// Load mysql authentication from postfixadmin
//
include( $conf );
//
// Recursive Delete Function
//
function deldir($dir)
{
$current_dir = opendir($dir);
while($entryname = readdir($current_dir))
{
if(is_dir("$dir/$entryname") and ($entryname != "." and $entryname!=".."))
{
deldir("${dir}/${entryname}");
}
elseif($entryname != "." and $entryname!="..")
{
unlink("${dir}/${entryname}");
}
}
closedir($current_dir);
@rmdir(${dir});
}
// --- Main Start ---
//
// Get list of directories
//
$fr = opendir( $homedir );
while ( ($domain = readdir($fr)) !== false)
{
//
// Check if it's a dir
//
if ( $domain != "." and $domain != ".." and filetype($homedir .'/'. $domain) == "dir" )
{
//
// Open the (assumed) DOMAIN directory
//
$ff = opendir( $homedir .'/'. $domain );
while ( ($user = readdir($ff)) !== false)
{
//
// Check for directories assuming it's a user account
//
if ( $user!="." and $user!=".." and filetype($homedir .'/'. $domain .'/'. $user) == "dir" )
{
//
// if the dir 'new' exists inside then it's an account
//
if ( file_exists($homedir .'/'. $domain .'/'. $user .'/'. "new") )
{
$dir[$domain][$user] = "";
}
else
{
//
// Alert that the dir doesn't have a 'new' dir, possibly not an account. Leave it.
//
echo "UNKNOWN : " . $homedir ."/". $domain ."/". $user ."/new NOT FOUND. Possibly not an account. Leaving untouched\n";
}
}
}
}
}
//
// OK, got an array of accounts from the dir, Now connect to the DB and check them
//
$conx = mysql_connect( $CONF['database_host'],$CONF['database_user'],$CONF['database_password'] );
//
// Is there a problem connecting?
//
if ( $conx != false )
{
//
// Select the database
//
mysql_select_db( $CONF['database_name'] , $conx) or die ("Can't access database postfix : " . mysql_error());
//
// Select all mailboxes to verify against dirs listed in array
//
$query = "SELECT * FROM mailbox";
$result = mysql_query( $query );
//
// Query the mailbox table
//
if ( $result != false )
{
//
// Fetch the list of results
//
while ( $row = mysql_fetch_assoc( $result ) )
{
//
// Pull apart the maildir field, needed to figure out the directory structure to compare
//
$strip = explode("/",$row['maildir']);
//
// Unset the array if it exists. This stops it being erased later.
//
unset( $dir[ $strip[0] ][ $strip[1] ] );
}
//
// If there are results. unset the domain too.
//
if ( count($dir[$strip[0]])==0 and mysql_num_rows($result)>0 )
unset( $dir[$strip[0]] );
}
else
die( "Failed SELECT in mailboxes\n" );
}
else
die( 'Cannot connect to the database!\n' );
//
// OK, time to clean up. All known users/domains have been removed from the list.
//
//
// If the array still exists (incase nothing there)
//
if ( is_array($dir) )
{
//
// Go through each dir
//
foreach ( $dir as $key => $value )
{
//
// Is this a user array?
//
if ( is_array( $value) )
{
//
// Go through and nuke the folders
//
foreach ( $value as $user => $value2 )
{
//
// Nuke.. need any more explanations?
//
echo "REMOVING : " . $homedir."/".$key."/".$user."\n" ;
deldir( $homedir."/".$key."/".$user ) ;
}
}
}
}
//
// And we are outta here....
//
echo "Cleanup process completed\n";
?>

264
CHANGELOG.TXT Normal file
View File

@@ -0,0 +1,264 @@
#
# Postfix Admin
# by Mischa Peters <mischa at high5 dot net>
# Copyright (c) 2002 - 2005 High5!
# Licensed under GPL for more info check GPL-LICENSE.TXT
#
Version 2.1.1 -- TBD
--------------------
- Added: Do not store local copy when forward mail. (Mihau) [24]
- Added: Virtual Vacation for PostgreSQL. (Tarvin)
- Added: Virtual Vacation 3.2 (Thanx David)
- Added: SUBJECT tag for Virtual Vacation.
- Added: Dovecot setup document for Postfix Admin. (Thanx Massimo)
- Added: SquirrelMail plugin to change_password.
- Changed: Starting to merge /admin in root. (Mihau)
- Changed: Moved some TXT files to DOCUMENTS.
- Changed: Updated tw.lang. (Thanx Bruce)
- Fixed: Usage of mysql_real_escape_string(). (Mihau)
- Fixed: Calculating of quotas. (Mihau)
- Fixed: Password generation when creating a new account. (Mihau)
- Fixed: PostgreSQL patches. (Tarvin)
- Fixed: Adding of multiple aliases. (Mihau)
- Fixed: CSS Menu width. (Mihau)
- Fixed: Overview when upgrading from 2.0.4. (Mihau)
- Fixed: smtp_mail() to wait for response from server.
- Fixed: pacrypt() so system works properly. (Thanx Npaufler)
- Fixed: quoting an email address when sending mail in vacation.pl. (Thanx Marc)
- Fixed: vacation.pl has a clean exit when it encounters an error. (Thanx Brian)
- Fixed: descriptions for quota={-1|0} in admin section (Mihau)
Version 2.1.0 -- 2005/01/07
---------------------------
- Added: Traditional Chinese language. (Thanx Bruce)
- Added: Traditional Bulgarian language. (Thanx Plamen)
- Added: Macedonian language. (Thanx Damjan)
- Added: Estonian language. (Thanx Peeter)
- Added: Slovenian language. (Thanx Nejc)
- Added: Check for update link in footer.
- Added: Additional language strings. Check LANGUAGE.TXT
- Added: Transport support. (read postfix transport for more information)
- Added: Additional language string for transport support.
- Added: MySQL 4.1 support.
- Added: PostgreSQL support. (Big Thanx WhiteFox!)
- Added: Setup Checker script. (Thanx Fenrir)
- Added: Database prefix. (Thanx Decramy)
- Added: Template tags. (Thanx Nelson)
- Added: admin/domain/alias/mailbox in delete dialog box.
- Added: $CONF['postfix_admin_url'] variable.
- Added: $CONF['postfix_admin_path'] variable.
- Added: $CONF['vacation_domain'] variable.
- Added: $CONF['welcome_text'] variable.
- Added: $CONF['special_alias_control'] variable. (Thanx Mihau)
- Added: Virtual Vacation 3.1 (Thanx David)
- Added: ADDITIONS directory with third party scripts and plugins.
- Added: Search function for aliases and mailboxes.
- Changed: Postfix Admin has now it's own license.
- Changed: New menu and color scheme. (Thanx Nelson)
- Changed: Disable number and unlimited number for aliases/mailboxes/quota.
- Changed: Virtual Vacation to have it's own transport. (Big Thanx Npaufler!)
- Changed: Removed the welcome text for a new mailbox from the language files.
- Changed: backup.php to be a more secure. (Thanx John)
- Fixed: Cleaned up stylesheet.
- Fixed: Default quota multiplier.
- Fixed: All POST/GET strings are escaped.
- Fixed: Corrected smtp_mail() to wait for result. (Thanx Patrice)
- Fixed: Pagination with alias_control switched on.
- Fixed: Swedish language. (Thanx Bjorne)
- Fixed: Polish language. (Thanx Piotr)
- Fixed: Minor Virtual Vacation bugs. (Thanx David)
- Fixed: check_quota().
- Fixed: Minor encode_header() issue. (Thanx Matthew)
- Fixed: edit-alias.php when running with magic_quotes_gpc = off
Version 2.0.5 -- 2004/08/21
---------------------------
- Added: Chinese language. (Thanx Matthew)
- Added: Catalan language. (Thanx Jaume)
- Added: Czech language. (Thanx Jakub)
- Added: Dynamic language detection.
- Added: Header in header.tpl to set charset header from language file.
- Added: More subroutines and alias checking for Vacation. (Thanx David)
- Added: Domain pass-through with certain pages.
- Added: Backup MX option for domain.
- Added: Log contains IP address of admin.
- Added: Pagination for alias/mailbox listing.
- Added: 2 additional language strings to support Backup MX.
- Added: Support for motd.txt (Domain Admins only).
- Added: Support for motd-admin.txt (Site Admins only).
- Added: Support for motd-users.txt (Users only).
- Added: Optional hostname for vacation.
- Added: generate_password() to generating random passwords for mailboxes.
- Changed: dk -> da, se -> sv, no-nn -> nn
- Changed: All email addresses are now converted to lowercase, strtolower().
- Changed: Moved onMouseOver to the CSS stylesheet.
- Changed: Moved font color to the CSS styleheet.
- Changed: PHP mail() is replaced by an internal function, smtp_mail().
- Changed: mysql_fetch_array() replaced with internal function db_array().
- Changed: mysql_fetch_assoc() replaced with internal function db_assoc().
- Changed: mysql_fetch_row() replaced with internal function db_row().
- Changed: Quota multiplier is now a configuration option.
- Fixed: Login didn't check for active flag.
- Fixed: Minor html table errors.
- Fixed: Row count by using COUNT(*).
- Fixed: Locked down subdirectories.
- Fixed: Create admin properly populates the domain_admins table.
- Fixed: Cleaned up stylesheet.css.
- Fixed: Delete mailbox properly removes vacation entries.
Version 2.0.4 -- 2004/02/26
----------------------------
- Added: Euskara language. (Thanx Julen)
- Added: Hungarian language. (Thanx Christian)
- Added: Icelandic language. (Thanx Gestur)
- Added: Italian language. (Thanx Stucchi)
- Added: Norwegian - Nynorsk language. (Thanx Paul)
- Added: Polish language. (Thanx Jarek)
- Added: Portuguese - Brazil language. (Thanx Roberto)
- Added: Rusian language. (Thanx Paul)
- Added: Turkish language (Thanx Onuryalazi)
- Added: Encode a string according to RFC 1522 for use in headers if it
contains 8-bit characters. (Thanx Evgeniy)
- Added: One click active change of mailbox/domain/admin. (Thanx Marcin)
- Changed: Header in header.tpl to read charset header from language file.
- Fixed: Some form values are now parsed through htmlspecialchars().
(Thanx Marcin)
- Fixed: admin/delete.php ignored $CONF['vacation'].
- Fixed: More minor fixes to Virtual Vacation.
Version 2.0.3 -- 2004/01/14
----------------------------
- Added: Site Admin email address.
- Added: Danish language. (Thanx Lars)
- Added: Dutch language. (Thanx Mourik)
- Added: Faroese language. (Thanx Danial)
- Added: Finnish language. (Thanx Palo)
- Added: French language. (Thanx Kuthz)
- Added: Swedish language. (Thanx Slite)
- Added: Ignoring of MAILER-DAEMON type emails for Vacation.
- Fixed: Minor issues regarding mail().
- Fixed: Minor issues regarding crypt().
- Fixed: Strip issue of email address for Vacation.
Version 2.0.2 -- 2004/01/06
----------------------------
- Added: German language. (Thanx Tobias)
- Added: Spanish language. (Thanx Alvaro)
- Fixed: The body was not included using sendmail.php.
- Fixed: Undefined variables.
- Fixed: Minor HTML cleanup.
Version 2.0.1 -- 2004/01/04
----------------------------
- Fixed: The language variable caused a problem on some systems.
Version 2.0.0 -- 2004/01/03
----------------------------
- Added: The ability for one domain admin to maintain multiple domains.
- Added: Domain to domain forwarding.
- Added: Mailboxes can now be activated or deactivated.
- Added: Configurable welcome message for new mailboxes.
- Added: Optional sending of welcome message.
- Added: Create alias "To" defaults to current domain.
- Added: Logging of admin / user actions.
- Added: Limit for aliases and/or mailboxes per domain.
- Added: Disable aliases and/or mailboxes per domain.
- Added: Max quota per mailbox per domain.
- Added: Multi-Language support.
- Added: Statistics overview for all domains.
- Added: User .forwarding for mailbox users.
- Added: Logo for Postfix Admin (Thanx Andrew).
- Added: Extra MySQL debugging capabilities.
- Added: Clear text password support.
- Added: PHP crypt() support.
- Changed: Separated logic and SQL from content.
- Changed: config.inc.php doesn't point to example.com anymore.
- Changed: Virtual Vacation no longer requires procmail.
- Changed: Complete re-write.
Version 1.5.4 -- 2003/06/16
----------------------------
- Added: Option for "Back to".
- Added: Option for Vacation module.
- Added: Table declaration for the use of Quota in the INSTALL.TXT.
This requires an additional local delivery agent.
Quotas are not supported by Postfix!
- Changed: The word "View" to "List".
Version 1.5.3 -- 2003/06/06
----------------------------
- Fixed: Even more minor bugs in regards to declaration of variables.
(Thanx Aquilante and Kyle_m)
Version 1.5.2 -- 2003/06/05
----------------------------
- Fixed: Minor bugs in regards to declaration of variables.
Version 1.5.1 -- 2003/06/04
----------------------------
- Added: Optional mailbox per domain directory structure. (Thanx Jim)
- Added: Option to completely control the stored aliases. (Thanx Alex)
- Changed: config.inc.php is renamed to config.inc.php.sample. (Thanx Alex)
- Fixed: $PHP_SELF in config.inc.php and my_lib.php. (Thanx Jim)
Version 1.5.0 -- 2003/05/28
----------------------------
- Added: Support for "Back to Main Site"
- Added: config.inc.php as the main configuration file.
- Added: Drop down box for domain selection when adding a new admin.
- Added: Resend of test email to newly created mailbox.
- Added: Mailbox and Aliases count for domainview.
- Added: Change description of domain without deleting the complete
domain.
- Added: Change name of mailbox user without deleting the mailbox.
- Added: Expire headers for unnecessary reloads. (Thanx Alex)
- Fixed: Code clean up.
- Fixed: Minor bugs and cosmetic fixes.
- Fixed: Modified check_string() to check numbers and returns false if not
matched. (Thanx btaber)
- Fixed: Correct session handling in login.php (Thanx Yen-Wei Liu)
- Fixed: Correct deletion of RFC822 email addresses. (Thanx Yen-Wei Liu)
- Removed: Completely removed the site_lib.php.
- Removed: my_lib.php from the admin directory.
- Removed: Symlink to index.php.
Version 1.4.0 -- 2003/04/07
----------------------------
- Added: When deleting a domain, all aliases and mailboxes for that domain
are also deleted from the database.
- Added: Add standard aliases for every domain that is created.
These aliases can point to the main "local" administrator.
The aliases are configured in the config.php in the admin directory.
- Changed: The layout of my_lib.php and site_lib.php have been changed.
- Changed: Modifying an alias is now done with TEXTAREA for more
flexibility.
- Fixed: Minor bugs and cosmetic fixes.
Version 1.3.8a -- 2003/03/31
----------------------------
- Fixed: After deletion of a domain it would not return to the correct page.
Version 1.3.8 -- 2003/03/25
----------------------------
- Added: Admin password change. No longer needed to delete and re-enter
the admin user for a specific domain.
Version 1.3.7 -- 2002/12/24
----------------------------
- Initial public release of Postfix Admin.

146
DATABASE_MYSQL.TXT Normal file
View File

@@ -0,0 +1,146 @@
#
# Postfix Admin
# by Mischa Peters <mischa at high5 dot net>
# Copyright (c) 2002 - 2005 High5!
# Licensed under GPL for more info check GPL-LICENSE.TXT
#
# This is the complete MySQL database structure for Postfix Admin.
# If you are installing from scratch you can use this file otherwise you
# need to use the TABLE_CHANGES.TXT or TABLE_BACKUP_MX.TXT that comes with Postfix Admin.
# You can find these in DOCUMENTS/
#
# There are 2 entries for a database user in the file.
# One you can use for Postfix and one for Postfix Admin.
#
# If you run this file twice (2x) you will get an error on the user creation in MySQL.
# To go around this you can either comment the lines below "USE MySQL" until "USE postfix".
# Or you can remove the users from the database and run it again.
#
# You can create the database from the shell with:
#
# mysql -u root [-p] < DATABASE_MYSQL.TXT
#
# Postfix / MySQL
#
USE mysql;
# Postfix user & password
INSERT INTO user (Host, User, Password) VALUES ('localhost','postfix',password('postfix'));
INSERT INTO db (Host, Db, User, Select_priv) VALUES ('localhost','postfix','postfix','Y');
# Postfix Admin user & password
INSERT INTO user (Host, User, Password) VALUES ('localhost','postfixadmin',password('postfixadmin'));
INSERT INTO db (Host, Db, User, Select_priv, Insert_priv, Update_priv, Delete_priv) VALUES ('localhost', 'postfix', 'postfixadmin', 'Y', 'Y', 'Y', 'Y');
FLUSH PRIVILEGES;
GRANT USAGE ON postfix.* TO postfix@localhost;
GRANT SELECT, INSERT, DELETE, UPDATE ON postfix.* TO postfix@localhost;
GRANT USAGE ON postfix.* TO postfixadmin@localhost;
GRANT SELECT, INSERT, DELETE, UPDATE ON postfix.* TO postfixadmin@localhost;
CREATE DATABASE postfix;
USE postfix;
#
# Table structure for table admin
#
CREATE TABLE `admin` (
`username` varchar(255) NOT NULL default '',
`password` varchar(255) NOT NULL default '',
`created` datetime NOT NULL default '0000-00-00 00:00:00',
`modified` datetime NOT NULL default '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL default '1',
PRIMARY KEY (`username`),
KEY username (`username`)
) TYPE=MyISAM COMMENT='Postfix Admin - Virtual Admins';
#
# Table structure for table alias
#
CREATE TABLE `alias` (
`address` varchar(255) NOT NULL default '',
`goto` text NOT NULL,
`domain` varchar(255) NOT NULL default '',
`created` datetime NOT NULL default '0000-00-00 00:00:00',
`modified` datetime NOT NULL default '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL default '1',
PRIMARY KEY (`address`),
KEY address (`address`)
) TYPE=MyISAM COMMENT='Postfix Admin - Virtual Aliases';
#
# Table structure for table domain
#
CREATE TABLE `domain` (
`domain` varchar(255) NOT NULL default '',
`description` varchar(255) NOT NULL default '',
`aliases` int(10) NOT NULL default '0',
`mailboxes` int(10) NOT NULL default '0',
`maxquota` int(10) NOT NULL default '0',
`quota` int(10) NOT NULL default '0',
`transport` varchar(255) default NULL,
`backupmx` tinyint(1) NOT NULL default '0',
`created` datetime NOT NULL default '0000-00-00 00:00:00',
`modified` datetime NOT NULL default '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL default '1',
PRIMARY KEY (`domain`),
KEY domain (`domain`)
) TYPE=MyISAM COMMENT='Postfix Admin - Virtual Domains';
#
# Table structure for table domain_admins
#
CREATE TABLE `domain_admins` (
`username` varchar(255) NOT NULL default '',
`domain` varchar(255) NOT NULL default '',
`created` datetime NOT NULL default '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL default '1',
KEY username (`username`)
) TYPE=MyISAM COMMENT='Postfix Admin - Domain Admins';
#
# Table structure for table log
#
CREATE TABLE `log` (
`timestamp` datetime NOT NULL default '0000-00-00 00:00:00',
`username` varchar(255) NOT NULL default '',
`domain` varchar(255) NOT NULL default '',
`action` varchar(255) NOT NULL default '',
`data` varchar(255) NOT NULL default '',
KEY timestamp (`timestamp`)
) TYPE=MyISAM COMMENT='Postfix Admin - Log';
#
# Table structure for table mailbox
#
CREATE TABLE `mailbox` (
`username` varchar(255) NOT NULL default '',
`password` varchar(255) NOT NULL default '',
`name` varchar(255) NOT NULL default '',
`maildir` varchar(255) NOT NULL default '',
`quota` int(10) NOT NULL default '0',
`domain` varchar(255) NOT NULL default '',
`created` datetime NOT NULL default '0000-00-00 00:00:00',
`modified` datetime NOT NULL default '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL default '1',
PRIMARY KEY (`username`),
KEY username (`username`)
) TYPE=MyISAM COMMENT='Postfix Admin - Virtual Mailboxes';
#
# Table structure for table vacation
#
CREATE TABLE `vacation` (
`email` varchar(255) NOT NULL default '',
`subject` varchar(255) NOT NULL default '',
`body` text NOT NULL default '',
`cache` text NOT NULL default '',
`domain` varchar(255) NOT NULL default '',
`created` datetime NOT NULL default '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL default '1',
PRIMARY KEY (`email`),
KEY email (`email`)
) TYPE=MyISAM COMMENT='Postfix Admin - Virtual Vacation';
# superadmin user & password (login: admin@domain.tld, password: admin)
INSERT INTO domain_admins (username, domain, active) VALUES ('admin@domain.tld','ALL','1');
INSERT INTO admin (username, password, active) VALUES ('admin@domain.tld','$1$0fec9189$bgI6ncWrldPOsXnkUBIjl1','1');

162
DATABASE_PGSQL.TXT Normal file
View File

@@ -0,0 +1,162 @@
-- Postfix Admin Release 2.x --
----------------------------------------------------------
--
-- Copyright (c) 2002 - 2005 High5!
-- Created by: Mischa Peters <mischa at high5 dot net>
--
-- This is the complete database structure for Postfix Admin.
-- If you are installing from scratch you can use this file otherwise you
-- need to use the TABLE_CHANGES.TXT or TABLE_BACKUP_MX.TXT that comes with Postfix Admin.
-- You can find these in DOCUMENTS/
--
-- There are 2 entries for a database user in the file.
-- One you can use for Postfix and one for Postfix Admin.
--
-- You can create the database from the shell with:
-- createuser -P postfix
-- createuser -P postfixadmin
-- createuser -P vacation
-- createdb postfix
-- psql postfix
-- postfix=# \i postfix.sql
-- postfix=# \q
-- exit
--
-- Postfix / PgSQL
--
DROP TABLE admin,alias,domain,domain_admins,log,mailbox,vacation,vacation_notification CASCADE;
--
--
-- Table structure for table domain
--
CREATE TABLE domain (
domain character varying(255) NOT NULL,
description character varying(255) NOT NULL default '',
aliases integer NOT NULL default 0,
mailboxes integer NOT NULL default 0,
maxquota integer NOT NULL default 0,
quota integer NOT NULL default 0,
transport character varying(255) default NULL,
backupmx boolean NOT NULL default false,
created timestamp with time zone default now(),
modified timestamp with time zone default now(),
active boolean NOT NULL default true,
Constraint "domain_key" Primary Key ("domain")
);
CREATE INDEX domain_domain_active ON domain(domain,active);
COMMENT ON TABLE domain IS 'Postfix Admin - Virtual Domains';
--
-- Table structure for table admin
--
CREATE TABLE "admin" (
"username" character varying(255) NOT NULL,
"password" character varying(255) NOT NULL default '',
"created" timestamp with time zone default now(),
"modified" timestamp with time zone default now(),
"active" boolean NOT NULL default true,
Constraint "admin_key" Primary Key ("username")
);
COMMENT ON TABLE admin IS 'Postfix Admin - Virtual Admins';
--
-- Table structure for table alias
--
CREATE TABLE alias (
address character varying(255) NOT NULL,
goto text NOT NULL,
domain character varying(255) NOT NULL REFERENCES domain,
created timestamp with time zone default now(),
modified timestamp with time zone default now(),
active boolean NOT NULL default true,
Constraint "alias_key" Primary Key ("address")
);
CREATE INDEX alias_address_active ON alias(address,active);
COMMENT ON TABLE alias IS 'Postfix Admin - Virtual Aliases';
--
-- Table structure for table domain_admins
--
CREATE TABLE domain_admins (
username character varying(255) NOT NULL,
domain character varying(255) NOT NULL REFERENCES domain,
created timestamp with time zone default now(),
active boolean NOT NULL default true
);
COMMENT ON TABLE domain_admins IS 'Postfix Admin - Domain Admins';
--
-- Table structure for table log
--
CREATE TABLE log (
timestamp timestamp with time zone default now(),
username character varying(255) NOT NULL default '',
domain character varying(255) NOT NULL default '',
action character varying(255) NOT NULL default '',
data text NOT NULL default ''
);
COMMENT ON TABLE log IS 'Postfix Admin - Log';
--
-- Table structure for table mailbox
--
CREATE TABLE mailbox (
username character varying(255) NOT NULL,
password character varying(255) NOT NULL default '',
name character varying(255) NOT NULL default '',
maildir character varying(255) NOT NULL default '',
quota integer NOT NULL default 0,
domain character varying(255) NOT NULL REFERENCES domain,
created timestamp with time zone default now(),
modified timestamp with time zone default now(),
active boolean NOT NULL default true,
Constraint "mailbox_key" Primary Key ("username")
);
CREATE INDEX mailbox_username_active ON mailbox(username,active);
COMMENT ON TABLE mailbox IS 'Postfix Admin - Virtual Mailboxes';
CREATE TABLE vacation (
email character varying(255) PRIMARY KEY,
subject character varying(255) NOT NULL DEFAULT '',
body text NOT NULL DEFAULT '',
cache text NOT NULL DEFAULT '',
"domain" character varying(255) NOT NULL REFERENCES "domain",
created timestamp with time zone DEFAULT now(),
active boolean DEFAULT true NOT NULL
);
CREATE INDEX vacation_email_active ON vacation(email,active);
CREATE TABLE vacation_notification (
on_vacation character varying(255) NOT NULL REFERENCES vacation(email) ON DELETE CASCADE,
notified character varying(255) NOT NULL,
notified_at timestamp with time zone NOT NULL DEFAULT now(),
CONSTRAINT vacation_notification_pkey primary key(on_vacation,notified)
);
-- Note: It's important the the primary key constraint on vacation_notification
-- be given a name which includes the '_pkey' substring (default PostgreSQL naming
-- for primary keys). The vacation-script looks for this substring to
-- distinguish between an acceptable and non-acceptable error.
GRANT
SELECT,INSERT,UPDATE,DELETE
ON
admin,
alias,
domain,
domain_admins,
log,
mailbox,
vacation
TO postfixadmin;
GRANT SELECT ON alias,domain,mailbox TO postfix;
GRANT SELECT ON vacation TO vacation;
GRANT SELECT,INSERT,DELETE ON vacation_notification TO vacation;
-- superadmin user & password (login: admin@domain.tld, password: admin)
INSERT INTO domain (domain) VALUES ('ALL');
INSERT INTO domain_admins (username, domain, active) VALUES ('admin@domain.tld','ALL','1');
INSERT INTO admin (username, password, active) VALUES ('admin@domain.tld','$1$0fec9189$bgI6ncWrldPOsXnkUBIjl1','1');

49
DOCUMENTS/BACKUP_MX.TXT Normal file
View File

@@ -0,0 +1,49 @@
#
# Postfix Admin
# by Mischa Peters <mischa at high5 dot net>
# Copyright (c) 2002 - 2005 High5!
# Licensed under GPL for more info check GPL-LICENSE.TXT
#
REQUIRED!!
----------
- You are using Postfix 2.0 or higher.
- You are using Apache 1.3.27 / Lighttpd 1.3.15 or higher.
- You are using PHP 4.1 or higher.
- You are using MySQL 3.23 or higher.
READ THIS FIRST!
----------------
When this is an upgrade from Postfix Admin 1.5.4 please read UPGRADE.TXT!!
When you are upgrading from 2.0.x please read DOCUMENTS/TABLE_BACKUP_MX.TXT
More information is available on http://high5.net/howto/
1. Modify main.cf
-----------------
In order for Postfix to use MySQL for relay_domains add the following
to your main.cf
relay_domains = proxy:mysql:/usr/local/etc/postfix/mysql_relay_domains_maps.cf
2. mysql_relay_domains_maps.cf
------------------------------
You will need to put this into a text file for postfix to pickup.
user = postfix
password = postfix
hosts = localhost
dbname = postfix
table = domain
select_field = domain
where_field = domain
additional_conditions = and backupmx = '1'
3. Restart Postfix
-------------------
When you are done make sure to restart Postfix so the changes take effect.

52
DOCUMENTS/DOVECOT.TXT Normal file
View File

@@ -0,0 +1,52 @@
#
# Dovecot configuration for Postfix Admin
# Written by: Massimo <AndyCapp> Danieli
#
1. Dovecot setup
-----------------
dovecot.conf relevant part for postfixadmin setup
Please refer to Dovecot documentation for complete information.
default_mail_env = maildir:/usr/local/virtual/%u/
# auth_userdb specifies maildir location and user/group ID to use
auth_userdb = mysql /etc/dovecot/dovecot-mysql.conf
# auth_passdb specifies user passwords
auth_passdb = mysql /etc/dovecot/dovecot-mysql.conf
# Valid UID range for users, defaults to 500 and above.
first_valid_uid = 1001 # Change this to your postifx UID
2. Dovecot mysql setup
----------------------
Below you'll find the relevant part of dovecot-mysql.conf file regarding our setup
Things you may need to change are db_password, uid and gid
db_host = localhost
db_port = 3306
# Default sock for Debian sarge
db_unix_socket = /var/run/mysqld/mysqld.sock
db = postfix
db_user = postfix
db_passwd = postfix
db_client_flags = 0
# Default password scheme.
default_pass_scheme = PLAIN-MD5
# Query to retrieve password.
password_query = SELECT password FROM mailbox WHERE username = '%u'
# Query to retrieve user information.
user_query = SELECT maildir, 1001 AS uid, 1001 AS gid FROM mailbox WHERE username = '%u'
NB The GID and UID are for postfix user and group ID, NOT MySQL user and group ID.

46
DOCUMENTS/LANGUAGE.TXT Normal file
View File

@@ -0,0 +1,46 @@
#
# Postfix Admin
# by Mischa Peters <mischa at high5 dot net>
# Copyright (c) 2002 - 2005 High5!
# Licensed under GPL for more info check GPL-LICENSE.TXT
#
READ THIS FIRST!
----------------
*** Unlimited and disable value have been changed ***
If you are using any other language then english, please make sure that:
-1 means disable
0 means unlimited
Additional Language Strings for Postfix Admin 2.1.0
---------------------------------------------------
$PALANG['check_update'] = 'Check for update';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';

View File

@@ -0,0 +1,19 @@
#
# Postfix Admin
# by Mischa Peters <mischa at high5 dot net>
# Copyright (c) 2002 - 2005 High5!
# Licensed under GPL for more info check GPL-LICENSE.TXT
#
# mysql -u root [-p] < DOCUMENTS/TABLE_BACKUP_MX.TXT
#
# Table structure for table domain_admins
#
USE postfix;
#
# Modify table structure for table domain
#
ALTER TABLE domain ADD transport VARCHAR(255) AFTER maxquota;
ALTER TABLE domain ADD backupmx TINYINT(1) DEFAULT '0' NOT NULL AFTER transport;

104
DOCUMENTS/TABLE_CHANGES.TXT Normal file
View File

@@ -0,0 +1,104 @@
#
# Postfix Admin
# by Mischa Peters <mischa at high5 dot net>
# Copyright (c) 2002 - 2005 High5!
# Licensed under GPL for more info check GPL-LICENSE.TXT
#
# mysql -u root [-p] < TABLE_CHANGES.TXT
#
# Table structure for table domain_admins
#
USE postfix;
CREATE TABLE IF NOT EXISTS domain_admins (
username varchar(255) NOT NULL default '',
domain varchar(255) NOT NULL default '',
created datetime NOT NULL default '0000-00-00 00:00:00',
active tinyint(1) NOT NULL default '1',
KEY username (username)
) TYPE=MyISAM COMMENT='Postfix Admin - Domain Admins';
#
# Table structure for table log
#
CREATE TABLE IF NOT EXISTS log (
timestamp datetime NOT NULL default '0000-00-00 00:00:00',
username varchar(255) NOT NULL default '',
domain varchar(255) NOT NULL default '',
action varchar(255) NOT NULL default '',
data varchar(255) NOT NULL default '',
KEY timestamp (timestamp)
) TYPE=MyISAM COMMENT='Postfix Admin - Log';
#
# Table structure for table vacation
#
CREATE TABLE IF NOT EXISTS vacation (
email varchar(255) NOT NULL default '',
subject varchar(255) NOT NULL default '',
body text NOT NULL,
cache text NOT NULL,
domain varchar(255) NOT NULL default '',
created datetime NOT NULL default '0000-00-00 00:00:00',
active tinyint(1) NOT NULL default '1',
PRIMARY KEY (email),
KEY email (email)
) TYPE=MyISAM COMMENT='Postfix Admin - Virtual Vacation';
#
# Modify table structure for table admin
#
ALTER TABLE admin CHANGE create_date created DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL;
ALTER TABLE admin CHANGE change_date modified DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL;
ALTER TABLE admin ADD INDEX (username);
#
# Modify table structure for table alias
#
ALTER TABLE alias CHANGE create_date created DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL;
ALTER TABLE alias CHANGE change_date modified DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL;
ALTER TABLE alias ADD INDEX (address);
#
# Modify table structure for table domain
#
ALTER TABLE domain CHANGE create_date created DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL;
ALTER TABLE domain CHANGE change_date modified DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL;
ALTER TABLE domain ADD aliases INT(10) DEFAULT '-1' NOT NULL AFTER description;
ALTER TABLE domain ADD mailboxes INT(10) DEFAULT '-1' NOT NULL AFTER aliases;
ALTER TABLE domain ADD maxquota INT(10) DEFAULT '-1' NOT NULL AFTER mailboxes;
ALTER TABLE domain ADD transport VARCHAR(255) AFTER maxquota;
ALTER TABLE domain ADD backupmx TINYINT(1) DEFAULT '0' NOT NULL AFTER transport;
ALTER TABLE domain ADD INDEX (domain);
#
# Modify table structure for table mailbox
#
ALTER TABLE mailbox CHANGE create_date created DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL;
ALTER TABLE mailbox CHANGE change_date modified DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL;
ALTER TABLE mailbox ADD quota INT(10) DEFAULT '-1' NOT NULL AFTER maildir;
ALTER TABLE mailbox ADD INDEX (username);
#
# Modify table structure for table vacation
#
ALTER TABLE vacation ADD domain VARCHAR(255) DEFAULT '' NOT NULL AFTER cache;
ALTER TABLE vacation ADD created DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL AFTER domain;
ALTER TABLE vacation ADD active TINYINT(1) DEFAULT '1' NOT NULL AFTER created;
ALTER TABLE vacation DROP PRIMARY KEY, ADD PRIMARY KEY(email);
#
# Dumping data for table domain_admins
#
INSERT INTO domain_admins (username,domain,created) SELECT admin.username,admin.domain,domain.created FROM admin LEFT JOIN domain ON domain.domain=admin.domain;
#
# Modify data for table vacation
#
UPDATE vacation SET domain=SUBSTRING_INDEX(email, '@', -1) WHERE email=email;
#
# Modify table structure for table domain
#
ALTER TABLE admin DROP domain;

79
DOCUMENTS/UPGRADE.TXT Normal file
View File

@@ -0,0 +1,79 @@
#
# Postfix Admin
# by Mischa Peters <mischa at high5 dot net>
# Copyright (c) 2002 - 2005 High5!
# Licensed under GPL for more info check GPL-LICENSE.TXT
#
REQUIRED!!
----------
- You are using Postfix 2.0 or higher.
- You are using Apache 1.3.27 / Lighttpd 1.3.15 or higher.
- You are using PHP 4.1 or higher.
- You are using MySQL 3.23 or higher.
READ THIS FIRST!
----------------
It's recommened that you install Postfix Admin in a new folder and not
on-top of the old install!!
When you are upgrading from Postfix Admin 1.5x (or older), make sure you
backup your database before you run the DOCUMENTS/TABLE_CHANGES.TXT on your database.
When you are upgrading from Postfix Admin 2.0.x, please read the DOCUMENTS/BACKUP_MX.TXT.
1. Backup the Database
----------------------
When you install from a previous version make sure you backup your database
first. There are a lot of changes in the database structure since Postfix Admin
1.5.4.
$ mysqldump -a -u root -p > /tmp/postfixadmin-backup.sql
2. Unarchive new Postfix Admin
------------------------------
Make sure that you are in your WWW directory and then unarchive the
Postfix Admin archive (whatever the filename is):
$ tar -zxvf postfixadmin-2.0.0.tgz
3. Change permissions
----------------------
Since the database password is stored in the config.inc.php it's a good idea
to have change the permissions for Postfix Admin.
$ cd /usr/local/www/postfixadmin-2.0.0
$ chmod 640 *.php *.css
$ cd /usr/local/www/postfixadmin-2.0.0/admin/
$ chmod 640 *.php .ht*
$ cd /usr/local/www/postfixadmin-2.0.0/images/
$ chmod 640 *.gif *.png
$ cd /usr/local/www/postfixadmin-2.0.0/languages/
$ chmod 640 *.lang
$ cd /usr/local/www/postfixadmin-2.0.0/templates/
$ chmod 640 *.tpl
$ cd /usr/local/www/postfixadmin-2.0.0/users/
$ chmod 640 *.php
4. Modify the MySQL Tables
--------------------------
In TABLE_CHANGES.TXT or TABLE_BACKUP_MX.TXT you can find the table structure that you need in order
to configure Postfix Admin 2.0.0 and Postfix in general to work with Virtual
Domains and Users. You can find these in DOCUMENTS/
5. Configure
------------
Check the config.inc.php file. There you can specify settings that are
relevant to your setup.
6. Done
-------
This is all that is needed. Fire up your browser and go to the site that you
specified to host Postfix Admin.

281
GPL-LICENSE.TXT Normal file
View File

@@ -0,0 +1,281 @@
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS

87
INSTALL.TXT Normal file
View File

@@ -0,0 +1,87 @@
#
# Postfix Admin
# by Mischa Peters <mischa at high5 dot net>
# Copyright (c) 2002 - 2005 High5!
# Licensed under GPL for more info check GPL-LICENSE.TXT
#
REQUIRED!!
----------
- You are using Postfix 2.0 or higher.
- You are using Apache 1.3.27 / Lighttpd 1.3.15 or higher.
- You are using PHP 4.1 or higher.
- You are using MySQL 3.23 or higher.
READ THIS FIRST!
----------------
When this is an upgrade from Postfix Admin 1.5.4 please read DOCUMENTS/UPGRADE.TXT!!
If you need to setup Postfix to be able to handle Virtual Domains and Virtual
Users check out http://high5.net/howto/
1. Unarchive new Postfix Admin
------------------------------
Make sure that you are in your WWW directory and then unarchive the
Postfix Admin archive (whatever the filename is):
$ tar -zxvf postfixadmin-2.0.0.tgz
2. Change permissions
----------------------
Since the database password is stored in the config.inc.php it's a good idea
to have change the permissions for Postfix Admin.
$ cd /usr/local/www/postfixadmin
$ chmod 640 *.php *.css
$ cd /usr/local/www/postfixadmin/admin/
$ chmod 640 *.php .ht*
$ cd /usr/local/www/postfixadmin/images/
$ chmod 640 *.gif *.png
$ cd /usr/local/www/postfixadmin/languages/
$ chmod 640 *.lang
$ cd /usr/local/www/postfixadmin/templates/
$ chmod 640 *.tpl
$ cd /usr/local/www/postfixadmin/users/
$ chmod 640 *.php
3. Create the Database Tables
--------------------------
In DATABASE_MYSQL.TXT you can find the table structure for MySQL that you need
in order to configure Postfix Admin and Postfix in general to work with
Virtual Domains and Users.
In DATABASE_PGSQL.TXT you can find the table structure for PostgreSQL.
4. Configure
------------
Check the config.inc.php file. There you can specify settings that are
relevant to your setup.
Postfix Admin contains 3 views of administration.
There is the Site Admin view, located at http://domain.tld/postfixadmin/admin/.
There is the Domain Admin view, located at http://domain.tld/postfixadmin/.
And there is the User Admin View, located at http://domain.tld/postfixadmin/users/.
In order to do the initial configuration you have to go to the Site Admin view.
The default password for the Site Admin view of Postfix Admin is admin/admin.
This is specified in the .htpasswd file in the /admin directory. Make sure
that the location of the .htpasswd file matches your path.
5. Done
-------
This is all that is needed. Fire up your browser and go to the site that you
specified to host Postfix Admin.
6. More information
-------------------
For more information you can go to the Postfix Admin forums.
http://forums.high5.net/index.php?showforum=22

30
LICENSE.TXT Normal file
View File

@@ -0,0 +1,30 @@
Postfix Admin is a Web Based Management tool created for Postfix. It is
a PHP based application that handles Postfix Style Virtual Domains and
Users that are stored in MySQL.
Copyright (c) 2005 High5! (Mischa Peters and others)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Postfix Admin verion 2.1.1, Copyright (c) 2005 High5! (Mischa Peters & Contributors)
Postfix Admin comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions.
High5!, hereby disclaims all copyright interest in the program
`Postfix Admin' (which makes passes at Postfix, PHP and MySQL) written
by Wietse Venema, PHP Group and MYSQL AB.
Contributors: Mihau, Tarvin, SteveB, DJTremors, WhiteFox, David Osborn

View File

@@ -0,0 +1,512 @@
Introduction
============
This is a very first implementation of Postfix content filtering.
A Postfix content filter receives unfiltered mail from Postfix and
does one of the following:
- re-injects the mail back into Postfix, perhaps after changing content
- rejects the mail (by sending a suitable status code back to
Postfix) so that it is returned to sender.
- sends the mail somewhere else
This document describes two approaches to content filtering: simple
and advanced. Both filter all the mail by default.
At the end are examples that show how to filter only mail from
users, about using different filters for different domains that
you provide MX service for, and about selective filtering on the
basis of message envelope and/or header/body patterns.
Simple content filtering example
================================
The first example is simple to set up. It uses a shell script that
receives unfiltered mail from the Postfix pipe delivery agent, and
that feeds filtered mail back into the Postfix sendmail command.
Only mail arriving via SMTP will be content filtered.
..................................
: Postfix :
Unfiltered mail----->smtpd \ /local---->Filtered mail
: -cleanup->queue- :
---->pickup / \smtp----->Filtered mail
^ : | :
| : \pipe-----+
| .................................. |
| |
| |
+-Postfix sendmail<----filter script<--+
Mail is filtered by a /some/where/filter program. This can be a
simple shell script like this:
#!/bin/sh
# Localize these.
INSPECT_DIR=/var/spool/filter
SENDMAIL="/usr/sbin/sendmail -i"
# Exit codes from <sysexits.h>
EX_TEMPFAIL=75
EX_UNAVAILABLE=69
# Clean up when done or when aborting.
trap "rm -f in.$$" 0 1 2 3 15
# Start processing.
cd $INSPECT_DIR || { echo $INSPECT_DIR does not exist; exit $EX_TEMPFAIL; }
cat >in.$$ || { echo Cannot save mail to file; exit $EX_TEMPFAIL; }
# filter <in.$$ || { echo Message content rejected; exit $EX_UNAVAILABLE; }
$SENDMAIL "$@" <in.$$
exit $?
The idea is to first capture the message to file and then run the
content through a third-party content filter program.
- If the mail cannot be captured to file, mail delivery is deferred
by terminating with exit status 75 (EX_TEMPFAIL). Postfix will
try again after some delay.
- If the content filter program finds a problem, the mail is bounced
by terminating with exit status 69 (EX_UNAVAILABLE). Postfix
will return the message to the sender as undeliverable.
- If the content is OK, it is given as input to the Postfix sendmail
command, and the exit status of the filter command is whatever
exit status the Postfix sendmail command produces. Postfix will
deliver the message as usual.
I suggest that you run this script by hand until you are satisfied
with the results. Run it with a real message (headers+body) as
input:
% /some/where/filter -f sender recipient... <message-file
Once you're satisfied with the content filtering script:
1 - Create a dedicated local user account called "filter". This
user handles all potentially dangerous mail content - that is
why it should be a separate account. Do not use "nobody", and
most certainly do not use "root" or "postfix". The user will
never log in, and can be given a "*" password and non-existent
shell and home directory.
2 - Create a directory /var/spool/filter that is accessible only
to the "filter" user. This is where the content filtering script
is supposed to store its temporary files.
3 - Define the content filter in the Postfix master file:
/etc/postfix/master.cf:
filter unix - n n - - pipe
flags=Rq user=filter argv=/somewhere/filter -f ${sender} -- ${recipient}
To turn on content filtering for mail arriving via SMTP only, append
"-o content_filter=filter:dummy" to the master.cf entry that defines
the Postfix SMTP server:
/etc/postfix/master.cf:
smtp inet ...stuff... smtpd
-o content_filter=filter:dummy
The content_filter configuration parameter accepts the same syntax
as the right-hand side in a Postfix transport table. Execute
"postfix reload" to complete the change.
To turn off content filtering, edit the master.cf file, remove the
"-o content_filter=filter:dummy" text from the entry that defines
the Postfix SMTP server, and execute another "postfix reload".
With the shell script as shown above you will lose a factor of four
in Postfix performance for transit mail that arrives and leaves
via SMTP. You will lose another factor in transit performance for
each additional temporary file that is created and deleted in the
process of content filtering. The performance impact is less for
mail that is submitted or delivered locally, because such deliveries
are already slower than SMTP transit mail.
Simple content filter limitations
=================================
The problem with content filters like the one above is that they
are not very robust. The reason is that the software does not talk
a well-defined protocol with Postfix. If the filter shell script
aborts because the shell runs into some memory allocation problem,
the script will not produce a nice exit status as defined in the
file /usr/include/sysexits.h. Instead of going to the deferred
queue, mail will bounce. The same lack of robustness can happen
when the content filtering software itself runs into a resource
problem.
Advanced content filtering example
===================================
The second example is more complex, but can give much better
performance, and is less likely to bounce mail when the machine
runs into a resource problem. This approach uses content filtering
software that can receive and deliver mail via SMTP.
Some Anti-virus software is built to receive and deliver mail via
SMTP and is ready to use as an advanced Postfix content filter.
For non-SMTP capable content filtering software, Bennett Todd's
SMTP proxy implements a nice PERL/SMTP content filtering framework.
See: http://bent.latency.net/smtpprox/
The example given here filters all mail, including mail that arrives
via SMTP and mail that is locally submitted via the Postfix sendmail
command.
You can expect to lose about a factor of two in Postfix performance
for transit mail that arrives and leaves via SMTP, provided that
the content filter creates no temporary files. Each temporary file
created by the content filter adds another factor to the performance
loss.
We will set up a content filtering program that receives SMTP mail
via localhost port 10025, and that submits SMTP mail back into
Postfix via localhost port 10026.
..................................
: Postfix :
----->smtpd \ /local---->
: -cleanup->queue- :
---->pickup / ^ | \smtp----->
: | v :
: smtpd smtp :
: 10026 | :
......................|...........
^ |
| v
....|............
: | 10025 :
: filter :
: :
.................
To enable content filtering in this manner, specify in main.cf a
new parameter:
/etc/postfix/main.cf:
content_filter = scan:localhost:10025
This causes Postfix to add one extra content filtering record to
each incoming mail message, with content scan:localhost:10025.
The content filtering records are added by the smtpd and pickup
servers.
When a queue file has content filtering information, the queue
manager will deliver the mail to the specified content filter
regardless of its final destination.
In this example, "scan" is an instance of the Postfix SMTP client
with slightly different configuration parameters. This is how
one would set up the service in the Postfix master.cf file:
/etc/postfix/master.cf:
scan unix - - n - 10 smtp
Instead of a limit of 10 concurrent processes, use whatever process
limit is feasible for your machine. Content inspection software
can gobble up a lot of system resources, so you don't want to have
too much of it running at the same time.
The content filter can be set up with the Postfix spawn service,
which is the Postfix equivalent of inetd. For example, to instantiate
up to 10 content filtering processes on demand:
/etc/postfix/master.cf:
localhost:10025 inet n n n - 10 spawn
user=filter argv=/some/where/filter localhost 10026
"filter" is a dedicated local user account. The user will never
log in, and can be given a "*" password and non-existent shell and
home directory. This user handles all potentially dangerous mail
content - that is why it should be a separate account.
In the above example, Postfix listens on port localhost:10025. If
you want to have your filter listening on port localhost:10025
instead of Postfix, then you must run your filter as a stand-alone
program.
Note: the localhost port 10025 SMTP server filter should announce
itself as "220 localhost...". Postfix aborts delivery when it
connects to an SMTP server that uses the same hostname as Postfix
("host <servername> greeted me with my own hostname"), because that
normally means you have a mail delivery loop problem.
The example here assumes that the /some/where/filter command is a
PERL script. PERL has modules that make talking SMTP easy. The
command-line specifies that mail should be sent back into Postfix
via localhost port 10026.
The simplest content filter just copies SMTP commands and data
between its inputs and outputs. If it has a problem, all it has to
do is to reply to an input of `.' with `550 content rejected', and
to disconnect without sending `.' on the connection that injects
mail back into Postfix.
The job of the content filter is to either bounce mail with a
suitable diagnostic, or to feed the mail back into Postfix through
a dedicated listener on port localhost 10026:
/etc/postfix/master.cf:
localhost:10026 inet n - n - 10 smtpd
-o content_filter=
-o local_recipient_maps=
-o relay_recipient_maps=
-o myhostname=localhost.domain.tld
-o smtpd_helo_restrictions=
-o smtpd_client_restrictions=
-o smtpd_sender_restrictions=
-o smtpd_recipient_restrictions=permit_mynetworks,reject
-o mynetworks=127.0.0.0/8
Warning for Postfix version 2 users: in this SMTP server after the
content filter, do not override main.cf settings for virtual_alias_maps
or virtual_alias_domains. That would cause mail to be rejected with
"User unknown".
This SMTP server has the same process limit as the "filter" master.cf
entry.
The "-o content_filter=" requests no content filtering for incoming
mail.
The "-o local_recipient_maps=" and "-o relay_recipient_maps=" avoid
unnecessary table lookups.
The "-o myhostname=localhost.domain.tld" avoids false alarms ("host
<servername> greeted me with my own hostname") if your content
filter is based on a proxy that simply relays SMTP commands.
The "-o smtpd_xxx_restrictions" and "-o mynetworks=127.0.0.0/8"
turn off UCE controls that would only waste time here.
Squeezing out more performance
==============================
Many refinements are possible, such as running a specially-configured
smtp delivery agent for feeding mail into the content filter, and
turning off address rewriting before content filtering.
As the example below shows, things quickly become very complex,
because a lot of main.cf like information gets listed in the
master.cf file. This makes the system hard to understand.
Even worse, details change as Postfix evolves and different
configuration parameters are implemented by different programs.
If you need to squeeze out more performance, it is probably simpler
to run multiple Postfix instances, one before and one after the
content filter. That way, each instance can have simple main.cf
and master.cf files, each instance can have its own mail queue,
and the system will be easier to understand.
As before, we will set up a content filtering program that receives
SMTP mail via localhost port 10025, and that submits SMTP mail back
into Postfix via localhost port 10026.
.......................................
: Postfix :
----->smtpd \ :
: -pre-cleanup-\ /local---->
---->pickup / -queue- :
: -cleanup-/ | \smtp----->
: bounces/ ^ v :
: and locally | v :
: forwarded smtpd scan :
: messages 10026 | :
...........................|...........
^ |
| v
....|.............
: | 10025 :
: filter :
: :
..................
To enable content filtering in this manner, specify in main.cf a
new parameter:
/etc/postfix/main.cf:
content_filter = scan:localhost:10025
/etc/postfix/master.cf:
#
# These are the usual input "smtpd" and local "pickup" servers already
# present in master.cf. We add an option to select a non-default
# cleanup service (defined further below).
#
smtp inet n - n - - smtpd
-o cleanup_service_name=pre-cleanup
pickup fifo n - n 60 1 pickup
-o cleanup_service_name=pre-cleanup
#
# ------------------------------------------------------------------
#
# This is the cleanup daemon that handles messages in front of
# the content filter. It does header_checks and body_checks (if
# any), but does no virtual alias or canonical address mapping,
# so that mail passes through your content filter with the original
# recipient addresses mostly intact.
#
# Virtual alias or canonical address mapping happens in the second
# cleanup phase after the content filter. This gives the content_filter
# access to *largely* unmodified addresses for maximum flexibility.
#
# Some sites may specifically want to perform canonical or virtual
# address mapping in front of the content_filter. In that case you
# still have to enable address rewriting in the after-filter cleanup
# instance, in order to correctly process forwarded mail or bounced
# mail.
#
pre-cleanup unix n - n - 0 cleanup
-o canonical_maps=
-o sender_canonical_maps=
-o recipient_canonical_maps=
-o masquerade_domains=
-o virtual_alias_maps=
#
# ------------------------------------------------------------------
#
# This is the delivery agent that injects mail into the content
# filter. It is tuned for low concurrency, because most content
# filters burn CPU and use lots of memory. The process limit of 10
# re-enforces the effect of $default_destination_concurrency_limit.
# Even without an explicit process limit, the concurrency is bounded
# because all messages heading into the content filter have the same
# destination.
#
scan unix - - n - 10 smtp
#
# ------------------------------------------------------------------
#
# This is the SMTP listener that receives filtered messages from
# the content filter. It *MUST* clear the content_filter
# parameter to avoid loops, and use a different hostname to avoid
# triggering the Postfix SMTP loop detection code.
#
# This "smtpd" uses the normal cleanup service which is also used
# for bounces and for internally forwarded mail.
#
# The parameters from mynetworks onward disable all access
# control other than insisting on connections from one of the IP
# addresses of the host. This is typically overkill, but can
# reduce resource usage, if the default restrictions use lots of
# tables.
#
localhost:10026 inet n - n - - smtpd
-o content_filter=
-o myhostname=localhost.domain.tld
-o local_recipient_maps=
-o relay_recipient_maps=
-o mynetworks=127.0.0.0/8
-o mynetworks_style=host
-o smtpd_restriction_classes=
-o smtpd_client_restrictions=
-o smtpd_helo_restrictions=
-o smtpd_sender_restrictions=
-o smtpd_recipient_restrictions=permit_mynetworks,reject
#
# Do not override main.cf settings here for virtual_alias_maps or
# virtual_mailbox_maps. This causes mail to be rejected with "User
# unknown in virtual (alias|mailbox) recipient table".
#
# ------------------------------------------------------------------
#
# This is the normal cleanup daemon for use after content filtering.
# No header or body checks, because those have already been taken
# care of by the pre-cleanup service before the content filter.
#
# The normal cleanup instance does all the virtual alias and canonical
# address mapping that was disabled in the pre-cleanup instance before
# the content filter. This rewriting must be done even when you didn't
# disable address rewriting in the pre-cleanup instance, in order to
# correctly process bounces and locally forwarded mail.
#
cleanup unix n - n - 0 cleanup
-o header_checks=
-o mime_header_checks=
-o nested_header_checks=
-o body_checks=
#
# ------------------------------------------------------------------
#
# The normal "smtp" delivery agent for contrast with "scan".
#
smtp unix - - n - - smtp
The above example causes Postfix to add one content filtering record
to each incoming mail message, with content scan:localhost:10025.
You can use the same syntax as in the right-hand side of a Postfix
transport table. The content filtering records are added by the
smtpd and pickup servers.
The "scan" transport is a dedicated instance of the "smtp" delivery
agent for injecting messages into the SMTP content filter. Using
a dedicated "smtp" transport allows one to tune it for the specific
task of delivering mail to a local content filter (low latency,
low concurrency, throughput dependent on predictably low latency).
See the previous example for setting up the content filter with
the Postfix spawn service; you can of course use any server that
can be run stand-alone outside the Postfix environment.
Filtering mail from outside users only
======================================
The easiest approach is to configure ONE Postfix instance with TWO
SMTP server addresses in master.cf:
- One SMTP server address for inside users only that never invokes
content filtering.
- One SMTP server address for outside users that always invokes
content filtering.
/etc/postfix.master.cf:
# SMTP service for internal users only, no content filtering.
1.2.3.4:smtp inet n - n - - smtpd
-o smtpd_client_restrictions=permit_mynetworks,reject
127.0.0.1:smtp inet n - n - - smtpd
-o smtpd_client_restrictions=permit_mynetworks,reject
# SMTP service for external users, with content filtering.
1.2.3.5:smtp inet n - n - - smtpd
-o content_filter=foo:bar
Getting really nasty
====================
The above filtering configurations are static. Mail that follows
a given path is either always filtered or it is never filtered. As
of Postfix 2.0 you can also turn on content filtering on the fly.
The Postfix UCE features allow you to specify a filtering action
on the fly:
FILTER foo:bar
You can do this in smtpd access maps as well as the cleanup server's
header/body_checks. This feature must be used with great care:
you must disable all the UCE features in the after-filter smtpd
and cleanup daemons or else you will have a content filtering loop.
Limitations:
- There can be only one content filter action per message.
- FILTER actions from smtpd access maps and header/body_checks take
precedence over filters specified with the main.cf content_filter
parameter.
- Only the last FILTER action from smtpd access maps or from
header/body_checks takes effect.
- The same content filter is applied to all the recipients of a
given message.

View File

@@ -0,0 +1,147 @@
##################################################
# Virtual Vacation for Postfix Admin Release 2.x #
##################################################
#
# Postfix Admin (Virtual Vacation)
# by Mischa Peters <mischa at high5 dot net>
# Copyright (c) 2002 - 2005 High5!
# Licensed under GPL for more info check GPL-LICENSE.TXT
#
# Modified by: Nicholas Paufler <npaufler at incentre dot net> (12/06/2004)
#
REQUIRED!
---------
You need to have the following installed to be able to use Virtual Vacation.
- Perl5
- Perl DBI
- Perl DBD::mysql
About Virtual Vacation
----------------------
Virual Vacation is today done with a local shell account that can receive
email. The email is then handled by a Perl script which sends the Vacation
message back to the sender.
Install Virtual Vacation
------------------------
1. Create a local account
-------------------------
Create a dedicated local user account called "vacation".
This user handles all potentially dangerous mail content - that is why it
should be a separate account.
Do not use "nobody", and most certainly do not use "root" or "postfix". The
user will never log in, and can be given a "*" password and non-existent
shell and home directory.
This should look like this:
#/etc/passwd
vacation:*:65501:65501::0:0:Virtual Vacation:/nonexistent:/sbin/nologin
#/etc/group
vacation:*:65501:
2. Create a directory
---------------------
Create a directory, for example /var/spool/vacation, that is accessible
only to the "vacation" user. This is where the vacation script is supposed
to store its temporary files.
3. Copy the files
-----------------
Copy the vacation.pl file to the directory you created above:
$ cp vacation.pl <HOME>/vacation.pl
$ chown -R vacation:vacation <HOME>
Which will then look something like:
-rwx------ 1 vacation vacation 3356 Dec 21 00:00 vacation.pl*
4. Setup the transport type
--------------------
Define the transport type in the Postfix master file:
#/etc/postfix/master.cf:
vacation unix - n n - - pipe
flags=Rq user=vacation argv=/var/spool/vacation/vacation.pl -f ${sender} -- ${recipient}
Tell Postfix to use a transport maps file, so add the following to your
Postfix main.cf:
#/etc/postfix/main.cf:
transport_maps = hash:/etc/postfix/transport
Then add the transport definition to the newly created transport file.
Obviously, change yourdomain.com to your own domain. This can be any
arbitrary domain, and it is easiest if you just choose one that will be used
for all your domains.
#/etc/postfix/transport
autoreply.yourdomain.com vacation:
Execute "postmap /etc/postfix/transport" to build the hashed database.
Execute "postfix reload" to complete the change.
5. Create the table
-------------------
To use Virtual Vacation with Postfix Admin you need to create an extra table
in the database that is used by Postfix Admin.
USE postfix;
#
# Table structure for table vacation
#
CREATE TABLE vacation (
email varchar(255) NOT NULL default '',
subject varchar(255) NOT NULL default '',
body text NOT NULL,
cache text NOT NULL,
domain varchar(255) NOT NULL default '',
created datetime NOT NULL default '0000-00-00 00:00:00',
active tinyint(4) NOT NULL default '1',
PRIMARY KEY (email),
KEY email (email)
) TYPE=MyISAM COMMENT='Postfix Admin - Virtual Vacation';
What do these files do?
-----------------------
When a user enables a vacation message on their account, the alias
definition is changed so that in addition to delivering to their own
mailbox, it also delivers to a dummy alias which calls the vacation.pl
program. In other words, if joeuser@domain.com enables their vacation, the
entry in the alias database table will deliver mail to
joeuser@something.com, as well as
joeuser@something.com@autoreply.yourdomain.com
vacation.pl then checks the database to see wether a user is on holiday and
what message to send back. Make sure that vacation.pl is able to communicate
to your databse. In the first couple of lines you have to specify the
database, username and password for it.
NOTE: Make sure that the path to perl is correct.
I'm in trouble!
---------------
When something is not working there are a couple of files that you can have
a look at. The most important one is your maillog (usually in /var/log/).
Vacation.pl also has some debugging and logging capabilties. Check the top
of vacation.pl.
Done!
-----
When this is all in place you need to have a look at the Postfix Admin
config.inc.php. Here you need to enable Virtual Vacation for the site.

View File

@@ -0,0 +1,22 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: index.php
//
// Template File: -none-
//
// Template Variables:
//
// -none-
//
// Form POST \ GET Variables:
//
// -none-
//
header ("Location: ../login.php");
exit;
?>

View File

@@ -0,0 +1,17 @@
#!/bin/sh
FILTER_DIR=/home/vacation
SENDMAIL="/usr/sbin/sendmail -i"
EX_TEMPFAIL=75
EX_UNAVAILABLE=69
trap "rm -f in.$$" 0 1 2 3 15
cd $FILTER_DIR || { echo $FILTER_DIR does not exist; exit $EX_TEMPFAIL; }
cat > in.$$ || { echo Cannot save mail to file; exit $EX_TEMPFAIL; }
/home/vacation/vacation.pl < in.$$ || { echo Message content rejected; exit $EX_UNAVAILABLE; }
$SENDMAIL "$@" < in.$$
exit $?

View File

@@ -0,0 +1,326 @@
#!/usr/bin/perl -w
#
# Virtual Vacation 3.1
# by Mischa Peters <mischa at high5 dot net>
# Copyright (c) 2002 - 2005 High5!
# Licensed under GPL for more info check GPL-LICENSE.TXT
#
# Additions:
# 2004/07/13 David Osborn <ossdev at daocon.com>
# strict, processes domain level aliases, more
# subroutines, send reply from original to address
#
# 2004/11/09 David Osborn <ossdev at daocon.com>
# Added syslog support
# Slightly better logging which includes messageid
# Avoid infinite loops with domain aliases
#
# 2005-01-19 Troels Arvin <troels@arvin.dk>
# PostgreSQL-version.
# Normalized DB schema from one vacation table ("vacation")
# to two ("vacation", "vacation_notification"). Uses
# referential integrity CASCADE action to simplify cleanup
# when a user is no longer on vacation.
# Inserting variables into queries stricly by prepare()
# to try to avoid SQL injection.
# International characters are now handled well.
#
# 2005-01-21 Troels Arvin <troels@arvin.dk>
# Uses the Email::Valid package to avoid sending notices
# to obviously invalid addresses.
#
#
# Requirements:
# You need to have the DBD::Pg perl-module installed.
# On Fedora Core Linux, e.g., this entails installing the
# libdbi-dbd-pgsql and perl-DBD-Pg-1.22-1 packages.
#
# Note: When you use this module, you may start seeing error messages
# like "Cannot insert a duplicate key into unique index
# vacation_notification_pkey" in your system logs. This is expected
# behavior, and not an indication of trouble (see the "already_notified"
# subroutine for an explanation).
#
# You must also have the Email::Valid and MIME-tools perl-packages
# installed. They are available in some package collections, under the
# names 'perl-Email-Valid' and 'perl-MIME-tools', respectively.
# One such package collection (for Linux) is:
# http://dag.wieers.com/home-made/apt/packages.php
#
use DBI;
use MIME::Words qw(:all);
use Email::Valid;
use strict;
my $db_host; # leave alone
# ========== begin configuration ==========
# IMPORTANT: If you put passwords into this script, then remember
# to restrict access to the script, so that only the vacation user
# kan read it.
my $db_type = 'Pg';
# $db_host = 'localhost'; # Uncomment (and adjust, if needed) your DB
# host-name here, if you want to connect via
# a TCP socket
my $db_user = 'vacation'; # What DB-user to connect as
my $db_pass = ''; # What password (if any) to connect with
my $db_name = 'postfix'; # Name of database to use
my $sendmail = "/usr/sbin/sendmail";
my $charset = 'ISO-8859-1'; # Character set of vacation messages.
#my $logfile = "/tmp/vacation-log";
my $logfile='';
my $syslog = 1; # 1 if log entries should be sent to syslog
#my $debugfile = "/tmp/vacation-debug"; # Specify a file name here for example: /tmp/vacation.debug
my $debugfile='';
# =========== end configuration ===========
my $dbh;
if (defined($db_host)) {
$dbh = DBI->connect("DBI:$db_type:dbname=$db_name;host=$db_host","$db_user", "$db_pass", { RaiseError => 1 });
} else {
$dbh = DBI->connect("DBI:$db_type:dbname=$db_name","$db_user", "$db_pass", { RaiseError => 1 });
}
if (!$dbh) {
panic("Could not connect to database");
exit(0);
}
# used to detect infinite address lookup loops
my $loopcount=0;
sub do_debug {
my ($in1, $in2, $in3, $in4, $in5, $in6) = @_;
if ( $debugfile ) {
my $date;
open (DEBUG, ">> $debugfile") or die ("Unable to open debug file");
chop ($date = `date "+%Y/%m/%d %H:%M:%S"`);
print DEBUG "====== $date ======\n";
printf DEBUG "%s | %s | %s | %s | %s | %s\n", $in1, $in2, $in3, $in4, $in5, $in6;
close (DEBUG);
}
}
sub already_notified {
my ($to, $from) = @_;
my $query = qq{INSERT into vacation_notification (on_vacation,notified) values (?,?)};
my $stm = $dbh->prepare($query);
if (!$stm) {
do_log('',$to,$from,'','',"Could not prepare query $query");
return 1;
}
$stm->{'PrintError'} = 0;
$stm->{'RaiseError'} = 0;
if (!$stm->execute($to,$from)) {
my $e=$dbh->errstr;
# Violation of a primay key constraint may happen here, and that's
# fine. All other error conditions are not fine, however.
if (!$e =~ /_pkey/) {
do_log('',$to,$from,'','',"Unexpected error: '$e' from query '$query'");
}
return 1;
}
return 0;
}
sub do_log {
my ($messageid, $to, $from, $subject, $logmessage) = @_;
my $date;
if ( $syslog ) {
open (SYSLOG, "|/usr/bin/logger -p mail.info -t Vacation") or die ("Unable to open logger");
if ($logmessage) {
printf SYSLOG "Orig-To: %s From: %s MessageID: %s Subject: %s. Log message: $%s", $to, $from, $messageid, $subject, $logmessage;
} else {
printf SYSLOG "Orig-To: %s From: %s MessageID: %s Subject: %s", $to, $from, $messageid, $subject;
}
close (SYSLOG);
}
if ( $logfile ) {
open (LOG, ">> $logfile") or die ("Unable to open log file");
chop ($date = `date "+%Y/%m/%d %H:%M:%S"`);
if ($logmessage) {
print LOG "$date: To: $to From: $from Subject: $subject MessageID: $messageid. Log message: $logmessage\n";
} else {
print LOG "$date: To: $to From: $from Subject: $subject MessageID: $messageid\n";
}
close (LOG);
}
}
sub do_mail {
my ($from, $to, $plainsubject, $body) = @_;
my $subject = encode_mimewords($plainsubject);
open (MAIL, "| $sendmail -t -f $from") or die ("Unable to open sendmail");
print MAIL "From: $from\n";
print MAIL "To: $to\n";
print MAIL "Subject: $subject\n";
print MAIL "MIME-Version: 1.0\n";
print MAIL "Content-Type: text/plain; charset=\"$charset\"\n";
print MAIL "Precedence: junk\n";
print MAIL "X-Loop: Postfix Admin Virtual Vacation\n\n";
print MAIL "$body";
close (MAIL);
}
sub panic {
my ($arg) = @_;
do_log('','','','','',"$arg");
exit(0);
}
sub panic_prepare {
my ($arg) = @_;
do_log('','','','','',"Could not prepare '$arg'");
exit(0);
}
sub panic_execute {
my ($arg,$param) = @_;
do_log('','','','','',"Could not execute '$arg' with parameters $param");
exit(0);
}
sub find_real_address {
my ($email) = @_;
if (++$loopcount > 20) {
do_log ("find_real_address loop!", "currently: $email", "ERROR", "ERROR");
panic("possible infinite loop in find_real_address for <$email>. Check for alias loop\n");
}
my $realemail;
my $query = qq{SELECT email FROM vacation WHERE email=? and active=true};
my $stm = $dbh->prepare($query) or panic_prepare($query);
$stm->execute($email) or panic_execute($query,"email='$email'");
my $rv = $stm->rows;
# Recipient has vacation
if ($rv == 1) {
$realemail = $email;
} else {
$query = qq{SELECT goto FROM alias WHERE address=?};
$stm = $dbh->prepare($query) or panic_prepare($query);
$stm->execute($email) or panic_execute($query,"address='$email'");
$rv = $stm->rows;
# Recipient is an alias, check if mailbox has vacation
if ($rv == 1) {
my @row = $stm->fetchrow_array;
my $alias = $row[0];
$query = qq{SELECT email FROM vacation WHERE email=? and active=true};
$stm = $dbh->prepare($query) or panic_prepare($query);
$stm->execute($alias) or panic_prepare($query,"email='$alias'");
$rv = $stm->rows;
# Alias has vacation
if ($rv == 1) {
$realemail = $alias;
}
# We still have to look for domain level aliases...
} else {
my ($user, $domain) = split(/@/, $email);
$query = qq{SELECT goto FROM alias WHERE address=?};
$stm = $dbh->prepare($query) or panic_prepare($query);
$stm->execute("\@$domain") or panic_execute($query,"address='\@$domain'");
$rv = $stm->rows;
# The receipient has a domain level alias
if ($rv == 1) {
my @row = $stm->fetchrow_array;
my $wildcard_dest = $row[0];
my ($wilduser, $wilddomain) = split(/@/, $wildcard_dest);
# Check domain alias
if ($wilduser) {
($rv, $realemail) = find_real_address ($wildcard_dest);
} else {
my $new_email = $user . '@' . $wilddomain;
($rv, $realemail) = find_real_address ($new_email);
}
}
}
}
return ($rv, $realemail);
}
sub send_vacation_email {
my ($email, $orig_subject, $orig_from, $orig_to, $orig_messageid) = @_;
my $query = qq{SELECT subject,body FROM vacation WHERE email=?};
my $stm = $dbh->prepare($query) or panic_prepare($query);
$stm->execute($email) or panic_execute($query,"email='$email'");
my $rv = $stm->rows;
if ($rv == 1) {
my @row = $stm->fetchrow_array;
if (already_notified($email, $orig_from)) { return; }
do_debug ("[SEND RESPONSE] for $orig_messageid:\n", "FROM: $email (orig_to: $orig_to)\n", "TO: $orig_from\n", "SUBJECT: $orig_subject\n", "VACATION SUBJECT: $row[0]\n", "VACATION BODY: $row[1]\n");
do_mail ($orig_to, $orig_from, $row[0], $row[1]);
do_log ($orig_messageid, $orig_to, $orig_from, $orig_subject);
}
}
########################### main #################################
my ($from, $to, $cc, $subject, $messageid);
$subject='';
# Take headers apart
while (<STDIN>) {
last if (/^$/);
if (/^from:\s+(.*)\n$/i) { $from = $1; }
if (/^to:\s+(.*)\n$/i) { $to = $1; }
if (/^cc:\s+(.*)\n$/i) { $cc = $1; }
if (/^subject:\s+(.*)\n$/i) { $subject = $1; }
if (/^message-id:\s+(.*)\n$/i) { $messageid = $1; }
if (/^precedence:\s+(bulk|list|junk)/i) { exit (0); }
if (/^x-loop:\s+postfix\ admin\ virtual\ vacation/i) { exit (0); }
}
# If either From: or To: are not set, exit
if (!$from || !$to || !$messageid) { exit (0); }
$from = lc ($from);
if (!Email::Valid->address($from,-mxcheck => 1)) { exit(0); }
# Check if it's an obvious sender, exit
if ($from =~ /([\w\-.%]+\@[\w.-]+)/) { $from = $1; }
if ($from eq "" || $from =~ /^owner-|-(request|owner)\@|^(mailer-daemon|postmaster)\@/i) { exit (0); }
# Strip To: and Cc: and push them in array
my @strip_cc_array;
my @strip_to_array = split(/, */, lc ($to) );
if (defined $cc) { @strip_cc_array = split(/, */, lc ($cc) ); }
push (@strip_to_array, @strip_cc_array);
my @search_array;
# Strip email address from headers
for (@strip_to_array) {
if ($_ =~ /([\w\-.%]+\@[\w.-]+)/) {
push (@search_array, $1);
do_debug ("[STRIP RECIPIENTS]: ", $messageid, $1, "-", "-", "-");
}
}
# Search for email address which has vacation
for (@search_array) {
my ($rv, $email) = find_real_address ($_);
if ($rv == 1) {
do_debug ("[FOUND VACATION]: ", $messageid, $from, $to, $email, $subject);
send_vacation_email( $email, $subject, $from, $to, $messageid);
}
}
0;
#/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */

View File

@@ -0,0 +1,242 @@
#!/usr/bin/perl -w
#
# Virtual Vacation 3.2
# by Mischa Peters <mischa at high5 dot net>
# Copyright (c) 2002 - 2005 High5!
# Licensed under GPL for more info check GPL-LICENSE.TXT
#
# Additions:
# 2004/07/13 David Osborn <ossdev at daocon.com>
# Uses strict, processes domain level aliases, more
# subroutines, send reply from original to address
# 2004/11/09 David Osborn <ossdev at daocon.com>
# Added syslog support
# Slightly better logging which includes messageid
# Avoid infinite loops with domain aliases
#
# 2005/07/20 David Osborn <ossdev at daocon.com>
# Added threading headers to reply
# Fixed problem of sending reply to wrong To:
#
# 2005/07/21 Brian Taber <btaber at diversecg.com>
# Added error handling in case of database errors
# to prevent bounced email
#
use DBI;
use strict;
use Sys::Syslog;
my $db_type = 'mysql';
my $db_host = 'localhost';
my $db_user = 'postfixadmin';
my $db_pass = 'postfixadmin';
my $db_name = 'postfix';
my $sendmail = "/usr/sbin/sendmail";
my $logfile = ""; # specify a file name here for example: vacation.log
my $debugfile = ""; # sepcify a file name here for example: vacation.debug
my $syslog = 0; # 1 if log entries should be sent to syslog
my $dbh = DBI->connect("DBI:$db_type:$db_name:$db_host", "$db_user", "$db_pass", { RaiseError => 1 }) or &exit_error($DBI::errstr);
# make sure vacation.pl exists cleanly when it encounters an error
sub exit_error {
syslog('mail|warning', 'virtual vacation failure: %s', shift);
exit (0);
}
# used to detect infinite address lookup loops
my $loopcount=0;
sub do_query {
my ($query) = @_;
my $sth = $dbh->prepare($query) or &exit_error("Can't prepare $query: $dbh->errstr");
$sth->execute or die "Can't execute the query: $sth->errstr";
return $sth;
}
sub do_debug {
my ($in1, $in2, $in3, $in4, $in5, $in6) = @_;
if ( $debugfile ) {
my $date;
open (DEBUG, ">> $debugfile") or &exit_error("Unable to open debug file");
chop ($date = `date "+%Y/%m/%d %H:%M:%S"`);
print DEBUG "====== $date ======\n";
printf DEBUG "%s | %s | %s | %s | %s | %s\n", $in1, $in2, $in3, $in4, $in5, $in6;
close (DEBUG);
}
}
sub do_cache {
my ($to, $from) = @_;
my $query = qq{SELECT cache FROM vacation WHERE email='$to' AND FIND_IN_SET('$from',cache)};
my $sth = do_query ($query);
my $rv = $sth->rows;
if ($rv == 0) {
$query = qq{UPDATE vacation SET cache=CONCAT(cache,',','$from') WHERE email='$to'};
$sth = do_query ($query);
}
return $rv;
}
sub do_log {
my ($messageid, $to, $from, $subject) = @_;
my $date;
if ( $syslog ) {
open (SYSLOG, "|/usr/bin/logger -p mail.info -t Vacation") or die ("Unable to open logger");
printf SYSLOG "Orig-To: %s From: %s MessageID: %s Subject: %s", $to, $from, $messageid, $subject;
close (SYSLOG);
}
if ( $logfile ) {
open (LOG, ">> $logfile") or die ("Unable to open log file");
chop ($date = `date "+%Y/%m/%d %H:%M:%S"`);
print LOG "$date: To: $to From: $from Subject: $subject MessageID: $messageid \n";
close (LOG);
}
}
sub do_mail {
my ($from, $to, $subject, $body, $orig_msgID) = @_;
# clean up the email address since we pass it to the commandline
my $fromemail = $from;
if ($fromemail =~ /([\w\-.%]+\@[\w.-]+)/) { $fromemail = $1; }
open (MAIL, "| $sendmail -t -f \"$fromemail\"") or die ("Unable to open sendmail");
print MAIL "From: $from\n";
print MAIL "To: $to\n";
print MAIL "Subject: $subject\n";
if ( $orig_msgID ) {
print MAIL "References: $orig_msgID\n";
print MAIL "In-Reply-To: $orig_msgID\n";
}
print MAIL "X-Loop: Postfix Admin Virtual Vacation\n\n";
print MAIL "$body";
close (MAIL) or die ("Unable to close sendmail");
}
sub find_real_address {
my ($email) = @_;
if (++$loopcount > 20) {
do_log ("find_real_address loop!", "currently: $email", "ERROR", "ERROR");
print ("possible infinite loop in find_real_address for <$email>. Check for alias loop\n");
exit 1;
}
my $realemail;
my $query = qq{SELECT email FROM vacation WHERE email='$email' and active=1};
my $sth = do_query ($query);
my $rv = $sth->rows;
# Recipient has vacation
if ($rv == 1) {
$realemail = $email;
} else {
$query = qq{SELECT goto FROM alias WHERE address='$email'};
$sth = do_query ($query);
$rv = $sth->rows;
# Recipient is an alias, check if mailbox has vacation
if ($rv == 1) {
my @row = $sth->fetchrow_array;
my $alias = $row[0];
$query = qq{SELECT email FROM vacation WHERE email='$alias' and active=1};
$sth = do_query ($query);
$rv = $sth->rows;
# Alias has vacation
if ($rv == 1) {
$realemail = $alias;
}
# We still have to look for domain level aliases...
} else {
my ($user, $domain) = split(/@/, $email);
$query = qq{SELECT goto FROM alias WHERE address='\@$domain'};
$sth = do_query ($query);
$rv = $sth->rows;
# The receipient has a domain level alias
if ($rv == 1) {
my @row = $sth->fetchrow_array;
my $wildcard_dest = $row[0];
my ($wilduser, $wilddomain) = split(/@/, $wildcard_dest);
# Check domain alias
if ($wilduser) {
($rv, $realemail) = find_real_address ($wildcard_dest);
} else {
my $new_email = $user . '@' . $wilddomain;
($rv, $realemail) = find_real_address ($new_email);
}
}
}
}
return ($rv, $realemail);
}
sub send_vacation_email {
my ($email, $orig_subject, $orig_from, $orig_to, $orig_messageid) = @_;
my $query = qq{SELECT subject,body FROM vacation WHERE email='$email'};
my $sth = do_query ($query);
my $rv = $sth->rows;
if ($rv == 1) {
my @row = $sth->fetchrow_array;
if (do_cache ($email, $orig_from)) { return; }
$row[0] =~ s/\$SUBJECT/$orig_subject/g;
$row[1] =~ s/\$SUBJECT/$orig_subject/g;
do_debug ("[SEND RESPONSE] for $orig_messageid:\n", "FROM: $email (orig_to: $orig_to)\n", "TO: $orig_from\n", "SUBJECT: $orig_subject\n", "VACATION SUBJECT: $row[0]\n", "VACATION BODY: $row[1]\n");
do_mail ($orig_to, $orig_from, $row[0], $row[1], $orig_messageid);
do_log ($orig_messageid, $orig_to, $orig_from, $orig_subject);
}
}
########################### main #################################
my ($from, $to, $cc, $subject, $messageid);
# Take headers apart
while (<STDIN>) {
last if (/^$/);
if (/^from:\s+(.*)\n$/i) { $from = $1; }
if (/^to:\s+(.*)\n$/i) { $to = $1; }
if (/^cc:\s+(.*)\n$/i) { $cc = $1; }
if (/^subject:\s+(.*)\n$/i) { $subject = $1; }
if (/^message-id:\s+(.*)\n$/i) { $messageid = $1; }
if (/^precedence:\s+(bulk|list|junk)/i) { exit (0); }
if (/^x-loop:\s+postfix\ admin\ virtual\ vacation/i) { exit (0); }
}
# If either From: or To: are not set, exit
if (!$from || !$to) { exit (0); }
$from = lc ($from);
# Check if it's an obvious sender, exit
if ($from =~ /([\w\-.%]+\@[\w.-]+)/) { $from = $1; }
if ($from eq "" || $from =~ /^owner-|-(request|owner)\@|^(mailer-daemon|postmaster)\@/i) { exit (0); }
# Strip To: and Cc: and push them in array
my @strip_cc_array;
my @strip_to_array = split(/, */, lc ($to) );
if (defined $cc) { @strip_cc_array = split(/, */, lc ($cc) ); }
push (@strip_to_array, @strip_cc_array);
my @search_array;
# Strip email address from headers
for (@strip_to_array) {
if ($_ =~ /([\w\-.%]+\@[\w.-]+)/) {
push (@search_array, $1);
#do_debug ("[STRIP RECIPIENTS]: ", $messageid, $1, "-", "-", "-");
}
}
# Search for email address which has vacation
for my $to (@search_array) {
my ($rv, $email) = find_real_address ($to);
if ($rv == 1) {
do_debug ("[FOUND VACATION]: ", $messageid, $from, $to, $email, $subject);
send_vacation_email( $email, $subject, $from, $to, $messageid);
}
}
0;

116
admin/backup.php Normal file
View File

@@ -0,0 +1,116 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: backup.php
//
// Template File: -none-
//
// Template Variables:
//
// -none-
//
// Form POST \ GET Variables:
//
// -none-
//
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
(($CONF['backup'] == 'NO') ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
// TODO: make backup supported for postgres
if ('pgsql'==$CONF['database_type'])
{
print '<p>Sorry: Backup is currently not supported for your DBMS.</p>';
}
/*
SELECT attnum,attname,typname,atttypmod-4,attnotnull,atthasdef,adsrc
AS def FROM pg_attribute,pg_class,pg_type,pg_attrdef
WHERE pg_class.oid=attrelid AND pg_type.oid=atttypid
AND attnum>0 AND pg_class.oid=adrelid AND adnum=attnum AND atthasdef='t' AND lower(relname)='admin'
UNION SELECT attnum,attname,typname,atttypmod-4,attnotnull,atthasdef,''
AS def FROM pg_attribute,pg_class,pg_type
WHERE pg_class.oid=attrelid
AND pg_type.oid=atttypid
AND attnum>0
AND atthasdef='f'
AND lower(relname)='admin'
$db = $_GET['db'];
$cmd = "pg_dump -c -D -f /tix/miner/miner.sql -F p -N -U postgres $db";
$res = `$cmd`;
// Alternate: $res = shell_exec($cmd);
echo $res;
*/
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
umask (077);
$path = (ini_get('upload_tmp_dir') != '') ? ini_get('upload_tmp_dir') : '/tmp/';
$filename = "postfixadmin-" . date ("Ymd") . "-" . getmypid() . ".sql";
$backup = $path . $filename;
$header = "#\n# Postfix Admin $version\n# Date: " . date ("D M j G:i:s T Y") . "\n#\n";
if (!$fh = fopen ($backup, 'w'))
{
$tMessage = "<div class=\"error_msg\">Cannot open file ($backup)</div>";
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/message.tpl");
include ("../templates/footer.tpl");
}
else
{
fwrite ($fh, $header);
$tables = array('admin','alias','domain','domain_admins','log','mailbox','vacation');
for ($i = 0 ; $i < sizeof ($tables) ; ++$i)
{
$result = db_query ("SHOW CREATE TABLE ".table_by_pos($i));
if ($result['rows'] > 0)
{
while ($row = db_array ($result['result']))
{
fwrite ($fh, "$row[1]\n\n");
}
}
}
for ($i = 0 ; $i < sizeof ($tables) ; ++$i)
{
$result = db_query ("SELECT * FROM ".table_by_pos($i));
if ($result['rows'] > 0)
{
while ($row = db_assoc ($result['result']))
{
foreach ($row as $key=>$val)
{
$fields[] = $key;
$values[] = $val;
}
fwrite ($fh, "INSERT INTO ". $tables[$i] . " (". implode (',',$fields) . ") VALUES ('" . implode ('\',\'',$values) . "')\n");
$fields = "";
$values = "";
}
}
}
}
header ("Content-Type: application/octet-stream");
header ("Content-Disposition: attachment; filename=\"$filename\"");
header ("Content-Transfer-Encoding: binary");
header ("Content-Length: " . filesize("$backup"));
header ("Content-Description: Postfix Admin");
$download_backup = fopen ("$backup", "r");
unlink ("$backup");
fpassthru ($download_backup);
}
?>

132
admin/create-admin.php Normal file
View File

@@ -0,0 +1,132 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: create-admin.php
//
// Template File: admin_create-admin.tpl
//
//
// Template Variables:
//
// tMessage
// tUsername
// tDomains
//
// Form POST \ GET Variables:
//
// fUsername
// fPassword
// fPassword2
// fDomains
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
$list_domains = list_domains ();
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
$pAdminCreate_admin_username_text = $PALANG['pAdminCreate_admin_username_text'];
$tDomains = array ();
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_create-admin.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
if (isset ($_POST['fUsername'])) $fUsername = escape_string ($_POST['fUsername']);
if (isset ($_POST['fPassword'])) $fPassword = escape_string ($_POST['fPassword']);
if (isset ($_POST['fPassword2'])) $fPassword2 = escape_string ($_POST['fPassword2']);
if (!empty ($_POST['fDomains'])) $fDomains = $_POST['fDomains'];
if (!check_email ($fUsername))
{
$error = 1;
if (isset ($_POST['fUsername'])) $tUsername = escape_string ($_POST['fUsername']);
if (isset ($_POST['fDomains'])) $tDomains = $_POST['fDomains'];
$pAdminCreate_admin_username_text = $PALANG['pAdminCreate_admin_username_text_error1'];
}
if (empty ($fUsername) or admin_exist ($fUsername))
{
$error = 1;
$tUsername = escape_string ($_POST['fUsername']);
if (isset ($_POST['fDomains'])) $tDomains = $_POST['fDomains'];
$pAdminCreate_admin_username_text = $PALANG['pAdminCreate_admin_username_text_error2'];
}
if (empty ($fPassword) or empty ($fPassword2) or ($fPassword != $fPassword2))
{
if (empty ($fPassword) and empty ($fPassword2) and $CONF['generate_password'] == "YES")
{
$fPassword = generate_password ();
}
else
{
$error = 1;
if (isset ($_POST['fUsername'])) $tUsername = escape_string ($_POST['fUsername']);
if (isset ($_POST['fDomains'])) $tDomains = $_POST['fDomains'];
$pAdminCreate_admin_username_text = $PALANG['pAdminCreate_admin_username_text'];
$pAdminCreate_admin_password_text = $PALANG['pAdminCreate_admin_password_text_error'];
}
}
if ($error != 1)
{
$password = pacrypt($fPassword);
$pAdminCreate_admin_username_text = $PALANG['pAdminCreate_admin_username_text'];
$result = db_query ("INSERT INTO $table_admin (username,password,created,modified) VALUES ('$fUsername','$password',NOW(),NOW())");
if ($result['rows'] != 1)
{
$tMessage = $PALANG['pAdminCreate_admin_result_error'] . "<br />($fUsername)<br />";
}
else
{
if (!empty ($fDomains[0]))
{
for ($i = 0; $i < sizeof ($fDomains); $i++)
{
$domain = $fDomains[$i];
$result = db_query ("INSERT INTO $table_domain_admins (username,domain,created) VALUES ('$fUsername','$domain',NOW())");
}
}
$tMessage = $PALANG['pAdminCreate_admin_result_succes'] . "<br />($fUsername";
if ($CONF['generate_password'] == "YES")
{
$tMessage .= " / $fPassword)</br />";
}
else
{
if ($CONF['show_password'] == "YES")
{
$tMessage .= " / $fPassword)</br />";
}
else
{
$tMessage .= ")</br />";
}
}
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_create-admin.tpl");
include ("../templates/footer.tpl");
}
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

140
admin/create-alias.php Normal file
View File

@@ -0,0 +1,140 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: create-alias.php
//
// Template File: create-alias.tpl
//
// Template Variables:
//
// tMessage
// tAddress
// tGoto
// tDomain
//
// Form POST \ GET Variables:
//
// fAddress
// fGoto
// fDomain
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
$list_domains = list_domains ();
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
$pCreate_alias_goto_text = $PALANG['pCreate_alias_goto_text'];
if (isset ($_GET['domain'])) $tDomain = escape_string ($_GET['domain']);
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/create-alias.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
$pCreate_alias_goto_text = $PALANG['pCreate_alias_goto_text'];
if (isset ($_POST['fAddress']) && isset ($_POST['fDomain'])) $fAddress = escape_string ($_POST['fAddress']) . "@" . escape_string ($_POST['fDomain']);
$fAddress = strtolower ($fAddress);
if (isset ($_POST['fGoto'])) $fGoto = escape_string ($_POST['fGoto']);
$fGoto = strtolower ($fGoto);
isset ($_POST['fActive']) ? $fActive = escape_string ($_POST['fActive']) : $fActive = "1";
if (isset ($_POST['fDomain'])) $fDomain = escape_string ($_POST['fDomain']);
if (!preg_match ('/@/',$fGoto))
{
$fGoto = $fGoto . "@" . escape_string ($_POST['fDomain']);
}
if (!check_alias ($fDomain))
{
$error = 1;
$tAddress = escape_string ($_POST['fAddress']);
$tGoto = $fGoto;
$tDomain = $fDomain;
$pCreate_alias_address_text = $PALANG['pCreate_alias_address_text_error3'];
}
if (empty ($fAddress) or !check_email ($fAddress))
{
$error = 1;
$tAddress = escape_string ($_POST['fAddress']);
$tGoto = $fGoto;
$tDomain = $fDomain;
$pCreate_alias_address_text = $PALANG['pCreate_alias_address_text_error1'];
}
if (empty ($fGoto) or !check_email ($fGoto))
{
$error = 1;
$tAddress = escape_string ($_POST['fAddress']);
$tGoto = $fGoto;
$tDomain = $fDomain;
$pCreate_alias_goto_text = $PALANG['pCreate_alias_goto_text_error'];
}
if (escape_string ($_POST['fAddress']) == "*") $fAddress = "@" . escape_string ($_POST['fDomain']);
$result = db_query ("SELECT * FROM $table_alias WHERE address='$fAddress'");
if ($result['rows'] == 1)
{
$error = 1;
$tAddress = escape_string ($_POST['fAddress']);
$tGoto = $fGoto;
$tDomain = $fDomain;
$pCreate_alias_address_text = $PALANG['pCreate_alias_address_text_error2'];
}
if ($fActive == "on")
{
$fActive = 1;
}
else
{
$fActive = 0;
}
$sqlActive=$fActive;
if ('pgsql'==$CONF['database_type'])
{
$sqlActive=($fActive) ? 'true' : 'false';
}
if ($error != 1)
{
if (preg_match ('/^\*@(.*)$/', $fGoto, $match)) $fGoto = "@" . $match[1];
$result = db_query ("INSERT INTO $table_alias (address,goto,domain,created,modified,active) VALUES ('$fAddress','$fGoto','$fDomain',NOW(),NOW(),'$sqlActive')");
if ($result['rows'] != 1)
{
$tDomain = $fDomain;
$tMessage = $PALANG['pCreate_alias_result_error'] . "<br />($fAddress -> $fGoto)<br />";
}
else
{
db_log ($CONF['admin_email'], $fDomain, "create alias", "$fAddress -> $fGoto");
$tDomain = $fDomain;
$tMessage = $PALANG['pCreate_alias_result_succes'] . "<br />($fAddress -> $fGoto)</br />";
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/create-alias.tpl");
include ("../templates/footer.tpl");
}
?>

123
admin/create-domain.php Normal file
View File

@@ -0,0 +1,123 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: create-domain.php
//
// Template File: admin_create-domain.tpl
//
// Template Variables:
//
// tMessage
// tDomain
// tDescription
// tAliases
// tMailboxes
// tMaxquota
// tDefaultaliases
//
// Form POST \ GET Variables:
//
// fDomain
// fDescription
// fAliases
// fMailboxes
// fMaxquota
// fDefaultaliases
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
$tAliases = $CONF['aliases'];
$tMailboxes = $CONF['mailboxes'];
$tMaxquota = $CONF['maxquota'];
$tTransport = $CONF['transport_default'];
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_create-domain.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
if (isset ($_POST['fDomain'])) $fDomain = escape_string ($_POST['fDomain']);
!empty ($_POST['fDescription']) ? $fDescription = escape_string ($_POST['fDescription']) : $fDescription = "No Description";
if (isset ($_POST['fAliases'])) $fAliases = escape_string ($_POST['fAliases']);
if (isset ($_POST['fMailboxes'])) $fMailboxes = escape_string ($_POST['fMailboxes']);
!empty ($_POST['fMaxquota']) ? $fMaxquota = escape_string ($_POST['fMaxquota']) : $fMaxquota = "0";
!empty ($_POST['fTransport']) ? $fTransport = escape_string ($_POST['fTransport']) : $fTransport = "virtual";
if (isset ($_POST['fDefaultaliases'])) $fDefaultaliases = escape_string ($_POST['fDefaultaliases']);
isset ($_POST['fBackupmx']) ? $fBackupmx = escape_string ($_POST['fBackupmx']) : $fBackupmx = "0";
if (empty ($fDomain) or domain_exist ($fDomain) or !check_domain ($fDomain))
{
$error = 1;
$tDomain = escape_string ($_POST['fDomain']);
$tDescription = escape_string ($_POST['fDescription']);
$tAliases = escape_string ($_POST['fAliases']);
$tMailboxes = escape_string ($_POST['fMailboxes']);
if (isset ($_POST['fMaxquota'])) $tMaxquota = escape_string ($_POST['fMaxquota']);
if (isset ($_POST['fTransport'])) $tTransport = escape_string ($_POST['fTransport']);
if (isset ($_POST['fDefaultaliases'])) $tDefaultaliases = escape_string ($_POST['fDefaultaliases']);
if (isset ($_POST['fBackupmx'])) $tBackupmx = escape_string ($_POST['fBackupmx']);
if (domain_exist ($fDomain)) $pAdminCreate_domain_domain_text = $PALANG['pAdminCreate_domain_domain_text_error'];
if (empty ($fDomain) or !check_domain ($fDomain)) $pAdminCreate_domain_domain_text = $PALANG['pAdminCreate_domain_domain_text_error2'];
}
if ($error != 1)
{
$tAliases = $CONF['aliases'];
$tMailboxes = $CONF['mailboxes'];
$tMaxquota = $CONF['maxquota'];
if ($fBackupmx == "on")
{
$fAliases = -1;
$fMailboxes = -1;
$fMaxquota = -1;
$fBackupmx = 1;
$sqlBackupmx = ('pgsql'==$CONF['database_type']) ? 'true' : 1;
}
else
{
$fBackupmx = 0;
$sqlBackupmx = ('pgsql'==$CONF['database_type']) ? 'false' : 0;
}
$result = db_query ("INSERT INTO $table_domain (domain,description,aliases,mailboxes,maxquota,transport,backupmx,created,modified) VALUES ('$fDomain','$fDescription',$fAliases,$fMailboxes,$fMaxquota,'$fTransport',$sqlBackupmx,NOW(),NOW())");
if ($result['rows'] != 1)
{
$tMessage = $PALANG['pAdminCreate_domain_result_error'] . "<br />($fDomain)<br />";
}
else
{
if ($fDefaultaliases == "on")
{
foreach ($CONF['default_aliases'] as $address=>$goto)
{
$address = $address . "@" . $fDomain;
$result = db_query ("INSERT INTO $table_alias (address,goto,domain,created,modified) VALUES ('$address','$goto','$fDomain',NOW(),NOW())");
}
}
$tMessage = $PALANG['pAdminCreate_domain_result_succes'] . "<br />($fDomain)</br />";
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_create-domain.tpl");
include ("../templates/footer.tpl");
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
}
?>

302
admin/create-mailbox.php Normal file
View File

@@ -0,0 +1,302 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: create-mailbox.php
//
// Template File: create-mailbox.tpl
//
// Template Variables:
//
// tMessage
// tUsername
// tName
// tQuota
// tDomain
//
// Form POST \ GET Variables:
//
// fUsername
// fPassword
// fPassword2
// fName
// fQuota
// fDomain
// fActive
// fMail
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
$list_domains = list_domains ();
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
$result = db_query ("SELECT * FROM $table_domain WHERE domain='$fDomain'");
if ($result['rows'] == 1)
{
$row = db_array ($result['result']);
$tQuota = $row['maxquota'];
}
$pCreate_mailbox_password_text = $PALANG['pCreate_mailbox_password_text'];
$pCreate_mailbox_name_text = $PALANG['pCreate_mailbox_name_text'];
$pCreate_mailbox_quota_text = $PALANG['pCreate_mailbox_quota_text'];
if (isset ($_GET['domain'])) $tDomain = escape_string ($_GET['domain']);
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/create-mailbox.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
$pCreate_mailbox_password_text = $PALANG['pCreate_mailbox_password_text'];
$pCreate_mailbox_name_text = $PALANG['pCreate_mailbox_name_text'];
$pCreate_mailbox_quota_text = $PALANG['pCreate_mailbox_quota_text'];
if (isset ($_POST['fUsername']) && isset ($_POST['fDomain'])) $fUsername = escape_string ($_POST['fUsername']) . "@" . escape_string ($_POST['fDomain']);
$fUsername = strtolower ($fUsername);
if (isset ($_POST['fPassword'])) $fPassword = escape_string ($_POST['fPassword']);
if (isset ($_POST['fPassword2'])) $fPassword2 = escape_string ($_POST['fPassword2']);
isset ($_POST['fName']) ? $fName = escape_string ($_POST['fName']) : $fName = "No Name";
if (isset ($_POST['fDomain'])) $fDomain = escape_string ($_POST['fDomain']);
isset ($_POST['fQuota']) ? $fQuota = intval($_POST['fQuota']) : $fQuota = 0;
isset ($_POST['fActive']) ? $fActive = escape_string ($_POST['fActive']) : $fActive = "1";
if (isset ($_POST['fMail'])) $fMail = escape_string ($_POST['fMail']);
if (!check_mailbox ($fDomain))
{
$error = 1;
$tUsername = escape_string ($_POST['fUsername']);
$tName = $fName;
$tQuota = $fQuota;
$tDomain = $fDomain;
$pCreate_mailbox_username_text = $PALANG['pCreate_mailbox_username_text_error3'];
}
if (empty ($fUsername) or !check_email ($fUsername))
{
$error = 1;
$tUsername = escape_string ($_POST['fUsername']);
$tName = $fName;
$tQuota = $fQuota;
$tDomain = $fDomain;
$pCreate_mailbox_username_text = $PALANG['pCreate_mailbox_username_text_error1'];
}
if (empty ($fPassword) or empty ($fPassword2) or ($fPassword != $fPassword2))
{
if (empty ($fPassword) and empty ($fPassword2) and $CONF['generate_password'] == "YES")
{
$fPassword = generate_password ();
}
else
{
$error = 1;
$tUsername = escape_string ($_POST['fUsername']);
$tName = $fName;
$tQuota = $fQuota;
$tDomain = $fDomain;
$pCreate_mailbox_password_text = $PALANG['pCreate_mailbox_password_text_error'];
}
}
if ($CONF['quota'] == "YES")
{
if (!check_quota ($fQuota, $fDomain))
{
$error = 1;
$tUsername = escape_string ($_POST['fUsername']);
$tName = $fName;
$tQuota = $fQuota;
$tDomain = $fDomain;
$pCreate_mailbox_quota_text = $PALANG['pCreate_mailbox_quota_text_error'];
}
}
$result = db_query ("SELECT * FROM $table_alias WHERE address='$fUsername'");
if ($result['rows'] == 1)
{
$error = 1;
$tUsername = escape_string ($_POST['fUsername']);
$tName = $fName;
$tQuota = $fQuota;
$tDomain = $fDomain;
$pCreate_mailbox_username_text = $PALANG['pCreate_mailbox_username_text_error2'];
}
if ($error != 1)
{
$password = pacrypt ($fPassword);
if ($CONF['domain_path'] == "YES")
{
if ($CONF['domain_in_mailbox'] == "YES")
{
$maildir = $fDomain . "/" . $fUsername . "/";
}
else
{
$maildir = $fDomain . "/" . escape_string ($_POST['fUsername']) . "/";
}
}
else
{
$maildir = $fUsername . "/";
}
if (!empty ($fQuota))
{
$quota = multiply_quota ($fQuota);
}
else
{
$quota = 0;
}
if ($fActive == "on")
{
$fActive = 1;
}
else
{
$fActive = 0;
}
$sqlActive=$fActive;
if ('pgsql'==$CONF['database_type'])
{
$sqlActive=($fActive) ? 'true' : 'false';
}
if ('pgsql'==$CONF['database_type']) { $result=db_query("BEGIN"); }
$result = db_query ("INSERT INTO $table_alias (address,goto,domain,created,modified,active) VALUES ('$fUsername','$fUsername','$fDomain',NOW(),NOW(),'$sqlActive')");
if ($result['rows'] != 1)
{
$tDomain = $fDomain;
$tMessage = $PALANG['pAlias_result_error'] . "<br />($fUsername -> $fUsername)</br />";
}
$result = db_query ("INSERT INTO $table_mailbox (username,password,name,maildir,quota,domain,created,modified,active) VALUES ('$fUsername','$password','$fName','$maildir',$quota,'$fDomain',NOW(),NOW(),'$sqlActive')");
if ($result['rows'] != 1)
{
$tDomain = $fDomain;
$tMessage .= $PALANG['pCreate_mailbox_result_error'] . "<br />($fUsername)<br />";
}
else
{
$error=TRUE; // Being pessimistic
if (mailbox_postcreation($fUsername,$fDomain,$maildir))
{
if ('pgsql'==$CONF['database_type'])
{
$result=db_query("COMMIT");
/* should really not be possible: */
if (!$result) die('COMMIT-query failed.');
}
$error=FALSE;
} else {
$tMessage .= $PALANG['pCreate_mailbox_result_error'] . "<br />($fUsername)<br />";
if ('pgsql'==$CONF['database_type'])
{
$result=db_query("ROLLBACK");
/* should really not be possible: */
if (!$result) die('ROLLBACK-query failed.');
} else {
/*
When we cannot count on transactions, we need to move forward, despite
the problems.
*/
$error=FALSE;
}
}
if (!$error)
{
db_log ($CONF['admin_email'], $fDomain, "create mailbox", $fUsername);
$tDomain = $fDomain;
if (create_mailbox_subfolders($fUsername,$fPassword))
{
$tMessage = $PALANG['pCreate_mailbox_result_succes'] . "<br />($fUsername";
} else {
$tMessage = $PALANG['pCreate_mailbox_result_succes_nosubfolders'] . "<br />($fUsername";
}
if ($CONF['generate_password'] == "YES")
{
$tMessage .= " / $fPassword)</br />";
}
else
{
if ($CONF['show_password'] == "YES")
{
$tMessage .= " / $fPassword)</br />";
}
else
{
$tMessage .= ")</br />";
}
}
$tQuota = $CONF['maxquota'];
if ($fMail == "on")
{
$fTo = $fUsername;
$fFrom = $CONF['admin_email'];
$fHeaders = "To: " . $fTo . "\n";
$fHeaders .= "From: " . $fFrom . "\n";
if (!empty ($PALANG['charset']))
{
$fHeaders .= "Subject: " . encode_header ($PALANG['pSendmail_subject_text'], $PALANG['charset']) . "\n";
$fHeaders .= "MIME-Version: 1.0\n";
$fHeaders .= "Content-Type: text/plain; charset=" . $PALANG['charset'] . "\n";
$fHeaders .= "Content-Transfer-Encoding: 8bit\n";
}
else
{
$fHeaders .= "Subject: " . $PALANG['pSendmail_subject_text'] . "\n\n";
}
$fHeaders .= $CONF['welcome_text'];
if (!smtp_mail ($fTo, $fFrom, $fHeaders))
{
$tMessage .= "<br />" . $PALANG['pSendmail_result_error'] . "<br />";
}
else
{
$tMessage .= "<br />" . $PALANG['pSendmail_result_succes'] . "<br />";
}
}
}
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/create-mailbox.tpl");
include ("../templates/footer.tpl");
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
}
?>

156
admin/delete.php Normal file
View File

@@ -0,0 +1,156 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: delete.php
//
// Template File: message.tpl
//
// Template Variables:
//
// tMessage
//
// Form POST \ GET Variables:
//
// fTable
// fWhere
// fDelete
// fDomain
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['table'])) $fTable = escape_string ($_GET['table']);
if (isset ($_GET['where'])) $fWhere = escape_string ($_GET['where']);
if (isset ($_GET['delete'])) $fDelete = escape_string ($_GET['delete']);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
if ($CONF['database_type'] == "pgsql") db_query('BEGIN');
$error=0;
if (empty ($fTable))
{
$error = 1;
}
if ($fTable == "domain")
{
$result_domain_admins = db_delete ($table_domain_admins,$fWhere,$fDelete);
$result_alias = db_delete ($table_alias,$fWhere,$fDelete);
$result_mailbox = db_delete ($table_mailbox,$fWhere,$fDelete);
$result_log = db_delete ($table_log,$fWhere,$fDelete);
if ($CONF['vacation'] == "YES")
{
$result_vacation = db_delete ($table_vacation,$fWhere,$fDelete);
}
$result_domain = db_delete ($table_domain,$fWhere,$fDelete);
if (!$result_domain || !domain_postdeletion($fDelete))
{
$error = 1;
$tMessage = $PALANG['pAdminDelete_domain_error'];
}
else
{
$url = "list-domain.php";
}
}
if ($fTable == "admin")
{
$result_admin = db_delete ($table_admin,$fWhere,$fDelete);
$result_domain_admins = db_delete ($table_domain_admins,$fWhere,$fDelete);
if (!($result_admin == 1) and ($result_domain_admins >= 0))
{
$error = 1;
$tMessage = $PALANG['pAdminDelete_admin_error'];
}
else
{
$url = "list-admin.php";
}
}
if ($fTable == "alias" or $fTable == "mailbox")
{
if ($CONF['database_type'] == "pgsql") db_query('BEGIN');
$result = db_query ("DELETE FROM $table_alias WHERE address='$fDelete' AND domain='$fDomain'");
if ($result['rows'] != 1)
{
$error = 1;
$tMessage = $PALANG['pDelete_delete_error'] . "<b>$fDelete</b> (alias)!</span>";
}
else
{
$url = "list-virtual.php?domain=$fDomain";
db_log ($CONF['admin_email'], $fDomain, "delete alias", $fDelete);
}
if (!$error)
{
$result = db_query ("SELECT * FROM $table_mailbox WHERE username='$fDelete' AND domain='$fDomain'");
if ($result['rows'] == 1)
{
$result = db_query ("DELETE FROM $table_mailbox WHERE username='$fDelete' AND domain='$fDomain'");
$postdel_res=mailbox_postdeletion($fDelete,$fDomain);
if ($result['rows'] != 1 || !$postdel_res)
{
$error = 1;
$tMessage = $PALANG['pDelete_delete_error'] . "<b>$fDelete</b> (";
if ($result['rows']!=1)
{
$tMessage.='mailbox';
if (!$postdel_res) $tMessage.=', ';
}
if (!$postdel_res)
{
$tMessage.='post-deletion';
}
$tMessage.=')</span>';
}
else
{
$url = "list-virtual.php?domain=$fDomain";
db_query ("DELETE FROM $table_vacation WHERE email='$fDelete' AND domain='$fDomain'");
db_log ($CONF['admin_email'], $fDomain, "delete mailbox", $fDelete);
}
}
}
}
if ($error == 1)
{
if ($CONF['database_type']=='pgsql') { db_query('ROLLBACK'); }
} else {
if ($CONF['database_type']=='pgsql') { db_query('COMMIT'); }
header ("Location: $url");
exit;
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/message.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
include ("../templates/header.tpl");
include ("../templates/menu.tpl");
include ("../templates/message.tpl");
include ("../templates/footer.tpl");
}
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

View File

@@ -0,0 +1,64 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: edit-active.php
//
// Template File: message.tpl
//
// Template Variables:
//
// tMessage
//
// Form POST \ GET Variables:
//
// fUsername
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['username'])) $fUsername = escape_string ($_GET['username']);
$sqlSet='active=1-active';
if ('pgsql'==$CONF['database_type']) $sqlSet='active=NOT active';
$result = db_query ("UPDATE $table_admin SET $sqlSet,modified=NOW() WHERE username='$fUsername'");
if ($result['rows'] != 1)
{
$error = 1;
$tMessage = $PALANG['pAdminEdit_admin_result_error'];
}
if ($error != 1)
{
header ("Location: list-admin.php");
exit;
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/message.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/message.tpl");
include ("../templates/footer.tpl");
}
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

View File

@@ -0,0 +1,63 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: edit-active.php
//
// Template File: message.tpl
//
// Template Variables:
//
// tMessage
//
// Form POST \ GET Variables:
//
// fDomain
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
$sqlSet='active=1-active';
if ('pgsql'==$CONF['database_type']) $sqlSet='active=NOT active';
$result = db_query ("UPDATE $table_domain SET $sqlSet,modified=NOW() WHERE domain='$fDomain'");
if ($result['rows'] != 1)
{
$error = 1;
$tMessage = $PALANG['pAdminEdit_domain_result_error'];
}
if ($error != 1)
{
header ("Location: list-domain.php");
exit;
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/message.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/message.tpl");
include ("../templates/footer.tpl");
}
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

93
admin/edit-active.php Normal file
View File

@@ -0,0 +1,93 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: edit-active.php
//
// Template File: message.tpl
//
// Template Variables:
//
// tMessage
//
// Form POST \ GET Variables:
//
// fUsername
// fDomain
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['username'])) $fUsername = escape_string ($_GET['username']);
if (isset ($_GET['alias'])) $fAlias = escape_string ($_GET['alias']); else $fAlias = escape_string ($_GET['username']);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
if ($fUsername != '')
{
$query = "UPDATE $table_mailbox SET active=1-active WHERE username='$fUsername' AND domain='$fDomain'";
if ('pgsql'==$CONF['database_type'])
{
$query = "UPDATE $table_mailbox SET active=NOT active WHERE username='$fUsername' AND domain='$fDomain'";
}
$result = db_query ($query);
if ($result['rows'] != 1)
{
$error = 1;
$tMessage = $PALANG['pEdit_mailbox_result_error'];
}
else
{
db_log ($CONF['admin_email'], $fDomain, "edit active", $fUsername);
}
}
if ($fAlias != '')
{
$query = "UPDATE $table_alias SET active=1-active WHERE address='$fAlias' AND domain='$fDomain'";
if ('pgsql'==$CONF['database_type'])
{
$query = "UPDATE $table_alias SET active=NOT active WHERE address='$fAlias' AND domain='$fDomain'";
}
$result = db_query ($query);
if ($result['rows'] != 1)
{
$error = 1;
$tMessage = $PALANG['pEdit_mailbox_result_error'] . " alias" . $result['rows'];
}
else
{
db_log ($CONF['admin_email'], $fDomain, "edit alias active", $fAlias);
}
}
if ($error != 1)
{
header ("Location: list-virtual.php?domain=$fDomain");
exit;
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/message.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/message.tpl");
include ("../templates/footer.tpl");
}
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

147
admin/edit-admin.php Normal file
View File

@@ -0,0 +1,147 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: edit-admin.php
//
// Template File: admin_edit-admin.tpl
//
// Template Variables:
//
// tDescription
// tAliases
// tMailboxes
// tMaxquota
// tActive
//
// Form POST \ GET Variables:
//
// fDescription
// fAliases
// fMailboxes
// fMaxquota
// fActive
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['username'])) $username = escape_string ($_GET['username']);
$list_domains = list_domains ();
isset ($_GET['username']) ? $tDomains = list_domains_for_admin ($username) : $tDomains = "";
$result = db_query ("SELECT * FROM $table_domain_admins WHERE username='$username'");
if ($result['rows'] == 1)
{
$row = db_array ($result['result']);
if ($row['domain'] == 'ALL') $tSadmin = '1';
}
$result = db_query ("SELECT * FROM $table_admin WHERE username='$username'");
if ($result['rows'] == 1)
{
$row = db_array ($result['result']);
$tActive = $row['active'];
if ('pgsql'==$CONF['database_type']) $tActive=('t'==$tActive) ? TRUE:FALSE;
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_edit-admin.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
if (isset ($_GET['username'])) $username = escape_string ($_GET['username']);
if (isset ($_POST['fPassword'])) $fPassword = escape_string ($_POST['fPassword']);
if (isset ($_POST['fPassword2'])) $fPassword2 = escape_string ($_POST['fPassword2']);
$fActive=(isset($_POST['fActive'])) ? escape_string ($_POST['fActive']) : FALSE;
$fSadmin=(isset($_POST['fSadmin'])) ? escape_string ($_POST['fSadmin']) : FALSE;
if (isset ($_POST['fDomains'])) $fDomains = $_POST['fDomains'];
$list_domains = list_domains ();
if ($fPassword != $fPassword2)
{
$error = 1;
$tActive = $fActive;
$tDomains = escape_string ($_POST['fDomains']);
$pAdminEdit_admin_password_text = $PALANG['pAdminEdit_admin_password_text_error'];
}
if ($error != 1)
{
if ($fActive == "on") $fActive = 1;
$sqlActive=$fActive;
if ('pgsql'==$CONF['database_type']) $sqlActive=($fActive) ? 'true' : 'false';
if ($fSadmin == "on") $fSadmin = 'ALL';
if (empty ($fPassword) and empty ($fPassword2))
{
$result = db_query ("UPDATE $table_admin SET modified=NOW(),active='$sqlActive' WHERE username='$username'");
}
else
{
$password = pacrypt ($fPassword);
$result = db_query ("UPDATE $table_admin SET password='$password',modified=NOW(),active='$sqlActive' WHERE username='$username'");
}
if (sizeof ($fDomains) > 0)
{
for ($i = 0; $i < sizeof ($fDomains); $i++)
{
$domain = $fDomains[$i];
$result_domains = db_query ("INSERT INTO $table_domain_admins (username,domain,created) VALUES ('$username','$domain',NOW())");
}
}
if ($result['rows'] == 1)
{
if (isset ($fDomains[0]))
{
$result = db_query ("DELETE FROM $table_domain_admins WHERE username='$username'");
if ($fSadmin == 'ALL')
{
$result = db_query ("INSERT INTO $table_domain_admins (username,domain,created) VALUES ('$username','ALL',NOW())");
}
else
{
if ($fDomains[0] != '')
for ($i = 0; $i < sizeof ($fDomains); $i++)
{
$domain = $fDomains[$i];
$result = db_query ("INSERT INTO $table_domain_admins (username,domain,created) VALUES ('$username','$domain',NOW())");
}
}
}
header ("Location: list-admin.php");
exit;
}
else
{
$tMessage = $PALANG['pAdminEdit_admin_result_error'];
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_edit-admin.tpl");
include ("../templates/footer.tpl");
}
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

108
admin/edit-alias.php Normal file
View File

@@ -0,0 +1,108 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: edit-alias.php
//
// Template File: edit-alias.tpl
//
// Template Variables:
//
// tMessage
// tGoto
//
// Form POST \ GET Variables:
//
// fAddress
// fDomain
// fGoto
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['address'])) $fAddress = escape_string ($_GET['address']);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
$result = db_query ("SELECT * FROM $table_alias WHERE address='$fAddress' AND domain='$fDomain'");
if ($result['rows'] == 1)
{
$row = db_array ($result['result']);
$tGoto = $row['goto'];
}
else
{
$tMessage = $PALANG['pEdit_alias_address_error'];
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/edit-alias.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
$pEdit_alias_goto = $PALANG['pEdit_alias_goto'];
if (isset ($_GET['address'])) $fAddress = escape_string ($_GET['address']);
$fAddress = strtolower ($fAddress);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
if (isset ($_POST['fGoto'])) $fGoto = escape_string ($_POST['fGoto']);
$fGoto = strtolower ($fGoto);
if (empty ($fGoto))
{
$error = 1;
$tGoto = $fGoto;
$tMessage = $PALANG['pEdit_alias_goto_text_error1'];
}
$goto = preg_replace ('/\\\r\\\n/', ',', $fGoto);
$goto = preg_replace ('/\r\n/', ',', $goto);
$goto = preg_replace ('/[\s]+/i', '', $goto);
$goto = preg_replace ('/\,*$/', '', $goto);
$array = preg_split ('/,/', $goto);
for ($i = 0; $i < sizeof ($array); $i++) {
if (in_array ("$array[$i]", $CONF['default_aliases'])) continue;
if (empty ($array[$i])) continue;
if (!check_email ($array[$i]))
{
$error = 1;
$tGoto = $goto;
$tMessage = $PALANG['pEdit_alias_goto_text_error2'] . "$array[$i]</span>";
}
}
if ($error != 1)
{
$result = db_query ("UPDATE $table_alias SET goto='$goto',modified=NOW() WHERE address='$fAddress' AND domain='$fDomain'");
if ($result['rows'] != 1)
{
$tMessage = $PALANG['pEdit_alias_result_error'];
}
else
{
db_log ($CONF['admin_email'], $fDomain, "edit alias", "$fAddress -> $goto");
header ("Location: list-virtual.php?domain=$fDomain");
exit;
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/edit-alias.tpl");
include ("../templates/footer.tpl");
}
?>

110
admin/edit-domain.php Normal file
View File

@@ -0,0 +1,110 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: edit-domain.php
//
// Template File: admin_edit-domain.tpl
//
// Template Variables:
//
// tDescription
// tAliases
// tMailboxes
// tMaxquota
// tActive
//
// Form POST \ GET Variables:
//
// fDescription
// fAliases
// fMailboxes
// fMaxquota
// fActive
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['domain']))
{
$domain = escape_string ($_GET['domain']);
$domain_properties = get_domain_properties ($domain);
$tDescription = $domain_properties['description'];
$tAliases = $domain_properties['aliases'];
$tMailboxes = $domain_properties['mailboxes'];
$tMaxquota = $domain_properties['maxquota'];
$tTransport = $domain_properties['transport'];
$tBackupmx = $domain_properties['backupmx'];
$tActive = $domain_properties['active'];
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_edit-domain.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
if (isset ($_GET['domain'])) $domain = escape_string ($_GET['domain']);
if (isset ($_POST['fDescription'])) $fDescription = escape_string ($_POST['fDescription']);
if (isset ($_POST['fAliases'])) $fAliases = intval($_POST['fAliases']);
if (isset ($_POST['fMailboxes'])) $fMailboxes = intval($_POST['fMailboxes']);
if (isset ($_POST['fMaxquota'])) {
$fMaxquota = intval($_POST['fMaxquota']);
} else {
$fMaxquota = 0;
}
if (isset ($_POST['fTransport'])) $fTransport = escape_string ($_POST['fTransport']);
if (isset ($_POST['fBackupmx'])) $fBackupmx = escape_string ($_POST['fBackupmx']);
if (isset ($_POST['fActive'])) $fActive = escape_string ($_POST['fActive']);
if ($fBackupmx == "on")
{
$fAliases = -1;
$fMailboxes = -1;
$fMaxquota = -1;
$fBackupmx = 1;
$sqlBackupmx = ('pgsql'==$CONF['database_type']) ? 'true' : 1;
}
else
{
$fBackupmx = 0;
$sqlBackupmx = ('pgsql'==$CONF['database_type']) ? 'false' : 0;
}
if ($fActive == "on") { $fActive = 1; }
$sqlActive=$fActive;
if ('pgsql'==$CONF['database_type']) $sqlActive = $fActive ? 'true':'false';
$result = db_query ("UPDATE $table_domain SET description='$fDescription',aliases=$fAliases,mailboxes=$fMailboxes,maxquota=$fMaxquota,transport='$fTransport',backupmx='$sqlBackupmx',active='$sqlActive',modified=NOW() WHERE domain='$domain'");
if ($result['rows'] == 1)
{
header ("Location: list-domain.php");
exit;
}
else
{
$tMessage = $PALANG['pAdminEdit_domain_result_error'];
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_edit-domain.tpl");
include ("../templates/footer.tpl");
}
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

162
admin/edit-mailbox.php Normal file
View File

@@ -0,0 +1,162 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: edit-mailbox.php
//
// Template File: edit-mailbox.tpl
//
// Template Variables:
//
// tMessage
// tName
// tQuota
//
// Form POST \ GET Variables:
//
// fUsername
// fDomain
// fPassword
// fPassword2
// fName
// fQuota
// fActive
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['username'])) $fUsername = escape_string ($_GET['username']);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
$result = db_query ("SELECT * FROM $table_mailbox WHERE username='$fUsername' AND domain='$fDomain'");
if ($result['rows'] == 1)
{
$row = db_array ($result['result']);
$tName = $row['name'];
$tQuota = divide_quota ($row['quota']);
$tActive = $row['active'];
if ('pgsql'==$CONF['database_type'])
{
$tActive = ('t'==$row['active']) ? TRUE:FALSE;
}
$result = db_query ("SELECT * FROM $table_domain WHERE domain='$fDomain'");
if ($result['rows'] == 1)
{
$row = db_array ($result['result']);
$tMaxquota = $row['maxquota'];
}
}
else
{
$tMessage = $PALANG['pEdit_mailbox_login_error'];
}
$pEdit_mailbox_name_text = $PALANG['pEdit_mailbox_name_text'];
$pEdit_mailbox_quota_text = $PALANG['pEdit_mailbox_quota_text'];
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/edit-mailbox.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
if (isset ($_GET['username'])) $fUsername = escape_string ($_GET['username']);
$fUsername = strtolower ($fUsername);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
if (isset ($_POST['fPassword'])) $fPassword = escape_string ($_POST['fPassword']);
if (isset ($_POST['fPassword2'])) $fPassword2 = escape_string ($_POST['fPassword2']);
if (isset ($_POST['fName'])) $fName = escape_string ($_POST['fName']);
if (isset ($_POST['fQuota'])) $fQuota = intval($_POST['fQuota']);
if (isset ($_POST['fActive'])) $fActive = escape_string ($_POST['fActive']);
if ($fPassword != $fPassword2)
{
$error = 1;
$tName = $fName;
$tQuota = $fQuota;
$tActive = $fActive;
$pEdit_mailbox_password_text = $PALANG['pEdit_mailbox_password_text_error'];
}
if ($CONF['quota'] == "YES")
{
if (!check_quota ($fQuota, $fDomain))
{
$error = 1;
$tName = $fName;
$tQuota = $fQuota;
$tActive = $fActive;
$pEdit_mailbox_quota_text = $PALANG['pEdit_mailbox_quota_text_error'];
}
}
if ($error != 1)
{
if (!empty ($fQuota))
{
$quota = multiply_quota ($fQuota);
}
else
{
$quota = 0;
}
if ($fActive == "on")
{
$fActive = 1;
}
else
{
$fActive = 0;
}
$sqlActive=$fActive;
if ('pgsql'==$CONF['database_type'])
{
$sqlActive = ($fActive) ? 'true' : 'false';
}
if (empty ($fPassword) and empty ($fPassword2))
{
$result = db_query ("UPDATE $table_mailbox SET name='$fName',quota=$quota,modified=NOW(),active='$sqlActive' WHERE username='$fUsername' AND domain='$fDomain'");
if ($result['rows'] == 1) $result = db_query ("UPDATE $table_alias SET modified=NOW(),active='$sqlActive' WHERE address='$fUsername' AND domain='$fDomain'");
}
else
{
$password = pacrypt ($fPassword);
$result = db_query ("UPDATE $table_mailbox SET password='$password',name='$fName',quota=$quota,modified=NOW(),active='$sqlActive' WHERE username='$fUsername' AND domain='$fDomain'");
if ($result['rows'] == 1) $result = db_query ("UPDATE $table_alias SET modified=NOW(),active='$sqlActive' WHERE address='$fUsername' AND domain='$fDomain'");
}
if ($result['rows'] != 1)
{
$tMessage = $PALANG['pEdit_mailbox_result_error'];
}
else
{
db_log ($CONF['admin_email'], $fDomain, "edit mailbox", $fUsername);
header ("Location: list-virtual.php?domain=$fDomain");
exit;
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/edit-mailbox.tpl");
include ("../templates/footer.tpl");
}
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

22
admin/index.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: index.php
//
// Template File: -none-
//
// Template Variables:
//
// -none-
//
// Form POST \ GET Variables:
//
// -none-
//
header ("Location: list-admin.php");
exit;
?>

52
admin/list-admin.php Normal file
View File

@@ -0,0 +1,52 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: list-admin.php
//
// Template File: list-admin.tpl
//
// Template Variables:
//
// -none-
//
// Form POST \ GET Variables:
//
// -none-
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
$list_admins = list_admins ();
if ((is_array ($list_admins) and sizeof ($list_admins) > 0))
{
for ($i = 0; $i < sizeof ($list_admins); $i++)
{
$admin_properties[$i] = get_admin_properties ($list_admins[$i]);
}
}
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_list-admin.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_list-admin.tpl");
include ("../templates/footer.tpl");
}
?>

82
admin/list-domain.php Normal file
View File

@@ -0,0 +1,82 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: list-domain.php
//
// Template File: admin_list-domain.tpl
//
// Template Variables:
//
// -none-
//
// Form POST \ GET Variables:
//
// fUsername
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
$list_admins = list_admins ();
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['username']))
{
$fUsername = escape_string ($_GET['username']);
$list_domains = list_domains_for_admin ($fUsername);
if ($list_domains != 0)
{
for ($i = 0; $i < sizeof ($list_domains); $i++)
{
$domain_properties[$i] = get_domain_properties ($list_domains[$i]);
}
}
}
else
{
$list_domains = list_domains ();
if ((is_array ($list_domains) and sizeof ($list_domains) > 0))
for ($i = 0; $i < sizeof ($list_domains); $i++)
{
$domain_properties[$i] = get_domain_properties ($list_domains[$i]);
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_list-domain.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
if (isset ($_POST['fUsername']))
{
$fUsername = escape_string ($_POST['fUsername']);
$list_domains = list_domains_for_admin ($fUsername);
}
if (!empty ($list_domains))
{
for ($i = 0; $i < sizeof ($list_domains); $i++)
{
$domain_properties[$i] = get_domain_properties ($list_domains[$i]);
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_list-domain.tpl");
include ("../templates/footer.tpl");
}
?>

198
admin/list-virtual.php Normal file
View File

@@ -0,0 +1,198 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: list-virtual.php
//
// Template File: admin_list-virtual.tpl
//
// Template Variables:
//
// tMessage
// tAlias
// tMailbox
//
// Form POST \ GET Variables:
//
// fDomain
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
$list_domains = list_domains ();
$tAlias = array();
$tMailbox = array();
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
$fDisplay = 0;
$page_size = $CONF['page_size'];
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
if (isset ($_GET['limit'])) $fDisplay = intval ($_GET['limit']);
if ((is_array ($list_domains) and sizeof ($list_domains) > 0)) if (empty ($fDomain)) $fDomain = $list_domains[0];
$limit = get_domain_properties ($fDomain);
if ((is_array ($list_domains) and sizeof ($list_domains) > 0)) if (empty ($fDomain)) $fDomain = $list_domains[1];
$query = "SELECT $table_alias.address,$table_alias.goto,$table_alias.modified,$table_alias.active FROM $table_alias LEFT JOIN $table_mailbox ON $table_alias.address=$table_mailbox.username WHERE $table_alias.domain='$fDomain' AND $table_mailbox.maildir IS NULL ORDER BY $table_alias.address LIMIT $fDisplay, $page_size";
if ('pgsql'==$CONF['database_type'])
{
$query = "SELECT address,goto,extract(epoch from modified) as modified,active FROM $table_alias WHERE domain='$fDomain' AND NOT EXISTS(SELECT 1 FROM $table_mailbox WHERE username=$table_alias.address) ORDER BY address LIMIT $page_size OFFSET $fDisplay";
}
$result = db_query ($query);
if ($result['rows'] > 0)
{
while ($row = db_array ($result['result']))
{
if ('pgsql'==$CONF['database_type'])
{
$row['modified']=gmstrftime('%c %Z',$row['modified']);
$row['active']=('t'==$row['active']) ? 1 : 0;
}
$tAlias[] = $row;
}
}
$query = "SELECT * FROM $table_mailbox WHERE domain='$fDomain' ORDER BY username LIMIT $fDisplay, $page_size";
if ('pgsql'==$CONF['database_type'])
{
$query = "SELECT *,extract(epoch from created) as uts_created,extract(epoch from modified) as uts_modified FROM $table_mailbox WHERE domain='$fDomain' ORDER BY username LIMIT $page_size OFFSET $fDisplay";
}
$result = db_query ($query);
if ($result['rows'] > 0)
{
while ($row = db_array ($result['result']))
{
if ('pgsql'==$CONF['database_type'])
{
$row['created']=gmstrftime('%c %Z',$row['uts_created']);
$row['modified']=gmstrftime('%c %Z',$row['uts_modified']);
$row['active']=('t'==$row['active']) ? 1 : 0;
}
$tMailbox[] = $row;
}
}
if (isset ($limit))
{
if ($fDisplay >= $page_size)
{
$tDisplay_back_show = 1;
$tDisplay_back = $fDisplay - $page_size;
}
if (($limit['alias_count'] > $page_size) or ($limit['mailbox_count'] > $page_size))
{
$tDisplay_up_show = 1;
}
if ((($fDisplay + $page_size) < $limit['alias_count']) or (($fDisplay + $page_size) < $limit['mailbox_count']))
{
$tDisplay_next_show = 1;
$tDisplay_next = $fDisplay + $page_size;
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_list-virtual.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
$fDisplay = 0;
$page_size = $CONF['page_size'];
if (isset ($_POST['fDomain'])) $fDomain = escape_string ($_POST['fDomain']);
if (isset ($_POST['limit'])) $fDisplay = intval ($_POST['limit']);
$limit = get_domain_properties ($fDomain);
if ($CONF['alias_control'] == "YES")
{
$query = "SELECT address,goto,modified,active FROM alias WHERE domain='$fDomain' ORDER BY address LIMIT $fDisplay, $page_size";
if ('pgsql'==$CONF['database_type'])
{
$query = "SELECT address,goto,extract(epoch from modified) as modified,active FROM alias WHERE domain='$fDomain' ORDER BY alias.address LIMIT $page_size OFFSET $fDisplay";
}
}
else
{
$query = "SELECT $table_alias.address,$table_alias.goto,$table_alias.modified,$table_alias.active FROM $table_alias LEFT JOIN $table_mailbox ON $table_alias.address=$table_mailbox.username WHERE $table_alias.domain='$fDomain' AND $table_mailbox.maildir IS NULL ORDER BY $table_alias.address LIMIT $fDisplay, $page_size";
if ('pgsql'==$CONF['database_type'])
{
$query = "SELECT $table_alias.address,$table_alias.goto,extract(epoch from $table_alias.modified) as modified,$table_alias.active FROM $table_alias LEFT JOIN $table_mailbox ON $table_alias.address=$table_mailbox.username WHERE $table_alias.domain='$fDomain' AND $table_mailbox.maildir IS NULL ORDER BY $table_alias.address LIMIT $page_size OFFSET $fDisplay";
}
}
$result = db_query ($query);
if ($result['rows'] > 0)
{
while ($row = db_array ($result['result']))
{
if ('pgsql'==$CONF['database_type'])
{
$row['modified']=gmstrftime('%c %Z',$row['modified']);
$row['active']=('t'==$row['active']) ? 1 : 0;
}
$tAlias[] = $row;
}
}
$query="SELECT * FROM $table_mailbox WHERE domain='$fDomain' ORDER BY username LIMIT $fDisplay, $page_size";
if ('pgsql'==$CONF['database_type'])
{
$query="SELECT *,extract(epoch from created) as uts_created,extract(epoch from modified) as uts_modified FROM $table_mailbox WHERE domain='$fDomain' ORDER BY username LIMIT $page_size OFFSET $fDisplay";
}
$result = db_query ($query);
if ($result['rows'] > 0)
{
while ($row = db_array ($result['result']))
{
if ('pgsql'==$CONF['database_type'])
{
$row['created']=gmstrftime('%c %Z',$row['uts_created']);
$row['modified']=gmstrftime('%c %Z',$row['uts_modified']);
$row['active']=('t'==$row['active']) ? 1 : 0;
}
$tMailbox[] = $row;
}
}
if (isset ($limit))
{
if ($fDisplay >= $page_size)
{
$tDisplay_back_show = 1;
$tDisplay_back = $fDisplay - $page_size;
}
if (($limit['alias_count'] > $page_size) or ($limit['mailbox_count'] > $page_size))
{
$tDisplay_up_show = 1;
}
if ((($fDisplay + $page_size) < $limit['alias_count']) or (($fDisplay + $page_size) < $limit['mailbox_count']))
{
$tDisplay_next_show = 1;
$tDisplay_next = $fDisplay + $page_size;
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_list-virtual.tpl");
include ("../templates/footer.tpl");
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
}
?>

156
admin/search.php Normal file
View File

@@ -0,0 +1,156 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: search.php
//
// Template File: search.tpl
//
// Template Variables:
//
// tAlias
// tMailbox
//
// Form POST \ GET Variables:
//
// fSearch
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
$tAlias = array();
$tMailbox = array();
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['search'])) $fSearch = escape_string ($_GET['search']);
if ($CONF['alias_control'] == "YES")
{
$query = "SELECT address,goto,modified,domain FROM alias WHERE address LIKE '%$fSearch%' OR goto LIKE '%$fSearch%' ORDER BY address";
if ('pgsql'==$CONF['database_type'])
{
$query = "SELECT address,goto,extract (epoch from modified) as modified,domain FROM alias WHERE address LIKE '%$fSearch%' OR goto LIKE '%$fSearch%' ORDER BY address";
}
}
else
{
$query = "SELECT $table_alias.address,$table_alias.goto,$table_alias.modified,$table_alias.domain FROM $table_alias LEFT JOIN $table_mailbox ON $table_alias.address=$table_mailbox.username WHERE $table_alias.address LIKE '%$fSearch%' AND $table_mailbox.maildir IS NULL ORDER BY $table_alias.address";
if ('pgsql'==$CONF['database_type'])
{
$query = "SELECT address,goto,extract(epoch from modified) as modified,domain FROM $table_alias WHERE address LIKE '%$fSearch%' AND NOT EXISTS(SELECT 1 FROM $table_mailbox WHERE username=$table_alias.address) ORDER BY address";
}
}
$result = db_query ("$query");
if ($result['rows'] > 0)
{
while ($row = db_array ($result['result']))
{
if ('pgsql'==$CONF['database_type'])
{
$row['modified'] = gmstrftime('%c %Z',$row['modified']);
}
$tAlias[] = $row;
}
}
$query = "SELECT * FROM $table_mailbox WHERE username LIKE '%$fSearch%' ORDER BY username";
if ('pgsql'==$CONF['database_type'])
{
$query = "SELECT *,extract(epoch from created) as uts_created,extract(epoch from modified) as uts_modified FROM $table_mailbox WHERE username LIKE '%$fSearch%' ORDER BY username";
}
$result = db_query ($query);
if ($result['rows'] > 0)
{
while ($row = db_array ($result['result']))
{
if ('pgsql'==$CONF['database_type'])
{
$row['created']=gmstrftime('%c %Z',$row['uts_created']);
$row['modified']=gmstrftime('%c %Z',$row['uts_modified']);
unset($row['uts_created']);
unset($row['uts_modified']);
}
$tMailbox[] = $row;
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_search.tpl");
include ("../templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
if (isset ($_POST['search'])) $fSearch = escape_string ($_POST['search']);
if ($CONF['alias_control'] == "YES")
{
$query = "SELECT address,goto,modified,domain FROM alias WHERE address LIKE '%$fSearch%' OR goto LIKE '%$fSearch%' ORDER BY address";
if ('pgsql'==$CONF['database_type'])
{
$query = "SELECT address,goto,extract (epoch from modified) as modified,domain FROM alias WHERE address LIKE '%$fSearch%' OR goto LIKE '%$fSearch%' ORDER BY address";
}
}
else
{
$query = "SELECT $table_alias.address,$table_alias.goto,$table_alias.modified,$table_alias.domain FROM $table_alias LEFT JOIN $table_mailbox ON $table_alias.address=$table_mailbox.username WHERE $table_alias.address LIKE '%$fSearch%' AND $table_mailbox.maildir IS NULL ORDER BY $table_alias.address";
if ('pgsql'==$CONF['database_type'])
{
$query = "SELECT $table_alias.address,$table_alias.goto,extract(epoch from $table_alias.modified) as $table_modified,$table_alias.domain FROM $table_alias LEFT JOIN $table_mailbox ON $table_alias.address=$table_mailbox.username WHERE $table_alias.address LIKE '%$fSearch%' AND $table_mailbox.maildir IS NULL ORDER BY $table_alias.address";
}
}
$result = db_query ("$query");
if ($result['rows'] > 0)
{
while ($row = db_array ($result['result']))
{
if ('pgsql'==$CONF['database_type'])
{
$row['modified'] = gmstrftime('%c %Z',$row['modified']);
}
$tAlias[] = $row;
}
}
$query = "SELECT * FROM $table_mailbox WHERE username LIKE '%$fSearch%' ORDER BY username";
if ('pgsql'==$CONF['database_type'])
{
$query = "SELECT *,extract(epoch from created) as uts_created,extract(epoch from modified) as uts_modified FROM $table_mailbox WHERE username LIKE '%$fSearch%' ORDER BY username";
}
$result = db_query ("$query");
if ($result['rows'] > 0)
{
while ($row = db_array ($result['result']))
{
if ('pgsql'==$CONF['database_type'])
{
$row['created']=gmstrftime('%c %Z',$row['uts_created']);
$row['modified']=gmstrftime('%c %Z',$row['uts_modified']);
unset($row['uts_created']);
unset($row['uts_modified']);
}
$tMailbox[] = $row;
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/admin_search.tpl");
include ("../templates/footer.tpl");
}
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

64
admin/viewlog.php Normal file
View File

@@ -0,0 +1,64 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: viewlog.php
//
// Template File: viewlog.tpl
//
// Template Variables:
//
// tMessage
// tLog
//
// Form POST \ GET Variables:
//
// fDomain
//
require ("../variables.inc.php");
require ("../config.inc.php");
require ("../functions.inc.php");
include ("../languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
$list_domains = list_domains ();
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if ((is_array ($list_domains) and sizeof ($list_domains) > 0)) $fDomain = $list_domains[0];
}
else
{
if (isset ($_POST['fDomain'])) $fDomain = escape_string ($_POST['fDomain']);
}
$query = "SELECT timestamp,username,domain,action,substring(data from 1 for 36) as data FROM $table_log WHERE domain='$fDomain' ORDER BY timestamp DESC LIMIT 10";
if ('pgsql'==$CONF['database_type'])
{
$query = "SELECT extract(epoch from timestamp) as timestamp,username,domain,action,substring(data from 1 for 36) as data FROM $table_log WHERE domain='$fDomain' ORDER BY timestamp DESC LIMIT 10";
}
$result = db_query ($query);
if ($result['rows'] > 0)
{
while ($row = db_array ($result['result']))
{
if ('pgsql'==$CONF['database_type'])
{
$row['timestamp']=gmstrftime('%c %Z',$row['timestamp']);
}
$tLog[] = $row;
}
}
include ("../templates/header.tpl");
include ("../templates/admin_menu.tpl");
include ("../templates/viewlog.tpl");
include ("../templates/footer.tpl");
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

248
config.inc.php.sample Normal file
View File

@@ -0,0 +1,248 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: config.inc.php
//
if (ereg ("config.inc.php", $_SERVER['PHP_SELF']))
{
header ("Location: login.php");
exit;
}
// Postfix Admin Path
// Set the location of your Postfix Admin installation here.
// You must enter complete url (http://domain.tld/) and full path (/var/www/postfixadmin)
$CONF['postfix_admin_url'] = '';
$CONF['postfix_admin_path'] = '';
// Language config
// Language files are located in './languages'.
$CONF['default_language'] = 'en';
// Database Config
// mysql = MySQL 3.23 and 4.0
// mysqli = MySQL 4.1
// pgsql = PostgreSQL
$CONF['database_type'] = 'mysql';
$CONF['database_host'] = 'localhost';
$CONF['database_user'] = 'postfixadmin';
$CONF['database_password'] = 'postfixadmin';
$CONF['database_name'] = 'postfix';
$CONF['database_prefix'] = '';
// Here, if you need, you can customize table names.
$CONF['database_prefix'] = '';
$CONF['database_tables'] = array (
'admin' => 'admin',
'alias' => 'alias',
'domain' => 'domain',
'domain_admins' => 'domain_admins',
'log' => 'log',
'mailbox' => 'mailbox',
'vacation' => 'vacation'
);
// Site Admin
// Define the Site Admins email address below.
// This will be used to send emails from to create mailboxes.
$CONF['admin_email'] = 'postmaster@change-this-to-your.domain.tld';
// Mail Server
// Hostname (FQDN) of your mail server.
// This is used to send email to Postfix in order to create mailboxes.
$CONF['smtp_server'] = 'localhost';
$CONF['smtp_port'] = '25';
// Encrypt
// In what way do you want the passwords to be crypted?
// md5crypt = internal postfix admin md5
// system = whatever you have set as your PHP system default
// cleartext = clear text passwords (ouch!)
$CONF['encrypt'] = 'md5crypt';
// Generate Password
// Generate a random password for a mailbox or admin and display it.
// If you want to automagically generate paswords set this to 'YES'.
$CONF['generate_password'] = 'NO';
// Show Password
// Always show password after adding a mailbox or admin.
// If you want to always see what password was set set this to 'YES'.
$CONF['show_password'] = 'NO';
// Page Size
// Set the number of entries that you would like to see
// in one page.
$CONF['page_size'] = '10';
// Default Aliases
// The default aliases that need to be created for all domains.
$CONF['default_aliases'] = array (
'abuse' => 'abuse@change-this-to-your.domain.tld',
'hostmaster' => 'hostmaster@change-this-to-your.domain.tld',
'postmaster' => 'postmaster@change-this-to-your.domain.tld',
'webmaster' => 'webmaster@change-this-to-your.domain.tld'
);
// Mailboxes
// If you want to store the mailboxes per domain set this to 'YES'.
// Example: /usr/local/virtual/domain.tld/username@domain.tld
$CONF['domain_path'] = 'NO';
// If you don't want to have the domain in your mailbox set this to 'NO'.
// Example: /usr/local/virtual/domain.tld/username
$CONF['domain_in_mailbox'] = 'YES';
// Default Domain Values
// Specify your default values below. Quota in MB.
$CONF['aliases'] = '10';
$CONF['mailboxes'] = '10';
$CONF['maxquota'] = '10';
// Quota
// When you want to enforce quota for your mailbox users set this to 'YES'.
$CONF['quota'] = 'NO';
// You can either use '1024000' or '1048576'
$CONF['quota_multiplier'] = '1024000';
// Transport
// If you want to define additional transport options for a domain set this to 'YES'.
// Read the transport file of the Postfix documentation.
$CONF['transport'] = 'NO';
// Transport options
// If you want to define additional transport options put them in array below.
$CONF['transport_options'] = array (
'virtual', // for virtual accounts
'local', // for system accounts
'relay' // for backup mx
);
// Transport default
// You should define default transport. It must be in array above.
$CONF['transport_default'] = 'virtual';
// Virtual Vacation
// If you want to use virtual vacation for you mailbox users set this to 'YES'.
// NOTE: Make sure that you install the vacation module. http://high5.net/postfixadmin/
$CONF['vacation'] = 'NO';
// This is the autoreply domain that you will need to set in your Postfix
// transport maps to handle virtual vacations. It does not need to be a
// real domain (i.e. you don't need to setup DNS for it).
$CONF['vacation_domain'] = 'autoreply.change-this-to-your.domain.tld';
// Vacation Control
// If you want to take control of users vacation set this to 'YES'.
// TODO: AT THIS MOMENT WE WANT TO SEE VACATION STATUS ONLY
$CONF['vacation_control'] ='YES';
// Vacation Control for admins
// Set to 'YES' if your domain admins should be able to edit user vacation.
// TODO: AT THIS MOMENT WE WANT TO SEE VACATION STATUS ONLY
$CONF['vacation_control_admin'] = 'YES';
// Alias Control
// Postfix Admin inserts an alias in the alias table for every mailbox it creates.
// The reason for this is that when you want catch-all and normal mailboxes
// to work you need to have the mailbox replicated in the alias table.
// If you want to take control of these aliases as well set this to 'YES'.
$CONF['alias_control'] = 'NO';
// Alias Control for admins
// Set to 'NO' if your domain admins shouldn't be able to edit user aliases.
$CONF['alias_control_admin'] = 'NO';
// Special Alias Control
// Set to 'NO' if your domain admins shouldn't be able to edit default aliases.
$CONF['special_alias_control'] = 'NO';
// Alias Goto Field Limit
// Set the max number of entries that you would like to see
// in one 'goto' field in overview, the rest will be hidden and "[and X more...]" will be added.
// '0' means no limits.
$CONF['alias_goto_limit'] = '0';
// Backup
// If you don't want backup tab set this to 'NO';
$CONF['backup'] = 'YES';
// Send Mail
// If you don't want sendmail tab set this to 'NO';
$CONF['sendmail'] = 'YES';
// Logging
// If you don't want logging set this to 'NO';
$CONF['logging'] = 'YES';
// Header
$CONF['show_header_text'] = 'NO';
$CONF['header_text'] = ':: Postfix Admin ::';
// Footer
// Below information will be on all pages.
// If you don't want the footer information to appear set this to 'NO'.
$CONF['show_footer_text'] = 'YES';
$CONF['footer_text'] = 'Return to change-this-to-your.domain.tld';
$CONF['footer_link'] = 'http://change-this-to-your.domain.tld';
// Welcome Message
// This message is send to every newly created mailbox.
// Change the text between EOM.
$CONF['welcome_text'] = <<<EOM
Hi,
Welcome to your new account.
EOM;
// When creating mailboxes, check that the domain-part of the
// address is legal by performing a name server look-up.
$CONF['emailcheck_resolve_domain']='YES';
// Optional:
// Script to run after creation of mailboxes.
// Note that this may fail if PHP is run in "safe mode", or if
// operating system features (such as SELinux) or limitations
// prevent the web-server from executing external scripts.
// $CONF['mailbox_postcreation_script']='sudo -u courier /usr/local/bin/postfixadmin-mailbox-postcreation.sh';
// Optional:
// Script to run after deletion of mailboxes.
// Note that this may fail if PHP is run in "safe mode", or if
// operating system features (such as SELinux) or limitations
// prevent the web-server from executing external scripts.
// $CONF['mailbox_postdeletion_script']='sudo -u courier /usr/local/bin/postfixadmin-mailbox-postdeletion.sh';
// Optional:
// Script to run after deletion of domains.
// Note that this may fail if PHP is run in "safe mode", or if
// operating system features (such as SELinux) or limitations
// prevent the web-server from executing external scripts.
// $CONF['domain_postdeletion_script']='sudo -u courier /usr/local/bin/postfixadmin-domain-postdeletion.sh';
// Optional:
// Sub-folders which should automatically be created for new users.
// The sub-folders will also be subscribed to automatically.
// Will only work with IMAP server which implement sub-folders.
// Will not work with POP3.
// If you define create_mailbox_subdirs, then the
// create_mailbox_subdirs_host must also be defined.
//
// $CONF['create_mailbox_subdirs']=array('Spam');
// $CONF['create_mailbox_subdirs_host']='localhost';
//
// Normally, the TCP port number does not have to be specified.
// $CONF['create_mailbox_subdirs_hostport']=143;
//
// If you have trouble connecting to the IMAP-server, then specify
// a value for $CONF['create_mailbox_subdirs_hostoptions']. These
// are some examples to experiment with:
// $CONF['create_mailbox_subdirs_hostoptions']=array('notls');
// $CONF['create_mailbox_subdirs_hostoptions']=array('novalidate-cert','norsh');
// See also the "Optional flags for names" table at
// http://www.php.net/manual/en/function.imap-open.php
//
// END OF CONFIG FILE
//
?>

154
create-alias.php Normal file
View File

@@ -0,0 +1,154 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: create-alias.php
//
// Template File: create-alias.tpl
//
// Template Variables:
//
// tMessage
// tAddress
// tGoto
// tDomain
//
// Form POST \ GET Variables:
//
// fAddress
// fGoto
// fDomain
//
require ("./variables.inc.php");
require ("./config.inc.php");
require ("./functions.inc.php");
include ("./languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
if (!check_admin($SESSID_USERNAME))
{
$list_domains = list_domains_for_admin ($SESSID_USERNAME);
}
else
{
$list_domains = list_domains ();
}
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
$pCreate_alias_goto_text = $PALANG['pCreate_alias_goto_text'];
if (isset ($_GET['domain'])) $tDomain = escape_string ($_GET['domain']);
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/create-alias.tpl");
include ("./templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
$pCreate_alias_goto_text = $PALANG['pCreate_alias_goto_text'];
if (isset ($_POST['fAddress']) && isset ($_POST['fDomain'])) $fAddress = escape_string ($_POST['fAddress']) . "@" . escape_string ($_POST['fDomain']);
$fAddress = strtolower ($fAddress);
if (isset ($_POST['fGoto'])) $fGoto = escape_string ($_POST['fGoto']);
$fGoto = strtolower ($fGoto);
isset ($_POST['fActive']) ? $fActive = escape_string ($_POST['fActive']) : $fActive = "1";
if (isset ($_POST['fDomain'])) $fDomain = escape_string ($_POST['fDomain']);
if (!preg_match ('/@/',$fGoto))
{
$fGoto = $fGoto . "@" . escape_string ($_POST['fDomain']);
}
if (!check_owner ($SESSID_USERNAME, $fDomain))
{
$error = 1;
$tAddress = escape_string ($_POST['fAddress']);
$tGoto = $fGoto;
$tDomain = $fDomain;
$pCreate_alias_address_text = $PALANG['pCreate_alias_address_text_error1'];
}
if (!check_alias ($fDomain))
{
$error = 1;
$tAddress = escape_string ($_POST['fAddress']);
$tGoto = $fGoto;
$tDomain = $fDomain;
$pCreate_alias_address_text = $PALANG['pCreate_alias_address_text_error3'];
}
if (empty ($fAddress) or !check_email ($fAddress))
{
$error = 1;
$tAddress = escape_string ($_POST['fAddress']);
$tGoto = $fGoto;
$tDomain = $fDomain;
$pCreate_alias_address_text = $PALANG['pCreate_alias_address_text_error1'];
}
if (empty ($fGoto) or !check_email ($fGoto))
{
$error = 1;
$tAddress = escape_string ($_POST['fAddress']);
$tGoto = $fGoto;
$tDomain = $fDomain;
$pCreate_alias_goto_text = $PALANG['pCreate_alias_goto_text_error'];
}
if (escape_string ($_POST['fAddress']) == "*") $fAddress = "@" . escape_string ($_POST['fDomain']);
$result = db_query ("SELECT * FROM $table_alias WHERE address='$fAddress'");
if ($result['rows'] == 1)
{
$error = 1;
$tAddress = escape_string ($_POST['fAddress']);
$tGoto = $fGoto;
$tDomain = $fDomain;
$pCreate_alias_address_text = $PALANG['pCreate_alias_address_text_error2'];
}
if ($fActive == "on")
{
$fActive = 1;
}
else
{
$fActive = 0;
}
$sqlActive=$fActive;
if ('pgsql'==$CONF['database_type'])
{
$sqlActive=($fActive) ? 'true' : 'false';
}
if ($error != 1)
{
if (preg_match ('/^\*@(.*)$/', $fGoto, $match)) $fGoto = "@" . $match[1];
$result = db_query ("INSERT INTO $table_alias (address,goto,domain,created,modified,active) VALUES ('$fAddress','$fGoto','$fDomain',NOW(),NOW(),'$sqlActive')");
if ($result['rows'] != 1)
{
$tDomain = $fDomain;
$tMessage = $PALANG['pCreate_alias_result_error'] . "<br />($fAddress -> $fGoto)<br />\n";
}
else
{
db_log ($SESSID_USERNAME, $fDomain, "create alias", "$fAddress -> $fGoto");
$tDomain = $fDomain;
$tMessage = $PALANG['pCreate_alias_result_succes'] . "<br />($fAddress -> $fGoto)<br />\n";
}
}
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/create-alias.tpl");
include ("./templates/footer.tpl");
}
?>

278
create-mailbox.php Normal file
View File

@@ -0,0 +1,278 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: create-mailbox.php
//
// Template File: create-mailbox.tpl
//
// Template Variables:
//
// tMessage
// tUsername
// tName
// tQuota
// tDomain
//
// Form POST \ GET Variables:
//
// fUsername
// fPassword
// fPassword2
// fName
// fQuota
// fDomain
// fActive
// fMail
//
require ("./variables.inc.php");
require ("./config.inc.php");
require ("./functions.inc.php");
include ("./languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
if (!check_admin($SESSID_USERNAME))
{
$list_domains = list_domains_for_admin ($SESSID_USERNAME);
}
else
{
$list_domains = list_domains ();
}
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
$tQuota = $CONF['maxquota'];
$pCreate_mailbox_password_text = $PALANG['pCreate_mailbox_password_text'];
$pCreate_mailbox_name_text = $PALANG['pCreate_mailbox_name_text'];
$pCreate_mailbox_quota_text = $PALANG['pCreate_mailbox_quota_text'];
if (isset ($_GET['domain'])) $tDomain = escape_string ($_GET['domain']);
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/create-mailbox.tpl");
include ("./templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
$pCreate_mailbox_password_text = $PALANG['pCreate_mailbox_password_text'];
$pCreate_mailbox_name_text = $PALANG['pCreate_mailbox_name_text'];
$pCreate_mailbox_quota_text = $PALANG['pCreate_mailbox_quota_text'];
if (isset ($_POST['fUsername'])) $fUsername = escape_string ($_POST['fUsername']) . "@" . escape_string ($_POST['fDomain']);
$fUsername = strtolower ($fUsername);
if (isset ($_POST['fPassword'])) $fPassword = escape_string ($_POST['fPassword']);
if (isset ($_POST['fPassword2'])) $fPassword2 = escape_string ($_POST['fPassword2']);
if (isset ($_POST['fName'])) $fName = escape_string ($_POST['fName']);
if (isset ($_POST['fDomain'])) $fDomain = escape_string ($_POST['fDomain']);
if (isset ($_POST['fQuota'])) $fQuota = intval ($_POST['fQuota']);
if (isset ($_POST['fActive'])) $fActive = escape_string ($_POST['fActive']);
if (isset ($_POST['fMail'])) $fMail = escape_string ($_POST['fMail']);
if (!check_owner ($SESSID_USERNAME, $fDomain))
{
$error = 1;
$tUsername = escape_string ($_POST['fUsername']);
$tName = $fName;
$tQuota = $fQuota;
$tDomain = $fDomain;
$pCreate_mailbox_username_text = $PALANG['pCreate_mailbox_username_text_error1'];
}
if (!check_mailbox ($fDomain))
{
$error = 1;
$tUsername = escape_string ($_POST['fUsername']);
$tName = $fName;
$tQuota = $fQuota;
$tDomain = $fDomain;
$pCreate_mailbox_username_text = $PALANG['pCreate_mailbox_username_text_error3'];
}
if (empty ($fUsername) or !check_email ($fUsername))
{
$error = 1;
$tUsername = escape_string ($_POST['fUsername']);
$tName = $fName;
$tQuota = $fQuota;
$tDomain = $fDomain;
$pCreate_mailbox_username_text = $PALANG['pCreate_mailbox_username_text_error1'];
}
if (empty ($fPassword) or empty ($fPassword2) or ($fPassword != $fPassword2))
{
if (empty ($fPassword) and empty ($fPassword2) and $CONF['generate_password'] == "YES")
{
$fPassword = generate_password ();
}
else
{
$error = 1;
$tUsername = escape_string ($_POST['fUsername']);
$tName = $fName;
$tQuota = $fQuota;
$tDomain = $fDomain;
$pCreate_mailbox_password_text = $PALANG['pCreate_mailbox_password_text_error'];
}
}
if ($CONF['quota'] == "YES")
{
if (!check_quota ($fQuota, $fDomain))
{
$error = 1;
$tUsername = escape_string ($_POST['fUsername']);
$tName = $fName;
$tQuota = $fQuota;
$tDomain = $fDomain;
$pCreate_mailbox_quota_text = $PALANG['pCreate_mailbox_quota_text_error'];
}
}
$result = db_query ("SELECT * FROM $table_alias WHERE address='$fUsername'");
if ($result['rows'] == 1)
{
$error = 1;
$tUsername = escape_string ($_POST['fUsername']);
$tName = $fName;
$tQuota = $fQuota;
$tDomain = $fDomain;
$pCreate_mailbox_username_text = $PALANG['pCreate_mailbox_username_text_error2'];
}
if ($error != 1)
{
$password = pacrypt ($fPassword);
if ($CONF['domain_path'] == "YES")
{
if ($CONF['domain_in_mailbox'] == "YES")
{
$maildir = $fDomain . "/" . $fUsername . "/";
}
else
{
$maildir = $fDomain . "/" . escape_string ($_POST['fUsername']) . "/";
}
}
else
{
$maildir = $fUsername . "/";
}
if (!empty ($fQuota))
{
$quota = multiply_quota ($fQuota);
}
else
{
$quota = 0;
}
if ($fActive == "on")
{
$fActive = 1;
}
else
{
$fActive = 0;
}
$sqlActive=$fActive;
if ('pgsql'==$CONF['database_type'])
{
$sqlActive=($fActive) ? 'true' : 'false';
db_query('BEGIN');
}
$result = db_query ("INSERT INTO $table_alias (address,goto,domain,created,modified,active) VALUES ('$fUsername','$fUsername','$fDomain',NOW(),NOW(),'$sqlActive')");
if ($result['rows'] != 1)
{
$tDomain = $fDomain;
$tMessage = $PALANG['pAlias_result_error'] . "<br />($fUsername -> $fUsername)</br />";
}
$result = db_query ("INSERT INTO $table_mailbox (username,password,name,maildir,quota,domain,created,modified,active) VALUES ('$fUsername','$password','$fName','$maildir','$quota','$fDomain',NOW(),NOW(),'$sqlActive')");
if ($result['rows'] != 1 || !mailbox_postcreation($fUsername,$fDomain,$maildir))
{
$tDomain = $fDomain;
$tMessage .= $PALANG['pCreate_mailbox_result_error'] . "<br />($fUsername)<br />";
db_query('ROLLBACK');
}
else
{
db_query('COMMIT');
db_log ($SESSID_USERNAME, $fDomain, "create mailbox", "$fUsername");
$tDomain = $fDomain;
if (create_mailbox_subfolders($fUsername,$fPassword))
{
$tMessage = $PALANG['pCreate_mailbox_result_succes'] . "<br />($fUsername";
} else {
$tMessage = $PALANG['pCreate_mailbox_result_succes_nosubfolders'] . "<br />($fUsername";
}
if ($CONF['generate_password'] == "YES")
{
$tMessage .= " / $fPassword)</br />";
}
else
{
if ($CONF['show_password'] == "YES")
{
$tMessage .= " / $fPassword)</br />";
}
else
{
$tMessage .= ")</br />";
}
}
$tQuota = $CONF['maxquota'];
if ($fMail == "on")
{
$fTo = $fUsername;
$fFrom = $SESSID_USERNAME;
$fHeaders = "To: " . $fTo . "\n";
$fHeaders .= "From: " . $fFrom . "\n";
if (!empty ($PALANG['charset']))
{
$fHeaders .= "Subject: " . encode_header ($PALANG['pSendmail_subject_text'], $PALANG['charset']) . "\n";
$fHeaders .= "MIME-Version: 1.0\n";
$fHeaders .= "Content-Type: text/plain; charset=" . $PALANG['charset'] . "\n";
$fHeaders .= "Content-Transfer-Encoding: 8bit\n";
}
else
{
$fHeaders .= "Subject: " . $PALANG['pSendmail_subject_text'] . "\n\n";
}
$fHeaders .= $CONF['welcome_text'];
if (!smtp_mail ($fTo, $fFrom, $fHeaders))
{
$tMessage .= "<br />" . $PALANG['pSendmail_result_error'] . "<br />";
}
else
{
$tMessage .= "<br />" . $PALANG['pSendmail_result_succes'] . "<br />";
}
}
}
}
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/create-mailbox.tpl");
include ("./templates/footer.tpl");
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
}
?>

106
delete.php Normal file
View File

@@ -0,0 +1,106 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: delete.php
//
// Template File: message.tpl
//
// Template Variables:
//
// tMessage
//
// Form POST \ GET Variables:
//
// fDelete
// fDomain
//
require ("./variables.inc.php");
require ("./config.inc.php");
require ("./functions.inc.php");
include ("./languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session();
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['delete'])) $fDelete = escape_string ($_GET['delete']);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
if (!check_owner ($SESSID_USERNAME, $fDomain))
{
$error = 1;
$tMessage = $PALANG['pDelete_domain_error'] . "<b>$fDomain</b>!</span>";
}
elseif (!check_alias_owner ($SESSID_USERNAME, $fDelete))
{
$error = 1;
$tMessage = $PALANG['pDelete_alias_error'] . "<b>$fDelete</b>!</span>";
}
else
{
if ($CONF['database_type'] == "pgsql") db_query('BEGIN');
$result = db_query ("DELETE FROM $table_alias WHERE address='$fDelete' AND domain='$fDomain'");
if ($result['rows'] != 1)
{
$error = 1;
$tMessage = $PALANG['pDelete_delete_error'] . "<b>$fDelete</b> (alias)!</span>";
}
else
{
db_log ($SESSID_USERNAME, $fDomain, "delete alias", $fDelete);
}
$result = db_query ("SELECT * FROM $table_mailbox WHERE username='$fDelete' AND domain='$fDomain'");
if ($result['rows'] == 1)
{
$result = db_query ("DELETE FROM $table_mailbox WHERE username='$fDelete' AND domain='$fDomain'");
$postdel_res = mailbox_postdeletion($fDelete,$fDomain);
if ($result['rows'] != 1 || !$postdel_res)
{
$error = 1;
$tMessage = $PALANG['pDelete_delete_error'] . "<b>$fDelete</b> (";
if ($result['rows']!=1)
{
$tMessage.='mailbox';
if (!$postdel_res) $tMessage.=', ';
}
if (!$postdel_res) $tMessage.='post-deletion';
$tMessage.=')</span>';
}
else
{
db_query ("DELETE FROM $table_vacation WHERE email='$fDelete' AND domain='$fDomain'");
db_log ($SESSID_USERNAME, $fDomain, "delete mailbox", $fDelete);
}
}
}
if ($error != 1)
{
if ($CONF['database_type'] == "pgsql") db_query('COMMIT');
header ("Location: overview.php?domain=$fDomain");
exit;
} else {
$tMessage = $PALANG['pDelete_delete_error'] . "<b>$fDelete</b> (physical mail)!</span>";
if ($CONF['database_type'] == "pgsql") db_query('ROLLBACK');
}
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/message.tpl");
include ("./templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/message.tpl");
include ("./templates/footer.tpl");
}
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

90
edit-active.php Normal file
View File

@@ -0,0 +1,90 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: edit-active.php
//
// Template File: message.tpl
//
// Template Variables:
//
// tMessage
//
// Form POST \ GET Variables:
//
// fUsername
// fDomain
//
require ("./variables.inc.php");
require ("./config.inc.php");
require ("./functions.inc.php");
include ("./languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session();
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['username'])) $fUsername = escape_string ($_GET['username']);
if (isset ($_GET['alias'])) $fAlias = escape_string ($_GET['alias']); else $fAlias = escape_string ($_GET['username']);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
if (!check_owner ($SESSID_USERNAME, $fDomain))
{
$error = 1;
$tMessage = $PALANG['pEdit_mailbox_domain_error'] . "<b>$fDomain</b>!</font>";
}
else
{
$setSql=('pgsql'==$CONF['database_type']) ? 'active=NOT active' : 'active=1-active';
if ($fUsername != '')
{
$result = db_query ("UPDATE $table_mailbox SET $setSql WHERE username='$fUsername' AND domain='$fDomain'");
if ($result['rows'] != 1)
{
$error = 1;
$tMessage = $PALANG['pEdit_mailbox_result_error'];
}
else
{
db_log ($SESSID_USERNAME, $fDomain, "edit active", $fUsername);
}
}
if ($fAlias != '')
{
$result = db_query ("UPDATE $table_alias SET $setSql WHERE address='$fAlias' AND domain='$fDomain'");
if ($result['rows'] != 1)
{
$error = 1;
$tMessage = $PALANG['pEdit_mailbox_result_error'];
}
else
{
db_log ($SESSID_USERNAME, $fDomain, "edit alias active", $fAlias);
}
}
}
if ($error != 1)
{
header ("Location: overview.php?domain=$fDomain");
exit;
}
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/message.tpl");
include ("./templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/message.tpl");
include ("./templates/footer.tpl");
}
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

129
edit-alias.php Normal file
View File

@@ -0,0 +1,129 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: edit-alias.php
//
// Template File: edit-alias.tpl
//
// Template Variables:
//
// tMessage
// tGoto
//
// Form POST \ GET Variables:
//
// fAddress
// fDomain
// fGoto
//
require ("./variables.inc.php");
require ("./config.inc.php");
require ("./functions.inc.php");
include ("./languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['address'])) $fAddress = escape_string ($_GET['address']);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
if (check_owner ($SESSID_USERNAME, $fDomain))
{
$result = db_query ("SELECT * FROM $table_alias WHERE address='$fAddress' AND domain='$fDomain'");
if ($result['rows'] == 1)
{
$row = db_array ($result['result']);
$tGoto = $row['goto'];
}
}
else
{
$tMessage = $PALANG['pEdit_alias_address_error'];
}
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/edit-alias.tpl");
include ("./templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
$pEdit_alias_goto = $PALANG['pEdit_alias_goto'];
if (isset ($_GET['address'])) $fAddress = escape_string ($_GET['address']);
$fAddress = strtolower ($fAddress);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
if (isset ($_POST['fGoto'])) $fGoto = escape_string ($_POST['fGoto']);
$fGoto = strtolower ($fGoto);
if (!check_owner ($SESSID_USERNAME, $fDomain))
{
$error = 1;
$tGoto = $_POST['fGoto'];
$tMessage = $PALANG['pEdit_alias_domain_error'] . "$fDomain</span>";
}
elseif (!check_alias_owner ($SESSID_USERNAME, $fAddress))
{
$error = 1;
$tGoto = $_POST['fGoto'];
$tMessage = $PALANG['pEdit_alias_result_error'];
}
elseif (empty ($fGoto))
{
$error = 1;
$tGoto = $_POST['fGoto'];
$tMessage = $PALANG['pEdit_alias_goto_text_error1'];
}
if ($error != 1)
{
$goto = preg_replace ('/\\\r\\\n/', ',', $fGoto);
$goto = preg_replace ('/\r\n/', ',', $goto);
$goto = preg_replace ('/[\s]+/i', '', $goto);
$goto = preg_replace ('/\,*$/', '', $goto);
$array = preg_split ('/,/', $goto);
}
else
{
$array = array();
}
for ($i = 0; $i < sizeof ($array); $i++) {
if (in_array ("$array[$i]", $CONF['default_aliases'])) continue;
if (empty ($array[$i])) continue;
if (!check_email ($array[$i]))
{
$error = 1;
$tGoto = $goto;
$tMessage = $PALANG['pEdit_alias_goto_text_error2'] . "$array[$i]</span>";
}
}
if ($error != 1)
{
$result = db_query ("UPDATE $table_alias SET goto='$goto',modified=NOW() WHERE address='$fAddress' AND domain='$fDomain'");
if ($result['rows'] != 1)
{
$tMessage = $PALANG['pEdit_alias_result_error'];
}
else
{
db_log ($SESSID_USERNAME, $fDomain, "edit alias", "$fAddress -> $goto");
header ("Location: overview.php?domain=$fDomain");
exit;
}
}
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/edit-alias.tpl");
include ("./templates/footer.tpl");
}
?>

168
edit-mailbox.php Normal file
View File

@@ -0,0 +1,168 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: edit-mailbox.php
//
// Template File: edit-mailbox.tpl
//
// Template Variables:
//
// tMessage
// tName
// tQuota
//
// Form POST \ GET Variables:
//
// fUsername
// fDomain
// fPassword
// fPassword2
// fName
// fQuota
// fActive
//
require ("./variables.inc.php");
require ("./config.inc.php");
require ("./functions.inc.php");
include ("./languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['username'])) $fUsername = escape_string ($_GET['username']);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
if (check_owner ($SESSID_USERNAME, $fDomain))
{
$result = db_query ("SELECT * FROM $table_mailbox WHERE username='$fUsername' AND domain='$fDomain'");
if ($result['rows'] == 1)
{
$row = db_array ($result['result']);
$tName = $row['name'];
$tQuota = divide_quota($row['quota']);
$tActive = $row['active'];
if ('pgsql'==$CONF['database_type']) $tActive = ('t'==$row['active']) ? 1 : 0;
}
$result = db_query ("SELECT * FROM $table_domain WHERE domain='$fDomain'");
if ($result['rows'] == 1)
{
$row = db_array ($result['result']);
$tMaxquota = $row['maxquota'];
}
}
else
{
$tMessage = $PALANG['pEdit_mailbox_login_error'];
}
$pEdit_mailbox_name_text = $PALANG['pEdit_mailbox_name_text'];
$pEdit_mailbox_quota_text = $PALANG['pEdit_mailbox_quota_text'];
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/edit-mailbox.tpl");
include ("./templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
if (isset ($_GET['username'])) $fUsername = escape_string ($_GET['username']);
$fUsername = strtolower ($fUsername);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
if (isset ($_POST['fPassword'])) $fPassword = escape_string ($_POST['fPassword']);
if (isset ($_POST['fPassword2'])) $fPassword2 = escape_string ($_POST['fPassword2']);
if (isset ($_POST['fName'])) $fName = escape_string ($_POST['fName']);
if (isset ($_POST['fQuota'])) $fQuota = escape_string ($_POST['fQuota']);
if (isset ($_POST['fActive'])) $fActive = escape_string ($_POST['fActive']);
if (!check_owner ($SESSID_USERNAME, $fDomain))
{
$error = 1;
$tName = $fName;
$tQuota = $fQuota;
$tActive = $fActive;
$tMessage = $PALANG['pEdit_mailbox_domain_error'] . "$fDomain</font>";
}
if ($fPassword != $fPassword2)
{
$error = 1;
$tName = $fName;
$tQuota = $fQuota;
$tActive = $fActive;
$pEdit_mailbox_password_text = $PALANG['pEdit_mailbox_password_text_error'];
}
if ($CONF['quota'] == "YES")
{
if (!check_quota ($fQuota, $fDomain))
{
$error = 1;
$tName = $fName;
$tQuota = $fQuota;
$tActive = $fActive;
$pEdit_mailbox_quota_text = $PALANG['pEdit_mailbox_quota_text_error'];
}
}
if ($error != 1)
{
if (!empty ($fQuota))
{
$quota = multiply_quota ($fQuota);
}
else
{
$quota = 0;
}
if ($fActive == "on")
{
$fActive = 1;
}
else
{
$fActive = 0;
}
$sqlActive=$fActive;
if ('pgsql'==$CONF['database_type']) $sqlActive=($fActive) ? 'true':'false';
if (empty ($fPassword) and empty ($fPassword2))
{
$result = db_query ("UPDATE $table_mailbox SET name='$fName',quota=$quota,modified=NOW(),active=$sqlActive WHERE username='$fUsername' AND domain='$fDomain'");
if ($result['rows'] == 1) $result = db_query ("UPDATE $table_alias SET modified=NOW(),active='$sqlActive' WHERE address='$fUsername' AND domain='$fDomain'");
}
else
{
$password = pacrypt ($fPassword);
$result = db_query ("UPDATE $table_mailbox SET password='$password',name='$fName',quota=$quota,modified=NOW(),active=$sqlActive WHERE username='$fUsername' AND domain='$fDomain'");
if ($result['rows'] == 1) $result = db_query ("UPDATE $table_alias SET modified=NOW(),active='$sqlActive' WHERE address='$fUsername' AND domain='$fDomain'");
}
if ($result['rows'] != 1)
{
$tMessage = $PALANG['pEdit_mailbox_result_error'];
}
else
{
db_log ($SESSID_USERNAME, $fDomain, "edit mailbox", $fUsername);
header ("Location: overview.php?domain=$fDomain");
exit;
}
}
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/edit-mailbox.tpl");
include ("./templates/footer.tpl");
}
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
?>

55
edit-vacation.php Normal file
View File

@@ -0,0 +1,55 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: edit-vacation.php
//
// Template File: edit-vacation.tpl
//
// Template Variables:
//
// tMessage
// tName
// tQuota
//
// Form POST \ GET Variables:
//
// fUsername
// fDomain
// fPassword
// fPassword2
// fName
// fQuota
// fActive
//
require ("./variables.inc.php");
require ("./config.inc.php");
require ("./functions.inc.php");
include ("./languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
(($CONF['vacation'] == 'NO') ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
$tmp = preg_split ('/@/', $SESSID_USERNAME);
$USERID_DOMAIN = $tmp[1];
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
if (isset ($_GET['username'])) $fUsername = escape_string ($_GET['username']);
if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']);
$result = db_query("SELECT * FROM $table_vacation WHERE email='$fUsername'");
if ($result['rows'] == 1)
{
$row = db_array($result['result']);
$tMessage = '';
}
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/edit-vacation.tpl");
include ("./templates/footer.tpl");
}
?>

1558
functions.inc.php Normal file

File diff suppressed because it is too large Load Diff

BIN
images/arrow-l.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

BIN
images/arrow-r.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 407 B

BIN
images/arrow-u.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 365 B

17
images/index.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
//
// File: index.php
//
// Template File: -none-
//
// Template Variables:
//
// -none-
//
// Form POST \ GET Variables:
//
// -none-
//
header ("Location: ../login.php");
exit;
?>

BIN
images/postbox.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
images/postfixadmin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

BIN
images/postfixadmin2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
images/postfixadmin2.xcf Normal file

Binary file not shown.

55
index.php Normal file
View File

@@ -0,0 +1,55 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: index.php
//
// Template File: -none-
//
// Template Variables:
//
// -none-
//
// Form POST \ GET Variables:
//
// -none-
//
if (!file_exists (realpath ("./setup.php")))
{
header ("Location: login.php");
exit;
}
else
{
print <<< EOF
<html>
<head>
<title>Welcome to Postfix Admin</title>
</head>
<body>
<img id="login_header_logo" src="images/postbox.png" />
<img id="login_header_logo2" src="images/postfixadmin2.png" />
<h1>Welcome to Postfix Admin</h1>
It seems that you are running this version of Postfix Admin for the first time.<br />
<p />
You can now run <a href="setup.php">setup</a> to make sure that all the functions are available for Postfix Admin to run.<br />
<p />
If you still encounter any problems please check the documentation and website for more information.
<p />
Your donations keep this project running...
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHDgYJKoZIhvcNAQcEoIIG/zCCBvsCAQExggEwMIIBLAIBADCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwDQYJKoZIhvcNAQEBBQAEgYAaWZJT9HWnL5r84t1G3lE63Fs8NGVgfq49mgflefUQOeVfKUG7NXZOkJT/FxH+SLf2c20VGRhol6vr0EqlMbJYkqeAJJIEHDVe8OiiYV1MYDWBRoJ5TRUCVurbFq9DnMokHohXBsdYjtAAxwvw6m9MZucVkZfg83QsgrfqeFpDNTELMAkGBSsOAwIaBQAwgYsGCSqGSIb3DQEHATAUBggqhkiG9w0DBwQIC0DzenYGQ6SAaKk6zKCl+ULUPl5c4pT4u0dpzFLw3sXBESPspq92l37FQXdxLzp2qaeP2StIXgU828PbJxt5ilucTLmnfkhpoeSdbvrlfiYJQbI1kjtHi0gIO4Hp0iUmaRaOTAEcNYfO84xxce0rJlfdoIIDhzCCA4MwggLsoAMCAQICAQAwDQYJKoZIhvcNAQEFBQAwgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tMB4XDTA0MDIxMzEwMTMxNVoXDTM1MDIxMzEwMTMxNVowgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDBR07d/ETMS1ycjtkpkvjXZe9k+6CieLuLsPumsJ7QC1odNz3sJiCbs2wC0nLE0uLGaEtXynIgRqIddYCHx88pb5HTXv4SZeuv0Rqq4+axW9PLAAATU8w04qqjaSXgbGLP3NmohqM6bV9kZZwZLR/klDaQGo1u9uDb9lr4Yn+rBQIDAQABo4HuMIHrMB0GA1UdDgQWBBSWn3y7xm8XvVk/UtcKG+wQ1mSUazCBuwYDVR0jBIGzMIGwgBSWn3y7xm8XvVk/UtcKG+wQ1mSUa6GBlKSBkTCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb22CAQAwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQCBXzpWmoBa5e9fo6ujionW1hUhPkOBakTr3YCDjbYfvJEiv/2P+IobhOGJr85+XHhN0v4gUkEDI8r2/rNk1m0GA8HKddvTjyGw/XqXa+LSTlDYkqI8OwR8GEYj4efEtcRpRYBxV8KxAW93YDWzFGvruKnnLbDAF6VR5w/cCMn5hzGCAZowggGWAgEBMIGUMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDQwOTE3MTUwNzEzWjAjBgkqhkiG9w0BCQQxFgQUXsDlCR/SO8MRWqCsrkZ7wbU4RZAwDQYJKoZIhvcNAQEBBQAEgYCPDjlGd7bghDtcCDiPl7DPgV6/vT4vc5bn5ygoqIahQF5Asu9v+Qocb+vMEPq+IZampJ/XlcGzwmzY23IfeVAq4aosqM265rDxyfmnzmiApO/KCJS7pN8dBVeDLEXGNYo1s73Ch0lETohWwYHKNKk+Wwe3+6tFhumthRHbpqQ4dw==-----END PKCS7-----">
</form>
<p />
<a href="http://high5.net/postfixadmin/">Postfix Admin</a><br />
<a href="http://forums.high5.net/index.php?showforum=7">Knowledge Base</a>
</body>
</html>
EOF;
}
?>

301
languages/bg.lang Normal file
View File

@@ -0,0 +1,301 @@
<?php
//
// Language file Bulgarian
// by Plamen Tonev
//
require ('default.lang');
$PALANG['YES'] = '<27><>';
$PALANG['NO'] = '<27><>';
$PALANG['edit'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['del'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['confirm'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD>, <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>?\n';
$PALANG['confirm_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>? <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pLogin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD> (<28>-<2D><><EFBFBD><EFBFBD>)';
$PALANG['pLogin_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pLogin_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>-<2D><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pLogin_login_users'] = '<27><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>.';
$PALANG['pMenu_overview'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_create_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> Alias';
$PALANG['pMenu_create_mailbox'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_sendmail'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Email';
$PALANG['pMenu_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_viewlog'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> Log';
$PALANG['pMenu_logout'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMain_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pMain_overview'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> alias-<2D><><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_create_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD> alias <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_create_mailbox'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_sendmail'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>-<2D><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_viewlog'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> log <20><><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_logout'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> ';
$PALANG['pOverview_alias_alias_count'] = 'Alias-<2D>';
$PALANG['pOverview_alias_mailbox_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_alias_address'] = '<27><>';
$PALANG['pOverview_alias_goto'] = '<27><>';
$PALANG['pOverview_alias_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_username'] = '<27>-<2D><><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_name'] = '<27><><EFBFBD>';
$PALANG['pOverview_mailbox_quota'] = '<27><><EFBFBD><EFBFBD> (MB)';
$PALANG['pOverview_mailbox_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_aliases'] = 'Alias-<2D>';
$PALANG['pOverview_get_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_quota'] = '<27><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> (MB)';
$PALANG['pOverview_get_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pDelete_delete_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD>! ';
$PALANG['pCreate_alias_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> alias <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD> ALIAS <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD> <20>-<2D><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> alias-<2D>!</span>';
$PALANG['pCreate_alias_goto'] = '<27><><EFBFBD>';
$PALANG['pCreate_alias_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Alias';
$PALANG['pCreate_alias_goto_text'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pCreate_alias_goto_text_error'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> alias-<2D> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Alias-<2D> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pCreate_alias_catchall_text'] = '<27><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> catch-all <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "*" <20><> alias.<br /><3E><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "*@domain.tld" <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>.';
$PALANG['pEdit_alias_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> alias <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.<br /><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD>.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> alias!</span>';
$PALANG['pEdit_alias_goto'] = '<27><><EFBFBD>';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg"><3E><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD></span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg"><3E>-<2D><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD>: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> alias!</span>';
$PALANG['pCreate_mailbox_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pCreate_mailbox_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg"><3E>-<2D><><EFBFBD><EFBFBD>-<2D> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD> <20>-<2D><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg"><3E><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)';
$PALANG['pCreate_mailbox_password_text'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> POP3/IMAP<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!<br /><3E><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_name'] = '<27><><EFBFBD>';
$PALANG['pCreate_mailbox_name_text'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
$PALANG['pCreate_mailbox_quota'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_mail'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pEdit_mailbox_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pEdit_mailbox_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_mailbox_password'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_password2'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_mailbox_name'] = '<27><><EFBFBD>';
$PALANG['pEdit_mailbox_quota'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD>: ';
$PALANG['pEdit_mailbox_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pPassword_admin'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>-<2D>, <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_password_current'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_password'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_password2'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!<br /><3E><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pViewlog_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 10 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> ';
$PALANG['pViewlog_timestamp'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pViewlog_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_action'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_data'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pSendmail_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20>-<2D><><EFBFBD><EFBFBD>.';
$PALANG['pSendmail_admin'] = '<27><>';
$PALANG['pSendmail_to'] = '<27><>';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>-<2D><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pSendmail_subject'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pSendmail_subject_text'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pSendmail_body'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pSendmail_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pSendmail_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pSendmail_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pAdminMenu_list_admin'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_list_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_list_virtual'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_viewlog'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_backup'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_domain_admins'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_admin'] = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_domain'] = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Alias';
$PALANG['pAdminMenu_create_mailbox'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_description'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_aliases'] = 'Alias-<2D>';
$PALANG['pAdminList_domain_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_maxquota'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> (MB)';
$PALANG['pAdminList_domain_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_modified'] = 'Last Modified';
$PALANG['pAdminList_domain_active'] = 'Active';
$PALANG['pAdminList_virtual_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Alias-<2D>';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_alias_address'] = '<27><>';
$PALANG['pAdminList_virtual_alias_goto'] = '<27><><EFBFBD>';
$PALANG['pAdminList_virtual_alias_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_username'] = '<27>-<2D><><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_name'] = '<27><><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_quota'] = '<27><><EFBFBD><EFBFBD> (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_domain_description'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_aliases'] = 'Alias-<2D>';
$PALANG['pAdminCreate_domain_aliases_text'] = '0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_maxquota'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> alias-<2D> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_backupmx'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MX';
$PALANG['pAdminCreate_domain_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pAdminEdit_domain_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_description'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_aliases'] = 'Alias-<2D>';
$PALANG['pAdminEdit_domain_aliases_text'] = '0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_maxquota'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MX';
$PALANG['pAdminEdit_domain_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_username_text'] = '<27>-<2D><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_username_text_error1'] = '<27>-<2D><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>-<2D><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = '<27>-<2D><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>-<2D> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></span>';
$PALANG['pAdminCreate_admin_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!<br /><3E><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pAdminCreate_admin_address'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!<br /><3E><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminEdit_admin_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD>-<2D> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pUsersLogin_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> alias-<2D>.';
$PALANG['pUsersLogin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD> (<28>-<2D><><EFBFBD><EFBFBD>)';
$PALANG['pUsersLogin_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersLogin_button'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pUsersLogin_username_incorrect'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>-<2D><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pUsersLogin_password_incorrect'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pUsersMenu_vacation'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersMenu_edit_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersMenu_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersMain_vacation'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> "out of office" <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>-<2D><><EFBFBD><EFBFBD>.';
$PALANG['pUsersMain_edit_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20>-<2D><><EFBFBD><EFBFBD>.';
$PALANG['pUsersMain_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pUsersVacation_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pUsersVacation_welcome_text'] = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pUsersVacation_subject'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_subject_text'] = 'Out of Office';
$PALANG['pUsersVacation_body'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_body_text'] = <<<EOM
<EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <date> <20><> <date>.
<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_button_back'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pUsersVacation_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

301
languages/ca.lang Normal file
View File

@@ -0,0 +1,301 @@
<?php
//
// Language file Catalan
// by Jaume
//
require ('default.lang');
$PALANG['YES'] = 'SI';
$PALANG['NO'] = 'NO';
$PALANG['edit'] = 'editar';
$PALANG['del'] = 'esborrar';
$PALANG['confirm'] = '<27>Segur que vols esborrar-lo?\n';
$PALANG['confirm_domain'] = 'Estas segur que vols borrar tots els registres d\'aquest domini? Aix<69> no podr<64> ser desfet!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Login d\'administrador per l\'administraci<63> de dominis.';
$PALANG['pLogin_username'] = 'Usuari (e-mail)';
$PALANG['pLogin_password'] = 'Contrasenya';
$PALANG['pLogin_button'] = 'Usuari';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">El login no <20>s correcte. Aseguri\'s de que ha fet login amb el seu e-mail.</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">La seva contrasenya no es correcta!</span>';
$PALANG['pLogin_login_users'] = 'Login per anar a la secci<63> d\'usuaris.';
$PALANG['pMenu_overview'] = 'Resum';
$PALANG['pMenu_create_alias'] = 'Afegir <20>lies';
$PALANG['pMenu_create_mailbox'] = 'Afegir b<>stia';
$PALANG['pMenu_sendmail'] = 'Enviar e-mail';
$PALANG['pMenu_password'] = 'Contrasenya';
$PALANG['pMenu_viewlog'] = 'Veure Logs';
$PALANG['pMenu_logout'] = 'Sortir';
$PALANG['pMain_welcome'] = 'Benvingut al Postfix Admin!';
$PALANG['pMain_overview'] = 'Llistat dels seus <20>lies i b<>sties. Pot editar-los / borrar-los des d\'aqu<71>.';
$PALANG['pMain_create_alias'] = 'Creaci<63> d\'un nou <20>lies pel seu domini.';
$PALANG['pMain_create_mailbox'] = 'Creaci<63> d\'una nova b<>stia pel seu domini.';
$PALANG['pMain_sendmail'] = 'Enviar un e-mail a una de les b<>sties acabades de crear.';
$PALANG['pMain_password'] = 'Canviar la contrasenya per la seva compta d\'administraci<63>.';
$PALANG['pMain_viewlog'] = 'Veure Logs.';
$PALANG['pMain_logout'] = 'Sortir.';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Ves';
$PALANG['pOverview_welcome'] = 'Resum de ';
$PALANG['pOverview_alias_alias_count'] = '<27>lies';
$PALANG['pOverview_alias_mailbox_count'] = 'B<>sties';
$PALANG['pOverview_alias_address'] = 'De';
$PALANG['pOverview_alias_goto'] = 'Dest<73>';
$PALANG['pOverview_alias_modified'] = '<27>ltima modificaci<63>';
$PALANG['pOverview_mailbox_username'] = 'E-mail';
$PALANG['pOverview_mailbox_name'] = 'Nom';
$PALANG['pOverview_mailbox_quota'] = 'Quota (MB)';
$PALANG['pOverview_mailbox_modified'] = '<27>ltima modificaci<63>';
$PALANG['pOverview_mailbox_active'] = 'Actiu';
$PALANG['pOverview_get_domain'] = 'Domini';
$PALANG['pOverview_get_aliases'] = '<27>lies';
$PALANG['pOverview_get_mailboxes'] = 'B<>sties';
$PALANG['pOverview_get_quota'] = 'Quota de b<>stia (MB)';
$PALANG['pOverview_get_modified'] = '<27>ltima Modificaci<63>';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Imposible borrar el registre ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Aquest domini no et pertany ';
$PALANG['pCreate_alias_welcome'] = 'Crear un nou <20>lies pel domini.';
$PALANG['pCreate_alias_address'] = '<27>lies';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">L\'<27>lies no <20>s v<>lid!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Aquesta adre<72>a ja existeix, escull una altra de diferent, si us plau!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Has arribat al l<>mit de creaci<63> d\'<27>lies!</span>';
$PALANG['pCreate_alias_goto'] = 'Dest<73>';
$PALANG['pCreate_alias_button'] = 'Afegir <20>lies';
$PALANG['pCreate_alias_goto_text'] = 'A on ha de ser enviat l\'e-mail.';
$PALANG['pCreate_alias_goto_text_error'] = 'A on ha de ser enviat l\'e-mail.<br /><span class="error_msg">El dest<73> no <20>s v<>lid!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg"><3E>No <20>s posible afegir l\'<27>lies a la taula d\'<27>lies!</span>';
$PALANG['pCreate_alias_result_succes'] = 'L\'<27>lies ha estat creat correctament!';
$PALANG['pCreate_alias_catchall_text'] = 'Per crear un <20>lies general usi "*" com a <20>lies.<br />Per una redirecci<63> de domini a domini, usi "*@domain.tld" com a Dest<73>.';
$PALANG['pEdit_alias_welcome'] = 'Editi un <20>lies pel seu domini.<br />Una entrada per l<>nia.';
$PALANG['pEdit_alias_address'] = '<27>lies';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Imposible de localizar l\'<27>lies!</span>';
$PALANG['pEdit_alias_goto'] = 'Dest<73>';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">No has introdu<64>t res al dest<73></span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">L\'adre<72>a d\'e-mail introduida no <20>s v<>lida: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Aquest domini no et pertany: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Editar <20>lies';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Imposible modificar l\'<27>lies!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Crear una nova b<>stia pel seu domini.';
$PALANG['pCreate_mailbox_username'] = 'Usuari';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">L\'e-mail no <20>s v<>lido!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Aquest e-mail ja existeix, escull un de diferente si us plau!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Has arribat al l<>mit de creaci<63> de b<>sties!</span>';
$PALANG['pCreate_mailbox_password'] = 'Contrasenya';
$PALANG['pCreate_mailbox_password2'] = 'Contrasenya (repetir)';
$PALANG['pCreate_mailbox_password_text'] = 'Contrasenya per a POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Contrasenya per a POP3/IMAP<br /><span class="error_msg">Les contrasenyes introduides no coincideixen<br />o estan en blanc!</span>';
$PALANG['pCreate_mailbox_name'] = 'Nom';
$PALANG['pCreate_mailbox_name_text'] = 'Nom complet';
$PALANG['pCreate_mailbox_quota'] = 'Quota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">La quota especificada <20>s massa alta!</span>';
$PALANG['pCreate_mailbox_active'] = 'Actiu';
$PALANG['pCreate_mailbox_mail'] = 'Crear b<>stia';
$PALANG['pCreate_mailbox_button'] = 'Afegir b<>stia';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Imposible afegir una b<>stia a la taula de b<>sties!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'La b<>stia ha estat afegida a la taula de b<>sties!';
$PALANG['pEdit_mailbox_welcome'] = 'Editar una b<>stia pel seu domini.';
$PALANG['pEdit_mailbox_username'] = 'Usuari';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Imposible localitzar la b<>stia!</span>';
$PALANG['pEdit_mailbox_password'] = 'Nova contrasenya';
$PALANG['pEdit_mailbox_password2'] = 'Nova contrasenya (repetiu)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Les contrasenyes introduides no coincideixen!</span>';
$PALANG['pEdit_mailbox_name'] = 'Nom';
$PALANG['pEdit_mailbox_quota'] = 'Quota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">La quota especificada <20>s massa alta!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Aquest domini no et pertany: ';
$PALANG['pEdit_mailbox_button'] = 'Editar b<>stia';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Imposible canviar la contrasenya!</span>';
$PALANG['pPassword_welcome'] = 'Canvia la teva contrasenya de login.';
$PALANG['pPassword_admin'] = 'Login';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">El login suministrat no coincideix amb cap b<>stia!</span>';
$PALANG['pPassword_password_current'] = 'Contrasenya actual';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">No ha introdu<64>t la contrasenya actual!</span>';
$PALANG['pPassword_password'] = 'Nova contrasenya';
$PALANG['pPassword_password2'] = 'Nova contrasenya (repetiu)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Les contrasenyes introduides no coincideixen<br />o estan en blanc!</span>';
$PALANG['pPassword_button'] = 'Canviar la contrasenya';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Imposible canviar la contrasenya!</span>';
$PALANG['pPassword_result_succes'] = 'La seva contrasenya ha estat canviada!';
$PALANG['pViewlog_welcome'] = 'Veure les <20>ltimes 10 accions per ';
$PALANG['pViewlog_timestamp'] = 'Data/Hora';
$PALANG['pViewlog_username'] = 'Administrador';
$PALANG['pViewlog_domain'] = 'Domini';
$PALANG['pViewlog_action'] = 'Acci<63>';
$PALANG['pViewlog_data'] = 'Dades';
$PALANG['pViewlog_button'] = 'Ves';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Imposible trobar els logs!</span>';
$PALANG['pSendmail_welcome'] = 'Enviar un e-mail.';
$PALANG['pSendmail_admin'] = 'De';
$PALANG['pSendmail_to'] = 'Dest<73>';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">La direcci<63> de dest<73> est<73> buida o <20>s una direcci<63> inv<6E>lida!</span>';
$PALANG['pSendmail_subject'] = 'Assumpte';
$PALANG['pSendmail_subject_text'] = 'Benvingut';
$PALANG['pSendmail_body'] = 'Cos';
$PALANG['pSendmail_button'] = 'Enviar missatge';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Imposible crear la b<>stia!</span>';
$PALANG['pSendmail_result_succes'] = 'La b<>stia ha estat creada!';
$PALANG['pAdminMenu_list_admin'] = 'Llistat d\'administradors';
$PALANG['pAdminMenu_list_domain'] = 'Llistat de dominis';
$PALANG['pAdminMenu_list_virtual'] = 'Llista de direccions virtuals';
$PALANG['pAdminMenu_viewlog'] = 'Veure Logs';
$PALANG['pAdminMenu_backup'] = 'Backup';
$PALANG['pAdminMenu_create_domain_admins'] = 'Administradors de domini';
$PALANG['pAdminMenu_create_admin'] = 'Nou administrador';
$PALANG['pAdminMenu_create_domain'] = 'Nou dominio';
$PALANG['pAdminMenu_create_alias'] = 'Afegir <20>lies';
$PALANG['pAdminMenu_create_mailbox'] = 'Afegir b<>stia';
$PALANG['pAdminList_admin_domain'] = 'Domini';
$PALANG['pAdminList_admin_username'] = 'Administrador';
$PALANG['pAdminList_admin_count'] = 'Dominis';
$PALANG['pAdminList_admin_modified'] = '<27>ltima Modificaci<63>';
$PALANG['pAdminList_admin_active'] = 'Actiu';
$PALANG['pAdminList_domain_domain'] = 'Domini';
$PALANG['pAdminList_domain_description'] = 'Descripci<63>';
$PALANG['pAdminList_domain_aliases'] = '<27>lies';
$PALANG['pAdminList_domain_mailboxes'] = 'B<>sties';
$PALANG['pAdminList_domain_maxquota'] = 'Quota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = '<27>ltima Modificaci<63>';
$PALANG['pAdminList_domain_active'] = 'Actiu';
$PALANG['pAdminList_virtual_button'] = 'Ves';
$PALANG['pAdminList_virtual_welcome'] = 'Resum de ';
$PALANG['pAdminList_virtual_alias_alias_count'] = '<27>lies';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'B<>sties';
$PALANG['pAdminList_virtual_alias_address'] = 'De';
$PALANG['pAdminList_virtual_alias_goto'] = 'Dest<73>';
$PALANG['pAdminList_virtual_alias_modified'] = '<27>ltima Modificaci<63>';
$PALANG['pAdminList_virtual_mailbox_username'] = 'E-mail';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Nom';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Quota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = '<27>ltima Modificaci<63>';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Actiu';
$PALANG['pAdminCreate_domain_welcome'] = 'Afegir nou domini';
$PALANG['pAdminCreate_domain_domain'] = 'Domini';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">El domini ja existeix!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Descripci<63>';
$PALANG['pAdminCreate_domain_aliases'] = '<27>lies';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = ilimitat | 0 = deshabilitar';
$PALANG['pAdminCreate_domain_mailboxes'] = 'B<>sties';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = ilimitat | 0 = deshabilitar';
$PALANG['pAdminCreate_domain_maxquota'] = 'Quota m<>xima';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = ilimitat | 0 = deshabilitar';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Afegir <20>lies per defecte';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Afegir domini';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Imposible afegir el domini!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'El domini ha estat afegit!';
$PALANG['pAdminEdit_domain_welcome'] = 'Editar un domini';
$PALANG['pAdminEdit_domain_domain'] = 'Domini';
$PALANG['pAdminEdit_domain_description'] = 'Descripci<63>';
$PALANG['pAdminEdit_domain_aliases'] = '<27>lies';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = ilimitat | 0 = deshabilitar';
$PALANG['pAdminEdit_domain_mailboxes'] = 'B<>sties';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = ilimitat | 0 = deshabilitar';
$PALANG['pAdminEdit_domain_maxquota'] = 'Quota m<>xima';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = ilimitat | 0 = deshabilitar';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Actiu';
$PALANG['pAdminEdit_domain_button'] = 'Editar domini';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Imposible modificar el domini!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Afegir un nou administrador de domini';
$PALANG['pAdminCreate_admin_username'] = 'Administrador';
$PALANG['pAdminCreate_admin_username_text'] = 'E-mail';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'E-mail<br /><span class="error_msg">Administrador no es un e-mail v<>lid!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'E-mail<br /><span class="error_msg">L\'administrador ja existeix o no es v<>lid!</span>';
$PALANG['pAdminCreate_admin_password'] = 'Contrasenya';
$PALANG['pAdminCreate_admin_password2'] = 'Contrasenya (repetiu)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Les contrasenyes introduides no coincideixen<br />o estan en blanc!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Afegir administrador';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Imposible afegir l\'administrador!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'L\'administrador ha estat afegit!';
$PALANG['pAdminCreate_admin_address'] = 'Domini';
$PALANG['pAdminEdit_admin_welcome'] = 'Editar un administrador de domini';
$PALANG['pAdminEdit_admin_username'] = 'Administrador';
$PALANG['pAdminEdit_admin_password'] = 'Contrasenya';
$PALANG['pAdminEdit_admin_password2'] = 'Contrasenya (repetiu)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Les contrasenyes introduides no coincideixen<br />o estan en blanc!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Actiu';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Editar administrador';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Imposible modificar l\'administrador!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'L\'administrador ha estat modificat!';
$PALANG['pUsersLogin_welcome'] = 'Login d\'usuaris per canviar la contrasenya i els <20>lies.';
$PALANG['pUsersLogin_username'] = 'Login (e-mail)';
$PALANG['pUsersLogin_password'] = 'Contrasenya';
$PALANG['pUsersLogin_button'] = 'Login';
$PALANG['pUsersLogin_username_incorrect'] = 'El seu login no <20>s correcte. Asseguri\'s d\'haver introdu<64>t la seva adre<72>a d\'e-mail com a login!';
$PALANG['pUsersLogin_password_incorrect'] = 'La seva contrasenya no <20>s correcta!';
$PALANG['pUsersMenu_vacation'] = 'Resposta autom<6F>tica';
$PALANG['pUsersMenu_edit_alias'] = 'Canviar la redirecci<63>';
$PALANG['pUsersMenu_password'] = 'Canviar la contrasenya';
$PALANG['pUsersMain_vacation'] = 'Configuri un missatge de "Fora de la feina" o una resposta autom<6F>tica pel seu correu.';
$PALANG['pUsersMain_edit_alias'] = 'Canv<6E>i la seva redirecci<63> de correu.';
$PALANG['pUsersMain_password'] = 'Canv<6E>i la seva contrasenya.';
$PALANG['pUsersVacation_welcome'] = 'Resposta autom<6F>tica.';
$PALANG['pUsersVacation_welcome_text'] = 'Ja disposa d\'una resposta autom<6F>tica configurada!';
$PALANG['pUsersVacation_subject'] = 'Assumpte';
$PALANG['pUsersVacation_subject_text'] = 'Fora de la feina';
$PALANG['pUsersVacation_body'] = 'Cos';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Ser<EFBFBD> fora des del <date> fins al <date>.
Per assumptes urgents pot contactar amb mi a <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Absent';
$PALANG['pUsersVacation_button_back'] = 'De tornada';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Imposible actualitzar la configuraci<63> de la seva resposta autom<6F>tica!</span>';
$PALANG['pUsersVacation_result_succes'] = 'La seva resposta autom<6F>tica ha estat esborrada!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

302
languages/cn.lang Normal file
View File

@@ -0,0 +1,302 @@
<?php
//
// Language file Simplified Chinese
// by Matthew <matthew at cnfug dot org>
//
require ('default.lang');
$PALANG['charset'] = 'gb2312';
$PALANG['YES'] = '<27><>';
$PALANG['NO'] = '<27><>';
$PALANG['edit'] = '<27>༭';
$PALANG['del'] = 'ɾ<><C9BE>';
$PALANG['confirm'] = '<27>Ƿ<EFBFBD>ȷ<EFBFBD><C8B7>ɾ<EFBFBD><C9BE>?\n';
$PALANG['confirm_domain'] = '<27><><EFBFBD>Ƿ<EFBFBD>ȷ<EFBFBD><C8B7>Ҫɾ<D2AA><C9BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>е<EFBFBD><D0B5><EFBFBD><EFBFBD>м<EFBFBD>¼? ɾ<><C9BE><EFBFBD>󲻿ɻָ<C9BB>!\n';
$PALANG['check_update'] = '<27><><EFBFBD><EFBFBD><EFBFBD>°汾';
$PALANG['pLogin_welcome'] = '<27>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD>Թ<EFBFBD><D4B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pLogin_username'] = '<27>ʺ<EFBFBD> (<28>ʼ<EFBFBD><CABC><EFBFBD>ַ)';
$PALANG['pLogin_password'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pLogin_button'] = '<27><>¼';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg"><3E><>¼ʧ<C2BC><CAA7>, <20><>ȷ<EFBFBD><C8B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD>ַ<EFBFBD><D6B7>¼!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pLogin_login_users'] = '<27><>ͨ<EFBFBD>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMenu_overview'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pMenu_create_alias'] = '<27>½<EFBFBD><C2BD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_create_mailbox'] = '<27>½<EFBFBD><C2BD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_sendmail'] = '<27><><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD>';
$PALANG['pMenu_password'] = '<27>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_viewlog'] = '<27><EFBFBD><E9BFB4>־';
$PALANG['pMenu_logout'] = '<27>˳<EFBFBD>';
$PALANG['pMain_welcome'] = '<27><>ӭ<EFBFBD><D3AD><EFBFBD><EFBFBD>Postfix Admin!';
$PALANG['pMain_overview'] = '<27><>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>б༭/ɾ<><C9BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_create_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>½<EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_create_mailbox'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>½<EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_sendmail'] = '<27><>һ<EFBFBD><D2BB><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>½<EFBFBD><C2BD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_password'] = '<27>޸<EFBFBD><DEB8><EFBFBD><EFBFBD>Ĺ<EFBFBD><C4B9><EFBFBD>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD>.';
$PALANG['pMain_viewlog'] = '<27><EFBFBD><E9BFB4>־<EFBFBD>ļ<EFBFBD>.';
$PALANG['pMain_logout'] = '<27>˳<EFBFBD>ϵͳ';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: <20><>';
$PALANG['pOverview_up_arrow'] = '<27><><EFBFBD>ض<EFBFBD><D8B6><EFBFBD>';
$PALANG['pOverview_right_arrow'] = '<27><>һҳ';
$PALANG['pOverview_left_arrow'] = '<27><>һҳ';
$PALANG['pOverview_alias_title'] = ':: <20><><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_title'] = ':: <20><><EFBFBD><EFBFBD>';
$PALANG['pOverview_button'] = 'ִ<><D6B4>';
$PALANG['pOverview_welcome'] = '<27><><EFBFBD><EFBFBD> ';
$PALANG['pOverview_alias_alias_count'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pOverview_alias_mailbox_count'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pOverview_alias_address'] = 'ǰ<><C7B0>';
$PALANG['pOverview_alias_goto'] = 'ת<><D7AA>';
$PALANG['pOverview_alias_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_username'] = '<27>ʼ<EFBFBD><CABC><EFBFBD>ַ';
$PALANG['pOverview_mailbox_name'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_quota'] = '<27><><EFBFBD><EFBFBD> (MB)';
$PALANG['pOverview_mailbox_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_active'] = '<27>';
$PALANG['pOverview_get_domain'] = '<27><>';
$PALANG['pOverview_get_aliases'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_mailboxes'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_quota'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (MB)';
$PALANG['pOverview_get_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pDelete_delete_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD>ɾ<EFBFBD><C9BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¼';
$PALANG['pDelete_domain_error'] = '<span class="error_msg"><3E><>û<EFBFBD>и<EFBFBD><D0B8><EFBFBD><EFBFBD>Ĺ<EFBFBD><C4B9><EFBFBD>Ȩ<EFBFBD><C8A8>';
$PALANG['pCreate_alias_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>½<EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pCreate_alias_address'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg"><3E>ñ<EFBFBD><C3B1><EFBFBD><EFBFBD>Ƿ<EFBFBD>!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg"><3E>ʼ<EFBFBD><CABC><EFBFBD>ַ<EFBFBD>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1>!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg"><3E><><EFBFBD>ı<EFBFBD><C4B1><EFBFBD><EFBFBD>Ѿ<EFBFBD><D1BE><EFBFBD><EFB5BD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_goto'] = 'ת<><D7AA>';
$PALANG['pCreate_alias_button'] = '<27>½<EFBFBD><C2BD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_alias_goto_text'] = '<27>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>յ<EFBFBD>ַ.';
$PALANG['pCreate_alias_goto_text_error'] = '<27>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>յ<EFBFBD>ַ.<br /><span class="error_msg"><3E><><EFBFBD>յ<EFBFBD>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD>ȷ!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg"><3E><><EFBFBD>ܽ<EFBFBD><DCBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӵ<EFBFBD><D3B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_result_succes'] = '<27><><EFBFBD>ӱ<EFBFBD><D3B1><EFBFBD><EFBFBD>ɹ<EFBFBD>!';
$PALANG['pCreate_alias_catchall_text'] = 'Ҫ<><D2AA><EFBFBD><EFBFBD><EFBFBD>е<EFBFBD><D0B5>ʼ<EFBFBD>ȫ<EFBFBD><C8AB>ת<EFBFBD><D7AA><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9>"*"<22><>Ϊ<EFBFBD><CEAA><EFBFBD><EFBFBD>.<br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ת<EFBFBD><D7AA><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9>"*@domain.tld".';
$PALANG['pEdit_alias_welcome'] = '<27><EFBFBD><E0BCAD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>еı<D0B5><C4B1><EFBFBD>.<br />ÿ<><C3BF>һ<EFBFBD><D2BB><EFBFBD><EFBFBD>¼.';
$PALANG['pEdit_alias_address'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg"><3E><><EFBFBD>ܶ<EFBFBD>λ<EFBFBD><CEBB><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_alias_goto'] = 'ת<><D7AA>';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg"><3E><>û<EFBFBD><C3BB><EFBFBD><EFBFBD>д<EFBFBD><D0B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD></span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg"><3E>ʼ<EFBFBD><CABC><EFBFBD>ַ<EFBFBD>Ƿ<EFBFBD>: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg"><3E><>û<EFBFBD>и<EFBFBD><D0B8><EFBFBD><EFBFBD>Ĺ<EFBFBD><C4B9><EFBFBD>Ȩ<EFBFBD><C8A8>: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = '<27><EFBFBD><E0BCAD><EFBFBD><EFBFBD>';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>޸ĸñ<C4B8><C3B1><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>½<EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pCreate_mailbox_username'] = '<27>û<EFBFBD><C3BB><EFBFBD>';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg"><3E>ʼ<EFBFBD><CABC>Ƿ<EFBFBD>!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg"><3E>ʼ<EFBFBD><CABC><EFBFBD>ַ<EFBFBD>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD><EFBFBD>,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1>!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD>Ѿ<EFBFBD><D1BE><EFBFBD><EFB5BD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_password'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_password2'] = '<27><><EFBFBD><EFBFBD> (<28>ٴ<EFBFBD><D9B4><EFBFBD><EFBFBD><EFBFBD>)';
$PALANG['pCreate_mailbox_password_text'] = 'POP3/IMAP <20><><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_password_text_error'] = 'POP3/IMAP <20><><EFBFBD><EFBFBD><br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EBB2BB>ͬ!<br /><3E><><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA>!</span>';
$PALANG['pCreate_mailbox_name'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_name_text'] = 'ȫ<><C8AB>';
$PALANG['pCreate_mailbox_quota'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƴ<EFBFBD><C6B3><EFBFBD><EFBFBD><EFBFBD>Χ!</span>';
$PALANG['pCreate_mailbox_active'] = '<27>';
$PALANG['pCreate_mailbox_mail'] = '<27>½<EFBFBD><C2BD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg"><3E><><EFBFBD>ܽ<EFBFBD><DCBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӵ<EFBFBD><D3B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>!';
$PALANG['pEdit_mailbox_welcome'] = '<27><EFBFBD><E0BCAD><EFBFBD><EFBFBD><EFBFBD>е<EFBFBD><D0B5><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pEdit_mailbox_username'] = '<27>û<EFBFBD><C3BB><EFBFBD>';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg"><3E><><EFBFBD>ܶ<EFBFBD><DCB6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_mailbox_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><>֤)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EBB2BB>ͬ!</span>';
$PALANG['pEdit_mailbox_name'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_quota'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƴ<EFBFBD><C6B3><EFBFBD><EFBFBD><EFBFBD>Χ!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg"><3E><>û<EFBFBD>и<EFBFBD><D0B8><EFBFBD><EFBFBD>Ĺ<EFBFBD><C4B9><EFBFBD>Ȩ<EFBFBD><C8A8>: ';
$PALANG['pEdit_mailbox_button'] = '<27><EFBFBD><E0BCAD><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg"><3E><><EFBFBD>ܱ༭<DCB1><E0BCAD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD>¼<EFBFBD><C2BC><EFBFBD><EFBFBD>.';
$PALANG['pPassword_admin'] = '<27>ʺ<EFBFBD>';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD>¼<EFBFBD>ʺŲ<CABA><C5B2><EFBFBD>ȷ!</span>';
$PALANG['pPassword_password_current'] = '<27><>ǰ<EFBFBD><C7B0><EFBFBD><EFBFBD>';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg"><3E><>û<EFBFBD><C3BB><EFBFBD><EFBFBD>д<EFBFBD><D0B4>ǰ<EFBFBD><C7B0><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><>֤)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EBB2BB>ͬ!<br /><3E><><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA>!</span>';
$PALANG['pPassword_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD><CAA7>!</span>';
$PALANG['pPassword_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>!';
$PALANG['pViewlog_welcome'] = '<27><EFBFBD><E9BFB4><EFBFBD>µ<EFBFBD>10<31><30><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>־ <20><><EFBFBD><EFBFBD>: ';
$PALANG['pViewlog_timestamp'] = 'ʱ<><CAB1>';
$PALANG['pViewlog_username'] = '<27><><EFBFBD><EFBFBD>Ա';
$PALANG['pViewlog_domain'] = '<27><>';
$PALANG['pViewlog_action'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pViewlog_data'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pViewlog_button'] = 'ִ<><D6B4>';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">δ<>ҵ<EFBFBD><D2B5><EFBFBD><EFBFBD>ص<EFBFBD><D8B5><EFBFBD>־!</span>';
$PALANG['pSendmail_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD>.';
$PALANG['pSendmail_admin'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pSendmail_to'] = '<27>ռ<EFBFBD><D5BC><EFBFBD>';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg"><3E>ռ<EFBFBD><D5BC><EFBFBD>Ϊ<EFBFBD>ջ<EFBFBD><D5BB><EFBFBD><EFBFBD>ռ<EFBFBD><D5BC>˵<EFBFBD>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD>ȷ!</span>';
$PALANG['pSendmail_subject'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pSendmail_subject_text'] = '<27><>ӭ';
$PALANG['pSendmail_body'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pSendmail_button'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pSendmail_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD><CAA7>!</span>';
$PALANG['pSendmail_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>!';
$PALANG['pAdminMenu_list_admin'] = '<27><><EFBFBD><EFBFBD>Ա<EFBFBD>嵥';
$PALANG['pAdminMenu_list_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>嵥';
$PALANG['pAdminMenu_list_virtual'] = '<27><><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><C3BB>嵥';
$PALANG['pAdminMenu_viewlog'] = '<27><EFBFBD><E9BFB4>־';
$PALANG['pAdminMenu_backup'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_domain_admins'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա';
$PALANG['pAdminMenu_create_admin'] = '<27>½<EFBFBD><C2BD><EFBFBD><EFBFBD><EFBFBD>Ա';
$PALANG['pAdminMenu_create_domain'] = '<27>½<EFBFBD><C2BD><EFBFBD>';
$PALANG['pAdminMenu_create_alias'] = '<27>½<EFBFBD><C2BD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_mailbox'] = '<27>½<EFBFBD><C2BD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_domain'] = '<27><>';
$PALANG['pAdminList_admin_username'] = '<27><><EFBFBD><EFBFBD>Ա';
$PALANG['pAdminList_admin_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_active'] = '<27>';
$PALANG['pAdminList_domain_domain'] = '<27><>';
$PALANG['pAdminList_domain_description'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_aliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_maxquota'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_active'] = '<27>';
$PALANG['pAdminList_virtual_button'] = 'ִ<><D6B4>';
$PALANG['pAdminList_virtual_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>: ';
$PALANG['pAdminList_virtual_alias_alias_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_alias_address'] = 'ǰ<><C7B0>';
$PALANG['pAdminList_virtual_alias_goto'] = 'ת<><D7AA>';
$PALANG['pAdminList_virtual_alias_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_username'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_name'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_quota'] = '<27><><EFBFBD><EFBFBD> (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_active'] = '<27>';
$PALANG['pAdminCreate_domain_welcome'] = '<27>½<EFBFBD><C2BD><EFBFBD>';
$PALANG['pAdminCreate_domain_domain'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_domain_description'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_aliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = <20><><EFBFBD><EFBFBD> | 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = <20><><EFBFBD><EFBFBD> | 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_maxquota'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = <20><><EFBFBD><EFBFBD> | 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = '<27><><EFBFBD><EFBFBD>Ĭ<EFBFBD>ϱ<EFBFBD><CFB1><EFBFBD>';
$PALANG['pAdminCreate_domain_backupmx'] = '<27><><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_button'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD><CAA7>!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>!';
$PALANG['pAdminEdit_domain_welcome'] = '<27>޸<EFBFBD><DEB8><EFBFBD>';
$PALANG['pAdminEdit_domain_domain'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_description'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_aliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = <20><>ֹ | 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = <20><>ֹ | 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_maxquota'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = <20><>ֹ | 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = '<27><><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_active'] = '<27>';
$PALANG['pAdminEdit_domain_button'] = '<27>޸<EFBFBD>';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg"><3E>޸<EFBFBD><DEB8><EFBFBD>ʧ<EFBFBD><CAA7>!</span>';
$PALANG['pAdminCreate_admin_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա';
$PALANG['pAdminCreate_admin_username'] = '<27><><EFBFBD><EFBFBD>Ա';
$PALANG['pAdminCreate_admin_username_text'] = '<27>ʼ<EFBFBD><CABC><EFBFBD>ַ';
$PALANG['pAdminCreate_admin_username_text_error1'] = '<27>ʼ<EFBFBD><CABC><EFBFBD>ַ<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD>Ϸ<EFBFBD><CFB7><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD>ַ!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = '<27>ʼ<EFBFBD><CABC><EFBFBD>ַ<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD>Ա<EFBFBD>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD>ڻ<EFBFBD><DABB>߹<EFBFBD><DFB9><EFBFBD>Ա<EFBFBD><D4B1><EFBFBD>Ƿ<EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_password'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_password2'] = '<27><><EFBFBD><EFBFBD> (<28><>֤)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EBB2BB>ͬ!<br /><3E><><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA>!</span>';
$PALANG['pAdminCreate_admin_button'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Աʧ<D4B1><CAA7>!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD>ɹ<EFBFBD>!';
$PALANG['pAdminCreate_admin_address'] = '<27><>';
$PALANG['pAdminEdit_admin_welcome'] = '<27>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա';
$PALANG['pAdminEdit_admin_username'] = '<27><><EFBFBD><EFBFBD>Ա';
$PALANG['pAdminEdit_admin_password'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_password2'] = '<27><><EFBFBD><EFBFBD> (<28><>֤)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EBB2BB>ͬ!<br /><3E><><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA>!</span>';
$PALANG['pAdminEdit_admin_active'] = '<27>';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = '<27>޸<EFBFBD>';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg"><3E><EFBFBD><E0BCAD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Աʧ<D4B1><CAA7>!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = '<27><EFBFBD><E0BCAD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD>ɹ<EFBFBD>!';
$PALANG['pUsersLogin_welcome'] = '<27>ʼ<EFBFBD><CABC>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͱ<EFBFBD><CDB1><EFBFBD>.';
$PALANG['pUsersLogin_username'] = '<27>ʺ<EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ)';
$PALANG['pUsersLogin_password'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pUsersLogin_button'] = '<27><>¼';
$PALANG['pUsersLogin_username_incorrect'] = '<27><>¼ʧ<C2BC><CAA7>. <20><>ȷ<EFBFBD><C8B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD><D6B7>¼!';
$PALANG['pUsersLogin_password_incorrect'] = '<27><>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EBB2BB>ȷ!';
$PALANG['pUsersMenu_vacation'] = '<27>Զ<EFBFBD><D4B6>ظ<EFBFBD>';
$PALANG['pUsersMenu_edit_alias'] = '<27>޸<EFBFBD>ת<EFBFBD><D7AA>';
$PALANG['pUsersMenu_password'] = '<27>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersMain_vacation'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD>Զ<EFBFBD><D4B6>ظ<EFBFBD>.';
$PALANG['pUsersMain_edit_alias'] = '<27>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD>ת<EFBFBD><D7AA>.';
$PALANG['pUsersMain_password'] = '<27>޸ĵ<DEB8>ǰ<EFBFBD><C7B0><EFBFBD><EFBFBD>.';
$PALANG['pUsersVacation_welcome'] = '<27>Զ<EFBFBD><D4B6>ظ<EFBFBD>.';
$PALANG['pUsersVacation_welcome_text'] = '<27><><EFBFBD>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><D4B6>ظ<EFBFBD>!';
$PALANG['pUsersVacation_subject'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_subject_text'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޷<EFBFBD><DEB7><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_body'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_body_text'] = <<<EOM
<20><><EFBFBD><EFBFBD> <date> <20><> <date> <20><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD>޷<EFBFBD><DEB7><EFBFBD><EFBFBD><EFBFBD>.
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <contact person> <20><>ϵ.
EOM;
$PALANG['pUsersVacation_button_away'] = '<27><><EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><D4B6>ظ<EFBFBD>';
$PALANG['pUsersVacation_button_back'] = '<27>ر<EFBFBD><D8B1>Զ<EFBFBD><D4B6>ظ<EFBFBD>';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><D4B6>ظ<EFBFBD>ʧ<EFBFBD><CAA7>!</span>';
$PALANG['pUsersVacation_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><D4B6>ظ<EFBFBD><D8B8>Ѿ<EFBFBD><D1BE>ر<EFBFBD>!';
$PALANG['pCreate_dbLog_createmailbox'] = '<27>½<EFBFBD><C2BD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_dbLog_createalias'] = '<27>½<EFBFBD><C2BD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pDelete_dbLog_deletealias'] = 'ɾ<><C9BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pDelete_dbLog_deletemailbox'] = '<27>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_dbLog_editactive'] = '<27>ı<EFBFBD><C4B1>״̬';
$PALANG['pEdit_dbLog_editalias'] = '<27><EFBFBD><E0BCAD><EFBFBD><EFBFBD>';
$PALANG['pEdit_dbLog_editmailbox'] = '<27><EFBFBD><E0BCAD><EFBFBD><EFBFBD>';
$PALANG['pSearch_welcome'] = '<27><><EFBFBD><EFBFBD>: ';
?>

300
languages/cs.lang Normal file
View File

@@ -0,0 +1,300 @@
<?php
//
// Language file Czech
// by Jakub
//
require ('default.lang');
$PALANG['charset'] = "ISO-8859-2";
$PALANG['YES'] = 'ANO';
$PALANG['NO'] = 'NE';
$PALANG['edit'] = 'upravit';
$PALANG['del'] = 'smazat';
$PALANG['confirm'] = 'Jste si jist<73>?\n';
$PALANG['confirm_domain'] = 'Opravdu chcete smazat v<>echny z<>znamy v t<>to dom<6F>n<EFBFBD> Tohle nelze vr<76>tit!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Zde se p<>ihla<6C>uj<75> emailov<6F> administr<74>to<74>i pro administraci sv<73>ch dom<6F>n.';
$PALANG['pLogin_username'] = 'U<>ivatelsk<73> jm<6A>no (email)';
$PALANG['pLogin_password'] = 'Heslo';
$PALANG['pLogin_button'] = 'P<>ihl<68>sit';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Nespr<70>vn<76> u<>ivatelsk<73> jmeno. P<>ihla<6C>ujte se svoj<6F> emailovou adresou!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Nespr<70>vn<76> heslo!</span>';
$PALANG['pLogin_login_users'] = 'Vstup do u<>ivatelsk<73> sekce.';
$PALANG['pMenu_overview'] = 'P<>ehled';
$PALANG['pMenu_create_alias'] = 'P<>idat p<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pMenu_create_mailbox'] = 'P<>idat schr<68>nku';
$PALANG['pMenu_sendmail'] = 'Poslat email';
$PALANG['pMenu_password'] = 'Zm<5A>nit heslo';
$PALANG['pMenu_viewlog'] = 'Prohl<68><6C>et z<>znam';
$PALANG['pMenu_logout'] = 'Odhl<68>sit.';
$PALANG['pMain_welcome'] = 'V<>tejte v Postfix Adminu!';
$PALANG['pMain_overview'] = 'V<>pis p<>esm<73>rov<6F>n<EFBFBD> a schr<68>nek. M<><4D>ete je zde upravovat a mazat.';
$PALANG['pMain_create_alias'] = 'Vytvo<76>it p<>esm<73>rov<6F>n<EFBFBD> v t<>to dom<6F>n<EFBFBD>.';
$PALANG['pMain_create_mailbox'] = 'Vytvo<76>it schr<68>nku v t<>to dom<6F>n<EFBFBD>.';
$PALANG['pMain_sendmail'] = 'Poslat email do jedn<64> z nov<6F> vytvo<76>en<65>ch schr<68>nek.';
$PALANG['pMain_password'] = 'Zm<5A>nit heslo administr<74>torsk<73>ho <20><>tu.';
$PALANG['pMain_viewlog'] = 'Prohl<68><6C>et z<>znamy zm<7A>n v dom<6F>n<EFBFBD>.';
$PALANG['pMain_logout'] = 'Odhl<68>sit ze syst<73>mu.';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previus Page';
$PALANG['pOverview_alias_title'] = ':: P<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pOverview_mailbox_title'] = ':: Schr<68>nky';
$PALANG['pOverview_button'] = 'P<>ej<65>t';
$PALANG['pOverview_welcome'] = 'P<>ehled pro dom<6F>nu ';
$PALANG['pOverview_alias_alias_count'] = 'P<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pOverview_alias_mailbox_count'] = 'Schr<68>nek';
$PALANG['pOverview_alias_address'] = 'Od';
$PALANG['pOverview_alias_goto'] = 'Pro';
$PALANG['pOverview_alias_modified'] = 'Naposledy zm<7A>n<EFBFBD>no';
$PALANG['pOverview_mailbox_username'] = 'Email';
$PALANG['pOverview_mailbox_name'] = 'Jm<4A>no';
$PALANG['pOverview_mailbox_quota'] = 'M<>sto (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Naposledy zm<7A>n<EFBFBD>no';
$PALANG['pOverview_mailbox_active'] = 'Aktivn<76>';
$PALANG['pOverview_get_domain'] = 'Dom<6F>na';
$PALANG['pOverview_get_aliases'] = 'P<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pOverview_get_mailboxes'] = 'Schr<68>nky';
$PALANG['pOverview_get_quota'] = 'M<>sto pro schr<68>nku (MB)';
$PALANG['pOverview_get_modified'] = 'Naposledy zm<7A>n<EFBFBD>no';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Nelze smazat polo<6C>ku ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Tato dom<6F>na nen<65> va<76>e ';
$PALANG['pCreate_alias_welcome'] = 'Vytvo<76>it nov<6F><76> p<>esm<73>rov<6F>n<EFBFBD> ve va<76><61> dom<6F>n<EFBFBD>.';
$PALANG['pCreate_alias_address'] = 'P<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">Adresa neni platn<74>!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Takov<6F> emailov<6F> adresa ji<6A> existuje!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Dos<6F>hli jste limitu, nem<65><6D>ete vytv<74><76>et dal<61><6C> aliasy!</span>';
$PALANG['pCreate_alias_goto'] = 'C<>l';
$PALANG['pCreate_alias_button'] = 'P<>idat';
$PALANG['pCreate_alias_goto_text'] = 'Kam m<> po<70>ta chodit.';
$PALANG['pCreate_alias_goto_text_error'] = 'Kam m<> po<70>ta chodit.<br /><span class="error_msg">C<>l nen<65> platn<74>!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Nepoda<64>ilo se p<>idat p<>esm<73>rov<6F>n<EFBFBD> do tabulky alias<61>!</span>';
$PALANG['pCreate_alias_result_succes'] = 'P<>esm<73>rov<6F>n<EFBFBD> bylo usp<73><70>n<EFBFBD> p<>id<69>no do tabulky alias<61>!';
$PALANG['pCreate_alias_catchall_text'] = 'Pro vytvo<76>en<65> dom<6F>nov<6F>ho ko<6B>e pou<6F>ijte * jako alias.<br />Pro alias dom<6F>na -> dom<6F>na pou<6F>ijte *@domain.tld jako c<>l.';
$PALANG['pEdit_alias_welcome'] = 'Upravit p<>esm<73>rov<6F>n<EFBFBD>.<br />Jeden z<>znam na <20><>dku.';
$PALANG['pEdit_alias_address'] = 'P<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Nelze naj<61>t alias!</span>';
$PALANG['pEdit_alias_goto'] = 'C<>l';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Nezadali jste c<>l</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Emailov<6F> adresa kterou jste zadali nen<65> platn<74>: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Tato dom<6F>na nen<65> va<76>e: ';
$PALANG['pEdit_alias_button'] = 'Upravit';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Nepoda<64>ilo se upravit p<>esm<73>rov<6F>n<EFBFBD>!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Vytvo<76>it novou lok<6F>ln<6C> schr<68>nku v dom<6F>n<EFBFBD>.';
$PALANG['pCreate_mailbox_username'] = 'U<>ivatelsk<73> jm<6A>no';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">Adresa neni platn<74>!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Takov<6F> emailov<6F> adresa ji<6A>&cedil; existuje!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Dos<6F>hli jste limitu, nem<65>&cedil;ete vytv<74><76>et dal<61><6C> schr<68>nky!</span>';
$PALANG['pCreate_mailbox_password'] = 'Heslo';
$PALANG['pCreate_mailbox_password2'] = 'Heslo (znovu)';
$PALANG['pCreate_mailbox_password_text'] = 'Heslo pro POP3/IMAP/SMTP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Heslo pro POP3/IMAP/SMTP<br /><span class="error_msg">Zadan<61> hesla jsou rozd<7A>ln<6C> nebo pr<70>zdn<64>!</span>';
$PALANG['pCreate_mailbox_name'] = 'Jm<4A>no';
$PALANG['pCreate_mailbox_name_text'] = 'Cel<65> jm<6A>no';
$PALANG['pCreate_mailbox_quota'] = 'M<>sto';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Zadan<61> m<>sto je p<><70>li<6C> velk<6C>!</span>';
$PALANG['pCreate_mailbox_active'] = 'Aktivn<76>';
$PALANG['pCreate_mailbox_mail'] = 'Vytvo<76>it schr<68>nku na disku';
$PALANG['pCreate_mailbox_button'] = 'P<>idat schr<68>nku';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Nepoda<64>ilo se p<>idat schr<68>nku do tabulky schr<68>nek!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Schr<68>nka byla p<>id<69>na do tabulky schr<68>nek!';
$PALANG['pEdit_mailbox_welcome'] = 'Upravit lok<6F>ln<6C> chr<68>nku v dom<6F>n<EFBFBD>.';
$PALANG['pEdit_mailbox_username'] = 'U<>ivatelsk<73> jm<6A>no';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Nepoda<64>ilo se nal<61>zt schr<68>nku!</span>';
$PALANG['pEdit_mailbox_password'] = 'Nov<6F> heslo';
$PALANG['pEdit_mailbox_password2'] = 'Nov<6F> heslo (znovu)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Zadan<61> hesla se neshoduj<75>!</span>';
$PALANG['pEdit_mailbox_name'] = 'Jm<4A>no';
$PALANG['pEdit_mailbox_quota'] = 'M<>sto';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Zadan<61> m<>sto je p<><70>li<6C> velk<6C>!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Tato dom<6F>na nen<65> va<76>e: ';
$PALANG['pEdit_mailbox_button'] = 'Upravit schr<68>nku';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Nepoda<64>ilo se upravit schr<68>nku!</span>';
$PALANG['pPassword_welcome'] = 'Zm<5A>nit heslo.';
$PALANG['pPassword_admin'] = 'U<>ivatelsk<73> jm<6A>no';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">U<>ivatelsk<73> jm<6A>no se neshoduje s <20><>dnou schr<68>nkou!</span>';
$PALANG['pPassword_password_current'] = 'Sou<6F>asn<73> heslo';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Nezadal(a) jste sou<6F>asn<73> heslo!</span>';
$PALANG['pPassword_password'] = 'Nov<6F> heslo';
$PALANG['pPassword_password2'] = 'Nov<6F> heslo (znovu)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Zadan<61> hesla jsou rozd<7A>ln<6C> nebo pr<70>zdn<64>!</span>';
$PALANG['pPassword_button'] = 'Zm<5A>nit heslo';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Nepoda<64>ilo se zm<7A>nit heslo!</span>';
$PALANG['pPassword_result_succes'] = 'Heslo bylo zm&#283<38>no!';
$PALANG['pViewlog_welcome'] = 'Prohl<68><6C>et 10 posledn<64>ch akc<6B> pro ';
$PALANG['pViewlog_timestamp'] = '&#268;asov<6F> zna<6E>ka';
$PALANG['pViewlog_username'] = 'U<>ivatel';
$PALANG['pViewlog_domain'] = 'Dom<6F>na';
$PALANG['pViewlog_action'] = 'Akce';
$PALANG['pViewlog_data'] = 'Pozn<7A>mka';
$PALANG['pViewlog_button'] = 'J<>t';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Nepoda<64>ilo se naj<61>t z<>znamy!</span>';
$PALANG['pSendmail_welcome'] = 'Poslat email.';
$PALANG['pSendmail_admin'] = 'Od';
$PALANG['pSendmail_to'] = 'C<>l';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">C<>l nen<65> platn<74> emailov<6F> adresa!</span>';
$PALANG['pSendmail_subject'] = 'P<>edm<64>t';
$PALANG['pSendmail_subject_text'] = 'V<>tejte';
$PALANG['pSendmail_body'] = 'Obsah';
$PALANG['pSendmail_button'] = 'Poslat email';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Nepoda<64>ilo se vytvo<76>it schr<68>nku!</span>';
$PALANG['pSendmail_result_succes'] = 'Schr<68>nka byla vytvo<76>ena!';
$PALANG['pAdminMenu_list_admin'] = 'Seznam administr<74>tor<6F>';
$PALANG['pAdminMenu_list_domain'] = 'Seznam dom<6F>n';
$PALANG['pAdminMenu_list_virtual'] = 'Seznam p<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pAdminMenu_viewlog'] = 'Prohl<68><6C>et z<>znamy';
$PALANG['pAdminMenu_backup'] = 'Z<>lohovat';
$PALANG['pAdminMenu_create_domain_admins'] = 'Dom<6F>nov<6F> administr<74>to<74>i';
$PALANG['pAdminMenu_create_admin'] = 'Nov<6F> administr<74>tor';
$PALANG['pAdminMenu_create_domain'] = 'Nov<6F> dom<6F>na';
$PALANG['pAdminMenu_create_alias'] = 'P<>idat p<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pAdminMenu_create_mailbox'] = 'P<>idat schr<68>nku';
$PALANG['pAdminList_admin_domain'] = 'Dom<6F>na';
$PALANG['pAdminList_admin_username'] = 'Administr<74>tor';
$PALANG['pAdminList_admin_count'] = 'Dom<6F>ny';
$PALANG['pAdminList_admin_modified'] = 'Naposledy zm<7A>n<EFBFBD>no';
$PALANG['pAdminList_admin_active'] = 'Aktivn<76>';
$PALANG['pAdminList_domain_domain'] = 'Dom<6F>na';
$PALANG['pAdminList_domain_description'] = 'Popis';
$PALANG['pAdminList_domain_aliases'] = 'P<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pAdminList_domain_mailboxes'] = 'Schr<68>nek';
$PALANG['pAdminList_domain_maxquota'] = 'Maxim<69>ln<6C> m<>sto (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Naposledy zm<7A>n<EFBFBD>no';
$PALANG['pAdminList_domain_active'] = 'Aktivn<76>';
$PALANG['pAdminList_virtual_button'] = 'J<>t';
$PALANG['pAdminList_virtual_welcome'] = 'P<>ehled pro ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'P<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Schr<68>nek';
$PALANG['pAdminList_virtual_alias_address'] = 'Od';
$PALANG['pAdminList_virtual_alias_goto'] = 'C<>l';
$PALANG['pAdminList_virtual_alias_modified'] = 'Naposledy zm<7A>n<EFBFBD>no';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Emailov<6F> adresa';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Jm<4A>no';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'M<>sto (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Naposledy zm<7A>n<EFBFBD>no';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Aktivn<76>';
$PALANG['pAdminCreate_domain_welcome'] = 'P<>idat novou dom<6F>nu';
$PALANG['pAdminCreate_domain_domain'] = 'Dom<6F>na';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Takov<6F> dom<6F>na u<> existuje!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Popis';
$PALANG['pAdminCreate_domain_aliases'] = 'P<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = znep<65><70>stupnit | 0 = neomezen<65>';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Schr<68>nek';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = znep<65><70>stupnit | 0 = neomezen<65>';
$PALANG['pAdminCreate_domain_maxquota'] = 'Maxim<69>ln<6C> m<>sto';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = znep<65><70>stupnit | 0 = neomezen<65>';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Pridat implicitn<74> p<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server je z<>lo<6C>n<EFBFBD> MX';
$PALANG['pAdminCreate_domain_button'] = 'P<>idat dom<6F>nu';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Nepoda<64>ilo se p<>idat dom<6F>nu!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Dom<6F>na byla p<>id<69>na!';
$PALANG['pAdminEdit_domain_welcome'] = 'Upravit dom<6F>nu';
$PALANG['pAdminEdit_domain_domain'] = 'Dom<6F>na';
$PALANG['pAdminEdit_domain_description'] = 'Popis';
$PALANG['pAdminEdit_domain_aliases'] = 'P<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = znep<65><70>stupnit | 0 = neomezen<65>';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Schr<68>nek';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = znep<65><70>stupnit | 0 = neomezen<65>';
$PALANG['pAdminEdit_domain_maxquota'] = 'Maxim<69>ln<6C> m<>sto';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = znep<65><70>stupnit | 0 = neomezen<65>';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server je z<>lo<6C>n<EFBFBD> MX';
$PALANG['pAdminEdit_domain_active'] = 'Aktivn<76>';
$PALANG['pAdminEdit_domain_button'] = 'Upravit dom<6F>nu';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Nepoda<64>ilo se upravit dom<6F>nu!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'P<>idat nov<6F>ho administr<74>tora';
$PALANG['pAdminCreate_admin_username'] = 'U<>ivatelsk<73> jm<6A>no';
$PALANG['pAdminCreate_admin_username_text'] = 'Emailov<6F> adresa';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'Emailov<6F> adresa<br /><span class="error_msg">Tato adresa nen<65> platn<74>!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'Email address<br /><span class="error_msg">Takov<6F> adresa u<> existuje!</span>';
$PALANG['pAdminCreate_admin_password'] = 'Heslo';
$PALANG['pAdminCreate_admin_password2'] = 'Heslo (znovu)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Zadan<61> hesla jsou rozd<7A>ln<6C> nebo pr<70>zdn<64>!</span>';
$PALANG['pAdminCreate_admin_button'] = 'P<>idat administr<74>tora';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Nepoda<64>ilo se p<>idat administr<74>tora!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Administr<74>tor byl p<>id<69>n!';
$PALANG['pAdminCreate_admin_address'] = 'Dom<6F>na';
$PALANG['pAdminEdit_admin_welcome'] = 'Upravit dom<6F>nov<6F>ho administr<74>tora';
$PALANG['pAdminEdit_admin_username'] = 'U<>ivatelsk<73> jm<6A>no';
$PALANG['pAdminEdit_admin_password'] = 'Heslo';
$PALANG['pAdminEdit_admin_password2'] = 'Heslo (znovu)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Zadan<61> hesla jsou rozd<7A>ln<6C> nebo pr<70>zdn<64>!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Aktivn<76>';
$PALANG['pAdminEdit_admin_button'] = 'Upravit administr<74>tora';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Nepoda<64>ilo se upravit administr<74>tora!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Administr<74>tor byl upraven!';
$PALANG['pUsersLogin_welcome'] = 'Zde se p<>ihla<6C>uj<75> u<>ivatel<65> pro zm<7A>nu hesla nebo p<>esm<73>rov<6F>n<EFBFBD>.';
$PALANG['pUsersLogin_username'] = 'U<>ivatelsk<73> jm<6A>no (email)';
$PALANG['pUsersLogin_password'] = 'Heslo';
$PALANG['pUsersLogin_button'] = 'P<>ihl<68>sit';
$PALANG['pUsersLogin_username_incorrect'] = 'Nespr<70>vn<76> u<>ivatelsk<73> jmeno. P<>ihla<6C>ujte se svoj<6F> emailovou adresou!';
$PALANG['pUsersLogin_password_incorrect'] = 'Nespr<70>vn<76> heslo!';
$PALANG['pUsersMenu_vacation'] = 'Automatick<63> odpov<6F><76>';
$PALANG['pUsersMenu_edit_alias'] = 'P<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pUsersMenu_password'] = 'Zm<5A>na hesla';
$PALANG['pUsersMain_vacation'] = 'Nastavit ,,jsem pry<72>`` nebo podobnou automatickou odpov<6F><76>.';
$PALANG['pUsersMain_edit_alias'] = 'Nastavit / zm<7A>n<EFBFBD>t p<>esm<73>rov<6F>n<EFBFBD>';
$PALANG['pUsersMain_password'] = 'Zm<5A>nit heslo';
$PALANG['pUsersVacation_welcome'] = 'Automatick<63> podpov<6F><76>';
$PALANG['pUsersVacation_welcome_text'] = 'Ji<4A> m<>ate nastavenou automatickou odpov<6F><76>!';
$PALANG['pUsersVacation_subject'] = 'P<>edm<64>t';
$PALANG['pUsersVacation_subject_text'] = 'Dovolen<65>';
$PALANG['pUsersVacation_body'] = 'Obsah';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Jsem na dovolen<65> od <date> od <date>.
S neodkladn<64>mi zpr<70>vami kontaktujte <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Odjet';
$PALANG['pUsersVacation_button_back'] = 'Vr<56>tit se';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Nepoda<64>ilo se upravit nastaven<65>!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Nastaven<65> bylo upraveno!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

305
languages/da.lang Normal file
View File

@@ -0,0 +1,305 @@
<?php
//
// Language file Danish
// by Lars
//
require ('default.lang');
$PALANG['YES'] = 'JA';
$PALANG['NO'] = 'NEJ';
$PALANG['edit'] = 'rediger';
$PALANG['del'] = 'slet';
$PALANG['confirm'] = 'Er du sikker p&aring; du vil slette dette?\n';
$PALANG['confirm_domain'] = 'Vil du virkelig slette alle poster for dette dom&aelig;ne? Dette kan ikke fortrydes!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Postadministrator: Log ind her for at administrere dine dom&aelig;ner.';
$PALANG['pLogin_username'] = 'Brugernavn (email)';
$PALANG['pLogin_password'] = 'Kodeord';
$PALANG['pLogin_button'] = 'Login';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Dit brugernavn er forkert. Verificer at du bruger din email-adresse som login!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Dit kodeord er forkert!</span>';
$PALANG['pLogin_login_users'] = 'Bruger: Log ind p&aring; brugersektionen her.';
$PALANG['pMenu_overview'] = 'Oversigt';
$PALANG['pMenu_create_alias'] = 'Tilf&oslash;j alias';
$PALANG['pMenu_create_mailbox'] = 'Tilf&oslash;j postboks';
$PALANG['pMenu_sendmail'] = 'Send Email';
$PALANG['pMenu_password'] = 'Kodeord';
$PALANG['pMenu_viewlog'] = 'Vis Log';
$PALANG['pMenu_logout'] = 'Log ud';
$PALANG['pMain_welcome'] = 'Velkommen til Postfix Admin!';
$PALANG['pMain_overview'] = 'Vis alle aliaser og postbokse. Du kan redigere / slette dem herfra.';
$PALANG['pMain_create_alias'] = 'Opret nyt alias til dit dom&aelig;ne.';
$PALANG['pMain_create_mailbox'] = 'Opret nu postboks til dit dom&aelig;ne.';
$PALANG['pMain_sendmail'] = 'Send en email til en af dine nyoprettede postbokse.';
$PALANG['pMain_password'] = 'Ret kodeordet til din administratorkonto.';
$PALANG['pMain_viewlog'] = 'Vis logfiler.';
$PALANG['pMain_logout'] = 'Log ud fra systemet';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Vis';
$PALANG['pOverview_welcome'] = 'Oversigt for ';
$PALANG['pOverview_alias_alias_count'] = 'Aliaser';
$PALANG['pOverview_alias_mailbox_count'] = 'Postbokse';
$PALANG['pOverview_alias_address'] = 'Fra';
$PALANG['pOverview_alias_goto'] = 'Til';
$PALANG['pOverview_alias_modified'] = 'Senest rettet';
$PALANG['pOverview_mailbox_username'] = 'Email';
$PALANG['pOverview_mailbox_name'] = 'Navn';
$PALANG['pOverview_mailbox_quota'] = 'Kvota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Senest rettet';
$PALANG['pOverview_mailbox_active'] = 'Aktiv';
$PALANG['pOverview_get_domain'] = 'Dom&aelig;ne';
$PALANG['pOverview_get_aliases'] = 'Aliaser';
$PALANG['pOverview_get_mailboxes'] = 'Postbokse';
$PALANG['pOverview_get_quota'] = 'Postboks Kvota (MB)';
$PALANG['pOverview_get_modified'] = 'Senest rettet';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Kan ikke slette denne post ';
$PALANG['pDelete_postdelete_error'] = '<span class="error_msg">Kunne ikke fjerne postkassen ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Dette dom&aelig;ne er ikke dit ';
$PALANG['pCreate_alias_welcome'] = 'Opret nyt alias til dit dom&aelig;ne.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">Aliaset er ikke gyldigt!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Email adressen eksisterer allerede. V&aelig;lg venligst en anden!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Du har n&aring;et gr&aelig;nsen for antallet af aliaser til dit dom&aelig;ne!</span>';
$PALANG['pCreate_alias_goto'] = 'Modtager';
$PALANG['pCreate_alias_button'] = 'Tilf&oslash;j Alias';
$PALANG['pCreate_alias_goto_text'] = 'Hvor emailen skal videresendes til.';
$PALANG['pCreate_alias_goto_text_error'] = 'Hvor emailen skal videresendes til.<br /><span class="error_msg">Modtageradressen er ikke gyldig!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Kan ikke tilf&oslash;je aliaset til alias-tabellen!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Aliaset er blevet tilf&oslash;jet til alias-tabellen!';
$PALANG['pCreate_alias_catchall_text'] = 'For at oprette et stjerne-alias, brug en "*" som alias.<br />For dom&aelig;ne til dom&aelig;ne-viderestilling brug "*@domain.tld" som modtager.';
$PALANG['pEdit_alias_welcome'] = 'Rediger et alias for dit dom&aelig;ne.<br />En modtager pr. linie.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Kan ikke finde aliaset!</span>';
$PALANG['pEdit_alias_goto'] = 'Modtager(e)';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Du udfyldte ikke noget i Modtager(e)</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Den tilf&oslash;jede emailadresse er ikke gyldig: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Dette dom&aelig;ne tilh&oslash;rer ikke dig: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Ret Alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Kan ikke redigere aliaset!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Opret en ny lokal postboks til dit dom&aelig;ne.';
$PALANG['pCreate_mailbox_username'] = 'Brugernavn';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">Email adressen er ikke gyldig!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Email adressen eksisterer allerede. V&aelig;lg venligst en anden!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Du har n&aring;et gr&aelig;nsen for antallet af postbokse til dit dom&aelig;ne!</span>';
$PALANG['pCreate_mailbox_password'] = 'Kodeord';
$PALANG['pCreate_mailbox_password2'] = 'Kodeord (igen)';
$PALANG['pCreate_mailbox_password_text'] = 'Kodeord til POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Kodeord til POP3/IMAP<br /><span class="error_msg">Kodeordene er ikke ens!<br />Eller er tomme!</span>';
$PALANG['pCreate_mailbox_name'] = 'Navn';
$PALANG['pCreate_mailbox_name_text'] = 'Fulde navn';
$PALANG['pCreate_mailbox_quota'] = 'Kvota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Den &oslash;nskede kvota er for h&oslash;j!</span>';
$PALANG['pCreate_mailbox_active'] = 'Aktiv';
$PALANG['pCreate_mailbox_mail'] = 'Send velkomsthilsen';
$PALANG['pCreate_mailbox_button'] = 'Tilf&oslash;j postboks';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Kan ikke tilf&oslash;je postboksen til postboks-tabellen!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Postboksen er tilf&oslash;jet til postboks-tabellen!';
$PALANG['pCreate_mailbox_result_succes_nosubfolders'] = 'Postkassen er tilf&oslash;jet, men ingen (eller kun dele) af de foruddefinerede underfoldere kunne oprettes.';
$PALANG['pEdit_mailbox_welcome'] = 'Rediger en postboks til dit dom&aelig;ne.';
$PALANG['pEdit_mailbox_username'] = 'Brugernavn';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Kan ikke finde postboksen!</span>';
$PALANG['pEdit_mailbox_password'] = 'Nyt kodeord';
$PALANG['pEdit_mailbox_password2'] = 'Nyt kodeord (igen)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Kodeordene er ikke ens!</span>';
$PALANG['pEdit_mailbox_name'] = 'Navn';
$PALANG['pEdit_mailbox_quota'] = 'Kvota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Den &oslash;nskede kvota er for h&oslash;j!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Dette dom&aelig;ne er ikke dit: ';
$PALANG['pEdit_mailbox_button'] = 'Ret postboks';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Kan ikke skifte kodeord!</span>';
$PALANG['pPassword_welcome'] = 'Ret dit kodeord.';
$PALANG['pPassword_admin'] = 'Kodeord';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Brugernavnet kunne ikke findes!</span>';
$PALANG['pPassword_password_current'] = 'Nuv&aelig;rende kodeord';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Du glemte at skrive dit nuv&aelig;rende kodeord!</span>';
$PALANG['pPassword_password'] = 'Nyt kodeord';
$PALANG['pPassword_password2'] = 'Nyt kodeord (igen)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Kodeordene er ikke ens!<br />Eller er tomme!</span>';
$PALANG['pPassword_button'] = 'Skift kodeord';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Kan ikke skifte kodeord!</span>';
$PALANG['pPassword_result_succes'] = 'Dit kodeord er skiftet!';
$PALANG['pViewlog_welcome'] = 'Vis de sidste 10 poster for ';
$PALANG['pViewlog_timestamp'] = 'Tidsstempel';
$PALANG['pViewlog_username'] = 'Administrator';
$PALANG['pViewlog_domain'] = 'Dom&aelig;ne';
$PALANG['pViewlog_action'] = 'Handling';
$PALANG['pViewlog_data'] = 'Data';
$PALANG['pViewlog_button'] = 'Vis';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Kan ikke finde loggen!</span>';
$PALANG['pSendmail_welcome'] = 'Send en email.';
$PALANG['pSendmail_admin'] = 'Afsender';
$PALANG['pSendmail_to'] = 'Modtager';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Modtager er tom eller en ugyldig email adresse!</span>';
$PALANG['pSendmail_subject'] = 'Emne';
$PALANG['pSendmail_subject_text'] = 'Velkommen';
$PALANG['pSendmail_body'] = 'Meddelelse';
$PALANG['pSendmail_button'] = 'Send email';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Kan ikke oprette postboks!</span>';
$PALANG['pSendmail_result_succes'] = 'Postboksen er oprettet!';
$PALANG['pAdminMenu_list_admin'] = 'Administratorliste';
$PALANG['pAdminMenu_list_domain'] = 'Dom&aelig;neliste';
$PALANG['pAdminMenu_list_virtual'] = 'Virtuel Liste';
$PALANG['pAdminMenu_viewlog'] = 'Vis Log';
$PALANG['pAdminMenu_backup'] = 'Backup';
$PALANG['pAdminMenu_create_domain_admins'] = 'Dom&aelig;neadministrator';
$PALANG['pAdminMenu_create_admin'] = 'Ny administrator';
$PALANG['pAdminMenu_create_domain'] = 'Nyt dom&aelig;ne';
$PALANG['pAdminMenu_create_alias'] = 'Tilf&oslash;j alias';
$PALANG['pAdminMenu_create_mailbox'] = 'Tilf&oslash;j postboks';
$PALANG['pAdminList_admin_domain'] = 'Dom&aelig;ne';
$PALANG['pAdminList_admin_username'] = 'Administrator';
$PALANG['pAdminList_admin_count'] = 'Dom&aelig;ner';
$PALANG['pAdminList_admin_modified'] = 'Senest rettet';
$PALANG['pAdminList_admin_active'] = 'Aktiv';
$PALANG['pAdminList_domain_domain'] = 'Dom&aelig;ne';
$PALANG['pAdminList_domain_description'] = 'Beskrivelse';
$PALANG['pAdminList_domain_aliases'] = 'Aliaser';
$PALANG['pAdminList_domain_mailboxes'] = 'Postbokse';
$PALANG['pAdminList_domain_maxquota'] = 'Maks. kvota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Senest rettet';
$PALANG['pAdminList_domain_active'] = 'Aktiv';
$PALANG['pAdminList_virtual_button'] = 'Vis';
$PALANG['pAdminList_virtual_welcome'] = 'Oversigt for ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliaser';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Postbokse';
$PALANG['pAdminList_virtual_alias_address'] = 'Fra';
$PALANG['pAdminList_virtual_alias_goto'] = 'Til';
$PALANG['pAdminList_virtual_alias_modified'] = 'Senest rettet';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Email';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Navn';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Kvota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Senest rettet';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Aktiv';
$PALANG['pAdminCreate_domain_welcome'] = 'Tilf&oslash;j et nyt dom&aelig;ne';
$PALANG['pAdminCreate_domain_domain'] = 'Dom&aelig;ne';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Dom&aelig;net eksisterer allerede!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Beskrivelse';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliaser';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = annuller | 0 = uendeligt';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Postbokse';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = annuller | 0 = uendeligt';
$PALANG['pAdminCreate_domain_maxquota'] = 'Maks. kvota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = annuller | 0 = uendeligt';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Tilf&oslash;j standard aliaser';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Tilf&oslash;j dom&aelig;ne';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Kan ikke tilf&oslash;je dom&aelig;ne!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Dom&aelig;net er tilf&oslash;jet!';
$PALANG['pAdminEdit_domain_welcome'] = 'Rediger et dom&aelig;ne';
$PALANG['pAdminEdit_domain_domain'] = 'Dom&aelig;ne';
$PALANG['pAdminEdit_domain_description'] = 'Beskrivelse';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliaser';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = annuller | 0 = uendeligt';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Postbokse';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = annuller | 0 = uendeligt';
$PALANG['pAdminEdit_domain_maxquota'] = 'Maks. kvota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = annuller | 0 = uendeligt';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Aktiv';
$PALANG['pAdminEdit_domain_button'] = 'Rediger dom&aelig;ne';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Kan ikke rette dom&aelig;ne!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Tilf&oslash;j ny dom&aelig;neadministrator';
$PALANG['pAdminCreate_admin_username'] = 'Administrator';
$PALANG['pAdminCreate_admin_username_text'] = 'Email adresse';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'Email adresse<br /><span class="error_msg">Administrator er ikke en gyldig email adresse!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'Email adresse<br /><span class="error_msg">Aministratoren findes allerede eller er ikke gyldig</span>';
$PALANG['pAdminCreate_admin_password'] = 'Kodeord';
$PALANG['pAdminCreate_admin_password2'] = 'Kodeord (igen)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Kodeordene er ikke ens!<br />Eller er tomme!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Tilf&oslash;j administrator';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Kan ikke tilf&oslash;je administrator!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Administrator er tilf&oslash;jet!';
$PALANG['pAdminCreate_admin_address'] = 'Dom&aelig;ne';
$PALANG['pAdminDelete_domain_error'] = '<span class="error_msg">Kunne ikke fjerne dom&aelig;net!</span>';
$PALANG['pAdminEdit_admin_welcome'] = 'Rediger en dom&aelig;neadministrator';
$PALANG['pAdminEdit_admin_username'] = 'Administrator';
$PALANG['pAdminEdit_admin_password'] = 'Kodeord';
$PALANG['pAdminEdit_admin_password2'] = 'Kodeord (igen)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Kodeordene er ikke ens!<br />Eller er tomme!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Aktiv';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Rediger administrator';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Kan ikke rette administrator!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Administrator er rettet!';
$PALANG['pUsersLogin_welcome'] = 'Postboksbruger: Login for at &aelig;ndre kodeord og viderestilling.';
$PALANG['pUsersLogin_username'] = 'Brugernavn (email)';
$PALANG['pUsersLogin_password'] = 'Kodeord';
$PALANG['pUsersLogin_button'] = 'Log ind';
$PALANG['pUsersLogin_username_incorrect'] = 'Dit brugernavn er forkert. Verificer at du bruger din email adresse som brugernavn!';
$PALANG['pUsersLogin_password_incorrect'] = 'Dit kodeord er ikke korrekt!';
$PALANG['pUsersMenu_vacation'] = 'Autosvar';
$PALANG['pUsersMenu_edit_alias'] = 'Rediger dine viderestillinger';
$PALANG['pUsersMenu_password'] = 'Skift kodeord';
$PALANG['pUsersMain_vacation'] = 'Tilf&oslash;j en "ikke tilstede" besked eller et autosvar til din email adresse.';
$PALANG['pUsersMain_edit_alias'] = 'Skift dine viderestillinger for email.';
$PALANG['pUsersMain_password'] = 'Skift dit nuv&aelig;rende kodeord.';
$PALANG['pUsersVacation_welcome'] = 'Autosvar.';
$PALANG['pUsersVacation_welcome_text'] = 'Du har allerede et autosvar indstillet!';
$PALANG['pUsersVacation_subject'] = 'Emne';
$PALANG['pUsersVacation_subject_text'] = 'Ikke tilstede';
$PALANG['pUsersVacation_body'] = 'Meddelelse';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Jeg er ikke tilstede i perioden <dato> til <dato>.
I n&oslash;dstilf&aelig;lde kan <kontaktperson> kontaktes.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Tager afsted';
$PALANG['pUsersVacation_button_back'] = 'Er kommet tilbage';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Kan ikke opdatere dine autosvar indstillinger!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Dit autosvar er fjernet!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

302
languages/de.lang Normal file
View File

@@ -0,0 +1,302 @@
<?php
//
// Language file German
// by Tobias
//
require ('default.lang');
$PALANG['YES'] = 'JA';
$PALANG['NO'] = 'NEIN';
$PALANG['edit'] = 'editieren';
$PALANG['del'] = 'l&ouml;schen';
$PALANG['confirm'] = 'Sind Sie sicher dass Sie das l&ouml;schen wollen?\n';
$PALANG['confirm_domain'] = 'Wollen Sie wirklich alle Eintr&auml;ge dieser Domain l&ouml;schen? Dies kann NICHT r&uuml;ckg&auml;ngig gemacht werden!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Mail-Administratoren loggen sich bitte hier ein.';
$PALANG['pLogin_username'] = 'Login (eMail)';
$PALANG['pLogin_password'] = 'Passwort';
$PALANG['pLogin_button'] = 'Login';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Ihr Login-Name ist nicht korrekt. Bitte benutzen Sie die komplette eMail-Adresse</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Falsches Passwort!</span>';
$PALANG['pLogin_login_users'] = 'eMail-Benutzer bitte hier einloggen.';
$PALANG['pMenu_overview'] = '&Uuml;berblick';
$PALANG['pMenu_create_alias'] = 'Alias hinzuf&uuml;gen';
$PALANG['pMenu_create_mailbox'] = 'Mailbox hinzuf&uuml;gen';
$PALANG['pMenu_sendmail'] = 'Email versenden';
$PALANG['pMenu_password'] = 'Passwort &auml;ndern';
$PALANG['pMenu_viewlog'] = 'Log ansehen';
$PALANG['pMenu_logout'] = 'Logout';
$PALANG['pMain_welcome'] = 'Willkommen zu Postfix Admin!';
$PALANG['pMain_overview'] = 'Listet Ihre Aliase und Mailboxen auf. Sie k&ouml;nnen sie hier editieren und l&ouml;schen.';
$PALANG['pMain_create_alias'] = 'F<>gt einen neuen Alias f&uuml;r Ihre Domain hinzu.';
$PALANG['pMain_create_mailbox'] = 'Legt eine neue Mailbox f&uuml;r Ihre Domain an.';
$PALANG['pMain_sendmail'] = 'Versenden Sie eine Email.';
$PALANG['pMain_password'] = '&Auml;ndern Sie Ihr Admin-Passwort.';
$PALANG['pMain_viewlog'] = 'Lassen Sie sich das Log anzeigen.';
$PALANG['pMain_logout'] = 'Ausloggen aus dem System';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Los';
$PALANG['pOverview_welcome'] = '&Uuml;berblick &uuml;ber ';
$PALANG['pOverview_alias_alias_count'] = 'Aliase';
$PALANG['pOverview_alias_mailbox_count'] = 'Mailboxen';
$PALANG['pOverview_alias_address'] = 'Von';
$PALANG['pOverview_alias_goto'] = 'An';
$PALANG['pOverview_alias_modified'] = 'Zuletzt ver&auml;ndert';
$PALANG['pOverview_mailbox_username'] = 'Email';
$PALANG['pOverview_mailbox_name'] = 'Name';
$PALANG['pOverview_mailbox_quota'] = 'Quota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Zuletzt ver&auml;ndert';
$PALANG['pOverview_mailbox_active'] = 'Aktiv';
$PALANG['pOverview_get_domain'] = 'Domain';
$PALANG['pOverview_get_aliases'] = 'Aliases';
$PALANG['pOverview_get_mailboxes'] = 'Mailboxes';
$PALANG['pOverview_get_quota'] = 'Mailbox Quota (MB)';
$PALANG['pOverview_get_modified'] = 'Zuletzt ver&auml;ndert';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Eintrag konnte nicht gel&ouml;scht werden ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Diese Domain geh&ouml;rt nicht Ihnen ';
$PALANG['pCreate_alias_welcome'] = 'Neuen Alias f&uuml;r Ihre Domain anlegen';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">Dieses ALIAS ist nicht erlaubt!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Diese eMail-Adresse existiert bereits. Bitte w&auml;hlen Sie eine andere!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Sie haben Ihr Limit f&uuml;r Aliase auf dieser Domain erreicht!</span>';
$PALANG['pCreate_alias_goto'] = 'An';
$PALANG['pCreate_alias_button'] = 'Alias hinzuf&uuml;gen';
$PALANG['pCreate_alias_goto_text'] = 'Wohin soll die eMail weitergeleitet werden?';
$PALANG['pCreate_alias_goto_text_error'] = 'Wohin die eMail weitergeleitet werden soll<br /><span class="error_msg">Das An-Feld ist falsch!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Unm&ouml;glich dieses Alias in die Alias-Tabelle einzutragen!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Das Alias wurde in die Alias-Tabelle hinzugef&uuml;gt!';
$PALANG['pCreate_alias_catchall_text'] = 'Um alle Adressen abzudecken benutzen Sie einen "*" als Alias.<br />Um ganze Domains an andere Domains weiterzuleiten benutzen Sie "*@domain.tld" im "An"-Feld.';
$PALANG['pEdit_alias_welcome'] = '&Auml;ndern Sie einen Alias f&uuml;r Ihre Domain<br />EIN Eintrag pro Zeile!';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Auffinden des Alias schlug fehl!</span>';
$PALANG['pEdit_alias_goto'] = 'An';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Sie haben im "To"-Feld nichts angegeben!</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Die angegebene eMail-Adresse ist nicht korrekt: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Diese Domain geh&ouml;rt nicht Ihnen: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Alias &auml;ndern';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">&Auml;ndern des Aliases nicht m&ouml;glich!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Legen Sie eine neue Mailbox f&uuml;r Ihre Domain an.';
$PALANG['pCreate_mailbox_username'] = 'Benutzername';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">Die EMAIL ist nicht korrekt!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Diese Email-Adresse existiert bereits. Bitte w&auml;hlen Sie eine andere!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Sie d&uuml;rfen leider nicht mehr Mailboxen f&uuml;r diese Domain anlegen!</span>';
$PALANG['pCreate_mailbox_password'] = 'Passwort';
$PALANG['pCreate_mailbox_password2'] = 'Passwort (nochmal)';
$PALANG['pCreate_mailbox_password_text'] = 'Passwort f&uuml;r POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Passwort f&uuml;r POP3/IMAP<br /><span class="error_msg">Die beiden Passw&ouml;rter sind nicht identisch!<br />Oder ganz leer!</span>';
$PALANG['pCreate_mailbox_name'] = 'Name';
$PALANG['pCreate_mailbox_name_text'] = 'Voller Name';
$PALANG['pCreate_mailbox_quota'] = 'Quota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Das angegebene Quota ist zu hoch!</span>';
$PALANG['pCreate_mailbox_active'] = 'Aktiv';
$PALANG['pCreate_mailbox_mail'] = 'Mailbox anlegen';
$PALANG['pCreate_mailbox_button'] = 'Mailbox hinzuf&uuml;gen';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Unm&ouml;glich die Mailbox in die Mailbox-Tabelle einzutragen!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Die Mailbox wurde in die Mailbox-Tabelle eingetragen!';
$PALANG['pEdit_mailbox_welcome'] = '&Auml;ndern Sie ihre Mailbox hier.';
$PALANG['pEdit_mailbox_username'] = 'Benutzername';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Unm&ouml;glich die Mailbox aufzufinden!</span>';
$PALANG['pEdit_mailbox_password'] = 'Neues Passwort';
$PALANG['pEdit_mailbox_password2'] = 'Neues Passwort (nochmal)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Die beiden Passw&ouml;rter sind nicht identisch!</span>';
$PALANG['pEdit_mailbox_name'] = 'Name';
$PALANG['pEdit_mailbox_quota'] = 'Quota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Das angegebene Quota ist zu hoch!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Diese Domain geh&ouml;rt nicht Ihnen: ';
$PALANG['pEdit_mailbox_button'] = 'Mailbox editieren';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Unm&ouml;glich das Passwort zu &auml;ndern!</span>';
$PALANG['pPassword_welcome'] = '&Auml;ndern Sie Ihr Login-Passwort.';
$PALANG['pPassword_admin'] = 'Login';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Das angegebene Login entspricht keiner Mailbox!</span>';
$PALANG['pPassword_password_current'] = 'Jetziges Password';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Sie haben Ihr derzeitiges Passwort nicht angegeben!</span>';
$PALANG['pPassword_password'] = 'Neues Passwort';
$PALANG['pPassword_password2'] = 'Neues Password (nochmal)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Die beiden angegebenen Passw&ouml;rter sind nicht identische!<br />Oder leer!</span>';
$PALANG['pPassword_button'] = 'Passwort &auml;ndern';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Unm&ouml;glich das Passwort zu &auml;ndern!</span>';
$PALANG['pPassword_result_succes'] = 'Ihr Passwort wurde ge&auml;ndert!';
$PALANG['pViewlog_welcome'] = 'Zeigt die letzten 10 Aktionen f&uuml;r ';
$PALANG['pViewlog_timestamp'] = 'Zeitpunkt';
$PALANG['pViewlog_username'] = 'Admin';
$PALANG['pViewlog_domain'] = 'Domain';
$PALANG['pViewlog_action'] = 'Aktion';
$PALANG['pViewlog_data'] = 'Daten';
$PALANG['pViewlog_button'] = 'Los';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Kann keine Eintr&auml;ge finden!</span>';
$PALANG['pSendmail_welcome'] = 'eMail versenden.';
$PALANG['pSendmail_admin'] = 'Von';
$PALANG['pSendmail_to'] = 'An';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Das "An"-Feld ist leer bzw. ung&uuml;ltig!</span>';
$PALANG['pSendmail_subject'] = 'Betreff';
$PALANG['pSendmail_subject_text'] = 'Willkommen';
$PALANG['pSendmail_body'] = 'Text';
$PALANG['pSendmail_button'] = 'Versende Nachricht';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Kann Mailbox nicht anlegen!</span>';
$PALANG['pSendmail_result_succes'] = 'Mailbox wurde angelegt!';
$PALANG['pAdminMenu_list_admin'] = 'Admin Liste';
$PALANG['pAdminMenu_list_domain'] = 'Domain Liste';
$PALANG['pAdminMenu_list_virtual'] = 'Virtual Liste';
$PALANG['pAdminMenu_viewlog'] = 'Log ansehen';
$PALANG['pAdminMenu_backup'] = 'Sicherung';
$PALANG['pAdminMenu_create_domain_admins'] = 'Domain Admins';
$PALANG['pAdminMenu_create_admin'] = 'Neuer Admin';
$PALANG['pAdminMenu_create_domain'] = 'Neue Domain';
$PALANG['pAdminMenu_create_alias'] = 'Alias hinzuf&uuml;gen';
$PALANG['pAdminMenu_create_mailbox'] = 'Mailbox hinzuf&uuml;gen';
$PALANG['pAdminList_admin_domain'] = 'Domain';
$PALANG['pAdminList_admin_username'] = 'Admin';
$PALANG['pAdminList_admin_count'] = 'Domains';
$PALANG['pAdminList_admin_modified'] = 'zuletzt ge&auml;ndert';
$PALANG['pAdminList_admin_active'] = 'Aktiv';
$PALANG['pAdminList_domain_domain'] = 'Domain';
$PALANG['pAdminList_domain_description'] = 'Beschreibung';
$PALANG['pAdminList_domain_aliases'] = 'Aliase';
$PALANG['pAdminList_domain_mailboxes'] = 'Mailboxen';
$PALANG['pAdminList_domain_maxquota'] = 'Max Quota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'zuletzt ge&auml;ndert';
$PALANG['pAdminList_domain_active'] = 'Aktiv';
$PALANG['pAdminList_virtual_button'] = 'Los';
$PALANG['pAdminList_virtual_welcome'] = '&Uuml;berblick f&uuml;r ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliase';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Mailboxen';
$PALANG['pAdminList_virtual_alias_address'] = 'Von';
$PALANG['pAdminList_virtual_alias_goto'] = 'An';
$PALANG['pAdminList_virtual_alias_modified'] = 'zuletzt ge&auml;ndert';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Email';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Name';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Quota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'zuletzt ge&auml;ndert';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Aktiv';
$PALANG['pAdminCreate_domain_welcome'] = 'Domain hinzuf&uuml;gen';
$PALANG['pAdminCreate_domain_domain'] = 'Domain';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Diese Domain existiert bereits!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Beschreibung';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliase';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = ausschalten | 0 = kein Limit';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Mailboxes';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = ausschalten | 0 = kein Limit';
$PALANG['pAdminCreate_domain_maxquota'] = 'Max Quota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = ausschalten | 0 = kein Limit';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Standard-Aliase hinzuf&uuml;gen';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Domain hinzuf&uuml;gen';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Konnte Domain nicht anlegen!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Domain wurde angelegt!';
$PALANG['pAdminEdit_domain_welcome'] = 'Domain editieren';
$PALANG['pAdminEdit_domain_domain'] = 'Domain';
$PALANG['pAdminEdit_domain_description'] = 'Beschreibung';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliase';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = ausschalten | 0 = kein Limit';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Mailboxes';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = ausschalten | 0 = kein Limit';
$PALANG['pAdminEdit_domain_maxquota'] = 'Max Quota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = ausschalten | 0 = kein Limit';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Aktiv';
$PALANG['pAdminEdit_domain_button'] = 'Domain editieren';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Konnte Domain nicht editieren!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Neuen Domain-Admin hinzuf&uuml;gen';
$PALANG['pAdminCreate_admin_username'] = 'Admin';
$PALANG['pAdminCreate_admin_username_text'] = 'Email Adresse';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'Email Adresse<br /><span class="error_msg">Admin-Adresse ist keine echte Email-Adresse!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'Email Adresse<br /><span class="error_msg">Der Admin existiert bereits bzw. ist nicht korrekt</span>';
$PALANG['pAdminCreate_admin_password'] = 'Passwort';
$PALANG['pAdminCreate_admin_password2'] = 'Passwort (nochmal)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Die angegebenen Passw&ouml;rter sind nicht identisch<br />Oder leer!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Admin hinzuf&uuml;gen';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Konnte den Admin nicht anlegen!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Admin angelegt!';
$PALANG['pAdminCreate_admin_address'] = 'Domain';
$PALANG['pAdminEdit_admin_welcome'] = 'Domain Admin editieren';
$PALANG['pAdminEdit_admin_username'] = 'Admin';
$PALANG['pAdminEdit_admin_password'] = 'Passwort';
$PALANG['pAdminEdit_admin_password2'] = 'Passwort (nochmal)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Die beiden Passw&ouml;rter sind nicht identisch<br />Oder leer!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Aktiv';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Admin editieren';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Konnte Admin nicht &auml;ndern</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Admin ge&auml;ndert!';
$PALANG['pUsersLogin_welcome'] = 'Benutzer bitte hier einloggen, um Weiterleitungen bzw. das Passwort zu &auml;ndern.';
$PALANG['pUsersLogin_username'] = 'Login (email)';
$PALANG['pUsersLogin_password'] = 'Passwort';
$PALANG['pUsersLogin_button'] = 'Login';
$PALANG['pUsersLogin_username_incorrect'] = 'Falscher Login! Bitte benutzen Sie ihre Email-Adresse als Login';
$PALANG['pUsersLogin_password_incorrect'] = 'Falsches Passwort!';
$PALANG['pUsersMenu_vacation'] = 'Automatische Antwort';
$PALANG['pUsersMenu_edit_alias'] = 'Weiterleitung &auml;ndern';
$PALANG['pUsersMenu_password'] = 'Passwort &auml;ndern';
$PALANG['pUsersMain_vacation'] = 'Geben Sie eine "Automatische Antwort" ein. Sinnvoll z.B. w&auml;hrend Sie im Urlaub sind';
$PALANG['pUsersMain_edit_alias'] = '&Auml;ndern Sie Ihre Weiterleitung.';
$PALANG['pUsersMain_password'] = '&Auml;ndern Sie Ihr Passwort.';
$PALANG['pUsersVacation_welcome'] = 'Automatische Antwort.';
$PALANG['pUsersVacation_welcome_text'] = 'Sie haben schon eine Automatische Antwort konfiguriert!';
$PALANG['pUsersVacation_subject'] = 'Betreff';
$PALANG['pUsersVacation_subject_text'] = 'Ich bin weg...';
$PALANG['pUsersVacation_body'] = 'Text';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Ich bin vom <date> bis <date> nicht zu Hause / im B<>ro.
In dringenden F<>llen setzen Sie sich bitte mit <contact person> in Verbindung.
Vielen Dank f<>r Ihr Verst<73>ndniss.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Ich gehe weg';
$PALANG['pUsersVacation_button_back'] = 'Ich bin zur&uuml;ck';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Konnte Ihre Automatische Antwort nicht einstellen!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Ihre Automatische Antwort wurde gel&ouml;scht!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

317
languages/default.lang Normal file
View File

@@ -0,0 +1,317 @@
<?php
//
// Language file English
// by Mischa <mischa at high5 dot net>
//
// This is in the fact en.lang.
// Contains complete set of variables/sentences used in PostfixAdmin.
// Every language file should require it at the beginning.
//
$PALANG['YES'] = 'YES';
$PALANG['NO'] = 'NO';
$PALANG['edit'] = 'edit';
$PALANG['del'] = 'del';
$PALANG['confirm'] = 'Are you sure you want to delete this?\n';
$PALANG['confirm_domain'] = 'Do you really want to delete all records for this domain? This can not be undone!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Mail admins login here to administer your domain.';
$PALANG['pLogin_username'] = 'Login (email)';
$PALANG['pLogin_password'] = 'Password';
$PALANG['pLogin_button'] = 'Login';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Your login is not correct. Make sure that you login with your email address!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Your password is not correct!</span>';
$PALANG['pLogin_login_users'] = 'Users click here to login to the user section.';
$PALANG['pMenu_overview'] = 'Overview';
$PALANG['pMenu_create_alias'] = 'Add Alias';
$PALANG['pMenu_create_mailbox'] = 'Add Mailbox';
$PALANG['pMenu_sendmail'] = 'Send Email';
$PALANG['pMenu_password'] = 'Password';
$PALANG['pMenu_viewlog'] = 'View Log';
$PALANG['pMenu_logout'] = 'Logout';
$PALANG['pMain_welcome'] = 'Welcome to Postfix Admin!';
$PALANG['pMain_overview'] = 'List your aliases and mailboxes. You can edit / delete them from here.';
$PALANG['pMain_create_alias'] = 'Create a new alias for your domain.';
$PALANG['pMain_create_mailbox'] = 'Create a new mailbox for your domain.';
$PALANG['pMain_sendmail'] = 'Send an email to one of your newly created mailboxes.';
$PALANG['pMain_password'] = 'Change the password for your admin account.';
$PALANG['pMain_viewlog'] = 'View the log files.';
$PALANG['pMain_logout'] = 'Logout from the system';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Go';
$PALANG['pOverview_welcome'] = 'Overview for ';
$PALANG['pOverview_alias_alias_count'] = 'Aliases';
$PALANG['pOverview_alias_mailbox_count'] = 'Mailboxes';
$PALANG['pOverview_alias_address'] = 'From';
$PALANG['pOverview_alias_goto'] = 'To';
$PALANG['pOverview_alias_modified'] = 'Last Modified';
$PALANG['pOverview_alias_active'] = 'Active';
$PALANG['pOverview_alias_edit'] = 'Alias';
$PALANG['pOverview_mailbox_username'] = 'Email';
$PALANG['pOverview_mailbox_name'] = 'Name';
$PALANG['pOverview_mailbox_quota'] = 'Quota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Last Modified';
$PALANG['pOverview_mailbox_active'] = 'Active';
$PALANG['pOverview_vacation_edit'] = 'Vacation';
$PALANG['pOverview_get_domain'] = 'Domain';
$PALANG['pOverview_get_aliases'] = 'Aliases';
$PALANG['pOverview_get_mailboxes'] = 'Mailboxes';
$PALANG['pOverview_get_quota'] = 'Mailbox Quota (MB)';
$PALANG['pOverview_get_modified'] = 'Last Modified';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Unable to delete the entry ';
$PALANG['pDelete_postdelete_error'] = '<span class="error_msg">Unable to remove mailbox ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">This domain is not yours ';
$PALANG['pDelete_alias_error'] = '<span class="error_msg">Unable to delete alias ';
$PALANG['pCreate_alias_welcome'] = 'Create a new alias for your domain.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">The ALIAS is not valid!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">This email address already exists, please choose a different one!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">You have reached your limit to create aliases!</span>';
$PALANG['pCreate_alias_goto'] = 'To';
$PALANG['pCreate_alias_active'] = 'Active';
$PALANG['pCreate_alias_button'] = 'Add Alias';
$PALANG['pCreate_alias_goto_text'] = 'Where the mail needs to be send to.';
$PALANG['pCreate_alias_goto_text_error'] = 'Where the email needs to go.<br /><span class="error_msg">The TO is not valid!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Unable to add the alias to the alias table!</span>';
$PALANG['pCreate_alias_result_succes'] = 'The alias has been added to the alias table!';
$PALANG['pCreate_alias_catchall_text'] = 'To create a catch-all use an "*" as alias.<br />For domain to domain forwarding use "*@domain.tld" as to.';
$PALANG['pEdit_alias_welcome'] = 'Edit an alias for your domain.<br />One entry per line.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Unable to locate alias!</span>';
$PALANG['pEdit_alias_goto'] = 'To';
$PALANG['pEdit_alias_active'] = 'Active';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">You didn\'t enter anything at To</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">The email address that you have entered is not valid: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">This domain is not yours: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Edit Alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Unable to modify the alias!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Create a new mailbox for your domain.';
$PALANG['pCreate_mailbox_username'] = 'Username';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">The EMAIL is not valid!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">This email address already exists, please choose a different one!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">You have reached your limit to create mailboxes!</span>';
$PALANG['pCreate_mailbox_password'] = 'Password';
$PALANG['pCreate_mailbox_password2'] = 'Password (again)';
$PALANG['pCreate_mailbox_password_text'] = 'Password for POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Password for POP3/IMAP<br /><span class="error_msg">The passwords that you supplied don\'t match!<br />Or are empty!</span>';
$PALANG['pCreate_mailbox_name'] = 'Name';
$PALANG['pCreate_mailbox_name_text'] = 'Full name';
$PALANG['pCreate_mailbox_quota'] = 'Quota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">The quota that you specified is to high!</span>';
$PALANG['pCreate_mailbox_active'] = 'Active';
$PALANG['pCreate_mailbox_mail'] = 'Send Welcome mail';
$PALANG['pCreate_mailbox_button'] = 'Add Mailbox';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Unable to add the mailbox to the mailbox table!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'The mailbox has been added to the mailbox table!';
$PALANG['pCreate_mailbox_result_succes_nosubfolders'] = 'The mailbox has been added to the mailbox table, but none (or only some) of the predefined sub-folders could be created';
$PALANG['pEdit_mailbox_welcome'] = 'Edit a mailbox for your domain.';
$PALANG['pEdit_mailbox_username'] = 'Username';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Unable to locate mailbox!</span>';
$PALANG['pEdit_mailbox_password'] = 'New Password';
$PALANG['pEdit_mailbox_password2'] = 'New Password (again)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">The passwords that you supplied don\'t match!</span>';
$PALANG['pEdit_mailbox_name'] = 'Name';
$PALANG['pEdit_mailbox_name_text'] = 'Full name';
$PALANG['pEdit_mailbox_quota'] = 'Quota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">The quota that you specified is to high!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">This domain is not yours: ';
$PALANG['pEdit_mailbox_button'] = 'Edit Mailbox';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Unable to modify the mailbox!</span>';
$PALANG['pPassword_welcome'] = 'Change your login password.';
$PALANG['pPassword_admin'] = 'Login';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">The LOGIN that you supplied doesn\'t match a mailbox!</span>';
$PALANG['pPassword_password_current'] = 'Current Password';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">You didn\'t supply your current password!</span>';
$PALANG['pPassword_password'] = 'New Password';
$PALANG['pPassword_password2'] = 'New Password (again)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">The passwords that you supplied don\'t match!<br />Or are empty!</span>';
$PALANG['pPassword_button'] = 'Change Password';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Unable to change your password!</span>';
$PALANG['pPassword_result_succes'] = 'Your password has been changed!';
$PALANG['pViewlog_welcome'] = 'View the last 10 actions for ';
$PALANG['pViewlog_timestamp'] = 'Timestamp';
$PALANG['pViewlog_username'] = 'Admin';
$PALANG['pViewlog_domain'] = 'Domain';
$PALANG['pViewlog_action'] = 'Action';
$PALANG['pViewlog_data'] = 'Data';
$PALANG['pViewlog_button'] = 'Go';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Unable to find the logs!</span>';
$PALANG['pSendmail_welcome'] = 'Send an email.';
$PALANG['pSendmail_admin'] = 'From';
$PALANG['pSendmail_to'] = 'To';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">To is empty or is not a valid email address!</span>';
$PALANG['pSendmail_subject'] = 'Subject';
$PALANG['pSendmail_subject_text'] = 'Welcome';
$PALANG['pSendmail_body'] = 'Body';
$PALANG['pSendmail_button'] = 'Send Message';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Unable to create mailbox!</span>';
$PALANG['pSendmail_result_succes'] = 'The mailbox has been created!';
$PALANG['pAdminMenu_list_admin'] = 'Admin List';
$PALANG['pAdminMenu_list_domain'] = 'Domain List';
$PALANG['pAdminMenu_list_virtual'] = 'Virtual List';
$PALANG['pAdminMenu_viewlog'] = 'View Log';
$PALANG['pAdminMenu_backup'] = 'Backup';
$PALANG['pAdminMenu_create_domain_admins'] = 'Domain Admins';
$PALANG['pAdminMenu_create_admin'] = 'New Admin';
$PALANG['pAdminMenu_create_domain'] = 'New Domain';
$PALANG['pAdminMenu_create_alias'] = 'Add Alias';
$PALANG['pAdminMenu_create_mailbox'] = 'Add Mailbox';
$PALANG['pAdminList_admin_domain'] = 'Domain';
$PALANG['pAdminList_admin_username'] = 'Admin';
$PALANG['pAdminList_admin_count'] = 'Domains';
$PALANG['pAdminList_admin_modified'] = 'Last Modified';
$PALANG['pAdminList_admin_active'] = 'Active';
$PALANG['pAdminList_domain_domain'] = 'Domain';
$PALANG['pAdminList_domain_description'] = 'Description';
$PALANG['pAdminList_domain_aliases'] = 'Aliases';
$PALANG['pAdminList_domain_mailboxes'] = 'Mailboxes';
$PALANG['pAdminList_domain_maxquota'] = 'Quota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Last Modified';
$PALANG['pAdminList_domain_active'] = 'Active';
$PALANG['pAdminList_virtual_button'] = 'Go';
$PALANG['pAdminList_virtual_welcome'] = 'Overview for ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliases';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Mailboxes';
$PALANG['pAdminList_virtual_alias_address'] = 'From';
$PALANG['pAdminList_virtual_alias_goto'] = 'To';
$PALANG['pAdminList_virtual_alias_modified'] = 'Last Modified';
$PALANG['pAdminList_virtual_alias_active'] = 'Active';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Email';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Name';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Quota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Last Modified';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Active';
$PALANG['pAdminCreate_domain_welcome'] = 'Add a new domain';
$PALANG['pAdminCreate_domain_domain'] = 'Domain';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">The domain already exists!</span>';
$PALANG['pAdminCreate_domain_domain_text_error2'] = '<span class="error_msg">The domain is invalid!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Description';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliases';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = disable | 0 = unlimited';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Mailboxes';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = disable | 0 = unlimited';
$PALANG['pAdminCreate_domain_maxquota'] = 'Max Quota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = disable | 0 = unlimited';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Add default mail aliases';
$PALANG['pAdminCreate_domain_defaultaliases_text'] = '';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Add Domain';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Unable to add domain!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Domain has been added!';
$PALANG['pAdminDelete_domain_error'] = '<span class="error_msg">Unable to remove domain!</span>';
$PALANG['pAdminEdit_domain_welcome'] = 'Edit a domain';
$PALANG['pAdminEdit_domain_domain'] = 'Domain';
$PALANG['pAdminEdit_domain_description'] = 'Description';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliases';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = disable | 0 = unlimited';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Mailboxes';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = disable | 0 = unlimited';
$PALANG['pAdminEdit_domain_maxquota'] = 'Max Quota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = disable | 0 = unlimited';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Active';
$PALANG['pAdminEdit_domain_button'] = 'Edit Domain';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Unable to modify domain!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Add a new domain admin';
$PALANG['pAdminCreate_admin_username'] = 'Admin';
$PALANG['pAdminCreate_admin_username_text'] = 'Email address';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'Email address<br /><span class="error_msg">Admin is not a valid email address!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'Email address<br /><span class="error_msg">The admin already exists or is not valid</span>';
$PALANG['pAdminCreate_admin_password'] = 'Password';
$PALANG['pAdminCreate_admin_password2'] = 'Password (again)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">The passwords that you supplied don\'t match!<br />Or are empty!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Add Admin';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Unable to add admin!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Admin has been added!';
$PALANG['pAdminCreate_admin_address'] = 'Domain';
$PALANG['pAdminEdit_admin_welcome'] = 'Edit a domain admin';
$PALANG['pAdminEdit_admin_username'] = 'Admin';
$PALANG['pAdminEdit_admin_password'] = 'Password';
$PALANG['pAdminEdit_admin_password2'] = 'Password (again)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">The passwords that you supplied don\'t match!<br />Or are empty!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Active';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Edit Admin';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Unable to modify admin!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Admin has been modified!';
$PALANG['pUsersLogin_welcome'] = 'Mailbox users login to change your password and aliases.';
$PALANG['pUsersLogin_username'] = 'Login (email)';
$PALANG['pUsersLogin_password'] = 'Password';
$PALANG['pUsersLogin_button'] = 'Login';
$PALANG['pUsersLogin_username_incorrect'] = 'Your login is not correct. Make sure that you login with your email address!';
$PALANG['pUsersLogin_password_incorrect'] = 'Your password is not correct!';
$PALANG['pUsersMenu_vacation'] = 'Auto Response';
$PALANG['pUsersMenu_edit_alias'] = 'Change your forward';
$PALANG['pUsersMenu_password'] = 'Change Password';
$PALANG['pUsersMain_vacation'] = 'Set an "out of office" message or auto responder for your mail.';
$PALANG['pUsersMain_edit_alias'] = 'Change your email forwarding.';
$PALANG['pUsersMain_password'] = 'Change your current password.';
$PALANG['pUsersVacation_welcome'] = 'Auto Response.';
$PALANG['pUsersVacation_welcome_text'] = 'You already have an auto response configured!';
$PALANG['pUsersVacation_subject'] = 'Subject';
$PALANG['pUsersVacation_subject_text'] = 'Out of Office';
$PALANG['pUsersVacation_body'] = 'Body';
$PALANG['pUsersVacation_body_text'] = <<<EOM
I will be away from <date> until <date>.
For urgent matters you can contact <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Going Away';
$PALANG['pUsersVacation_button_back'] = 'Coming Back';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Unable to update your auto response settings!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Your auto response has been removed!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

307
languages/en.lang Normal file
View File

@@ -0,0 +1,307 @@
<?php
//
// Language file English
// by Mischa <mischa at high5 dot net>
//
require ('default.lang');
$PALANG['YES'] = 'YES';
$PALANG['NO'] = 'NO';
$PALANG['edit'] = 'edit';
$PALANG['del'] = 'del';
$PALANG['confirm'] = 'Are you sure you want to delete this?\n';
$PALANG['confirm_domain'] = 'Do you really want to delete all records for this domain? This can not be undone!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Mail admins login here to administer your domain.';
$PALANG['pLogin_username'] = 'Login (email)';
$PALANG['pLogin_password'] = 'Password';
$PALANG['pLogin_button'] = 'Login';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Your login is not correct. Make sure that you login with your email address!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Your password is not correct!</span>';
$PALANG['pLogin_login_users'] = 'Users click here to login to the user section.';
$PALANG['pMenu_overview'] = 'Overview';
$PALANG['pMenu_create_alias'] = 'Add Alias';
$PALANG['pMenu_create_mailbox'] = 'Add Mailbox';
$PALANG['pMenu_sendmail'] = 'Send Email';
$PALANG['pMenu_password'] = 'Password';
$PALANG['pMenu_viewlog'] = 'View Log';
$PALANG['pMenu_logout'] = 'Logout';
$PALANG['pMain_welcome'] = 'Welcome to Postfix Admin!';
$PALANG['pMain_overview'] = 'List your aliases and mailboxes. You can edit / delete them from here.';
$PALANG['pMain_create_alias'] = 'Create a new alias for your domain.';
$PALANG['pMain_create_mailbox'] = 'Create a new mailbox for your domain.';
$PALANG['pMain_sendmail'] = 'Send an email to one of your newly created mailboxes.';
$PALANG['pMain_password'] = 'Change the password for your admin account.';
$PALANG['pMain_viewlog'] = 'View the log files.';
$PALANG['pMain_logout'] = 'Logout from the system';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Go';
$PALANG['pOverview_welcome'] = 'Overview for ';
$PALANG['pOverview_alias_alias_count'] = 'Aliases';
$PALANG['pOverview_alias_mailbox_count'] = 'Mailboxes';
$PALANG['pOverview_alias_address'] = 'From';
$PALANG['pOverview_alias_goto'] = 'To';
$PALANG['pOverview_alias_modified'] = 'Last Modified';
$PALANG['pOverview_mailbox_username'] = 'Email';
$PALANG['pOverview_mailbox_name'] = 'Name';
$PALANG['pOverview_mailbox_quota'] = 'Quota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Last Modified';
$PALANG['pOverview_mailbox_active'] = 'Active';
$PALANG['pOverview_vacation_edit'] = 'Vacation';
$PALANG['pOverview_get_domain'] = 'Domain';
$PALANG['pOverview_get_aliases'] = 'Aliases';
$PALANG['pOverview_get_mailboxes'] = 'Mailboxes';
$PALANG['pOverview_get_quota'] = 'Mailbox Quota (MB)';
$PALANG['pOverview_get_modified'] = 'Last Modified';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Unable to delete the entry ';
$PALANG['pDelete_postdelete_error'] = '<span class="error_msg">Unable to remove mailbox ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">This domain is not yours ';
$PALANG['pCreate_alias_welcome'] = 'Create a new alias for your domain.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">The ALIAS is not valid!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">This email address already exists, please choose a different one!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">You have reached your limit to create aliases!</span>';
$PALANG['pCreate_alias_goto'] = 'To';
$PALANG['pCreate_alias_button'] = 'Add Alias';
$PALANG['pCreate_alias_goto_text'] = 'Where the mail needs to be send to.';
$PALANG['pCreate_alias_goto_text_error'] = 'Where the email needs to go.<br /><span class="error_msg">The TO is not valid!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Unable to add the alias to the alias table!</span>';
$PALANG['pCreate_alias_result_succes'] = 'The alias has been added to the alias table!';
$PALANG['pCreate_alias_catchall_text'] = 'To create a catch-all use an "*" as alias.<br />For domain to domain forwarding use "*@domain.tld" as to.';
$PALANG['pEdit_alias_welcome'] = 'Edit an alias for your domain.<br />One entry per line.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Unable to locate alias!</span>';
$PALANG['pEdit_alias_goto'] = 'To';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">You didn\'t enter anything at To</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">The email address that you have entered is not valid: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">This domain is not yours: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Edit Alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Unable to modify the alias!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Create a new mailbox for your domain.';
$PALANG['pCreate_mailbox_username'] = 'Username';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">The EMAIL is not valid!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">This email address already exists, please choose a different one!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">You have reached your limit to create mailboxes!</span>';
$PALANG['pCreate_mailbox_password'] = 'Password';
$PALANG['pCreate_mailbox_password2'] = 'Password (again)';
$PALANG['pCreate_mailbox_password_text'] = 'Password for POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Password for POP3/IMAP<br /><span class="error_msg">The passwords that you supplied don\'t match!<br />Or are empty!</span>';
$PALANG['pCreate_mailbox_name'] = 'Name';
$PALANG['pCreate_mailbox_name_text'] = 'Full name';
$PALANG['pCreate_mailbox_quota'] = 'Quota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">The quota that you specified is to high!</span>';
$PALANG['pCreate_mailbox_active'] = 'Active';
$PALANG['pCreate_mailbox_mail'] = 'Send Welcome mail';
$PALANG['pCreate_mailbox_button'] = 'Add Mailbox';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Unable to add the mailbox to the mailbox table!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'The mailbox has been added to the mailbox table!';
$PALANG['pCreate_mailbox_result_succes_nosubfolders'] = 'The mailbox has been added to the mailbox table, but none (or only some) of the predefined sub-folders could be created';
$PALANG['pEdit_mailbox_welcome'] = 'Edit a mailbox for your domain.';
$PALANG['pEdit_mailbox_username'] = 'Username';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Unable to locate mailbox!</span>';
$PALANG['pEdit_mailbox_password'] = 'New Password';
$PALANG['pEdit_mailbox_password2'] = 'New Password (again)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">The passwords that you supplied don\'t match!</span>';
$PALANG['pEdit_mailbox_name'] = 'Name';
$PALANG['pEdit_mailbox_quota'] = 'Quota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">The quota that you specified is to high!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">This domain is not yours: ';
$PALANG['pEdit_mailbox_button'] = 'Edit Mailbox';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Unable to modify the mailbox!</span>';
$PALANG['pPassword_welcome'] = 'Change your login password.';
$PALANG['pPassword_admin'] = 'Login';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">The LOGIN that you supplied doesn\'t match a mailbox!</span>';
$PALANG['pPassword_password_current'] = 'Current Password';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">You didn\'t supply your current password!</span>';
$PALANG['pPassword_password'] = 'New Password';
$PALANG['pPassword_password2'] = 'New Password (again)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">The passwords that you supplied don\'t match!<br />Or are empty!</span>';
$PALANG['pPassword_button'] = 'Change Password';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Unable to change your password!</span>';
$PALANG['pPassword_result_succes'] = 'Your password has been changed!';
$PALANG['pViewlog_welcome'] = 'View the last 10 actions for ';
$PALANG['pViewlog_timestamp'] = 'Timestamp';
$PALANG['pViewlog_username'] = 'Admin';
$PALANG['pViewlog_domain'] = 'Domain';
$PALANG['pViewlog_action'] = 'Action';
$PALANG['pViewlog_data'] = 'Data';
$PALANG['pViewlog_button'] = 'Go';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Unable to find the logs!</span>';
$PALANG['pSendmail_welcome'] = 'Send an email.';
$PALANG['pSendmail_admin'] = 'From';
$PALANG['pSendmail_to'] = 'To';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">To is empty or is not a valid email address!</span>';
$PALANG['pSendmail_subject'] = 'Subject';
$PALANG['pSendmail_subject_text'] = 'Welcome';
$PALANG['pSendmail_body'] = 'Body';
$PALANG['pSendmail_button'] = 'Send Message';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Unable to create mailbox!</span>';
$PALANG['pSendmail_result_succes'] = 'The mailbox has been created!';
$PALANG['pAdminMenu_list_admin'] = 'Admin List';
$PALANG['pAdminMenu_list_domain'] = 'Domain List';
$PALANG['pAdminMenu_list_virtual'] = 'Virtual List';
$PALANG['pAdminMenu_viewlog'] = 'View Log';
$PALANG['pAdminMenu_backup'] = 'Backup';
$PALANG['pAdminMenu_create_domain_admins'] = 'Domain Admins';
$PALANG['pAdminMenu_create_admin'] = 'New Admin';
$PALANG['pAdminMenu_create_domain'] = 'New Domain';
$PALANG['pAdminMenu_create_alias'] = 'Add Alias';
$PALANG['pAdminMenu_create_mailbox'] = 'Add Mailbox';
$PALANG['pAdminList_admin_domain'] = 'Domain';
$PALANG['pAdminList_admin_username'] = 'Admin';
$PALANG['pAdminList_admin_count'] = 'Domains';
$PALANG['pAdminList_admin_modified'] = 'Last Modified';
$PALANG['pAdminList_admin_active'] = 'Active';
$PALANG['pAdminList_domain_domain'] = 'Domain';
$PALANG['pAdminList_domain_description'] = 'Description';
$PALANG['pAdminList_domain_aliases'] = 'Aliases';
$PALANG['pAdminList_domain_mailboxes'] = 'Mailboxes';
$PALANG['pAdminList_domain_maxquota'] = 'Quota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Last Modified';
$PALANG['pAdminList_domain_active'] = 'Active';
$PALANG['pAdminList_virtual_button'] = 'Go';
$PALANG['pAdminList_virtual_welcome'] = 'Overview for ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliases';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Mailboxes';
$PALANG['pAdminList_virtual_alias_address'] = 'From';
$PALANG['pAdminList_virtual_alias_goto'] = 'To';
$PALANG['pAdminList_virtual_alias_modified'] = 'Last Modified';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Email';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Name';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Quota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Last Modified';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Active';
$PALANG['pAdminCreate_domain_welcome'] = 'Add a new domain';
$PALANG['pAdminCreate_domain_domain'] = 'Domain';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">The domain already exists!</span>';
$PALANG['pAdminCreate_domain_domain_text_error2'] = '<span class="error_msg">The domain is invalid!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Description';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliases';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = disable | 0 = unlimited';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Mailboxes';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = disable | 0 = unlimited';
$PALANG['pAdminCreate_domain_maxquota'] = 'Max Quota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = disable | 0 = unlimited';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Add default mail aliases';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Add Domain';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Unable to add domain!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Domain has been added!';
$PALANG['pAdminDelete_domain_error'] = '<span class="error_msg">Unable to remove domain!</span>';
$PALANG['pAdminEdit_domain_welcome'] = 'Edit a domain';
$PALANG['pAdminEdit_domain_domain'] = 'Domain';
$PALANG['pAdminEdit_domain_description'] = 'Description';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliases';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = disable | 0 = unlimited';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Mailboxes';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = disable | 0 = unlimited';
$PALANG['pAdminEdit_domain_maxquota'] = 'Max Quota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = disable | 0 = unlimited';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Active';
$PALANG['pAdminEdit_domain_button'] = 'Edit Domain';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Unable to modify domain!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Add a new domain admin';
$PALANG['pAdminCreate_admin_username'] = 'Admin';
$PALANG['pAdminCreate_admin_username_text'] = 'Email address';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'Email address<br /><span class="error_msg">Admin is not a valid email address!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'Email address<br /><span class="error_msg">The admin already exists or is not valid</span>';
$PALANG['pAdminCreate_admin_password'] = 'Password';
$PALANG['pAdminCreate_admin_password2'] = 'Password (again)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">The passwords that you supplied don\'t match!<br />Or are empty!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Add Admin';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Unable to add admin!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Admin has been added!';
$PALANG['pAdminCreate_admin_address'] = 'Domain';
$PALANG['pAdminEdit_admin_welcome'] = 'Edit a domain admin';
$PALANG['pAdminEdit_admin_username'] = 'Admin';
$PALANG['pAdminEdit_admin_password'] = 'Password';
$PALANG['pAdminEdit_admin_password2'] = 'Password (again)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">The passwords that you supplied don\'t match!<br />Or are empty!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Active';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Edit Admin';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Unable to modify admin!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Admin has been modified!';
$PALANG['pUsersLogin_welcome'] = 'Mailbox users login to change your password and aliases.';
$PALANG['pUsersLogin_username'] = 'Login (email)';
$PALANG['pUsersLogin_password'] = 'Password';
$PALANG['pUsersLogin_button'] = 'Login';
$PALANG['pUsersLogin_username_incorrect'] = 'Your login is not correct. Make sure that you login with your email address!';
$PALANG['pUsersLogin_password_incorrect'] = 'Your password is not correct!';
$PALANG['pUsersMenu_vacation'] = 'Auto Response';
$PALANG['pUsersMenu_edit_alias'] = 'Change your forward';
$PALANG['pUsersMenu_password'] = 'Change Password';
$PALANG['pUsersMain_vacation'] = 'Set an "out of office" message or auto responder for your mail.';
$PALANG['pUsersMain_edit_alias'] = 'Change your email forwarding.';
$PALANG['pUsersMain_password'] = 'Change your current password.';
$PALANG['pUsersVacation_welcome'] = 'Auto Response.';
$PALANG['pUsersVacation_welcome_text'] = 'You already have an auto response configured!';
$PALANG['pUsersVacation_subject'] = 'Subject';
$PALANG['pUsersVacation_subject_text'] = 'Out of Office';
$PALANG['pUsersVacation_body'] = 'Body';
$PALANG['pUsersVacation_body_text'] = <<<EOM
I will be away from <date> until <date>.
For urgent matters you can contact <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Going Away';
$PALANG['pUsersVacation_button_back'] = 'Coming Back';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Unable to update your auto response settings!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Your auto response has been removed!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

301
languages/es.lang Normal file
View File

@@ -0,0 +1,301 @@
<?php
//
// Language file Spanish
// by Alvaro
//
require ('default.lang');
$PALANG['YES'] = 'SI';
$PALANG['NO'] = 'NO';
$PALANG['edit'] = 'editar';
$PALANG['del'] = 'borrar';
$PALANG['confirm'] = '<27>Est<73> seguro de que desea borrarlo?\n';
$PALANG['confirm_domain'] = '<27>Est<73> seguro de que desea borrar todos los registros de este dominio? <20>Esto no puede ser deshecho!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Login de administrador para administraci<63>n de dominios.';
$PALANG['pLogin_username'] = 'Usuario (e-mail)';
$PALANG['pLogin_password'] = 'Contrase<73>a';
$PALANG['pLogin_button'] = 'Usuario';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">El login no es correcto. Asegurese de que ha hecho login con su e-mail.</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg"><3E>Su contrase<73>a no es correcta!</span>';
$PALANG['pLogin_login_users'] = 'Login para ir a la secci<63>n de usuarios.';
$PALANG['pMenu_overview'] = 'Resumen';
$PALANG['pMenu_create_alias'] = 'A<>adir alias';
$PALANG['pMenu_create_mailbox'] = 'A<>adir buz<75>n';
$PALANG['pMenu_sendmail'] = 'Enviar e-mail';
$PALANG['pMenu_password'] = 'Contrase<73>a';
$PALANG['pMenu_viewlog'] = 'Ver Logs';
$PALANG['pMenu_logout'] = 'Salir';
$PALANG['pMain_welcome'] = '<27>Bienvenido a Postfix Admin!';
$PALANG['pMain_overview'] = 'Listado de sus alias y buzones. Puede editarlos / borrarlos desde aqu<71>.';
$PALANG['pMain_create_alias'] = 'Creaci<63>n de un nuevo alias para su dominio.';
$PALANG['pMain_create_mailbox'] = 'Creaci<63>n de un nuevo buz<75>n para su dominio.';
$PALANG['pMain_sendmail'] = 'Enviar un e<>mail a uno de los buzones recientemente creados.';
$PALANG['pMain_password'] = 'Cambiar la contrase<73>a para su cuenta de administraci<63>n.';
$PALANG['pMain_viewlog'] = 'Ver Logs.';
$PALANG['pMain_logout'] = 'Salir.';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Ir';
$PALANG['pOverview_welcome'] = 'Resumen de ';
$PALANG['pOverview_alias_alias_count'] = 'Alias';
$PALANG['pOverview_alias_mailbox_count'] = 'Buzones';
$PALANG['pOverview_alias_address'] = 'De';
$PALANG['pOverview_alias_goto'] = 'Destino';
$PALANG['pOverview_alias_modified'] = '<27>ltima modificaci<63>n';
$PALANG['pOverview_mailbox_username'] = 'E-mail';
$PALANG['pOverview_mailbox_name'] = 'Nombre';
$PALANG['pOverview_mailbox_quota'] = 'Cuota (MB)';
$PALANG['pOverview_mailbox_modified'] = '<27>ltima modificaci<63>n';
$PALANG['pOverview_mailbox_active'] = 'Activo';
$PALANG['pOverview_get_domain'] = 'Dominio';
$PALANG['pOverview_get_aliases'] = 'Alias';
$PALANG['pOverview_get_mailboxes'] = 'Buzones';
$PALANG['pOverview_get_quota'] = 'Cuota de buz<75>n (MB)';
$PALANG['pOverview_get_modified'] = '<27>ltima Modificaci<63>n';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Imposible borrar el registro ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Este dominio no le pertenece ';
$PALANG['pCreate_alias_welcome'] = 'Crear un nuevo alias para el dominio.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg"><3E>El ALIAS no es v<>lido!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg"><3E>Esta direcci<63>n ya existe, elija otra diferente por favor!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg"><3E>Ha llegado a su l<>mite de creaci<63>n de alias!</span>';
$PALANG['pCreate_alias_goto'] = 'Destino';
$PALANG['pCreate_alias_button'] = 'A<>adir alias';
$PALANG['pCreate_alias_goto_text'] = 'A donde debe de ser enviado el e-mail.';
$PALANG['pCreate_alias_goto_text_error'] = 'A donde debe de ser enviado el e-mail.<br /><span class="error_msg"><3E>El PARA no es v<>lido!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg"><3E>No es posible a<>adir el alias a la tabla de alias!</span>';
$PALANG['pCreate_alias_result_succes'] = '<27>El alias ha sido a<>adido a la tabla de alias!';
$PALANG['pCreate_alias_catchall_text'] = 'Para crear un alias general use "*" como alias.<br />Para una redirecci<63>n de dominio a dominio, use "*@domain.tld" como Destino.';
$PALANG['pEdit_alias_welcome'] = 'Edite un alias para su dominio.<br />Una entrada por l<>nea.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg"><3E>Imposible de localizar el alias!</span>';
$PALANG['pEdit_alias_goto'] = 'Destino';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">No ha introducido nada en el destino</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">La direcci<63>n de e-mail introducida no es v<>lida: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Este dominio no le pertenece: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Editar alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg"><3E>Imposible modificar el alias!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Crear un nuevo buz<75>n para su dominio.';
$PALANG['pCreate_mailbox_username'] = 'Usuario';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg"><3E>El e-mail no es v<>lido!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg"><3E>Este e-mail ya existe, escoja uno diferente por favor!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg"><3E>Ha llegado al l<>mite de creaci<63>n de buzones!</span>';
$PALANG['pCreate_mailbox_password'] = 'Contrase<73>a';
$PALANG['pCreate_mailbox_password2'] = 'Contrase<73>a (repetir)';
$PALANG['pCreate_mailbox_password_text'] = 'Contrase<73>a para POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Contrase<73>a para POP3/IMAP<br /><span class="error_msg"><3E>Las contrase<73>as introducidas no coinciden<br />o est<73>n en blanco!</span>';
$PALANG['pCreate_mailbox_name'] = 'Nombre';
$PALANG['pCreate_mailbox_name_text'] = 'Nombre completo';
$PALANG['pCreate_mailbox_quota'] = 'Cuota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E>La cuota especificada es demasiado alta!</span>';
$PALANG['pCreate_mailbox_active'] = 'Activo';
$PALANG['pCreate_mailbox_mail'] = 'Crear buz<75>n';
$PALANG['pCreate_mailbox_button'] = 'A<>adir buz<75>n';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg"><3E>Imposible a<>adir un buz<75>n a la tabla de buzones!</span>';
$PALANG['pCreate_mailbox_result_succes'] = '<27>El buz<75>n ha sido a<>adido a la tabla de buzones!';
$PALANG['pEdit_mailbox_welcome'] = 'Editar un buz<75>n para su dominio.';
$PALANG['pEdit_mailbox_username'] = 'Usuario';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg"><3E>Imposible localizar el buz<75>n!</span>';
$PALANG['pEdit_mailbox_password'] = 'Nueva contrase<73>a';
$PALANG['pEdit_mailbox_password2'] = 'Nueva contrase<73>a (repetir)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg"><3E>Las contrase<73>as introducidas no coinciden!</span>';
$PALANG['pEdit_mailbox_name'] = 'Nombre';
$PALANG['pEdit_mailbox_quota'] = 'Cuota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E>La cuota especificada es demasiado alta!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Este dominio no le pertenece: ';
$PALANG['pEdit_mailbox_button'] = 'Editar buz<75>n';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg"><3E>Imposible cambiar la contrase<73>a!</span>';
$PALANG['pPassword_welcome'] = 'Cambie su contrase<73>a de login.';
$PALANG['pPassword_admin'] = 'Login';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg"><3E>El LOGIN suministrado no coincide con ning<6E>n buz<75>n!</span>';
$PALANG['pPassword_password_current'] = 'Contrase<73>a actual';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg"><3E>No ha introducido la contrase<73>a actual!</span>';
$PALANG['pPassword_password'] = 'Nueva contrase<73>a';
$PALANG['pPassword_password2'] = 'Nueva contrase<73>a (repetir)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg"><3E>Las contrase<73>as introducidas no coinciden<br />o est<73>n en blanco!</span>';
$PALANG['pPassword_button'] = 'Cambiar contrase<73>a';
$PALANG['pPassword_result_error'] = '<span class="error_msg"><3E>Imposible cambiar la contrase<73>a!</span>';
$PALANG['pPassword_result_succes'] = '<27>Su contrase<73>a ha sido cambiada!';
$PALANG['pViewlog_welcome'] = 'Ver las <20>ltimas 10 acciones para ';
$PALANG['pViewlog_timestamp'] = 'Fecha/Hora';
$PALANG['pViewlog_username'] = 'Administrador';
$PALANG['pViewlog_domain'] = 'Dominio';
$PALANG['pViewlog_action'] = 'Acci<63>n';
$PALANG['pViewlog_data'] = 'Datos';
$PALANG['pViewlog_button'] = 'Ir';
$PALANG['pViewlog_result_error'] = '<span class="error_msg"><3E>Imposible encontrar los logs!</span>';
$PALANG['pSendmail_welcome'] = 'Enviar un e-mail.';
$PALANG['pSendmail_admin'] = 'De';
$PALANG['pSendmail_to'] = 'Destino';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg"><3E>La direcci<63>n destino est<73> vac<61>a o es una direcci<63>n inv<6E>lida!</span>';
$PALANG['pSendmail_subject'] = 'Asunto';
$PALANG['pSendmail_subject_text'] = 'Bienvenido';
$PALANG['pSendmail_body'] = 'Cuerpo';
$PALANG['pSendmail_button'] = 'Enviar mensaje';
$PALANG['pSendmail_result_error'] = '<span class="error_msg"><3E>Imposible crear el buz<75>n!</span>';
$PALANG['pSendmail_result_succes'] = '<27>El buz<75>n ha sido creado!';
$PALANG['pAdminMenu_list_admin'] = 'Lista de administradores';
$PALANG['pAdminMenu_list_domain'] = 'Lista de dominios';
$PALANG['pAdminMenu_list_virtual'] = 'Lista de direcciones virtuales';
$PALANG['pAdminMenu_viewlog'] = 'Ver Logs';
$PALANG['pAdminMenu_backup'] = 'Backup';
$PALANG['pAdminMenu_create_domain_admins'] = 'Administradores de dominio';
$PALANG['pAdminMenu_create_admin'] = 'Nuevo administrador';
$PALANG['pAdminMenu_create_domain'] = 'Nuevo dominio';
$PALANG['pAdminMenu_create_alias'] = 'A<>adir alias';
$PALANG['pAdminMenu_create_mailbox'] = 'A<>adir buz<75>n';
$PALANG['pAdminList_admin_domain'] = 'Dominio';
$PALANG['pAdminList_admin_username'] = 'Administrador';
$PALANG['pAdminList_admin_count'] = 'Dominios';
$PALANG['pAdminList_admin_modified'] = '<27>ltima Modificaci<63>n';
$PALANG['pAdminList_admin_active'] = 'Activo';
$PALANG['pAdminList_domain_domain'] = 'Dominio';
$PALANG['pAdminList_domain_description'] = 'Descripci<63>n';
$PALANG['pAdminList_domain_aliases'] = 'Alias';
$PALANG['pAdminList_domain_mailboxes'] = 'Buzones';
$PALANG['pAdminList_domain_maxquota'] = 'Cuota M<>xima (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = '<27>ltima Modificaci<63>n';
$PALANG['pAdminList_domain_active'] = 'Activo';
$PALANG['pAdminList_virtual_button'] = 'Ir';
$PALANG['pAdminList_virtual_welcome'] = 'Resumen de ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Alias';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Buzones';
$PALANG['pAdminList_virtual_alias_address'] = 'De';
$PALANG['pAdminList_virtual_alias_goto'] = 'Destino';
$PALANG['pAdminList_virtual_alias_modified'] = '<27>ltima Modificaci<63>n';
$PALANG['pAdminList_virtual_mailbox_username'] = 'E-mail';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Nombre';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Cuota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = '<27>ltima Modificaci<63>n';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Activo';
$PALANG['pAdminCreate_domain_welcome'] = 'A<>adir nuevo dominio';
$PALANG['pAdminCreate_domain_domain'] = 'Dominio';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg"><3E>El dominio ya existe!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Descripci<63>n';
$PALANG['pAdminCreate_domain_aliases'] = 'Alias';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = deshabilitar | 0 = ilimitado';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Buzones';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = deshabilitar | 0 = ilimitado';
$PALANG['pAdminCreate_domain_maxquota'] = 'Cuota m<>xima';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = deshabilitar | 0 = ilimitado';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'A<>adir alias por defecto';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'A<>adir dominio';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg"><3E>Imposible a<>adir el dominio!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = '<27>El dominio ha sido a<>adido!';
$PALANG['pAdminEdit_domain_welcome'] = 'Editar un dominio';
$PALANG['pAdminEdit_domain_domain'] = 'Dominio';
$PALANG['pAdminEdit_domain_description'] = 'Descripci<63>n';
$PALANG['pAdminEdit_domain_aliases'] = 'Alias';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = deshabilitar | 0 = ilimitado';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Buzones';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = deshabilitar | 0 = ilimitado';
$PALANG['pAdminEdit_domain_maxquota'] = 'Cuota m<>xima';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = deshabilitar | 0 = ilimitado';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Activo';
$PALANG['pAdminEdit_domain_button'] = 'Editar dominio';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg"><3E>Imposible modificar el dominio!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'A<>adir un nuevo administrador de dominio';
$PALANG['pAdminCreate_admin_username'] = 'Administrador';
$PALANG['pAdminCreate_admin_username_text'] = 'E-mail';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'E-mail<br /><span class="error_msg">Administrador no es un e-mail v<>lido!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'E-mail<br /><span class="error_msg">El administrador ya existe o no es v<>lido!</span>';
$PALANG['pAdminCreate_admin_password'] = 'Contrase<73>a';
$PALANG['pAdminCreate_admin_password2'] = 'Contrase<73>a (repetir)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg"><3E>Las contrase<73>as introducidas no coinciden<br />o est<73>n en blanco!</span>';
$PALANG['pAdminCreate_admin_button'] = 'A<>adir administrador';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg"><3E>Imposible a<>adir el administrador!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = '<27>El administrador ha sido a<>adido!';
$PALANG['pAdminCreate_admin_address'] = 'Dominio';
$PALANG['pAdminEdit_admin_welcome'] = 'Editar un administrador de dominio';
$PALANG['pAdminEdit_admin_username'] = 'Administrador';
$PALANG['pAdminEdit_admin_password'] = 'Contrase<73>a';
$PALANG['pAdminEdit_admin_password2'] = 'Contrase<73>a (repetir)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg"><3E>Las contrase<73>as introducidas no coinciden<br />o est<73>n en blanco!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Activo';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Editar administrador';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg"><3E>Imposible modificar el administrador!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = '<27>El administrador ha sido modificado!';
$PALANG['pUsersLogin_welcome'] = 'Login de usuarios para cambiar la contrase<73>a y alias.';
$PALANG['pUsersLogin_username'] = 'Login (e-mail)';
$PALANG['pUsersLogin_password'] = 'Contrase<73>a';
$PALANG['pUsersLogin_button'] = 'Login';
$PALANG['pUsersLogin_username_incorrect'] = 'Su login no es correcto. <20>Aseg<65>rese de haber introducido su direcci<63>n de e-mail como login!';
$PALANG['pUsersLogin_password_incorrect'] = '<27>Su contrase<73>a no es correcta!';
$PALANG['pUsersMenu_vacation'] = 'Respuesta autom<6F>tica';
$PALANG['pUsersMenu_edit_alias'] = 'Cambiar la redirecci<63>n';
$PALANG['pUsersMenu_password'] = 'Cambiar la contrase<73>a';
$PALANG['pUsersMain_vacation'] = 'Configure un mensaje de "fuera del trabajo" o una respuesta autom<6F>tica para su correo.';
$PALANG['pUsersMain_edit_alias'] = 'Cambie su redirecci<63>n de correo.';
$PALANG['pUsersMain_password'] = 'Cambie su contrase<73>a.';
$PALANG['pUsersVacation_welcome'] = 'Respuesta autom<6F>tica.';
$PALANG['pUsersVacation_welcome_text'] = '<27>Ya dispone de una respuesta autom<6F>tica configurada!';
$PALANG['pUsersVacation_subject'] = 'Asunto';
$PALANG['pUsersVacation_subject_text'] = 'Fuera del trabajo';
$PALANG['pUsersVacation_body'] = 'Cuerpo';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Estar<EFBFBD> fuera desde <date> hasta <date>.
Para asuntos urgentes, puede contactar conmigo en <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Ausente';
$PALANG['pUsersVacation_button_back'] = 'De vuelta';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg"><3E>Imposible actualizar la configuraci<63>n de su respuesta autom<6F>tica!</span>';
$PALANG['pUsersVacation_result_succes'] = '<27>Su respuesta autom<6F>tica ha sido borrada!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

301
languages/et.lang Normal file
View File

@@ -0,0 +1,301 @@
<?php
//
// Language file Estonian
// by Peeter Partel <peeter at sigma dot ee>
//
require ('default.lang');
$PALANG['YES'] = 'JAH';
$PALANG['NO'] = 'EI';
$PALANG['edit'] = 'Redigeeri';
$PALANG['del'] = 'Kustuta';
$PALANG['confirm'] = 'Oled kindel, et soovid seda kustutada?\n';
$PALANG['confirm_domain'] = 'Oled t<>esti kindel, et tahad kustutada k<>ik kirjed sellele domeenile? Seda tegevust ei saa tagasi v<>tta!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'E-posti haldaja, logi siit domeeni administreerimiseks sisse.';
$PALANG['pLogin_username'] = 'Kasutajanimi (e-posti<74>aadress)';
$PALANG['pLogin_password'] = 'Parool';
$PALANG['pLogin_button'] = 'Logi<67>sisse';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Kasutajanimi pole <20>ige. Veendu, et logid sisse korrektse e-posti aadressiga!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Parool pole <20>ige!</span>';
$PALANG['pLogin_login_users'] = 'Kasutaja, kl<6B>psa siia logimaks sisse kasutaja sektsiooni.';
$PALANG['pMenu_overview'] = '<27>levaade';
$PALANG['pMenu_create_alias'] = 'Lisa alias';
$PALANG['pMenu_create_mailbox'] = 'Lisa postkast';
$PALANG['pMenu_sendmail'] = 'Saada<64>kiri';
$PALANG['pMenu_password'] = 'Parool';
$PALANG['pMenu_viewlog'] = 'Vaata<74>logi';
$PALANG['pMenu_logout'] = 'Logi<67>v<EFBFBD>lja';
$PALANG['pMain_welcome'] = 'Tere<72>tulemast domeeni(de) administreerimise liidesesse!';
$PALANG['pMain_overview'] = 'Loetelu aliastest ja postkastidest. Siin saab neid muuta ja kustutada.';
$PALANG['pMain_create_alias'] = 'Loo uus alias domeenile.';
$PALANG['pMain_create_mailbox'] = 'Loo uus postkast domeenile.';
$PALANG['pMain_sendmail'] = 'Saada kiri <20>sjaloodud postkasti.';
$PALANG['pMain_password'] = 'Muuda haldamise konto parool.';
$PALANG['pMain_viewlog'] = 'Vaata logi faili.';
$PALANG['pMain_logout'] = 'Logi<67>v<EFBFBD>lja liidesest.';
$PALANG['pOverview_disabled'] = 'Deaktiveeritud';
$PALANG['pOverview_unlimited'] = 'Piiramata';
$PALANG['pOverview_title'] = ':: Valitud domeenid';
$PALANG['pOverview_up_arrow'] = 'Mine <20>les';
$PALANG['pOverview_right_arrow'] = 'J<>rgmine leht';
$PALANG['pOverview_left_arrow'] = 'Eelmine leht';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Postkastid';
$PALANG['pOverview_button'] = 'Mine';
$PALANG['pOverview_welcome'] = '<27>levaade domeenist: ';
$PALANG['pOverview_alias_alias_count'] = 'Aliasi';
$PALANG['pOverview_alias_mailbox_count'] = 'Postkaste';
$PALANG['pOverview_alias_address'] = 'Kellelt';
$PALANG['pOverview_alias_goto'] = 'Kellele';
$PALANG['pOverview_alias_modified'] = 'Viimati<74>muudetud';
$PALANG['pOverview_mailbox_username'] = 'E-posti<74>aadress';
$PALANG['pOverview_mailbox_name'] = 'Nimi';
$PALANG['pOverview_mailbox_quota'] = 'Kettaruumi<6D>piirang (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Viimati<74>muudetud';
$PALANG['pOverview_mailbox_active'] = 'Aktiivne';
$PALANG['pOverview_get_domain'] = 'Domeen';
$PALANG['pOverview_get_aliases'] = 'Aliased';
$PALANG['pOverview_get_mailboxes'] = 'Postkastid';
$PALANG['pOverview_get_quota'] = 'Postkasti kettaruumi<6D>piirang (MB)';
$PALANG['pOverview_get_modified'] = 'Viimati<74>muudetud';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Kustutamine eba<62>nnestus. Kirje: ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Puuduvad <20>igused. Domeen: ';
$PALANG['pCreate_alias_welcome'] = 'Loo uus alias domeenis.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">ALIAS pole kehtiv!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">See e-posti<74>aadress eksisteerib<69>juba, palun<75>vali erinev!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Oled kasutanud kogu aliaste arvu!</span>';
$PALANG['pCreate_alias_goto'] = 'Kellele';
$PALANG['pCreate_alias_button'] = 'Lisa alias';
$PALANG['pCreate_alias_goto_text'] = 'Kuhu peab kirja saatma.';
$PALANG['pCreate_alias_goto_text_error'] = 'Kuhu peab kirja saatma.<br /><span class="error_msg">Kellele pole kehtiv!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Aliase lisamine tabelisse eba<62>nnestus!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Alias lisati aliaste tabelisse!';
$PALANG['pCreate_alias_catchall_text'] = 'Loomaks p<><70>a-k<>ik aadressi kasuta aliasena "*".<br />Domeenilt domeenile edasisaatmiseks kasuta kellele v<>ljal "*@domeen.xx".';
$PALANG['pEdit_alias_welcome'] = 'Muuda aliast.<br /><3E>ks kirje rea kohta.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Aliase muutmine eba<62>nnestus!</span>';
$PALANG['pEdit_alias_goto'] = 'Kellele';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Kellele v<>li on t<>hi.</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Sisestatud e/posti aadress pole kehtiv: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Puuduvad <20>igused. Domeen: ';
$PALANG['pEdit_alias_button'] = 'Muuda alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Aliase muutmine eba<62>nnestus!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Loo uus postkast domeenis.';
$PALANG['pCreate_mailbox_username'] = 'Kasutajanimi';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">E-posti<74>aadress pole kehtiv!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Selline e-posti<74>aadress on juba olemas, palun vali erinev!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Oled kasutanud kogu postkastide arvu!</span>';
$PALANG['pCreate_mailbox_password'] = 'Parool';
$PALANG['pCreate_mailbox_password2'] = 'Parool (uuesti)';
$PALANG['pCreate_mailbox_password_text'] = 'Parool POP3/IMAP\'le';
$PALANG['pCreate_mailbox_password_text_error'] = 'Parool POP3/IMAP\'le<br /><span class="error_msg">Sisestatud paroolid ei kattu!<br />V<>i on t<>hjad!</span>';
$PALANG['pCreate_mailbox_name'] = 'Nimi';
$PALANG['pCreate_mailbox_name_text'] = 'T<>ielik<69>nimi';
$PALANG['pCreate_mailbox_quota'] = 'Kettaruumi<6D>piirang';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Sisestatud kettaruumi<6D>piirang on liiga k<>rge!</span>';
$PALANG['pCreate_mailbox_active'] = 'Aktiivne';
$PALANG['pCreate_mailbox_mail'] = 'Loo postkast';
$PALANG['pCreate_mailbox_button'] = 'Lisa postkast';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Postkasti lisamine tabelisse eba<62>nnestus!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Postkast lisati postkastide tabelisse!';
$PALANG['pEdit_mailbox_welcome'] = 'Muuda postkasti.';
$PALANG['pEdit_mailbox_username'] = 'Kasutajanimi';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Postkasti muutmine eba<62>nnestus!</span>';
$PALANG['pEdit_mailbox_password'] = 'Uus parool';
$PALANG['pEdit_mailbox_password2'] = 'Uus parool (uuesti)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Sisestatud paroolid ei kattu!</span>';
$PALANG['pEdit_mailbox_name'] = 'Nimi';
$PALANG['pEdit_mailbox_quota'] = 'Kettaruumi<6D>piirang';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Sisestatud kettaruumi<6D>piirang on liiga k<>rge!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Puuduvad <20>igused. Domeen: ';
$PALANG['pEdit_mailbox_button'] = 'Muuda postkast';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Postkasti muutmine eba<62>nnestus!</span>';
$PALANG['pPassword_welcome'] = 'Muuda kasutajanime parool.';
$PALANG['pPassword_admin'] = 'Kasutajanimi';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">KASUTAJANIMI pole kehtiv!</span>';
$PALANG['pPassword_password_current'] = 'Praegune<6E>parool';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Praegust parooli ei sisestatud!</span>';
$PALANG['pPassword_password'] = 'Uus parool';
$PALANG['pPassword_password2'] = 'Uus parool (uuesti)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Sisestatud paroolid ei kattu!<br />V<>i on t<>hjad!</span>';
$PALANG['pPassword_button'] = 'Muuda parool';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Parooli muutmine eba<62>nnestus!</span>';
$PALANG['pPassword_result_succes'] = 'Parool on muudetud!';
$PALANG['pViewlog_welcome'] = 'Vaata 10 viimast muudatust domeeniga ';
$PALANG['pViewlog_timestamp'] = 'Ajatempel';
$PALANG['pViewlog_username'] = 'Haldaja';
$PALANG['pViewlog_domain'] = 'Domeen';
$PALANG['pViewlog_action'] = 'Toiming';
$PALANG['pViewlog_data'] = 'Andmed';
$PALANG['pViewlog_button'] = 'Mine';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Logi ei leitud!</span>';
$PALANG['pSendmail_welcome'] = 'Saada kiri.';
$PALANG['pSendmail_admin'] = 'Kellelt';
$PALANG['pSendmail_to'] = 'Kellele';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Kellele on t<>hi v<>i ei sisalda kehtivat aadressi!</span>';
$PALANG['pSendmail_subject'] = 'Teema';
$PALANG['pSendmail_subject_text'] = 'Tere<72>tulemast';
$PALANG['pSendmail_body'] = 'P<>hitekst';
$PALANG['pSendmail_button'] = 'Saada teade';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Postkasti loomine eba<62>nnestus!</span>';
$PALANG['pSendmail_result_succes'] = 'Postkast on loodud!';
$PALANG['pAdminMenu_list_admin'] = 'Haldajad';
$PALANG['pAdminMenu_list_domain'] = 'Domeenid';
$PALANG['pAdminMenu_list_virtual'] = 'Aliased';
$PALANG['pAdminMenu_viewlog'] = 'Vaata logi';
$PALANG['pAdminMenu_backup'] = 'Varukoopia';
$PALANG['pAdminMenu_create_domain_admins'] = 'Domeeni haldajad';
$PALANG['pAdminMenu_create_admin'] = 'Lisa haldaja';
$PALANG['pAdminMenu_create_domain'] = 'Lisa domeen';
$PALANG['pAdminMenu_create_alias'] = 'Lisa alias';
$PALANG['pAdminMenu_create_mailbox'] = 'Lisa postkast';
$PALANG['pAdminList_admin_domain'] = 'Domeen';
$PALANG['pAdminList_admin_username'] = 'Haldaja';
$PALANG['pAdminList_admin_count'] = 'Domeene';
$PALANG['pAdminList_admin_modified'] = 'Viimati muudetud';
$PALANG['pAdminList_admin_active'] = 'Aktiivne';
$PALANG['pAdminList_domain_domain'] = 'Domeen';
$PALANG['pAdminList_domain_description'] = 'Kirjeldus';
$PALANG['pAdminList_domain_aliases'] = 'Aliased';
$PALANG['pAdminList_domain_mailboxes'] = 'Postkastid';
$PALANG['pAdminList_domain_maxquota'] = 'Maksimaalne kettaruumi<6D>piirang (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Viimati<74>muudetud';
$PALANG['pAdminList_domain_active'] = 'Aktiivne';
$PALANG['pAdminList_virtual_button'] = 'Mine';
$PALANG['pAdminList_virtual_welcome'] = '<27>levaade domeenist: ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliasi';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Postkaste';
$PALANG['pAdminList_virtual_alias_address'] = 'Kellelt';
$PALANG['pAdminList_virtual_alias_goto'] = 'Kellele';
$PALANG['pAdminList_virtual_alias_modified'] = 'Viimati<74>muudetud';
$PALANG['pAdminList_virtual_mailbox_username'] = 'E-posti<74>aadress';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Nimi';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Kettaruumi<6D>piirang (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Viimati<74>muudetud';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Aktiivne';
$PALANG['pAdminCreate_domain_welcome'] = 'Lisa uus domeen';
$PALANG['pAdminCreate_domain_domain'] = 'Domeen';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Selline domeen on juba olemas!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Kirjeldus';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliasi';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = keelatud | 0 = piiramatult';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Postkaste';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = keelatud | 0 = piiramatult';
$PALANG['pAdminCreate_domain_maxquota'] = 'Maksimaalne kettaruum';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = keelatud | 0 = piiramatult';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Lisa vaikimisi aliased';
$PALANG['pAdminCreate_domain_backupmx'] = 'E-posti server on varuserver (backup MX)';
$PALANG['pAdminCreate_domain_button'] = 'Lisa domeen';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Domeeni lisamine eba<62>nnestus!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Domeen on lisatud!';
$PALANG['pAdminEdit_domain_welcome'] = 'Redigeeri domeeni';
$PALANG['pAdminEdit_domain_domain'] = 'Domeen';
$PALANG['pAdminEdit_domain_description'] = 'Kirjeldus';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliasi';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = keelatud | 0 = piiramatult';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Postkaste';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = keelatud | 0 = piiramatult';
$PALANG['pAdminEdit_domain_maxquota'] = 'Maksimaalne kettaruum';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = keelatud | 0 = piiramatult';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Kirjelda transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'E-posti server on varuserver (backup MX)';
$PALANG['pAdminEdit_domain_active'] = 'Aktiivne';
$PALANG['pAdminEdit_domain_button'] = 'Muuda domeen';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Domeeni muutmine eba<62>nnestus!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Lisa uus domeeni haldaja';
$PALANG['pAdminCreate_admin_username'] = 'Haldaja';
$PALANG['pAdminCreate_admin_username_text'] = 'E-posti<74>aadress';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'E-posti<74>aadress<br /><span class="error_msg">V<>ljal haldaja pole kehtiv e-posti<74>aadress!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'E-posti<74>aadress<br /><span class="error_msg">Selline haldaja on juba olemas</span>';
$PALANG['pAdminCreate_admin_password'] = 'Parool';
$PALANG['pAdminCreate_admin_password2'] = 'Parool (uuesti)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Sisestatud paroolid ei kattu!<br />V<>i on t<>hjad!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Lisa haldaja';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Haldaja lisamine eba<62>nnestus!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Haldaja on lisatud!';
$PALANG['pAdminCreate_admin_address'] = 'Domeen';
$PALANG['pAdminEdit_admin_welcome'] = 'Muuda domeeni haldajat';
$PALANG['pAdminEdit_admin_username'] = 'Haldaja';
$PALANG['pAdminEdit_admin_password'] = 'Parool';
$PALANG['pAdminEdit_admin_password2'] = 'Parool (uuesti)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Sisestatud paroolid ei kattu!<br />V<>i on t<>hjad!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Aktiivne';
$PALANG['pAdminEdit_admin_button'] = 'Muuda haldaja';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Haldaja muutmine eba<62>nnestus!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Haldaja on muudetud!';
$PALANG['pUsersLogin_welcome'] = 'Postkasti kasutaja sisse logimine muutmaks parooli ja aliast.';
$PALANG['pUsersLogin_username'] = 'Kasutajanimi (e-posti<74>aadress)';
$PALANG['pUsersLogin_password'] = 'Parool';
$PALANG['pUsersLogin_button'] = 'Logi<67>sisse';
$PALANG['pUsersLogin_username_incorrect'] = 'Kasutajanimi pole <20>ige. Veendu, et sisestatud kasutajanimi on e-posti<74>aadress!';
$PALANG['pUsersLogin_password_incorrect'] = 'Parool pole <20>ige!';
$PALANG['pUsersMenu_vacation'] = 'Automaatne vastus';
$PALANG['pUsersMenu_edit_alias'] = 'Muuda edasisaatmist';
$PALANG['pUsersMenu_password'] = 'Muuda parool';
$PALANG['pUsersMain_vacation'] = 'M<><4D>ra "kontorist v<>ljas" teade v<>i automaatne vastaja e-posti<74>aadressile.';
$PALANG['pUsersMain_edit_alias'] = 'Muuda e-posti<74>edasisaatmist.';
$PALANG['pUsersMain_password'] = 'Muuda praegust<73>parooli.';
$PALANG['pUsersVacation_welcome'] = 'Automaatne vastus.';
$PALANG['pUsersVacation_welcome_text'] = 'Automaatne vastus on juba seadistatud!';
$PALANG['pUsersVacation_subject'] = 'Teema';
$PALANG['pUsersVacation_subject_text'] = 'Kontorist v<>ljas';
$PALANG['pUsersVacation_body'] = 'P<>hitekst';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Olen kontorist eemal alates <date> kuni <date>.
Kiireloomuliste asjade korral palun kontakteeru <kontakt isik>.
I will be away from <date> until <date>.
For urgent matters you can contact <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Olen eemal alates';
$PALANG['pUsersVacation_button_back'] = 'Tulen tagasi';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Automaatse vastuse uuendamine eba<62>nnestus!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Automaatne vastus on eemaldatud!';
$PALANG['pCreate_dbLog_createmailbox'] = 'postkasti loomine';
$PALANG['pCreate_dbLog_createalias'] = 'aliase loomine';
$PALANG['pDelete_dbLog_deletealias'] = 'aliase ksututamine';
$PALANG['pDelete_dbLog_deletemailbox'] = 'postkasti kustutamine';
$PALANG['pEdit_dbLog_editactive'] = 'aktiivne staatuse muutmine';
$PALANG['pEdit_dbLog_editalias'] = 'aliase redigeerimine';
$PALANG['pEdit_dbLog_editmailbox'] = 'postkasti redigeerimine';
$PALANG['pSearch_welcome'] = 'Otsi: ';
?>

300
languages/eu.lang Normal file
View File

@@ -0,0 +1,300 @@
<?php
//
// Language file Euskara
// by Julen
//
require ('default.lang');
$PALANG['YES'] = 'BAI';
$PALANG['NO'] = 'EZ';
$PALANG['edit'] = 'aldatu';
$PALANG['del'] = 'ezabatu';
$PALANG['confirm'] = 'Ziur al zaude ezabatu nahi duzula?\n';
$PALANG['confirm_domain'] = 'Ziur al zaude domeinu honetako erregistro guztiak ezbatu nahi dituzula? Hau ezin izango da desegin!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Kudeatzailearen logina domeinuak kudeatzeko.';
$PALANG['pLogin_username'] = 'Erabiltzailea (e-mail)';
$PALANG['pLogin_password'] = 'Pasahitza';
$PALANG['pLogin_button'] = 'Erabiltzailea';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Logina ez da zuzena. Ziurtatu zaitez logina zeure e-mailarekin egin duzula.</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Pasahitz okerra!</span>';
$PALANG['pLogin_login_users'] = 'Erabiltzaileen gunera joateko logina.';
$PALANG['pMenu_overview'] = 'Laburpena';
$PALANG['pMenu_create_alias'] = 'Aliasa gehitu';
$PALANG['pMenu_create_mailbox'] = 'Postontzia gehitu';
$PALANG['pMenu_sendmail'] = 'e-maila bidali';
$PALANG['pMenu_password'] = 'Pasahitza';
$PALANG['pMenu_viewlog'] = 'Logak ikusi';
$PALANG['pMenu_logout'] = 'Irten';
$PALANG['pMain_welcome'] = 'Ongietorri Postfix Adminera!';
$PALANG['pMain_overview'] = 'Alias eta postontzien zerrenda. Hemendik aldatu / ezabatu ditzakezu.';
$PALANG['pMain_create_alias'] = 'Zure domeinuarentzako alias berri baten sorkuntza.';
$PALANG['pMain_create_mailbox'] = 'Zure domeinuarentzako postontzi berri baten sorkuntza.';
$PALANG['pMain_sendmail'] = 'Duela gutxi sorturiko postontziren batera e-mail bat bidali.';
$PALANG['pMain_password'] = 'Kudeatzaile konturako pasahitza aldatu.';
$PALANG['pMain_viewlog'] = 'Logak ikusi.';
$PALANG['pMain_logout'] = 'Irten.';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Joan';
$PALANG['pOverview_welcome'] = 'Laburpena ';
$PALANG['pOverview_alias_alias_count'] = 'Aliasa';
$PALANG['pOverview_alias_mailbox_count'] = 'Postontziak';
$PALANG['pOverview_alias_address'] = 'Igorlea';
$PALANG['pOverview_alias_goto'] = 'Norakoa';
$PALANG['pOverview_alias_modified'] = 'Azken aldaketa';
$PALANG['pOverview_mailbox_username'] = 'E-mail';
$PALANG['pOverview_mailbox_name'] = 'Izena';
$PALANG['pOverview_mailbox_quota'] = 'Kuota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Azken aldaketa';
$PALANG['pOverview_mailbox_active'] = 'Aktibatua';
$PALANG['pOverview_get_domain'] = 'Domeinua';
$PALANG['pOverview_get_aliases'] = 'Aliasa';
$PALANG['pOverview_get_mailboxes'] = 'Postontziak';
$PALANG['pOverview_get_quota'] = 'Postontzi kuota (MB)';
$PALANG['pOverview_get_modified'] = 'Azken aldaketa';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Ezinezkoa sarrera ezabatzea ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Ez zara domeinu honen jabe';
$PALANG['pCreate_alias_welcome'] = 'Domeinuarentzat alias berri bat sortu.';
$PALANG['pCreate_alias_address'] = 'Aliasa';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">ALIASa okerra da!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Helbide hau existitzen da, ezberdin bat aukera ezazu mesedez!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Alias sortze mugara heldu zara!</span>';
$PALANG['pCreate_alias_goto'] = 'Norakoa';
$PALANG['pCreate_alias_button'] = 'Aliasa gehitu';
$PALANG['pCreate_alias_goto_text'] = 'Nora bidali behar den e-maila.';
$PALANG['pCreate_alias_goto_text_error'] = 'Nora bidali behar den e-maila.<br /><span class="error_msg">NORAKO okerra!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Ezinezkoa aliasa alias taulan sartzea!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Aliasa alias taulan gehituta!';
$PALANG['pCreate_alias_catchall_text'] = 'Alias orokor bat sortzeko "*" erabil ezazu alias gisa.<br />Domeinuz domeinurako birbideraketa baterako Norako gisa "*@domain.tld" erabil ezazu.';
$PALANG['pEdit_alias_welcome'] = 'Domeinuarentzat aliasa aldatu.<br />Lerroko sarrera bat.';
$PALANG['pEdit_alias_address'] = 'Aliasa';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Ezinezkoa aliasa aurkitzea!</span>';
$PALANG['pEdit_alias_goto'] = 'Norakoa';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Norakoan ez duzu ezer jarri</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Sartutako e-mail helbidea baliiogabekoa da: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Ez zara domeinu honen jabe: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Aliasa aldatu';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Ezinezkoa aliasa aldatzea!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Postontzi berri bat sortu domeinuarentzat.';
$PALANG['pCreate_mailbox_username'] = 'Erabiltzailea';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">E-maila baliogabekoa da!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">E-mail hau existitzen da. Ezberdin bat aukera ezazu, mesedez!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Postontzi sorkuntza mugara iritsi zara!</span>';
$PALANG['pCreate_mailbox_password'] = 'Pasahitza';
$PALANG['pCreate_mailbox_password2'] = 'Pasahitza (errepikatu)';
$PALANG['pCreate_mailbox_password_text'] = 'POP3/IMAP-entzat pasahitza';
$PALANG['pCreate_mailbox_password_text_error'] = 'POP3/IMAP-entzat pasahitza<br /><span class="error_msg">Sartutako pasahitzak ez datoz bat<br />edo zuriz daude!</span>';
$PALANG['pCreate_mailbox_name'] = 'Izena';
$PALANG['pCreate_mailbox_name_text'] = 'Izen osoa';
$PALANG['pCreate_mailbox_quota'] = 'Kuota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Zehazturiko kuota altuegia da!</span>';
$PALANG['pCreate_mailbox_active'] = 'Aktibatua';
$PALANG['pCreate_mailbox_mail'] = 'Postontzia sortu';
$PALANG['pCreate_mailbox_button'] = 'Postontzia gehitu';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Ezinezkoa postontzi taulara postontzia gehitzea!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Postontzia postontzi taulara sartu da!';
$PALANG['pEdit_mailbox_welcome'] = 'Domeinuarentzat postontzi bat aldatu.';
$PALANG['pEdit_mailbox_username'] = 'Erabiltzailea';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Ezinezkoa postontzia aurkitzea!</span>';
$PALANG['pEdit_mailbox_password'] = 'Pasahitz berria';
$PALANG['pEdit_mailbox_password2'] = 'Pasahitz berria (errepikatu)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Sartutako pasahitzak ez datoz bat!</span>';
$PALANG['pEdit_mailbox_name'] = 'Izena';
$PALANG['pEdit_mailbox_quota'] = 'Kuota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Zehazturiko kuota altuegia da!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Ez zara domeinu honen jabe: ';
$PALANG['pEdit_mailbox_button'] = 'Postontzia aldatu';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Ezinezkoa pasahitza aldatzea!</span>';
$PALANG['pPassword_welcome'] = 'Login pasahitza aldatu.';
$PALANG['pPassword_admin'] = 'Login';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Emandako LOGINa ez dator inolako postontziekin bat!</span>';
$PALANG['pPassword_password_current'] = 'Egungo pasahitza';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Ez duzu egungo pasahitzik sartu!</span>';
$PALANG['pPassword_password'] = 'Pasahitz berria';
$PALANG['pPassword_password2'] = 'Pasahitz berria (errepikatu)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Sarturiko pasahitzak ez datoz bat<br />edo zuriz daude!</span>';
$PALANG['pPassword_button'] = 'Pasahitza aldatu';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Ezinezkoa pasahitza aldatzea!</span>';
$PALANG['pPassword_result_succes'] = 'Pasahitza aldatuta!';
$PALANG['pViewlog_welcome'] = 'Honen azken 10 ekintzak ikusi ';
$PALANG['pViewlog_timestamp'] = 'Data/ordua';
$PALANG['pViewlog_username'] = 'Kudeatzailea';
$PALANG['pViewlog_domain'] = 'Domeinua';
$PALANG['pViewlog_action'] = 'Ekintza';
$PALANG['pViewlog_data'] = 'Datuak';
$PALANG['pViewlog_button'] = 'Joan';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Ezinezkoa logak aurkitzea!</span>';
$PALANG['pSendmail_welcome'] = 'e-mail bat bidali.';
$PALANG['pSendmail_admin'] = 'Igorlea';
$PALANG['pSendmail_to'] = 'Norakoa';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Norako helbidea hutsa dago edo okerra da!</span>';
$PALANG['pSendmail_subject'] = 'Gaia';
$PALANG['pSendmail_subject_text'] = 'Ongi etorri';
$PALANG['pSendmail_body'] = 'Gorputza';
$PALANG['pSendmail_button'] = 'Mezua bidali';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Ezinezkoa postontzia sortzea!</span>';
$PALANG['pSendmail_result_succes'] = 'Postontzia sortuta!';
$PALANG['pAdminMenu_list_admin'] = 'Kudeatzaile zerrenda';
$PALANG['pAdminMenu_list_domain'] = 'Domeinu zerrenda';
$PALANG['pAdminMenu_list_virtual'] = 'Helbide birtualen zerrenda';
$PALANG['pAdminMenu_viewlog'] = 'Logak ikusi';
$PALANG['pAdminMenu_backup'] = 'Segurtasun kopia';
$PALANG['pAdminMenu_create_domain_admins'] = 'Domeinu kudeatzaileak';
$PALANG['pAdminMenu_create_admin'] = 'Kudeatzaile berria';
$PALANG['pAdminMenu_create_domain'] = 'Domeinu berria';
$PALANG['pAdminMenu_create_alias'] = 'Aliasa gehitu';
$PALANG['pAdminMenu_create_mailbox'] = 'Postontzia gehitu';
$PALANG['pAdminList_admin_domain'] = 'Domeinua';
$PALANG['pAdminList_admin_username'] = 'Kudeatzailea';
$PALANG['pAdminList_admin_count'] = 'Domeinuak';
$PALANG['pAdminList_admin_modified'] = 'Azken aldaketa';
$PALANG['pAdminList_admin_active'] = 'Aktibatua';
$PALANG['pAdminList_domain_domain'] = 'Domeinua';
$PALANG['pAdminList_domain_description'] = 'Deskripzioa';
$PALANG['pAdminList_domain_aliases'] = 'Aliasa';
$PALANG['pAdminList_domain_mailboxes'] = 'Postontziak';
$PALANG['pAdminList_domain_maxquota'] = 'Gehienezko kuota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Azken aldaketa';
$PALANG['pAdminList_domain_active'] = 'Aktibatua';
$PALANG['pAdminList_virtual_button'] = 'Joan';
$PALANG['pAdminList_virtual_welcome'] = 'Laburpena ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliasa';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Postontziak';
$PALANG['pAdminList_virtual_alias_address'] = 'Igorlea';
$PALANG['pAdminList_virtual_alias_goto'] = 'Norakoa';
$PALANG['pAdminList_virtual_alias_modified'] = 'Azken aldaketa';
$PALANG['pAdminList_virtual_mailbox_username'] = 'E-mail';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Izena';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Kuota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Azken aldaketa';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Aktibatua';
$PALANG['pAdminCreate_domain_welcome'] = 'Domeinu berria gehitu';
$PALANG['pAdminCreate_domain_domain'] = 'Domeinua';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Domeinua existitzen da!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Deskripzioa';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliasa';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = desegokitu | 0 = mugagabea';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Postontziak';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = desegokitu | 0 = mugagabea';
$PALANG['pAdminCreate_domain_maxquota'] = 'Gehienezko kuota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = desegokitu | 0 = mugagabea';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Aurremugatutako aliasa gehitu';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Domeinua gehitu';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Ezinezkoa domeinua gehitzea!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Domeinua gehituta!';
$PALANG['pAdminEdit_domain_welcome'] = 'Domeinu bat aldatu';
$PALANG['pAdminEdit_domain_domain'] = 'Domeinua';
$PALANG['pAdminEdit_domain_description'] = 'Deskripzioa';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliasa';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = desegokitu | 0 = mugagabea';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Postontziak';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = desegokitu | 0 = mugagabea';
$PALANG['pAdminEdit_domain_maxquota'] = 'Gehienezko kuota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = desegokitu | 0 = mugagabea';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Aktibatua';
$PALANG['pAdminEdit_domain_button'] = 'Domeinua aldatu';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Ezinezkoa domeinua aldatzea!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Domeinu kudeatzaile berri bat gehitu';
$PALANG['pAdminCreate_admin_username'] = 'Kudeatzailea';
$PALANG['pAdminCreate_admin_username_text'] = 'E-mail helbidea';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'E-mail helbidea<br /><span class="error_msg">Kudeatzaile e-mailak ez du balio!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'E-mail<br /><span class="error_msg">Kudeatzailea existitzen da edo ez du balio!</span>';
$PALANG['pAdminCreate_admin_password'] = 'Pasahitza';
$PALANG['pAdminCreate_admin_password2'] = 'Pasahitza (errepikatu)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Sartutako pasahitzak ez datoz bat<br />edo zuriz daude!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Kudeatzailea gehitu';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Ezinezkoa kudeatzailea gehitzea!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Kudeatzailea gehituta1';
$PALANG['pAdminCreate_admin_address'] = 'Domeinua';
$PALANG['pAdminEdit_admin_welcome'] = 'Domeinu kudeatzaile bat aldatu';
$PALANG['pAdminEdit_admin_username'] = 'Kudeatzailea';
$PALANG['pAdminEdit_admin_password'] = 'Pasahitza';
$PALANG['pAdminEdit_admin_password2'] = 'Pasahitza (errepikatu)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Sartutako pasahitzak ez datoz bat<br />edo zuriz daude!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Aktibatua';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Kudeatzailea aldatu';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Ezinezkoa kudeatzailea aldatzea!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Kudeatzailea aldatu da!';
$PALANG['pUsersLogin_welcome'] = 'Erabiltzaileen logina pasahitz eta aliasa aldatzeko.';
$PALANG['pUsersLogin_username'] = 'Login (e-mail)';
$PALANG['pUsersLogin_password'] = 'Pasahitza';
$PALANG['pUsersLogin_button'] = 'Login';
$PALANG['pUsersLogin_username_incorrect'] = 'Login okerra. Ziurta zaitez posta helbidea login gisa sartu duzula!';
$PALANG['pUsersLogin_password_incorrect'] = 'Pasahitz okerra!';
$PALANG['pUsersMenu_vacation'] = 'Erantzun automatikoa';
$PALANG['pUsersMenu_edit_alias'] = 'Berbiderapen helbidea aldatu';
$PALANG['pUsersMenu_password'] = 'Pasahitza aldatu';
$PALANG['pUsersMain_vacation'] = 'Konfigura ezazu "lanetik kanpo" motako mezu bat edo erantzun automatikoa zure postarentzat.';
$PALANG['pUsersMain_edit_alias'] = 'Alda ezazu posta helbidea.';
$PALANG['pUsersMain_password'] = 'Alda ezazu pasahitza.';
$PALANG['pUsersVacation_welcome'] = 'Erantzun automatikoa.';
$PALANG['pUsersVacation_welcome_text'] = 'Erantzun automatiko bat konfiguratuta duzu!';
$PALANG['pUsersVacation_subject'] = 'Gaia';
$PALANG['pUsersVacation_subject_text'] = 'Lanetik kanpo';
$PALANG['pUsersVacation_body'] = 'Gorputza';
$PALANG['pUsersVacation_body_text'] = <<<EOM
<date>-tik <date> arte kanpoan egongo naiz.
Larrialdiko gaientzat, hemen <contact person> kontakta dezakezu nirekin.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Aldeginda';
$PALANG['pUsersVacation_button_back'] = 'Itzulita';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Ezinezkoa zure erantzun atomatikoaren konfigurazioa eguneratzea!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Zure erantzun automatikoa borratu da!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

300
languages/fi.lang Normal file
View File

@@ -0,0 +1,300 @@
<?php
//
// Language file Finnish
// by Palo
//
require ('default.lang');
$PALANG['YES'] = 'Kyll<6C>';
$PALANG['NO'] = 'Ei';
$PALANG['edit'] = 'muokkaa';
$PALANG['del'] = 'poista';
$PALANG['confirm'] = 'Oletko varma ett<74> haluat poistaa t<>m<EFBFBD>n?\n';
$PALANG['confirm_domain'] = 'Oletko varma ett<74> haluat poistaa kaikki tietueet t<>st<73> domainista? T<>t<EFBFBD> komentoa ei voi perua!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Kirjautuminen';
$PALANG['pLogin_username'] = 'Tunnus';
$PALANG['pLogin_password'] = 'Salasana';
$PALANG['pLogin_button'] = 'Kirjaudu';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Tunnus tai salasana v<><76>rin!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Tunnus tai salasana v<><76>rin!</span>';
$PALANG['pLogin_login_users'] = 'K<>ytt<74>jien kirjautuminen.';
$PALANG['pMenu_overview'] = 'Yleisn<73>kym<79>';
$PALANG['pMenu_create_alias'] = 'Lis<69><73> alias';
$PALANG['pMenu_create_mailbox'] = 'Lis<69><73> postilaatikko';
$PALANG['pMenu_sendmail'] = 'L<>het<65> postia';
$PALANG['pMenu_password'] = 'Salasana';
$PALANG['pMenu_viewlog'] = 'N<>yt<79> loki';
$PALANG['pMenu_logout'] = 'Kirjaudu ulos';
$PALANG['pMain_welcome'] = 'Tervetuloa s<>hk<68>postin hallintaan.';
$PALANG['pMain_overview'] = 'Listaa aliakset ja postilaatikot. Voit muokata ja poistaa niit<69> t<>st<73>.';
$PALANG['pMain_create_alias'] = 'Luo uusi alias domainiin.';
$PALANG['pMain_create_mailbox'] = 'Luo uusi postilaatikko domainiin.';
$PALANG['pMain_sendmail'] = 'L<>het<65> s<>hk<68>postia juuri luotuun postilaatikkoon.';
$PALANG['pMain_password'] = 'Vaihda hallintatunnuksen salasanaa.';
$PALANG['pMain_viewlog'] = 'N<>yt<79> lokitiedostot.';
$PALANG['pMain_logout'] = 'Kirjaudu ulos j<>rjestelm<6C>st<73>';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Siirry';
$PALANG['pOverview_welcome'] = 'Yleisn<73>kym<79> ';
$PALANG['pOverview_alias_alias_count'] = 'Aliakset';
$PALANG['pOverview_alias_mailbox_count'] = 'Postilaatikot';
$PALANG['pOverview_alias_address'] = 'Kenelt<6C>';
$PALANG['pOverview_alias_goto'] = 'Kenelle';
$PALANG['pOverview_alias_modified'] = 'Viimeksi muokattu';
$PALANG['pOverview_mailbox_username'] = 'S<>hk<68>posti';
$PALANG['pOverview_mailbox_name'] = 'Nimi';
$PALANG['pOverview_mailbox_quota'] = 'Kiinti<74> (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Viimeksi muokattu';
$PALANG['pOverview_mailbox_active'] = 'Aktiivinen';
$PALANG['pOverview_get_domain'] = 'Domain';
$PALANG['pOverview_get_aliases'] = 'Aliakset';
$PALANG['pOverview_get_mailboxes'] = 'Postilaatikot';
$PALANG['pOverview_get_quota'] = 'Postilaatikon kiinti<74> (MB)';
$PALANG['pOverview_get_modified'] = 'Viimeksi muokattu';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Tietueen poisto ei onnistu ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">T<>m<EFBFBD> ei ole sinun domainisi ';
$PALANG['pCreate_alias_welcome'] = 'Luo uusi alias.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">Alias ei ole oikean muotoinen!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">T<>m<EFBFBD> s<>hk<68>postiosoite on jo k<>yt<79>ss<73>, ole hyv<79> ja valitse jokin toinen!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Aliasten maksimim<69><6D>r<EFBFBD> saavutettu. Et voi lis<69>t<EFBFBD> aliaksia en<65><6E>!</span>';
$PALANG['pCreate_alias_goto'] = 'Kenelle';
$PALANG['pCreate_alias_button'] = 'Lis<69><73> alias';
$PALANG['pCreate_alias_goto_text'] = 'Minne posti l<>hetet<65><74>n.';
$PALANG['pCreate_alias_goto_text_error'] = 'Minne s<>hk<68>posti l<>hetet<65><74>n.<br /><span class="error_msg">"Kenelle" osoite ei ole oikean muotoinen!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Aliaksen lis<69>ys alias tauluun ep<65>onnistui!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Alias on lis<69>tty!';
$PALANG['pCreate_alias_catchall_text'] = 'Jos haluat luoda catch-all osoitteen k<>yt<79> "*" merkki<6B> aliaksena.<br />Ohjaus domainista domainiin tapahtuu k<>ytt<74>m<EFBFBD>ll<6C> "*@domain.tld" Kenelle: -osoitteena.';
$PALANG['pEdit_alias_welcome'] = 'Muokkaa aliasta.<br />Yksi kohta per rivi.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Aliasta ei l<>ydy!</span>';
$PALANG['pEdit_alias_goto'] = 'Kenelle';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Et kirjoitanut mit<69><74>n Kenelle: -riville</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Antamasi s<>hk<68>postiosoite ei ole oikean muotoinen: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">T<>m<EFBFBD> ei ole sinun domainisi: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Muokkaa aliasta';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Aliasta ei voi muokata!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Luo uusi paikallinen postilaatikko.';
$PALANG['pCreate_mailbox_username'] = 'K<>ytt<74>j<EFBFBD>tunnus';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">S<>hk<68>postiosoite ei ole oikean muotoinen!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">S<>hk<68>postiosoite on jo k<>yt<79>ss<73>, ole hyv<79> ja valitse jokin toinen!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Postilaatikoiden maksimim<69><6D>r<EFBFBD> saavutettu!</span>';
$PALANG['pCreate_mailbox_password'] = 'Salasana';
$PALANG['pCreate_mailbox_password2'] = 'Salasana (toistamiseen)';
$PALANG['pCreate_mailbox_password_text'] = 'POP3/IMAP salasana';
$PALANG['pCreate_mailbox_password_text_error'] = 'POP3/IMAP salasana<br /><span class="error_msg">Antamasi salasanat eiv<69>t t<>sm<73><6D>!<br />tai ne ovat tyhj<68>t!</span>';
$PALANG['pCreate_mailbox_name'] = 'Nimi';
$PALANG['pCreate_mailbox_name_text'] = 'Koko nimi';
$PALANG['pCreate_mailbox_quota'] = 'Kiinti<74>';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Antamasi kiinti<74> on liian korkea!</span>';
$PALANG['pCreate_mailbox_active'] = 'Aktiivinen';
$PALANG['pCreate_mailbox_mail'] = 'Luo postilaatikko';
$PALANG['pCreate_mailbox_button'] = 'Lis<69><73> postilaatikko';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Postilaatikon lis<69><73>minen ei onnistu!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Postilaatikko on lis<69>tty!';
$PALANG['pEdit_mailbox_welcome'] = 'Muokkaa postilaatikkoa.';
$PALANG['pEdit_mailbox_username'] = 'K<>ytt<74>j<EFBFBD>tunnus';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Postilaatikkoa ei l<>ydy!</span>';
$PALANG['pEdit_mailbox_password'] = 'Uusi salasana';
$PALANG['pEdit_mailbox_password2'] = 'Uusi salasana (toistamiseen)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Antamasi salasanat eiv<69>t t<>sm<73><6D>!</span>';
$PALANG['pEdit_mailbox_name'] = 'Nimi';
$PALANG['pEdit_mailbox_quota'] = 'Kiinti<74>';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Antamasi kiinti<74> on liian korkea!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">T<>m<EFBFBD> domaini ei ole sinun: ';
$PALANG['pEdit_mailbox_button'] = 'Muokkaa postilaatikkoa';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Postilaatikon muokkaus ei onnistunut!</span>';
$PALANG['pPassword_welcome'] = 'Vaihda tunnuksesi salasana.';
$PALANG['pPassword_admin'] = 'Tunnus';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Antamaasi tunnusta ei ole olemassa!</span>';
$PALANG['pPassword_password_current'] = 'Nykyinen salasanasi';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Et antanut nykyist<73> salasanaasi!</span>';
$PALANG['pPassword_password'] = 'Uusi salasana';
$PALANG['pPassword_password2'] = 'Uusi salasana (toistamiseen)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Antamasi salasanat eiv<69>t t<>sm<73><6D>!<br />Tai ovat tyhji<6A>!</span>';
$PALANG['pPassword_button'] = 'Vaihda salasana';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Salasanan vaihto ei onnistunut!</span>';
$PALANG['pPassword_result_succes'] = 'Salasana vaihdettu!';
$PALANG['pViewlog_welcome'] = 'N<>yt<79> viimeiset kymmenen tapahtumaa domainille ';
$PALANG['pViewlog_timestamp'] = 'Aikaleima';
$PALANG['pViewlog_username'] = 'Admin';
$PALANG['pViewlog_domain'] = 'Domain';
$PALANG['pViewlog_action'] = 'Tapahtuma';
$PALANG['pViewlog_data'] = 'Tiedot';
$PALANG['pViewlog_button'] = 'Siirry';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Lokeja ei l<>ydy!</span>';
$PALANG['pSendmail_welcome'] = 'L<>het<65> s<>hk<68>postia.';
$PALANG['pSendmail_admin'] = 'Kenelt<6C>';
$PALANG['pSendmail_to'] = 'Kenelle';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Kenelle on tyhj<68> tai osoite ei ole toimiva s<>hk<68>postiosoite!</span>';
$PALANG['pSendmail_subject'] = 'Otsikko';
$PALANG['pSendmail_subject_text'] = 'Tervetuloa';
$PALANG['pSendmail_body'] = 'Viesti';
$PALANG['pSendmail_button'] = 'L<>het<65> viesti';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Postilaatikon luonti ei onnistunut!</span>';
$PALANG['pSendmail_result_succes'] = 'Postilaatikko on luotu!';
$PALANG['pAdminMenu_list_admin'] = 'Admin Lista';
$PALANG['pAdminMenu_list_domain'] = 'Domain Lista';
$PALANG['pAdminMenu_list_virtual'] = 'Virtual Lista';
$PALANG['pAdminMenu_viewlog'] = 'N<>yt<79> loki';
$PALANG['pAdminMenu_backup'] = 'Varmistus';
$PALANG['pAdminMenu_create_domain_admins'] = 'Domainin yll<6C>pit<69>j<EFBFBD>t';
$PALANG['pAdminMenu_create_admin'] = 'Uusi yll<6C>pit<69>j<EFBFBD>';
$PALANG['pAdminMenu_create_domain'] = 'Uusi domain';
$PALANG['pAdminMenu_create_alias'] = 'Lis<69><73> alias';
$PALANG['pAdminMenu_create_mailbox'] = 'Lis<69><73> postilaatikko';
$PALANG['pAdminList_admin_domain'] = 'Domain';
$PALANG['pAdminList_admin_username'] = 'Admin';
$PALANG['pAdminList_admin_count'] = 'Domainit';
$PALANG['pAdminList_admin_modified'] = 'Viimeksi muokattu';
$PALANG['pAdminList_admin_active'] = 'Aktiivinen';
$PALANG['pAdminList_domain_domain'] = 'Domain';
$PALANG['pAdminList_domain_description'] = 'Kuvaus';
$PALANG['pAdminList_domain_aliases'] = 'Aliakset';
$PALANG['pAdminList_domain_mailboxes'] = 'Postilaatikot';
$PALANG['pAdminList_domain_maxquota'] = 'Suurin sallittu kiinti<74> (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Viimeksi muokattu';
$PALANG['pAdminList_domain_active'] = 'Atiivinen';
$PALANG['pAdminList_virtual_button'] = 'Siirry';
$PALANG['pAdminList_virtual_welcome'] = 'Yleisn<73>kym<79> ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliakset';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Postilaatikot';
$PALANG['pAdminList_virtual_alias_address'] = 'Kenelt<6C>';
$PALANG['pAdminList_virtual_alias_goto'] = 'Kenelle';
$PALANG['pAdminList_virtual_alias_modified'] = 'Viimeksi muokattu';
$PALANG['pAdminList_virtual_mailbox_username'] = 'S<>hk<68>posti';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Nimi';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Kiinti<74> (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Viimeksi muokattu';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Atiivinen';
$PALANG['pAdminCreate_domain_welcome'] = 'Lis<69><73> uusi domain';
$PALANG['pAdminCreate_domain_domain'] = 'Domain';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Domain on jo j<>rjestelm<6C>ss<73>!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Kuvaus';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliakset';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = ei k<>yt<79>ss<73> | 0 = rajoittamaton';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Postilaatikot';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = ei k<>yt<79>ss<73> | 0 = rajoittamaton';
$PALANG['pAdminCreate_domain_maxquota'] = 'Max kiinti<74>';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB <br /> -1 = ei k<>yt<79>ss<73> | 0 = rajoittamaton';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Lis<69><73> oletus aliakset';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Lis<69><73> domain';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Domainin lis<69>ys ei onnistunut!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Domain on lis<69>tty!';
$PALANG['pAdminEdit_domain_welcome'] = 'Muokkaa domainia';
$PALANG['pAdminEdit_domain_domain'] = 'Domain';
$PALANG['pAdminEdit_domain_description'] = 'Kuvaus';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliakset';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = ei k<>yt<79>ss<73> | 0 = rajoittamaton';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Postilaatikot';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = ei k<>yt<79>ss<73> | 0 = rajoittamaton';
$PALANG['pAdminEdit_domain_maxquota'] = 'Max kiinti<74>';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = ei k<>yt<79>ss<73> | 0 = rajoittamaton';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Aktiivinen';
$PALANG['pAdminEdit_domain_button'] = 'Muokkaa domainia';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Domainin muokkaus ei onnistu!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Lis<69><73> uusi domainin yll<6C>pit<69>j<EFBFBD>';
$PALANG['pAdminCreate_admin_username'] = 'Admin';
$PALANG['pAdminCreate_admin_username_text'] = 'S<>hk<68>postiosoite';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'S<>hk<68>postiosoite<br /><span class="error_msg">Yll<6C>pit<69>j<EFBFBD>n s<>hk<68>postiosoite ei ole oikeanmuotoinen!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'S<>hk<68>postiosoite<br /><span class="error_msg">Yll<6C>pit<69>j<EFBFBD>n s<>hk<68>postiosoite on jo olemassa tai se ei ole oikean muotoinen</span>';
$PALANG['pAdminCreate_admin_password'] = 'Salasana';
$PALANG['pAdminCreate_admin_password2'] = 'Salasana (toistamiseen)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Antamasi salasanat eiv<69>t t<>sm<73><6D><br />Tai ne ovat tyhji<6A>!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Lis<69><73> yll<6C>pit<69>j<EFBFBD>';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Yll<6C>pit<69>j<EFBFBD>n lis<69>ys ei onnistu!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Yll<6C>pit<69>j<EFBFBD> on lis<69>tty!';
$PALANG['pAdminCreate_admin_address'] = 'Domain';
$PALANG['pAdminEdit_admin_welcome'] = 'Muokkaa domainin yll<6C>pit<69>j<EFBFBD><6A>';
$PALANG['pAdminEdit_admin_username'] = 'Yll<6C>pit<69>j<EFBFBD>';
$PALANG['pAdminEdit_admin_password'] = 'Salasana';
$PALANG['pAdminEdit_admin_password2'] = 'Salasana (toistamiseen)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Antamasi salasanat eiv<69>t t<>sm<73><6D>!<br />Tai ne ovat tyhji<6A>!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Aktiivinen';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Muokkaa yll<6C>pit<69>j<EFBFBD><6A>';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Yll<6C>pit<69>j<EFBFBD>n muokkaaminen ei onnistu!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Yll<6C>pit<69>j<EFBFBD>n muokkaus onnistui!';
$PALANG['pUsersLogin_welcome'] = 'Salasanan vaihto.';
$PALANG['pUsersLogin_username'] = 'Tunnus';
$PALANG['pUsersLogin_password'] = 'Salasana';
$PALANG['pUsersLogin_button'] = 'Kirjaudu';
$PALANG['pUsersLogin_username_incorrect'] = 'K<>ytt<74>j<EFBFBD>tunnus tai salasana v<><76>rin!';
$PALANG['pUsersLogin_password_incorrect'] = 'K<>ytt<74>j<EFBFBD>tunnus tai salasana v<><76>rin!';
$PALANG['pUsersMenu_vacation'] = 'Automaattivastaus';
$PALANG['pUsersMenu_edit_alias'] = 'Muokkaa uudelleenohjausta';
$PALANG['pUsersMenu_password'] = 'Vaihda salasana';
$PALANG['pUsersMain_vacation'] = 'Aseta lomavastaaja tai automaattivastaus s<>hk<68>postiisi.';
$PALANG['pUsersMain_edit_alias'] = 'Muuta uudelleenohjauksen osoitetta.';
$PALANG['pUsersMain_password'] = 'Vaihda nykyinen salasanasi.';
$PALANG['pUsersVacation_welcome'] = 'Automaattivastaus.';
$PALANG['pUsersVacation_welcome_text'] = 'Sinulla on jo automaattivastaus p<><70>ll<6C>!';
$PALANG['pUsersVacation_subject'] = 'Otsikko';
$PALANG['pUsersVacation_subject_text'] = 'Lomalla';
$PALANG['pUsersVacation_body'] = 'Viesti';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Olen lomalla <p<>iv<69>ys> <p<>iv<69>ys> v<>lisen ajan.
Kiireellisiss<EFBFBD> asioissa voitte ottaa yhteytt<74> <s<>hk<68>postiosoite>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Lomalle';
$PALANG['pUsersVacation_button_back'] = 'Takaisin lomalta';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Automaattivastauksen asettaminen ep<65>onnistui!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Automaattivastaus on poistettu k<>yt<79>st<73>!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

306
languages/fo.lang Normal file
View File

@@ -0,0 +1,306 @@
<?php
//
// Language file Faroese
// by Danial
//
require ('default.lang');
$PALANG['YES'] = 'JA';
$PALANG['NO'] = 'NEI';
$PALANG['edit'] = 'broyt';
$PALANG['del'] = 'strika';
$PALANG['confirm'] = 'Ert t<> v<>s(ur) <20> at t<> vilt strika hetta?\n';
$PALANG['confirm_domain'] = 'Vilt t<> veruliga strika allar uppl<70>singar fyri hetta navna<6E>ki? Her kann ikki vendast aftur!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Umsitarar kunnu logga inn her fyri at umsita tykkara navna<6E>ki.';
$PALANG['pLogin_username'] = 'Login (e-post)';
$PALANG['pLogin_password'] = 'Loynior<6F>';
$PALANG['pLogin_button'] = 'Logga inn';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">T<>tt login er skeivt. Minst til at skriva fulla e-post adressu!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">T<>tt loynior<6F> er skeivt!</span>';
$PALANG['pLogin_login_users'] = 'Br<42>karar kunnu logga inn her.';
$PALANG['pMenu_overview'] = 'Yvirlit';
$PALANG['pMenu_create_alias'] = 'Stovna Dulnevni';
$PALANG['pMenu_create_mailbox'] = 'Stovna Postkassa';
$PALANG['pMenu_sendmail'] = 'Send E-post';
$PALANG['pMenu_password'] = 'Loynior<6F>';
$PALANG['pMenu_viewlog'] = 'V<>s Logg';
$PALANG['pMenu_logout'] = 'Logga <20>t';
$PALANG['pMain_welcome'] = 'V<>lkomin til Postfix Admin!';
$PALANG['pMain_overview'] = 'V<>s t<>ni dulnevni og postkassar. T<> kanst broyta / strika tey her.';
$PALANG['pMain_create_alias'] = 'Stovna eitt n<>tt dulnevni <20> t<>num navna<6E>ki.';
$PALANG['pMain_create_mailbox'] = 'Stovna ein n<>ggjan postkassa <20> t<>num navna<6E>ki.';
$PALANG['pMain_sendmail'] = 'Send ein e-post til ein av t<>num n<>stovna<6E>u postkassum.';
$PALANG['pMain_password'] = 'Broyt loynior<6F>i<EFBFBD> <20> t<>ni umsitara konto.';
$PALANG['pMain_viewlog'] = 'V<>s logg f<>lurnar.';
$PALANG['pMain_logout'] = 'Logga <20>t <20>r skipanini';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Vel';
$PALANG['pOverview_welcome'] = 'Yvirlit yvir ';
$PALANG['pOverview_alias_alias_count'] = 'Dulnevni';
$PALANG['pOverview_alias_mailbox_count'] = 'Postkassar';
$PALANG['pOverview_alias_address'] = 'Fr<46>';
$PALANG['pOverview_alias_goto'] = 'Til';
$PALANG['pOverview_alias_modified'] = 'S<><53>st broytt';
$PALANG['pOverview_mailbox_username'] = 'E-post';
$PALANG['pOverview_mailbox_name'] = 'Navn';
$PALANG['pOverview_mailbox_quota'] = 'Kvota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'S<><53>st broytt';
$PALANG['pOverview_mailbox_active'] = 'Virkin';
$PALANG['pOverview_get_domain'] = 'Navna<6E>ki';
$PALANG['pOverview_get_aliases'] = 'Dulnevni';
$PALANG['pOverview_get_mailboxes'] = 'Postkassar';
$PALANG['pOverview_get_quota'] = 'Postkassa kvota (MB)';
$PALANG['pOverview_get_modified'] = 'S<><53>st broytt';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">F<>i ikki strika<6B> ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Hetta er ikki t<>tt navna<6E>ki ';
$PALANG['pCreate_alias_welcome'] = 'Stovna eitt n<>tt dulnevni <20> t<>num navna<6E>ki.';
$PALANG['pCreate_alias_address'] = 'Dulnevni';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">DULNEVNI er <20>gyldugt!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Hendan e-post adressa finst longu, vinarliga vel eina a<>ra!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">T<> hevur n<>tt t<>num marki at stovna dulnevni!</span>';
$PALANG['pCreate_alias_goto'] = 'Til';
$PALANG['pCreate_alias_button'] = 'Stovna Dulnevni';
$PALANG['pCreate_alias_goto_text'] = 'Har posturin skal sendast til.';
$PALANG['pCreate_alias_goto_text_error'] = 'Har posturin ver<65>ur sendur til.<br /><span class="error_msg">TIL er <20>gyldugt!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">F<>i ikki stovna<6E> dulnevni!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Dulnevni er stovna<6E>!';
$PALANG['pCreate_alias_catchall_text'] = 'Fyri at stovna eitt i<> fangar alt, br<62>ka eina "*" sum dulnevni.<br />Fyri navna<6E>ki til navna<6E>ki v<><76>arisending br<62>ka "*@navna<6E>ki.fo" til hetta.';
$PALANG['pEdit_alias_welcome'] = 'Broyt eitt dulnevni <20> t<>num navna<6E>ki.<br />Eina adressu pr. linju.';
$PALANG['pEdit_alias_address'] = 'Dulnevni';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Finni ikki dulnevni!</span>';
$PALANG['pEdit_alias_goto'] = 'Til';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">T<> skriva<76>i onki <20> Til teigin</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">E-post adressan t<> skriva<76>i er <20>gyldug: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Hetta navna<6E>ki er ikki t<>tt: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Broyt Dulnevni';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">F<>i ikki broytt dulnevni!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Stovna ein n<>ggjan postkassa <20> t<>num navna<6E>ki.';
$PALANG['pCreate_mailbox_username'] = 'Br<42>karanavn';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">E-post adressan er <20>gyldug!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Hendan e-post adressan finst longu, vinarliga vel eina a<>ra!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">T<> hevur n<>tt t<>num marki at stovna postkassar!</span>';
$PALANG['pCreate_mailbox_password'] = 'Loynior<6F>';
$PALANG['pCreate_mailbox_password2'] = 'Loynior<6F> (umaftur)';
$PALANG['pCreate_mailbox_password_text'] = 'Loynior<6F> til POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Loynior<6F> til POP3/IMAP<br /><span class="error_msg">Loynior<6F>ini t<> skriva<76>i samsvara ikki!<br />Ella eru t<>m!</span>';
$PALANG['pCreate_mailbox_name'] = 'Navn';
$PALANG['pCreate_mailbox_name_text'] = 'Fult navn';
$PALANG['pCreate_mailbox_quota'] = 'Kvota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Kvotan t<> skriva<76>i er ov h<>g!</span>';
$PALANG['pCreate_mailbox_active'] = 'Virkin';
$PALANG['pCreate_mailbox_mail'] = 'Stovna postkassa';
$PALANG['pCreate_mailbox_button'] = 'Stovna postkassa';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">F<>i ikki stovna<6E> postkassa!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Postkassin er stovna<6E>ur!';
$PALANG['pEdit_mailbox_welcome'] = 'Broyt postkassa <20> t<>num navna<6E>ki.';
$PALANG['pEdit_mailbox_username'] = 'Br<42>karanavn';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Finni ikki postkassa!</span>';
$PALANG['pEdit_mailbox_password'] = 'N<>tt loynior<6F>';
$PALANG['pEdit_mailbox_password2'] = 'N<>tt loynior<6F> (umaftur)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Loynior<6F>ini t<> skriva<76>i samsvara ikki!</span>';
$PALANG['pEdit_mailbox_name'] = 'Navn';
$PALANG['pEdit_mailbox_quota'] = 'Kvota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Kvotan t<> skriva<76>i er ov h<>g!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Hetta navna<6E>ki er ikki t<>tt: ';
$PALANG['pEdit_mailbox_button'] = 'Broyt postkassa';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">F<>i ikki broytt loynior<6F>i<EFBFBD>!</span>';
$PALANG['pPassword_welcome'] = 'Broyt t<>tt login loynior<6F>.';
$PALANG['pPassword_admin'] = 'Logga inn';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Navni<6E> t<> skriva<76>i samsvarar ikki vi<76> nakran postkassa!</span>';
$PALANG['pPassword_password_current'] = 'N<>verandi loynior<6F>';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">T<> skriva<76>i ikki t<>tt n<>verandi loynior<6F>!</span>';
$PALANG['pPassword_password'] = 'N<>tt loynior<6F>';
$PALANG['pPassword_password2'] = 'N<>tt loynior<6F> (umaftur)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Loynior<6F>ini t<> skriva<76>i samsvara ikki!<br />Ella eru t<>m!</span>';
$PALANG['pPassword_button'] = 'Broyt loynior<6F>';
$PALANG['pPassword_result_error'] = '<span class="error_msg">F<>i ikki broytt t<>tt loynior<6F>!</span>';
$PALANG['pPassword_result_succes'] = 'T<>tt loynior<6F> er broytt!';
$PALANG['pViewlog_welcome'] = 'V<>s seinastu 10 hendingarnar fyri ';
$PALANG['pViewlog_timestamp'] = 'T<><54>arstempul';
$PALANG['pViewlog_username'] = 'Umsitari';
$PALANG['pViewlog_domain'] = 'Navna<6E>ki';
$PALANG['pViewlog_action'] = 'Hending';
$PALANG['pViewlog_data'] = 'D<>ta';
$PALANG['pViewlog_button'] = 'Vel';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Finni ikki loggarnar!</span>';
$PALANG['pSendmail_welcome'] = 'Send ein e-post.';
$PALANG['pSendmail_admin'] = 'Fr<46>';
$PALANG['pSendmail_to'] = 'Til';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Til er t<>mt ella <20>gyldug e-post adressa!</span>';
$PALANG['pSendmail_subject'] = 'Evni';
$PALANG['pSendmail_subject_text'] = 'V<>lkomin';
$PALANG['pSendmail_body'] = 'Bo<42>';
$PALANG['pSendmail_button'] = 'Send bo<62>';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">F<>i ikki stovna<6E> postkassa!</span>';
$PALANG['pSendmail_result_succes'] = 'Postkassin er stovna<6E>ur!';
$PALANG['pAdminMenu_list_admin'] = 'Umsitara listi';
$PALANG['pAdminMenu_list_domain'] = 'Navna<6E>kja listi';
$PALANG['pAdminMenu_list_virtual'] = 'Virtual listi';
$PALANG['pAdminMenu_viewlog'] = 'V<>s logg';
$PALANG['pAdminMenu_backup'] = 'Trygdaravrit';
$PALANG['pAdminMenu_create_domain_admins'] = 'Umsitarar fyri Navna<6E>ki';
$PALANG['pAdminMenu_create_admin'] = 'N<>ggjan Umsitara';
$PALANG['pAdminMenu_create_domain'] = 'N<>tt Navna<6E>ki';
$PALANG['pAdminMenu_create_alias'] = 'Stovna Dulnevni';
$PALANG['pAdminMenu_create_mailbox'] = 'Stovna Postkassa';
$PALANG['pAdminList_admin_domain'] = 'Navna<6E>ki';
$PALANG['pAdminList_admin_username'] = 'Umsitari';
$PALANG['pAdminList_admin_count'] = 'Navna<6E>ki';
$PALANG['pAdminList_admin_modified'] = 'S<>st broytt';
$PALANG['pAdminList_admin_active'] = 'Virkin';
$PALANG['pAdminList_domain_domain'] = 'Navna<6E>ki';
$PALANG['pAdminList_domain_description'] = 'Fr<46>grei<65>ing';
$PALANG['pAdminList_domain_aliases'] = 'Dulnevni';
$PALANG['pAdminList_domain_mailboxes'] = 'Postkassar';
$PALANG['pAdminList_domain_maxquota'] = 'H<>gsta Kvota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'S<><53>st broytt';
$PALANG['pAdminList_domain_active'] = 'Virki';
$PALANG['pAdminList_virtual_button'] = 'Vel';
$PALANG['pAdminList_virtual_welcome'] = 'Yvirlit yvir ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Dulnevni';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Postkassar';
$PALANG['pAdminList_virtual_alias_address'] = 'Fr<46>';
$PALANG['pAdminList_virtual_alias_goto'] = 'Til';
$PALANG['pAdminList_virtual_alias_modified'] = 'S<><53>st broytt';
$PALANG['pAdminList_virtual_mailbox_username'] = 'E-post';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Navn';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Kvota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'S<><53>st broytt';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Virkin';
$PALANG['pAdminCreate_domain_welcome'] = 'Stova n<>tt navna<6E>ki';
$PALANG['pAdminCreate_domain_domain'] = 'Navna<6E>ki';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Navna<6E>ki finst longu!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Fr<46>grei<65>ing';
$PALANG['pAdminCreate_domain_aliases'] = 'Dulnevni';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = <20>virkja | 0 = <20>avmarka<6B>';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Postkassar';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = <20>virkja | 0 = <20>avmarka<6B>';
$PALANG['pAdminCreate_domain_maxquota'] = 'H<>gsta kvota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = <20>virkja | 0 = <20>avmarka<6B>';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Stovna sj<73>lvvirkin e-post dulnevni';
$PALANG['pAdminCreate_domain_backupmx'] = 'Post servari er "backup MX"';
$PALANG['pAdminCreate_domain_button'] = 'Stovna navna<6E>ki';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">F<>i ikki stovna<6E> navna<6E>ki!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Navna<6E>ki er stovna<6E>!';
$PALANG['pAdminEdit_domain_welcome'] = 'Broyt navna<6E>ki';
$PALANG['pAdminEdit_domain_domain'] = 'Navna<6E>ki';
$PALANG['pAdminEdit_domain_description'] = 'Fr<46>grei<65>ing';
$PALANG['pAdminEdit_domain_aliases'] = 'Dulnevni';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = <20>virkja | 0 = <20>avmarka<6B>';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Postkassar';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = <20>virkja | 0 = <20>avmarka<6B>';
$PALANG['pAdminEdit_domain_maxquota'] = 'H<>gsta kvota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = <20>virkja | 0 = <20>avmarka<6B>';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Post servari er "backup MX"';
$PALANG['pAdminEdit_domain_active'] = 'Virki';
$PALANG['pAdminEdit_domain_button'] = 'Broyt navna<6E>ki';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">F<>i ikki broytt navna<6E>ki!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Stovna navna<6E>ki umsitara';
$PALANG['pAdminCreate_admin_username'] = 'Umsitari';
$PALANG['pAdminCreate_admin_username_text'] = 'E-post adressa';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'E-post adressa<br /><span class="error_msg">Umsitari er <20>gyldug e-post adressa!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'E-post adressa<br /><span class="error_msg">Umsitari finst longu ella er <20>gyldugur</span>';
$PALANG['pAdminCreate_admin_password'] = 'Loynior<6F>';
$PALANG['pAdminCreate_admin_password2'] = 'Loynior<6F> (umaftur)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Loynior<6F>ini t<> skriva<76>i samsvara ikki!<br />Ella eru t<>m!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Stovna umsitara';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">F<>i ikki stovna<6E> umsitara!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Umsitari er stovna<6E>ur!';
$PALANG['pAdminCreate_admin_address'] = 'Navna<6E>ki';
$PALANG['pAdminEdit_admin_welcome'] = 'Broyt navna<6E>ki umsitara';
$PALANG['pAdminEdit_admin_username'] = 'Umsitari';
$PALANG['pAdminEdit_admin_password'] = 'Loynior<6F>';
$PALANG['pAdminEdit_admin_password2'] = 'Loynior<6F> (umaftur)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Loynior<6F>ini t<> skriva<76>i samsvara ikki!<br />Ella eru t<>m!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Virkin';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Broyt umsitara';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">F<>i ikki broytt umsitara!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Umsitari er broyttur!';
$PALANG['pUsersLogin_welcome'] = 'Postkassa br<62>karar loggi inn fyri at broyta loynior<6F>, v<><76>arisending ella fr<66>t<EFBFBD><74>arbo<62>.';
$PALANG['pUsersLogin_username'] = 'Login (e-post)';
$PALANG['pUsersLogin_password'] = 'Loynior<6F>';
$PALANG['pUsersLogin_button'] = 'Logga inn';
$PALANG['pUsersLogin_username_incorrect'] = 'T<>tt login er skeivt. Minst til at logga inn vi<76> t<>ni e-post adressu!';
$PALANG['pUsersLogin_password_incorrect'] = 'T<>tt loynior<6F> er skeivt!';
$PALANG['pUsersMenu_vacation'] = 'Fr<46>t<EFBFBD><74>arbo<62>';
$PALANG['pUsersMenu_edit_alias'] = 'Broyt v<><76>arisending';
$PALANG['pUsersMenu_password'] = 'Broyt loynior<6F>';
$PALANG['pUsersMain_vacation'] = 'Set eini fr<66>t<EFBFBD><74>arbo<62> ella svarbo<62> fyri t<>n post.';
$PALANG['pUsersMain_edit_alias'] = 'Send t<>n post v<><76>ari til a<>ra adressu.';
$PALANG['pUsersMain_password'] = 'Broyt t<>tt n<>verandi loynior<6F>.';
$PALANG['pUsersVacation_welcome'] = 'Sj<53>lvvirki<6B> svar.';
$PALANG['pUsersVacation_welcome_text'] = 'T<> hevur longu eini fr<66>t<EFBFBD><74>arbo<62> uppsett!';
$PALANG['pUsersVacation_subject'] = 'Evni';
$PALANG['pUsersVacation_subject_text'] = 'Out of Office';
$PALANG['pUsersVacation_body'] = 'Bo<42>';
$PALANG['pUsersVacation_body_text'] = <<<EOM
I will be away from <dagfesting> until <dagfesting>.
For urgent matters you can contact <firmanavn>.
---
T<EFBFBD>tt navn
EOM;
$PALANG['pUsersVacation_button_away'] = 'Burtur';
$PALANG['pUsersVacation_button_back'] = 'Heima';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">F<>i ikki broytt t<>nar fr<66>t<EFBFBD><74>arbo<62> uppsetingar!</span>';
$PALANG['pUsersVacation_result_succes'] = 'T<>tt fr<66>t<EFBFBD><74>arbo<62> er strika<6B>!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

307
languages/fr.lang Normal file
View File

@@ -0,0 +1,307 @@
<?php
//
// Language file French
// by Kuthz
// updated by Olivier ETIENNE
//
require ('default.lang');
$PALANG['YES'] = 'Oui';
$PALANG['NO'] = 'Non';
$PALANG['edit'] = 'Modifier';
$PALANG['del'] = 'Effacer';
$PALANG['confirm'] = 'Etes vous sur de vouloir supprimer cet enregistrement\n';
$PALANG['confirm_domain'] = 'Etes-vous sur de vouloir effacer tous les enregistrements dans ce domaine ? Cette op<6F>ration ne pourra pas <20>tre annul<75>e.\n';
$PALANG['check_update'] = 'V<>rifiez les mises <20> jour';
$PALANG['pLogin_welcome'] = 'Entrez votre adresse courriel pour administrer votre domaine.';
$PALANG['pLogin_username'] = 'Adresse courriel';
$PALANG['pLogin_password'] = 'Mot de passe';
$PALANG['pLogin_button'] = 'Entrer';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Votre adresse courriel est invalide. Assurez-vous de saisir correctement l\'adresse courriel.</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Votre mot de passe est invalide !</span>';
$PALANG['pLogin_login_users'] = 'Utilisateurs, cliquez ici pour rejoindre votre section.';
$PALANG['pMenu_overview'] = 'Vue d\'ensemble';
$PALANG['pMenu_create_alias'] = 'Ajouter un alias';
$PALANG['pMenu_create_mailbox'] = 'Ajouter un compte courriel';
$PALANG['pMenu_sendmail'] = 'Envoyer un courriel';
$PALANG['pMenu_password'] = 'Mot de passe';
$PALANG['pMenu_viewlog'] = 'Consulter le journal des <20>v<EFBFBD>nements';
$PALANG['pMenu_logout'] = 'Sortir';
$PALANG['pMain_welcome'] = 'Bienvenue sur Postfix Admin!';
$PALANG['pMain_overview'] = 'Visualiser vos alias et comptes courriels. (Modifier/Effacer)';
$PALANG['pMain_create_alias'] = 'Ajouter un nouvel alias <20> votre domaine.';
$PALANG['pMain_create_mailbox'] = 'Ajouter un nouveau compte courriel <20> votre domaine.';
$PALANG['pMain_sendmail'] = 'Envoyer un courriel <20> un de vos nouveaux comptes courriels.';
$PALANG['pMain_password'] = 'Changer votre mot de passe pour le compte administrateur.';
$PALANG['pMain_viewlog'] = 'Visualiser le fichier d\'<27>v<EFBFBD>nements.';
$PALANG['pMain_logout'] = 'Sortir du syst<73>me';
$PALANG['pOverview_disabled'] = 'D<>sactiv<69>';
$PALANG['pOverview_unlimited'] = 'Illimit<69>';
$PALANG['pOverview_title'] = ':: Domaines d<>finis';
$PALANG['pOverview_up_arrow'] = 'Remonter';
$PALANG['pOverview_right_arrow'] = 'Page suivante';
$PALANG['pOverview_left_arrow'] = 'Page pr<70>c<EFBFBD>dente';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Comptes courriels';
$PALANG['pOverview_button'] = 'Aller';
$PALANG['pOverview_welcome'] = 'Vue d\'ensemble pour ';
$PALANG['pOverview_alias_alias_count'] = 'Alias';
$PALANG['pOverview_alias_mailbox_count'] = 'Comptes courriels';
$PALANG['pOverview_alias_address'] = 'De';
$PALANG['pOverview_alias_goto'] = 'A';
$PALANG['pOverview_alias_modified'] = 'Derni<6E>re Modification';
$PALANG['pOverview_mailbox_username'] = 'courriel';
$PALANG['pOverview_mailbox_name'] = 'Nom';
$PALANG['pOverview_mailbox_quota'] = 'Limite (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Derni<6E>re Modification';
$PALANG['pOverview_mailbox_active'] = 'Actif';
$PALANG['pOverview_get_domain'] = 'Domaine';
$PALANG['pOverview_get_aliases'] = 'Alias';
$PALANG['pOverview_get_mailboxes'] = 'Comptes courriels';
$PALANG['pOverview_get_quota'] = 'Limite compte courriels (MB)';
$PALANG['pOverview_get_modified'] = 'Derni<6E>re Modification';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Impossible d\'effacer cette entr<74>e ';
$PALANG['pDelete_postdelete_error'] = '<span class="error_msg">Impossible d\'effacer ce compte courriel';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Ce domaine n\'est pas le votre ';
$PALANG['pCreate_alias_welcome'] = 'Cr<43>er un nouvel alias pour votre domaine.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br><span class="error_msg">Cet ALIAS n\'est pas valide!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br><span class="error_msg">Ce compte courriel existe d<>j<EFBFBD>, choisissez un autre libell<6C> !</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br><span class="error_msg">Vous avez atteint votre limite d\'alias cr<63><72>s !</span>';
$PALANG['pCreate_alias_goto'] = '<27>';
$PALANG['pCreate_alias_button'] = 'Ajouter un alias';
$PALANG['pCreate_alias_goto_text'] = 'Destinataires des courriels.';
$PALANG['pCreate_alias_goto_text_error'] = 'Destinataires des courriels.<br /><span class="error_msg">le champ <20> contient des erreurs!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Impossible d\'ajouter cet alias dans la table !</span>';
$PALANG['pCreate_alias_result_succes'] = 'L\'alias a <20>t<EFBFBD> ajout<75> !';
$PALANG['pCreate_alias_catchall_text'] = 'Pour ajouter un alias global, utilisez "*".<br />Pour un transfert de domaine <20> domaine, utilisez "*@domain.tld" dans le champs A.';
$PALANG['pEdit_alias_welcome'] = 'Modifier un alias dans votre domaine.<br>Une entr<74>e par ligne.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Impossible de localiser l\'alias!</span>';
$PALANG['pEdit_alias_goto'] = '<27>';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Vous devez entrer quelques choses dans le champ <20></span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">L\'adresse courriel que vous avez entr<74> est invalide: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Ce domaine n\'est pas le votre: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Transferer une copie.';
$PALANG['pEdit_alias_forward_only'] = 'Transferer les messages sans conserver de copie.';
$PALANG['pEdit_alias_button'] = 'Modifier cet alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Impossible de modifier cet alias!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Ajouter un nouveau compte courriel <20> votre domaine.';
$PALANG['pCreate_mailbox_username'] = 'Nom d\'utilisateur';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br><span class="error_msg">L\'adresse courriel est invalide!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br><span class="error_msg">Ce compte courriel existe deja ! Entrez une autre adresse courriel !</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br><span class="error_msg">Vous avez atteint le nombre maximum de compte courriel !</span>';
$PALANG['pCreate_mailbox_password'] = 'Mot de passe';
$PALANG['pCreate_mailbox_password2'] = 'Mot de passe (confirmation)';
$PALANG['pCreate_mailbox_password_text'] = 'Mot de passe pour compte POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Mot de passe pour compte POP3/IMAP<br /><span class="error_msg">Les mots de passe ne correspondent pas !<br />ou sont vide !</span>';
$PALANG['pCreate_mailbox_name'] = 'Nom';
$PALANG['pCreate_mailbox_name_text'] = 'Nom complet';
$PALANG['pCreate_mailbox_quota'] = 'Limite';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">La limite que vous avez specifie est trop haute!</span>';
$PALANG['pCreate_mailbox_active'] = 'Actif';
$PALANG['pCreate_mailbox_mail'] = 'Envoyer le message de bienvenue';
$PALANG['pCreate_mailbox_button'] = 'Ajouter le compte courriel';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Impossible d\'ajouter un compte courriel dans la table!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Le compte courriel a <20>t<EFBFBD> ajout<75>!';
$PALANG['pCreate_mailbox_result_succes_nosubfolders'] = 'Le compte courriel a <20>t<EFBFBD> ajout<75> <20> la table, mais un ou plusieurs dossiers pr<70>d<EFBFBD>finis n\'ont pu <20>tre cr<63><72>s !';
$PALANG['pEdit_mailbox_welcome'] = 'Modifier un compte courriel.';
$PALANG['pEdit_mailbox_username'] = 'Nom d\'utilisateur';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Impossible de localiser le compte courriel!</span>';
$PALANG['pEdit_mailbox_password'] = 'Nouveau mot de passe';
$PALANG['pEdit_mailbox_password2'] = 'Nouveau mot de passe (confirmation)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Le mot de passe entr<74> ne correspond pas!</span>';
$PALANG['pEdit_mailbox_name'] = 'Nom';
$PALANG['pEdit_mailbox_quota'] = 'Limite';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">La limite fournit est trop haute!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Ce domaine n\'est pas le votre: ';
$PALANG['pEdit_mailbox_button'] = 'Modifier un compte courriel';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Impossible de modifier le compte courriel !</span>';
$PALANG['pPassword_welcome'] = 'Changer votre mot de passe.';
$PALANG['pPassword_admin'] = 'Entrer';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Les informations entr<74>es ne correspondent pas a un compte courriel!</span>';
$PALANG['pPassword_password_current'] = 'Mot de passe actuel';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Vous n\'avez pas fournit le mot de passe actuel !</span>';
$PALANG['pPassword_password'] = 'Nouveau mot de passe';
$PALANG['pPassword_password2'] = 'Nouveau mot de passe (confirmation)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Le mot de passe fournit ne correspond pas!<br />Ou est vide!</span>';
$PALANG['pPassword_button'] = 'Changer le mot de passe';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Impossible de changer votre mot de passe!</span>';
$PALANG['pPassword_result_succes'] = 'Votre mot de passe a <20>t<EFBFBD> change!';
$PALANG['pViewlog_welcome'] = 'Visualiser les 10 derni<6E>res action pour ';
$PALANG['pViewlog_timestamp'] = 'Date/Heure';
$PALANG['pViewlog_username'] = 'Administrateur';
$PALANG['pViewlog_domain'] = 'Domaine';
$PALANG['pViewlog_action'] = 'Action';
$PALANG['pViewlog_data'] = 'Information';
$PALANG['pViewlog_button'] = 'Aller';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Impossible de trouver le journal des <20>v<EFBFBD>nements!</span>';
$PALANG['pSendmail_welcome'] = 'Envoyer un courriel.';
$PALANG['pSendmail_admin'] = 'De';
$PALANG['pSendmail_to'] = '<27>';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg"><3E> est vide ou ce n\'est pas une adresse courriel valide!</span>';
$PALANG['pSendmail_subject'] = 'Sujet';
$PALANG['pSendmail_subject_text'] = 'Bienvenue';
$PALANG['pSendmail_body'] = 'Message';
$PALANG['pSendmail_button'] = 'Envoyer le message';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Erreur lors de l\'envoit du message!</span>';
$PALANG['pSendmail_result_succes'] = 'Le message a <20>t<EFBFBD> envoy<6F>!';
$PALANG['pAdminMenu_list_admin'] = 'Liste Administrateurs';
$PALANG['pAdminMenu_list_domain'] = 'Liste Domaines';
$PALANG['pAdminMenu_list_virtual'] = 'Liste Virtuels';
$PALANG['pAdminMenu_viewlog'] = 'Visualiser <20>v<EFBFBD>nements';
$PALANG['pAdminMenu_backup'] = 'Sauvegarde';
$PALANG['pAdminMenu_create_domain_admins'] = 'Administrateurs de domaines';
$PALANG['pAdminMenu_create_admin'] = 'Nouvel administrateur';
$PALANG['pAdminMenu_create_domain'] = 'Nouveau domaine';
$PALANG['pAdminMenu_create_alias'] = 'Ajouter un Alias';
$PALANG['pAdminMenu_create_mailbox'] = 'Ajouter un compte courriel';
$PALANG['pAdminList_admin_domain'] = 'Domaine';
$PALANG['pAdminList_admin_username'] = 'Administrateur';
$PALANG['pAdminList_admin_count'] = 'Domaines';
$PALANG['pAdminList_admin_modified'] = 'Derni<6E>re modification';
$PALANG['pAdminList_admin_active'] = 'Actif';
$PALANG['pAdminList_domain_domain'] = 'Domaine';
$PALANG['pAdminList_domain_description'] = 'Description';
$PALANG['pAdminList_domain_aliases'] = 'Alias';
$PALANG['pAdminList_domain_mailboxes'] = 'Comptes courriels';
$PALANG['pAdminList_domain_maxquota'] = 'Limite maximum (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Derni<6E>re modification';
$PALANG['pAdminList_domain_active'] = 'Actif';
$PALANG['pAdminList_virtual_button'] = 'Aller';
$PALANG['pAdminList_virtual_welcome'] = 'Vue g<>n<EFBFBD>rale pour ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Alias';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Comptes courriels';
$PALANG['pAdminList_virtual_alias_address'] = 'De';
$PALANG['pAdminList_virtual_alias_goto'] = '<27>';
$PALANG['pAdminList_virtual_alias_modified'] = 'Derni<6E>re modification';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Adresse courriel';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Nom';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Limite (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Derni<6E>re modification';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Actif';
$PALANG['pAdminCreate_domain_welcome'] = 'Ajouter un nouveau domaine';
$PALANG['pAdminCreate_domain_domain'] = 'Domaine';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Le domaine existe d<>j<EFBFBD>!</span>';
$PALANG['pAdminCreate_domain_domain_text_error2'] = '<span class="error_msg">Le domaine est non valide!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Description';
$PALANG['pAdminCreate_domain_aliases'] = 'Alias';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = d<>sactiv<69> | 0 = illimit<69>';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Comptes courriels';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = d<>sactiv<69> | 0 = illimit<69>';
$PALANG['pAdminCreate_domain_maxquota'] = 'Limite maximum';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = d<>sactiv<69> | 0 = illimit<69>';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Definir le transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Ajouter les alias par d<>faut';
$PALANG['pAdminCreate_domain_backupmx'] = 'Le serveur est un "backup MX"';
$PALANG['pAdminCreate_domain_button'] = 'Ajouter un domaine';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Impossible d\'ajouter le domaine!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Le domaine a <20>t<EFBFBD> ajout<75>!';
$PALANG['pAdminDelete_domain_error'] = '<span class="error_msg">Impossible de supprimer le domain!</span>';
$PALANG['pAdminEdit_domain_welcome'] = 'Modifier un domaine';
$PALANG['pAdminEdit_domain_domain'] = 'Domaine';
$PALANG['pAdminEdit_domain_description'] = 'Description';
$PALANG['pAdminEdit_domain_aliases'] = 'Alias';
$PALANG['pAdminCEdit_domain_aliases_text'] = '-1 = d<>sactiv<69> | 0 = illimit<69>';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Comptes courriels';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = d<>sactiv<69> | 0 = illimit<69>';
$PALANG['pAdminEdit_domain_maxquota'] = 'Limite maximum';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = d<>sactiv<69> | 0 = illimit<69>';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Definir le transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Le serveur est un "backup MX"';
$PALANG['pAdminEdit_domain_active'] = 'Actif';
$PALANG['pAdminEdit_domain_button'] = 'Modifier un domaine';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Impossible de modifier le domain!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Ajouter un nouvel administrateur de domaine';
$PALANG['pAdminCreate_admin_username'] = 'Administrateur';
$PALANG['pAdminCreate_admin_username_text'] = 'adresse courriel';
$PALANG['pAdminCreate_admin_username_text_error1'] = '<span class="error_msg">Ce n\'est pas une adresse courriel administrateur valide!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = '<span class="error_msg">Cet adresse courriel administrateur existe d<>j<EFBFBD> ou n\'est pas valide</span>';
$PALANG['pAdminCreate_admin_password'] = 'Mot de passe';
$PALANG['pAdminCreate_admin_password2'] = 'Mot de passe (confirmation)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Le mot de passe fournit ne correspond pas<br> ou est vide!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Ajouter un administrateur';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Impossible d\'ajouter un administrateur!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'L\'administrateur a <20>t<EFBFBD> ajout<75>!';
$PALANG['pAdminCreate_admin_address'] = 'Domaine';
$PALANG['pAdminEdit_admin_welcome'] = 'Modifier un domaine';
$PALANG['pAdminEdit_admin_username'] = 'Administrateur';
$PALANG['pAdminEdit_admin_password'] = 'Mot de passe';
$PALANG['pAdminEdit_admin_password2'] = 'Mot de passe(confirmation)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Le mot de passe fournit ne correspond pas<br /> ou est vide!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Actif';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super administrateur';
$PALANG['pAdminEdit_admin_button'] = 'Modifier l\administrateur';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Impossible de modifier l\'administrateur !</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'L\'administrateur a <20>t<EFBFBD> ajout<75>!';
$PALANG['pUsersLogin_welcome'] = 'Entrer votre adresse courriel pour modifier votre mot de passe et vos transferts.';
$PALANG['pUsersLogin_username'] = 'Adresse courriel';
$PALANG['pUsersLogin_password'] = 'Mot de passe';
$PALANG['pUsersLogin_button'] = 'Entrer';
$PALANG['pUsersLogin_username_incorrect'] = 'L\'adresse courriel est invalide. Assurez-vous d\'avoir correctement saisie votre adresse courriel!';
$PALANG['pUsersLogin_password_incorrect'] = 'Votre mot de passe est invalide!';
$PALANG['pUsersMenu_vacation'] = 'R<>ponse Automatique';
$PALANG['pUsersMenu_edit_alias'] = 'Modifier votre transfert';
$PALANG['pUsersMenu_password'] = 'Modifier votre mot de passe';
$PALANG['pUsersMain_vacation'] = 'Configurer votre r<>pondeur automatique.';
$PALANG['pUsersMain_edit_alias'] = 'Modifier vos transferts de courriel.';
$PALANG['pUsersMain_password'] = 'Changer votre mot de passe.';
$PALANG['pUsersVacation_welcome'] = 'R<>pondeur Automatique.';
$PALANG['pUsersVacation_welcome_text'] = 'Votre repondeur automatique est d<>j<EFBFBD> configur<75>!';
$PALANG['pUsersVacation_subject'] = 'Sujet';
$PALANG['pUsersVacation_subject_text'] = 'En dehors du bureau';
$PALANG['pUsersVacation_body'] = 'Message';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Je serais absent(e) de <date> jusqu\'au <date>.
Pour urgence communiquez avec mon collegue <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Absence';
$PALANG['pUsersVacation_button_back'] = 'De retour';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Impossible de mettre <20> jour vos param<61>tres de reponse automatique!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Votre reponse automatique a <20>t<EFBFBD> enlev<65>e!';
$PALANG['pCreate_dbLog_createmailbox'] = 'Cr<43>ation de compte';
$PALANG['pCreate_dbLog_createalias'] = 'Cr<43>ation d\'alias';
$PALANG['pDelete_dbLog_deletealias'] = 'Suppression d\'alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'Suppression de compte';
$PALANG['pEdit_dbLog_editactive'] = 'Changement du statut d\'activation';
$PALANG['pEdit_dbLog_editalias'] = 'Modificaton d\'alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'Modification de compte';
$PALANG['pSearch_welcome'] = 'Recherche : ';
?>

297
languages/hr.lang Normal file
View File

@@ -0,0 +1,297 @@
<?php
//
// Language file Croatian
// by Daniel Radetic <drade at boobah dot info>
// Encoding iso-8859-2
//
$PALANG['charset'] = 'iso-8859-2';
$PALANG['YES'] = 'DA';
$PALANG['NO'] = 'NE';
$PALANG['edit'] = 'uredi';
$PALANG['del'] = 'bri<72>i';
$PALANG['confirm'] = 'Da li ste sigurni da <20>elite ovo pobrisati?\n';
$PALANG['confirm_domain'] = 'Da li ste sigurni da <20>elite pobrisati sve zapise za tu domenu? Zapisi ce biti zauvijek pobrisani!\n';
$PALANG['check_update'] = 'Provjeri da li postoji novija ina<6E>ica';
$PALANG['pLogin_welcome'] = 'Administratori prijavite se ovdje.';
$PALANG['pLogin_username'] = 'Korisni<6E>ko ime (adresa e-po<70>te)';
$PALANG['pLogin_password'] = 'Lozinka';
$PALANG['pLogin_button'] = 'Prijavi';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Korisnicko ime nije to<74>no. Morate se prijaviti sa adresom va<76>e e-po<70>te!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Lozinka nije to<74>na!</span>';
$PALANG['pLogin_login_users'] = 'Korisnici kliknite ovdje za prijavu u korisni<6E>ku sekciju.';
$PALANG['pMenu_overview'] = 'Pregled';
$PALANG['pMenu_create_alias'] = 'Dodaj alias';
$PALANG['pMenu_create_mailbox'] = 'Dodaj po<70>tanski ormari<72>';
$PALANG['pMenu_sendmail'] = 'Po<50>lji e-po<70>tu';
$PALANG['pMenu_password'] = 'Lozinka';
$PALANG['pMenu_viewlog'] = 'Pregledaj zapis';
$PALANG['pMenu_logout'] = 'Odjava';
$PALANG['pMain_welcome'] = 'Dobrodo<64>li u Postfix Admin!';
$PALANG['pMain_overview'] = 'Izlistaj aliase i po<70>tanske ormari<72>e. Tu ih mo<6D>ete ure<72>ivati/brisati.';
$PALANG['pMain_create_alias'] = 'Stvori novi alias za domenu.';
$PALANG['pMain_create_mailbox'] = 'Stvori novi po<70>tanski ormari<72> za domenu.';
$PALANG['pMain_sendmail'] = 'Po<50>ali e-po<70>tu u jedan od novostvorenih po<70>tanskih ormari<72>a.';
$PALANG['pMain_password'] = 'Promijeni Administratorsku lozinku.';
$PALANG['pMain_viewlog'] = 'Pogledaj datoteke sa zapisima.';
$PALANG['pMain_logout'] = 'Odjava iz sistema';
$PALANG['pOverview_disabled'] = 'Onesposobljen';
$PALANG['pOverview_unlimited'] = 'Bezgrani<6E>an';
$PALANG['pOverview_title'] = ':: Definirane domene';
$PALANG['pOverview_up_arrow'] = 'Na vrh';
$PALANG['pOverview_right_arrow'] = 'Slijede<64>a stranica';
$PALANG['pOverview_left_arrow'] = 'Prija<6A>nja stranica';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Po<50>tanski ormari<72>i';
$PALANG['pOverview_button'] = 'Idi';
$PALANG['pOverview_welcome'] = 'Pregled za ';
$PALANG['pOverview_alias_alias_count'] = 'Aliasi';
$PALANG['pOverview_alias_mailbox_count'] = 'Po<50>tanski ormari<72>i';
$PALANG['pOverview_alias_address'] = 'Od';
$PALANG['pOverview_alias_goto'] = 'Za';
$PALANG['pOverview_alias_modified'] = 'Zadnja promjena';
$PALANG['pOverview_mailbox_username'] = 'E-po<70>ta';
$PALANG['pOverview_mailbox_name'] = 'Ime';
$PALANG['pOverview_mailbox_quota'] = 'Kvota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Zadnja promjena';
$PALANG['pOverview_mailbox_active'] = 'Aktivan';
$PALANG['pOverview_get_domain'] = 'Domena';
$PALANG['pOverview_get_aliases'] = 'Aliasi';
$PALANG['pOverview_get_mailboxes'] = 'Po<50>tanski ormari<72>i';
$PALANG['pOverview_get_quota'] = 'Kvota za po<70>tanske ormari<72>e (MB)';
$PALANG['pOverview_get_modified'] = 'Zadnja promjena';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Unos nije bilo mogu<67>e izbrisati ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Izabrana domena nije pod va<76>im nadzorom ';
$PALANG['pCreate_alias_welcome'] = 'Stvori novi alias za domenu.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">ALIAS nije valjan!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Ova adresa e-po<70>te ve<76> postoji, molimo izaberite drugu!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Postigli ste maksimalan broj va<76>ih aliasa!</span>';
$PALANG['pCreate_alias_goto'] = 'Za';
$PALANG['pCreate_alias_button'] = 'Dodaj alias';
$PALANG['pCreate_alias_goto_text'] = 'Kuda poslati e-po<70>tu.';
$PALANG['pCreate_alias_goto_text_error'] = 'Gdje e-po<70>ta mora do<64>i.<br /><span class="error_msg">Unos "Za" je nepravilan!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Nije bilo mogu<67>e dodati alias u tablicu aliasa!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Alias je dodan u tablicu aliasa!';
$PALANG['pCreate_alias_catchall_text'] = 'Ukoliko <20>elite stvoriti "sveprimaju<6A>i" alias, upotrijebite "*" umjesto aliasa.<br />Za preusmjeravanje iz domene na domenu, upotrijebite "*@domena.tld" u "Za" polju.';
$PALANG['pEdit_alias_welcome'] = 'Uredi alias za domenu.<br />Jedan unos po liniji.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Alias nije bilo mogu<67>e na<6E>i!</span>';
$PALANG['pEdit_alias_goto'] = 'Za';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">U polje "Za" niste unijeli ni<6E>ta!</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Adresa e-po<70>te, koju ste unijeli nije pravilna: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Izbrana domena nije pod va<76>im nadzorom: ';
$PALANG['pEdit_alias_button'] = 'Uredi alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Alias nije bilo mogu<67>e promjeniti!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Stvori novi po<70>tanski ormari<72> za izbranu domenu.';
$PALANG['pCreate_mailbox_username'] = 'Korisni<6E>ko ime';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">Adresa e-po<70>te nije pravilna!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Ova adresa e-po<70>te ve<76> postoji, molimo izaberite drugu!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Dostigli ste va<76> limit po<70>tanskih ormari<72>a!</span>';
$PALANG['pCreate_mailbox_password'] = 'Lozinka';
$PALANG['pCreate_mailbox_password2'] = 'Lozinka (ponovi)';
$PALANG['pCreate_mailbox_password_text'] = 'Lozinka za POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Lozinka za POP3/IMAP<br /><span class="error_msg">Une<6E>ene lozinke se ne podudaraju<br />ili su prazne!</span>';
$PALANG['pCreate_mailbox_name'] = 'Ime';
$PALANG['pCreate_mailbox_name_text'] = 'Puno ime';
$PALANG['pCreate_mailbox_quota'] = 'Kvota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Une<6E>ena kvota je prevelika!</span>';
$PALANG['pCreate_mailbox_active'] = 'Aktivan';
$PALANG['pCreate_mailbox_mail'] = 'Stvori po<70>tanski ormari<72>';
$PALANG['pCreate_mailbox_button'] = 'Dodaj po<70>tanski ormari<72>';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Po<50>tanski ormari<72> nije mogu<67>e stvoriti!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Po<50>tanski ormari<72> je uspje<6A>no stvoren!';
$PALANG['pEdit_mailbox_welcome'] = 'Uredi po<70>tanski ormari<72> za domenu.';
$PALANG['pEdit_mailbox_username'] = 'Korisni<6E>ko ime';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Po<50>tanski ormari<72> nije bilo mogu<67>e na<6E>i!</span>';
$PALANG['pEdit_mailbox_password'] = 'Nova lozinka';
$PALANG['pEdit_mailbox_password2'] = 'Nova lozinka (ponovi)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Une<6E>ene lozinke se ne podudaraju!</span>';
$PALANG['pEdit_mailbox_name'] = 'Ime';
$PALANG['pEdit_mailbox_quota'] = 'Kvota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Une<6E>ena kvota je prevelika!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Izbrana domena nije pod va<76>im nadzorom: ';
$PALANG['pEdit_mailbox_button'] = 'Uredi po<70>tanski ormari<72>';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Po<50>tanski ormari<72> nije bilo mogu<67>e promjeniti!</span>';
$PALANG['pPassword_welcome'] = 'Promijeni lozinku.';
$PALANG['pPassword_admin'] = 'Korisnicko ime';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Korisni<6E>ko ime se ne podudara sa po<70>tanskim ormari<72>em!</span>';
$PALANG['pPassword_password_current'] = 'Trenuta<74>na lozinka';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Morate unijeti trenuta<74>nu lozinku!</span>';
$PALANG['pPassword_password'] = 'Nova lozinka';
$PALANG['pPassword_password2'] = 'Nova lozinka (ponovi)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Une<6E>ene lozinke se ne podudaraju<br />ili su prazne!</span>';
$PALANG['pPassword_button'] = 'Promijeni lozinku';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Lozinku nije bilo mogu<67>e promijeniti!</span>';
$PALANG['pPassword_result_succes'] = 'Lozinka je uspje<6A>no promijenjena!';
$PALANG['pViewlog_welcome'] = 'Pogledaj zadnjih 10 akcija za ';
$PALANG['pViewlog_timestamp'] = 'Vrijeme';
$PALANG['pViewlog_username'] = 'Administrator';
$PALANG['pViewlog_domain'] = 'Domena';
$PALANG['pViewlog_action'] = 'Akcija';
$PALANG['pViewlog_data'] = 'Podaci';
$PALANG['pViewlog_button'] = 'Idi';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Zapise nije bilo mogu<67>e na<6E>i!</span>';
$PALANG['pSendmail_welcome'] = 'Po<50>lji e-po<70>tu.';
$PALANG['pSendmail_admin'] = 'Od';
$PALANG['pSendmail_to'] = 'Za';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Polje "Za" ne sadr<64>i valjanu adresu e-po<70>te!</span>';
$PALANG['pSendmail_subject'] = 'Subjekt';
$PALANG['pSendmail_subject_text'] = 'Dobrodo<64>li!';
$PALANG['pSendmail_body'] = 'Tekst';
$PALANG['pSendmail_button'] = 'Po<50>alji poruku';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Po<50>tanski ormari<72> nije bilo mogu<67>e stvoriti!</span>';
$PALANG['pSendmail_result_succes'] = 'Po<50>tanski ormari<72> je uspje<6A>no stvoren!';
$PALANG['pAdminMenu_list_admin'] = 'Lista administratora';
$PALANG['pAdminMenu_list_domain'] = 'Lista domena';
$PALANG['pAdminMenu_list_virtual'] = 'Lista aliasa in po<70>tanskih ormari<72>a';
$PALANG['pAdminMenu_viewlog'] = 'Pregled zapisa';
$PALANG['pAdminMenu_backup'] = 'Arhiviraj';
$PALANG['pAdminMenu_create_domain_admins'] = 'Domenski administratori';
$PALANG['pAdminMenu_create_admin'] = 'Novi administrator';
$PALANG['pAdminMenu_create_domain'] = 'Nova domena';
$PALANG['pAdminMenu_create_alias'] = 'Dodaj alias';
$PALANG['pAdminMenu_create_mailbox'] = 'Dodaj po<70>tanski ormari<72>';
$PALANG['pAdminList_admin_domain'] = 'Domena';
$PALANG['pAdminList_admin_username'] = 'Administrator';
$PALANG['pAdminList_admin_count'] = 'Domene';
$PALANG['pAdminList_admin_modified'] = 'Zadnja promjena';
$PALANG['pAdminList_admin_active'] = 'Aktivan';
$PALANG['pAdminList_domain_domain'] = 'Domena';
$PALANG['pAdminList_domain_description'] = 'Opis';
$PALANG['pAdminList_domain_aliases'] = 'Aliasi';
$PALANG['pAdminList_domain_mailboxes'] = 'Po<50>tanski ormari<72>i';
$PALANG['pAdminList_domain_maxquota'] = 'Maksimalna kvota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Zadnja promjena';
$PALANG['pAdminList_domain_active'] = 'Aktivan';
$PALANG['pAdminList_virtual_button'] = 'Idi';
$PALANG['pAdminList_virtual_welcome'] = 'Pregled za: ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliasi';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Po<50>tanski ormari<72>i';
$PALANG['pAdminList_virtual_alias_address'] = 'Od';
$PALANG['pAdminList_virtual_alias_goto'] = 'Za';
$PALANG['pAdminList_virtual_alias_modified'] = 'Zadnja promjena';
$PALANG['pAdminList_virtual_mailbox_username'] = 'E-po<70>ta';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Ime';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Kvota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Zadnja promjena';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Aktivan';
$PALANG['pAdminCreate_domain_welcome'] = 'Dodaj novu domenu';
$PALANG['pAdminCreate_domain_domain'] = 'Domena';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Une<6E>ena domena ve<76> postoji!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Opis';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliasi';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = onemogu<67>i | 0 = bezgrani<6E>no';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Po<50>tanski ormari<72>i';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = onemogu<67>i | 0 = bezgrani<6E>no';
$PALANG['pAdminCreate_domain_maxquota'] = 'Maksimalna kvota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = onemogu<67>i | 0 = bezgrani<6E>no';
$PALANG['pAdminCreate_domain_transport'] = 'Prijenos';
$PALANG['pAdminCreate_domain_transport_text'] = 'Definiraj prijenos';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Dodaj default aliase';
$PALANG['pAdminCreate_domain_backupmx'] = 'Poslu<6C>itelj e-po<70>te je sekundarni MX';
$PALANG['pAdminCreate_domain_button'] = 'Dodaj domenu';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Domenu nije bilo mogu<67>e dodati!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Domena je bila uspje<6A>no dodana!';
$PALANG['pAdminEdit_domain_welcome'] = 'Uredi domenu';
$PALANG['pAdminEdit_domain_domain'] = 'Domena';
$PALANG['pAdminEdit_domain_description'] = 'Opis';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliasi';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = onemogu<67>i | 0 = bezgrani<6E>no';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Po<50>tanski ormari<72>i';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = onemogu<67>i | 0 = bezgrani<6E>no';
$PALANG['pAdminEdit_domain_maxquota'] = 'Maksimalna kvota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = onemogu<67>i | 0 = bezgrani<6E>no';
$PALANG['pAdminEdit_domain_transport'] = 'Prijenos';
$PALANG['pAdminEdit_domain_transport_text'] = 'Definiraj prijenos';
$PALANG['pAdminEdit_domain_backupmx'] = 'Poslu<6C>itelj e-po<70>te je sekundarni MX';
$PALANG['pAdminEdit_domain_active'] = 'Aktivan';
$PALANG['pAdminEdit_domain_button'] = 'Uredi domenu';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Domenu nije bilo mogu<67>e premeniti!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Dodaj administratora domene';
$PALANG['pAdminCreate_admin_username'] = 'Administrator';
$PALANG['pAdminCreate_admin_username_text'] = 'Adresa e-po<70>te';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'Adresa e-po<70>te<br /><span class="error_msg">Administrator nije valjana adresa e-po<70>te!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'Adresa e-po<70>te<br /><span class="error_msg">Adminstrator ve<76> postoji ili nije valjan</span>';
$PALANG['pAdminCreate_admin_password'] = 'Lozinka';
$PALANG['pAdminCreate_admin_password2'] = 'Lozinka (ponovi)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Une<6E>ene lozinke se ne podudaraju<br />ili su prazne!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Dodaj administratora';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Administratora nije bilo mogu<67>e dodati!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Admininstrator je uspje<6A>no dodan';
$PALANG['pAdminCreate_admin_address'] = 'Domena';
$PALANG['pAdminEdit_admin_welcome'] = 'Uredi administratora domene';
$PALANG['pAdminEdit_admin_username'] = 'Administrator';
$PALANG['pAdminEdit_admin_password'] = 'Lozinka';
$PALANG['pAdminEdit_admin_password2'] = 'Lozinka (ponovi)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Une<6E>ene lozinke se ne podudaraju<br />ili su prazne!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Aktivan';
$PALANG['pAdminEdit_admin_button'] = 'Uredi Administratora';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Administratora nije bilo mogu<67>e promjeniti!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Admininstrator je uspje<6A>no promjenjen!';
$PALANG['pUsersLogin_welcome'] = 'Korisnici po<70>tanskih ormari<72>a ukoliko <20>elite promjeniti lozinku ili aliase.';
$PALANG['pUsersLogin_username'] = 'Prijava (adresa e-po<70>te)';
$PALANG['pUsersLogin_password'] = 'Lozinka';
$PALANG['pUsersLogin_button'] = 'Prijava';
$PALANG['pUsersLogin_username_incorrect'] = 'Korisni<6E>ko ime nije pravilno! Morate upotrijebiti adresu va<76>e e-po<70>te!';
$PALANG['pUsersLogin_password_incorrect'] = 'Lozinka nije pravilna!';
$PALANG['pUsersMenu_vacation'] = 'Obavijest o odsutnosti';
$PALANG['pUsersMenu_edit_alias'] = 'Promijeni preusmjerenje';
$PALANG['pUsersMenu_password'] = 'Promijeni lozinku';
$PALANG['pUsersMain_vacation'] = 'Promijenite obvijest o odsutnosti.';
$PALANG['pUsersMain_edit_alias'] = 'Promijenite preusmjerenje na drugu adresu e-po<70>te.';
$PALANG['pUsersMain_password'] = 'Promijenite lozinku.';
$PALANG['pUsersVacation_welcome'] = 'Ovdje mo<6D>ete promijeniti obvijest o odsutnosti.';
$PALANG['pUsersVacation_welcome_text'] = 'Obvijest o odsutnosti je ve<76> postavljena!';
$PALANG['pUsersVacation_subject'] = 'Subjekt';
$PALANG['pUsersVacation_subject_text'] = 'Odsutnost';
$PALANG['pUsersVacation_body'] = 'Tekst';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Od <datum> do <datum> sam odsutan.
Za hitne stvari molim vas da kontaktirate <kontaktna osoba>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Uklju<6A>i odsutnost';
$PALANG['pUsersVacation_button_back'] = 'Isklju<6A>i odsutnost';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Nemogu<67>e promijeniti va<76>e postavke o odsutnosti!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Obvijest o odsutnosti je uklonjena!';
$PALANG['pCreate_dbLog_createmailbox'] = 'stvori po<70>tanski ormari<72>';
$PALANG['pCreate_dbLog_createalias'] = 'stvori alias';
$PALANG['pDelete_dbLog_deletealias'] = 'pobri<72>i alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'pobri<72>i po<70>tanski ormari<72>';
$PALANG['pEdit_dbLog_editactive'] = 'promijeni stanje aktivnosti';
$PALANG['pEdit_dbLog_editalias'] = 'uredi alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'uredi po<70>tanski oramri<72>';
$PALANG['pSearch_welcome'] = 'Tra<72>i: ';
?>

303
languages/hu.lang Normal file
View File

@@ -0,0 +1,303 @@
<?php
//
// Language file Hungarian
// by Christian Hamar <krics at linuxforum dot hu>
//
require ('default.lang');
$PALANG['YES'] = 'IGEN';
$PALANG['NO'] = 'NEM';
$PALANG['edit'] = 'szerkeszt';
$PALANG['del'] = 't<>r<EFBFBD>l';
$PALANG['confirm'] = 'Biztos vagy benne hogy t<>rl<72>d ezt?\n';
$PALANG['confirm_domain'] = 'Biztos hogy t<>r<EFBFBD>lni akarod az <20>sszes bejegyz<79>st ez al<61>l a domain al<61>l? Nem lehet visszahozni k<>s<EFBFBD>bb!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Mail admins login here to administrate your domain.';
$PALANG['pLogin_username'] = 'Login (email)';
$PALANG['pLogin_password'] = 'Jelsz<73>';
$PALANG['pLogin_button'] = 'Bejelentkez<65>s';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">A bejelentkez<65>s <20>rv<72>nytelen. Biztos, hogy a saj<61>t email c<>meddel akarsz bel<65>pni?!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Nem j<> a jelsz<73>!</span>';
$PALANG['pLogin_login_users'] = 'A felhaszn<7A>l<EFBFBD>k kattintsanak ide a felhaszn<7A>l<EFBFBD>i fel<65>lethez.';
$PALANG['pMenu_overview'] = '<27>ttekint<6E>s';
$PALANG['pMenu_create_alias'] = 'Alias felv<6C>tele';
$PALANG['pMenu_create_mailbox'] = 'Felhaszn<7A>l<EFBFBD> felv<6C>tele';
$PALANG['pMenu_sendmail'] = 'Email k<>ld<6C>se';
$PALANG['pMenu_password'] = 'Jelsz<73>';
$PALANG['pMenu_viewlog'] = 'Napl<70> megtekint<6E>se';
$PALANG['pMenu_logout'] = 'Kil<69>p<EFBFBD>s';
$PALANG['pMain_welcome'] = '<27>dv<64>z<EFBFBD>llek a Postfix Adminisztr<74>ci<63>s rendszerben!';
$PALANG['pMain_overview'] = 'List<73>zd az alias-okat <20>s a postafi<66>kokat. Innen tudod <20>ket t<>r<EFBFBD>lni / m<>dos<6F>tani.';
$PALANG['pMain_create_alias'] = '<27>j alias k<>sz<73>t<EFBFBD>se az adott domainhez.';
$PALANG['pMain_create_mailbox'] = '<27>j felhaszn<7A>l<EFBFBD> felv<6C>tele az adott domainhez.';
$PALANG['pMain_sendmail'] = 'K<>ldj<64>n a rendszer emailt minden egyes <20>j felhaszn<7A>l<EFBFBD>nak.';
$PALANG['pMain_password'] = 'Admin jelsz<73> megv<67>ltoztat<61>sa.';
$PALANG['pMain_viewlog'] = 'Napl<70>f<EFBFBD>jlok megtekint<6E>se.';
$PALANG['pMain_logout'] = 'Kijelentkez<65>s a rendszerb<72>l';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Gyer<65>nk';
$PALANG['pOverview_welcome'] = '<27>ttekint<6E>s: ';
$PALANG['pOverview_alias_alias_count'] = 'Alias-ok';
$PALANG['pOverview_alias_mailbox_count'] = 'Postafi<66>kok';
$PALANG['pOverview_alias_address'] = 'Honnan';
$PALANG['pOverview_alias_goto'] = 'Hova';
$PALANG['pOverview_alias_modified'] = 'Utols<6C> m<>dos<6F>t<EFBFBD>s';
$PALANG['pOverview_mailbox_username'] = 'Email';
$PALANG['pOverview_mailbox_name'] = 'N<>v';
$PALANG['pOverview_mailbox_quota'] = 'Quota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Utols<6C> m<>dos<6F>t<EFBFBD>s';
$PALANG['pOverview_mailbox_active'] = 'Akt<6B>v';
$PALANG['pOverview_get_domain'] = 'Domain';
$PALANG['pOverview_get_aliases'] = 'Alias-ok';
$PALANG['pOverview_get_mailboxes'] = 'Postafi<66>kok';
$PALANG['pOverview_get_quota'] = 'Postafi<66>k Quota (MB)';
$PALANG['pOverview_get_modified'] = 'Utols<6C> m<>dos<6F>t<EFBFBD>s';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Nem siker<65>lt t<>r<EFBFBD>lni a bejegyz<79>st ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Ehhez a domainhez nincs jogosults<74>god ';
$PALANG['pCreate_alias_welcome'] = '<27>j alias k<>sz<73>t<EFBFBD>se az adott domainhez';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">Az ALIAS <20>rv<72>nytelen!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Ez az email c<>m m<>r l<>tezik, k<>rlek v<>lassz m<>sikat!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">El<45>rted a maxim<69>lis alias limitet!</span>';
$PALANG['pCreate_alias_goto'] = 'Hova';
$PALANG['pCreate_alias_button'] = 'Alias felv<6C>tele';
$PALANG['pCreate_alias_goto_text'] = 'Ahova a lev<65>lnek mennie kell.';
$PALANG['pCreate_alias_goto_text_error'] = 'Ahova a lev<65>lnek mennie kell.<br /><span class="error_msg"><3E>rv<72>nytelen a HOVA mez<65>!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Nemsiker<65>lt hozz<7A>adni az aliast az alias t<>bl<62>hoz!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Az aliast felvett<74>k az alias t<>bl<62>ba!';
$PALANG['pCreate_alias_catchall_text'] = 'A catch-all (*@valami.hu) be<62>ll<6C>t<EFBFBD>s<EFBFBD>hoz haszn<7A>lj "*" -ot az alias mez<65>n<EFBFBD>l.<br />A domain-domain k<>z<EFBFBD>tti <20>tir<69>ny<6E>t<EFBFBD>shoz haszn<7A>ld a "*@akarmi.hu" c<>met.';
$PALANG['pEdit_alias_welcome'] = 'Alias szerkeszt<7A>se a domainhez.<br />Soronk<6E>nt egy.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Nemsiker<65>lt megtal<61>lni az aliast!</span>';
$PALANG['pEdit_alias_goto'] = 'Hova';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Nem <20>rt<72>l semmit a \'Hova\' mez<65>be</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Az email c<>m amit be<62>rt<72>l <20>rv<72>nytelen: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Ehhez a domainhez nincs jogosults<74>god: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Alias szerkeszt<7A>se';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Nemsiker<65>lt m<>dos<6F>tani az Aliast!</span>';
$PALANG['pCreate_mailbox_welcome'] = '<27>j postafi<66>k l<>trehoz<6F>sa az adott domainhez.';
$PALANG['pCreate_mailbox_username'] = 'Felhaszn<7A>l<EFBFBD>n<EFBFBD>v';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg"><3E>rv<72>nytelen EMAIL !</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Ez az email c<>m m<>r l<>tezik, k<>rlek v<>lassz m<>sikat!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">El<45>rted a maxim<69>lis postafi<66>k sz<73>mot!</span>';
$PALANG['pCreate_mailbox_password'] = 'Jelsz<73>';
$PALANG['pCreate_mailbox_password2'] = 'Jelsz<73> (m<>gegyszer)';
$PALANG['pCreate_mailbox_password_text'] = 'Jelsz<73> a POP3/IMAP -hoz';
$PALANG['pCreate_mailbox_password_text_error'] = 'Jelsz<73> a POP3/IMAP -hoz<br /><span class="error_msg">A jelszavak amiket megadt<64>l nem egyeznek!<br />Vagy <20>resek!</span>';
$PALANG['pCreate_mailbox_name'] = 'N<>v';
$PALANG['pCreate_mailbox_name_text'] = 'Teljes n<>v';
$PALANG['pCreate_mailbox_quota'] = 'Quota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">T<>l magas quota <20>rt<72>ket adt<64>l meg!</span>';
$PALANG['pCreate_mailbox_active'] = 'Akt<6B>v';
$PALANG['pCreate_mailbox_mail'] = 'Postafi<66>k l<>trehoz<6F>sa';
$PALANG['pCreate_mailbox_button'] = 'Postafi<66>k l<>trehoz<6F>sa';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Nemsiker<65>lt a postafi<66>kot felvenni a mailbox adatb<74>zis t<>bl<62>ba!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'A postafi<66>kot sikeresen felvett<74>k a mailbox adatb<74>zis t<>bl<62>ba!';
$PALANG['pEdit_mailbox_welcome'] = 'Postafi<66>k szerkeszt<7A>se az adott domainhez.';
$PALANG['pEdit_mailbox_username'] = 'Felhaszn<7A>l<EFBFBD>n<EFBFBD>v';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Nem siker<65>lt megtal<61>lni a postafi<66>kot!</span>';
$PALANG['pEdit_mailbox_password'] = '<27>j jelsz<73>';
$PALANG['pEdit_mailbox_password2'] = '<27>j jelsz<73> (m<>gegyszer)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">A be<62>rt jelszavak nem egyeznek!</span>';
$PALANG['pEdit_mailbox_name'] = 'N<>v';
$PALANG['pEdit_mailbox_quota'] = 'Quota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">A megadott quota <20>rt<72>k t<>l magas!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Ehhez a domainhez nincs jogosults<74>god: ';
$PALANG['pEdit_mailbox_button'] = 'Postafi<66>k szerkeszt<7A>se';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Nemsiker<65>lt megv<67>ltoztatni a jelsz<73>t!</span>';
$PALANG['pPassword_welcome'] = 'Bejelentkez<65>si jelsz<73> megv<67>ltoztat<61>sa';
$PALANG['pPassword_admin'] = 'Login';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">A LOGIN amit megadt<64>l egyetlen postafi<66>kkal sem egyezik!</span>';
$PALANG['pPassword_password_current'] = 'R<>gi jelsz<73>';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Nem adtad meg a r<>gi jelszavadat!</span>';
$PALANG['pPassword_password'] = '<27>j jelsz<73>';
$PALANG['pPassword_password2'] = '<27>j jelsz<73> (m<>gegyszer)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">A jelszavak amiket megadt<64>l nem egyeznek!<br />Vagy <20>resek!</span>';
$PALANG['pPassword_button'] = 'Jelsz<73> megv<67>ltoztat<61>sa';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Nemsiker<65>lt megv<67>ltoztatni a jelszavad!</span>';
$PALANG['pPassword_result_succes'] = 'A jelszavad megv<67>ltozott!';
$PALANG['pViewlog_welcome'] = 'Az utols<6C> 10 esem<65>ny megtekint<6E>se: ';
$PALANG['pViewlog_timestamp'] = 'Id<49>b<EFBFBD>lyeg';
$PALANG['pViewlog_username'] = 'Admin';
$PALANG['pViewlog_domain'] = 'Domain';
$PALANG['pViewlog_action'] = 'Akci<63>';
$PALANG['pViewlog_data'] = 'Adat';
$PALANG['pViewlog_button'] = 'Gyer<65>nk';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Nemsiker<65>lt megtal<61>lni a napl<70> f<>jlokat!</span>';
$PALANG['pSendmail_welcome'] = 'Email k<>ld<6C>se.';
$PALANG['pSendmail_admin'] = 'Felad<61>';
$PALANG['pSendmail_to'] = 'C<>mzett';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Ez egy <20>res, vagy nem megfelel<65> email c<>m!</span>';
$PALANG['pSendmail_subject'] = 'T<>rgy';
$PALANG['pSendmail_subject_text'] = 'Postafi<66>kja sikeresen elk<6C>sz<73>lt!';
$PALANG['pSendmail_body'] = '<27>zenet';
$PALANG['pSendmail_button'] = '<27>zenet k<>ld<6C>se';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Postafi<66>k l<>trehoz<6F>sa sikertelen!</span>';
$PALANG['pSendmail_result_succes'] = 'A postafi<66>k sikeresen elk<6C>sz<73>lt!';
$PALANG['pAdminMenu_list_admin'] = 'Admin Lista';
$PALANG['pAdminMenu_list_domain'] = 'Domain Lista';
$PALANG['pAdminMenu_list_virtual'] = 'Postafi<66>k Lista';
$PALANG['pAdminMenu_viewlog'] = 'Napl<70>';
$PALANG['pAdminMenu_backup'] = 'Adatb<74>zis ment<6E>s';
$PALANG['pAdminMenu_create_domain_admins'] = 'Domain Adminok';
$PALANG['pAdminMenu_create_admin'] = '<27>j Admin';
$PALANG['pAdminMenu_create_domain'] = '<27>j Domain';
$PALANG['pAdminMenu_create_alias'] = '<27>j Alias';
$PALANG['pAdminMenu_create_mailbox'] = '<27>j Postafi<66>k';
$PALANG['pAdminList_admin_domain'] = 'Domain';
$PALANG['pAdminList_admin_username'] = 'Admin';
$PALANG['pAdminList_admin_count'] = 'Domain-ek';
$PALANG['pAdminList_admin_modified'] = 'Utols<6C> m<>dos<6F>t<EFBFBD>s';
$PALANG['pAdminList_admin_active'] = 'Akt<6B>v';
$PALANG['pAdminList_domain_domain'] = 'Domain';
$PALANG['pAdminList_domain_description'] = 'Le<4C>r<EFBFBD>s';
$PALANG['pAdminList_domain_aliases'] = 'Alias-ok';
$PALANG['pAdminList_domain_mailboxes'] = 'Postafi<66>kok';
$PALANG['pAdminList_domain_maxquota'] = 'Max Quota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Utols<6C> m<>dos<6F>t<EFBFBD>s';
$PALANG['pAdminList_domain_active'] = 'Akt<6B>v';
$PALANG['pAdminList_virtual_button'] = 'Tov<6F>bb';
$PALANG['pAdminList_virtual_welcome'] = '<27>ttekint<6E>s: ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Alias-ok';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Postafi<66>kok';
$PALANG['pAdminList_virtual_alias_address'] = 'Honnan';
$PALANG['pAdminList_virtual_alias_goto'] = 'Hova';
$PALANG['pAdminList_virtual_alias_modified'] = 'Utols<6C> m<>dos<6F>t<EFBFBD>s';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Email';
$PALANG['pAdminList_virtual_mailbox_name'] = 'N<>v';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Quota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Utols<6C> m<>dos<6F>t<EFBFBD>s';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Akt<6B>v';
$PALANG['pAdminCreate_domain_welcome'] = '<27>j domain felv<6C>tele';
$PALANG['pAdminCreate_domain_domain'] = 'Domain';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">A domain m<>r l<>tezik!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Le<4C>r<EFBFBD>s';
$PALANG['pAdminCreate_domain_aliases'] = 'Alias-ok';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = kikapcsol | 0 = v<>gtelen';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Postafi<66>kok';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = kikapcsol | 0 = v<>gtelen';
$PALANG['pAdminCreate_domain_maxquota'] = 'Max Quota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = kikapcsol | 0 = v<>gtelen';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Alap<61>rtelmezett alias-ok hozz<7A>ad<61>sa';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Domain felv<6C>tele';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">A domain felv<6C>tele sikertelen!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'A domain-t felvett<74>k az adatb<74>zisba!';
$PALANG['pAdminEdit_domain_welcome'] = 'Domain szerkeszt<7A>se';
$PALANG['pAdminEdit_domain_domain'] = 'Domain';
$PALANG['pAdminEdit_domain_description'] = 'Le<4C>r<EFBFBD>s';
$PALANG['pAdminEdit_domain_aliases'] = 'Alias-ok';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = kikapcsol | 0 = v<>gtelen';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Postafi<66>kok';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = kikapcsol | 0 = v<>gtelen';
$PALANG['pAdminEdit_domain_maxquota'] = 'Max Quota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = kikapcsol | 0 = v<>gtelen';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Akt<6B>v';
$PALANG['pAdminEdit_domain_button'] = 'Domain szerkeszt<7A>se';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">A domain m<>dos<6F>t<EFBFBD>sa sikertelen!</span>';
$PALANG['pAdminCreate_admin_welcome'] = '<27>j domain admin felv<6C>tele';
$PALANG['pAdminCreate_admin_username'] = 'Admin';
$PALANG['pAdminCreate_admin_username_text'] = 'Email c<>m';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'Email c<>m<br /><span class="error_msg">Az Admin nem val<61>s email c<>m!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'Email c<>m<br /><span class="error_msg">Az Admin m<>r l<>tezik, vagy nem val<61>s a c<>m!</span>';
$PALANG['pAdminCreate_admin_password'] = 'Jelsz<73>';
$PALANG['pAdminCreate_admin_password2'] = 'Jelsz<73> (m<>gegyszer)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">A be<62>rt jelszavak nem egyeznek!<br />Vagy <20>resek!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Admin felv<6C>tele';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Nemsiker<65>lt az Admint felvenni!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Az Admin sikeresen beker<65>lt az adatb<74>zisba!';
$PALANG['pAdminCreate_admin_address'] = 'Domain';
$PALANG['pAdminEdit_admin_welcome'] = 'Domain admin szerkeszt<7A>se';
$PALANG['pAdminEdit_admin_username'] = 'Admin';
$PALANG['pAdminEdit_admin_password'] = 'Jelsz<73>';
$PALANG['pAdminEdit_admin_password2'] = 'Jelsz<73> (m<>gegyszer)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">A be<62>rt jelszavak nem egyeznek!<br />Vagy <20>resek!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Akt<6B>v';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Admin szerkeszt<7A>se';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Nemsiker<65>lt m<>dos<6F>tani az admint!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Az Admin m<>dos<6F>t<EFBFBD>sa megt<67>rt<72>nt!';
$PALANG['pUsersLogin_welcome'] = 'A felhaszn<7A>l<EFBFBD>k ezen a fel<65>leten tudnak bejelentkezni a levelez<65> rendszerbe a saj<61>t<br>felhaszn<7A>l<EFBFBD> nev<65>kkel (azaz email c<>m<EFBFBD>kkel) <20>s itt tudj<64>k megv<67>ltoztatni az aliasokat, stb..';
$PALANG['pUsersLogin_username'] = 'Login (email)';
$PALANG['pUsersLogin_password'] = 'Jelsz<73>';
$PALANG['pUsersLogin_button'] = 'Login';
$PALANG['pUsersLogin_username_incorrect'] = 'Nem megfelel<65> a Login (email) c<>m! K<>rlek pontos<6F>tsd!';
$PALANG['pUsersLogin_password_incorrect'] = 'Nem megfelel<65> a jelszavad!';
$PALANG['pUsersMenu_vacation'] = 'Automatikus V<>lasz';
$PALANG['pUsersMenu_edit_alias'] = '<27>tir<69>ny<6E>t<EFBFBD>s be<62>ll<6C>t<EFBFBD>sa';
$PALANG['pUsersMenu_password'] = 'Jelsz<73> megv<67>ltoztat<61>sa';
$PALANG['pUsersMain_vacation'] = 'Itt lehet be<62>ll<6C>tani az automatikus v<>lasz lev<65>l sz<73>veg<65>t, ha az ember t<>vol van.';
$PALANG['pUsersMain_edit_alias'] = 'Email <20>tir<69>ny<6E>t<EFBFBD>s be<62>ll<6C>t<EFBFBD>sa.';
$PALANG['pUsersMain_password'] = 'Jelenlegi jelsz<73> megv<67>ltoztat<61>sa.';
$PALANG['pUsersVacation_welcome'] = 'Automatikus v<>lasz.';
$PALANG['pUsersVacation_welcome_text'] = 'M<>r van be <20>ll<6C>tva automatikus v<>lasz !';
$PALANG['pUsersVacation_subject'] = 'T<>rgy';
$PALANG['pUsersVacation_subject_text'] = 'Sajn<6A>lom, de jelenleg nem vagyok email k<>zelben!';
$PALANG['pUsersVacation_body'] = '<27>zenet';
$PALANG['pUsersVacation_body_text'] = <<<EOM
<EFBFBD>dv<EFBFBD>zl<EFBFBD>m. Sajn<6A>lom de jelenleg nem vagyok email k<>zelben.
Ett<EFBFBD>l - Eddig.
Ez egy automatikus <20>zenet.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Automatikus v<>laszad<61>s bekapcsol<6F>sa';
$PALANG['pUsersVacation_button_back'] = 'Automatikus v<>laszad<61>s kikapcsol<6F>sa';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Nem siker<65>lt megv<67>ltoztatni az automatikus v<>lasz konfigur<75>ci<63>dat!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Az automatikus v<>laszad<61>s sikeresen kikapcsolva!';
$PALANG['pCreate_dbLog_createmailbox'] = 'postafi<66>k l<>trehoz<6F>sa';
$PALANG['pCreate_dbLog_createalias'] = 'alias l<>trehoz<6F>sa';
$PALANG['pDelete_dbLog_deletealias'] = 'alias t<>rl<72>se';
$PALANG['pDelete_dbLog_deletemailbox'] = 'postafi<66>k t<>rl<72>se';
$PALANG['pEdit_dbLog_editactive'] = 'akt<6B>v st<73>tusz megv<67>ltoztat<61>sa';
$PALANG['pEdit_dbLog_editalias'] = 'alias szerkeszt<7A>se';
$PALANG['pEdit_dbLog_editmailbox'] = 'postafi<66>k szerkeszt<7A>se';
$PALANG['pSearch_welcome'] = 'Keresend<6E> kulcssz<73>: ';
?>

22
languages/index.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: index.php
//
// Template File: -none-
//
// Template Variables:
//
// -none-
//
// Form POST \ GET Variables:
//
// -none-
//
header ("Location: ../login.php");
exit;
?>

300
languages/is.lang Normal file
View File

@@ -0,0 +1,300 @@
<?php
//
// Language file Icelandic
// by Gestur
//
require ('default.lang');
$PALANG['YES'] = 'J<>';
$PALANG['NO'] = 'NEI';
$PALANG['edit'] = 'skrifa <20>';
$PALANG['del'] = 'ey<65>a';
$PALANG['confirm'] = 'Ertu viss um a<> <20><> viljir ey<65>a <20>essu?\n';
$PALANG['confirm_domain'] = 'Ertu viss um a<> <20><> viljir ey<65>a <20>llu sem tengist <20>essu l<>ni? <20>a<EFBFBD> er ekki h<>gt a<> bakka me<6D> a<>ger<65>ina!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'P<>st kerfisstj<74>ri tengist h<>r til a<> vi<76>halda p<>stkerfi l<>nsins <20>ins.';
$PALANG['pLogin_username'] = 'Au<41>kenni(email)';
$PALANG['pLogin_password'] = 'Lykilor<6F>';
$PALANG['pLogin_button'] = 'Tengjast';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Au<41>kenni <20>itt er rangt, ath hvort <20><> hafir slegi<67> <20>a<EFBFBD> rangt inn og pr<70>fa<66>u aftur, ath nota<74>u fullt email til a<> tengjas!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Lykilor<6F>i<EFBFBD> var rangt!</span>';
$PALANG['pLogin_login_users'] = 'Notendur smelli<6C> h<>r til a<> opna almennt notendavi<76>m<EFBFBD>t.';
$PALANG['pMenu_overview'] = 'Yfirlit';
$PALANG['pMenu_create_alias'] = 'B<>ta vi<76> alias';
$PALANG['pMenu_create_mailbox'] = 'B<>ta vi<76> p<>sth<74>lf';
$PALANG['pMenu_sendmail'] = 'Senda Email';
$PALANG['pMenu_password'] = 'Lykilor<6F>';
$PALANG['pMenu_viewlog'] = 'Sko<6B>a Log';
$PALANG['pMenu_logout'] = 'Aftengjast';
$PALANG['pMain_welcome'] = 'Velkomin <20> Postfix Kerfist<73>lin!';
$PALANG['pMain_overview'] = 'Lista <20>t aliasa og p<>stf<74>ng. <20><> getur breytt / eytt og laga<67> h<>rna.';
$PALANG['pMain_create_alias'] = 'Stofna n<>jan alias fyrir l<>ni<6E> <20>itt.';
$PALANG['pMain_create_mailbox'] = 'Stofna n<>tt p<>stfang fyrir l<>ni<6E> <20>itt.';
$PALANG['pMain_sendmail'] = 'Senda t<>lvup<75>st til eins af n<>ju p<>sth<74>lfin.';
$PALANG['pMain_password'] = 'Breyta lykilor<6F>inu fyrir kerfisstj<74>ra a<>ganginn.';
$PALANG['pMain_viewlog'] = 'Sko<6B>a log skr<6B>rnar.';
$PALANG['pMain_logout'] = 'Aftengjast fr<66> kerfinu';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = '<27>fram';
$PALANG['pOverview_welcome'] = 'Yfirlit fyrir ';
$PALANG['pOverview_alias_alias_count'] = 'Aliasar';
$PALANG['pOverview_alias_mailbox_count'] = 'P<>sth<74>lf';
$PALANG['pOverview_alias_address'] = 'P<>stur fyrir';
$PALANG['pOverview_alias_goto'] = '<27>framsendist til';
$PALANG['pOverview_alias_modified'] = 'S<><53>ast breytt';
$PALANG['pOverview_mailbox_username'] = 'P<>stfang';
$PALANG['pOverview_mailbox_name'] = 'Nafn notanda';
$PALANG['pOverview_mailbox_quota'] = 'Heimild kv<6B>ta (MB)';
$PALANG['pOverview_mailbox_modified'] = 'S<><53>ast breytt';
$PALANG['pOverview_mailbox_active'] = 'Virkur';
$PALANG['pOverview_get_domain'] = 'L<>n';
$PALANG['pOverview_get_aliases'] = 'Aliasar';
$PALANG['pOverview_get_mailboxes'] = 'P<>sth<74>lf';
$PALANG['pOverview_get_quota'] = 'P<>sth<74>lfs kv<6B>ti (MB)';
$PALANG['pOverview_get_modified'] = 'S<><53>ast breytt';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Get ekki eytt f<>rslunni ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg"><3E>etta er ekki <20>itt l<>n ';
$PALANG['pCreate_alias_welcome'] = '<27>tb<74>a n<>jan alias fyrir <20>itt l<>n.'; $PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">Aliasinn er ekki <20> lagi!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg"><3E>etta p<>sth<74>lf er n<> <20>egar til, veldu anna<6E>!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg"><3E><> hefur stofna<6E> <20>ann fj<66>lda p<>sth<74>lfa sem <20><> hefur heimild til!</span>';
$PALANG['pCreate_alias_goto'] = 'Til';
$PALANG['pCreate_alias_button'] = 'B<>ta vi<76> alias';
$PALANG['pCreate_alias_goto_text'] = '<27>anga<67> sem p<>sturinn <20> a<> sendast.';
$PALANG['pCreate_alias_goto_text_error'] = '<27>anga<67> sem p<>sturinn <20>arf a<> sendast.<br /><span class="error_msg">Til l<>nan er ekki gild!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Get ekki b<>tt vi<76> alias <20> alias t<>flu!</span>';
$PALANG['pCreate_alias_result_succes'] = 'N<>r alias hefur veri<72> b<>tt vi<76> alias t<>fluna!';
$PALANG['pCreate_alias_catchall_text'] = 'Til a<> <20>tb<74>a alias fyrir <20>ll netf<74>ng <20> l<>ninu, <20><> getur<75>u <20>tb<74>i<EFBFBD> "*" alias.<br />Til a<> <20>framsenda me<6D> alias <20> anna<6E> l<>n e<>a p<>sth<74>lf, nota<74>u "*@domain.tld <20> til.';
$PALANG['pEdit_alias_welcome'] = 'Breyta alias <20> l<>ninu.<br />Ein f<>rsla <20> einu.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Get ekki fundi<64> aliasinn!</span>';
$PALANG['pEdit_alias_goto'] = 'To';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg"><3E><> gafst ekki upp neitt <20> Til</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">P<>sth<74>lfi<66> sem <20><> reynir a<> nota er ekki til: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg"><3E><> <20>tt ekki <20>etta l<>n: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Breyta Alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Get ekki breytt alias!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Create a new local mailbox for your domain.';
$PALANG['pCreate_mailbox_username'] = 'notandanafn';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">Netfangi<67> er ekki til!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg"><3E>etta p<>sth<74>lf er til n<><6E>egar, veldu <20><>r anna<6E>!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg"><3E><> hefur stofna<6E> <20>au p<>stholf sem <20><> hefur heimild til!</span>';
$PALANG['pCreate_mailbox_password'] = 'Lykilor<6F>';
$PALANG['pCreate_mailbox_password2'] = 'Lykilor<6F> (aftur)';
$PALANG['pCreate_mailbox_password_text'] = 'Lykilor<6F> til a<> opna POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Lykilor<6F> fyrir POP3/IMAP<br /><span class="error_msg">Lykilor<6F>in sem <20><> skrifa<66>ir inn passa ekki saman!<br />E<>a <20><> gafst ekkert lykilor<6F> upp!</span>';
$PALANG['pCreate_mailbox_name'] = 'Nafn';
$PALANG['pCreate_mailbox_name_text'] = 'Fullt nafn';
$PALANG['pCreate_mailbox_quota'] = 'kv<6B>ti';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Kv<4B>tinn sem <20><> skilgreindir er meiri en heimild <20><>n gefur!</span>';
$PALANG['pCreate_mailbox_active'] = 'Virkur';
$PALANG['pCreate_mailbox_mail'] = 'Stofna p<>sth<74>lf';
$PALANG['pCreate_mailbox_button'] = 'b<>ta vi<76> p<>sth<74>lfi';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Get ekki b<>tt vi<76> p<>sth<74>lfi <20> mailbox t<>fluna!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'P<>sth<74>lfinu hefur veri<72> b<>tt vi<76> mailbox t<>fluna!';
$PALANG['pEdit_mailbox_welcome'] = 'Breyta p<>sth<74>lfi i l<>ninu <20><>nu.';
$PALANG['pEdit_mailbox_username'] = 'Au<41>kenni';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Finn ekki p<>sth<74>lfi<66>!</span>';
$PALANG['pEdit_mailbox_password'] = 'N<>tt lykilor<6F>';
$PALANG['pEdit_mailbox_password2'] = 'N<>ja lykilor<6F>i<EFBFBD> aftur';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Lykilor<6F>i<EFBFBD> sem <20><> skrifa<66>ir inn passar ekki saman!</span>';
$PALANG['pEdit_mailbox_name'] = 'Nafn';
$PALANG['pEdit_mailbox_quota'] = 'kv<6B>ti';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Kv<4B>tinn sem <20><> skilgreindir er of h<>r fyrir heimildina <20><>na!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg"><3E>etta l<>n er ekki <20> <20><>num vegum: ';
$PALANG['pEdit_mailbox_button'] = 'Breyta p<>sth<74>lfi';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Get ekki breytt lykilor<6F>inu!</span>';
$PALANG['pPassword_welcome'] = 'Breyta au<61>kenninu <20><>nu til a<> tengjast.';
$PALANG['pPassword_admin'] = 'Tengjast';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Au<41>kenni<6E> sem <20><> gafst upp, passar ekki vi<76> p<>sth<74>lfi<66>!</span>';
$PALANG['pPassword_password_current'] = 'gamla lykilor<6F>i<EFBFBD>';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg"><3E><> gafst ekki upp n<>verandi lykilor<6F> <20>itt!</span>';
$PALANG['pPassword_password'] = 'N<>tt lykilor<6F>';
$PALANG['pPassword_password2'] = 'N<>tt lykilor<6F> (aftur)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Lykilor<6F>in sem <20><> gafst upp passa ekki saman!<br />E<>a <20><> gefur upp t<>mt lykilor<6F>!</span>';
$PALANG['pPassword_button'] = 'Breyta lykilor<6F>i';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Get ekki breytt lykilor<6F>i!</span>';
$PALANG['pPassword_result_succes'] = 'Lykilor<6F>inu hefur veri<72> breytt!';
$PALANG['pViewlog_welcome'] = 'Sko<6B>a s<><73>ustu 10 a<>ger<65>ir fyrir ';
$PALANG['pViewlog_timestamp'] = 'T<>mi';
$PALANG['pViewlog_username'] = 'kerfisstj<74>ri';
$PALANG['pViewlog_domain'] = 'l<>n';
$PALANG['pViewlog_action'] = 'a<>ger<65>';
$PALANG['pViewlog_data'] = 'g<>gn';
$PALANG['pViewlog_button'] = '<27>fram';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Get ekki fundi<64> log skr<6B>ningu!</span>';
$PALANG['pSendmail_welcome'] = 'sendu t<>lvup<75>st.';
$PALANG['pSendmail_admin'] = 'fr<66>';
$PALANG['pSendmail_to'] = 'til';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">til er t<>mt e<>a ekki uppgefi<66> gilt netfang!</span>';
$PALANG['pSendmail_subject'] = 'Efni br<62>fs';
$PALANG['pSendmail_subject_text'] = 'Velkomin';
$PALANG['pSendmail_body'] = 'Meginm<6E>l';
$PALANG['pSendmail_button'] = 'Senda skilabo<62>';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Get ekki b<>i<EFBFBD> til n<>tt p<>sth<74>lf!</span>';
$PALANG['pSendmail_result_succes'] = 'P<>sth<74>lfi<66> hefur veri<72> stofna<6E>!';
$PALANG['pAdminMenu_list_admin'] = 'Kerfisstj<74>ralisti';
$PALANG['pAdminMenu_list_domain'] = 'L<>nalisti';
$PALANG['pAdminMenu_list_virtual'] = 'Virtual Listi';
$PALANG['pAdminMenu_viewlog'] = 'Sko<6B>a Log';
$PALANG['pAdminMenu_backup'] = 'Afritun';
$PALANG['pAdminMenu_create_domain_admins'] = 'L<>n kerfisstj<74>rar';
$PALANG['pAdminMenu_create_admin'] = 'N<>r kerfisstj<74>ri';
$PALANG['pAdminMenu_create_domain'] = 'N<>tt l<>n';
$PALANG['pAdminMenu_create_alias'] = 'B<>ta vi<76> alias';
$PALANG['pAdminMenu_create_mailbox'] = 'B<>ta vi<76> p<>sth<74>lfi';
$PALANG['pAdminList_admin_domain'] = 'L<>n';
$PALANG['pAdminList_admin_username'] = 'Notandi';
$PALANG['pAdminList_admin_count'] = 'L<>n';
$PALANG['pAdminList_admin_modified'] = 'S<><53>ast breytt';
$PALANG['pAdminList_admin_active'] = 'Virkt';
$PALANG['pAdminList_domain_domain'] = 'L<>n';
$PALANG['pAdminList_domain_description'] = 'L<>sing';
$PALANG['pAdminList_domain_aliases'] = 'Aliasar';
$PALANG['pAdminList_domain_mailboxes'] = 'P<>stbox';
$PALANG['pAdminList_domain_maxquota'] = 'H<>m. kv<6B>ti (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'S<><53>ast breytt';
$PALANG['pAdminList_domain_active'] = 'Virkt';
$PALANG['pAdminList_virtual_button'] = '<27>fram';
$PALANG['pAdminList_virtual_welcome'] = 'Yfirlit fyrir ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliasar';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'P<>stbox';
$PALANG['pAdminList_virtual_alias_address'] = 'Fr<46>';
$PALANG['pAdminList_virtual_alias_goto'] = 'Til';
$PALANG['pAdminList_virtual_alias_modified'] = 'S<><53>ast breytt';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Email';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Nafn';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Kv<4B>ti (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'S<><53>ast breytt';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Virkt';
$PALANG['pAdminCreate_domain_welcome'] = 'B<>ta vi<76> l<>ni';
$PALANG['pAdminCreate_domain_domain'] = 'L<>n';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">L<>ni<6E> er til n<> <20>egar!</span>';
$PALANG['pAdminCreate_domain_description'] = 'L<>sing';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliasar';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = <20>virkt | 0 = <20>takmarka<6B>';
$PALANG['pAdminCreate_domain_mailboxes'] = 'P<>stbox';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = <20>virkt | 0 = <20>takmarka<6B>';
$PALANG['pAdminCreate_domain_maxquota'] = 'H<>marks kv<6B>ti';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = <20>virkt | 0 = <20>takmarka<6B>';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Setja sj<73>lfgefinn p<>stalias';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'B<>ta vi<76> l<>ni';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Get ekki b<>tt vi<76> l<>ni!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'L<>n hefur veri<72> b<>tt inn!';
$PALANG['pAdminEdit_domain_welcome'] = 'Breyta l<>ni';
$PALANG['pAdminEdit_domain_domain'] = 'L<>n';
$PALANG['pAdminEdit_domain_description'] = 'L<>sing';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliasar';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = <20>virkt | 0 = <20>takmarka<6B>';
$PALANG['pAdminEdit_domain_mailboxes'] = 'P<>stbox';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = <20>virkt | 0 = <20>takmarka<6B>';
$PALANG['pAdminEdit_domain_maxquota'] = 'H<>marks kv<6B>ti';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = <20>virkt | 0 = <20>takmarka<6B>';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Virkt';
$PALANG['pAdminEdit_domain_button'] = 'Breyta l<>ni';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Get ekki breytt l<>ni!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'B<>ta n<>ju l<>ni vi<76>';
$PALANG['pAdminCreate_admin_username'] = 'Kerfisstj<74>ri';
$PALANG['pAdminCreate_admin_username_text'] = 'P<>stfang';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'P<>stfang<br /><span class="error_msg">Kerfisstj<74>ri er ekki r<>tt p<>stfang!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'P<>stfang<br /><span class="error_msg">Kerfisstj<74>ri er til n<> <20>egar e<>a er ekki leyfilegt</span>';
$PALANG['pAdminCreate_admin_password'] = 'Lykilor<6F>';
$PALANG['pAdminCreate_admin_password2'] = 'Lykilor<6F> (aftur)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Lykilor<6F>i<EFBFBD> sem <20><> gafst upp passar ekki!<br />E<>a var t<>mt!</span>';
$PALANG['pAdminCreate_admin_button'] = 'B<>ta vi<76> kerfisstj<74>ra';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Get ekki b<>tt vi<76> kerfisstj<74>ra!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Kerfisstj<74>rinn hefur veri<72> skr<6B><72>ur!';
$PALANG['pAdminCreate_admin_address'] = 'L<>n';
$PALANG['pAdminEdit_admin_welcome'] = 'Breyta kerfisstj<74>ra l<>ns';
$PALANG['pAdminEdit_admin_username'] = 'Kerfisstj<74>ri';
$PALANG['pAdminEdit_admin_password'] = 'Lykilor<6F>';
$PALANG['pAdminEdit_admin_password2'] = 'Lykilor<6F> (aftur)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Lykilor<6F>i<EFBFBD> sem <20><> gafst upp passar ekki!<br />E<>a var t<>mt!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Virkt';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Breyta kerfisstj<74>ra';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Get ekki breytt kerfisstj<74>ra!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Kerfisstj<74>rinn hefur veri<72> breyttur!';
$PALANG['pUsersLogin_welcome'] = 'P<>sth<74>lf notenda til a<> tengjast svo h<>gt er a<> breyta lykilor<6F>i e<>a alias.';
$PALANG['pUsersLogin_username'] = 'Innskr<6B> (email)';
$PALANG['pUsersLogin_password'] = 'Lykilor<6F>';
$PALANG['pUsersLogin_button'] = 'Innskr<6B>';
$PALANG['pUsersLogin_username_incorrect'] = 'Innskr<6B>ning <20><>n er r<>ng, gaktu <20>r skugga um a<> <20><> tengist me<6D> r<>ttu p<>stfangi (email address)!';
$PALANG['pUsersLogin_password_incorrect'] = 'Lykilor<6F> <20>itt er rangt!';
$PALANG['pUsersMenu_vacation'] = 'Sj<53>lfvirk sv<73>run';
$PALANG['pUsersMenu_edit_alias'] = 'Breyta <20>framsendingu';
$PALANG['pUsersMenu_password'] = 'Breyta lykilor<6F>i';
$PALANG['pUsersMain_vacation'] = 'Setja "er ekki vi<76>" skilabo<62> sem sj<73>lfvikt sv<73>run <20> p<>sth<74>lfi<66> <20>itt.';
$PALANG['pUsersMain_edit_alias'] = 'Breyta <20>framsendingu p<>stfangs. (email forward).';
$PALANG['pUsersMain_password'] = 'Breyta n<>verandi lykilor<6F>i.';
$PALANG['pUsersVacation_welcome'] = 'sj<73>lfvirk skilabo<62>.';
$PALANG['pUsersVacation_welcome_text'] = '<27><> hefur n<> <20>egar skilgreint sj<73>lfvirk skilabo<62>!';
$PALANG['pUsersVacation_subject'] = 'Meginm<6E>l - Subject';
$PALANG['pUsersVacation_subject_text'] = 'Er ekki vi<76> - Out of Office';
$PALANG['pUsersVacation_body'] = 'Meginm<6E>l';
$PALANG['pUsersVacation_body_text'] = <<<EOM
<EFBFBD>g er ekki vi<76> fr<66> <date> og til <date>. I will be away from <date> until <date>.
Ef miki<6B> liggur vi<76>, getur<75>u haft samaband vi<76> <contact person>. For urgent matters you can contact <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Ver<65> <20> burtu';
$PALANG['pUsersVacation_button_back'] = 'Kem aftur';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Get ekki uppf<70>rt sj<73>lfvirk skilabo<62> <20><>n!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Sj<53>lfvirk skilabo<62> <20><>n (svar) hefur veri<72> fjarl<72>gt!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

298
languages/it.lang Normal file
View File

@@ -0,0 +1,298 @@
<?php
//
// Language file Italian
// by Massimiliano Stucchi <max at gufi dot org>
//
require ('default.lang');
$PALANG['YES'] = 'SI';
$PALANG['NO'] = 'NO';
$PALANG['edit'] = 'modifica';
$PALANG['del'] = 'cancella';
$PALANG['confirm'] = 'Sei sicuro di volerlo cancellare?\n';
$PALANG['confirm_domain'] = 'Sei sicuro di voler cancellare tutti gli indirizzi di questo dominio? Questa modifica sar&agrave; permanente!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'GLi amministratori di posta devono effettuare il login qui per amministrare il proprio dominio.';
$PALANG['pLogin_username'] = 'Nome utente (email)';
$PALANG['pLogin_password'] = 'Password';
$PALANG['pLogin_button'] = 'Entra';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Il tuo nome utente non &egrave; corretto. Assicurati di avere inserito il tuo indirizzo email corretto!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">La tua password non &egrave; corretta!</span>';
$PALANG['pLogin_login_users'] = 'GLi utenti devono cliccare qui per entrare nella propria sezione.';
$PALANG['pMenu_overview'] = 'Resoconto';
$PALANG['pMenu_create_alias'] = 'Aggiungi Alias';
$PALANG['pMenu_create_mailbox'] = 'Aggiungi casella di posta';
$PALANG['pMenu_sendmail'] = 'Spedisci Email';
$PALANG['pMenu_password'] = 'Password';
$PALANG['pMenu_viewlog'] = 'Vedi Log';
$PALANG['pMenu_logout'] = 'Esci';
$PALANG['pMain_welcome'] = 'Benvenuti a Postfix Admin!';
$PALANG['pMain_overview'] = 'Elenco dei tuoi alias e delle caselle di posta. Puoi modificarli / aggiungerli da qui.';
$PALANG['pMain_create_alias'] = 'Crea nuovi alias per il tuo dominio.';
$PALANG['pMain_create_mailbox'] = 'Crea una nuova casella di posta per il tuo dominio.';
$PALANG['pMain_sendmail'] = 'Spedisci una email ad una delle nuove casella di posta che hai creato.';
$PALANG['pMain_password'] = 'Cambia la password per il tuo account di amministratore.';
$PALANG['pMain_viewlog'] = 'Guarda i files di log.';
$PALANG['pMain_logout'] = 'Esci dal sistema';
$PALANG['pOverview_disabled'] = 'Disabilitato';
$PALANG['pOverview_unlimited'] = 'Illimitato';
$PALANG['pOverview_title'] = ':: Domini definiti';
$PALANG['pOverview_up_arrow'] = 'Go top';
$PALANG['pOverview_right_arrow'] = 'Pagina successiva';
$PALANG['pOverview_left_arrow'] = 'Pagina precedente';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Caselle di posta';
$PALANG['pOverview_button'] = 'Vai';
$PALANG['pOverview_welcome'] = 'Resoconto per ';
$PALANG['pOverview_alias_alias_count'] = 'Alias';
$PALANG['pOverview_alias_mailbox_count'] = 'Caselle di posta';
$PALANG['pOverview_alias_address'] = 'Da';
$PALANG['pOverview_alias_goto'] = 'a';
$PALANG['pOverview_alias_modified'] = 'Ultima modifica';
$PALANG['pOverview_mailbox_username'] = 'Email';
$PALANG['pOverview_mailbox_name'] = 'Nome';
$PALANG['pOverview_mailbox_quota'] = 'Quota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Ultima modifica';
$PALANG['pOverview_mailbox_active'] = 'Attivo';
$PALANG['pOverview_get_domain'] = 'Dominio';
$PALANG['pOverview_get_aliases'] = 'Alias';
$PALANG['pOverview_get_mailboxes'] = 'Caselle di posta';
$PALANG['pOverview_get_quota'] = 'Quota delle caselle di posta (MB)';
$PALANG['pOverview_get_modified'] = 'Ultima modifica';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Impossibile cancellare ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Questo dominio non &egrave; tuo ';
$PALANG['pCreate_alias_welcome'] = 'Crea un nuovo alias per il tuo dominio.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">L\' Alias non &egrave; valido!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Questo indirizzo di post esiste gi&agrave;, perfavore sceglierne uno diverso!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Hai raggiunto il tuo limite per creare alias.!</span>';
$PALANG['pCreate_alias_goto'] = 'A';
$PALANG['pCreate_alias_button'] = 'Aggiungi Alias';
$PALANG['pCreate_alias_goto_text'] = 'Dove la mail deve essere spedita.';
$PALANG['pCreate_alias_goto_text_error'] = 'Dove l\'email deve andare.<br /><span class="error_msg">Il campo A non &egrave; valido!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Non sono riuscito ad aggiungere l\'alias alla tabella degli alias!</span>';
$PALANG['pCreate_alias_result_succes'] = 'L\'alias &egrave; stato aggiunto alla tabella degli alias!';
$PALANG['pCreate_alias_catchall_text'] = 'Per creare un account universale, usare "*" come alias.<br />Per fare forwarding da dominio a dominio, usare "*@domain.tld" come campo \"a\".';
$PALANG['pEdit_alias_welcome'] = 'Modifica un alias per il tuo dominio.<br />Un indirizzo per linea.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Impossibile allocare alias!</span>';
$PALANG['pEdit_alias_goto'] = 'A';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Non hai inserito nulla nel campo To</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">L\'indirizzo email che hai inserito non &egrave; valido : ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Questo dominio non &egrave; tuo: ';
$PALANG['pEdit_alias_button'] = 'Modifica Alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Impossibile modificare alias!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Crea una nuova casella di posta locale per il tuo dominio.';
$PALANG['pCreate_mailbox_username'] = 'Nome utente';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">L\'indirizzo EMAIL non &egrave; valido!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Questo indirizzo email esiste gi&agrave;, per favore scegline uno diverso!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Hai raggiunto il limite per creare caselle di posta!</span>';
$PALANG['pCreate_mailbox_password'] = 'Password';
$PALANG['pCreate_mailbox_password2'] = 'Password (ripeti)';
$PALANG['pCreate_mailbox_password_text'] = 'Password per POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Password per POP3/IMAP<br /><span class="error_msg">Le password che hai fornito non sono uguali!<br />O sono vuote!</span>';
$PALANG['pCreate_mailbox_name'] = 'Nome';
$PALANG['pCreate_mailbox_name_text'] = 'Nome completo';
$PALANG['pCreate_mailbox_quota'] = 'Quota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">La quota che hai specificato &egrave; troppo alta!</span>';
$PALANG['pCreate_mailbox_active'] = 'Attiva';
$PALANG['pCreate_mailbox_mail'] = 'Crea casella di posta';
$PALANG['pCreate_mailbox_button'] = 'Aggiungi casella di posta';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Impossibile aggiungere la casella di posta alla tabella delle caselle di posta!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'La casella di posta &egrave; stata aggiunta alla tabella!';
$PALANG['pEdit_mailbox_welcome'] = 'Modifica una casella di posta per il tuo dominio.';
$PALANG['pEdit_mailbox_username'] = 'Nome utente';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Impossibile trovare la casella di posta!</span>';
$PALANG['pEdit_mailbox_password'] = 'Nuova Password';
$PALANG['pEdit_mailbox_password2'] = 'Nuova Password (ripeti)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Le password che hai fornito non sono uguali!</span>';
$PALANG['pEdit_mailbox_name'] = 'Nome';
$PALANG['pEdit_mailbox_quota'] = 'Quota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">La quota che hai specificato &egrave; troppo alta!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Questo dominio non &egrave; tuo: ';
$PALANG['pEdit_mailbox_button'] = 'Modifica casella di posta';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Impossibile cambiare la password!</span>';
$PALANG['pPassword_welcome'] = 'Cambia la tua password per entrare.';
$PALANG['pPassword_admin'] = 'Nome utente';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Il NOME UTENTE che hai fornito non &egrave; associato a nessuna casella di posta!</span>';
$PALANG['pPassword_password_current'] = 'Password Corrente';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Non hai fornito una password corretta!</span>';
$PALANG['pPassword_password'] = 'Nuova Password';
$PALANG['pPassword_password2'] = 'Nuova Password (ripeti)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Le password che hai fornito non sono uguali!<br />O sono vuote!</span>';
$PALANG['pPassword_button'] = 'Cambia Password';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Impossibile cambiare password!</span>';
$PALANG['pPassword_result_succes'] = 'La tua password &egrave; stata modificata!';
$PALANG['pViewlog_welcome'] = 'Vedi le ultime dieci azioni di ';
$PALANG['pViewlog_timestamp'] = 'Orario';
$PALANG['pViewlog_username'] = 'Amministratore';
$PALANG['pViewlog_domain'] = 'Dominio';
$PALANG['pViewlog_action'] = 'Azione';
$PALANG['pViewlog_data'] = 'Dati';
$PALANG['pViewlog_button'] = 'Vai';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Impossibile trovare i file di log!</span>';
$PALANG['pSendmail_welcome'] = 'Spedisci una email.';
$PALANG['pSendmail_admin'] = 'Da';
$PALANG['pSendmail_to'] = 'A';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Il campo \"A\" &egrave; vuoto o non &egrave; un indirizzo valido!</span>';
$PALANG['pSendmail_subject'] = 'Oggetto';
$PALANG['pSendmail_subject_text'] = 'Benvenuto';
$PALANG['pSendmail_body'] = 'Corpo';
$PALANG['pSendmail_button'] = 'Spedisci messaggio';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Impossibile creare la casella di posta!</span>';
$PALANG['pSendmail_result_succes'] = 'La casella di posta &egrave; stata creata!';
$PALANG['pAdminMenu_list_admin'] = 'Lista degli amministratori';
$PALANG['pAdminMenu_list_domain'] = 'Lista dei domini';
$PALANG['pAdminMenu_list_virtual'] = 'Lista virtuale';
$PALANG['pAdminMenu_viewlog'] = 'Vedi Log';
$PALANG['pAdminMenu_backup'] = 'Fai Backup';
$PALANG['pAdminMenu_create_domain_admins'] = 'Amministratori del dominio';
$PALANG['pAdminMenu_create_admin'] = 'Nuovo Amministratore';
$PALANG['pAdminMenu_create_domain'] = 'Nuovo Dominio';
$PALANG['pAdminMenu_create_alias'] = 'Aggiungi Alias';
$PALANG['pAdminMenu_create_mailbox'] = 'Aggiungi casella di posta';
$PALANG['pAdminList_admin_domain'] = 'Dominio';
$PALANG['pAdminList_admin_username'] = 'Amministratori';
$PALANG['pAdminList_admin_count'] = 'Domini';
$PALANG['pAdminList_admin_modified'] = 'Ultima modifica';
$PALANG['pAdminList_admin_active'] = 'Attivo';
$PALANG['pAdminList_domain_domain'] = 'Dominio';
$PALANG['pAdminList_domain_description'] = 'Descrizione';
$PALANG['pAdminList_domain_aliases'] = 'Alias';
$PALANG['pAdminList_domain_mailboxes'] = 'Caselle di posta';
$PALANG['pAdminList_domain_maxquota'] = 'Quota massima (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Ultima modifica';
$PALANG['pAdminList_domain_active'] = 'Attivo';
$PALANG['pAdminList_virtual_button'] = 'Vai';
$PALANG['pAdminList_virtual_welcome'] = 'Resoconto per ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Alias';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Caselle di posta';
$PALANG['pAdminList_virtual_alias_address'] = 'Da';
$PALANG['pAdminList_virtual_alias_goto'] = 'A';
$PALANG['pAdminList_virtual_alias_modified'] = 'Ultima modifica';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Email';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Nome';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Quota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Ultima modifica';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Attivo';
$PALANG['pAdminCreate_domain_welcome'] = 'Aggiungi nuovo dominio';
$PALANG['pAdminCreate_domain_domain'] = 'Dominio';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Il dominio esiste di gi&agrave;!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Descri<ione';
$PALANG['pAdminCreate_domain_aliases'] = 'Alias';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = disabilita | 0 = illimitati';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Caselle di posta';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = disabilita | 0 = illimitate';
$PALANG['pAdminCreate_domain_maxquota'] = 'Quota Massima';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = disabilita | 0 = illimitata';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Aggiungi gli alias di default';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Aggiungi dominio';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Impossibile aggiungere il dominio!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Il dominio &egrave; stato aggiunto!';
$PALANG['pAdminEdit_domain_welcome'] = 'Modifica un domain';
$PALANG['pAdminEdit_domain_domain'] = 'Dominio';
$PALANG['pAdminEdit_domain_description'] = 'Descrizione';
$PALANG['pAdminEdit_domain_aliases'] = 'Alias';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = disabilita | 0 = illimitati';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Caselle di posta';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = disabilita | 0 = illimitate';
$PALANG['pAdminEdit_domain_maxquota'] = 'Quota massima';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = disabilita | 0 = illimitato';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Attivo';
$PALANG['pAdminEdit_domain_button'] = 'Modifica dominio';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Impossibile modificare il dominio!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Aggiungi un nuovo amministratore per il dominio';
$PALANG['pAdminCreate_admin_username'] = 'Amministratore';
$PALANG['pAdminCreate_admin_username_text'] = 'Indirizzo email';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'Email address<br /><span class="error_msg">Admin is not a valid email address!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'Indirizzo Email<br /><span class="error_msg">L\'amministatore esiste di gi&agrave;, oppure non &egrave; valido</span>';
$PALANG['pAdminCreate_admin_password'] = 'Password';
$PALANG['pAdminCreate_admin_password2'] = 'Password (ancora)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Le password che hai fornito non sono uguali!<br />Oppure sono vuote!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Aggiungi amministratore';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Impossibile aggiungere amministratore!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'L\'amministratore &egrave; stato aggiunto!';
$PALANG['pAdminCreate_admin_address'] = 'Dominio';
$PALANG['pAdminEdit_admin_welcome'] = 'Modifica l\'amministratore del dominio';
$PALANG['pAdminEdit_admin_username'] = 'Amministratore';
$PALANG['pAdminEdit_admin_password'] = 'Password';
$PALANG['pAdminEdit_admin_password2'] = 'Password (ancora)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Le password che hai fornito non sono uguali!<br />Oppure sono vuote!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Attivo';
$PALANG['pAdminEdit_admin_button'] = 'Modifica amministratore';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Impossibile modificare amministratore!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'L\'amministratore &egrave; stato modificato!';
$PALANG['pUsersLogin_welcome'] = 'Gli utenti di caselle di posta devono entrare qui per modificare le proprie opzioni.';
$PALANG['pUsersLogin_username'] = 'Nome utente (email)';
$PALANG['pUsersLogin_password'] = 'Password';
$PALANG['pUsersLogin_button'] = 'Entra';
$PALANG['pUsersLogin_username_incorrect'] = 'Il tuo nome utente non &egrave; corretto. Assicurati di avere inserito il tuo indirizzo email!';
$PALANG['pUsersLogin_password_incorrect'] = 'La tua password non &egrave; corretta!';
$PALANG['pUsersMenu_vacation'] = 'Risposta automatica';
$PALANG['pUsersMenu_edit_alias'] = 'Cambia il tuo inoltro';
$PALANG['pUsersMenu_password'] = 'Cambia password';
$PALANG['pUsersMain_vacation'] = 'Setta un messaggio di "Fuori ufficio" o un risponditore automatico per la tua email';
$PALANG['pUsersMain_edit_alias'] = 'Cambia le impostazioni di inoltro della tua email.';
$PALANG['pUsersMain_password'] = 'Cambia la tua password corrente.';
$PALANG['pUsersVacation_welcome'] = 'Risposta automatica.';
$PALANG['pUsersVacation_welcome_text'] = 'Hai gi$agrave; una risposta automatica configurata';
$PALANG['pUsersVacation_subject'] = 'Soggetto';
$PALANG['pUsersVacation_subject_text'] = 'Fuori dall\'ufficio';
$PALANG['pUsersVacation_body'] = 'Corpo';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Sar&ograve; via dal <data> al <data>.
Per problemi urgenti potete contattare <persona da contattare>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Imposta autorisponditore';
$PALANG['pUsersVacation_button_back'] = 'Rimuovi autorisponditore';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Impossibile aggiornare i tuoi dettagli di away!</span>';
$PALANG['pUsersVacation_result_succes'] = 'La tua risposta automatica &egrave; stata tolta!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

296
languages/lt.lang Normal file
View File

@@ -0,0 +1,296 @@
<?php
//
// Language file Lithuanian
// by Giedrius <giedrius_balbieris at metalot dot com>
//
$PALANG['charset'] = 'iso-8859-13';
$PALANG['YES'] = 'TAIP';
$PALANG['NO'] = 'NE';
$PALANG['edit'] = 'keisti';
$PALANG['del'] = '<27>alinti';
$PALANG['confirm'] = 'Tikrai norite <20>alinti?\n';
$PALANG['confirm_domain'] = 'Tikrai norite <20>alinti visus <20>ios srities <20>ra<72>us? Operacija negr<67><72>tama!\n';
$PALANG['check_update'] = 'Patikrinti versij<69>';
$PALANG['pLogin_welcome'] = 'Pa<50>to srities administratorius.';
$PALANG['pLogin_username'] = 'Vartotojas (el.pa<70>tas)';
$PALANG['pLogin_password'] = 'Slapta<74>odis';
$PALANG['pLogin_button'] = 'Prisijungti';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Prisijungti nepavyko. Vartotojo lauke <20>veskite srities pa<70>to administratoriaus el.pa<70>to adres<65>!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Slapta<74>odis neteisingas!</span>';
$PALANG['pLogin_login_users'] = 'Pa<50>to vartotojo nustatymai.';
$PALANG['pMenu_overview'] = 'Per<65>i<EFBFBD>ra';
$PALANG['pMenu_create_alias'] = 'Naujas sinonimas';
$PALANG['pMenu_create_mailbox'] = 'Nauja pa<70>to d<><64>ut<75>';
$PALANG['pMenu_sendmail'] = 'Si<53>sti lai<61>k<EFBFBD>';
$PALANG['pMenu_password'] = 'Slapta<74>odis';
$PALANG['pMenu_viewlog'] = '<27>urnalas';
$PALANG['pMenu_logout'] = 'Atsijungti';
$PALANG['pMain_welcome'] = 'Sveiki prisijung<6E> prie pa<70>to administratoriaus!';
$PALANG['pMain_overview'] = 'Pe<50>i<EFBFBD>r<EFBFBD>ti visas pa<70>to d<><64>utes ir sinonimus. <20>ionai atliekami pakeitimai, <20>alinimas.';
$PALANG['pMain_create_alias'] = 'Naujas pa<70>to sinonimas.';
$PALANG['pMain_create_mailbox'] = 'Nauja pa<70>to d<><64>ut<75>.';
$PALANG['pMain_sendmail'] = 'Si<53>sti lai<61>k<EFBFBD> <20> vien<65> naujai sukurt<72> pa<70>to d<><64>ut<75>.';
$PALANG['pMain_password'] = 'Keisti administratoriaus slapta<74>od<6F>.';
$PALANG['pMain_viewlog'] = 'Per<65>i<EFBFBD>r<EFBFBD>ti <20>vyki<6B> <20>urnalus.';
$PALANG['pMain_logout'] = 'Atsijungti nuo sistemos';
$PALANG['pOverview_disabled'] = 'I<>jungta(s)';
$PALANG['pOverview_unlimited'] = 'Neribota(s)';
$PALANG['pOverview_title'] = ':: Nustatytos sritys';
$PALANG['pOverview_up_arrow'] = 'Eiti <20> vir<69><72>';
$PALANG['pOverview_right_arrow'] = 'Sekantis puslapis';
$PALANG['pOverview_left_arrow'] = 'Ankstesnis puslapis';
$PALANG['pOverview_alias_title'] = ':: Sinonimas';
$PALANG['pOverview_mailbox_title'] = ':: Pa<50>to d<><64>ut<75>s';
$PALANG['pOverview_button'] = 'Eiti';
$PALANG['pOverview_welcome'] = 'Per<65>i<EFBFBD>ra ';
$PALANG['pOverview_alias_alias_count'] = 'sinonim<69>';
$PALANG['pOverview_alias_mailbox_count'] = 'pa<70>to d<><64>u<EFBFBD>i<EFBFBD>';
$PALANG['pOverview_alias_address'] = 'Nuo';
$PALANG['pOverview_alias_goto'] = 'iki';
$PALANG['pOverview_alias_modified'] = 'Paskutinis keitimas';
$PALANG['pOverview_mailbox_username'] = 'El.pa<70>tas';
$PALANG['pOverview_mailbox_name'] = 'Vardas';
$PALANG['pOverview_mailbox_quota'] = 'Kvota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Paskutinis keitimas';
$PALANG['pOverview_mailbox_active'] = '<27>jungta(s)';
$PALANG['pOverview_get_domain'] = 'Sritis';
$PALANG['pOverview_get_aliases'] = 'Sinonimai';
$PALANG['pOverview_get_mailboxes'] = 'Pa<50>to d<><64>ut<75>s';
$PALANG['pOverview_get_quota'] = 'Pa<50>to d<><64>ut<75>s kvota (MB)';
$PALANG['pOverview_get_modified'] = 'Paskutinis keitimas';
$PALANG['pDelete_delete_error'] = '<span class="error_msg"><3E>ra<72>o pa<70>alinti nepavyko ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Ne j<>s<EFBFBD> sritis ';
$PALANG['pCreate_alias_welcome'] = 'Naujas sinonimas.';
$PALANG['pCreate_alias_address'] = 'Sinonimas';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">Netinkamas sinonimas!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Tokia pa<70>to d<><64>ut<75> jau yra. Pasirinkite kit<69> vard<72>!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">I<>naudota visa pa<70>to sinonim<69> kvota!</span>';
$PALANG['pCreate_alias_goto'] = 'Persi<73>sti';
$PALANG['pCreate_alias_button'] = 'Naujas sinonimas';
$PALANG['pCreate_alias_goto_text'] = 'Adresas kuriuo persi<73>sti pa<70>t<EFBFBD>.';
$PALANG['pCreate_alias_goto_text_error'] = 'Adresas kuriuo persi<73>sti pa<70>t<EFBFBD>.<br /><span class="error_msg"><3E>vestas neteisingai!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Sinonimo registruoti nepavyko!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Sinonimas u<>registruotas!';
$PALANG['pCreate_alias_catchall_text'] = 'Jei norite sukurti sinonim<69> kuris gaut<75> visas <20>inutes neegzistuojantiems adresatams, naudokite "*".<br />Jei norite persi<73>sti <20> kit<69> pa<70>to d<><64>ut<75> kitame serveryje <20>veskite "*@domain.tld".';
$PALANG['pEdit_alias_welcome'] = 'Keisti srities sinonim<69>.<br />Eilut<75>je leid<69>iamas tik vienas <20>ra<72>as.';
$PALANG['pEdit_alias_address'] = 'Sinonimas';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Sinonimas nerastas!</span>';
$PALANG['pEdit_alias_goto'] = 'Kam';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Neu<65>pild<6C>te lauko "Kam"</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg"><3E>vestas neteisingas pa<70>to adresas: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg"><3E>i sritis ne j<>s<EFBFBD>: ';
$PALANG['pEdit_alias_button'] = 'Keisti sinonim<69>';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Sinonimo pakeisti nepavyko!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Nauja pa<70>to d<><64>ut<75>.';
$PALANG['pCreate_mailbox_username'] = 'Vartotojas';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg"><3E>is el.pa<70>to adresas neteisingas!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg"><3E>is el.pa<70>to adresas jau yra, pasirinkite kit<69> pavadinim<69>!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">I<>naudota srities pa<70>to d<><64>u<EFBFBD>i<EFBFBD> kvota!</span>';
$PALANG['pCreate_mailbox_password'] = 'Slapta<74>odis';
$PALANG['pCreate_mailbox_password2'] = 'Slapta<74>odis (dar kart<72>)';
$PALANG['pCreate_mailbox_password_text'] = 'Slapta<74>odis jungtis POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Slapta<74>odis jungtis POP3/IMAP<br /><span class="error_msg"><3E>vesti slapta<74>od<6F>iai nesutampa<br />Arba ne<6E>vesti!</span>';
$PALANG['pCreate_mailbox_name'] = 'Vardas';
$PALANG['pCreate_mailbox_name_text'] = 'Vardas Pavard<72>';
$PALANG['pCreate_mailbox_quota'] = 'Kvota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E>vesta per didel<65> kvota!</span>';
$PALANG['pCreate_mailbox_active'] = '<27>jungta(s)';
$PALANG['pCreate_mailbox_mail'] = 'Nauja pa<70>to d<><64>ut<75>';
$PALANG['pCreate_mailbox_button'] = 'Nauja pa<70>to d<><64>ut<75>';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Pa<50>to d<><64>ut<75>s u<>registruoti nepavyko!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Pa<50>to d<><64>ut<75> u<>registruota!';
$PALANG['pEdit_mailbox_welcome'] = 'Keisti pa<70>to d<><64>ut<75>.';
$PALANG['pEdit_mailbox_username'] = 'Vartotojas';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Pa<50>to d<><64>ut<75> nerasta!</span>';
$PALANG['pEdit_mailbox_password'] = 'Naujas slapta<74>odis';
$PALANG['pEdit_mailbox_password2'] = 'Naujas slapta<74>odis (dar kart<72>)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg"><3E>vesti slapta<74>od<6F>iai nesutampa!</span>';
$PALANG['pEdit_mailbox_name'] = 'Vardas';
$PALANG['pEdit_mailbox_quota'] = 'Kvota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E>vesta per didel<65> kvota!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Ne j<>s<EFBFBD> sritis: ';
$PALANG['pEdit_mailbox_button'] = 'Keisti pa<70>to d<><64>ut<75>';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Pa<50>to d<><64>ut<75>s pakeisti nepavyko!</span>';
$PALANG['pPassword_welcome'] = 'Pakeiskite prisijungimo slapta<74>od<6F>.';
$PALANG['pPassword_admin'] = 'Prisijungti';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Tokio vartotojo n<>ra!</span>';
$PALANG['pPassword_password_current'] = 'Dabartinis slapta<74>odis';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Ne<4E>ved<65>te dabartinio slapta<74>od<6F>io!</span>';
$PALANG['pPassword_password'] = 'Naujas slapta<74>odis';
$PALANG['pPassword_password2'] = 'Naujas slapta<74>odis (dar kart<72>)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg"><3E>vesti slapta<74>od<6F>iai nesutampa!<br />Arba ne<6E>vesti!</span>';
$PALANG['pPassword_button'] = 'Keisti slapta<74>od<6F>';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Slapta<74>od<6F>io pakeisti nepavyko!</span>';
$PALANG['pPassword_result_succes'] = 'Slapta<74>odis pakeistas!';
$PALANG['pViewlog_welcome'] = 'Per<65>i<EFBFBD>r<EFBFBD>ti paskutinius 10 vartotojo veiksm<73> ';
$PALANG['pViewlog_timestamp'] = 'Laikas';
$PALANG['pViewlog_username'] = 'Vartotojas';
$PALANG['pViewlog_domain'] = 'Sritis';
$PALANG['pViewlog_action'] = 'Veiksmas';
$PALANG['pViewlog_data'] = 'Duomenys';
$PALANG['pViewlog_button'] = 'Eiti';
$PALANG['pViewlog_result_error'] = '<span class="error_msg"><3E>vyki<6B> <20>urnalas nerastas!</span>';
$PALANG['pSendmail_welcome'] = 'Si<53>sti lai<61>k<EFBFBD>';
$PALANG['pSendmail_admin'] = 'Nuo';
$PALANG['pSendmail_to'] = 'Kam';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Adresatas ne<6E>vestas arba neteisingas pa<70>to adresas!</span>';
$PALANG['pSendmail_subject'] = 'Tema';
$PALANG['pSendmail_subject_text'] = 'Sveiki';
$PALANG['pSendmail_body'] = '<27>inut<75>';
$PALANG['pSendmail_button'] = 'Si<53>sti';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Pa<50>to d<><64>ut<75>s sukurti nepavyko!</span>';
$PALANG['pSendmail_result_succes'] = 'Pa<50>to d<><64>ut<75> sukurta!';
$PALANG['pAdminMenu_list_admin'] = 'Administratoriai';
$PALANG['pAdminMenu_list_domain'] = 'Sritys';
$PALANG['pAdminMenu_list_virtual'] = 'Sinonimai';
$PALANG['pAdminMenu_viewlog'] = '<27>urnalas';
$PALANG['pAdminMenu_backup'] = 'Kopijos';
$PALANG['pAdminMenu_create_domain_admins'] = 'Sri<72>i<EFBFBD> administratoriai';
$PALANG['pAdminMenu_create_admin'] = 'N.administratorius';
$PALANG['pAdminMenu_create_domain'] = 'N.sritis';
$PALANG['pAdminMenu_create_alias'] = 'N.sinonimas';
$PALANG['pAdminMenu_create_mailbox'] = 'N.pa<70>tas';
$PALANG['pAdminList_admin_domain'] = 'Sritis';
$PALANG['pAdminList_admin_username'] = 'Administratorius';
$PALANG['pAdminList_admin_count'] = 'Sritys';
$PALANG['pAdminList_admin_modified'] = 'Paskutin<69> kart<72> keista(s)';
$PALANG['pAdminList_admin_active'] = '<27>jungta(s)';
$PALANG['pAdminList_domain_domain'] = 'Sritis';
$PALANG['pAdminList_domain_description'] = 'Apra<72>ymas';
$PALANG['pAdminList_domain_aliases'] = 'Sinonimai';
$PALANG['pAdminList_domain_mailboxes'] = 'Pa<50>to d<><64>ut<75>s';
$PALANG['pAdminList_domain_maxquota'] = 'Kvota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Srities transportas';
$PALANG['pAdminList_domain_backupmx'] = 'Atsarginis MX';
$PALANG['pAdminList_domain_modified'] = 'Paskutin<69> kart<72> keista(s)';
$PALANG['pAdminList_domain_active'] = '<27>jungta';
$PALANG['pAdminList_virtual_button'] = 'Eiti';
$PALANG['pAdminList_virtual_welcome'] = 'Per<65>i<EFBFBD>r<EFBFBD>ti ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'sinonimus';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'pa<70>to d<><64>utes';
$PALANG['pAdminList_virtual_alias_address'] = 'Nuo';
$PALANG['pAdminList_virtual_alias_goto'] = 'iki';
$PALANG['pAdminList_virtual_alias_modified'] = 'Paskutin<69> kart<72> keista';
$PALANG['pAdminList_virtual_mailbox_username'] = 'El.pa<70>tas';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Vardas';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Kvota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Paskutin<69> kart<72> keista';
$PALANG['pAdminList_virtual_mailbox_active'] = '<27>jungta';
$PALANG['pAdminCreate_domain_welcome'] = 'Nauja sritis';
$PALANG['pAdminCreate_domain_domain'] = 'Sritis';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Tokia sritis jau yra!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Apra<72>ymas';
$PALANG['pAdminCreate_domain_aliases'] = 'Sinonimai';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = i<>jungta(s) | 0 = neribota(s)';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Pa<50>to d<><64>ut<75>s';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = i<>jungta(s) | 0 = neribota(s)';
$PALANG['pAdminCreate_domain_maxquota'] = 'Maksimali kvota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = i<>jungta(s) | 0 = neribota(s)';
$PALANG['pAdminCreate_domain_transport'] = 'Srities transportas';
$PALANG['pAdminCreate_domain_transport_text'] = 'Nustatyti transport<72>';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Registruoti tipinius pa<70>to sinonimus';
$PALANG['pAdminCreate_domain_backupmx'] = 'Tai atsarginis pa<70>to serveris (MX)';
$PALANG['pAdminCreate_domain_button'] = 'Registruoti srit<69>';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Srities u<>registruoti nepavyko!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Sritis u<>registruota!';
$PALANG['pAdminEdit_domain_welcome'] = 'Keisti srit<69>';
$PALANG['pAdminEdit_domain_domain'] = 'Sritis';
$PALANG['pAdminEdit_domain_description'] = 'Apra<72>ymas';
$PALANG['pAdminEdit_domain_aliases'] = 'Sinonimai';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 i<>jungta(s) | 0 = neribota(s)';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Pa<50>to d<><64>ut<75>s';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 i<>jungta(s) | 0 = neribota(s)';
$PALANG['pAdminEdit_domain_maxquota'] = 'Maksimali kvota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = i<>jungta(s) | 0 = neribota(s)';
$PALANG['pAdminEdit_domain_transport'] = 'Srities transportas';
$PALANG['pAdminEdit_domain_transport_text'] = 'Nustatyti transport<72>';
$PALANG['pAdminEdit_domain_backupmx'] = 'Tai atsarginis pa<70>to serveris (MX)';
$PALANG['pAdminEdit_domain_active'] = '<27>jungtas';
$PALANG['pAdminEdit_domain_button'] = 'Keisti srit<69>';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Srities pakeisti nepavyko!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Registruoti nauj<75> srities administratori<72>';
$PALANG['pAdminCreate_admin_username'] = 'Administratorius';
$PALANG['pAdminCreate_admin_username_text'] = 'El.pa<70>to adresas';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'El.pa<70>to adresas<br /><span class="error_msg">Administrotorius - tai ne el.pa<70>to adresas!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'El.pa<70>to adresas<br /><span class="error_msg">Administratorius <20>iai sri<72>iai jau yra</span>';
$PALANG['pAdminCreate_admin_password'] = 'Slapta<74>odis';
$PALANG['pAdminCreate_admin_password2'] = 'Slapta<74>odis (dar kart<72>)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg"><3E>vesti slapta<74>od<6F>iai nesutampa!<br />Arba ne<6E>vesti!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Registruoti administratori<72>';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Administratoriaus u<>registruoti nepavyko!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Administratorius u<>registruotas!';
$PALANG['pAdminCreate_admin_address'] = 'Sritis';
$PALANG['pAdminEdit_admin_welcome'] = 'Registruoti srities administratori<72>';
$PALANG['pAdminEdit_admin_username'] = 'Administratorius';
$PALANG['pAdminEdit_admin_password'] = 'Slapta<74>odis';
$PALANG['pAdminEdit_admin_password2'] = 'Slapta<74>odis (dar kart<72>)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg"><3E>vesti slapta<74>od<6F>iai nesutampa!<br />Arba ne<6E>vesti!</span>';
$PALANG['pAdminEdit_admin_active'] = '<27>jungta(s)';
$PALANG['pAdminEdit_admin_button'] = 'Keisti administratori<72>';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Administratoriaus keisti nepavyko!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Administratorius pakeistas!';
$PALANG['pUsersLogin_welcome'] = 'Pa<50>to vartotojai prisijungia ir kei<65>ia Mailbox users login to change your password and aliases.';
$PALANG['pUsersLogin_username'] = 'Vartotojas (el.pa<70>tas)';
$PALANG['pUsersLogin_password'] = 'Slapta<74>odis';
$PALANG['pUsersLogin_button'] = 'Prisijungti';
$PALANG['pUsersLogin_username_incorrect'] = 'Prisijungti nepavyko. <20>sitikinkite, kad gerai <20>ved<65>te savo el.pa<70>to adres<65>!';
$PALANG['pUsersLogin_password_incorrect'] = 'Slapta<74>odis neteisingas!';
$PALANG['pUsersMenu_vacation'] = 'Automatinis atsakymas';
$PALANG['pUsersMenu_edit_alias'] = 'Keisti lai<61>k<EFBFBD> peradresacij<69>';
$PALANG['pUsersMenu_password'] = 'Keisti slapta<74>od<6F>';
$PALANG['pUsersMain_vacation'] = 'Nustatyti "Esu i<>vyk<79>s" automatin<69> atsakym<79> visiems ateinantiems lai<61>kams.';
$PALANG['pUsersMain_edit_alias'] = 'Pakeisti lai<61>k<EFBFBD> peradresavim<69>.';
$PALANG['pUsersMain_password'] = 'Pakeisti slapta<74>od<6F>.';
$PALANG['pUsersVacation_welcome'] = 'Automatinis atsakymas.';
$PALANG['pUsersVacation_welcome_text'] = 'Auto atsakiklis jau nustatytas!';
$PALANG['pUsersVacation_subject'] = 'Tema';
$PALANG['pUsersVacation_subject_text'] = 'Esu i<>vyk<79>s';
$PALANG['pUsersVacation_body'] = '<27>inut<75>';
$PALANG['pUsersVacation_body_text'] = <<<EOM
I will be away from <date> until <date>.
For urgent matters you can contact <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'I<>vykstu';
$PALANG['pUsersVacation_button_back'] = 'Gr<47><72>tu';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Nepavyko nustatyti el.pa<70>to auto atsakovo!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Auto atsakovas i<>jungtas!';
$PALANG['pCreate_dbLog_createmailbox'] = 'pa<70>to d<><64>ut<75> sukurta';
$PALANG['pCreate_dbLog_createalias'] = 'sinonimas sukurtas';
$PALANG['pDelete_dbLog_deletealias'] = 'sinonimas pa<70>alintas';
$PALANG['pDelete_dbLog_deletemailbox'] = 'pa<70>to d<><64>ut<75> pa<70>alinta';
$PALANG['pEdit_dbLog_editactive'] = 'pakeista b<>sena';
$PALANG['pEdit_dbLog_editalias'] = 'sinonimas pakeistas';
$PALANG['pEdit_dbLog_editmailbox'] = 'pa<70>to d<><64>ut<75> pakeista';
$PALANG['pSearch_welcome'] = 'Ie<49>koti: ';
?>

304
languages/mk.lang Normal file
View File

@@ -0,0 +1,304 @@
<?php
//
// Language file Macedonian
// by Damjan Georgiev <dame at mol dot com dot mk>
// Encoding iso-8859-5
//
require ('default.lang');
$PALANG['charset'] = 'iso-8859-5';
$PALANG['YES'] = '<27><>';
$PALANG['NO'] = '<27><>';
$PALANG['edit'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['del'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['confirm'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>?\n';
$PALANG['confirm_domain'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>? <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!)';
$PALANG['pLogin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> (email)';
$PALANG['pLogin_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pLogin_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> e-mail <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pLogin_login_users'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMenu_overview'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_create_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_create_mailbox'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_sendmail'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_viewlog'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_logout'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMain_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> Postfix!';
$PALANG['pMain_overview'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_create_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_create_mailbox'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_sendmail'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_viewlog'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_logout'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = '<27><><EFBFBD>';
$PALANG['pOverview_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> ';
$PALANG['pOverview_alias_alias_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_alias_mailbox_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_alias_address'] = '<27><>';
$PALANG['pOverview_alias_goto'] = '<27><>';
$PALANG['pOverview_alias_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_name'] = '<27><><EFBFBD>';
$PALANG['pOverview_mailbox_quota'] = '<27><><EFBFBD><EFBFBD><EFBFBD> (MB)';
$PALANG['pOverview_mailbox_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_aliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_quota'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (MB)';
$PALANG['pOverview_get_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pDelete_delete_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD> ';
$PALANG['pCreate_alias_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pCreate_alias_address'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_goto'] = '<27><>';
$PALANG['pCreate_alias_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_alias_goto_text'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pCreate_alias_goto_text_error'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pCreate_alias_catchall_text'] = '<27><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> catch-all <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "*" <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.<br /> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "*@domain.tld" <20><><EFBFBD><EFBFBD> <20><>.';
$PALANG['pEdit_alias_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.<br /><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pEdit_alias_address'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_alias_goto'] = '<27><>';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><></span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD>: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pCreate_mailbox_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">EMAIL <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)';
$PALANG['pCreate_mailbox_password_text'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> POP3/IMAP<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!<br /><3E><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_name'] = '<27><><EFBFBD>';
$PALANG['pCreate_mailbox_name_text'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD>';
$PALANG['pCreate_mailbox_quota'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_mail'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pEdit_mailbox_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pEdit_mailbox_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_mailbox_password'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_password2'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_mailbox_name'] = '<27><><EFBFBD>';
$PALANG['pEdit_mailbox_quota'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD>: ';
$PALANG['pEdit_mailbox_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pPassword_admin'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> LOGIN <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_password_current'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_password'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_password2'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!<br /><3E><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pViewlog_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 10 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>: ';
$PALANG['pViewlog_timestamp'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (Timestamp)';
$PALANG['pViewlog_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_action'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_data'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_button'] = '<27><><EFBFBD>';
$PALANG['pViewlog_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pSendmail_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pSendmail_admin'] = '<27><>';
$PALANG['pSendmail_to'] = '<27><>';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pSendmail_subject'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pSendmail_subject_text'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pSendmail_body'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pSendmail_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pSendmail_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pSendmail_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pAdminMenu_list_admin'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_list_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_list_virtual'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_viewlog'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_backup'] = 'Backup';
$PALANG['pAdminMenu_create_domain_admins'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_admin'] = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_domain'] = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_alias'] = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_mailbox'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
$PALANG['pAdminList_admin_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_description'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_aliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_maxquota'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_button'] = '<27><><EFBFBD>';
$PALANG['pAdminList_virtual_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> ';
$PALANG['pAdminList_virtual_alias_alias_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_alias_address'] = '<27><>';
$PALANG['pAdminList_virtual_alias_goto'] = '<27><>';
$PALANG['pAdminList_virtual_alias_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_name'] = '<27><><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_quota'] = '<27><><EFBFBD><EFBFBD><EFBFBD> (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_domain_description'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_aliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_aliases_text'] = '0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_maxquota'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> backup MX';
$PALANG['pAdminCreate_domain_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pAdminEdit_domain_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_description'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_aliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_aliases_text'] = '0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_maxquota'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> backup MX';
$PALANG['pAdminEdit_domain_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_username_text'] = 'Email <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'Email <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'Email <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></span>';
$PALANG['pAdminCreate_admin_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!<br /><3E><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pAdminCreate_admin_address'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!<br /><3E><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminEdit_admin_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pUsersLogin_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.<2E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersLogin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> (email)';
$PALANG['pUsersLogin_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersLogin_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersLogin_username_incorrect'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> email <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pUsersLogin_password_incorrect'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pUsersMenu_vacation'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersMenu_edit_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (forward)';
$PALANG['pUsersMenu_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersMain_vacation'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pUsersMain_edit_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (email forwarding).';
$PALANG['pUsersMain_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pUsersVacation_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pUsersVacation_welcome_text'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pUsersVacation_subject'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_subject_text'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_body'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_body_text'] = <<<EOM
<EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <date> <20><> <date>.
<EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_button_back'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> :)';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pUsersVacation_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

301
languages/nl.lang Normal file
View File

@@ -0,0 +1,301 @@
<?php
//
// Language file Dutch
// by Mourik
//
require ('default.lang');
$PALANG['YES'] = 'Ja';
$PALANG['NO'] = 'Nee';
$PALANG['edit'] = 'bewerk';
$PALANG['del'] = 'verwijder';
$PALANG['confirm'] = 'Weet u het zeker dat u wilt verwijderen?\n';
$PALANG['confirm_domain'] = 'Weet u zeker dat u ALLE waardes van het domein wilt verwijderen? Dit kan niet ongedaan worden gemaakt!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Mail beheerders log hier in om uw domeinen te beheren.';
$PALANG['pLogin_username'] = 'Login (e-mail)';
$PALANG['pLogin_password'] = 'Wachtwoord';
$PALANG['pLogin_button'] = 'Login';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Foutieve login. U dient in te loggen met uw e-mail adres!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Foutief wachtwoord.!</span>';
$PALANG['pLogin_login_users'] = 'Gebruikers klik hier om in te loggen.';
$PALANG['pMenu_overview'] = 'Overzicht';
$PALANG['pMenu_create_alias'] = 'Alias toevoegen';
$PALANG['pMenu_create_mailbox'] = 'Mailbox toevoegen';
$PALANG['pMenu_sendmail'] = 'Verstuur E-mail';
$PALANG['pMenu_password'] = 'Wachtwoord';
$PALANG['pMenu_viewlog'] = 'Laat log zien';
$PALANG['pMenu_logout'] = 'Uitloggen';
$PALANG['pMain_welcome'] = 'Welkom bij Postfix Admin!';
$PALANG['pMain_overview'] = 'Laat uw aliassen en mailboxen zien. U kunt ze vanaf hier bewerken / verwijderen.';
$PALANG['pMain_create_alias'] = 'Maak een nieuwe alias aan voor uw domein.';
$PALANG['pMain_create_mailbox'] = 'Maak een nieuwe mailbox aan voor uw domein.';
$PALANG['pMain_sendmail'] = 'Verstuur een e-mail naar 1 van de nieuwe mailboxen.';
$PALANG['pMain_password'] = 'Wijzig uw wachtwoord.';
$PALANG['pMain_viewlog'] = 'Laat de log files zien';
$PALANG['pMain_logout'] = 'Uitloggen';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Ga';
$PALANG['pOverview_welcome'] = 'Overzicht voor ';
$PALANG['pOverview_alias_alias_count'] = 'Aliasen';
$PALANG['pOverview_alias_mailbox_count'] = 'Mailboxes';
$PALANG['pOverview_alias_address'] = 'Van';
$PALANG['pOverview_alias_goto'] = 'Naar';
$PALANG['pOverview_alias_modified'] = 'Laatst Bewerkt';
$PALANG['pOverview_mailbox_username'] = 'E-mail';
$PALANG['pOverview_mailbox_name'] = 'Naam';
$PALANG['pOverview_mailbox_quota'] = 'Quota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Laatst Bewerkt';
$PALANG['pOverview_mailbox_active'] = 'Actief';
$PALANG['pOverview_get_domain'] = 'Domein';
$PALANG['pOverview_get_aliases'] = 'Aliassen';
$PALANG['pOverview_get_mailboxes'] = 'Mailboxes';
$PALANG['pOverview_get_quota'] = 'Mailbox Quota (MB)';
$PALANG['pOverview_get_modified'] = 'Laatst bewerkt';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Mislukt te verwijderen ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Dit is niet uw domein ';
$PALANG['pCreate_alias_welcome'] = 'Maak een nieuw alias aan voor uw domein.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">De ALIAS is niet geldig!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Dit e-mail aders bestaat al, kies aub een andere.</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">U bezit het maximum aantal aliassen.</span>';
$PALANG['pCreate_alias_goto'] = 'Naar';
$PALANG['pCreate_alias_button'] = 'Voeg alias toe';
$PALANG['pCreate_alias_goto_text'] = 'Waar de e-mails naar gestuurd worden.';
$PALANG['pCreate_alias_goto_text_error'] = 'Waar de e-mail naar toe moet.<br /><span class="error_msg">De NAAR is niet geldig.</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Mislukt om de alias toe te voegen.</span>';
$PALANG['pCreate_alias_result_succes'] = 'De alias is toegevoegd.';
$PALANG['pCreate_alias_catchall_text'] = 'Om een catch-all te gebruiken, dient u een "*" (asteric) in te vullen als alias.<br />Voor domein naar domein forwarding gebruik "*@domein.tld" als naar.';
$PALANG['pEdit_alias_welcome'] = 'Bewerk een alias voor uw domein.<br />Een alias per regel.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Mislukt om alias te vinden!</span>';
$PALANG['pEdit_alias_goto'] = 'Naar';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">U heeft geen Naar opgegeven.</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Het e-mail adres wat u opgaf is niet geldig: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Dit domein is niet van u: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Bewerk Alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Mislukt om de alias te bewerken!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Maak een nieuw lokale mailbox voor uw domein.';
$PALANG['pCreate_mailbox_username'] = 'Gebruikersnaam';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">Het e-mail adres is niet geldig.</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Dit e-mail adres is al ingebruik. Kies aub een andere.</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">U bezit het maximum aantal mailboxen.</span>';
$PALANG['pCreate_mailbox_password'] = 'Wachtwoord';
$PALANG['pCreate_mailbox_password2'] = 'Wachtwoord nogmaals';
$PALANG['pCreate_mailbox_password_text'] = 'Wachtwoord voor POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Wachtwoord voor POP3/IMAP<br /><span class="error_msg">De wachtwoorden die u opgaf komen niet overeen.<br />Of zijn leeg.</span>';
$PALANG['pCreate_mailbox_name'] = 'Naam';
$PALANG['pCreate_mailbox_name_text'] = 'Volledige naam';
$PALANG['pCreate_mailbox_quota'] = 'Quota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">De quota die opgaf is te hoog.</span>';
$PALANG['pCreate_mailbox_active'] = 'Actief';
$PALANG['pCreate_mailbox_mail'] = 'Mailbox toevoegen';
$PALANG['pCreate_mailbox_button'] = 'Mailbox toevoegen';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Mislukt om de mailbox toe te voegen.</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'De mailbox is toegevoegd.';
$PALANG['pEdit_mailbox_welcome'] = 'Bewerk een mailbox voor uw domein.';
$PALANG['pEdit_mailbox_username'] = 'Gebruikersnaam';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Mislukt om mailbox te vinden!</span>';
$PALANG['pEdit_mailbox_password'] = 'Nieuw wachtwoord';
$PALANG['pEdit_mailbox_password2'] = 'Nieuw wachtwoord (nogmaails)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">De wachtwoorden die u opgaf komen niet overeen.</span>';
$PALANG['pEdit_mailbox_name'] = 'Naam';
$PALANG['pEdit_mailbox_quota'] = 'Quota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">De quota die opgaf is te hoog.</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Dit domein is niet van nu: ';
$PALANG['pEdit_mailbox_button'] = 'Bewerk Mailbox';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Mislukt om het wachtwoorden te wijzigen.</span>';
$PALANG['pPassword_welcome'] = 'Bewerk u login wachtwoord.';
$PALANG['pPassword_admin'] = 'Login';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">De login die u opgaf komt niet overeen met een mailbox.</span>';
$PALANG['pPassword_password_current'] = 'Huidig wachtwoord';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">U heeft uw huidige wachtwoord niet opgegeven.</span>';
$PALANG['pPassword_password'] = 'Nieuw wachtwoord';
$PALANG['pPassword_password2'] = 'Nieuw wachtwoord (nogmaals)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">De wachtwoorden komen niet overeen.<br />Of zijn leeg.</span>';
$PALANG['pPassword_button'] = 'Wijzig wachtwoord';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Mislukt om uw wachtwoord te veranderen.</span>';
$PALANG['pPassword_result_succes'] = 'Uw wachtwoord is veranderd.';
$PALANG['pViewlog_welcome'] = 'Laat de laaste 10 actie\'s zien van ';
$PALANG['pViewlog_timestamp'] = 'Tijd';
$PALANG['pViewlog_username'] = 'Beheerder';
$PALANG['pViewlog_domain'] = 'Domein';
$PALANG['pViewlog_action'] = 'Actie';
$PALANG['pViewlog_data'] = 'Datum';
$PALANG['pViewlog_button'] = 'Ga';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Mislukt om de logs te vinden!</span>';
$PALANG['pSendmail_welcome'] = 'Verstuur een e-mail.';
$PALANG['pSendmail_admin'] = 'Van';
$PALANG['pSendmail_to'] = 'Naar';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Naar is leeg of een ongeldig adres.</span>';
$PALANG['pSendmail_subject'] = 'Onderwerp';
$PALANG['pSendmail_subject_text'] = 'Welkom';
$PALANG['pSendmail_body'] = 'Inhoud';
$PALANG['pSendmail_button'] = 'Verstuur bericht';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Mistlukt om mailbox te maken!</span>';
$PALANG['pSendmail_result_succes'] = 'De mailbox is aangemaakt.';
$PALANG['pAdminMenu_list_admin'] = 'Beheerders overzicht';
$PALANG['pAdminMenu_list_domain'] = 'Domein overzicht';
$PALANG['pAdminMenu_list_virtual'] = 'Virtueel overzicht';
$PALANG['pAdminMenu_viewlog'] = 'Laat Log zien';
$PALANG['pAdminMenu_backup'] = 'Backup';
$PALANG['pAdminMenu_create_domain_admins'] = 'Domein Beheerders';
$PALANG['pAdminMenu_create_admin'] = 'Nieuwe beheerder';
$PALANG['pAdminMenu_create_domain'] = 'Voeg Domein toe';
$PALANG['pAdminMenu_create_alias'] = 'Voeg Alias toe';
$PALANG['pAdminMenu_create_mailbox'] = 'Voeg Mailbox toe';
$PALANG['pAdminList_admin_domain'] = 'Domein';
$PALANG['pAdminList_admin_username'] = 'Beheerder';
$PALANG['pAdminList_admin_count'] = 'Domeinen';
$PALANG['pAdminList_admin_modified'] = 'Laatst bewerkt';
$PALANG['pAdminList_admin_active'] = 'Actief';
$PALANG['pAdminList_domain_domain'] = 'Domein';
$PALANG['pAdminList_domain_description'] = 'Omschrijving';
$PALANG['pAdminList_domain_aliases'] = 'Aliassen';
$PALANG['pAdminList_domain_mailboxes'] = 'Mailboxen';
$PALANG['pAdminList_domain_maxquota'] = 'Quota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Laatst bewerkt';
$PALANG['pAdminList_domain_active'] = 'Actief';
$PALANG['pAdminList_virtual_button'] = 'Ga';
$PALANG['pAdminList_virtual_welcome'] = 'Overzicht voor ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliassen';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Mailboxen';
$PALANG['pAdminList_virtual_alias_address'] = 'Van';
$PALANG['pAdminList_virtual_alias_goto'] = 'Naar';
$PALANG['pAdminList_virtual_alias_modified'] = 'Laatst bewerkt';
$PALANG['pAdminList_virtual_mailbox_username'] = 'E-mail';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Naam';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Quota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Laatst bewerkt';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Actief';
$PALANG['pAdminCreate_domain_welcome'] = 'Voeg een nieuw domein toe';
$PALANG['pAdminCreate_domain_domain'] = 'Domein';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Het domein bestaat al.</span>';
$PALANG['pAdminCreate_domain_description'] = 'Omschrijving';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliassen';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = uit | 0 = onbeperkt';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Mailboxen';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = uit | 0 = onbeperkt';
$PALANG['pAdminCreate_domain_maxquota'] = 'Max Quota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = uit | 0 = onbeperkt';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Gebruik standaard aliassen';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Voeg Domein toe';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Mislukt om het domein toe te voegen.</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Domein is toegevoegd!';
$PALANG['pAdminEdit_domain_welcome'] = 'Bewerk een domein';
$PALANG['pAdminEdit_domain_domain'] = 'Domein';
$PALANG['pAdminEdit_domain_description'] = 'Omschrijving';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliassen';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = uit | 0 = onbeperkt';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Mailboxen';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = uit | 0 = onbeperkt';
$PALANG['pAdminEdit_domain_maxquota'] = 'Max Quota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = uit | 0 = onbeperkt';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Actief';
$PALANG['pAdminEdit_domain_button'] = 'Bewerk domein';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Mislukt het domein te bewerken.</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Voeg een nieuw domein beheerder toe';
$PALANG['pAdminCreate_admin_username'] = 'Beheerder';
$PALANG['pAdminCreate_admin_username_text'] = 'E-mail adres';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'E-mail adres<br /><span class="error_msg">Beheerder is geen geldig e-mail adres!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'E-mail adres<br /><span class="error_msg">De beheerder bestaat al of is niet geldig</span>';
$PALANG['pAdminCreate_admin_password'] = 'Wachtwoord';
$PALANG['pAdminCreate_admin_password2'] = 'Wachtwoord (nogmaals)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">De wachtwoorden die u opgaf komen niet overeen.<br />Of zijn leeg.</span>';
$PALANG['pAdminCreate_admin_button'] = 'Voeg beheerder toe';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Mislukt om beheerder toe te voegen!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Beheerder is toegevoegd.';
$PALANG['pAdminCreate_admin_address'] = 'Domein';
$PALANG['pAdminEdit_admin_welcome'] = 'Bewerk een domein beheerder';
$PALANG['pAdminEdit_admin_username'] = 'Beheerder';
$PALANG['pAdminEdit_admin_password'] = 'Wachtwoord';
$PALANG['pAdminEdit_admin_password2'] = 'Wachtwoord (nogmaals)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">De wachtwoorden die u opgaf komen niet overeen.<br />Of zijn leeg.</span>';
$PALANG['pAdminEdit_admin_active'] = 'Actief';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Bewerk beheerder';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Mislukt om beheerder te bewerken</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Beheerder is bewerkt!';
$PALANG['pUsersLogin_welcome'] = 'Mailbox gebruikers login om uw wachtwoord en aliassen te bewerken.';
$PALANG['pUsersLogin_username'] = 'Login (email)';
$PALANG['pUsersLogin_password'] = 'Wachtwoord';
$PALANG['pUsersLogin_button'] = 'Login';
$PALANG['pUsersLogin_username_incorrect'] = 'Uw login is niet correct. U dient in te loggen met uw e-mail adres.';
$PALANG['pUsersLogin_password_incorrect'] = 'Uw wachtwoord is niet correct.';
$PALANG['pUsersMenu_vacation'] = 'Automatisch beantwoorden';
$PALANG['pUsersMenu_edit_alias'] = 'Wijzig uw forward';
$PALANG['pUsersMenu_password'] = 'Wijzig wachtwoord';
$PALANG['pUsersMain_vacation'] = 'Stel een "out of office" bericht of auto-responder voor uw e-mail in.';
$PALANG['pUsersMain_edit_alias'] = 'Wijzig uw e-mail forwarding.';
$PALANG['pUsersMain_password'] = 'Wijzig uw huidige wachtwoord.';
$PALANG['pUsersVacation_welcome'] = 'Automatisch beantwoorden.';
$PALANG['pUsersVacation_welcome_text'] = 'U heeft al een auto beantwoorder ingesteld.';
$PALANG['pUsersVacation_subject'] = 'Onderwerp';
$PALANG['pUsersVacation_subject_text'] = 'Out of Office';
$PALANG['pUsersVacation_body'] = 'Bericht';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Ik zal afwezig zijn van <date> tot <date>.
Voor belangrijke punten kunt u contact opnemen met <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Afwezig';
$PALANG['pUsersVacation_button_back'] = 'Kom terug';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Mislukt om uw automatisch beantwoorder instellingen te wijzigen.</span>';
$PALANG['pUsersVacation_result_succes'] = 'Uw automatisch beantwoorder is verwijderd.';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

295
languages/nn.lang Normal file
View File

@@ -0,0 +1,295 @@
<?php
//
// Language file Norwegian - Bokm<6B>l
// by Jon Arve W<>lberg
//
require ('default.lang');
$PALANG['YES'] = 'JA';
$PALANG['NO'] = 'NEI';
$PALANG['edit'] = 'endre';
$PALANG['del'] = 'slette';
$PALANG['confirm'] = 'Vil du slette dette?\n';
$PALANG['confirm_domain'] = 'Vil du virkelig slette alle poster og domenet?\n';
$PALANG['check_update'] = 'Se etter oppdatering';
$PALANG['pLogin_welcome'] = 'Postadministrator; Logg inn her for <20> administrere ditt domene';
$PALANG['pLogin_username'] = 'Brukernavn (e-postadressen)';
$PALANG['pLogin_password'] = 'Passord';
$PALANG['pLogin_button'] = 'Logg inn';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Ditt brukernavn er feil. Logg inn med e-postadressen din som brukernavn!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Passordet er feil!</span>';
$PALANG['pLogin_login_users'] = 'Brukare, trykk her for <20> g<> til bruker-seksjonen.';
$PALANG['pMenu_overview'] = 'Oversikt';
$PALANG['pMenu_create_alias'] = 'Legg til Alias';
$PALANG['pMenu_create_mailbox'] = 'Legg til e-postkonto';
$PALANG['pMenu_sendmail'] = 'Send E-Post';
$PALANG['pMenu_password'] = 'Passord';
$PALANG['pMenu_viewlog'] = 'Vis logg';
$PALANG['pMenu_logout'] = 'Logg ut';
$PALANG['pMain_welcome'] = 'Velkommen Til Postfix Admin!';
$PALANG['pMain_overview'] = 'Vis alle alias og epostkontoer. Her kan du endre.';
$PALANG['pMain_create_alias'] = 'Opprett nytt alias.';
$PALANG['pMain_create_mailbox'] = 'Opprett ny e-postkonto.';
$PALANG['pMain_sendmail'] = 'Send e-post til en av de nyopprettede e-postkontoene.';
$PALANG['pMain_password'] = 'Skift passord til din administratorkonto.';
$PALANG['pMain_viewlog'] = 'Vis logg.';
$PALANG['pMain_logout'] = 'Logg ut';
$PALANG['pOverview_disabled'] = 'Deaktivert';
$PALANG['pOverview_unlimited'] = 'Ubegrenset';
$PALANG['pOverview_title'] = ':: Definerte domener';
$PALANG['pOverview_up_arrow'] = 'G<> til toppen';
$PALANG['pOverview_right_arrow'] = 'Neste side';
$PALANG['pOverview_left_arrow'] = 'Forrige side';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Epostkontoer';
$PALANG['pOverview_button'] = 'Vis';
$PALANG['pOverview_welcome'] = 'Oversikt for ';
$PALANG['pOverview_alias_alias_count'] = 'Alias';
$PALANG['pOverview_alias_mailbox_count'] = 'Epostkontoer';
$PALANG['pOverview_alias_address'] = 'Fra';
$PALANG['pOverview_alias_goto'] = 'Mottaker';
$PALANG['pOverview_alias_modified'] = 'Sist endret';
$PALANG['pOverview_mailbox_username'] = 'E-post';
$PALANG['pOverview_mailbox_name'] = 'Nann';
$PALANG['pOverview_mailbox_quota'] = 'Kvote (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Sist endret';
$PALANG['pOverview_mailbox_active'] = 'Aktiv';
$PALANG['pOverview_get_domain'] = 'Domene';
$PALANG['pOverview_get_aliases'] = 'Alias';
$PALANG['pOverview_get_mailboxes'] = 'Epostkontoer';
$PALANG['pOverview_get_quota'] = 'Epostkonto Kvote (MB)';
$PALANG['pOverview_get_modified'] = 'Sist endret';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Kan ikke slette';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Dette domenet er ikke ditt';
$PALANG['pCreate_alias_welcome'] = 'Opprett et nytt alias.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">Aliaset er ikke gyldig!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Denne epostadressen eksisterer allerede, velg en annen!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Du er over grensen for antall aliaser i ditt domene!</span>';
$PALANG['pCreate_alias_goto'] = 'Mottaker';
$PALANG['pCreate_alias_button'] = 'Legg til Alias';
$PALANG['pCreate_alias_goto_text'] = 'Hvor skal e-posten videresendes?';
$PALANG['pCreate_alias_goto_text_error'] = 'Hvor skal eposten videresendes?.<br /><span class="error_msg">Mottakerfeltet er ikke gyldig!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Klarte ikke legge til aliaset!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Aliaset er lagt til i alias-tabellen!';
$PALANG['pCreate_alias_catchall_text'] = 'For <20> opprette et alias som "mottar alt" bruk "*" som alias.<br />For domene-til-domene videresending bruk "*@domene.tld" som mottaker.';
$PALANG['pEdit_alias_welcome'] = 'Endre et alias.<br />En mottaker per linje.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Finner ikke aliaset!</span>';
$PALANG['pEdit_alias_goto'] = 'Mottaker';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Du skrev ikke noe i mottakerfeltet</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">E-post adressen er ugyldig: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Dette er ikke ditt domene: ';
$PALANG['pEdit_alias_button'] = 'Endre Alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Kan ikke endre Aliaset!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Opprett en ny epostkonto.';
$PALANG['pCreate_mailbox_username'] = 'Brukernavn';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">E-postadressen er ugyldig!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">E-postadressen eksisterer allerede, velg en annen!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Du er over grensen for antall e-postkontoer!</span>';
$PALANG['pCreate_mailbox_password'] = 'Passord';
$PALANG['pCreate_mailbox_password2'] = 'Passord (igjen)';
$PALANG['pCreate_mailbox_password_text'] = 'Passord for POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Passord for POP3/IMAP<br /><span class="error_msg">Passordene er ikke like!<br />Eller feltet er tomt!</span>'; $PALANG['pCreate_mailbox_name'] = 'Namn';
$PALANG['pCreate_mailbox_name_text'] = 'Fornavn og etternavn';
$PALANG['pCreate_mailbox_quota'] = 'Kvote';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Den <20>nskede kvoten er for h<>y!</span>';
$PALANG['pCreate_mailbox_active'] = 'Aktiv';
$PALANG['pCreate_mailbox_mail'] = 'Opprett epostkonto';
$PALANG['pCreate_mailbox_button'] = 'Opprett Alias';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Klarte ikke <20> legge til e-postkontoen!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'E-postkontoen er opprettet!';
$PALANG['pEdit_mailbox_welcome'] = 'Endre en e-postkonto.';
$PALANG['pEdit_mailbox_username'] = 'Brukernavn';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Fant ikke e-postkontoen!</span>';
$PALANG['pEdit_mailbox_password'] = 'Nytt passord';
$PALANG['pEdit_mailbox_password2'] = 'Nytt passord (igjen)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Passordene er ikke like!</span>';
$PALANG['pEdit_mailbox_name'] = 'Navn';
$PALANG['pEdit_mailbox_quota'] = 'Kvote';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Kvoten er for h<>y!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Dette domenet er ikke ditt: ';
$PALANG['pEdit_mailbox_button'] = 'Endre E-postkonto';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Klarte ikke <20> skifte passord</span>';
$PALANG['pPassword_welcome'] = 'Endre Passord.';
$PALANG['pPassword_admin'] = 'Brukernavn';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Brukarnavnet eksisterer ikke</span>';
$PALANG['pPassword_password_current'] = 'Eksisterende passord';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Oppgi det eksisterende passordet!</span>';
$PALANG['pPassword_password'] = 'Nytt passord';
$PALANG['pPassword_password2'] = 'Nytt passord (igjen)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Passordene er ikke like!<br />Eller feltet er tomt!</span>';
$PALANG['pPassword_button'] = 'Endre Passord';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Klarte ikke <20> endre passord!</span>';
$PALANG['pPassword_result_succes'] = 'Passordet ditt er n<> endret!';
$PALANG['pViewlog_welcome'] = 'Vis de 10 siste handlingene ';
$PALANG['pViewlog_timestamp'] = 'Klokkeslett';
$PALANG['pViewlog_username'] = 'Administrator';
$PALANG['pViewlog_domain'] = 'Domene';
$PALANG['pViewlog_action'] = 'Handling';
$PALANG['pViewlog_data'] = 'Data';
$PALANG['pViewlog_button'] = 'Vis';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Fant ikke loggen!</span>';
$PALANG['pSendmail_welcome'] = 'Send E-post.';
$PALANG['pSendmail_admin'] = 'Fra';
$PALANG['pSendmail_to'] = 'Mottaker';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">"Mottaker"-feltet er tomt eller er ugyldig!</span>';
$PALANG['pSendmail_subject'] = 'Emne';
$PALANG['pSendmail_subject_text'] = 'Velkommen';
$PALANG['pSendmail_body'] = 'Melding';
$PALANG['pSendmail_button'] = 'Send beskjed';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Klarte ikke <20> opprette e-postkontoen!</span>';
$PALANG['pSendmail_result_succes'] = 'E-postkontoen er opprettet!';
$PALANG['pAdminMenu_list_admin'] = 'Administrator-liste';
$PALANG['pAdminMenu_list_domain'] = 'Domene-liste';
$PALANG['pAdminMenu_list_virtual'] = 'Virtuell Liste';
$PALANG['pAdminMenu_viewlog'] = 'Vis logg';
$PALANG['pAdminMenu_backup'] = 'Backup';
$PALANG['pAdminMenu_create_domain_admins'] = 'Domene-administratorer';
$PALANG['pAdminMenu_create_admin'] = 'Ny Administrator';
$PALANG['pAdminMenu_create_domain'] = 'Nytt Domene';
$PALANG['pAdminMenu_create_alias'] = 'Legg til Alias';
$PALANG['pAdminMenu_create_mailbox'] = 'Legg til e-postkonto';
$PALANG['pAdminList_admin_domain'] = 'Domene';
$PALANG['pAdminList_admin_username'] = 'Administrator';
$PALANG['pAdminList_admin_count'] = 'Domener';
$PALANG['pAdminList_admin_modified'] = 'Sist endret';
$PALANG['pAdminList_admin_active'] = 'Aktiv';
$PALANG['pAdminList_domain_domain'] = 'Domene';
$PALANG['pAdminList_domain_description'] = 'Beskrivelse';
$PALANG['pAdminList_domain_aliases'] = 'Alias';
$PALANG['pAdminList_domain_mailboxes'] = 'Epostkontoer';
$PALANG['pAdminList_domain_maxquota'] = 'Maks Kvote (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Sist endret';
$PALANG['pAdminList_domain_active'] = 'Aktive';
$PALANG['pAdminList_virtual_button'] = 'Vis';
$PALANG['pAdminList_virtual_welcome'] = 'Oversikt for ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Alias';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Epostkontoer';
$PALANG['pAdminList_virtual_alias_address'] = 'Fra';
$PALANG['pAdminList_virtual_alias_goto'] = 'Til';
$PALANG['pAdminList_virtual_alias_modified'] = 'Sist endret';
$PALANG['pAdminList_virtual_mailbox_username'] = 'E-post';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Navn';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Kvote (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Sist endret';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Aktiv';
$PALANG['pAdminCreate_domain_welcome'] = 'Legg til et nytt domene';
$PALANG['pAdminCreate_domain_domain'] = 'Domene';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Domenet eksisterer!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Beskrivelse';
$PALANG['pAdminCreate_domain_aliases'] = 'Alias';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = deaktivere | 0 = ubegrenset';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Epostkontoer';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = deaktivere | 0 = ubegrenset';
$PALANG['pAdminCreate_domain_maxquota'] = 'Maks Kvote';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = deaktivere | 0 = ubegrenset';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Definer transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Legg til standard Alias';
$PALANG['pAdminCreate_domain_backupmx'] = 'E-postserveren er backup-MX';
$PALANG['pAdminCreate_domain_button'] = 'Legg til domene';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Klarte ikke <20> legge til domenet!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Domenet er lagt til!';
$PALANG['pAdminEdit_domain_welcome'] = 'Endre domenet';
$PALANG['pAdminEdit_domain_domain'] = 'Domene';
$PALANG['pAdminEdit_domain_description'] = 'Beskrivelse';
$PALANG['pAdminEdit_domain_aliases'] = 'Alias';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = deaktivere | 0 = ubegrenset';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Epost kontoer';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = deaktivere | 0 = ubegrenset';
$PALANG['pAdminEdit_domain_maxquota'] = 'Maks kvote';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = deaktivere | 0 = ubegrenset';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Definer transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'E-postservereb er backup-MX';
$PALANG['pAdminEdit_domain_active'] = 'Aktive';
$PALANG['pAdminEdit_domain_button'] = 'Endre';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Klarte ikke <20> oppdatere domenet!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Legg til ny domene-administrator';
$PALANG['pAdminCreate_admin_username'] = 'Administrator';
$PALANG['pAdminCreate_admin_username_text'] = 'E-postadresse';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'E-postadresse<br /><span class="error_msg">Administrator er ikke gyldig adresse!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'E-postadresse<br /><span class="error_msg">Administratoren eksisterer eller er ikke gyldig</span>'; $PALANG['pAdminCreate_admin_password'] = 'Passord';
$PALANG['pAdminCreate_admin_password2'] = 'Passord (igjen)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Passordene er ikke like!<br />Eller feltene er tomme!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Legg til en administrator';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Klarte ikke <20> legge til administratoren!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Administratoren er lagt til!';
$PALANG['pAdminCreate_admin_address'] = 'Domene';
$PALANG['pAdminEdit_admin_welcome'] = 'Endre domene-administrator';
$PALANG['pAdminEdit_admin_username'] = 'Administrator';
$PALANG['pAdminEdit_admin_password'] = 'Passord';
$PALANG['pAdminEdit_admin_password2'] = 'Passord (igjen)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Passordene er ikke like!<br />Eller feltene er tomme!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Aktiv';
$PALANG['pAdminEdit_admin_button'] = 'Endre Administrator';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Klarte ikke <20> endre administratoren!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Administratoren er endret/oppdatert!';
$PALANG['pUsersLogin_welcome'] = 'Brukere, logg inn for <20> endre passord og videresending.';
$PALANG['pUsersLogin_username'] = 'Brukernavn (e-post adr.)';
$PALANG['pUsersLogin_password'] = 'Passord';
$PALANG['pUsersLogin_button'] = 'Logg inn';
$PALANG['pUsersLogin_username_incorrect'] = 'Feil brukernavn! Bruk e-postadressen din for <20> logge inn!';
$PALANG['pUsersLogin_password_incorrect'] = 'Feil passord!';
$PALANG['pUsersMenu_vacation'] = 'Automatisk Svar';
$PALANG['pUsersMenu_edit_alias'] = 'Endre videresending';
$PALANG['pUsersMenu_password'] = 'Endre Passord';
$PALANG['pUsersMain_vacation'] = 'Legg til en beskjed n<>r du har status "ikke tilstede" eller et annet automatisk svar.';
$PALANG['pUsersMain_edit_alias'] = 'Endre videresending.';
$PALANG['pUsersMain_password'] = 'Endre passord.';
$PALANG['pUsersVacation_welcome'] = 'Automatisk Svar.';
$PALANG['pUsersVacation_welcome_text'] = 'Du har allerede autosvar!';
$PALANG['pUsersVacation_subject'] = 'Emne';
$PALANG['pUsersVacation_subject_text'] = 'Ikke tilstede';
$PALANG['pUsersVacation_body'] = 'Melding';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Jeg vil v<>re utilgjengelig fra <date> til <date>.
For viktige henvendelser kan du kontakte <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Ikke tilstede';
$PALANG['pUsersVacation_button_back'] = 'Straks tilbake';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Klarte ikke <20> oppdatere dine autosvar-instillinger!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Ditt autosvar er fjernet';
$PALANG['pCreate_dbLog_createmailbox'] = 'oppret e-postkonto';
$PALANG['pCreate_dbLog_createalias'] = 'opprett alias';
$PALANG['pDelete_dbLog_deletealias'] = 'slett alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'slett e-postkonto';
$PALANG['pEdit_dbLog_editactive'] = 'endre status';
$PALANG['pEdit_dbLog_editalias'] = 'endre alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'endre e-postkonto';
$PALANG['pSearch_welcome'] = 'S<>ker etter: ';
?>

308
languages/pl.lang Normal file
View File

@@ -0,0 +1,308 @@
<?php
//
// Language file Polish
// by Jarek
// updated by Piotr Meyer <aniou at smutek dot pl>
// Encoding iso-8859-2
//
require ('default.lang');
$PALANG['charset'] = 'iso-8859-2';
$PALANG['YES'] = 'Tak';
$PALANG['NO'] = 'Nie';
$PALANG['edit'] = 'Edytuj';
$PALANG['del'] = 'Usu<73>';
$PALANG['confirm'] = 'Jeste<74> przekonany, <20>e chcesz usun<75><6E> to?\n';
$PALANG['confirm_domain'] = 'Czy rzeczywi<77>cie chcesz usun<75><6E> wszystkie wpisy dla tej domeny? To jest proces nieodwracalny!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Sekcja przeznaczona dla administrator<6F>w domen.';
$PALANG['pLogin_username'] = 'Login (email)';
$PALANG['pLogin_password'] = 'Has<61>o';
$PALANG['pLogin_button'] = 'Zaloguj';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Tw<54>j login jest niepoprawny!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Twoje has<61>o jest niepoprawne!</span>';
$PALANG['pLogin_login_users'] = 'Sekcja przeznaczona dla u<>ytkownik<69>w.';
$PALANG['pMenu_overview'] = 'Dane zbiorcze';
$PALANG['pMenu_create_alias'] = 'Dadaj alias';
$PALANG['pMenu_create_mailbox'] = 'Dodaj konto';
$PALANG['pMenu_sendmail'] = 'Wy<57>lij Email';
$PALANG['pMenu_password'] = 'Has<61>o';
$PALANG['pMenu_viewlog'] = 'Logi';
$PALANG['pMenu_logout'] = 'Wyloguj';
$PALANG['pMain_welcome'] = 'Witamy w Postfix Adminie!';
$PALANG['pMain_overview'] = 'Lista Twoich alias<61>w i kont pocztowych. Mo<4D>esz je tutaj edytowa<77> / usuwa<77>.';
$PALANG['pMain_create_alias'] = 'Utw<74>rz nowy alias dla Twojej domeny.';
$PALANG['pMain_create_mailbox'] = 'Utw<74>rz nowe konto pocztowe dla Twojej domeny.';
$PALANG['pMain_sendmail'] = 'Wy<57>lij wiadomo<6D><6F> do nowo utworzonego konta pocztowego.';
$PALANG['pMain_password'] = 'Zmie<69> has<61>o swojego konta administracyjnego.';
$PALANG['pMain_viewlog'] = 'Poka<6B> pliki log<6F>w.';
$PALANG['pMain_logout'] = 'Zako<6B>cz prac<61> z systemem';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Id<49>';
$PALANG['pOverview_welcome'] = 'Dane zbiorcze dla domeny ';
$PALANG['pOverview_alias_alias_count'] = 'Aliasy';
$PALANG['pOverview_alias_mailbox_count'] = 'Konta';
$PALANG['pOverview_alias_address'] = 'Od';
$PALANG['pOverview_alias_goto'] = 'Do';
$PALANG['pOverview_alias_modified'] = 'Ostatnio zmodyfikowany';
$PALANG['pOverview_mailbox_username'] = 'Email';
$PALANG['pOverview_mailbox_name'] = 'Name';
$PALANG['pOverview_mailbox_quota'] = 'Quota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Ostatnio zmodyfikowany';
$PALANG['pOverview_mailbox_active'] = 'Aktywny';
$PALANG['pOverview_vacation_edit'] = 'Vacation';
$PALANG['pOverview_get_domain'] = 'Domena';
$PALANG['pOverview_get_aliases'] = 'Aliasy';
$PALANG['pOverview_get_mailboxes'] = 'Konta';
$PALANG['pOverview_get_quota'] = 'Mailbox Quota (MB)';
$PALANG['pOverview_get_modified'] = 'Ostatnio zmodyfikowany';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Nie mo<6D>na usun<75><6E> tego wpisu ';
$PALANG['pDelete_postdelete_error'] = '<span class="error_msg">Nie mo<6D>na usun<75><6E> konta ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Ta domena nie nale<6C>y do Ciebie ';
$PALANG['pDelete_alias_error'] = '<span class="error_msg">Nie mo<6D>na usun<75><6E> aliasu ';
$PALANG['pCreate_alias_welcome'] = 'Utw<74>rz nowy alias dla Twojej domeny.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">ALIAS jest niepoprawny!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Taki adres email juz istnieje, prosz<73> wybra<72> inny!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Tw<54>j limit alias<61>w zosta<74> osi<73>gniety!</span>';
$PALANG['pCreate_alias_goto'] = 'Do';
$PALANG['pCreate_alias_button'] = 'Dodaj alias';
$PALANG['pCreate_alias_goto_text'] = 'Gdzie ten mail powinien by<62> wys<79>any.';
$PALANG['pCreate_alias_goto_text_error'] = 'Gdzie ten email powinien dotrze<7A>.<br /><span class="error_msg">The TO is not valid!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Nie mo<6D>na doda<64> aliasu do tabeli alias<61>w!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Alias zosta<74> dodany do tabeli alias<61>w!';
$PALANG['pCreate_alias_catchall_text'] = 'Aby utworzy<7A> domy<6D>lne konto dla domeny (catch-all) podaj "*" (gwiazdk<64>) jako alias.<br />Je<4A>li chcesz przekazywa<77> ca<63>o<EFBFBD><6F> poczty do innej domeny, wpisz jako alias "*@domena.tld".';
$PALANG['pEdit_alias_welcome'] = 'Edytuj alias dla Twojej domeny.<br />Jeden wpis na lini<6E>.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Nie mo<6D>na zokalizowa<77> aliasu!</span>';
$PALANG['pEdit_alias_goto'] = 'Do';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Nie poda<64>e<EFBFBD> adresu odbiorcy (pole "To")</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Wpisany adres email jest niepoprawny: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Ta domena nie nale<6C>y do Ciebie: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Dostarczaj do mojej skrzynki.';
$PALANG['pEdit_alias_forward_only'] = 'Prze<7A>lij jedynie na podane adresy.';
$PALANG['pEdit_alias_button'] = 'Edytuj alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Nie mo<6D>na zmodyfikowa<77> aliasu!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Utw<74>rz lokalne konto pocztowe dla Twojej domeny.';
$PALANG['pCreate_mailbox_username'] = 'Nazwa u<>ytkownika';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">Adres EMAIL jest niepoprawny!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Taki adres email ju<6A> istnieje, prosz<73> wybra<72> inny!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Tw<54>j limit kont pocztowych zosta<74> osi<73>gniety!</span>';
$PALANG['pCreate_mailbox_password'] = 'Has<61>o';
$PALANG['pCreate_mailbox_password2'] = 'Has<61>o (ponownie)';
$PALANG['pCreate_mailbox_password_text'] = 'Has<61>o do POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Has<61>o do POP3/IMAP<br /><span class="error_msg">Wpisane has<61>o nie pasuje!<br />Lub jest puste!</span>';
$PALANG['pCreate_mailbox_name'] = 'Nazwa';
$PALANG['pCreate_mailbox_name_text'] = 'Pe<50>na nazwa';
$PALANG['pCreate_mailbox_quota'] = 'Udzia<69>';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Podany udzia<69> jest za wysoki!</span>';
$PALANG['pCreate_mailbox_active'] = 'Aktywny';
$PALANG['pCreate_mailbox_mail'] = 'Utw<74>rz konto';
$PALANG['pCreate_mailbox_button'] = 'Dodaj konto';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Nie mo<6D>na doda<64> konta do tabeli kont!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Konto zosta<74>o dodane do tabeli kont!';
$PALANG['pEdit_mailbox_welcome'] = 'Edytuj konto w Twojej domenie.';
$PALANG['pEdit_mailbox_username'] = 'Nazwa u<>ytkownika';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Nie mo<6D>na zlokalizowa<77> konta!</span>';
$PALANG['pEdit_mailbox_password'] = 'Nowe has<61>o';
$PALANG['pEdit_mailbox_password2'] = 'Nowe has<61>o (ponownie)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Wpisane has<61>o nie pasuje!</span>';
$PALANG['pEdit_mailbox_name'] = 'Nazwa';
$PALANG['pEdit_mailbox_name_text'] = 'Pe<50>na nazwa';
$PALANG['pEdit_mailbox_quota'] = 'Udzia<69>';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Podany udzia<69> jest za wysoki!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Ta domena nie nale<6C>y do Ciebie: ';
$PALANG['pEdit_mailbox_button'] = 'Edytuj konto';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Nie mo<6D>na zmieni<6E> parametr<74>w!</span>';
$PALANG['pPassword_welcome'] = 'Zmie<69> Swoje has<61>o.';
$PALANG['pPassword_admin'] = 'Login';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Podany LOGIN nie pasuje!</span>';
$PALANG['pPassword_password_current'] = 'Aktualne has<61>o';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Nieprawid<69>owe aktualne has<61>o!</span>';
$PALANG['pPassword_password'] = 'Nowe has<61>o';
$PALANG['pPassword_password2'] = 'Nowe has<61>o (ponownie)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Podane has<61>o nie pasuje!<br />Lub jest puste!</span>';
$PALANG['pPassword_button'] = 'Zmie<69> has<61>o';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Nie mo<6D>na zmieni<6E> Twojego has<61>a!</span>';
$PALANG['pPassword_result_succes'] = 'Twoje has<61>o zosta<74>o zmienione!';
$PALANG['pViewlog_welcome'] = 'Poka<6B> 10 ostatnich dzia<69>a<EFBFBD> dla ';
$PALANG['pViewlog_timestamp'] = 'Data';
$PALANG['pViewlog_username'] = 'Administrator';
$PALANG['pViewlog_domain'] = 'Domena';
$PALANG['pViewlog_action'] = 'Dzia<69>anie';
$PALANG['pViewlog_data'] = 'Dane';
$PALANG['pViewlog_button'] = 'Id<49>';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Nie mo<6D>na odszuka<6B> log<6F>w!</span>';
$PALANG['pSendmail_welcome'] = 'Wy<57>lij wiadomo<6D><6F>.';
$PALANG['pSendmail_admin'] = 'Od';
$PALANG['pSendmail_to'] = 'Do';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Podany adres jest niepoprawny, b<>d<EFBFBD> pole "Do" jest puste!</span>';
$PALANG['pSendmail_subject'] = 'Temat';
$PALANG['pSendmail_subject_text'] = 'Witamy';
$PALANG['pSendmail_body'] = 'Tekst';
$PALANG['pSendmail_button'] = 'Wy<57>lij wiadomo<6D><6F>';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Nie mo<6D>na utworzy<7A> konta!</span>';
$PALANG['pSendmail_result_succes'] = 'Konto zosta<74>o utworzone!';
$PALANG['pAdminMenu_list_admin'] = 'Lista administrator<6F>w';
$PALANG['pAdminMenu_list_domain'] = 'Lista domen';
$PALANG['pAdminMenu_list_virtual'] = 'Virtual List';
$PALANG['pAdminMenu_viewlog'] = 'Logi';
$PALANG['pAdminMenu_backup'] = 'Kopia bezpiecze<7A>stwa';
$PALANG['pAdminMenu_create_domain_admins'] = 'Administratorzy domeny';
$PALANG['pAdminMenu_create_admin'] = 'Nowy administrator';
$PALANG['pAdminMenu_create_domain'] = 'Nowa domena';
$PALANG['pAdminMenu_create_alias'] = 'Dodaj alias';
$PALANG['pAdminMenu_create_mailbox'] = 'Dodaj konto';
$PALANG['pAdminList_admin_domain'] = 'Domena';
$PALANG['pAdminList_admin_username'] = 'Admin';
$PALANG['pAdminList_admin_count'] = 'Domeny';
$PALANG['pAdminList_admin_modified'] = 'Ostatnio zmodyfikowane';
$PALANG['pAdminList_admin_active'] = 'Aktywny';
$PALANG['pAdminList_domain_domain'] = 'Domena';
$PALANG['pAdminList_domain_description'] = 'Opis';
$PALANG['pAdminList_domain_aliases'] = 'Aliasy';
$PALANG['pAdminList_domain_mailboxes'] = 'Konta';
$PALANG['pAdminList_domain_maxquota'] = 'Max udzia<69> (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Ostatnio zmodyfikowane';
$PALANG['pAdminList_domain_active'] = 'Aktywne';
$PALANG['pAdminList_virtual_button'] = 'Id<49>';
$PALANG['pAdminList_virtual_welcome'] = 'Overview for ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliasy';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Konta';
$PALANG['pAdminList_virtual_alias_address'] = 'Od';
$PALANG['pAdminList_virtual_alias_goto'] = 'Do';
$PALANG['pAdminList_virtual_alias_modified'] = 'Ostatnio zmodyfikowane';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Email';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Nazwa';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Udzia<69> (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Ostatnio zmodyfikowane';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Aktywne';
$PALANG['pAdminCreate_domain_welcome'] = 'Dodaj now<6F> domen<65>';
$PALANG['pAdminCreate_domain_domain'] = 'Domena';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Podana domena ju<6A> istnieje!</span>';
$PALANG['pAdminCreate_domain_domain_text_error2'] = '<span class="error_msg">Podana domena jest nieprawid<69>owa!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Opis';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliasy';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = wy<77><79>czone | 0 = bez limit<69>w';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Konta';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = wy<77><79>czone | 0 = bez limit<69>w';
$PALANG['pAdminCreate_domain_maxquota'] = 'Max udzia<69>';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = wy<77><79>czone | 0 = bez limit<69>w';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Dodaj domy<6D>lne aliasy mailowe';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Dodaj domen<65>';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Nie mo<6D>na doda<64> domeny!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Domena zosta<74>a dodana!';
$PALANG['pAdminEdit_domain_welcome'] = 'Edytuj domen<65>';
$PALANG['pAdminEdit_domain_domain'] = 'Domena';
$PALANG['pAdminEdit_domain_description'] = 'Opis';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliasy';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = wy<77><79>czone | 0 = bez limit<69>w';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Konta';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = wy<77><79>czone | 0 = bez limit<69>w';
$PALANG['pAdminEdit_domain_maxquota'] = 'Max udzia<69>';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = wy<77><79>czone | 0 = bez limit<69>w';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Aktywne';
$PALANG['pAdminEdit_domain_button'] = 'Edytuj domen<65>';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Nie mo<6D>na zmodyfikowa<77> domeny!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Dodaj konto administratora';
$PALANG['pAdminCreate_admin_username'] = 'Administrator';
$PALANG['pAdminCreate_admin_username_text'] = 'Adres email';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'Adres email<br /><span class="error_msg">Administartor nie jest poprawnym adresem email!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'Adres email<br /><span class="error_msg">Administrator ju<6A> istnieje lub jest niepoprawny</span>';
$PALANG['pAdminCreate_admin_password'] = 'Has<61>o';
$PALANG['pAdminCreate_admin_password2'] = 'Has<61>o (ponownie)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Podane has<61>o nie pasuje!<br />Lub jest puste!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Dodaj administratora';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Nie mo<6D>na doda<64> administratora!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Administrator zosta<74> dodany!';
$PALANG['pAdminCreate_admin_address'] = 'Domena';
$PALANG['pAdminEdit_admin_welcome'] = 'Edytuj administratora domeny';
$PALANG['pAdminEdit_admin_username'] = 'Administrator';
$PALANG['pAdminEdit_admin_password'] = 'Has<61>o';
$PALANG['pAdminEdit_admin_password2'] = 'Has<61>o (ponownie)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Podane has<61>o nie pasuje!<br />Lub jest puste!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Aktywny';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Edytuj administratora';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Nie mo<6D>na zmodyfikowa<77> administratora!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Administrator zosta<74> zmodyfikowany!';
$PALANG['pUsersLogin_welcome'] = 'Zaloguj si<73> <20>eby zmieni<6E> has<61>o albo doda<64> aliasy.';
$PALANG['pUsersLogin_username'] = 'U<>ytkownik (email)';
$PALANG['pUsersLogin_password'] = 'Has<61>o';
$PALANG['pUsersLogin_button'] = 'Zaloguj';
$PALANG['pUsersLogin_username_incorrect'] = 'Podana nazwa u<>ytkownika jest nieprawid<69>owa! ';
$PALANG['pUsersLogin_password_incorrect'] = 'Podane has<61>o jest nieprawid<69>owe!';
$PALANG['pUsersMenu_vacation'] = 'Auto odpowied<65>';
$PALANG['pUsersMenu_edit_alias'] = 'Zmie<69> przekierowania';
$PALANG['pUsersMenu_password'] = 'Zmie<69> has<61>o';
$PALANG['pUsersMain_vacation'] = 'Ustaw "out of office" wiadomo<6D><6F> lub auto odpowied<65>.';
$PALANG['pUsersMain_edit_alias'] = 'Zmie<69> przekierowania wiadomo<6D>ci.';
$PALANG['pUsersMain_password'] = 'Zmie<69> aktualne has<61>o.';
$PALANG['pUsersVacation_welcome'] = 'Auto odpowied<65>.';
$PALANG['pUsersVacation_welcome_text'] = 'Masz ju<6A> skonfigurowan<61> auto odpowied<65>!';
$PALANG['pUsersVacation_subject'] = 'Temat';
$PALANG['pUsersVacation_subject_text'] = 'Poza biurem';
$PALANG['pUsersVacation_body'] = 'Tekst';
$PALANG['pUsersVacation_body_text'] = <<<EOM
I will be away from <date> until <date>.
For urgent matters you can contact <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Nieobecny/a';
$PALANG['pUsersVacation_button_back'] = 'Zaraz wracam';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Nie mog<6F> zaktualizowa<77> ustawie<69> Twojej auto odpowiedzi!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Twoja auto odpowied<65> zosta<74>a usuni<6E>ta!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

301
languages/pt-br.lang Normal file
View File

@@ -0,0 +1,301 @@
<?php
//
// Language file Portuguese - Brazil
// by Roberto
//
require ('default.lang');
$PALANG['YES'] = 'Sim';
$PALANG['NO'] = 'N<>o';
$PALANG['edit'] = 'Modificar';
$PALANG['del'] = 'Apagar';
$PALANG['confirm'] = 'Voc<6F> deseja apagar esse registro ?\n';
$PALANG['confirm_domain'] = 'Voc<6F> tem certeza que quer apagar todos os registros deste dom<6F>nio ?\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Administrador de e-mail, digite aqui seu login';
$PALANG['pLogin_username'] = 'Usu<73>rio (e-mail)';
$PALANG['pLogin_password'] = 'Senha';
$PALANG['pLogin_button'] = 'Entrar';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">O usu<73>rio <20> inv<6E>lido. Certifique-se de ter digitado o e-mail corretamente</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Senha inv<6E>lida!</span>';
$PALANG['pLogin_login_users'] = 'Usu<73>rios, cliquem aqui para suas op<6F><70>es';
$PALANG['pMenu_overview'] = 'Vis<69>o geral';
$PALANG['pMenu_create_alias'] = 'Criar alias';
$PALANG['pMenu_create_mailbox'] = 'Criar conta de e-mail';
$PALANG['pMenu_sendmail'] = 'Enviar e-mail';
$PALANG['pMenu_password'] = 'Senha';
$PALANG['pMenu_viewlog'] = 'Ver hist<73>rico';
$PALANG['pMenu_logout'] = 'Sair';
$PALANG['pMain_welcome'] = 'Bem-vindo ao Postfix Admin!';
$PALANG['pMain_overview'] = 'Veja os aliases e as contas de e-mail.(Modificar/Apagar).';
$PALANG['pMain_create_alias'] = 'Crie novo alias para o seu dom<6F>nio.';
$PALANG['pMain_create_mailbox'] = 'Crie nova conta de e-mail para o seu dom<6F>nio.';
$PALANG['pMain_sendmail'] = 'Envie uma mensagem para uma nova conta criada';
$PALANG['pMain_password'] = 'Mudar a senha da conta Administrador.';
$PALANG['pMain_viewlog'] = 'Ver o hist<73>rico.';
$PALANG['pMain_logout'] = 'Sair do sistema.';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Ir';
$PALANG['pOverview_welcome'] = 'Vis<69>o geral para ';
$PALANG['pOverview_alias_alias_count'] = 'Aliases';
$PALANG['pOverview_alias_mailbox_count'] = 'Contas de e-mail';
$PALANG['pOverview_alias_address'] = 'De';
$PALANG['pOverview_alias_goto'] = 'Para';
$PALANG['pOverview_alias_modified'] = '<27>ltima modifica<63><61>o';
$PALANG['pOverview_mailbox_username'] = 'Usu<73>rio';
$PALANG['pOverview_mailbox_name'] = 'Nome';
$PALANG['pOverview_mailbox_quota'] = 'Limite (MB)';
$PALANG['pOverview_mailbox_modified'] = '<27>ltima modifica<63><61>o';
$PALANG['pOverview_mailbox_active'] = 'Ativo';
$PALANG['pOverview_get_domain'] = 'Dom<6F>nio';
$PALANG['pOverview_get_aliases'] = 'Aliases';
$PALANG['pOverview_get_mailboxes'] = 'Contas de e-mail';
$PALANG['pOverview_get_quota'] = 'Limite das contas de e-mail (MB)';
$PALANG['pOverview_get_modified'] = '<27>ltima modifica<63><61>o';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">N<>o foi poss<73>vel apagar esse registro ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Esse dom<6F>nio n<>o <20> seu! ';
$PALANG['pCreate_alias_welcome'] = 'Criar um novo alias para este dom<6F>nio';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br><span class="error_msg">Esse ALIAS n<>o <20> v<>lido!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br><span class="error_msg">Esse endere<72>o de e-mail j<> existe. Por favor, escolha outro nome!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br><span class="error_msg">Voc<6F> alcan<61>ou seu limite de aliases!</span>';
$PALANG['pCreate_alias_goto'] = 'Para';
$PALANG['pCreate_alias_button'] = 'Criar um alias';
$PALANG['pCreate_alias_goto_text'] = 'Enviar as mensagens para';
$PALANG['pCreate_alias_goto_text_error'] = 'Os endere<72>os de e-mail.<br /><span class="error_msg">n<>o s<>o v<>lidos!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Imposs<73>vel adicionar alias <20> tabela de aliases!</span>';
$PALANG['pCreate_alias_result_succes'] = 'O alias j<> foi criado!';
$PALANG['pCreate_alias_catchall_text'] = 'Para criar um alias global, utilize "*".<br />Para encaminhar de um dom<6F>nio a outro, use "@domain.tld" no campo Para';
$PALANG['pEdit_alias_welcome'] = 'Modificar um alias neste dom<6F>nio.<br>Uma entrada por linha.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Imposs<73>vel encontrar o alias!</span>';
$PALANG['pEdit_alias_goto'] = 'Para';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Voc<6F> n<>o digitou um destinat<61>rio (Para)</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">O e-mail que voc<6F> digitou n<>o <20> v<>lido: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Esse dom<6F>nio n<>o <20> seu: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Modificar o alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Imposs<73>vel modificar esse alias!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Criar conta de e-mail para esse dom<6F>nio.';
$PALANG['pCreate_mailbox_username'] = 'Usu<73>rio';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br><span class="error_msg">Esse e-mail <20> inv<6E>lido!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br><span class="error_msg">Esse e-mail j<> existe! Por favor, escolha outro nome</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br><span class="error_msg">Voc<6F> alcan<61>ou o limite de contas de e-mail!</span>';
$PALANG['pCreate_mailbox_password'] = 'Senha';
$PALANG['pCreate_mailbox_password2'] = 'Senha (confirma<6D><61>o)';
$PALANG['pCreate_mailbox_password_text'] = 'Senha para a conta POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Senha para a conta POP3/IMAP<br /><span class="error_msg">A senha <20> inv<6E>lida!<br />ou n<>o foi digitada</span>';
$PALANG['pCreate_mailbox_name'] = 'Nome';
$PALANG['pCreate_mailbox_name_text'] = 'Nome completo';
$PALANG['pCreate_mailbox_quota'] = 'Limite';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">O limite especificado <20> muito alto!</span>';
$PALANG['pCreate_mailbox_active'] = 'Ativo';
$PALANG['pCreate_mailbox_mail'] = 'Criar e-mail';
$PALANG['pCreate_mailbox_button'] = 'Adicionar e-mail';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Imposs<73>vel criar conta de e-mail!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'O e-mail j<> foi criado!';
$PALANG['pEdit_mailbox_welcome'] = 'Modificar conta de e-mail.';
$PALANG['pEdit_mailbox_username'] = 'Usu<73>rio';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Imposs<73>vel encontrar esse e-mail!</span>';
$PALANG['pEdit_mailbox_password'] = 'Nova senha';
$PALANG['pEdit_mailbox_password2'] = 'Nova senha (confirma<6D><61>o)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">As senhas s<>o diferentes!</span>';
$PALANG['pEdit_mailbox_name'] = 'Nome';
$PALANG['pEdit_mailbox_quota'] = 'Limite';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">O limite especificado <20> muito alto!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Esse dom<6F>nio n<>o <20> seu: ';
$PALANG['pEdit_mailbox_button'] = 'Modificar conta de e-mail';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Imposs<73>vel mudar sua senha!</span>';
$PALANG['pPassword_welcome'] = 'Mudar senha.';
$PALANG['pPassword_admin'] = 'Usu<73>rio';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">As informa<6D><61>es fornecidas n<>o s<>o de uma conta v<>lida!</span>';
$PALANG['pPassword_password_current'] = 'Senha atual';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Voc<6F> n<>o digitou a senha atual!</span>';
$PALANG['pPassword_password'] = 'Nova senha';
$PALANG['pPassword_password2'] = 'Nova senha (confirma<6D><61>o)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">As senhas digitadas n<>o correspondem!<br />Ou s<>o nulas!</span>';
$PALANG['pPassword_button'] = 'Mudar senha';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Imposs<73>vel modificar a senha!</span>';
$PALANG['pPassword_result_succes'] = 'Sua senha foi modificada com sucesso!';
$PALANG['pViewlog_welcome'] = 'Ver as 10 <20>ltimas a<><61>es para ';
$PALANG['pViewlog_timestamp'] = 'Data/Hora';
$PALANG['pViewlog_username'] = 'Administrador';
$PALANG['pViewlog_domain'] = 'Dom<6F>nio';
$PALANG['pViewlog_action'] = 'A<><41>o';
$PALANG['pViewlog_data'] = 'Informa<6D><61>o';
$PALANG['pViewlog_button'] = 'Ir';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">N<>o foi poss<73>vel achar os hist<73>ricos!</span>';
$PALANG['pSendmail_welcome'] = 'Enviar um e-mail.';
$PALANG['pSendmail_admin'] = 'De';
$PALANG['pSendmail_to'] = 'Para';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">(Para) est<73> vazio ou n<>o <20> um e-mail v<>lido!</span>';
$PALANG['pSendmail_subject'] = 'Assunto';
$PALANG['pSendmail_subject_text'] = 'Bem-vindo';
$PALANG['pSendmail_body'] = 'Mensagem';
$PALANG['pSendmail_button'] = 'Enviar um e-mail';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Erro no envio da mensagem!</span>';
$PALANG['pSendmail_result_succes'] = 'A mensagem foi enviada!';
$PALANG['pAdminMenu_list_admin'] = 'Lista de administradores';
$PALANG['pAdminMenu_list_domain'] = 'Lista de dom<6F>nios';
$PALANG['pAdminMenu_list_virtual'] = 'Lista virtual';
$PALANG['pAdminMenu_viewlog'] = 'Ver hist<73>rico';
$PALANG['pAdminMenu_backup'] = 'Backup';
$PALANG['pAdminMenu_create_domain_admins'] = 'Administradores de dom<6F>nios';
$PALANG['pAdminMenu_create_admin'] = 'Novo administrador';
$PALANG['pAdminMenu_create_domain'] = 'Novo dom<6F>nio';
$PALANG['pAdminMenu_create_alias'] = 'Criar alias';
$PALANG['pAdminMenu_create_mailbox'] = 'Criar e-mail';
$PALANG['pAdminList_admin_domain'] = 'Dom<6F>nio';
$PALANG['pAdminList_admin_username'] = 'Administrador';
$PALANG['pAdminList_admin_count'] = 'Dom<6F>nios';
$PALANG['pAdminList_admin_modified'] = '<27>ltima modifica<63><61>o';
$PALANG['pAdminList_admin_active'] = 'Ativo';
$PALANG['pAdminList_domain_domain'] = 'Dom<6F>nio';
$PALANG['pAdminList_domain_description'] = 'Descri<72><69>o';
$PALANG['pAdminList_domain_aliases'] = 'Alias';
$PALANG['pAdminList_domain_mailboxes'] = 'Contas de e-mail';
$PALANG['pAdminList_domain_maxquota'] = 'Limite m<>ximo (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = '<27>ltima modifica<63><61>o';
$PALANG['pAdminList_domain_active'] = 'Ativo';
$PALANG['pAdminList_virtual_button'] = 'Ir';
$PALANG['pAdminList_virtual_welcome'] = 'Vis<69>o geral para ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Alias';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Contas de e-mail';
$PALANG['pAdminList_virtual_alias_address'] = 'De';
$PALANG['pAdminList_virtual_alias_goto'] = 'Para';
$PALANG['pAdminList_virtual_alias_modified'] = '<27>ltima modifica<63><61>o';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Usu<73>rio';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Nome';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Limite (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = '<27>ltima modifica<63><61>o';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Ativo';
$PALANG['pAdminCreate_domain_welcome'] = 'Criar novo dom<6F>nio';
$PALANG['pAdminCreate_domain_domain'] = 'Dom<6F>nio';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">O dom<6F>nio j<> existe!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Descri<72><69>o';
$PALANG['pAdminCreate_domain_aliases'] = 'Alias';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = desativar | 0 = ilimitado';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Contas de e-mail';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = desativar | 0 = ilimitado';
$PALANG['pAdminCreate_domain_maxquota'] = 'Limite m<>ximo';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = desativar | 0 = ilimitado';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Adicionar aliases (padr<64>o)';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Criar dom<6F>nio';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Imposs<73>vel criar dom<6F>nio!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'O dom<6F>nio j<> existe!';
$PALANG['pAdminEdit_domain_welcome'] = 'Modificar dom<6F>nio';
$PALANG['pAdminEdit_domain_domain'] = 'Dom<6F>nio';
$PALANG['pAdminEdit_domain_description'] = 'Descri<72><69>o';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliases';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = desativar | 0 = ilimitado';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Contas de e-mail';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = desativar | 0 = ilimitado';
$PALANG['pAdminEdit_domain_maxquota'] = 'Limite m<>ximo';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = desativar | 0 = ilimitado';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Ativo';
$PALANG['pAdminEdit_domain_button'] = 'Modificar dom<6F>nio';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Imposs<73>vel modificar dom<6F>nio!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Criar novo administrador de dom<6F>nio';
$PALANG['pAdminCreate_admin_username'] = 'Administrador';
$PALANG['pAdminCreate_admin_username_text'] = 'Usu<73>rio (e-mail)';
$PALANG['pAdminCreate_admin_username_text_error1'] = '<span class="error_msg">N<>o <20> um nome de administrador v<>lido</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = '<span class="error_msg">Esse administrador n<>o existe ou n<>o <20> v<>lido</span>';
$PALANG['pAdminCreate_admin_password'] = 'Senha';
$PALANG['pAdminCreate_admin_password2'] = 'Senha (confirma<6D><61>o)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">A senha digitada n<>o <20> v<>lida<br> ou <20> nula!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Criar um administrador';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Imposs<73>vel criar administrador!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'O administrador j<> foi criado!';
$PALANG['pAdminCreate_admin_address'] = 'Dom<6F>nio';
$PALANG['pAdminEdit_admin_welcome'] = 'Modificar dm<64>nio';
$PALANG['pAdminEdit_admin_username'] = 'Administrador';
$PALANG['pAdminEdit_admin_password'] = 'Senha';
$PALANG['pAdminEdit_admin_password2'] = 'Senha (confirma<6D><61>o)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">A senha digitada n<>o <20> v<>lida<br /> ou <20> nula!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Ativo';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Modificar administdrador';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Imposs<73>vel modificar administrador !</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Administrador j<> foi criado!';
$PALANG['pUsersLogin_welcome'] = 'Digite seu e-mail e sua senha para modificar a senha e seus aliases.';
$PALANG['pUsersLogin_username'] = 'Usu<73>rio (e-mail)';
$PALANG['pUsersLogin_password'] = 'Senha';
$PALANG['pUsersLogin_button'] = 'Entrar';
$PALANG['pUsersLogin_username_incorrect'] = 'O usu<73>rio <20> inv<6E>lido. Certifique-se de ter digitado o e-mail corretamente!';
$PALANG['pUsersLogin_password_incorrect'] = 'Sua senha <20> inv<6E>lida!';
$PALANG['pUsersMenu_vacation'] = 'Resposta autom<6F>tica';
$PALANG['pUsersMenu_edit_alias'] = 'Modificar redirecionamento';
$PALANG['pUsersMenu_password'] = 'Modificar senha';
$PALANG['pUsersMain_vacation'] = 'Configurar uma mensagem para a resposta autom<6F>tica.';
$PALANG['pUsersMain_edit_alias'] = 'Modificar e-mail para redirecionamento.';
$PALANG['pUsersMain_password'] = 'Changer votre mot de passe.';
$PALANG['pUsersVacation_welcome'] = 'Resposta autom<6F>tica.';
$PALANG['pUsersVacation_welcome_text'] = 'Sua resposta autom<6F>tica j<> est<73> configurada!';
$PALANG['pUsersVacation_subject'] = 'Assunto';
$PALANG['pUsersVacation_subject_text'] = 'Resposta de encaminhamento';
$PALANG['pUsersVacation_body'] = 'Mensagem';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Eu estarei ausente de <date> at<61> <date>.
Em caso de urg<72>ncia, favor contatar <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Ausente';
$PALANG['pUsersVacation_button_back'] = 'Retorno';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Imposs<73>vel atualizar suas configura<72><61>es para resposta autom<6F>tica!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Sua resposta autom<6F>tica foi removida!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

302
languages/ru.lang Normal file
View File

@@ -0,0 +1,302 @@
<?php
//
// Language file Rusian
// by Paul
//
require ('default.lang');
$PALANG['charset'] = 'windows-1251';
$PALANG['YES'] = '<27><>';
$PALANG['NO'] = '<27><><EFBFBD>';
$PALANG['edit'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['del'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['confirm'] = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>?\n';
$PALANG['confirm_domain'] = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>? <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pLogin_username'] = '<27><><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>)';
$PALANG['pLogin_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pLogin_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>)!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pLogin_login_users'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMenu_overview'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_create_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_create_mailbox'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$PALANG['pMenu_sendmail'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMenu_viewlog'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
$PALANG['pMenu_logout'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pMain_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Postfix Admin!';
$PALANG['pMain_overview'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_create_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_create_mailbox'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_sendmail'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>.';
$PALANG['pMain_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pMain_viewlog'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (log files).';
$PALANG['pMain_logout'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> ';
$PALANG['pOverview_alias_alias_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_alias_mailbox_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_alias_address'] = '<27><>';
$PALANG['pOverview_alias_goto'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pOverview_alias_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_username'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_name'] = '<27><><EFBFBD>';
$PALANG['pOverview_mailbox_quota'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (MB)';
$PALANG['pOverview_mailbox_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_aliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_quota'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> (MB)';
$PALANG['pOverview_get_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pDelete_delete_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> ';
$PALANG['pCreate_alias_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pCreate_alias_address'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></span>';
$PALANG['pCreate_alias_goto'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pCreate_alias_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_alias_goto_text'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pCreate_alias_goto_text_error'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pCreate_alias_catchall_text'] = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> catch-all <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "*" <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.<br /><3E><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "*@domain.tld" <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$PALANG['pEdit_alias_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.<br /><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pEdit_alias_address'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_alias_goto'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD></span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg"> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pCreate_mailbox_username'] = '<27><><EFBFBD>';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg"><3E><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg"><3E><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD> <20><><EFBFBD>)';
$PALANG['pCreate_mailbox_password_text'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> POP3/IMAP<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!<br /> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_name'] = '<27><><EFBFBD>';
$PALANG['pCreate_mailbox_name_text'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
$PALANG['pCreate_mailbox_quota'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_mail'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pEdit_mailbox_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pEdit_mailbox_username'] = '<27><><EFBFBD>';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_mailbox_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD> <20><><EFBFBD>)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_mailbox_name'] = '<27><><EFBFBD>';
$PALANG['pEdit_mailbox_quota'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>: ';
$PALANG['pEdit_mailbox_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pPassword_admin'] = '<27><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg"><3E><><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>, <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_password_current'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg"><3E><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD> <20><><EFBFBD>)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!<br /><3E><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pPassword_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_result_succes'] = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pViewlog_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 10 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> ';
$PALANG['pViewlog_timestamp'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_action'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_data'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pViewlog_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pViewlog_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>-<2D><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pSendmail_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pSendmail_admin'] = '<27><>';
$PALANG['pSendmail_to'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pSendmail_subject'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pSendmail_subject_text'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pSendmail_body'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pSendmail_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pSendmail_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>!</span>';
$PALANG['pSendmail_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pAdminMenu_list_admin'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_list_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_list_virtual'] = 'Virtual List';
$PALANG['pAdminMenu_viewlog'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_backup'] = 'Backup';
$PALANG['pAdminMenu_create_domain_admins'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_admin'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminMenu_create_mailbox'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_description'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_aliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_maxquota'] = '<27><><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD> (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> ';
$PALANG['pAdminList_virtual_alias_alias_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_alias_address'] = '<27><>';
$PALANG['pAdminList_virtual_alias_goto'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_alias_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_username'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_name'] = '<27><><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_quota'] = '<27><><EFBFBD><EFBFBD><EFBFBD> (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_domain_description'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_aliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_maxquota'] = '<27><><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pAdminEdit_domain_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_description'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_aliases'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_mailboxes'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_maxquota'] = '<27><><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> | 0 = <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_username_text'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_username_text_error1'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD></span>';
$PALANG['pAdminCreate_admin_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD> <20><><EFBFBD>)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!<br /><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pAdminCreate_admin_address'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_username'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_password2'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD> <20><><EFBFBD>)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!<br /><3E><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminEdit_admin_active'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pUsersLogin_welcome'] = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pUsersLogin_username'] = '<27><><EFBFBD> (<28><><EFBFBD><EFBFBD>)';
$PALANG['pUsersLogin_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersLogin_button'] = '<27><><EFBFBD>';
$PALANG['pUsersLogin_username_incorrect'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pUsersLogin_password_incorrect'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pUsersMenu_vacation'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersMenu_edit_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersMenu_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersMain_vacation'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "<22><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pUsersMain_edit_alias'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pUsersMain_password'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pUsersVacation_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$PALANG['pUsersVacation_welcome_text'] = '<27> <20><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pUsersVacation_subject'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_subject_text'] = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_body'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_body_text'] = <<<EOM
<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <date> <20><> <date>.
<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <contact person>.
EOM;
$PALANG['pUsersVacation_button_away'] = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_button_back'] = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pUsersVacation_result_succes'] = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

303
languages/sl.lang Normal file
View File

@@ -0,0 +1,303 @@
<?php
//
// Language file Slovenian
// by Nejc Skoberne <nejc at skoberne dot net>
// Encoding iso-8859-2
//
require ('default.lang');
$PALANG['charset'] = 'iso-8859-2';
$PALANG['YES'] = 'DA';
$PALANG['NO'] = 'NE';
$PALANG['edit'] = 'uredi';
$PALANG['del'] = 'bri<72>i';
$PALANG['confirm'] = 'Ali ste prepri<72>ani, da <20>elite brisati?\n';
$PALANG['confirm_domain'] = 'Ali ste prepri<72>ani, da <20>elite brisati vse zapise za to domeno? Zapisi bodo izgubljeni za vedno!\n';
$PALANG['check_update'] = 'Preveri, <20>e obstaja novej<65>a razli<6C>ica';
$PALANG['pLogin_welcome'] = 'Administratorji se prijavite tukaj.';
$PALANG['pLogin_username'] = 'Uporabni<6E>ko ime (e-po<70>tni naslov)';
$PALANG['pLogin_password'] = 'Geslo';
$PALANG['pLogin_button'] = 'Prijavi';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Uporabni<6E>ko ime ni pravilno. Prijaviti se morate z va<76>im e-po<70>tnim naslovom!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Geslo ni pravilno!</span>';
$PALANG['pLogin_login_users'] = 'Uporabniki kliknite tukaj, <20>e <20>elite nastaviti odsotnost ali spremeniti geslo.';
$PALANG['pMenu_overview'] = 'Pregled';
$PALANG['pMenu_create_alias'] = 'Dodaj alias';
$PALANG['pMenu_create_mailbox'] = 'Dodaj predal';
$PALANG['pMenu_sendmail'] = 'Po<50>lji e-po<70>to';
$PALANG['pMenu_password'] = 'Geslo';
$PALANG['pMenu_viewlog'] = 'Preglej log';
$PALANG['pMenu_logout'] = 'Odjavi';
$PALANG['pMain_welcome'] = 'Dobrodo<64>li v Postfix Adminu!';
$PALANG['pMain_overview'] = 'Seznam aliasov in predalov. Tukaj jih lahko urejate in/ali bri<72>ete.';
$PALANG['pMain_create_alias'] = 'Ustvari nov alias za dolo<6C>eno domeno.';
$PALANG['pMain_create_mailbox'] = 'Ustvari nov predal za dolo<6C>eno domeno.';
$PALANG['pMain_sendmail'] = 'Po<50>lji e-po<70>to v enega izmed novoustvarjenih predalov.';
$PALANG['pMain_password'] = 'Spremeni geslo za administratorja.';
$PALANG['pMain_viewlog'] = 'Pregled dnevni<6E>kih datotek.';
$PALANG['pMain_logout'] = 'Odjava iz sistema';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Definirane domene';
$PALANG['pOverview_up_arrow'] = 'Na vrh';
$PALANG['pOverview_right_arrow'] = 'Naslednja stran';
$PALANG['pOverview_left_arrow'] = 'Prejsnja stran';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Predali';
$PALANG['pOverview_button'] = 'Pojdi';
$PALANG['pOverview_welcome'] = 'Pregled za ';
$PALANG['pOverview_alias_alias_count'] = 'Aliasi';
$PALANG['pOverview_alias_mailbox_count'] = 'Predali';
$PALANG['pOverview_alias_address'] = 'Od';
$PALANG['pOverview_alias_goto'] = 'Za';
$PALANG['pOverview_alias_modified'] = 'Zadnji<6A> spremenjeno';
$PALANG['pOverview_mailbox_username'] = 'E-po<70>ta';
$PALANG['pOverview_mailbox_name'] = 'Ime';
$PALANG['pOverview_mailbox_quota'] = 'Kvota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Zadnji<6A> spremenjeno';
$PALANG['pOverview_mailbox_active'] = 'Aktiven';
$PALANG['pOverview_get_domain'] = 'Domena';
$PALANG['pOverview_get_aliases'] = 'Aliasi';
$PALANG['pOverview_get_mailboxes'] = 'Predali';
$PALANG['pOverview_get_quota'] = 'Kvota za predale (MB)';
$PALANG['pOverview_get_modified'] = 'Zadnji<6A> spremenjeno';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Vnosa ni bilo mogo<67>e izbrisati ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Izbrana domena ni pod va<76>im nadzorom ';
$PALANG['pCreate_alias_welcome'] = 'Ustvari nov alias za dolo<6C>eno domeno.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">Sintaksa aliasa je napa<70>na!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Ta e-po<70>tni naslov <20>e obstaja, prosimo izberite drugega!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Maksimalno <20>tevilo aliasov je prese<73>eno!</span>';
$PALANG['pCreate_alias_goto'] = 'Za';
$PALANG['pCreate_alias_button'] = 'Dodaj alias';
$PALANG['pCreate_alias_goto_text'] = 'Kamor <20>elite nasloviti po<70>to.';
$PALANG['pCreate_alias_goto_text_error'] = 'Kamor mora sporo<72>ilo dejansko prispeti.<br /><span class="error_msg">Vnos "Za" je napa<70>en!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Aliasa ni bilo mogo<67>e dodati!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Alias je bil uspe<70>no dodan!';
$PALANG['pCreate_alias_catchall_text'] = '<27>e <20>elite ustvariti "vseobsegajo<6A>i" alias, uporabite "*" namesto aliasa.<br />Za posredovanje iz domene na domeno, uporabite "*@domena.si" v "Za" polju.';
$PALANG['pEdit_alias_welcome'] = 'Uredi alias za dolo<6C>eno domeno.<br />V posamezni vrstici je lahko samo en naslov.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Aliasa ni bilo mogo<67>e najti!</span>';
$PALANG['pEdit_alias_goto'] = 'Za';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">V polje "Za" niste vnesli ni<6E>esar!</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">E-po<70>tni naslov, ki ste ga vnesli, ni pravilen: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Izbrana domena ni pod va<76>im nadzorom: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Uredi alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Aliasa ni bilo mogo<67>e spremeniti!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Ustvari nov predal za izbrano domeno.';
$PALANG['pCreate_mailbox_username'] = 'Uporabni<6E>ko ime';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">E-po<70>tni naslov ni pravilen!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Izbrani e-po<70>tni naslov <20>e obstaja, prosimo izberite drugega!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Maksimalno <20>tevilo predalov je prese<73>eno!</span>';
$PALANG['pCreate_mailbox_password'] = 'Geslo';
$PALANG['pCreate_mailbox_password2'] = 'Geslo (ponovitev)';
$PALANG['pCreate_mailbox_password_text'] = 'Geslo za POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'Geslo za POP3/IMAP<br /><span class="error_msg">Vne<6E>eni gesli se razlikujeta<br />ali pa sta prazni!</span>';
$PALANG['pCreate_mailbox_name'] = 'Ime';
$PALANG['pCreate_mailbox_name_text'] = 'Polno ime';
$PALANG['pCreate_mailbox_quota'] = 'Kvota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Vne<6E>ena kvota je prevelika!</span>';
$PALANG['pCreate_mailbox_active'] = 'Aktiven';
$PALANG['pCreate_mailbox_mail'] = 'Ustvari predal';
$PALANG['pCreate_mailbox_button'] = 'Dodaj predal';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Predala ni bilo mogo<67>e ustvariti!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Predal je bil uspe<70>no ustvarjen!';
$PALANG['pEdit_mailbox_welcome'] = 'Uredi dolo<6C>en predal za izbrano domeno.';
$PALANG['pEdit_mailbox_username'] = 'Uporabni<6E>ko ime';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Izbranega predala ni bilo mogo<67>e najti!</span>';
$PALANG['pEdit_mailbox_password'] = 'Novo geslo';
$PALANG['pEdit_mailbox_password2'] = 'Novo geslo (ponovitev)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Vne<6E>eni gesli se ne ujemata!</span>';
$PALANG['pEdit_mailbox_name'] = 'Ime';
$PALANG['pEdit_mailbox_quota'] = 'Kvota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Vne<6E>ena kvota je prevelika!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Izbrana domena ni pod va<76>im nadzorom: ';
$PALANG['pEdit_mailbox_button'] = 'Uredi predal';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Predala ni bilo mogo<67>e spremeniti!</span>';
$PALANG['pPassword_welcome'] = 'Sprimenjanje gesla.';
$PALANG['pPassword_admin'] = 'Uporabni<6E>ko ime';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Uporabni<6E>ko ime ne ustreza predalu!</span>';
$PALANG['pPassword_password_current'] = 'Trenutno geslo';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Vnesti morate trenutno geslo!</span>';
$PALANG['pPassword_password'] = 'Novo geslo';
$PALANG['pPassword_password2'] = 'Novo geslo (ponovitev)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Vne<6E>eni gesli se ne ujemata<br />ali pa sta prazni!</span>';
$PALANG['pPassword_button'] = 'Spremeni geslo';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Gesla ni bilo mogo<67>e spremeniti!</span>';
$PALANG['pPassword_result_succes'] = 'Geslo je bilo uspe<70>no spremenjeno!';
$PALANG['pViewlog_welcome'] = 'Seznam zadnjih 10 operacij za ';
$PALANG['pViewlog_timestamp'] = '<27>as';
$PALANG['pViewlog_username'] = 'Administrator';
$PALANG['pViewlog_domain'] = 'Domena';
$PALANG['pViewlog_action'] = 'Operacija';
$PALANG['pViewlog_data'] = 'Podatki';
$PALANG['pViewlog_button'] = 'Pojdi';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Dnevnikov ni bilo mogo<67>e najti!</span>';
$PALANG['pSendmail_welcome'] = 'Po<50>lji e-po<70>to.';
$PALANG['pSendmail_admin'] = 'Od';
$PALANG['pSendmail_to'] = 'Za';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Polje "Za" ne vsebuje veljavnega e-po<70>tnega naslova!</span>';
$PALANG['pSendmail_subject'] = 'Zadeva';
$PALANG['pSendmail_subject_text'] = 'Pozdravljeni!';
$PALANG['pSendmail_body'] = 'Besedilo';
$PALANG['pSendmail_button'] = 'Po<50>lji sporo<72>ilo';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Predala ni bilo mogo<67>e ustvariti!</span>';
$PALANG['pSendmail_result_succes'] = 'Predal je bil uspe<70>no ustvarjen!';
$PALANG['pAdminMenu_list_admin'] = 'Seznam administratorjev';
$PALANG['pAdminMenu_list_domain'] = 'Seznam domen';
$PALANG['pAdminMenu_list_virtual'] = 'Seznam aliasov in predalov';
$PALANG['pAdminMenu_viewlog'] = 'Pregled dnevnika';
$PALANG['pAdminMenu_backup'] = 'Rezervna kopija';
$PALANG['pAdminMenu_create_domain_admins'] = 'Domenski administratorji';
$PALANG['pAdminMenu_create_admin'] = 'Nov administrator';
$PALANG['pAdminMenu_create_domain'] = 'Nova domena';
$PALANG['pAdminMenu_create_alias'] = 'Dodaj alias';
$PALANG['pAdminMenu_create_mailbox'] = 'Dodaj predal';
$PALANG['pAdminList_admin_domain'] = 'Domena';
$PALANG['pAdminList_admin_username'] = 'Administrator';
$PALANG['pAdminList_admin_count'] = 'Domene';
$PALANG['pAdminList_admin_modified'] = 'Zadnji<6A> spremenjeno';
$PALANG['pAdminList_admin_active'] = 'Aktiven';
$PALANG['pAdminList_domain_domain'] = 'Domena';
$PALANG['pAdminList_domain_description'] = 'Opis';
$PALANG['pAdminList_domain_aliases'] = 'Aliasi';
$PALANG['pAdminList_domain_mailboxes'] = 'Predali';
$PALANG['pAdminList_domain_maxquota'] = 'Maksimalna kvota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Zadnji<6A> spremenjeno';
$PALANG['pAdminList_domain_active'] = 'Aktiven';
$PALANG['pAdminList_virtual_button'] = 'Pojdi';
$PALANG['pAdminList_virtual_welcome'] = 'Pregled za: ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliasi';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Predali';
$PALANG['pAdminList_virtual_alias_address'] = 'Od';
$PALANG['pAdminList_virtual_alias_goto'] = 'Za';
$PALANG['pAdminList_virtual_alias_modified'] = 'Zadnji<6A> spremenjeno';
$PALANG['pAdminList_virtual_mailbox_username'] = 'E-po<70>ta';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Ime';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Kvota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Zadnji<6A> spremenjeno';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Aktiven';
$PALANG['pAdminCreate_domain_welcome'] = 'Dodaj novo domeno';
$PALANG['pAdminCreate_domain_domain'] = 'Domena';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Vne<6E>ena domena <20>e obstaja!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Opis';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliasi';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = onemogo<67>i | 0 = neomejeno';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Predali';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = onemogo<67>i | 0 = neomejeno';
$PALANG['pAdminCreate_domain_maxquota'] = 'Maksimalna kvota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = onemogo<67>i | 0 = neomejeno';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Definiraj transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Dodaj privzete aliase';
$PALANG['pAdminCreate_domain_backupmx'] = 'Po<50>tni stre<72>nik je sekundarni MX';
$PALANG['pAdminCreate_domain_button'] = 'Dodaj domeno';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Domene ni bilo mogo<67>e dodati!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Domena je bila uspe<70>no dodana!';
$PALANG['pAdminEdit_domain_welcome'] = 'Uredi domeno';
$PALANG['pAdminEdit_domain_domain'] = 'Domena';
$PALANG['pAdminEdit_domain_description'] = 'Opis';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliasi';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = onemogo<67>i | 0 = neomejeno';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Predali';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = onemogo<67>i | 0 = neomejeno';
$PALANG['pAdminEdit_domain_maxquota'] = 'Maksimalna kvota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = onemogo<67>i | 0 = neomejeno';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Po<50>tni stre<72>nik je sekundarni MX';
$PALANG['pAdminEdit_domain_active'] = 'Aktiven';
$PALANG['pAdminEdit_domain_button'] = 'Shrani';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Domene ni bilo mogo<67>e spremeniti!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Dodaj domenskega administratorja';
$PALANG['pAdminCreate_admin_username'] = 'Administrator';
$PALANG['pAdminCreate_admin_username_text'] = 'E-po<70>tni naslov';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'E-po<70>tni naslov<br /><span class="error_msg">Administrator ni veljaven e-po<70>tni naslov!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'E-po<70>tni naslov<br /><span class="error_msg">Adminstrator <20>e obstaja ali pa ni pravilen</span>';
$PALANG['pAdminCreate_admin_password'] = 'Geslo';
$PALANG['pAdminCreate_admin_password2'] = 'Geslo (ponovitev)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Vne<6E>eni gesli se ne ujemata<br />ali pa sta prazni!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Dodaj administratorja';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Administratorja ni bilo mogo<67>e dodati!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Admininstrator je bil uspe<70>no dodan';
$PALANG['pAdminCreate_admin_address'] = 'Domena';
$PALANG['pAdminEdit_admin_welcome'] = 'Uredi domenskega administratorja';
$PALANG['pAdminEdit_admin_username'] = 'Administrator';
$PALANG['pAdminEdit_admin_password'] = 'Geslo';
$PALANG['pAdminEdit_admin_password2'] = 'Geslo (ponovitev)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Vne<6E>eni gesli se ne ujemata<br />ali pa sta prazni!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Aktiven';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Shrani';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Administratorja ni bilo mogo<67>e spremeniti!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Admininstrator je bil uspe<70>no spremenjen!';
$PALANG['pUsersLogin_welcome'] = '<27>e <20>elite spremeniti gesli ali nastaviti sporo<72>ilo o odsotnosti, se prijavite.';
$PALANG['pUsersLogin_username'] = 'E-po<70>tni naslov';
$PALANG['pUsersLogin_password'] = 'Geslo';
$PALANG['pUsersLogin_button'] = 'Prijava';
$PALANG['pUsersLogin_username_incorrect'] = 'Uporabni<6E>ko ime ni pravilno! Uporabiti morate svoj e-po<70>tni naslov!';
$PALANG['pUsersLogin_password_incorrect'] = 'Geslo ni pravilno!';
$PALANG['pUsersMenu_vacation'] = 'Obvestilo o odsotnosti';
$PALANG['pUsersMenu_edit_alias'] = 'Nastavi preusmeritev';
$PALANG['pUsersMenu_password'] = 'Spremeni geslo';
$PALANG['pUsersMain_vacation'] = 'Nastavite obvestilo o odsotnosti.';
$PALANG['pUsersMain_edit_alias'] = 'Nastavite preusmeritev na drug e-po<70>tni naslov.';
$PALANG['pUsersMain_password'] = 'Spremenite geslo.';
$PALANG['pUsersVacation_welcome'] = 'Tukaj lahko nastavite obvestilo o odsotnosti.';
$PALANG['pUsersVacation_welcome_text'] = 'Obvestilo o odsotnosti imate <20>e nastavljeno!';
$PALANG['pUsersVacation_subject'] = 'Zadeva';
$PALANG['pUsersVacation_subject_text'] = 'Odsotnost';
$PALANG['pUsersVacation_body'] = 'Besedilo';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Od <datum> do <datum> sem odsoten.
Za nujne zadeve prosim kontaktirajte <kontaktna oseba>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'Vklju<6A>i odsotnost';
$PALANG['pUsersVacation_button_back'] = 'Izklju<6A>i odsotnost';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Va<56>im nastavitev o odsotnosti ni bilo mogo<67>e posodobiti!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Obvestilo o odsotnosti je izklju<6A>eno!';
$PALANG['pCreate_dbLog_createmailbox'] = 'ustvari predal';
$PALANG['pCreate_dbLog_createalias'] = 'ustvari alias';
$PALANG['pDelete_dbLog_deletealias'] = 'bri<72>i alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'bri<72>i predal';
$PALANG['pEdit_dbLog_editactive'] = 'spremeni stanje aktivnosti';
$PALANG['pEdit_dbLog_editalias'] = 'uredi alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'uredi predal';
$PALANG['pSearch_welcome'] = 'I<><49>i: ';
?>

302
languages/sv.lang Normal file
View File

@@ -0,0 +1,302 @@
<?php
//
// Language file Swedish
// by Stefan Jakobsson <stefan at katrinet dot se>
// updated by Bjorne <bjorne at gah dot se>
//
require ('default.lang');
$PALANG['YES'] = 'JA';
$PALANG['NO'] = 'NEJ';
$PALANG['edit'] = 'editera';
$PALANG['del'] = 'radera';
$PALANG['confirm'] = '<27>r du s<>ker p<> att du vill radera denna?\n';
$PALANG['confirm_domain'] = 'Vill du verkligen radera all data f<>r denna dom<6F>n? Kan ej <20>ngras!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Mail administrat<61>rer loggar in h<>r f<>r att sk<73>ta er dom<6F>n.';
$PALANG['pLogin_username'] = 'Login (epost)';
$PALANG['pLogin_password'] = 'L<>senord';
$PALANG['pLogin_button'] = 'Login';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Ditt login <20>r ej korrekt. Logga in med din epostadress!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg">Du angav fel l<>senord!</span>';
$PALANG['pLogin_login_users'] = 'Anv<6E>ndare klickar h<>r f<>r att logga in p<> anv<6E>ndardelen.';
$PALANG['pMenu_overview'] = 'Sammanfattning';
$PALANG['pMenu_create_alias'] = 'L<>gg till Alias';
$PALANG['pMenu_create_mailbox'] = 'L<>gg till mailadress';
$PALANG['pMenu_sendmail'] = 'Skicka Mail';
$PALANG['pMenu_password'] = 'L<>senord';
$PALANG['pMenu_viewlog'] = 'Visa Logg';
$PALANG['pMenu_logout'] = 'Logga ut';
$PALANG['pMain_welcome'] = 'V<>lkommen till Postfix Admin!';
$PALANG['pMain_overview'] = 'Lista dina alias och mailadresser. Du kan editera / radera dem h<>r.';
$PALANG['pMain_create_alias'] = 'Skapa nytt alias i din dom<6F>n.';
$PALANG['pMain_create_mailbox'] = 'Skapa ny mailadress f<>r din dom<6F>n.';
$PALANG['pMain_sendmail'] = 'Skicka ett mail till en av mailadresserna.';
$PALANG['pMain_password'] = '<27>ndra l<>senord f<>r adminkontot.';
$PALANG['pMain_viewlog'] = 'Visa loggfiler.';
$PALANG['pMain_logout'] = 'Logga ut fr<66>n systemet';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Visa';
$PALANG['pOverview_welcome'] = 'Sammanfattning f<>r ';
$PALANG['pOverview_alias_alias_count'] = 'Alias';
$PALANG['pOverview_alias_mailbox_count'] = 'Mailadresser';
$PALANG['pOverview_alias_address'] = 'Fr<46>n';
$PALANG['pOverview_alias_goto'] = 'Till';
$PALANG['pOverview_alias_modified'] = 'Senast <20>ndrad';
$PALANG['pOverview_mailbox_username'] = 'Epost';
$PALANG['pOverview_mailbox_name'] = 'Namn';
$PALANG['pOverview_mailbox_quota'] = 'Quota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Senast <20>ndrad';
$PALANG['pOverview_mailbox_active'] = 'Aktiv';
$PALANG['pOverview_get_domain'] = 'Dom<6F>n';
$PALANG['pOverview_get_aliases'] = 'Alias';
$PALANG['pOverview_get_mailboxes'] = 'Mailadresser';
$PALANG['pOverview_get_quota'] = 'Mailbox Quota (MB)';
$PALANG['pOverview_get_modified'] = 'Senast <20>ndrad';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Kan inte radera data f<>r ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Detta <20>r inte din dom<6F>n ';
$PALANG['pCreate_alias_welcome'] = 'Skapa nytt alias f<>r din dom<6F>n.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">Detta ALIAS <20>r inte giltigt!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Denna epostadress existerar redan, v<>lj en annan epostadress!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Du har redan h<>gsta till<6C>tna antal alias definierade!</span>';
$PALANG['pCreate_alias_goto'] = 'Till';
$PALANG['pCreate_alias_button'] = 'L<>gg till Alias';
$PALANG['pCreate_alias_goto_text'] = 'Vart skall mailen skickas.';
$PALANG['pCreate_alias_goto_text_error'] = 'Vart mailen skall skickas.<br /><span class="error_msg">TILL data <20>r felaktigt!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Kan inte l<>gga till detta alias i aliastabellen!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Aliaset har lagts till i aliastabellen!';
$PALANG['pCreate_alias_catchall_text'] = 'F<>r att skapa en catch-all ange ett "*" som alias.<br />F<>r dom<6F>n till dom<6F>n forwarding anv<6E>nd "*@dom<6F>n.tld" som till.';
$PALANG['pEdit_alias_welcome'] = 'Editera ett alias f<>r din dom<6F>n.<br />Ett alias per rad.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Kan inte hitta detta alias!</span>';
$PALANG['pEdit_alias_goto'] = 'Till';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Du angav inget i Till</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Epost adressen du angivit <20>r felaktig: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Detta <20>r inte din dom<6F>n: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Editera Alias';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Kan inte modifiera detta alias!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Skapa en ny lokal mailadress f<>r din dom<6F>n.';
$PALANG['pCreate_mailbox_username'] = 'Anv<6E>ndarnamn';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">EPOSTADRESSEN <20>r inte korrekt!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Denna epostadress finns redan, ange en annan adress!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Du har redan skapat max till<6C>tet antal mailadresser!</span>';
$PALANG['pCreate_mailbox_password'] = 'L<>senord';
$PALANG['pCreate_mailbox_password2'] = 'L<>senord (igen)';
$PALANG['pCreate_mailbox_password_text'] = 'L<>senord f<>r POP3/IMAP';
$PALANG['pCreate_mailbox_password_text_error'] = 'L<>senord f<>r POP3/IMAP<br /><span class="error_msg">L<>senorden du angivit <20>r olika!<br />Eller tomma!</span>';
$PALANG['pCreate_mailbox_name'] = 'Namn';
$PALANG['pCreate_mailbox_name_text'] = 'Fullst<73>ndigt namn';
$PALANG['pCreate_mailbox_quota'] = 'Quota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Quotan du angivit <20>r f<>r stor!</span>';
$PALANG['pCreate_mailbox_active'] = 'Aktiv';
$PALANG['pCreate_mailbox_mail'] = 'Skapa mailadress';
$PALANG['pCreate_mailbox_button'] = 'L<>gg till mailadress';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Kan ej l<>gga till mailadress i tabellen f<>r adresser!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Mailadressen har lagts till!';
$PALANG['pEdit_mailbox_welcome'] = 'Editera en mailadress i din dom<6F>n.';
$PALANG['pEdit_mailbox_username'] = 'Anv<6E>ndarnamn';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Kan inte hitta den adressen!</span>';
$PALANG['pEdit_mailbox_password'] = 'Nytt L<>senord';
$PALANG['pEdit_mailbox_password2'] = 'Nytt L<>senord (igen)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">L<>senorden du angav <20>r olika!</span>';
$PALANG['pEdit_mailbox_name'] = 'Namn';
$PALANG['pEdit_mailbox_quota'] = 'Quota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Quotagr<67>nsen du angett <20>r f<>r stor!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Detta <20>r inte din dom<6F>n: ';
$PALANG['pEdit_mailbox_button'] = 'Editera Mailadress';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Kan inte <20>ndra l<>senordet!</span>';
$PALANG['pPassword_welcome'] = '<27>ndra ditt l<>senord.';
$PALANG['pPassword_admin'] = 'Login';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Det LOGIN du angivit har ingen mailbox kopplad till sig!</span>';
$PALANG['pPassword_password_current'] = 'Nuvarande L<>senord';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">Du angav ej korrekt l<>senord!</span>';
$PALANG['pPassword_password'] = 'Nytt L<>senord';
$PALANG['pPassword_password2'] = 'Nytt L<>senord (igen)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">L<>senorden du angav var olika!<br />Eller <20>r tomma!</span>';
$PALANG['pPassword_button'] = '<27>ndra L<>senord';
$PALANG['pPassword_result_error'] = '<span class="error_msg">Kan inte <20>ndra ditt l<>senord!</span>';
$PALANG['pPassword_result_succes'] = 'Ditt l<>senord har <20>ndrats!';
$PALANG['pViewlog_welcome'] = 'Visa dom senaste 10 <20>tg<74>rderna f<>r ';
$PALANG['pViewlog_timestamp'] = 'Tidpunkt';
$PALANG['pViewlog_username'] = 'Admin';
$PALANG['pViewlog_domain'] = 'Dom<6F>n';
$PALANG['pViewlog_action'] = '<27>tg<74>rd';
$PALANG['pViewlog_data'] = 'Data';
$PALANG['pViewlog_button'] = 'K<>r';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Kan inte hitta loggarna!</span>';
$PALANG['pSendmail_welcome'] = 'Skicka ett mail.';
$PALANG['pSendmail_admin'] = 'Fr<46>n';
$PALANG['pSendmail_to'] = 'Till';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Till <20>r en ogiltig mailadress eller tomt.!</span>';
$PALANG['pSendmail_subject'] = '<27>mne';
$PALANG['pSendmail_subject_text'] = 'V<>lkommen';
$PALANG['pSendmail_body'] = 'Meddelande';
$PALANG['pSendmail_button'] = 'Skicka meddelande';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Kan inte skapa mailadress!</span>';
$PALANG['pSendmail_result_succes'] = 'Mailadressen har skapats!';
$PALANG['pAdminMenu_list_admin'] = 'Admin Lista';
$PALANG['pAdminMenu_list_domain'] = 'Dom<6F>n Lista';
$PALANG['pAdminMenu_list_virtual'] = 'Virtuell Lista';
$PALANG['pAdminMenu_viewlog'] = 'Visa Loggfil';
$PALANG['pAdminMenu_backup'] = 'Backup';
$PALANG['pAdminMenu_create_domain_admins'] = 'Dom<6F>n Admins';
$PALANG['pAdminMenu_create_admin'] = 'Ny Admin';
$PALANG['pAdminMenu_create_domain'] = 'Ny Dom<6F>n';
$PALANG['pAdminMenu_create_alias'] = 'L<>gg till Alias';
$PALANG['pAdminMenu_create_mailbox'] = 'L<>gg till Mailbox';
$PALANG['pAdminList_admin_domain'] = 'Dom<6F>n';
$PALANG['pAdminList_admin_username'] = 'Admin';
$PALANG['pAdminList_admin_count'] = 'Dom<6F>ner';
$PALANG['pAdminList_admin_modified'] = 'Senast <20>ndrad';
$PALANG['pAdminList_admin_active'] = 'Aktiv';
$PALANG['pAdminList_domain_domain'] = 'Dom<6F>n';
$PALANG['pAdminList_domain_description'] = 'Beskrivning';
$PALANG['pAdminList_domain_aliases'] = 'Alias';
$PALANG['pAdminList_domain_mailboxes'] = 'Mailboxar';
$PALANG['pAdminList_domain_maxquota'] = 'Max Quota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Senast Modifierad';
$PALANG['pAdminList_domain_active'] = 'Aktiv';
$PALANG['pAdminList_virtual_button'] = 'K<>r';
$PALANG['pAdminList_virtual_welcome'] = 'Sammanfattning f<>r ';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Alias';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Mailboxar';
$PALANG['pAdminList_virtual_alias_address'] = 'Fr<46>n';
$PALANG['pAdminList_virtual_alias_goto'] = 'Till';
$PALANG['pAdminList_virtual_alias_modified'] = 'Senast <20>ndrad';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Epostadress';
$PALANG['pAdminList_virtual_mailbox_name'] = 'Namn';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'Quota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Senast <20>ndrad';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Aktiv';
$PALANG['pAdminCreate_domain_welcome'] = 'L<>gg till ny dom<6F>n';
$PALANG['pAdminCreate_domain_domain'] = 'Dom<6F>n';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Den dom<6F>nen finns redan!</span>';
$PALANG['pAdminCreate_domain_description'] = 'Beskrivning';
$PALANG['pAdminCreate_domain_aliases'] = 'Alias';
$PALANG['pAdminCreate_domain_aliases_text'] = '0 = avaktivera | -1 = obegr<67>nsat';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Mailboxes';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '0 = avaktivera | -1 = obegr<67>nsat';
$PALANG['pAdminCreate_domain_maxquota'] = 'Max Quota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> 0 = avaktivera | -1 = obegr<67>nsat';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = 'Skapa standard alias';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'L<>gg till dom<6F>n';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Kan inte skapa dom<6F>nen!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Dom<6F>nen har skapats!';
$PALANG['pAdminEdit_domain_welcome'] = 'Editera en dom<6F>n';
$PALANG['pAdminEdit_domain_domain'] = 'Dom<6F>n';
$PALANG['pAdminEdit_domain_description'] = 'Beskrivning';
$PALANG['pAdminEdit_domain_aliases'] = 'Alias';
$PALANG['pAdminEdit_domain_aliases_text'] = '0 = avaktivera | -1 = obegr<67>nsat';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Mailboxes';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '0 = avaktivera | -1 = obegr<67>nsat';
$PALANG['pAdminEdit_domain_maxquota'] = 'Max Quota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> 0 = avaktivera | -1 = obegr<67>nsat';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Aktiv';
$PALANG['pAdminEdit_domain_button'] = 'Editera Dom<6F>n';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Kan inte modifiera dom<6F>nen!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'L<>gg till ny dom<6F>nadmin';
$PALANG['pAdminCreate_admin_username'] = 'Admin';
$PALANG['pAdminCreate_admin_username_text'] = 'Epostadress';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'Epostadress<br /><span class="error_msg">Admin <20>r inte en giltig epostadress!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'Email address<br /><span class="error_msg">Denna admin finns redan eller <20>r inte giltig</span>';
$PALANG['pAdminCreate_admin_password'] = 'L<>senord';
$PALANG['pAdminCreate_admin_password2'] = 'L<>senord (igen)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">L<>senorden du angav <20>r olika!<br />Eller <20>r tomma!</span>';
$PALANG['pAdminCreate_admin_button'] = 'L<>gg till Admin';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Kan inte l<>gga till Admin!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Admin har lagts till!';
$PALANG['pAdminCreate_admin_address'] = 'Dom<6F>n';
$PALANG['pAdminEdit_admin_welcome'] = 'Editera en dom<6F>nadmin';
$PALANG['pAdminEdit_admin_username'] = 'Admin';
$PALANG['pAdminEdit_admin_password'] = 'L<>senord';
$PALANG['pAdminEdit_admin_password2'] = 'L<>senord (igen)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">L<>senorden du angav <20>r olika!<br />Eller <20>r tomma!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Aktiv';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Editera Admin';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Kan inte <20>ndra admin!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Admin har <20>ndrats!';
$PALANG['pUsersLogin_welcome'] = 'Mailbox anv<6E>ndare logga in h<>r f<>r att <20>ndra ert l<>senord och alias.';
$PALANG['pUsersLogin_username'] = 'Login (epostadress)';
$PALANG['pUsersLogin_password'] = 'L<>senord';
$PALANG['pUsersLogin_button'] = 'Login';
$PALANG['pUsersLogin_username_incorrect'] = 'Ditt login <20>r felaktigt. Logga in med din epostadress!';
$PALANG['pUsersLogin_password_incorrect'] = 'Ditt l<>senord <20>r felaktigt!';
$PALANG['pUsersMenu_vacation'] = 'Autosvar';
$PALANG['pUsersMenu_edit_alias'] = '<27>ndra din forwardadress';
$PALANG['pUsersMenu_password'] = '<27>ndra L<>senord';
$PALANG['pUsersMain_vacation'] = 'St<53>ll in ett "out of office" meddelande eller autosvar f<>r din epost.';
$PALANG['pUsersMain_edit_alias'] = '<27>ndra din epost forwardadress.';
$PALANG['pUsersMain_password'] = '<27>ndra ditt nuvarande l<>senord.';
$PALANG['pUsersVacation_welcome'] = 'Auto Svar.';
$PALANG['pUsersVacation_welcome_text'] = 'Du har redan ett autosvar meddelande definierat!';
$PALANG['pUsersVacation_subject'] = '<27>rende';
$PALANG['pUsersVacation_subject_text'] = 'Out of Office';
$PALANG['pUsersVacation_body'] = 'Text';
$PALANG['pUsersVacation_body_text'] = <<<EOM
Jag <20>r borta fr<66>n <datum> till <datum>.
F<EFBFBD>r br<62>dskande <20>renden kan ni kontakta <kontakt person>.
EOM;
$PALANG['pUsersVacation_button_away'] = 'F<>rsvinner';
$PALANG['pUsersVacation_button_back'] = 'Kommer Tillbaka';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Kan inte uppdatera dina autosvar inst<73>llningar!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Ditt autosvar har taqits bort!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

301
languages/tr.lang Normal file
View File

@@ -0,0 +1,301 @@
<?php
//
// Language file T<>rk<72>e
// by Onuryalazi
//
require ('default.lang');
$PALANG['YES'] = 'EVET';
$PALANG['NO'] = 'HAYIR';
$PALANG['edit'] = 'd<>zenle';
$PALANG['del'] = 'sil';
$PALANG['confirm'] = 'Bunu silmek istedi<64>inizden emin misiniz?\n';
$PALANG['confirm_domain'] = 'Bu domain i<>in t<>m kay<61>tlar<61> silmek istedi<64>inizden emin misiniz? Bu i<>lem geri al<61>namaz!\n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = 'Posta Y<>neticileri buradan domainlerinizi y<>netmek i<>in giri<72> yapabilirsiniz.';
$PALANG['pLogin_username'] = 'Kullan<61>c<EFBFBD> ad<61> (eposta)';
$PALANG['pLogin_password'] = '<27>ifre';
$PALANG['pLogin_button'] = 'Giri<72>';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg">Kullan<61>c<EFBFBD> adn<64>n<EFBFBD>z do<64>ru de<64>il. E-posta adresinizi kontrol ediniz.</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg"><3E>ifreniz do<64>ru de<64>il!</span>';
$PALANG['pLogin_login_users'] = 'Kullan<61>c<EFBFBD> i<>lemlerine girmek i<>in buray<61> kullan<61>n<EFBFBD>z.';
$PALANG['pMenu_overview'] = 'Genel Bilgiler';
$PALANG['pMenu_create_alias'] = 'Alias Ekle';
$PALANG['pMenu_create_mailbox'] = 'Posta kutusu ekle';
$PALANG['pMenu_sendmail'] = 'E-posta G<>nder';
$PALANG['pMenu_password'] = '<27>ifre';
$PALANG['pMenu_viewlog'] = 'Log <20>ncele';
$PALANG['pMenu_logout'] = '<27><>k<EFBFBD><6B>';
$PALANG['pMain_welcome'] = 'Postfix Admin\'e ho<68> geldiniz!';
$PALANG['pMain_overview'] = 'posta kutular<61>n<EFBFBD>z<EFBFBD>n ve aliaslar<61>n<EFBFBD>z<EFBFBD>n listesi. buradan silip d<>zenleyebilirsiniz.';
$PALANG['pMain_create_alias'] = 'Domaininiz icin yeni bir alias yarat<61>n.';
$PALANG['pMain_create_mailbox'] = 'Domaininiz i<>in yeni bir posta kutusu yarat<61>n.';
$PALANG['pMain_sendmail'] = 'Yeni yaratm<74><6D> oldu<64>unuz posta kutular<61>ndan birine posta g<>nderin.';
$PALANG['pMain_password'] = 'Y<>netici hesab<61>n<EFBFBD>z<EFBFBD>n <20>ifresini de<64>i<EFBFBD>tirin.';
$PALANG['pMain_viewlog'] = 'log dosyalar<61>n<EFBFBD> inceleyin.';
$PALANG['pMain_logout'] = 'Sistemden <20><>k<EFBFBD>n.';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = 'Git';
$PALANG['pOverview_welcome'] = 'Genel Bilgiler: ';
$PALANG['pOverview_alias_alias_count'] = 'Aliaselar';
$PALANG['pOverview_alias_mailbox_count'] = 'Posta kutular<61>';
$PALANG['pOverview_alias_address'] = 'Kimden';
$PALANG['pOverview_alias_goto'] = 'Kime';
$PALANG['pOverview_alias_modified'] = 'Son D<>zenleme';
$PALANG['pOverview_mailbox_username'] = 'Eposta';
$PALANG['pOverview_mailbox_name'] = '<27>sim';
$PALANG['pOverview_mailbox_quota'] = 'kota (MB)';
$PALANG['pOverview_mailbox_modified'] = 'Son D<>zenleme';
$PALANG['pOverview_mailbox_active'] = 'Aktif';
$PALANG['pOverview_get_domain'] = 'Domain';
$PALANG['pOverview_get_aliases'] = 'Aliaslar';
$PALANG['pOverview_get_mailboxes'] = 'Postakutular<61>';
$PALANG['pOverview_get_quota'] = 'Posta kutusu Kotas<61> (MB)';
$PALANG['pOverview_get_modified'] = 'Son D<>zenleme';
$PALANG['pDelete_delete_error'] = '<span class="error_msg">Kay<61>t silinemiyor ';
$PALANG['pDelete_domain_error'] = '<span class="error_msg">Bu domain size ait de<64>il ';
$PALANG['pCreate_alias_welcome'] = 'Domaininiz i<>in yeni bir alias yarat<61>n.';
$PALANG['pCreate_alias_address'] = 'Alias';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">ALIAS uygun de<64>il!</span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Bu e-posta zaten kullan<61>l<EFBFBD>yor, l<>tfen ba<62>ka bir tane se<73>in!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Alias limitine ula<6C>t<EFBFBD>n<EFBFBD>z!</span>';
$PALANG['pCreate_alias_goto'] = 'kime';
$PALANG['pCreate_alias_button'] = 'Alias Ekle';
$PALANG['pCreate_alias_goto_text'] = 'E-postan<61>n gitmesi gereken yer.';
$PALANG['pCreate_alias_goto_text_error'] = 'E-postan<61>n gitmesi gereken bir yer.<br /><span class="error_msg">Kime alan<61> uygun de<64>il!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg">Alias\'<27> alias tab<61>losuna eklenemedi!</span>';
$PALANG['pCreate_alias_result_succes'] = 'Alias tabloya eklendi!';
$PALANG['pCreate_alias_catchall_text'] = 'Hepsini-yakala yaratmak i<>in alias olarak "*" kullan<61>n.<br />Domain y<>nlendirme domaini i<>in kime k<>sm<73>nda "*@domain.tld" kullan<61>n.';
$PALANG['pEdit_alias_welcome'] = 'domaniniz i<>in bir domain\'i d<>zenleyin. <br />Sat<61>r ba<62><61>na bir giri<72>.';
$PALANG['pEdit_alias_address'] = 'Alias';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg">alias bulunam<61>yor!</span>';
$PALANG['pEdit_alias_goto'] = 'Kime';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">Kime k<>sm<73>na hi<68>bir<69>ey girmediniz.</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">Girdi<64>iniz e-posta uygun de<64>il: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Bu domain sizin de<64>il: ';
$PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.';
$PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.';
$PALANG['pEdit_alias_button'] = 'Alias D<>zenle';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Alias d<>zenlenemiyor!</span>';
$PALANG['pCreate_mailbox_welcome'] = 'Domaininiz i<>in yeni bir lokal e-posta yarat<61>n.';
$PALANG['pCreate_mailbox_username'] = 'Kullan<61>c<EFBFBD> ad<61>';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">E-POSTA uygun de<64>il!</span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Bu elektronik posta kullan<61>lmakta, l<>tfen farkl<6B> bir tane se<73>in!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Posta kutusu yaratma limitinize eri<72>tiniz!</span>';
$PALANG['pCreate_mailbox_password'] = '<27>ifre';
$PALANG['pCreate_mailbox_password2'] = '<27>ifre (tekrar)';
$PALANG['pCreate_mailbox_password_text'] = 'POP3/IMAP i<>in <20>ifre';
$PALANG['pCreate_mailbox_password_text_error'] = 'POP3/IMAP i<>in <20>ifre<br /><span class="error_msg">Verdi<64>iniz <20>ifreler birbirini tutmuyor!<br />Ya da bo<62>!</span>';
$PALANG['pCreate_mailbox_name'] = '<27>sim';
$PALANG['pCreate_mailbox_name_text'] = 'Tam isim';
$PALANG['pCreate_mailbox_quota'] = 'kota';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Verid<69>iniz kota <20>ok y<>ksek!</span>';
$PALANG['pCreate_mailbox_active'] = 'Aktif';
$PALANG['pCreate_mailbox_mail'] = 'Posta kutusu yarat';
$PALANG['pCreate_mailbox_button'] = 'Posta kutusu ekle';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Posta kutusu posta kutusu tablosuna eklenemiyor!</span>';
$PALANG['pCreate_mailbox_result_succes'] = 'Posta kutusu tabloya eklendi!';
$PALANG['pEdit_mailbox_welcome'] = 'Domaninizdeki bir posta kutusunu d<>zenleyin.';
$PALANG['pEdit_mailbox_username'] = 'kullan<61>c<EFBFBD> ad<61>';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Posta kutusu bulunamad<61>!</span>';
$PALANG['pEdit_mailbox_password'] = 'Yeni <20>ifre';
$PALANG['pEdit_mailbox_password2'] = 'Yeni <20>ifre (tekrar)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Verdi<64>iniz <20>ifreler birbirini tutmuyor!</span>';
$PALANG['pEdit_mailbox_name'] = '<27>sim';
$PALANG['pEdit_mailbox_quota'] = 'kota';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">Verdi<64>iniz kota <20>ok y<>ksek!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Bu domain dizin de<64>il: ';
$PALANG['pEdit_mailbox_button'] = 'Posta kutusunu d<>zenle';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg"><3E>ifre de<64>i<EFBFBD>tirilemedi!</span>';
$PALANG['pPassword_welcome'] = 'Giri<72> <20>ifrenizi de<64>i<EFBFBD>tirin.';
$PALANG['pPassword_admin'] = 'Giri<72>';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg">Verdi<64>iniz e-posta kutusu hi<68>bir posta kutusuna uymuyor!</span>';
$PALANG['pPassword_password_current'] = '<27>uanki <20>ifre';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg"><3E>uanki <20>ifrenizi vermediniz!</span>';
$PALANG['pPassword_password'] = 'Yeni <20>ifre';
$PALANG['pPassword_password2'] = 'Yeni <20>ifre (tekrar)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg">Verdi<64>iniz <20>ifreler birbirini tutmuyor!<br />Ya da bo<62>!</span>';
$PALANG['pPassword_button'] = '<27>ifreyi de<64>i<EFBFBD>tir';
$PALANG['pPassword_result_error'] = '<span class="error_msg"><3E>ifreniz de<64>i<EFBFBD>tirilemedi!</span>';
$PALANG['pPassword_result_succes'] = '<27>ifreniz de<64>i<EFBFBD>tirildi!';
$PALANG['pViewlog_welcome'] = 'Son 10 hareket:';
$PALANG['pViewlog_timestamp'] = 'Timestamp';
$PALANG['pViewlog_username'] = 'Y<>netici';
$PALANG['pViewlog_domain'] = 'Domain';
$PALANG['pViewlog_action'] = 'Aksiyon';
$PALANG['pViewlog_data'] = 'Veri';
$PALANG['pViewlog_button'] = 'Git';
$PALANG['pViewlog_result_error'] = '<span class="error_msg">Loglar bulunam<61>yor!</span>';
$PALANG['pSendmail_welcome'] = 'Eposta g<>nder.';
$PALANG['pSendmail_admin'] = 'kimden';
$PALANG['pSendmail_to'] = 'Kime';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg">Kime do<64>ru bir e-posta de<64>il!</span>';
$PALANG['pSendmail_subject'] = 'konu';
$PALANG['pSendmail_subject_text'] = 'Ho<48> geldiniz';
$PALANG['pSendmail_body'] = 'Metin';
$PALANG['pSendmail_button'] = 'Mesaj G<>nder';
$PALANG['pSendmail_result_error'] = '<span class="error_msg">Posta kutusu yarat<61>lamad<61>!</span>';
$PALANG['pSendmail_result_succes'] = 'Posta kutusu yarat<61>ld<6C>!';
$PALANG['pAdminMenu_list_admin'] = 'Y<>netici Listesi';
$PALANG['pAdminMenu_list_domain'] = 'Domain Listesi';
$PALANG['pAdminMenu_list_virtual'] = 'Sanal Liste';
$PALANG['pAdminMenu_viewlog'] = 'Log <20>zle';
$PALANG['pAdminMenu_backup'] = 'Yedek';
$PALANG['pAdminMenu_create_domain_admins'] = 'Domain Y<>neticileri';
$PALANG['pAdminMenu_create_admin'] = 'Yeni Y<>netici';
$PALANG['pAdminMenu_create_domain'] = 'Yeni Domain';
$PALANG['pAdminMenu_create_alias'] = 'Alias ekle';
$PALANG['pAdminMenu_create_mailbox'] = 'Postakutusu ekle';
$PALANG['pAdminList_admin_domain'] = 'Domain';
$PALANG['pAdminList_admin_username'] = 'Y<>netici';
$PALANG['pAdminList_admin_count'] = 'Domainler';
$PALANG['pAdminList_admin_modified'] = 'Son D<>zenleme';
$PALANG['pAdminList_admin_active'] = 'Aktif';
$PALANG['pAdminList_domain_domain'] = 'Domain';
$PALANG['pAdminList_domain_description'] = 'A<><41>klama';
$PALANG['pAdminList_domain_aliases'] = 'Aliaslar';
$PALANG['pAdminList_domain_mailboxes'] = 'Posta kutular<61>';
$PALANG['pAdminList_domain_maxquota'] = 'Max kota (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = 'Son D<>zenleme';
$PALANG['pAdminList_domain_active'] = 'Aktif';
$PALANG['pAdminList_virtual_button'] = 'Git';
$PALANG['pAdminList_virtual_welcome'] = 'Genel Bilgiler:';
$PALANG['pAdminList_virtual_alias_alias_count'] = 'Aliaslar';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Postakutular<61>';
$PALANG['pAdminList_virtual_alias_address'] = 'Kimden';
$PALANG['pAdminList_virtual_alias_goto'] = 'Kime';
$PALANG['pAdminList_virtual_alias_modified'] = 'Son D<>zenleme';
$PALANG['pAdminList_virtual_mailbox_username'] = 'Eposta';
$PALANG['pAdminList_virtual_mailbox_name'] = '<27>sim';
$PALANG['pAdminList_virtual_mailbox_quota'] = 'kota (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = 'Son D<>zenleme';
$PALANG['pAdminList_virtual_mailbox_active'] = 'Aktif';
$PALANG['pAdminCreate_domain_welcome'] = 'Yeni domain ekle';
$PALANG['pAdminCreate_domain_domain'] = 'Domain';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">Bu Domain halen bulunmakta!</span>';
$PALANG['pAdminCreate_domain_description'] = 'A<><41>klama';
$PALANG['pAdminCreate_domain_aliases'] = 'Aliaslar';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = iptal | 0 = limisiz';
$PALANG['pAdminCreate_domain_mailboxes'] = 'Postakutular<61>';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = iptal | 0 = limitsiz';
$PALANG['pAdminCreate_domain_maxquota'] = 'Max Kota';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = iptal | 0 = limitsiz';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = '<27>ntan<61>ml<6D> posta alias<61> ekle';
$PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminCreate_domain_button'] = 'Domain ekle';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Domain eklenemedi!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = 'Domain eklendi!';
$PALANG['pAdminEdit_domain_welcome'] = 'Domain d<>zenle';
$PALANG['pAdminEdit_domain_domain'] = 'Domain';
$PALANG['pAdminEdit_domain_description'] = 'A<><41>klama';
$PALANG['pAdminEdit_domain_aliases'] = 'Aliaslar';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = iptal | 0 = limitsiz';
$PALANG['pAdminEdit_domain_mailboxes'] = 'Posta kutular<61>';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = iptal | 0 = limitsiz';
$PALANG['pAdminEdit_domain_maxquota'] = 'Max Kota';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = iptal | 0 = limitsiz';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX';
$PALANG['pAdminEdit_domain_active'] = 'Aktif';
$PALANG['pAdminEdit_domain_button'] = 'Domain d<>zenle';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Domain d<>zenlenemedi!</span>';
$PALANG['pAdminCreate_admin_welcome'] = 'Y<>neticiye yeni bir domain ekle';
$PALANG['pAdminCreate_admin_username'] = 'Y<>netici';
$PALANG['pAdminCreate_admin_username_text'] = 'Eposta adresi';
$PALANG['pAdminCreate_admin_username_text_error1'] = 'Eposta adresi<br /><span class="error_msg">Y<>netici uygun bir eposta adresi de<64>il!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = 'Eposta adresi<br /><span class="error_msg">Y<>netici halen bulunmakta ya da uygun de<64>il</span>';
$PALANG['pAdminCreate_admin_password'] = '<27>ifre';
$PALANG['pAdminCreate_admin_password2'] = '<27>ifre (tekrar)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Girdi<64>iniz <20>ifreler uymuyor!<br />Ya da bo<62>!</span>';
$PALANG['pAdminCreate_admin_button'] = 'Y<>netici ekle';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Y<>netici eklenemiyor!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = 'Y<>netici eklendi!';
$PALANG['pAdminCreate_admin_address'] = 'Domain';
$PALANG['pAdminEdit_admin_welcome'] = 'Domain y<>neticisi d<>zenle';
$PALANG['pAdminEdit_admin_username'] = 'Y<>netici';
$PALANG['pAdminEdit_admin_password'] = '<27>ifre';
$PALANG['pAdminEdit_admin_password2'] = '<27>ifre (tekrar)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Verdi<64>iniz <20>ifreler birbirini tutmuyor!<br />Ya da bo<62>!</span>';
$PALANG['pAdminEdit_admin_active'] = 'Aktif';
$PALANG['pAdminEdit_admin_super_admin'] = 'Super admin';
$PALANG['pAdminEdit_admin_button'] = 'Y<>netici Ekle';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Y<>netici d<>zenlenemedi!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = 'Y<>netici d<>zenlendi!';
$PALANG['pUsersLogin_welcome'] = 'Posta kutusu sahipleri, <20>ifre dde<64>i<EFBFBD>tirmek i<>in giri<72> yap<61>n.';
$PALANG['pUsersLogin_username'] = 'Giri<72> (eposta)';
$PALANG['pUsersLogin_password'] = '<27>ifre';
$PALANG['pUsersLogin_button'] = 'Kullan<61>c<EFBFBD> ad<61>';
$PALANG['pUsersLogin_username_incorrect'] = 'Kullan<61>c<EFBFBD> ad<61>n<EFBFBD>z do<64>ru de<64>il. E-posta adresiniz ile giri<72> yapt<70><74><EFBFBD>n<EFBFBD>zdan emin olunuz!';
$PALANG['pUsersLogin_password_incorrect'] = '<27>ifreniz do<64>ru de<64>il!';
$PALANG['pUsersMenu_vacation'] = 'Otomatik cevaplama';
$PALANG['pUsersMenu_edit_alias'] = 'Y<>nlendirmen de<64>i<EFBFBD>tir';
$PALANG['pUsersMenu_password'] = '<27>ifre de<64>i<EFBFBD>tir';
$PALANG['pUsersMain_vacation'] = 'Posta kutunuz i<>in "ofis d<><64><EFBFBD>" mesaj<61> veya otomatik cevaplama ekleyin.';
$PALANG['pUsersMain_edit_alias'] = 'Eposta y<>nlendirmenizi de<64>i<EFBFBD>tirin.';
$PALANG['pUsersMain_password'] = '<27>ifrenizi de<64>i<EFBFBD>tirin.';
$PALANG['pUsersVacation_welcome'] = 'Otomatik Cevaplama.';
$PALANG['pUsersVacation_welcome_text'] = 'Zaten bir otomatik cevaplaman<61>z bulunmakta!';
$PALANG['pUsersVacation_subject'] = 'konu';
$PALANG['pUsersVacation_subject_text'] = 'Ofis d<><64><EFBFBD>nda';
$PALANG['pUsersVacation_body'] = 'Metin';
$PALANG['pUsersVacation_body_text'] = <<<EOM
<date> tarihinden den <date> ine burada bulunmayaca<63><61>m.
Acil durumlarda l<>tfen <contact person> a ba<62>vurunuz.
EOM;
$PALANG['pUsersVacation_button_away'] = 'D<><44>ar<61> gidiyorum.';
$PALANG['pUsersVacation_button_back'] = 'Geri Geliyorum';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg">otomatik cevaplama ayarlar<61>n<EFBFBD>z<EFBFBD> de<64>i<EFBFBD>tirilemiyor!</span>';
$PALANG['pUsersVacation_result_succes'] = 'Otomatik cevaplaman<61>z kald<6C>r<EFBFBD>ld<6C>!';
$PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox';
$PALANG['pCreate_dbLog_createalias'] = 'create alias';
$PALANG['pDelete_dbLog_deletealias'] = 'delete alias';
$PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox';
$PALANG['pEdit_dbLog_editactive'] = 'change active state';
$PALANG['pEdit_dbLog_editalias'] = 'edit alias';
$PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox';
$PALANG['pSearch_welcome'] = 'Searching for: ';
?>

298
languages/tw.lang Normal file
View File

@@ -0,0 +1,298 @@
<?php
//
// Language file Traditional Chinese
// by Bruce Chou <bruce at thumb dot cx>
//
require ('default.lang');
$PALANG['YES'] = '<27>O';
$PALANG['NO'] = '<27>_';
$PALANG['edit'] = '<27>s<EFBFBD><73>';
$PALANG['del'] = '<27>R<EFBFBD><52>';
$PALANG['confirm'] = '<27>O<EFBFBD>_<EFBFBD>T<EFBFBD>w<EFBFBD>R<EFBFBD><52>?\n';
$PALANG['confirm_domain'] = '<27>z<EFBFBD>O<EFBFBD>_<EFBFBD>T<EFBFBD>w<EFBFBD>n<EFBFBD>R<EFBFBD><52><EFBFBD>Ӻ<EFBFBD><D3BA><EFBFBD><ECA4A4><EFBFBD>Ҧ<EFBFBD><D2A6>O<EFBFBD><4F>? <20>R<EFBFBD><52><EFBFBD><EFBFBD><EFBFBD>L<EFBFBD>k<EFBFBD><6B><EFBFBD>_! \n';
$PALANG['check_update'] = 'Check for update';
$PALANG['pLogin_welcome'] = '<27>l<EFBFBD><6C><EFBFBD>޲z<DEB2><7A><EFBFBD>бq<D0B1>o<EFBFBD>صn<D8B5>J<EFBFBD>H<EFBFBD>޲z<DEB2>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>W<EFBFBD><57>.';
$PALANG['pLogin_username'] = '<27>b<EFBFBD><62> (<28>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>})';
$PALANG['pLogin_password'] = '<27>K<EFBFBD>X';
$PALANG['pLogin_button'] = '<27>n<EFBFBD>J';
$PALANG['pLogin_username_incorrect'] = '<span class="error_msg"><3E>n<EFBFBD>J<EFBFBD><4A><EFBFBD><EFBFBD>, <20>нT<D0BD>{<7B>z<EFBFBD>O<EFBFBD>ϥαz<CEB1><7A><EFBFBD>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>}<7D>n<EFBFBD>J!</span>';
$PALANG['pLogin_password_incorrect'] = '<span class="error_msg"><3E>K<EFBFBD>X<EFBFBD><58><EFBFBD>~!</span>';
$PALANG['pLogin_login_users'] = '<27>@<40><><EFBFBD>Τ<EFBFBD><CEA4>I<EFBFBD><49><EFBFBD>o<EFBFBD>ضi<D8B6>J<EFBFBD>@<40><><EFBFBD>Τ<CEA4><EFBFBD>O.';
$PALANG['pMenu_overview'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pMenu_create_alias'] = '<27>s<EFBFBD>اO<D8A7>W';
$PALANG['pMenu_create_mailbox'] = '<27>s<EFBFBD>ثH<D8AB>c';
$PALANG['pMenu_sendmail'] = '<27>o<EFBFBD>e<EFBFBD>l<EFBFBD><6C>';
$PALANG['pMenu_password'] = '<27>ק<EFBFBD><D7A7>K<EFBFBD>X';
$PALANG['pMenu_viewlog'] = '<27>d<EFBFBD>ݤ<EFBFBD><DDA4>x';
$PALANG['pMenu_logout'] = '<27>n<EFBFBD>X';
$PALANG['pMain_welcome'] = '<27>w<EFBFBD><77><EFBFBD>Ө<EFBFBD>Postfix Admin! ';
$PALANG['pMain_overview'] = '<27><><EFBFBD>ܱz<DCB1><7A><EFBFBD>l<EFBFBD><6C><EFBFBD>O<EFBFBD>W<EFBFBD>M<EFBFBD>H<EFBFBD>c. <20>z<EFBFBD>i<EFBFBD>H<EFBFBD>b<EFBFBD>o<EFBFBD><6F><EFBFBD>i<EFBFBD><69><EFBFBD>s<EFBFBD><73>/<2F>R<EFBFBD><52><EFBFBD>ާ@.';
$PALANG['pMain_create_alias'] = '<27>b<EFBFBD>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD><EFBFBD>s<EFBFBD>ؤ@<40>ӧO<D3A7>W.';
$PALANG['pMain_create_mailbox'] = '<27>b<EFBFBD>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD><EFBFBD>s<EFBFBD>ؤ@<40>ӫH<D3AB>c.';
$PALANG['pMain_sendmail'] = '<27>o<EFBFBD>@<40>ʶl<CAB6><6C><EFBFBD><EFBFBD><EFBFBD>z<EFBFBD>s<EFBFBD>ت<EFBFBD><D8AA>@<40>ӫH<D3AB>c<EFBFBD><63>.';
$PALANG['pMain_password'] = '<27>ק<EFBFBD><D7A7>z<EFBFBD><7A><EFBFBD>޲z<DEB2><7A><EFBFBD>K<EFBFBD>X.';
$PALANG['pMain_viewlog'] = '<27>d<EFBFBD>ݤ<EFBFBD><DDA4>x<EFBFBD><78>.';
$PALANG['pMain_logout'] = '<27>n<EFBFBD>X<EFBFBD>t<EFBFBD><74>';
$PALANG['pOverview_disabled'] = 'Disabled';
$PALANG['pOverview_unlimited'] = 'Unlimited';
$PALANG['pOverview_title'] = ':: Defined Domains';
$PALANG['pOverview_up_arrow'] = 'Go Top';
$PALANG['pOverview_right_arrow'] = 'Next Page';
$PALANG['pOverview_left_arrow'] = 'Previous Page';
$PALANG['pOverview_alias_title'] = ':: Alias';
$PALANG['pOverview_mailbox_title'] = ':: Mailboxes';
$PALANG['pOverview_button'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pOverview_welcome'] = '<27>s<EFBFBD><73>';
$PALANG['pOverview_alias_alias_count'] = '<27>O<EFBFBD>W';
$PALANG['pOverview_alias_mailbox_count'] = '<27>H<EFBFBD>c';
$PALANG['pOverview_alias_address'] = '<27>ǰe<C7B0><65>';
$PALANG['pOverview_alias_goto'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pOverview_alias_modified'] = '<27>̫<EFBFBD><CCAB>ק<EFBFBD><D7A7><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_username'] = '<27>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>}';
$PALANG['pOverview_mailbox_name'] = '<27>m<EFBFBD>W';
$PALANG['pOverview_mailbox_quota'] = '<27>H<EFBFBD>c<EFBFBD><63><EFBFBD><EFBFBD> (MB)';
$PALANG['pOverview_mailbox_modified'] = '<27>̫<EFBFBD><CCAB>ק<EFBFBD><D7A7><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pOverview_mailbox_active'] = '<27>ҥ<EFBFBD>';
$PALANG['pOverview_get_domain'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pOverview_get_aliases'] = '<27>O<EFBFBD>W';
$PALANG['pOverview_get_mailboxes'] = '<27>H<EFBFBD>c';
$PALANG['pOverview_get_quota'] = '<27>H<EFBFBD>c<EFBFBD><63><EFBFBD><EFBFBD> (MB)';
$PALANG['pOverview_get_modified'] = '<27>̫<EFBFBD><CCAB>ק<EFBFBD><D7A7><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pDelete_delete_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>R<EFBFBD><52><EFBFBD><EFBFBD><EFBFBD>O<EFBFBD><4F>';
$PALANG['pDelete_domain_error'] = '<span class="error_msg"><3E>z<EFBFBD>S<EFBFBD><53><EFBFBD>Ӻ<EFBFBD><D3BA><EFBFBD>޲z<DEB2>\<5C>i<EFBFBD>v';
$PALANG['pCreate_alias_welcome'] = '<27>b<EFBFBD>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD><EFBFBD>s<EFBFBD>ؤ@<40>ӧO<D3A7>W.';
$PALANG['pCreate_alias_address'] = '<27>O<EFBFBD>W';
$PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg"><3E>ӧO<D3A7>W<EFBFBD>D<EFBFBD>k! </span>';
$PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg"><3E>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>}<7D>w<EFBFBD>g<EFBFBD>s<EFBFBD>b, <20>Э<EFBFBD><D0AD>s<EFBFBD><73><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg"><3E>z<EFBFBD><7A><EFBFBD>O<EFBFBD>W<EFBFBD>w<EFBFBD>g<EFBFBD>F<EFBFBD><46><EFBFBD>W<EFBFBD><57>!</span>';
$PALANG['pCreate_alias_goto'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pCreate_alias_button'] = '<27>s<EFBFBD>اO<D8A7>W';
$PALANG['pCreate_alias_goto_text'] = '<27>l<EFBFBD>󱵦<EFBFBD><F3B1B5A6><EFBFBD><EFBFBD>}.';
$PALANG['pCreate_alias_goto_text_error'] = '<27>l<EFBFBD>󱵦<EFBFBD><F3B1B5A6><EFBFBD><EFBFBD>}.<br /><span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>}<7D><><EFBFBD><EFBFBD><EFBFBD>T!</span>';
$PALANG['pCreate_alias_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>N<EFBFBD>O<EFBFBD>W<EFBFBD>s<EFBFBD>W<EFBFBD><57><EFBFBD>O<EFBFBD>W<EFBFBD>M<EFBFBD>椤!</span>';
$PALANG['pCreate_alias_result_succes'] = '<27>s<EFBFBD>W<EFBFBD>O<EFBFBD>W<EFBFBD><57><EFBFBD>\!';
$PALANG['pCreate_alias_catchall_text'] = '<27>n<EFBFBD>N<EFBFBD>Ҧ<EFBFBD><D2A6><EFBFBD><EFBFBD>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>o<EFBFBD>Шϥ<D0A8>"*"<22>@<40><><EFBFBD>O<EFBFBD>W.<br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><ECAABA><EFBFBD>o<EFBFBD>Шϥ<D0A8>"*@domain.tld".';
$PALANG['pEdit_alias_welcome'] = '<27>s<EFBFBD><73><EFBFBD>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD>W<EFBFBD>٤<EFBFBD><D9A4><EFBFBD><EFBFBD>O<EFBFBD>W.<br /><3E>C<EFBFBD><43><EFBFBD>@<40><><EFBFBD>O<EFBFBD><4F>.';
$PALANG['pEdit_alias_address'] = '<27>O<EFBFBD>W';
$PALANG['pEdit_alias_address_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>w<EFBFBD>O<EFBFBD>W!</span>';
$PALANG['pEdit_alias_goto'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg"><3E>z<EFBFBD>S<EFBFBD><53><EFBFBD><EFBFBD><EFBFBD>g<EFBFBD><67><EFBFBD>H<EFBFBD>H</span>';
$PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg"><3E>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>}<7D>D<EFBFBD>k: ';
$PALANG['pEdit_alias_domain_error'] = '<span class="error_msg"><3E>z<EFBFBD>S<EFBFBD><53><EFBFBD>Ӻ<EFBFBD><D3BA><EFBFBD>޲z<DEB2>\<5C>i<EFBFBD>v:';
$PALANG['pEdit_alias_button'] = '<27>s<EFBFBD><73><EFBFBD>O<EFBFBD>W';
$PALANG['pEdit_alias_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>ק<EFBFBD><D7A7>ӧO<D3A7>W!</span>';
$PALANG['pCreate_mailbox_welcome'] = '<27>b<EFBFBD>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD><EFBFBD>s<EFBFBD>ؤ@<40>Ӷl<D3B6><6C><EFBFBD>H<EFBFBD>c.';
$PALANG['pCreate_mailbox_username'] = '<27>Τ<EFBFBD><CEA4>W';
$PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg"><3E>l<EFBFBD><6C><EFBFBD>D<EFBFBD>k! </span>';
$PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg"><3E>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>}<7D>w<EFBFBD>g<EFBFBD>s<EFBFBD>b, <20>Э<EFBFBD><D0AD>s<EFBFBD><73><EFBFBD><EFBFBD>!</span>';
$PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg"><3E>H<EFBFBD>c<EFBFBD><63><EFBFBD>}<7D>w<EFBFBD>g<EFBFBD>F<EFBFBD><46><EFBFBD>W<EFBFBD><57>!</span>';
$PALANG['pCreate_mailbox_password'] = '<27>K<EFBFBD>X';
$PALANG['pCreate_mailbox_password2'] = '<27>K<EFBFBD>X (<28>A<EFBFBD><41><EFBFBD><EFBFBD><EFBFBD>J)';
$PALANG['pCreate_mailbox_password_text'] = 'POP3/IMAP <20>K<EFBFBD>X';
$PALANG['pCreate_mailbox_password_text_error'] = 'POP3/IMAP <20>K<EFBFBD>X<br /><span class="error_msg"><3E>z<EFBFBD><7A><EFBFBD>J<EFBFBD><4A><EFBFBD>K<EFBFBD>X<EFBFBD><58><EFBFBD>ۦP!<br /><3E>Ϊ̬<CEAA><CCAC>ť<EFBFBD>!</span>';
$PALANG['pCreate_mailbox_name'] = '<27>W<EFBFBD>r';
$PALANG['pCreate_mailbox_name_text'] = '<27><><EFBFBD>W';
$PALANG['pCreate_mailbox_quota'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pCreate_mailbox_quota_text'] = 'MB';
$PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E>z<EFBFBD><7A><EFBFBD>J<EFBFBD><4A><EFBFBD>e<EFBFBD>q<EFBFBD><71><EFBFBD><EFBFBD><EFBFBD>W<EFBFBD>X<EFBFBD>d<EFBFBD><64>!</span>';
$PALANG['pCreate_mailbox_active'] = '<27>ҥ<EFBFBD>';
$PALANG['pCreate_mailbox_mail'] = '<27>s<EFBFBD>ثH<D8AB>c';
$PALANG['pCreate_mailbox_button'] = '<27>W<EFBFBD>[<5B>H<EFBFBD>c';
$PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>N<EFBFBD>H<EFBFBD>c<EFBFBD>W<EFBFBD>[<5B><><EFBFBD>H<EFBFBD>c<EFBFBD>M<EFBFBD>椤!</span>';
$PALANG['pCreate_mailbox_result_succes'] = '<27>W<EFBFBD>[<5B>H<EFBFBD>c<EFBFBD><63><EFBFBD>\!';
$PALANG['pEdit_mailbox_welcome'] = '<27>s<EFBFBD><73><EFBFBD>z<EFBFBD><7A><EFBFBD><EFBFBD><ECA4A4><EFBFBD>H<EFBFBD>c.';
$PALANG['pEdit_mailbox_username'] = '<27>Τ<EFBFBD><CEA4>W';
$PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>w<EFBFBD>H<EFBFBD>c!</span>';
$PALANG['pEdit_mailbox_password'] = '<27>s<EFBFBD>K<EFBFBD>X';
$PALANG['pEdit_mailbox_password2'] = '<27>s<EFBFBD>K<EFBFBD>X (<28><><EFBFBD><EFBFBD>)';
$PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg"><3E>z<EFBFBD><7A><EFBFBD>J<EFBFBD><4A><EFBFBD><EFBFBD><EFBFBD>ӷs<D3B7>K<EFBFBD>X<EFBFBD><58><EFBFBD>ۦP!</span>';
$PALANG['pEdit_mailbox_name'] = '<27>m<EFBFBD>W';
$PALANG['pEdit_mailbox_quota'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pEdit_mailbox_quota_text'] = 'MB';
$PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg"><3E>z<EFBFBD><7A><EFBFBD>J<EFBFBD><4A><EFBFBD>e<EFBFBD>q<EFBFBD><71><EFBFBD><EFBFBD><EFBFBD>W<EFBFBD>X<EFBFBD>d<EFBFBD><64>!</span>';
$PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg"><3E>z<EFBFBD>S<EFBFBD><53><EFBFBD>Ӻ<EFBFBD><D3BA><EFBFBD>޲z<DEB2>\<5C>i<EFBFBD>v: ';
$PALANG['pEdit_mailbox_button'] = '<27>s<EFBFBD><73><EFBFBD>H<EFBFBD>c';
$PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>s<EFBFBD><73><EFBFBD>ӫH<D3AB>c!</span>';
$PALANG['pPassword_welcome'] = '<27><><EFBFBD><EFBFBD><EFBFBD>z<EFBFBD><7A><EFBFBD>n<EFBFBD>J<EFBFBD>K<EFBFBD>X.';
$PALANG['pPassword_admin'] = '<27>b<EFBFBD><62>';
$PALANG['pPassword_admin_text_error'] = '<span class="error_msg"><3E>z<EFBFBD>Ҵ<EFBFBD><D2B4>Ѫ<EFBFBD><D1AA>n<EFBFBD>J<EFBFBD>b<EFBFBD><62><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>T!</span>';
$PALANG['pPassword_password_current'] = '<27><><EFBFBD>e<EFBFBD>K<EFBFBD>X';
$PALANG['pPassword_password_current_text_error'] = '<span class="error_msg"><3E>z<EFBFBD>S<EFBFBD><53><EFBFBD><EFBFBD><EFBFBD>g<EFBFBD><67><EFBFBD>e<EFBFBD>K<EFBFBD>X!</span>';
$PALANG['pPassword_password'] = '<27>s<EFBFBD>K<EFBFBD>X';
$PALANG['pPassword_password2'] = '<27>s<EFBFBD>K<EFBFBD>X (<28><><EFBFBD><EFBFBD>)';
$PALANG['pPassword_password_text_error'] = '<span class="error_msg"><3E>z<EFBFBD><EFBFBD><E2A6B8><EFBFBD>J<EFBFBD><4A><EFBFBD>s<EFBFBD>K<EFBFBD>X<EFBFBD><58><EFBFBD>ۦP!<br /><3E>Ϊ̬<CEAA><CCAC>ť<EFBFBD>!</span>';
$PALANG['pPassword_button'] = '<27><><EFBFBD><EFBFBD><EFBFBD>K<EFBFBD>X';
$PALANG['pPassword_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>K<EFBFBD>X<EFBFBD><58><EFBFBD><EFBFBD>!</span>';
$PALANG['pPassword_result_succes'] = '<27><><EFBFBD><EFBFBD><EFBFBD>K<EFBFBD>X<EFBFBD><58><EFBFBD>\!';
$PALANG['pViewlog_welcome'] = '<27>d<EFBFBD>ݳ̷s<CCB7><73>10<31><30><EFBFBD>ާ@<40><><EFBFBD>x <20><><EFBFBD><EFBFBD><EFBFBD>W<EFBFBD><57>:';
$PALANG['pViewlog_timestamp'] = '<27>ɶ<EFBFBD>';
$PALANG['pViewlog_username'] = '<27>޲z<DEB2><7A>';
$PALANG['pViewlog_domain'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pViewlog_action'] = '<27>ާ@';
$PALANG['pViewlog_data'] = '<27><><EFBFBD>e';
$PALANG['pViewlog_button'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pViewlog_result_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>x!</span>';
$PALANG['pSendmail_welcome'] = '<27>o<EFBFBD>e<EFBFBD>l<EFBFBD><6C>.';
$PALANG['pSendmail_admin'] = '<27>o<EFBFBD><6F><EFBFBD>H';
$PALANG['pSendmail_to'] = '<27><><EFBFBD><EFBFBD><EFBFBD>H';
$PALANG['pSendmail_to_text_error'] = '<span class="error_msg"><3E><><EFBFBD><EFBFBD><EFBFBD>H<EFBFBD><48><EFBFBD>ťթΪ̦<CEAA><CCA6><EFBFBD><EFBFBD>H<EFBFBD><48><EFBFBD>}<7D><><EFBFBD><EFBFBD><EFBFBD>T!</span>';
$PALANG['pSendmail_subject'] = '<27>D<EFBFBD><44>';
$PALANG['pSendmail_subject_text'] = '<27>w<EFBFBD><77><EFBFBD>ϥΧڭ̪<DAAD><CCAA>l<EFBFBD><6C><EFBFBD>t<EFBFBD><74>!';
$PALANG['pSendmail_body'] = '<27><><EFBFBD>e';
$PALANG['pSendmail_button'] = '<27>o<EFBFBD>e';
$PALANG['pSendmail_result_error'] = '<span class="error_msg"><3E>إ߫H<DFAB>c<EFBFBD><63><EFBFBD><EFBFBD>! </span>';
$PALANG['pSendmail_result_succes'] = '<27>إ߫H<DFAB>c<EFBFBD><63><EFBFBD>\! ';
$PALANG['pAdminMenu_list_admin'] = '<27>޲z<DEB2><7A><EFBFBD>M<EFBFBD><4D>';
$PALANG['pAdminMenu_list_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>W<EFBFBD>ٲM<D9B2><4D>';
$PALANG['pAdminMenu_list_virtual'] = '<27><><EFBFBD><EFBFBD><EFBFBD>Τ<EFBFBD><CEA4>M<EFBFBD><4D>';
$PALANG['pAdminMenu_viewlog'] = '<27>d<EFBFBD>ݤ<EFBFBD><DDA4>x';
$PALANG['pAdminMenu_backup'] = '<27>ƥ<EFBFBD>';
$PALANG['pAdminMenu_create_domain_admins'] = '<27><><EFBFBD><EFBFBD><EFBFBD>޲z<DEB2><7A>';
$PALANG['pAdminMenu_create_admin'] = '<27>s<EFBFBD>غ޲z<DEB2><7A>';
$PALANG['pAdminMenu_create_domain'] = '<27>s<EFBFBD>غ<EFBFBD><D8BA><EFBFBD>';
$PALANG['pAdminMenu_create_alias'] = '<27>s<EFBFBD>اO<D8A7>W';
$PALANG['pAdminMenu_create_mailbox'] = '<27>s<EFBFBD>ثH<D8AB>c';
$PALANG['pAdminList_admin_domain'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_username'] = '<27>޲z<DEB2><7A>';
$PALANG['pAdminList_admin_count'] = '<27>޲z<DEB2><7A><EFBFBD><EFBFBD><EFBFBD>ƶq';
$PALANG['pAdminList_admin_modified'] = '<27>̫<EFBFBD><CCAB>ק<EFBFBD><D7A7><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_admin_active'] = '<27>ҥ<EFBFBD>';
$PALANG['pAdminList_domain_domain'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_description'] = '<27>y<EFBFBD>z';
$PALANG['pAdminList_domain_aliases'] = '<27>O<EFBFBD>W<EFBFBD>ƶq';
$PALANG['pAdminList_domain_mailboxes'] = '<27>H<EFBFBD>c<EFBFBD>ƶq';
$PALANG['pAdminList_domain_maxquota'] = '<27>̤j<CCA4>e<EFBFBD>q<EFBFBD><71><EFBFBD><EFBFBD> (MB)';
$PALANG['pAdminList_domain_transport'] = 'Transport';
$PALANG['pAdminList_domain_backupmx'] = 'Backup MX';
$PALANG['pAdminList_domain_modified'] = '<27>̫<EFBFBD><CCAB>ק<EFBFBD><D7A7><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_domain_active'] = '<27>ҥ<EFBFBD>';
$PALANG['pAdminList_virtual_button'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_welcome'] = '<27><><EFBFBD><EFBFBD><ECB7A7> <20><><EFBFBD><EFBFBD><EFBFBD>W<EFBFBD><57>:';
$PALANG['pAdminList_virtual_alias_alias_count'] = '<27>O<EFBFBD>W<EFBFBD>ƶq';
$PALANG['pAdminList_virtual_alias_mailbox_count'] = '<27>H<EFBFBD>c<EFBFBD>ƶq';
$PALANG['pAdminList_virtual_alias_address'] = '<27>ǰe<C7B0><65>';
$PALANG['pAdminList_virtual_alias_goto'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_alias_modified'] = '<27>̫<EFBFBD><CCAB>ק<EFBFBD><D7A7><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_username'] = '<27>H<EFBFBD>c';
$PALANG['pAdminList_virtual_mailbox_name'] = '<27>m<EFBFBD>W';
$PALANG['pAdminList_virtual_mailbox_quota'] = '<27><><EFBFBD><EFBFBD> (MB)';
$PALANG['pAdminList_virtual_mailbox_modified'] = '<27>̫<EFBFBD><CCAB>ק<EFBFBD><D7A7><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminList_virtual_mailbox_active'] = '<27>ҥ<EFBFBD>';
$PALANG['pAdminCreate_domain_welcome'] = '<27>s<EFBFBD>غ<EFBFBD><D8BA><EFBFBD>';
$PALANG['pAdminCreate_domain_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>W<EFBFBD><57>';
$PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg"><3E>Ӻ<EFBFBD><D3BA><EFBFBD><EFBFBD>w<EFBFBD>g<EFBFBD>s<EFBFBD>b!</span>';
$PALANG['pAdminCreate_domain_description'] = '<27>y<EFBFBD>z';
$PALANG['pAdminCreate_domain_aliases'] = '<27>O<EFBFBD>W<EFBFBD>ƶq';
$PALANG['pAdminCreate_domain_aliases_text'] = '-1 = <20>T<EFBFBD><54> | 0 = <20>L<EFBFBD><4C><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_mailboxes'] = '<27>H<EFBFBD>c<EFBFBD>ƶq';
$PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = <20>T<EFBFBD><54> | 0 = <20>L<EFBFBD><4C><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_maxquota'] = '<27>̤j<CCA4>e<EFBFBD>q<EFBFBD><71><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = <20>T<EFBFBD><54> | 0 = <20>L<EFBFBD><4C><EFBFBD><EFBFBD>';
$PALANG['pAdminCreate_domain_transport'] = 'Transport';
$PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
$PALANG['pAdminCreate_domain_defaultaliases'] = '<27>W<EFBFBD>[<5B><><EFBFBD>اO<D8A7>W';
$PALANG['pAdminCreate_domain_backupmx'] = '<27>l<EFBFBD><6C><EFBFBD>D<EFBFBD><44><EFBFBD>O Backup MX';
$PALANG['pAdminCreate_domain_button'] = '<27>s<EFBFBD>W';
$PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg"><3E>s<EFBFBD>W<EFBFBD><57><EFBFBD><EFBFBD><ECA5A2>!</span>';
$PALANG['pAdminCreate_domain_result_succes'] = '<27>s<EFBFBD>W<EFBFBD><57><EFBFBD><EFBFBD>\!';
$PALANG['pAdminEdit_domain_welcome'] = '<27>ק<EFBFBD><D7A7><EFBFBD><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_domain'] = '<27><><EFBFBD><EFBFBD><EFBFBD>W<EFBFBD><57>';
$PALANG['pAdminEdit_domain_description'] = '<27>y<EFBFBD>z';
$PALANG['pAdminEdit_domain_aliases'] = '<27>O<EFBFBD>W<EFBFBD>ƶq';
$PALANG['pAdminEdit_domain_aliases_text'] = '-1 = <20>T<EFBFBD><54> | 0 = <20>L<EFBFBD><4C><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_mailboxes'] = '<27>H<EFBFBD>c<EFBFBD>ƶq';
$PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = <20>T<EFBFBD><54> | 0 = <20>L<EFBFBD><4C><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_maxquota'] = '<27>̤j<CCA4>e<EFBFBD>q<EFBFBD><71><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = <20>T<EFBFBD><54> | 0 = <20>L<EFBFBD><4C><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_domain_transport'] = 'Transport';
$PALANG['pAdminEdit_domain_transport_text'] = 'Define transport';
$PALANG['pAdminEdit_domain_backupmx'] = '<27>l<EFBFBD><6C><EFBFBD>D<EFBFBD><44><EFBFBD>O Backup MX';
$PALANG['pAdminEdit_domain_active'] = '<27>ҥ<EFBFBD>';
$PALANG['pAdminEdit_domain_button'] = '<27>ק<EFBFBD>';
$PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg"><3E>ק<EFBFBD><D7A7><EFBFBD><EFBFBD><EFBFBD><ECA5A2>!</span>';
$PALANG['pAdminCreate_admin_welcome'] = '<27>s<EFBFBD>W<EFBFBD><57><EFBFBD><EFBFBD><EFBFBD>޲z<DEB2><7A><EFBFBD>b<EFBFBD><62>';
$PALANG['pAdminCreate_admin_username'] = '<27>޲z<DEB2><7A><EFBFBD>b<EFBFBD><62>';
$PALANG['pAdminCreate_admin_username_text'] = '<27>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>}';
$PALANG['pAdminCreate_admin_username_text_error1'] = '<27>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>}<br /><span class="error_msg"><3E>޲z<DEB2><7A><EFBFBD>b<EFBFBD><62><EFBFBD><EFBFBD><EFBFBD>O<EFBFBD>@<40>ӦX<D3A6>k<EFBFBD><6B><EFBFBD>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>}!</span>';
$PALANG['pAdminCreate_admin_username_text_error2'] = '<27>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>}<br /><span class="error_msg"><3E>޲z<DEB2><7A><EFBFBD>b<EFBFBD><62><EFBFBD>w<EFBFBD>g<EFBFBD>s<EFBFBD>b<EFBFBD>Ϊ̺޲z<DEB2><7A><EFBFBD>b<EFBFBD><62><EFBFBD>D<EFBFBD>k!</span>';
$PALANG['pAdminCreate_admin_password'] = '<27>K<EFBFBD>X';
$PALANG['pAdminCreate_admin_password2'] = '<27>K<EFBFBD>X (<28><><EFBFBD><EFBFBD>)';
$PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg"><3E>s<EFBFBD>ҿ<EFBFBD><D2BF>J<EFBFBD><4A><EFBFBD><EFBFBD>s<EFBFBD>K<EFBFBD>X<EFBFBD><58><EFBFBD>ۦP!<br /><3E>Ϊ̬<CEAA><CCAC>ť<EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_button'] = '<27>s<EFBFBD>W';
$PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg"><3E>s<EFBFBD>W<EFBFBD>޲z<DEB2><7A><EFBFBD>b<EFBFBD><62><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminCreate_admin_result_succes'] = '<27>s<EFBFBD>W<EFBFBD>޲z<DEB2><7A><EFBFBD>b<EFBFBD><62><EFBFBD><EFBFBD><EFBFBD>\!';
$PALANG['pAdminCreate_admin_address'] = '<27><><EFBFBD><EFBFBD>';
$PALANG['pAdminEdit_admin_welcome'] = '<27>ק<EFBFBD><D7A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޲z<DEB2><7A><EFBFBD>b<EFBFBD><62>';
$PALANG['pAdminEdit_admin_username'] = '<27>޲z<DEB2><7A><EFBFBD>b<EFBFBD><62>';
$PALANG['pAdminEdit_admin_password'] = '<27>K<EFBFBD>X';
$PALANG['pAdminEdit_admin_password2'] = '<27>K<EFBFBD>X (<28><><EFBFBD><EFBFBD>)';
$PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg"><3E>z<EFBFBD><EFBFBD><E2A6B8><EFBFBD>J<EFBFBD><4A><EFBFBD>s<EFBFBD>K<EFBFBD>X<EFBFBD><58><EFBFBD>ۦP!<br /><3E>Ϊ̬<CEAA><CCAC>ť<EFBFBD>!</span>';
$PALANG['pAdminEdit_admin_active'] = '<27>ҥ<EFBFBD>';
$PALANG['pAdminEdit_admin_button'] = '<27>ק<EFBFBD>';
$PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg"><3E>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޲z<DEB2><7A><EFBFBD>b<EFBFBD><62><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</span>';
$PALANG['pAdminEdit_admin_result_succes'] = '<27>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޲z<DEB2><7A><EFBFBD>b<EFBFBD><62><EFBFBD><EFBFBD><EFBFBD>\!';
$PALANG['pUsersLogin_welcome'] = '<27>@<40><><EFBFBD>Τ<EFBFBD><CEA4>q<EFBFBD>o<EFBFBD>صn<D8B5>J<EFBFBD>޲z<DEB2>z<EFBFBD><7A><EFBFBD>K<EFBFBD>X<EFBFBD>M<EFBFBD>O<EFBFBD>W.';
$PALANG['pUsersLogin_username'] = '<27>b<EFBFBD><62> (<28>H<EFBFBD>c<EFBFBD><63><EFBFBD>})';
$PALANG['pUsersLogin_password'] = '<27>K<EFBFBD>X';
$PALANG['pUsersLogin_button'] = '<27>n<EFBFBD>J';
$PALANG['pUsersLogin_username_incorrect'] = '<27>n<EFBFBD>J<EFBFBD><4A><EFBFBD><EFBFBD>. <20>нT<D0BD>{<7B>z<EFBFBD>O<EFBFBD>ϥαz<CEB1><7A><EFBFBD>H<EFBFBD>c<EFBFBD><63><EFBFBD>}<7D>n<EFBFBD>J!';
$PALANG['pUsersLogin_password_incorrect'] = '<27>n<EFBFBD>J<EFBFBD>K<EFBFBD>X<EFBFBD><58><EFBFBD><EFBFBD><EFBFBD>T!';
$PALANG['pUsersMenu_vacation'] = '<27>۰ʦ^<5E><>';
$PALANG['pUsersMenu_edit_alias'] = '<27>ק<EFBFBD><D7A7><EFBFBD><EFBFBD>o';
$PALANG['pUsersMenu_password'] = '<27>ק<EFBFBD><D7A7>K<EFBFBD>X';
$PALANG['pUsersMain_vacation'] = '<27>]<5D>m<EFBFBD>~<7E>X<EFBFBD><58><EFBFBD>T<EFBFBD>Φ۰ʦ^<5E><>.';
$PALANG['pUsersMain_edit_alias'] = '<27>ק<EFBFBD><D7A7>H<EFBFBD>c<EFBFBD><63><EFBFBD>o.';
$PALANG['pUsersMain_password'] = '<27>ק<EFBFBD><D7A7><EFBFBD><EFBFBD>e<EFBFBD>K<EFBFBD>X.';
$PALANG['pUsersVacation_welcome'] = '<27>۰ʦ^<5E><>.';
$PALANG['pUsersVacation_welcome_text'] = '<27>z<EFBFBD>w<EFBFBD>g<EFBFBD>]<5D>m<EFBFBD>F<EFBFBD>۰ʦ^<5E><>!';
$PALANG['pUsersVacation_subject'] = '<27>D<EFBFBD><44>';
$PALANG['pUsersVacation_subject_text'] = '<27>ڲ{<7B>b<EFBFBD>L<EFBFBD>k<EFBFBD>^<5E>H';
$PALANG['pUsersVacation_body'] = '<27><><EFBFBD>e';
$PALANG['pUsersVacation_body_text'] = <<<EOM
<20>ڦb <date> <20><> <date> <20>o<EFBFBD>q<EFBFBD>ɶ<EFBFBD><C9B6><EFBFBD><EFBFBD>ȮɵL<C9B5>k<EFBFBD>^<5E>H.
<EFBFBD>p<EFBFBD>G<EFBFBD>z<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƽлP <contact person> <20>pô.
EOM;
$PALANG['pUsersVacation_button_away'] = '<27>}<7D>Ҧ۰ʦ^<5E><>';
$PALANG['pUsersVacation_button_back'] = '<27><><EFBFBD><EFBFBD><EFBFBD>۰ʦ^<5E><>';
$PALANG['pUsersVacation_result_error'] = '<span class="error_msg"><3E><><EFBFBD>s<EFBFBD>۰ʦ^<5E>Х<EFBFBD><D0A5><EFBFBD>!</span>';
$PALANG['pUsersVacation_result_succes'] = '<27>z<EFBFBD><7A><EFBFBD>۰ʦ^<5E>Фw<D0A4>g<EFBFBD><67><EFBFBD><EFBFBD>!';
$PALANG['pCreate_dbLog_createmailbox'] = '<27>s<EFBFBD>ثH<D8AB>c';
$PALANG['pCreate_dbLog_createalias'] = '<27>s<EFBFBD>اO<D8A7>W';
$PALANG['pDelete_dbLog_deletealias'] = '<27>R<EFBFBD><52><EFBFBD>O<EFBFBD>W';
$PALANG['pDelete_dbLog_deletemailbox'] = '<27>R<EFBFBD><52><EFBFBD>H<EFBFBD>c';
$PALANG['pEdit_dbLog_editactive'] = '<27>ܧ<EFBFBD><DCA7>Ұʪ<D2B0><CAAA>A';
$PALANG['pEdit_dbLog_editalias'] = '<27>s<EFBFBD><73><EFBFBD>O<EFBFBD>W';
$PALANG['pEdit_dbLog_editmailbox'] = '<27>s<EFBFBD><73><EFBFBD>H<EFBFBD>c';
$PALANG['pSearch_welcome'] = '<27>j<EFBFBD>M: ';
?>

83
login.php Normal file
View File

@@ -0,0 +1,83 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: login.php
//
// Template File: login.tpl
//
// Template Variables:
//
// tMessage
// tUsername
//
// Form POST \ GET Variables:
//
// fUsername
// fPassword
//
require ("./variables.inc.php");
require ("./config.inc.php");
require ("./functions.inc.php");
include ("./languages/" . check_language () . ".lang");
if ($_SERVER['REQUEST_METHOD'] == "GET")
{
include ("./templates/header.tpl");
include ("./templates/login.tpl");
include ("./templates/footer.tpl");
}
if ($_SERVER['REQUEST_METHOD'] == "POST")
{
if (isset ($_POST['fUsername'])) $fUsername = escape_string ($_POST['fUsername']);
if (isset ($_POST['fPassword'])) $fPassword = escape_string ($_POST['fPassword']);
$result = db_query ("SELECT password FROM $table_admin WHERE username='$fUsername' AND active='1'");
if ($result['rows'] == 1)
{
$row = db_array ($result['result']);
$password = pacrypt ($fPassword, $row['password']);
$result = db_query ("SELECT * FROM $table_admin WHERE username='$fUsername' AND password='$password' AND active='1'");
if ($result['rows'] != 1)
{
$error = 1;
$tMessage = $PALANG['pLogin_password_incorrect'];
$tUsername = $fUsername;
}
}
else
{
$error = 1;
$tMessage = $PALANG['pLogin_username_incorrect'];
}
if ($error != 1)
{
session_start();
session_register("sessid");
$_SESSION['sessid']['username'] = $fUsername;
$result = db_query ("SELECT * FROM $table_domain_admins WHERE username='$fUsername' AND domain='ALL' AND active='1'");
if ($result['rows'] == 1)
{
$row = db_array ($result['result']);
if ($fUsername == $row['username'])
{
header("Location: admin/index.php");
exit;
}
}
header("Location: main.php");
exit;
}
include ("./templates/header.tpl");
include ("./templates/login.tpl");
include ("./templates/footer.tpl");
}
?>

30
logout.php Normal file
View File

@@ -0,0 +1,30 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: logout.php
//
// Template File: -none-
//
// Template Variables:
//
// -none-
//
// Form POST \ GET Variables:
//
// -none-
//
require ("./config.inc.php");
require ("./functions.inc.php");
$SESSID_USERNAME = check_session ();
session_unset ();
session_destroy ();
header ("Location: login.php");
exit;
?>

41
main.php Normal file
View File

@@ -0,0 +1,41 @@
<?php
//
// Postfix Admin
// by Mischa Peters <mischa at high5 dot net>
// Copyright (c) 2002 - 2005 High5!
// Licensed under GPL for more info check GPL-LICENSE.TXT
//
// File: main.php
//
// Template File: main.tpl
//
// Template Variables:
//
// -none-
//
// Form POST \ GET Variables:
//
// -none-
//
require ("./config.inc.php");
require ("./functions.inc.php");
include ("./languages/" . check_language () . ".lang");
$SESSID_USERNAME = check_session ();
if ($_SERVER["REQUEST_METHOD"] == "GET")
{
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/main.tpl");
include ("./templates/footer.tpl");
}
if ($_SERVER["REQUEST_METHOD"] == "POST")
{
include ("./templates/header.tpl");
include ("./templates/menu.tpl");
include ("./templates/main.tpl");
include ("./templates/footer.tpl");
}
?>

7
motd-users.txt Normal file
View File

@@ -0,0 +1,7 @@
<div class="standout">
=== Announcement ===<br />
This is a new version of Postfix Admin.<br />
If you have any questions please direct them to the <a href="mailto:<?php print $CONF['admin_email']; ?>">Site Admin</a><br />
=== Announcement ===<br />
</div>
<br />

Some files were not shown because too many files have changed in this diff Show More