fix admin_statistics to use eT2

This commit is contained in:
Ralf Becker 2016-05-14 12:40:15 +02:00
parent 5be1075f26
commit 51731f2e9b
6 changed files with 462 additions and 504 deletions

View File

@ -12,6 +12,7 @@
use EGroupware\Api;
use EGroupware\Api\Egw;
use EGroupware\Api\Etemplate;
/**
* Submit statistical data to egroupware.org
@ -63,9 +64,9 @@ class admin_statistics
Api\Config::save_value(self::CONFIG_USAGE_TYPE,$_content['usage_type'],self::CONFIG_APP);
Api\Config::save_value(self::CONFIG_INSTALL_TYPE,$_content['install_type'],self::CONFIG_APP);
Api\Config::save_value(self::CONFIG_POSTPONE_SUBMIT,null,self::CONFIG_APP); // remove evtl. postpone time
$what = 'submited';
$what = 'submitted';
}
Egw::redirect_link('/admin/index.php','statistics='.($what ? $what : 'cancled'));
Egw::redirect_link('/admin/index.php','ajax=true&statistics='.($what ? $what : 'canceled'),'admin');
}
$sel_options['usage_type'] = array(
'commercial' => lang('Commercial: all sorts of companies'),
@ -78,6 +79,7 @@ class admin_statistics
$sel_options['install_type'] = array(
'archive' => lang('Archive: zip or tar'),
'package' => lang('RPM or Debian package'),
'git' => lang('Git clone'),
'svn' => lang('Subversion checkout'),
'other' => lang('Other'),
);
@ -95,7 +97,7 @@ class admin_statistics
$config = Api\Config::read(self::CONFIG_APP);
//_debug_array($config);
$content = array_merge(self::gather_data(),array(
'statistic_url' => Api\Html::a_href(self::STATISTIC_URL,self::STATISTIC_URL,'',' target="_blank"'),
'statistic_url' => self::STATISTIC_URL,
'submit_host' => parse_url(self::SUBMIT_URL,PHP_URL_HOST),
'submit_url' => self::SUBMIT_URL,
'last_submitted' => $config[self::CONFIG_LAST_SUBMIT],
@ -131,7 +133,7 @@ class admin_statistics
if (!isset($config[self::CONFIG_LAST_SUBMIT]) || $config[self::CONFIG_LAST_SUBMIT ] <= time()-self::SUBMISION_RATE)
{
// clear etemplate_exec_id and replace form.action, before submitting the form
$content['onclick'] = "return app.admin.submit_statistic(this.form,'$content[submit_url]','".addslashes(lang('Submit displayed information?'))."');";
$content['onclick'] = "return app.admin.submit_statistic(this.form,'$content[submit_url]');";
}
else // we are not due --> tell it the user
{
@ -140,7 +142,7 @@ class admin_statistics
ceil((time()-$config[self::CONFIG_LAST_SUBMIT])/24/3600));
}
$GLOBALS['egw_info']['flags']['app_header'] = lang('Submit statistic information');
$tmpl = new etemplate('admin.statistics');
$tmpl = new Etemplate('admin.statistics');
$tmpl->exec('admin.admin_statistics.submit',$content,$sel_options,$readonlys);
}
@ -157,7 +159,7 @@ class admin_statistics
$data['country'] = $GLOBALS['egw_info']['user']['preferences']['common']['country'];
// api version
$data['version'] = $GLOBALS['egw_info']['apps']['phpgwapi']['version'];
$data['version'] = $GLOBALS['egw_info']['apps']['api']['version'];
// append EPL version
if (isset($GLOBALS['egw_info']['apps']['stylite']))
{
@ -180,7 +182,11 @@ class admin_statistics
{
$data['os'] .= ': '.str_replace(array("\n","\r"),'',implode(',',file($file)));
}
if (file_exists('.svn'))
if(file_exists(EGW_INCLUDE_ROOT.'/.git'))
{
$data['install_type'] = 'git';
}
elseif (file_exists('.svn'))
{
$data['install_type'] = 'svn';
}

View File

@ -4,9 +4,9 @@
* @link http://www.egroupware.org
* @package filemanager
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @copyright (c) 2013-14 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @copyright (c) 2013-16 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$
* @version $Id: app.js 56051 2016-05-06 07:58:37Z ralfbecker $
*/
/**
@ -117,7 +117,9 @@ app.classes.admin = AppJS.extend(
*/
load: function(_url)
{
if (this.iframe && this.iframe.getDOMNode().contentDocument.location.href.match(/menuaction=admin.admin_statistics.submit/))
if (this.iframe && this.iframe.getDOMNode().contentDocument.location.href
.match(/menuaction=admin.admin_statistics.submit/) &&
!_url.match(/statistics=(postpone|canceled|submitted)/))
{
this.egw.message(this.egw.lang('Please submit (or postpone) statistic first'), 'info');
return; // do not allow to leave statistics submit
@ -719,39 +721,50 @@ app.classes.admin = AppJS.extend(
*
* @param {DOM} form
* @param {string} submit_url
* @param {string} confirm_msg
* @param {string} action own action, if called via window_set_timeout
* @param {string} exec_id own exec_id
* @return {boolean}
*/
submit_statistic: function(form,submit_url,confirm_msg,action,exec_id)
submit_statistic: function(form, submit_url)
{
if (submit_url) {
if (!confirm(confirm_msg)) return false;
var own_action = form.action;
var own_exec_id = form['etemplate_exec_id'].value;
var that = this;
// submit to own webserver
window.setTimeout(function() {
that.submit_statistic.call(this, form, '', '', own_action, own_exec_id);
},100);
var that = this;
var submit = function(_button)
{
// submit to egroupware.org
var method=form.method;
form.method='POST';
var action = form.action;
form.action=submit_url;
form['etemplate_exec_id'].value='';
var target = form.target;
form.target='_blank';
} else {
// submit to own webserver
form.action = action;
form['etemplate_exec_id'].value=exec_id;
form.target='';
form.submit();
}
return true;
// submit to own webserver
form.method=method;
form.action=action;
form.target=target;
that.et2.getInstanceManager().submit('submit');
};
// Safari does NOT allow to call form.submit() outside of onclick callback
// so we have to use browsers ugly synchron confirm
if (navigator.userAgent.match(/Safari/) && !navigator.userAgent.match(/Chrome/))
{
if (confirm(this.egw.lang('Submit displayed information?')))
{
submit();
}
}
else
{
et2_dialog.show_dialog(function(_button)
{
if (_button == et2_dialog.YES_BUTTON)
{
submit();
}
}, this.egw.lang('Submit displayed information?'), '', {},
et2_dialog.BUTTON_YES_NO, et2_dialog.QUESTION_MESSAGE, undefined, egw);
}
return false;
},
/**

View File

@ -7,6 +7,7 @@
%1 category(s) %2 admin de %1 Kategorie(n) %2
%1 category(s) %2, %3 failed because of insufficent rights !!! admin de %1 Kategorie(n) %2, %3 fehlgeschlagen wegen fehlender Rechte!
%1 class not instanciated admin de %1 Klasse nicht instanziiert
%1 entries deleted. admin de %1 Einträge gelöscht
%1 group %2 admin de %1 Benutzergruppe %2
%1 is no command! admin de %1 ist kein Befehl !
%1 log entries deleted. admin de %1 Protokolleinträge gelöscht.
@ -18,6 +19,8 @@
%1 user %2 admin de %1 Benutzer %2
(de)activate mail accounts admin de EMail-Konten (de)aktivieren
(default no, leave it off if you dont use it) admin de (Vorgabe Nein, ausgeschaltet lassen, wenn nicht benutzt)
(imapclass must support this feature by querying the corresponding config value and pass it as defaultquota to the imapserver) admin de (Die IMAP Klasse muss dieses Verfahren unterstützen indem es den entsprechenden Konfigurationswert der Instanz ausliest und als Default Quota an den IMAP Server meldet.)
(no subject) admin de (Kein Betreff)
(stored password will not be shown here) admin de (Gespeichertes Passwort wird hier nicht angezeigt)
(to install new applications use<br><a href="setup/" target="setup">setup</a> [manage applications] !!!) admin de (Zur Installation neuer Anwendungen verwenden Sie bitte<br><a href="setup/" target="setup">Setup</a> [Anwendungen Verwalten] !!!)
- type admin de -Typ
@ -30,14 +33,18 @@ account "%1" has no email address --> not notified! admin de Benutzer "%1" hat k
account "%1" has no plaintext password! admin de Benutzer "%1" hat kein Klartext Passwort!
account %1 %2 admin de Benutzerkonto %1 %2
account '%1' deleted. admin de Konto '%1' gelöscht.
account '%1' not found !!! admin de Mailkonto '%1' nicht gefunden !
account active admin de Konto aktiv
account deleted. admin de Mailkonto gelöscht.
account has been created common de Konto wurde erstellt
account has been deleted common de Konto wurde gelöscht
account has been updated common de Konto wurde aktualisiert
account id admin de Benutzerkonto ID
account list admin de Benutzerkonten anzeigen
account not found! common de Mailkonto nicht gefunden!
account permissions admin de Zugriffsrechte
account preferences admin de Einstellungen der Benutzerkonten
account saved. admin de Mailkonto gespeichert.
account-id's have to be integers! admin de Konten-ID`s müssen vom Typ Integer (Zahl) sein!
acl added. admin de ACL hinzugefügt.
acl deleted. admin de ACL gelöscht.
@ -51,6 +58,7 @@ action admin de Befehl
actions admin de Befehle
activate admin de Aktivieren
activate wysiwyg-editor admin de WYSIWYG Editor (formatierter Text) aktivieren
active templates admin de Aktive Vorlagen
add a category admin de Eine Kategorie hinzufügen
add a group admin de Eine Gruppe hinzufügen
add a new account. admin de Neues Benutzerkonto anlegen
@ -65,17 +73,22 @@ add global category for %1 admin de Globale Kategorie für %1 hinzufügen
add group admin de Gruppe hinzufügen
add new account admin de Neues Benutzerkonto hinzufügen
add new application admin de Neue Anwendung hinzufügen
add new email address: admin de Neue E-Mailadresse hinzufügen
add peer server admin de Server zu Serververbund hinzufügen
add profile admin de Profil hinzufügen
add sub-category admin de Unterkategorie hinzufügen
add user admin de Neuen Benutzer erstellen
add user or group admin de Benutzer oder Gruppen eingeben
admin dn admin de Admin DN
admin email admin de E-Mail-Administration
admin email addresses (comma-separated) to be notified about the blocking (empty for no notify) admin de E-Mail-Adressen der Administratoren (mit Komma getrennt) die über eine Sperre benachrichtigt werden sollen ('leer' für keine Benachrichtigung)
admin name admin de Name des Administrators
admin password admin de Admin Passwort
admin queue and history admin de Admin Queue und Historie
admin username admin de Administrator Benutzername
administration admin de Administration
admins admin de Administratoren
advanced options admin de erweiterte Optionen
advanced options admin de erweiterte Einstellungen
after how many unsuccessful attempts to login, an account should be blocked (default 3) ? admin de Nach wievielen erfolglosen Anmeldeversuchen soll ein Benutzerkonto gesperrt werden (Vorgabe 3)?
after how many unsuccessful attempts to login, an ip should be blocked (default 3) ? admin de Nach wievielen erfolglosen Anmeldeversuchen soll eine IP-Adresse gesperrt werden (Vorgabe 3)?
aliases admin de E-Mail-Alias
@ -86,11 +99,16 @@ all records and account information will be lost! admin de Alle Datensätze und
all users admin de Alle Benutzer
allow anonymous access to this app admin de Anonymen Zugriff auf diese Anwendung zulassen
allow remote administration from following install id's (comma separated) admin de Erlaube die Remote-Verwaltung durch folgende (Komma separierte) Install IDs
alternate email address admin de Alternative E-Mail-Adresse
allow users to change forwards admin de Anwender dürfen Weiterleitung bearbeiten
alternate email address admin de zusätzliche E-Mail-Adressen
and logged in admin de und eingeloggt
anonymous user admin de Anonymer Benutzer
anonymous user (not shown in list sessions) admin de Anonymer Benutzer (wird bei 'Sitzungen anzeigen' nicht angezeigt)
anonymous user does not exist! admin de Anonymer Benutzer existiert NICHT!
anonymous user has no run-rights for the application! admin de Anonymer Benutzer hat KEINE Ausführungsrechte für die Anwendung!
any application admin de jede Anwendung
any group admin de jede Gruppe
any user admin de jeder Benutzer
appearance admin de Aussehen
application admin de Anwendung
application '%1' not found (maybe not installed or misspelled)! admin de Anwendung '%1' nicht gefunden. (eventuell nicht installiert oder falsch geschrieben)!
@ -123,14 +141,22 @@ attributes admin de Einstellungen
authentication / accounts admin de Benutzerauthentifizierung / Benutzerkonten
auto create account records for authenticated users admin de Automatisch Benutzerkonten für authentifizierte Benutzer anlegen
available placeholders admin de Verfügbare Platzhalter
back to admin/grouplist admin de Zurück zu: Admin / Gruppenverwaltung
back to admin/userlist admin de Zurück zu: Admin / Benutzerverwaltung
back to the list admin de zurück zur Liste
backup directory %1 mounted as %2 admin de Datensicherungsverzeichnis %1 unter %2 gemountet
bad login name or password. admin de Falscher Benutzername oder Passwort.
bad or malformed request. server responded: %s admin de Falsche oder ungültige Anfrage. Server antwortet: %s
bad request: %s admin de Falsche Anfrage: %s
bi-dir passthrough admin de Weiterleitung in beide Richtungen
bi-directional admin de beide Richtungen
bottom admin de unten
bulk password reset admin de Rücksetzen mehrerer Passwörter
calculate next run admin de nächste Ausführung berechnen
calendar recurrence horizont in days (default 1000) admin de Kalender Wiederholungs-Bereich in Tagen (Vorgabe sind 1000)
can be used by application admin de Kann von folgender Anwendung verwendet werden
can be used by group admin de Kann von folgender Gruppe verwendet werden
can be used by user admin de Kann von folgendem Benutzer verwendet werden
can change password admin de darf Passwort ändern
can not change users into groups, same sign required! admin de Das Ändern von Benutzern in Gruppen ist nicht möglich. Gleiches Kennzeichen wird benötigt.
cancel testjob! admin de Test-Job abbrechen!
@ -163,12 +189,21 @@ command scheduled to run at %1 admin de Ausführung des Befehls eingeplant am/um
commercial: all sorts of companies admin de Kommerziell: alle Arten von Firmen
config password or md5 hash from the header.inc.php admin de Konfigurationspasswort oder md5 Hash von der header.inc.php Datei
configuration saved. admin de Die Konfiguration wurde erfolgreich gespeichert.
connection dropped by imap server. admin de Verbindung von IMAP-Server beendet.
connection is not secure! everyone can read eg. your credentials. admin de Die Verbindung ist NICHT sicher! Jeder kann zB. Ihr Passwort lesen.
continue admin de Weiter
cookie domain (default empty means use full domain name, for sitemgr eg. ".domain.com" allows to use the same cookie for egw.domain.com and www.domain.com) admin de Cookie Domain (Vorgabe 'leer' bedeutet den kompletten Domainnamen, für SiteMgr erlaubt zB. ".domain.com" das gleiche Cookie für egw.domain.com und www.domain.com zu verwenden)
cookie path (allows multiple egw sessions with different directories, has problemes with sitemgr!) admin de Cookie Pfad (erlaubt mehrere eGW Sitzungen mit unterschiedlichen Verzeichnissen, hat Probleme mit SiteMgr!)
could not append message: admin de Diese Mail lässt sich nicht anzeigen
could not complete request. reason given: %s admin de Konnte Anfrage nicht beenden. Grund: %s
could not open secure connection to the imap server. %s : %s. admin de Konnte keine sichere Verbindung zum IMAP Server aufbauen. %s: %s.
could not remote execute the command admin de Kann den Befehl nicht Remote ausführen.
country admin de Land
country selection admin de Länderauswahl
cram-md5 or digest-md5 requires the auth_sasl package to be installed. admin de CRAM-MD5 oder DIGEST-MD5 erfordert, das das Auth_SASL Packet installiert ist.
create group admin de Erstelle Gruppe
create new account admin de Neues Mailkonto erstellen
create new identity admin de Neue Identität erstellen
created admin de Erstellt
created with id #%1 admin de erstellt mit der ID #%1
creates / updates user accounts from csv file admin de Erstellt / aktualisiert Benutzerkonten durch Import von Daten aus einer CSV Datei
@ -178,7 +213,8 @@ crontab only (recomended) admin de nur Crontab (empfohlen)
current hash admin de Aktuelle Verschlüsselung
custom fields admin de Benutzerdefinierte Felder
custom translation admin de Eigene Übersetzung
cyrus imap server admin de Cyrus IMAP Server
cyrus imap server admin de Cyrus IMAP-Server
cyrus imap server administration admin de Cyrus IMAP-Server Administration
data admin de Daten
data from admin de Daten von
day admin de Tag
@ -196,18 +232,20 @@ delete all records admin de Alle Einträge löschen
delete application admin de Anwendung löschen
delete category admin de Kategorie löschen
delete group admin de Gruppe löschen
delete identity admin de Identität löschen
delete peer server admin de Server von Serververbund löschen
delete selected entries admin de Ausgewählte Einträge löschen
delete the category admin de Kategorie löschen
delete the group admin de Gruppe löschen
delete the selected entries admin de Die ausgewählten Einträge löschen
delete this account admin de Diese Konto löschen
delete this category admin de Kategorie löschen
delete this group admin de Gruppe löschen
delete this log entry admin de Diesen Protokolleintrag löschen
delete this user admin de Benutzer löschen
deleted admin de gelöscht
deletes this field admin de löscht dieses Feld
deliver extern admin de Extern ausliefern
deliver extern admin de extern ausliefern
deny access admin de Zugriff verweigern
deny access to access log admin de Zugriff auf Zugangsprotokoll verbieten
deny access to application registery admin de Zugriff auf Anwendungsdatenbank verbieten
@ -236,19 +274,25 @@ disable wysiwyg-editor admin de WYSIWYG Editor (formatierter Text) abschalten
disabled (not recomended) admin de abgeschaltet (nicht empfohlen)
display admin de anzeigen
displayed length of input field (set rows=1 to limit length) admin de angezeigte Länge des Eingabefelds (setze Zeilen=1 um die Eingabe zu beschränken)
displaying html messages is disabled admin de Das Anzeigen von HTML Nachrichten ist deaktiviert
displaying plain messages is disabled admin de Das Anzeigen von Text Nachrichten ist deaktiviert
do not delete the category and return back to the list admin de Kategorie NICHT löschen und zurück zur Liste gehen
do not offer introduction video admin de Einführungsvideo nicht anbieten
do not validate certificate admin de Zertifikat nicht überprüfen
do you also want to delete all global subcategories ? admin de Wollen Sie auch alle globalen Unterkategorien löschen?
do you really want to delete this profile admin de Wollen Sie dieses Profil wirklich löschen
do you really want to reset the filter for the profile listing admin de Möchten Sie den Filter für die Profilliste wirklich zurücksetzen?
do you want to delete all global subcategories ? admin de Möchten Sie alle globale Unterkategorien löschen?
do you want to move all global subcategories one level down ? admin de Wollen Sie alle globalen Unterkategorien eine Ebene nach unten verschieben?
document root (default) admin de Wurzelverzeichnis des Webservers (Vorgabe)
domainname admin de Domänenname
down admin de unten
download csv admin de CSV herunterladen
each value is a line like id[=label], or use @path to read options from a file in egroupware directory admin de jeder Wert ist eine Zeile im Format Wert[=Anzeige], oder benutzen Sie @Pfad um die Optionen aus einer Datei aus dem EGroupware Verzeichnis zu lesen
each value is a line like label=[javascript] admin de jeder Wert ist eine Zeile im Format Anzeige[=Javascript]
edit account admin de Benutzerkonto bearbeiten
edit application admin de Anwendung bearbeiten
edit email settings admin de E-Mail-Einstellungen bearbeiten
edit email settings admin de E-Mail-Einstellungen
edit global category admin de Globale Kategorie bearbeiten
edit global category for %1 admin de Globale Kategorie für %1 bearbeiten
edit group admin de Gruppe bearbeiten
@ -269,14 +313,22 @@ egroupware version admin de EGroupware Version
either install id and config password needed or the remote hash! admin de Sie benötigen entweder die Install ID UND das Konfigurationspasswort ODER den Remote Hash!
email account active admin de E-Mail-Konto aktiv
email address admin de E-Mail-Adresse
email settings common de E-Mail-Konto
emailadmin admin de E-Mail-Admin
emailadmin: group assigned profile common de E-Mail-Admin: Vordefiniertes Gruppenprofil
emailadmin: user assigned profile common de E-Mail-Admin: Vordefiniertes Benutzerprofil
empty to not change admin de leer lassen um NICHT zu ändern
enable admin de einschalten
enable cyrus imap server administration admin de Cyrus IMAP-Server Administration aktivieren
enable debug-messages admin de Debug-Meldungen einschalten
enable sieve admin de Sieve aktivieren
enable spellcheck in rich text editor admin de Aktiviere die Rechtschreibprüfung im RichText Editor
enable the soap service admin de soap Service einschalten
enable the xmlrpc service admin de xmlrpc Service einschalten
enabled - hidden from navbar admin de Verfügbar, aber nicht in der Navigationsleiste
enabled - popup window admin de Verfügbar, Popup-Fenster
encrypted connection admin de verschlüsselte Verbindung
encryption settings admin de Verschlüsselungseinstellungen
enter a description for the category admin de Geben Sie eine Beschreibung für diese Kategorie ein
enter some random text for app_session <br>encryption (requires mcrypt) admin de Zufälligen Text für app_session<br>Verschlüsselung (braucht mcrypt)
enter the background color for the login page admin de Hintergrundfarbe für die Anmeldeseite
@ -298,20 +350,28 @@ enter the url where your logo should link to admin de URL mit der das Logo verli
enter the vfs-path where additional images, icons or logos can be placed (and found by egroupwares applications). the path must start with /,and be readable by all users admin de Geben Sie den VFS-Pfad an, in dem noch mehr Bilder oder Icons abgelegt und von EGroupware Applikationen verwendet werden können. Der Pfad muss mit einem "/" beginnen und von allen Benutzern lesbar sein.
enter your default ftp server admin de Standard-FTP-Server
enter your default mail domain ( from: user@domain ) admin de Standard E-Mail-Domain (Von: benutzer@domain)
enter your default mail domain (from: user@domain) admin de Standard E-Mail-Domain (Von: benutzer@domain)
enter your http proxy server admin de HTTP-Proxy-Server
enter your http proxy server port admin de HTTP-Proxy-Server-Port
enter your smtp server hostname or ip address admin de SMTP-Server Hostname oder IP-Adresse
enter your smtp server port admin de SMTP-Server Port
entry saved admin de Eintrag gespeichert
error canceling timer, maybe there's none set !!! admin de Fehler beim Abbrechen des Test-Jobs, eventuell läuft gar kein Job !!!
error changing the password for %1 !!! admin de Fehler beim Ändern des Passworts für %1 !
error connecting to imap server. %s : %s. admin de Fehler beim Verbinden mit dem IMAP Server. %s : %s.
error connecting to imap server: [%s] %s. admin de Fehler beim Verbinden mit dem IMAP Server. [%s] %s.
error deleting entry! admin de Fehler beim Löschen des Eintrags
error deleting log entry! admin de Fehler beim Löschen des Protokolleintrags!
error saving admin de Fehler beim Speichern
error saving account! admin de Fehler beim Speichern des Benutzerkontos!
error saving account! admin de Fehler beim Speichern des Mailkontos!
error saving the command! admin de Fehler beim Speichern des Befehls!
error saving the entry!!! admin de Fehler beim Speichern !
error saving to db: admin de Fehler beim Speichern in der Datenbank:
error setting timer, wrong syntax or maybe there's one already running !!! admin de Fehler beim Starten des Test-Jobs, falsche Syntax oder es läuft schon einer!
error! no appname found admin de Fehler: Kein Anwendungsname gefunden
error, no username! admin de Fehler, kein Benutzername!
error: %1 not found or other error !!! admin de Fehler: %1 nicht gefunden oder anderer Fehler!
event details follow admin de Hier die Details des Termins
exists admin de existiert
expired admin de abgelaufen
expires admin de läuft ab
@ -320,23 +380,31 @@ exports groups into a csv file. admin de Benutzergruppen in eine CSV-Datei expor
exports users into a csv file. admin de Benutzer in eine CSV-Datei exportieren.
failed to change password for account "%1"! admin de Fehler beim Ändern des Passwortes für Benutzer "%1"!
failed to change password. admin de Ändern des Passwortes nicht möglich.
failed to delete account! admin de Fehler beim Löschen des Mailkontos!
failed to mount backup directory! admin de Konnte Datensicherungsverzeichnis nicht mounten!
failed to save user! admin de Speichern dieses Benutzers ist nicht möglich.
fallback (after each pageview) admin de Ausweichmöglichkeit (nach jedem Seitenaufbau)
false admin de Falsch
field '%1' already exists !!! admin de Feld '%1' existiert bereits !!!
file rejected, no %2. is:%1 admin de Datei wurde abgewiesen, kein %2. ist:%1
file space admin de Speicherplatz
file space must be an integer admin de Speicherplatz muss eine Zahl sein
filtered by account admin de Suche nach Benutzerprofilen
filtered by group admin de Suche nach Gruppenprofilen
folder acl admin de Zugriffsrechte
for the times above admin de für die oben angegebenen Zeiten
for the times below (empty values count as '*', all empty = every minute) admin de für die darunter angegebenen Zeiten (leere Felder zählen als "*", alles leer = jede Minute)
force selectbox admin de Auswahl erzwingen
force users to change their password regularily?(empty for no,number for after that number of days admin de Erzwinge das ändern von Passwörtern durch den Benutzer nach X Tagen. (leer für nein, eine positive Zahl für alle X Tage)
forward also to admin de Zusätzlich weiterleiten an
forward also to admin de zusätzlich weiterleiten
forward email's to admin de E-Mails weiterleiten an
forward emails to admin de E-Mails weiterleiten an
forward only admin de nur weiterleiten
forward only disables imap mailbox / storing of mails and just forwards them to given address. admin de Nur weiterleiten schaltet die IMAP Mailbox / das Speichern der Mails aus und leitet diese an die angegebene Adresse weiter.
full name admin de Vollständiger Name
general admin de Allgemein
global categories common de Globale Kategorien
global options admin de Globale Optionen
go directly to admin menu, returning here the next time you click on administration. admin de Geht direkt zum Administrationsmenü, kehrt hier her zurück wenn Sie das nächste mal auf die Administration klicken.
governmental: incl. state or municipal authorities or services admin de Öffentlicher Dienst: Bundes-, Länder- oder städtische Behörden und Dienstleistungen
grant admin de Berechtigungen
@ -358,17 +426,37 @@ hide php information admin de PHP-Informationen ausblenden
hide sidebox video tutorials admin de Videotutorials im Seitenmenü nicht anzeigen
home directory admin de Benutzerverzeichnis
host information admin de Host-Information
hostname or ip admin de Hostname oder IP
hour<br>(0-23) admin de Stunde<br>(0-23)
how big should thumbnails for linked images be (maximum in pixels) ? admin de Wie gross sollen Thumbnails für verknüpfte Bilder sein (Maximum in Bildpunkten)?
how many days should entries stay in the access log, before they get deleted (default 90) ? admin de Wie viele Tage sollen Einträge im Zugangsprotokoll bleiben, bevor sie gelöscht werden (Vorgabe 90)?
how many entries should non-admins be able to export (empty = no limit, no = no export) admin de Wie viele Einträge sollen Nicht-Administratoren exportieren können (leer = kein Limit, Nein = kein Export)
how many minutes should an account or ip be blocked (default 30) ? admin de Wie viele Minuten soll ein Benutzerkonto oder eine IP gesperrt werden (Vorgabe 30)?
how should email addresses for new users be constructed? admin de In welchem Format sollen E-Mail-Adressen von neuen Benutzern erzeugt werden?
how username get constructed admin de Wie wird der Benutzername gebildet
icon admin de Icon
identity deleted admin de Identität gelöscht.
identity saved. admin de Identität gespeichert.
idle admin de im Leerlauf
if different from email address admin de falls unterschiedlich zu E-Mail-Adresse
if no acl records for user or any group the user is a member of admin de Wenn es keinen ACL-Eintrag für einen Benutzer oder eine Gruppe, der er angehört, gibt
if using ldap, do you want to manage homedirectory and loginshell attributes? admin de Wenn Sie LDAP verwenden, möchten Sie Benutzerverzeichnisse und Kommandointerpreter verwalten ?
if using ssl or tls, you must have the php openssl extension loaded. admin de Wenn Sie SSL oder TLS benutzen, müssen Sie die openssl PHP Erweiterung geladen haben.
if you specify port 5190 as sieve server port, you enforce ssl for sieve (server must support that) admin de Wenn Sie als SIEVE Server Port 5190 eintragen, wird für die Kommunikation mit dem SIEVE-Server eine SSL-Verbindung verwendet (der Server muss das natürlich unterstützen)
imap admin password admin de IMAP Administrator Passwort
imap admin user admin de IMAP Administrator Benutzer
imap c-client version < 2001 admin de IMAP C-Client Version < 2001
imap server admin de IMAP Server
imap server closed the connection. admin de IMAP Server hat die Verbindung beendet.
imap server closed the connection. server responded: %s admin de IMAP Server hat die Verbindung beendet. Server Antwort: %s
imap server hostname or ip address admin de IMAP-Server Hostname oder IP-Adresse
imap server logintyp admin de IMAP-Server Loginverfahren
imap server name admin de IMAP-Server Name
imap server port admin de IMAP-Server Port
imap/pop3 server name admin de IMAP/POP3-Server Name
importance admin de wichtig
in mbyte admin de in MByte
inactive admin de inaktiv
inbound admin de eingehend
initial admin de Anfangsbuchstabe
install crontab admin de Crontab installieren
@ -398,6 +486,7 @@ last password change admin de Letzte Passwortänderung
last submission: admin de Letzte Absendung:
last time read admin de Zuletzt gelesen
ldap accounts context admin de LDAP-Kontext für Benutzerkonten
ldap basedn admin de LDAP BaseDN
ldap default homedirectory prefix (e.g. /home for /home/username) admin de LDAP-Vorgabewert für Benutzerverzeichnisse (z.B. /home für /home/username)
ldap default shell (e.g. /bin/bash) admin de LDAP-Vorgabewert für Kommandointerpreter (Shell) (z.B. /bin/bash)
ldap encryption type admin de LDAP-Verschlüsselungstyp
@ -405,7 +494,13 @@ ldap groups context admin de LDAP-Kontext für Gruppen
ldap host admin de LDAP-Host
ldap root password admin de LDAP-Root-Passwort
ldap rootdn admin de LDAP rootdn
leave empty for no quota admin de Leer lassen für keine Quota
ldap server admin de LDAP Server
ldap server accounts dn admin de LDAP-Server Benutzerkonten DN
ldap server admin dn admin de LDAP-Server Administrator DN
ldap server admin password admin de LDAP-Server Administrator-Passwort
ldap server hostname or ip address admin de LDAP-Server Hostname oder IP-Adresse
ldap settings admin de LDAP-Einstellungen
leave empty for no quota admin de leer lassen um Quota zu deaktivieren
leave the category untouched and return back to the list admin de Kategorie unverändert lassen und zur Liste zurückkehren
leave the group untouched and return back to the list admin de Gruppe unverändert lassen und zur Liste zurückkehren
leave unchanged admin de unverändert lassen
@ -434,9 +529,12 @@ mail settings admin de E-Mail-Einstellungen
main email-address admin de Stamm-E-Mail-Adresse
main screen message admin de Nachricht der Startseite
manage mapping admin de Feldzuordnung verwalten
manage stationery templates admin de Briefpapiervorlagen verwalten
manager admin de Manager
manual entry admin de Manuelle Eingabe
maximum account id (e.g. 65535 or 1000000) admin de Maximum für Benutzer-ID (z.B. 65535 oder 1000000)
maximum entries in click path history admin de Max. Anzahl Einträge in der Click-Path-Historie
mb used admin de MB belegt
members admin de Mitglieder
message has been updated admin de Nachricht wurde geändert
method admin de Methode
@ -449,6 +547,7 @@ more secure admin de sicherer
mount backup directory to %1 admin de Datensicherungsverzeichnis unter %1 mounten
must change password upon next login admin de Muss das Passwort beim nächsten Login ändern
name must not be empty !!! admin de Name darf nicht leer sein!
name of organisation admin de Name der Organisation
name of the egroupware instance, eg. default admin de Name der EGroupware Instanz, z.B. default
new group name admin de Neuer Gruppenname
new name admin de neuer Name
@ -456,16 +555,22 @@ new password admin de Neues Passwort
new password [ leave blank for no change ] admin de Neues Passwort [ Feld leer lassen, wenn das Passwort nicht geändert werden soll ]
next run admin de nächste Ausführung
no algorithms available admin de Kein Algorithmus verfügbar
no alternate email address admin de keine Aliase definiert
no alternate email address admin de keine zusätzlichen E-Mail-Adressen
no default account found! admin de Kein Standard Mailkonto gefunden!
no encryption admin de keine Verschlüsselung
no forwarding email address admin de keine Weiterleitungsadresse definiert
no jobs in the database !!! admin de Keine Jobs in der Datenbank!
no login history exists for this user admin de Benutzer hat sich noch nie angemeldet
no matches found admin de Keine Übereinstimmungen gefunden
no message returned. admin de Keine Nachricht zurückgeliefert.
no modes available admin de Kein Modus verfügbar
no permission to add groups admin de Sie haben keine ausreichenden Rechte eine Gruppe hinzuzufügen
no permission to add users admin de Sie haben keine ausreichenden Rechte eine Benutzer hinzuzufügen
no permission to create groups admin de Sie haben keine ausreichenden Rechte um eine Gruppe zu erstellen
no plain text part found admin de Kein Nachrichten Text-Teil gefunden
no profile defined for user %1 admin de Es besteht kein Profil für den Benutzer %1
no sieve support detected, either fix configuration manually or leave it switched off. admin de Keine Sieve-Unterstützung gefunden. Konfiguration entweder manuell anpassen oder Sieve ausgeschalten lassen.
no supported imap authentication method could be found. admin de Keine unterstützte IMAP-Authentifizierungsmethode gefunden.
non profit: clubs, associations, ... admin de Gemeinnützig: Vereine, Verbände, ...
note: ssl available only if php is compiled with curl support admin de Notiz: SSL ist nur verfügbar, wenn PHP mit CURL-Unterstützung gebaut wurde
notification mail admin de Benachrichtigungsmail
@ -486,6 +591,7 @@ one week admin de eine Woche
only below displayed information is directly submitted to %s. admin de Nur die unterhalb angezeigte Information wird direkt zu %s übertragen.
operating system admin de Betriebssystem
order admin de Reihenfolge
organisation admin de Organisation
outbound admin de ausgehend
own categories admin de eigene Kategorien
own install id admin de Eigene Install ID
@ -517,25 +623,41 @@ please enter a name for that server ! admin de Bitte einen Namen für diesen Ser
please run setup to become current admin de Bitte Setup ausführen um die Installation zu aktualisieren
please select admin de Bitte auswählen
please submit (or postpone) statistic first admin de Bitte Statistik erst abschicken (oder aufschieben)
plesk can't rename users --> request ignored admin de Plesk kann keine Benutzer umbenennen --> Anforderung ignoriert
plesk imap server (courier) admin de Plesk IMAP Server (Courier)
plesk mail script '%1' not found !!! admin de Plesk Mail Skript '%1' nicht gefunden !!!
plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! admin de Plesk verlangt, dass Passwörter mindestens 5 Zeichen lang sind und nicht den Benutzernamen enthalten --> Passwort nicht gesetzt!!!
plesk smtp-server (qmail) admin de Plesk SMTP-Server (Qmail)
pop3 server hostname or ip address admin de POP3-Server Hostname oder IP-Adresse
pop3 server port admin de POP3-Server Port
port admin de Port
postfix with ldap admin de Postfix mit LDAP
postpone for admin de Aufschieben um
preferences admin de Einstellungen
primary group admin de primäre Gruppe
processing of file %1 failed. failed to meet basic restrictions. admin de Die Verarbeitung der Datei %1 fehlgeschlagen. Die Basis Voraussetzungen wurden nicht erfülltt
profile access rights admin de Profilzugriffsrechte
profile is active admin de Profil ist aktiv
profile list admin de Profilliste
profile name admin de Profilname
qmaildotmode admin de qmaildotmode
quota settings admin de Quota-Einstellungen
quota size in mbyte admin de Quotagröße in MByte
quota settings admin de Quota Einstellungen
quota size in mbyte admin de Quota Größe in MByte
re-enter password admin de Passwort wiederholen
read this list of methods. admin de Diese Liste der Methoden lesen
register application hooks admin de Registrieren der "Hooks" der Anwendungen
reject passwords containing part of username or full name (3 or more characters long) admin de Passwörter zurückweisen die einen Teil des Benutzernamen oder vollständigen Namens beinhalten (3 oder mehr Zeichen lang)
relay access checked admin de nicht angemeldetes Senden überprüft
remote administration instances admin de Remote Administrations Instanzen
remote administration need to be enabled in the remote instance under admin > site configuration! admin de Die Remote Administration muss von der Remote-Instanz (unter Admin -> Konfiguration der Anwendung) freigegeben werden.
remote instance saved admin de Remote Instanz gespeichert
remove admin de entfernen
remove admin de Entfernen
remove all users from this group admin de Entferne alle Benutzer aus dieser Gruppe.
remove all users from this group ? admin de Entferne alle Benutzer aus dieser Gruppe?
removing access for groups may cause problems for data in this category. are you sure? users in these groups may no longer have access: admin de Sind Sie sicher? Den Zugriff für Gruppen zu nehmen kann zu Problemen mit den Daten dieser Kategorie führen. Benutzer dieser Gruppen haben möglicherweise keinen Zugriff mehr:
requested admin de angefordert
required pear class mail/mimedecode.php not found. admin de Die benötigte Classe PEAR (Mail/mimeDecode.php) wurde nicht gefunden.
reset filter admin de Filter zurücksetzen
return to admin mainscreen admin de zum Administrationsmenü zurückkehren
return to view account admin de Zurück zum Anzeigen des Benutzerkontos
rights admin de Rechte
@ -544,29 +666,37 @@ rows admin de Zeilen
rpm or debian package admin de RPM oder Debian Pakete
run admin de Ausführen
run asynchronous services admin de Asynchrone Dienste ausführen
save of message %1 failed. could not save message to folder %2 due to: %3 admin de Das Speichern der Nachricht %1 ist fehlgeschlagen. Die Nachricht konnte nicht in das Verzeichniss %2 bzw.: %3
save the category admin de Kategorie speichern
save the category and return back to the list admin de Kategorie speichern und zur Liste zurückkehren
saves the changes made and leaves admin de beendet und speichert die Änderungen
saves this entry admin de speichert diesen Eintrag
saving of message %1 failed. destination folder %2 does not exist. admin de Das Speichern der Nachricht %1 ist fehlgeschlagen. Der Ordner %2 ist nicht vorhanden.
scheduled admin de geplant
search accounts admin de Benutzerkonten durchsuchen
search categories admin de Kategorien durchsuchen
search groups admin de Gruppen durchsuchen
search peer servers admin de Serververbund durchsuchen
secure connection admin de Sichere Verbindung
security admin de Sicherheit
select accounts for which the custom field should be visible admin de Benutzer auswählen, für die dieses benutzerdefinierte Feld sichtbar sein soll.
select group managers admin de Gruppenmanager auswählen
select permissions this group will have admin de wählen Sie die Zugriffsrechte für diese Gruppe.
select the parent category. if this is a main category select no category admin de Eine übergeordnete Kategorie auswählen. Wenn dies eine Hauptkategorie ist, KEINE KATEGORIE auswählen.
select type of imap server admin de IMAP-Server Typ auswählen
select type of imap/pop3 server admin de IMAP/POP3-Server Typ auswählen
select type of smtp server admin de SMTP-Server Typ auswählen
select users admin de Benutzer auswählen
select users for inclusion admin de Benutzer für diese Gruppe auswählen
select where you want to store/retrieve filesystem information admin de Wo möchten Sie Datei Informationen ablegen / lesen
select where you want to store/retrieve user accounts admin de Wo möchten Sie die Benutzerkonten speichern
select which location this app should appear on the navbar, lowest (left) to highest (right) admin de An welcher Position soll die Anwendung in der Navigationsleiste erscheinen, von ganz unten (links) bis ganz oben (rechts)
selectbox admin de Auswahlfeld
send using this email-address admin de zum Versenden wird diese E-Mail Adresse benutzt
server %1 has been updated admin de Server %1 wurde aktualisiert
server list admin de Server-Liste
server password admin de Server-Passwort
server settings admin de Server-Einstellungen
server type(mode) admin de Server-Typ (Modus)
server url admin de Server-URL
server username admin de Server-Benutzername
@ -582,7 +712,19 @@ show error log admin de Fehlerprotokoll anzeigen
show members admin de Mitglieder dieser Gruppe anzeigen
show phpinfo() admin de phpinfo() anzeigen
show session ip address admin de IP-Adresse der Sitzung anzeigen
sieve server hostname or ip address admin de Sieve-Server Hostname oder IP-Adresse
sieve server port admin de Sieve-Server Port
sieve settings admin de Sieve Einstellungen
site admin de Site
skip imap admin de IMAP auslassen
skipping imap configuration! admin de IMAP Konfiguration ausgelassen!
smtp authentication admin de SMTP Anmeldung
smtp options admin de SMTP Optionen
smtp server admin de SMTP Server
smtp server name admin de SMTP Server Name
smtp settings admin de SMTP Einstellungen
smtp-server hostname or ip address admin de SMTP Server Hostname oder IP-Adresse
smtp-server port admin de SMTP Server Port
soap admin de SOAP
sorry, that group name has already been taken. admin de Dieser Gruppenname wird bereits verwendet.
sorry, the above users are still a member of the group %1 admin de Diese Benutzer sind noch Mitglied der Gruppe %1.
@ -590,12 +732,15 @@ sorry, the follow users are still a member of the group %1 admin de Die folgende
sort the entries admin de Einträge sortieren
source account #%1 does not exist! admin de Quellaccount #%1 besteht nicht!
ssl admin de verschlüsselt (SSL)
standard admin de Standard
standard imap server admin de Standard IMAP Server
standard pop3 server admin de Standard POP3 Server
standard smtp-server admin de Standard SMTP Server
standard admin de Vorgabe
standard identity admin de Standard Identität
standard imap server admin de Standard IMAP-Server
standard pop3 server admin de Standard POP3-Server
standard smtp-server admin de Standard SMTP-Server
start admin de Start
start testjob! admin de Testjob starten!
starts with admin de startet mit
stationery admin de Briefpapier
submit changes admin de Änderungen speichern
submit displayed information? admin de Angezeigte Informationen übertragen?
submit statistic information admin de Statistische Informationen übertragen
@ -604,8 +749,12 @@ submit to egroupware.org admin de Übertragen an egroupware.org
subtype admin de Untertyp
subversion checkout admin de Subversion checkout (svn)
success admin de erfolgreich
successful connected to %1 server%2. admin de Erfolgreich zu %1 Server verbunden%2.
switch back to standard identity to save account. admin de Kehren Sie zur Standard-Identität zurück um das Konto zu speichern.
switch back to standard identity to save other account data. admin de Kehren Sie zur Standard-Identität zurück um andere Kontendaten zu speichern.
switch it off, if users are randomly thrown out admin de schalten Sie es aus, wenn Benutzer immer wieder zufällig rausgeworfen werden
template selection admin de Auswahl der Benutzeroberfläche
templates admin de Templates
text entry admin de Texteingabe
that application name already exists. admin de Diesen Anwendungsname gibt es bereits.
that application order must be a number. admin de Die Anwendungsreihenfolge muss eine Zahl sein.
@ -616,9 +765,11 @@ the api is current admin de Die API ist aktuell
the api requires an upgrade admin de Die API benötigt ein Upgrade
the cumulated and anonymised data will be publically available: admin de Die kumulierten und anonymisierten Daten werden öffentlich verfügbar sein:
the groups must include the primary group admin de Die Gruppen müssen die primäre Gruppe beinhalten
the imap server does not appear to support the authentication method selected. please contact your system administrator. admin de Der IMAP Server scheint die eingestellte Authentifizierungsmethode nicht zu unterstützen. Bitte fragen Sie Ihren Systemadministrator.
the install id of an instance can be found under admin > site configuration admin de Installations ID für diese Instanz wird unter Admin >> Konfiguration der Anwendung angezeigt
the login and password can not be the same admin de Benutzername und Passwort dürfen nicht identisch sein
the loginid can not be more then 8 characters admin de Der Benutzername darf nicht länger als 8 Zeichen sein
the mimeparser can not parse this message. admin de Der Mimiparser versteht diese Nachricht nicht
the name used internaly (<= 20 chars), changeing it makes existing data unavailible admin de intern benutzter Name (<= 20 Buchstaben), Veränderungen machen existierende Daten unerreichbar !
the testjob sends you a mail everytime it is called. admin de Der Testjob sendet Ihnen jedesmal eine E-Mail wenn er aufgerufen wird.
the text displayed to the user admin de für den Benutzer angezeigter Text
@ -630,10 +781,13 @@ this application is current admin de Diese Anwendung ist aktuell
this application requires an upgrade admin de Diese Anwendung benötigt ein Upgrade
this category is currently being used by applications as a parent category admin de Diese Kategorie wird gegenwärtig als übergeordnete Kategorie benutzt.
this controls exports and merging. admin de Steuert den Export und den Merge Print von Dokumenten
this is not a personal mail account!\n\naccount will be deleted for all users!\n\nare you really sure you want to do that? admin de Das ist KEIN persönliches Mailkonto!\n\nDas Konto wird für ALLE Benutzer gelöscht!\n\nSind Sie wirklich sicher, dass Sie das wollen?
this php has no imap support compiled in!! admin de Dieses PHP hat keine IMAP Unterstützung!!!
timeout for application session data in seconds (default 86400 = 1 day) admin de Zeit nach der Anwendungsdaten der Sitzung gelöscht werden in Sekunden (Vorgabe 86400 = 1 Tag)
timeout for sessions in seconds (default 14400 = 4 hours) admin de Zeit nach der Sitzungen verfallen (Vorgabe 14400 = 4 Stunden)
times admin de Zeiten
to allow us to track the growth of your individual installation use this submit id, otherwise delete it: admin de Benutzen Sie diese Übertragungs ID damit wir das Wachstum Ihrer individuellen Installation erfassen können, ansonsten löschen sie diese:
to use a tls connection, you must be running a version of php 5.1.0 or higher. admin de Um eine TLS Verbindung zu verwenden, benötigen Sie PHP 5.1.0 oder aktueller.
top admin de oben
total of %1 id's changed. admin de Die Gesamtanzahl von %1 IDs wurde geändert.
total records admin de Anzahl Datensätze insgesamt
@ -649,27 +803,53 @@ type '%1' already exists !!! admin de Typ '%1' existiert bereits !!!
type of customfield admin de Typ des Benutzerdefinierten Feldes
type of field admin de Feldtyp
under windows you need to install the asyncservice %1manually%2 or use the fallback mode. fallback means the jobs get only checked after each page-view !!! admin de Unter Windows muß der asynchrone Service %1von Hand%2 installiert werden oder es wird nur die Ausweichmöglichkeit benutzt. Bei der Ausweichmöglichkeit werden die Jobs nur nach jedem Seitenaufbau überprüft!!!
unexpected response from server to authenticate command. admin de Unerwartete Antwort des Servers auf das AUTHENTICATE Kommando.
unexpected response from server to digest-md5 response. admin de Unerwartete Antwort des Servers auf die Digest-MD5 Antwort.
unexpected response from server to login command. admin de Unerwartete Antwort des Servers auf das LOGIN Kommando.
unknown account: %1 !!! admin de Unbekanntes Benutzerkonto: %1 !!!
unknown command %1! admin de Unbekannter Befehl %1 !
unknown imap response from the server. server responded: %s admin de Unbekannte IMAP Antwort vom Server. Server antwortet: %s
unknown option %1 admin de Unbekannte Option %1
unsupported action '%1' !!! admin de Nicht unterstützte Aktion '%1' !!!
unwilling to save category with current settings. check for inconsistency: admin de Kategorie kann mit den aktuellen Einstellungen nicht gespeichert werden. Bitte überprüfen sie die Einstellungen auf Ungereimtheiten
up admin de hoch
update current email address: admin de Aktualisiere aktuelle E-Mailadresse
updated admin de aktualisiert
uppercase, lowercase, number, special char admin de Großbuchstaben, kleine Buchstaben, Zahlen, Sonderzeichen
url of the egroupware installation, eg. http://domain.com/egroupware admin de URL der EGroupware Installation, z.B. http://domain.com/egroupware
usage admin de Einsatz
use cookies to pass sessionid admin de Sitzungs-ID in einem Cookie speichern
use default admin de Vorgabe verwenden
use ldap defaults admin de LDAP Standardeinstellungen benutzen
use predefined username and password defined below admin de Verwende den unten vordefinierten Benutzernamen und Passwort
use pure html compliant code (not fully working yet) admin de Vollständig HTML kompatiblen Code verwenden (nicht vollständig implementiert)
use secure cookies (transmitted only via https) admin de Benutze sichere Cookies (werden nur per https übertragen)
use smtp auth admin de SMTP Authentifizierung benutzen
use theme admin de Benutztes Farbschema
use tls authentication admin de TLS Authentifizierung benutzen
use tls encryption admin de TLS Verschlüsselung benutzen
use users email-address (as seen in useraccount) admin de Benutzt E-Mail Adresse des Benutzers (Die unter seinem Mailkonto angezeigt wird)
user accounts admin de Benutzerkonten
user can edit forwarding address admin de Anwender können ihre Weiterleitungsadresse bearbeiten
user csv export admin de CSV Export von Benutzern
user csv import admin de CSV Import von Benutzern
user data common de Benutzerdaten
user for smtp-authentication (leave it empty if no auth required) admin de Benutzer für SMTP Authentifizierung (leer lassen falls keine Authentifizierung nötig)
user groups admin de Benutzergruppen
userdata admin de Benutzerkonto
userid@domain eg. u1234@domain admin de UserId@domain z.B. u1234@domain
username (standard) admin de Benutzername (Standard)
username specified below for all admin de Unter angegebener Benutzername für alle
username/password defined by admin admin de Benutzername / Passwort vordefiniert
username@domainname (virtual mail manager) admin de Benutzername@Domänenname (Virtual MAIL ManaGeR)
users can define their own emailaccounts admin de Anwender können ihre eigenen Konten definieren
users can define their own identities admin de Anwender können ihre eigenen Identitäten definieren
users can define their own signatures admin de Anwender können ihre eigenen Signaturen definieren
users can utilize these stationery templates admin de Benutzer können diese Briefpapiervorlagen verwenden
users choice admin de Benutzerauswahl
using data from mozilla ispdb for provider %1 admin de Benutzer Mozilla ISPDB für Provider %1
vacation messages with start- and end-date require an admin account to be set admin de Abwesenheitsnotizen mit Start- und Enddatum benötigen einen gesetzten Administrator Benutzer!
vacation notice admin de Abwesenheitsnotiz
value for column %1 is not unique! admin de Wert für die Spalte %1 ist nicht eindeutig!
vfs directory "%1" not found! admin de VFS Verzeichnis "%1" nicht gefunden!
view access log admin de Zugangsprotokoll anzeigen
@ -679,6 +859,7 @@ view error log admin de Fehlerprotokoll anzeigen
view sessions admin de Sitzungen anzeigen
view this user admin de Diesen Benutzer anzeigen
view user account admin de Benutzerkonto anzeigen
virtual mail manager admin de Virtual MAIL ManaGeR
warn users about the need to change their password? the number set here should be lower than the value used to enforce the change of passwords every x days. only effective when enforcing of password change is enabled. (empty for no,number for number of days before they must change) admin de Benutzer warnen, dass Ihr Passwort in X Tagen abläuft? Der Wert hier gibt an, ab wieviel Tagen vorher die Benutzer einmal pro Sitzung gewarnt werden. Die hier eingetragene Zahl sollte kleiner sein, als der Wert der für das Erzwingen des Änderns von Passwörtern alle Y Tage verwendet wird. Diese Option ist nur wirksam, wenn das Erzwingen von Passwortänderungen alle Y Tage aktiviert ist. (leer für nein, eine positive Zahl für Warnung ab X Tagen bevor das Passwort abläuft)
we ask for the data to improve our profile in the press and to get a better understanding of egroupware's user base and it's needs. admin de Wir erheben diese Daten zu ausschliesslich statistischen Zwecken, um einen Überblick über den weltweiten Einsatz von EGroupware zu gewinnen.
we hope you understand the importance for this voluntary statistic and not deny it lightly. admin de Wir speichern keine Herkunftsdaten oder Informationen, die einen Rückschluss auf Ihre Identität ermöglichen würden.
@ -693,11 +874,15 @@ wrong admin-account or -password !!! admin de Falscher Admin-Account oder Passwo
xml-rpc admin de XML-RPC
yes, but no scayt admin de Ja, aber keine automatische Rechtschreibüberprüfung
yes, use browser based spell checking engine admin de Ja, benutze nur die im Browser eingebaute Rechtschreibhilfe
yes, use credentials below only for alarms and notifications, otherwise use credentials of current user admin de Ja, die Daten darunter nur für Alarme und Benachrichtigungen verwenden, ansonsten die Daten des aktiven Benutzers.
yes, use credentials of current user or if given credentials below admin de Ja, benutze Daten des aktuellen Benutzers oder wenn angegeben die Daten darunter
yes, use webspellchecker admin de Ja, benutze nur den WebSpellChecker (online)
you can not use --dry-run together with --skip-checks! admin de Die Verwendung von --dry-run und --skip-checks zusammen ist nicht möglich!
you can only change the hash, if you set a random password or currently use plaintext passwords! admin de Sie können die Passwort-Verschlüsselung nur ändern, wenn sie ein zufälliges Passwort setzen oder bisher Passworte im Klartext gespeichert haben!
you can use wizard to fix account settings or delete account. admin de Sie können jetzt den Wizard verwenden um die Konteneinstellungen zu ändern oder das Konto löschen.
you have entered an invalid expiration date admin de Sie haben ein ungültiges Ablaufdatum angegeben
you have no email address for your user set !!! admin de Sie haben noch keine E-Mail für den Benutzer vergeben.
you have received a new message on the admin de Sie haben eine neue Nachricht erhalten.
you have to enter a name, to create a new field!!! admin de Sie müssen einen Namen angeben um ein neues Feld anzulegen!!!
you have to enter a name, to create a new type!!! admin de Sie müssen einen Namen angeben um einen neuen Typ anzulegen!!!
you must add at least 1 permission or group to this account admin de Sie müssen mindestens ein Zugriffsrecht oder eine Gruppe für diesen Benutzer angeben
@ -712,219 +897,9 @@ you must select at least one group member. admin de Sie müssen mindestens ein G
you need to enter install id and password! admin de Sie müssen die Install-ID UND das Passwort eingeben!
you need to select as least one action! admin de Sie müssen mindestens einen Befehl auswählen!
you need to select some users first! admin de Sie müssen zuerst einige Benutzer auswählen!
you need to specify a forwarding address, when checking "%1"! admin de Sie müssen eine Weiterleitungsadresse angeben, wenn "%1" abgehackt ist!
you will need to remove the subcategories before you can delete this category admin de Sie müssen erst die Unterkategorien löschen bevor Sie diese Kategorie löschen können!
your last submission was less then %1 days ago! admin de Ihre letzte Übertragung liegt weniger als %1 Tage zurück!
your session could not be verified. admin de Ihre Sitzung konnte nicht verifiziert werden.
%1 entries deleted. admin de %1 Einträge gelöscht
(imapclass must support this feature by querying the corresponding config value and pass it as defaultquota to the imapserver) admin de (Die IMAP Klasse muss dieses Verfahren unterstützen indem es den entsprechenden Konfigurationswert der Instanz ausliest und als Default Quota an den IMAP Server meldet.)
(no subject) admin de (Kein Betreff)
account '%1' not found !!! admin de Mailkonto '%1' nicht gefunden !
account deleted. admin de Mailkonto gelöscht.
account not found! common de Mailkonto nicht gefunden!
account saved. admin de Mailkonto gespeichert.
active templates admin de Aktive Vorlagen
add new email address: admin de Neue E-Mailadresse hinzufügen
add profile admin de Profil hinzufügen
admin dn admin de Admin DN
admin password admin de Admin Passwort
admin username admin de Administrator Benutzername
advanced options admin de erweiterte Einstellungen
allow users to change forwards admin de Anwender dürfen Weiterleitung bearbeiten
alternate email address admin de zusätzliche E-Mail-Adressen
and logged in admin de und eingeloggt
any application admin de jede Anwendung
any group admin de jede Gruppe
any user admin de jeder Benutzer
back to admin/grouplist admin de Zurück zu: Admin / Gruppenverwaltung
back to admin/userlist admin de Zurück zu: Admin / Benutzerverwaltung
bad login name or password. admin de Falscher Benutzername oder Passwort.
bad or malformed request. server responded: %s admin de Falsche oder ungültige Anfrage. Server antwortet: %s
bad request: %s admin de Falsche Anfrage: %s
can be used by application admin de Kann von folgender Anwendung verwendet werden
can be used by group admin de Kann von folgender Gruppe verwendet werden
can be used by user admin de Kann von folgendem Benutzer verwendet werden
connection dropped by imap server. admin de Verbindung von IMAP-Server beendet.
connection is not secure! everyone can read eg. your credentials. admin de Die Verbindung ist NICHT sicher! Jeder kann zB. Ihr Passwort lesen.
continue admin de Weiter
could not append message: admin de Diese Mail lässt sich nicht anzeigen
could not complete request. reason given: %s admin de Konnte Anfrage nicht beenden. Grund: %s
could not open secure connection to the imap server. %s : %s. admin de Konnte keine sichere Verbindung zum IMAP Server aufbauen. %s: %s.
cram-md5 or digest-md5 requires the auth_sasl package to be installed. admin de CRAM-MD5 oder DIGEST-MD5 erfordert, das das Auth_SASL Packet installiert ist.
create new account admin de Neues Mailkonto erstellen
create new identity admin de Neue Identität erstellen
cyrus imap server admin de Cyrus IMAP-Server
cyrus imap server administration admin de Cyrus IMAP-Server Administration
default admin de Vorgabe
delete identity admin de Identität löschen
delete this account admin de Diese Konto löschen
deliver extern admin de extern ausliefern
displaying html messages is disabled admin de Das Anzeigen von HTML Nachrichten ist deaktiviert
displaying plain messages is disabled admin de Das Anzeigen von Text Nachrichten ist deaktiviert
do not validate certificate admin de Zertifikat nicht überprüfen
do you really want to delete this profile admin de Wollen Sie dieses Profil wirklich löschen
do you really want to reset the filter for the profile listing admin de Möchten Sie den Filter für die Profilliste wirklich zurücksetzen?
domainname admin de Domänenname
edit email settings admin de E-Mail-Einstellungen
email account active admin de E-Mail-Konto aktiv
email address admin de E-Mail-Adresse
email settings common de E-Mail-Konto
emailadmin admin de E-Mail-Admin
emailadmin: group assigned profile common de E-Mail-Admin: Vordefiniertes Gruppenprofil
emailadmin: user assigned profile common de E-Mail-Admin: Vordefiniertes Benutzerprofil
enable cyrus imap server administration admin de Cyrus IMAP-Server Administration aktivieren
enable sieve admin de Sieve aktivieren
encrypted connection admin de verschlüsselte Verbindung
encryption settings admin de Verschlüsselungseinstellungen
enter your default mail domain (from: user@domain) admin de Standard E-Mail-Domain (Von: benutzer@domain)
entry saved admin de Eintrag gespeichert
error connecting to imap server. %s : %s. admin de Fehler beim Verbinden mit dem IMAP Server. %s : %s.
error connecting to imap server: [%s] %s. admin de Fehler beim Verbinden mit dem IMAP Server. [%s] %s.
error deleting entry! admin de Fehler beim Löschen des Eintrags
error saving account! admin de Fehler beim Speichern des Mailkontos!
error saving the entry!!! admin de Fehler beim Speichern !
error, no username! admin de Fehler, kein Benutzername!
event details follow admin de Hier die Details des Termins
failed to delete account! admin de Fehler beim Löschen des Mailkontos!
file rejected, no %2. is:%1 admin de Datei wurde abgewiesen, kein %2. ist:%1
filtered by account admin de Suche nach Benutzerprofilen
filtered by group admin de Suche nach Gruppenprofilen
folder acl admin de Zugriffsrechte
forward also to admin de zusätzlich weiterleiten
forward email's to admin de E-Mails weiterleiten an
forward only admin de nur weiterleiten
forward only disables imap mailbox / storing of mails and just forwards them to given address. admin de Nur weiterleiten schaltet die IMAP Mailbox / das Speichern der Mails aus und leitet diese an die angegebene Adresse weiter.
global options admin de Globale Optionen
hostname or ip admin de Hostname oder IP
how username get constructed admin de Wie wird der Benutzername gebildet
identity deleted admin de Identität gelöscht.
identity saved. admin de Identität gespeichert.
if different from email address admin de falls unterschiedlich zu E-Mail-Adresse
if using ssl or tls, you must have the php openssl extension loaded. admin de Wenn Sie SSL oder TLS benutzen, müssen Sie die openssl PHP Erweiterung geladen haben.
if you specify port 5190 as sieve server port, you enforce ssl for sieve (server must support that) admin de Wenn Sie als SIEVE Server Port 5190 eintragen, wird für die Kommunikation mit dem SIEVE-Server eine SSL-Verbindung verwendet (der Server muss das natürlich unterstützen)
imap admin password admin de IMAP Administrator Passwort
imap admin user admin de IMAP Administrator Benutzer
imap c-client version < 2001 admin de IMAP C-Client Version < 2001
imap server admin de IMAP Server
imap server closed the connection. admin de IMAP Server hat die Verbindung beendet.
imap server closed the connection. server responded: %s admin de IMAP Server hat die Verbindung beendet. Server Antwort: %s
imap server hostname or ip address admin de IMAP-Server Hostname oder IP-Adresse
imap server logintyp admin de IMAP-Server Loginverfahren
imap server name admin de IMAP-Server Name
imap server port admin de IMAP-Server Port
imap/pop3 server name admin de IMAP/POP3-Server Name
importance admin de wichtig
in mbyte admin de in MByte
inactive admin de inaktiv
ldap basedn admin de LDAP BaseDN
ldap server admin de LDAP Server
ldap server accounts dn admin de LDAP-Server Benutzerkonten DN
ldap server admin dn admin de LDAP-Server Administrator DN
ldap server admin password admin de LDAP-Server Administrator-Passwort
ldap server hostname or ip address admin de LDAP-Server Hostname oder IP-Adresse
ldap settings admin de LDAP-Einstellungen
leave empty for no quota admin de leer lassen um Quota zu deaktivieren
mail settings admin de E-Mail-Einstellungen
manage stationery templates admin de Briefpapiervorlagen verwalten
manual entry admin de Manuelle Eingabe
mb used admin de MB belegt
name of organisation admin de Name der Organisation
no alternate email address admin de keine zusätzlichen E-Mail-Adressen
no encryption admin de keine Verschlüsselung
no forwarding email address admin de keine Weiterleitungsadresse definiert
no message returned. admin de Keine Nachricht zurückgeliefert.
no plain text part found admin de Kein Nachrichten Text-Teil gefunden
no sieve support detected, either fix configuration manually or leave it switched off. admin de Keine Sieve-Unterstützung gefunden. Konfiguration entweder manuell anpassen oder Sieve ausgeschalten lassen.
no supported imap authentication method could be found. admin de Keine unterstützte IMAP-Authentifizierungsmethode gefunden.
order admin de Reihenfolge
organisation admin de Organisation
plesk can't rename users --> request ignored admin de Plesk kann keine Benutzer umbenennen --> Anforderung ignoriert
plesk imap server (courier) admin de Plesk IMAP Server (Courier)
plesk mail script '%1' not found !!! admin de Plesk Mail Skript '%1' nicht gefunden !!!
plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! admin de Plesk verlangt, dass Passwörter mindestens 5 Zeichen lang sind und nicht den Benutzernamen enthalten --> Passwort nicht gesetzt!!!
plesk smtp-server (qmail) admin de Plesk SMTP-Server (Qmail)
pop3 server hostname or ip address admin de POP3-Server Hostname oder IP-Adresse
pop3 server port admin de POP3-Server Port
port admin de Port
postfix with ldap admin de Postfix mit LDAP
processing of file %1 failed. failed to meet basic restrictions. admin de Die Verarbeitung der Datei %1 fehlgeschlagen. Die Basis Voraussetzungen wurden nicht erfülltt
profile access rights admin de Profilzugriffsrechte
profile is active admin de Profil ist aktiv
profile list admin de Profilliste
profile name admin de Profilname
qmaildotmode admin de qmaildotmode
quota settings admin de Quota Einstellungen
quota size in mbyte admin de Quota Größe in MByte
relay access checked admin de nicht angemeldetes Senden überprüft
remove admin de Entfernen
required pear class mail/mimedecode.php not found. admin de Die benötigte Classe PEAR (Mail/mimeDecode.php) wurde nicht gefunden.
reset filter admin de Filter zurücksetzen
save of message %1 failed. could not save message to folder %2 due to: %3 admin de Das Speichern der Nachricht %1 ist fehlgeschlagen. Die Nachricht konnte nicht in das Verzeichniss %2 bzw.: %3
saving of message %1 failed. destination folder %2 does not exist. admin de Das Speichern der Nachricht %1 ist fehlgeschlagen. Der Ordner %2 ist nicht vorhanden.
secure connection admin de Sichere Verbindung
select type of imap server admin de IMAP-Server Typ auswählen
select type of imap/pop3 server admin de IMAP/POP3-Server Typ auswählen
select type of smtp server admin de SMTP-Server Typ auswählen
send using this email-address admin de zum Versenden wird diese E-Mail Adresse benutzt
server settings admin de Server-Einstellungen
sieve server hostname or ip address admin de Sieve-Server Hostname oder IP-Adresse
sieve server port admin de Sieve-Server Port
sieve settings admin de Sieve Einstellungen
skip imap admin de IMAP auslassen
skipping imap configuration! admin de IMAP Konfiguration ausgelassen!
smtp authentication admin de SMTP Anmeldung
smtp options admin de SMTP Optionen
smtp server admin de SMTP Server
smtp server name admin de SMTP Server Name
smtp settings admin de SMTP Einstellungen
smtp-server hostname or ip address admin de SMTP Server Hostname oder IP-Adresse
smtp-server port admin de SMTP Server Port
standard admin de Vorgabe
standard identity admin de Standard Identität
standard imap server admin de Standard IMAP-Server
standard pop3 server admin de Standard POP3-Server
standard smtp-server admin de Standard SMTP-Server
starts with admin de startet mit
stationery admin de Briefpapier
successful connected to %1 server%2. admin de Erfolgreich zu %1 Server verbunden%2.
switch back to standard identity to save account. admin de Kehren Sie zur Standard-Identität zurück um das Konto zu speichern.
switch back to standard identity to save other account data. admin de Kehren Sie zur Standard-Identität zurück um andere Kontendaten zu speichern.
templates admin de Templates
the imap server does not appear to support the authentication method selected. please contact your system administrator. admin de Der IMAP Server scheint die eingestellte Authentifizierungsmethode nicht zu unterstützen. Bitte fragen Sie Ihren Systemadministrator.
the mimeparser can not parse this message. admin de Der Mimiparser versteht diese Nachricht nicht
this is not a personal mail account!\n\naccount will be deleted for all users!\n\nare you really sure you want to do that? admin de Das ist KEIN persönliches Mailkonto!\n\nDas Konto wird für ALLE Benutzer gelöscht!\n\nSind Sie wirklich sicher, dass Sie das wollen?
this php has no imap support compiled in!! admin de Dieses PHP hat keine IMAP Unterstützung!!!
to use a tls connection, you must be running a version of php 5.1.0 or higher. admin de Um eine TLS Verbindung zu verwenden, benötigen Sie PHP 5.1.0 oder aktueller.
unexpected response from server to authenticate command. admin de Unerwartete Antwort des Servers auf das AUTHENTICATE Kommando.
unexpected response from server to digest-md5 response. admin de Unerwartete Antwort des Servers auf die Digest-MD5 Antwort.
unexpected response from server to login command. admin de Unerwartete Antwort des Servers auf das LOGIN Kommando.
unknown imap response from the server. server responded: %s admin de Unbekannte IMAP Antwort vom Server. Server antwortet: %s
unsupported action '%1' !!! admin de Nicht unterstützte Aktion '%1' !!!
update current email address: admin de Aktualisiere aktuelle E-Mailadresse
use default admin de Vorgabe verwenden
use ldap defaults admin de LDAP Standardeinstellungen benutzen
use predefined username and password defined below admin de Verwende den unten vordefinierten Benutzernamen und Passwort
use smtp auth admin de SMTP Authentifizierung benutzen
use tls authentication admin de TLS Authentifizierung benutzen
use tls encryption admin de TLS Verschlüsselung benutzen
use users email-address (as seen in useraccount) admin de Benutzt E-Mail Adresse des Benutzers (Die unter seinem Mailkonto angezeigt wird)
user can edit forwarding address admin de Anwender können ihre Weiterleitungsadresse bearbeiten
userid@domain eg. u1234@domain admin de UserId@domain z.B. u1234@domain
username (standard) admin de Benutzername (Standard)
username specified below for all admin de Unter angegebener Benutzername für alle
username/password defined by admin admin de Benutzername / Passwort vordefiniert
username@domainname (virtual mail manager) admin de Benutzername@Domänenname (Virtual MAIL ManaGeR)
users can define their own emailaccounts admin de Anwender können ihre eigenen Konten definieren
users can define their own identities admin de Anwender können ihre eigenen Identitäten definieren
users can define their own signatures admin de Anwender können ihre eigenen Signaturen definieren
users can utilize these stationery templates admin de Benutzer können diese Briefpapiervorlagen verwenden
using data from mozilla ispdb for provider %1 admin de Benutzer Mozilla ISPDB für Provider %1
vacation messages with start- and end-date require an admin account to be set admin de Abwesenheitsnotizen mit Start- und Enddatum benötigen einen gesetzten Administrator Benutzer!
vacation notice admin de Abwesenheitsnotiz
virtual mail manager admin de Virtual MAIL ManaGeR
yes, use credentials below only for alarms and notifications, otherwise use credentials of current user admin de Ja, die Daten darunter nur für Alarme und Benachrichtigungen verwenden, ansonsten die Daten des aktiven Benutzers.
yes, use credentials of current user or if given credentials below admin de Ja, benutze Daten des aktuellen Benutzers oder wenn angegeben die Daten darunter
you can use wizard to fix account settings or delete account. admin de Sie können jetzt den Wizard verwenden um die Konteneinstellungen zu ändern oder das Konto löschen.
you have received a new message on the admin de Sie haben eine neue Nachricht erhalten.
you need to specify a forwarding address, when checking "%1"! admin de Sie müssen eine Weiterleitungsadresse angeben, wenn "%1" abgehackt ist!
your message to %1 was displayed. admin de Ihre Nachricht %1 wurde angezeigt
your name admin de Ihr Name
your session could not be verified. admin de Ihre Sitzung konnte nicht verifiziert werden.

View File

@ -7,6 +7,7 @@
%1 category(s) %2 admin en %1 category(s) %2
%1 category(s) %2, %3 failed because of insufficent rights !!! admin en %1 category(s) %2, %3 failed because of insufficent rights !!!
%1 class not instanciated admin en %1 class not instanciated
%1 entries deleted. admin en %1 entries deleted.
%1 group %2 admin en %1 group %2
%1 is no command! admin en %1 is no command!
%1 log entries deleted. admin en %1 log entries deleted.
@ -18,6 +19,8 @@
%1 user %2 admin en %1 user %2
(de)activate mail accounts admin en (de)activate mail accounts
(default no, leave it off if you dont use it) admin en Default = No, leave it off if you dont use it
(imapclass must support this feature by querying the corresponding config value and pass it as defaultquota to the imapserver) admin en (imapclass must support this feature by querying the corresponding config value and pass it as defaultquota to the imapserver)
(no subject) admin en (no subject)
(stored password will not be shown here) admin en Stored password will not be shown here!
(to install new applications use<br><a href="setup/" target="setup">setup</a> [manage applications] !!!) admin en To install new applications use<br><a href="setup/" target="setup">Setup</a> [Manage Applications]!
- type admin en - type
@ -30,14 +33,18 @@ account "%1" has no email address --> not notified! admin en Account "%1" has no
account "%1" has no plaintext password! admin en Account "%1" has NO plaintext password!
account %1 %2 admin en Account %1 %2
account '%1' deleted. admin en Account '%1' deleted.
account '%1' not found !!! admin en Account '%1' not found!
account active admin en Account active
account deleted. admin en Account deleted.
account has been created common en Account has been created.
account has been deleted common en Account has been deleted.
account has been updated common en Account has been updated.
account id admin en Account ID
account list admin en Account list
account not found! common en Account not found!
account permissions admin en Account permissions
account preferences admin en Account preferences
account saved. admin en Account saved.
account-id's have to be integers! admin en Account ID's have to be integers!
acl added. admin en ACL added.
acl deleted. admin en ACL deleted.
@ -51,6 +58,7 @@ action admin en Action
actions admin en Actions
activate admin en Activate
activate wysiwyg-editor admin en Activate WYSIWYG-editor
active templates admin en Active templates
add a category admin en Add a category
add a group admin en Add a group
add a new account. admin en Add a new account
@ -65,14 +73,19 @@ add global category for %1 admin en Add global category for %1
add group admin en Add group
add new account admin en Add new account
add new application admin en Add new application
add new email address: admin en Add new email address:
add peer server admin en Add Peer Server
add profile admin en Add profile
add sub-category admin en Add sub category
add user admin en Add user
add user or group admin en Add user or group
admin dn admin en Admin dn
admin email admin en Admin email
admin email addresses (comma-separated) to be notified about the blocking (empty for no notify) admin en Admin email addresses, comma-separated, to be notified about the blocked user accounts and IP. Empty = no notification.
admin name admin en Admin name
admin password admin en Admin password
admin queue and history admin en Admin queue and history
admin username admin en Admin user name
administration admin en Administration
admins admin en Admins
advanced options admin en Advanced options
@ -86,11 +99,16 @@ all records and account information will be lost! admin en All records and accou
all users admin en All users
allow anonymous access to this app admin en Allow anonymous access to this app
allow remote administration from following install id's (comma separated) admin en Allow remote administration from following install ID's, comma separated.
allow users to change forwards admin en Allow users to change forwards
alternate email address admin en Alternate email address
and logged in admin en and logged in
anonymous user admin en Anonymous user
anonymous user (not shown in list sessions) admin en Anonymous user. Not shown in list sessions.
anonymous user does not exist! admin en Anonymous user does NOT exist!
anonymous user has no run-rights for the application! admin en Anonymous user has NO run-rights for the application!
any application admin en Any application
any group admin en Any group
any user admin en Any user
appearance admin en Appearance
application admin en Application
application '%1' not found (maybe not installed or misspelled)! admin en Application '%1' not found. Maybe it is not installed or is misspelled!
@ -123,14 +141,22 @@ attributes admin en Attributes
authentication / accounts admin en Authentication | Accounts
auto create account records for authenticated users admin en Auto create account records for authenticated users.
available placeholders admin en Available placeholders
back to admin/grouplist admin en Back to Admin / Group list
back to admin/userlist admin en Back to Admin / User list
back to the list admin en Back to the list
backup directory %1 mounted as %2 admin en Backup directory %1 mounted as %2
bad login name or password. admin en Bad login name or password.
bad or malformed request. server responded: %s admin en Bad or malformed request. %s
bad request: %s admin en Bad request: %s
bi-dir passthrough admin en bi-dir passthrough
bi-directional admin en bi-directional
bottom admin en Bottom
bulk password reset admin en Bulk password reset
calculate next run admin en Calculate next run
calendar recurrence horizont in days (default 1000) admin en Calendar recurrence horizon in days. Default = 1000.
can be used by application admin en Can be used by application
can be used by group admin en Can be used by group
can be used by user admin en Can be used by user
can change password admin en Can change password
can not change users into groups, same sign required! admin en Can NOT change users into groups, same sign required!
cancel testjob! admin en Cancel TestJob!
@ -163,12 +189,21 @@ command scheduled to run at %1 admin en Command scheduled to run at %1
commercial: all sorts of companies admin en Commercial: all sorts of companies
config password or md5 hash from the header.inc.php admin en Config password or md5 hash from the header.inc.php.
configuration saved. admin en Configuration saved.
connection dropped by imap server. admin en Connection dropped by IMAP server.
connection is not secure! everyone can read eg. your credentials. admin en Connection is NOT secure! Everyone can read eg. your credentials.
continue admin en Continue
cookie domain (default empty means use full domain name, for sitemgr eg. ".domain.com" allows to use the same cookie for egw.domain.com and www.domain.com) admin en Cookie domain. Default empty uses full domain name. E.g. in Site Manager ".domain.com" allows to use the same cookie for egw.domain.com and www.domain.com.
cookie path (allows multiple egw sessions with different directories, has problemes with sitemgr!) admin en Cookie path. Allows multiple EGroupware sessions with different directories.
could not append message: admin en Could not append Message:
could not complete request. reason given: %s admin en Could not complete request. %s
could not open secure connection to the imap server. %s : %s. admin en Could not open secure connection to the IMAP server. %s : %s.
could not remote execute the command admin en Could not remote execute the command
country admin en Country
country selection admin en Country selection
cram-md5 or digest-md5 requires the auth_sasl package to be installed. admin en CRAM-MD5 or DIGEST-MD5 requires the Auth_SASL package to be installed.
create group admin en Create group
create new account admin en Create new account
create new identity admin en Create new identity
created admin en Created
created with id #%1 admin en Created with id #%1
creates / updates user accounts from csv file admin en Creates / updates user accounts from CSV file
@ -178,7 +213,8 @@ crontab only (recomended) admin en Crontab only (recommended)
current hash admin en Current hash
custom fields admin en Custom fields
custom translation admin en Custom translation
cyrus imap server admin en Cyrus IMAP Server
cyrus imap server admin en Cyrus IMAP server
cyrus imap server administration admin en Cyrus IMAP server administration
data admin en Data
data from admin en Data from
day admin en Day
@ -196,11 +232,13 @@ delete all records admin en Delete all records
delete application admin en Delete application
delete category admin en Delete category
delete group admin en Delete group
delete identity admin en Delete identity
delete peer server admin en Delete peer server
delete selected entries admin en Delete selected entries
delete the category admin en Delete the category
delete the group admin en Delete the group
delete the selected entries admin en Delete the selected entries
delete this account admin en Delete this account
delete this category admin en Delete this category
delete this group admin en Delete this group
delete this log entry admin en Delete this log entry
@ -236,12 +274,18 @@ disable wysiwyg-editor admin en Disable WYSIWYG-editor
disabled (not recomended) admin en Disabled (not recommended)
display admin en Display
displayed length of input field (set rows=1 to limit length) admin en displayed length of input field (set rows=1 to limit length)
displaying html messages is disabled admin en displaying html messages is disabled
displaying plain messages is disabled admin en displaying plain messages is disabled
do not delete the category and return back to the list admin en Do NOT delete the category and return back to the list
do not offer introduction video admin en Do not offer introduction video
do not validate certificate admin en Do not validate certificate
do you also want to delete all global subcategories ? admin en Do you also want to delete all global sub categories?
do you really want to delete this profile admin en Do you really want to delete this profile?
do you really want to reset the filter for the profile listing admin en Do you really want to reset the filter for the profile listing?
do you want to delete all global subcategories ? admin en Do you want to delete all global sub categories?
do you want to move all global subcategories one level down ? admin en Do you want to move all global sub categories one level down?
document root (default) admin en Document root (default)
domainname admin en Domain name
down admin en Down
download csv admin en Download CSV
each value is a line like id[=label], or use @path to read options from a file in egroupware directory admin en each value is a line like id[=label], or use @path to read options from a file in EGroupware directory
@ -269,14 +313,22 @@ egroupware version admin en EGroupware version
either install id and config password needed or the remote hash! admin en Either install ID AND config password needed OR the remote hash!
email account active admin en Email account active
email address admin en Email address
email settings common en Email settings
emailadmin admin en eMailAdmin
emailadmin: group assigned profile common en eMailAdmin: Group assigned profile
emailadmin: user assigned profile common en eMailAdmin: User assigned profile
empty to not change admin en empty to NOT change
enable admin en Enable
enable cyrus imap server administration admin en Enable Cyrus IMAP server administration
enable debug-messages admin en Enable debug messages.
enable sieve admin en Enable Sieve
enable spellcheck in rich text editor admin en Enable spellcheck in rich text editor
enable the soap service admin en Enable the soap service.
enable the xmlrpc service admin en Enable the xmlrpc service.
enabled - hidden from navbar admin en Enabled - Hidden from navbar
enabled - popup window admin en Enabled - Popup window
encrypted connection admin en Encrypted connection
encryption settings admin en Encryption settings
enter a description for the category admin en Enter a description for the category
enter some random text for app_session <br>encryption (requires mcrypt) admin en Enter some random text for app_session <br>encryption, requires mcrypt
enter the background color for the login page admin en Enter the background color for the login page
@ -298,20 +350,28 @@ enter the url where your logo should link to admin en Enter the URL where the lo
enter the vfs-path where additional images, icons or logos can be placed (and found by egroupwares applications). the path must start with /,and be readable by all users admin en Enter the VFS path where additional images, icons or logos can be placed and found by EGroupware's applications.<br>The path MUST start with / and be readable by all users
enter your default ftp server admin en Enter your default FTP server
enter your default mail domain ( from: user@domain ) admin en Enter your default mail domain (from: user@domain)
enter your default mail domain (from: user@domain) admin en Enter your default mail domain from: user@domain
enter your http proxy server admin en Enter your HTTP proxy server
enter your http proxy server port admin en Enter your HTTP proxy server port
enter your smtp server hostname or ip address admin en Enter your SMTP server hostname or IP address
enter your smtp server port admin en Enter your SMTP server port
entry saved admin en Entry saved
error canceling timer, maybe there's none set !!! admin en Error canceling timer, maybe there's none set!
error changing the password for %1 !!! admin en Error changing the password for %1 !
error connecting to imap server. %s : %s. admin en Error connecting to IMAP server. %s : %s.
error connecting to imap server: [%s] %s. admin en Error connecting to IMAP server: [%s] %s.
error deleting entry! admin en Error deleting entry!
error deleting log entry! admin en Error deleting log entry!
error saving admin en Error saving!
error saving account! admin en Error saving account!
error saving the command! admin en Error saving the command!
error saving the entry!!! admin en Error saving the entry!
error saving to db: admin en Error saving to db:
error setting timer, wrong syntax or maybe there's one already running !!! admin en Error setting timer, wrong syntax or maybe there's one already running!
error! no appname found admin en Error: No app name found!
error, no username! admin en Error, no username!
error: %1 not found or other error !!! admin en Error: %1 not found or other error!
event details follow admin en Event Details follow
exists admin en Exists
expired admin en Expired
expires admin en Expires
@ -320,23 +380,31 @@ exports groups into a csv file. admin en Exports groups into a CSV file.
exports users into a csv file. admin en Exports users into a CSV file.
failed to change password for account "%1"! admin en Failed to change password for account "%1"!
failed to change password. admin en Failed to change password.
failed to delete account! admin en Failed to delete account!
failed to mount backup directory! admin en Failed to mount Backup directory!
failed to save user! admin en Failed to save user!
fallback (after each pageview) admin en Fallback, after each page view.
false admin en False
field '%1' already exists !!! admin en Field '%1' already exists!
file rejected, no %2. is:%1 admin en File rejected, no %2. Is:%1
file space admin en File space
file space must be an integer admin en File space must be an integer
filtered by account admin en Filtered by account
filtered by group admin en Filtered by group
folder acl admin en Folder ACL
for the times above admin en For the times above
for the times below (empty values count as '*', all empty = every minute) admin en For the times below: empty values count as '*', all empty = every minute.
force selectbox admin en Force select box
force users to change their password regularily?(empty for no,number for after that number of days admin en Set recurrent forced password change. Set a number of days. Empty = No
forward also to admin en Forward also to
forward email's to admin en Forward email's to
forward emails to admin en Forward emails to
forward only admin en Forward only
forward only disables imap mailbox / storing of mails and just forwards them to given address. admin en Forward only disables IMAP mailbox / storing of mails and just forwards them to given address.
full name admin en Full name
general admin en General
global categories common en Global categories
global options admin en Global options
go directly to admin menu, returning here the next time you click on administration. admin en Go directly to admin menu, returning here the next time you click on administration.
governmental: incl. state or municipal authorities or services admin en Governmental: incl. state or municipal authorities or services
grant admin en Grant
@ -358,17 +426,37 @@ hide php information admin en Hide php information
hide sidebox video tutorials admin en Hide sidebox video tutorials
home directory admin en Home directory
host information admin en Host information
hostname or ip admin en Hostname or IP
hour<br>(0-23) admin en Hour<br>(0-23)
how big should thumbnails for linked images be (maximum in pixels) ? admin en Maximum pixel size of thumbnails for linked images.
how many days should entries stay in the access log, before they get deleted (default 90) ? admin en How many days should entries remain in the access log before they get deleted. Default = 90
how many entries should non-admins be able to export (empty = no limit, no = no export) admin en How many entries should non-admins be able to export. Empty = no limit, no = no export
how many minutes should an account or ip be blocked (default 30) ? admin en How many minutes should an account or IP be blocked. Default = 30
how should email addresses for new users be constructed? admin en Select default email address format for new user accounts
how username get constructed admin en How username get constructed
icon admin en Icon
identity deleted admin en Identity deleted
identity saved. admin en Identity saved.
idle admin en idle
if different from email address admin en if different from EMail address
if no acl records for user or any group the user is a member of admin en If no ACL records for user or any group the user is a member of
if using ldap, do you want to manage homedirectory and loginshell attributes? admin en If using LDAP, do you want to manage home directory and loginshell attributes?
if using ssl or tls, you must have the php openssl extension loaded. admin en If using SSL or TLS, you must have the PHP openssl extension loaded.
if you specify port 5190 as sieve server port, you enforce ssl for sieve (server must support that) admin en if you specify port 5190 as sieve server port, you enforce ssl for sieve (server must support that)
imap admin password admin en IMAP admin password
imap admin user admin en IMAP admin user
imap c-client version < 2001 admin en IMAP C-Client Version < 2001
imap server admin en IMAP server
imap server closed the connection. admin en IMAP server closed the connection.
imap server closed the connection. server responded: %s admin en IMAP Server closed the connection. Server Responded: %s
imap server hostname or ip address admin en IMAP server hostname or ip address
imap server logintyp admin en IMAP server login type
imap server name admin en IMAP server name
imap server port admin en IMAP server port
imap/pop3 server name admin en IMAP/POP3 server name
importance admin en importance
in mbyte admin en in MByte
inactive admin en Inactive
inbound admin en inbound
initial admin en Initial
install crontab admin en Install crontab
@ -398,6 +486,7 @@ last password change admin en Last password change
last submission: admin en Last submission:
last time read admin en Last time read
ldap accounts context admin en LDAP accounts context
ldap basedn admin en LDAP basedn
ldap default homedirectory prefix (e.g. /home for /home/username) admin en LDAP default home directory prefix (e.g. /home for /home/username)
ldap default shell (e.g. /bin/bash) admin en LDAP default shell (e.g. /bin/bash)
ldap encryption type admin en LDAP encryption type
@ -405,6 +494,12 @@ ldap groups context admin en LDAP groups context
ldap host admin en LDAP host
ldap root password admin en LDAP root password
ldap rootdn admin en LDAP rootdn
ldap server admin en LDAP server
ldap server accounts dn admin en LDAP server accounts DN
ldap server admin dn admin en LDAP server admin DN
ldap server admin password admin en LDAP server admin password
ldap server hostname or ip address admin en LDAP server host name or IP address
ldap settings admin en LDAP settings
leave empty for no quota admin en Leave empty for no quota
leave the category untouched and return back to the list admin en Leave the category untouched and return back to the list.
leave the group untouched and return back to the list admin en Leave the group untouched and return back to the list.
@ -434,9 +529,12 @@ mail settings admin en Mail settings
main email-address admin en Main email address
main screen message admin en Main screen message
manage mapping admin en Manage mapping
manage stationery templates admin en Manage stationery templates
manager admin en Manager
manual entry admin en Manual entry
maximum account id (e.g. 65535 or 1000000) admin en Maximum account id, e.g. 65535 or 1000000
maximum entries in click path history admin en Maximum entries in click path history
mb used admin en MB used
members admin en Members
message has been updated admin en Message has been updated
method admin en Method
@ -449,6 +547,7 @@ more secure admin en More secure
mount backup directory to %1 admin en Mount backup directory to %1
must change password upon next login admin en Must change password upon next login
name must not be empty !!! admin en Name must not be empty!
name of organisation admin en Name of organization
name of the egroupware instance, eg. default admin en Name of the EGroupware instance
new group name admin en New group name
new name admin en New name
@ -456,16 +555,22 @@ new password admin en New password
new password [ leave blank for no change ] admin en New password [ Leave blank for no change ]
next run admin en Next run
no algorithms available admin en No algorithms available!
no alternate email address admin en No alternate email address!
no alternate email address admin en No alternate email address
no default account found! admin en No default account found!
no encryption admin en No encryption
no forwarding email address admin en No forwarding email address
no jobs in the database !!! admin en No jobs in the database!
no login history exists for this user admin en No login history exists for this user!
no matches found admin en No matches found!
no message returned. admin en No message returned
no modes available admin en No modes available!
no permission to add groups admin en No permission to add groups!
no permission to add users admin en No permission to add users!
no permission to create groups admin en No permission to create groups!
no plain text part found admin en no plain text part found
no profile defined for user %1 admin en No profile defined for user %1
no sieve support detected, either fix configuration manually or leave it switched off. admin en No sieve support detected, either fix configuration manually or leave it switched off.
no supported imap authentication method could be found. admin en No supported IMAP authentication method could be found.
non profit: clubs, associations, ... admin en Non profit: Clubs, Associations, ...
note: ssl available only if php is compiled with curl support admin en Note: SSL available only if PHP is compiled with curl support.
notification mail admin en Notification mail
@ -486,6 +591,7 @@ one week admin en One week
only below displayed information is directly submitted to %s. admin en Only below displayed information is directly submitted to %s.
operating system admin en Operating system
order admin en Order
organisation admin en Organisation
outbound admin en Outbound
own categories admin en Own categories
own install id admin en Own install ID
@ -517,17 +623,31 @@ please enter a name for that server ! admin en Enter a name for that server!
please run setup to become current admin en Run setup to become current
please select admin en Please select
please submit (or postpone) statistic first admin en Please submit (or postpone) statistic first
plesk can't rename users --> request ignored admin en Plesk can't rename users --> request ignored
plesk imap server (courier) admin en Plesk IMAP Server (Courier)
plesk mail script '%1' not found !!! admin en Plesk mail script '%1' not found!
plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! admin en Plesk requires passwords to have at least 5 characters and not contain the account name --> password NOT set!
plesk smtp-server (qmail) admin en Plesk SMTP-Server (Qmail)
pop3 server hostname or ip address admin en POP3 server hostname or IP address
pop3 server port admin en POP3 server port
port admin en Port
postfix with ldap admin en Postfix with LDAP
postpone for admin en Postpone for
preferences admin en Preferences
primary group admin en Primary group
qmaildotmode admin en Qmaildotmode
processing of file %1 failed. failed to meet basic restrictions. admin en Processing of file %1 failed. Failed to meet basic restrictions.
profile access rights admin en Profile access rights
profile is active admin en Profile is active
profile list admin en Profile list
profile name admin en Profile name
qmaildotmode admin en qmaildotmode
quota settings admin en Quota settings
quota size in mbyte admin en Quota size in MByte
re-enter password admin en Re-enter password
read this list of methods. admin en Read this list of methods.
register application hooks admin en Register application hooks
reject passwords containing part of username or full name (3 or more characters long) admin en Reject passwords containing part of username or full name (3 or more characters long)
relay access checked admin en Relay access checked
remote administration instances admin en Remote administration instances
remote administration need to be enabled in the remote instance under admin > site configuration! admin en Remote administration need to be enabled in the remote instance under Admin > Site configuration!
remote instance saved admin en Remote instance saved.
@ -536,6 +656,8 @@ remove all users from this group admin en Remove all users from this group
remove all users from this group ? admin en Remove all users from this group?
removing access for groups may cause problems for data in this category. are you sure? users in these groups may no longer have access: admin en Removing access for groups may cause problems for data in this category. Are you sure? Users in these groups may no longer have access:
requested admin en Requested
required pear class mail/mimedecode.php not found. admin en Required PEAR class Mail/mimeDecode.php not found.
reset filter admin en Reset filter
return to admin mainscreen admin en Return to admin main screen
return to view account admin en Return to view account
rights admin en Rights
@ -544,29 +666,37 @@ rows admin en Rows
rpm or debian package admin en RPM or Debian package
run admin en run
run asynchronous services admin en Run Asynchronous services
save of message %1 failed. could not save message to folder %2 due to: %3 admin en Save of message %1 failed. Could not save message to folder %2 due to: %3
save the category admin en Save the category.
save the category and return back to the list admin en Save the category and return back to the list.
saves the changes made and leaves admin en Saves the changes made and leaves.
saves this entry admin en Saves this entry.
saving of message %1 failed. destination folder %2 does not exist. admin en Saving of message %1 failed. Destination Folder %2 does not exist.
scheduled admin en Scheduled
search accounts admin en Search accounts
search categories admin en Search categories
search groups admin en Search groups
search peer servers admin en Search peer servers
secure connection admin en Secure connection
security admin en Security
select accounts for which the custom field should be visible admin en Select accounts the custom field should be visible for.
select group managers admin en Select group managers
select permissions this group will have admin en Select permissions for this group
select the parent category. if this is a main category select no category admin en Select the parent category. If this is a main category select NO CATEGORY.
select type of imap server admin en Select type of IMAP server
select type of imap/pop3 server admin en Select type of IMAP/POP3 server
select type of smtp server admin en Select type of SMTP server
select users admin en Select users
select users for inclusion admin en Select users for inclusion
select where you want to store/retrieve filesystem information admin en Select where you want to store/retrieve filesystem information.
select where you want to store/retrieve user accounts admin en Select where you want to store/retrieve user accounts.
select which location this app should appear on the navbar, lowest (left) to highest (right) admin en Select which location this app should appear on the navbar, lowest (left) to highest (right).
selectbox admin en Select box
send using this email-address admin en Send using this email address
server %1 has been updated admin en Server %1 has been updated
server list admin en Server list
server password admin en Server password
server settings admin en Server settings
server type(mode) admin en Server type (mode)
server url admin en Server URL
server username admin en Server user name
@ -582,7 +712,19 @@ show error log admin en Show error log
show members admin en Show members
show phpinfo() admin en Show phpinfo()
show session ip address admin en Show session IP address
sieve server hostname or ip address admin en Sieve server hostname or IP address
sieve server port admin en Sieve server port
sieve settings admin en Sieve settings
site admin en Site
skip imap admin en Skip IMAP
skipping imap configuration! admin en Skipping IMAP configuration!
smtp authentication admin en SMTP authentication
smtp options admin en SMTP options
smtp server admin en SMTP server
smtp server name admin en SMTP server name
smtp settings admin en SMTP settings
smtp-server hostname or ip address admin en SMTP server hostname or IP address
smtp-server port admin en SMTP server port
soap admin en SOAP
sorry, that group name has already been taken. admin en Sorry, that group name has already been taken.
sorry, the above users are still a member of the group %1 admin en Sorry, the above users are still a member of the group %1 .
@ -591,11 +733,14 @@ sort the entries admin en Sort the entries
source account #%1 does not exist! admin en Source account #%1 does NOT exist!
ssl admin en ssl
standard admin en Standard
standard identity admin en Standard identity
standard imap server admin en Standard IMAP server
standard pop3 server admin en Standard POP3 server
standard smtp-server admin en Standard SMTP server
start admin en Start
start testjob! admin en Start TestJob!
starts with admin en Starts with
stationery admin en Stationery
submit changes admin en Submit changes
submit displayed information? admin en Submit displayed information
submit statistic information admin en Submit statistic information
@ -604,8 +749,12 @@ submit to egroupware.org admin en Submit to egroupware.org
subtype admin en Sub type
subversion checkout admin en Subversion checkout
success admin en Success
successful connected to %1 server%2. admin en Successful connected to %1 server%2.
switch back to standard identity to save account. admin en Switch back to standard identity to save account.
switch back to standard identity to save other account data. admin en Switch back to standard identity to save other account data.
switch it off, if users are randomly thrown out admin en Switch it off, if users are randomly logged out
template selection admin en Template selection
templates admin en Templates
text entry admin en Text entry
that application name already exists. admin en That application name already exists.
that application order must be a number. admin en That application order must be a number.
@ -616,9 +765,11 @@ the api is current admin en The API is current
the api requires an upgrade admin en The API requires an upgrade
the cumulated and anonymised data will be publically available: admin en The accumulated and anonymous data will be publicly available:
the groups must include the primary group admin en The groups must include the primary group.
the imap server does not appear to support the authentication method selected. please contact your system administrator. admin en The IMAP server does not appear to support the authentication method selected. Contact your system administrator.
the install id of an instance can be found under admin > site configuration admin en The install ID of an instance can be found under Admin > Site configuration
the login and password can not be the same admin en The login and password can not be the same.
the loginid can not be more then 8 characters admin en The login ID can not be more than 8 characters.
the mimeparser can not parse this message. admin en The mimeparser can not parse this message.
the name used internaly (<= 20 chars), changeing it makes existing data unavailible admin en The name used internally, <= 20 chars, changing it makes existing data unavailable.
the testjob sends you a mail everytime it is called. admin en The TestJob sends you a mail every time it is called.
the text displayed to the user admin en The text displayed to the user
@ -630,10 +781,13 @@ this application is current admin en This application is current.
this application requires an upgrade admin en This application requires an upgrade.
this category is currently being used by applications as a parent category admin en This category is currently being used by applications as a parent category.
this controls exports and merging. admin en This controls exports and merge prints.
this is not a personal mail account!\n\naccount will be deleted for all users!\n\nare you really sure you want to do that? admin en This is NOT a personal mail account!\n\nAccount will be deleted for ALL users!\n\nAre you really sure you want to do that?
this php has no imap support compiled in!! admin en This PHP has no IMAP support compiled in!!
timeout for application session data in seconds (default 86400 = 1 day) admin en Timeout for application session data in seconds. Default 86400 = 1 day
timeout for sessions in seconds (default 14400 = 4 hours) admin en Timeout for sessions in seconds. Default 14400 = 4 hours
times admin en Times
to allow us to track the growth of your individual installation use this submit id, otherwise delete it: admin en To allow us to track the growth of your individual installation use this submit ID, otherwise delete it:
to use a tls connection, you must be running a version of php 5.1.0 or higher. admin en To use a TLS connection, you must be running a version of PHP 5.1.0 or higher.
top admin en Top
total of %1 id's changed. admin en Total of %1 id's changed.
total records admin en Total records
@ -649,27 +803,53 @@ type '%1' already exists !!! admin en Type '%1' already exists!
type of customfield admin en Type of custom field
type of field admin en Type of field
under windows you need to install the asyncservice %1manually%2 or use the fallback mode. fallback means the jobs get only checked after each page-view !!! admin en Under windows you need to install the async service %1manually%2 or use the fallback mode. Fallback means the jobs get only checked after each page view!
unexpected response from server to authenticate command. admin en Unexpected response from server to AUTHENTICATE command.
unexpected response from server to digest-md5 response. admin en Unexpected response from server to Digest-MD5 response.
unexpected response from server to login command. admin en Unexpected response from server to LOGIN command.
unknown account: %1 !!! admin en Unknown account: %1 !
unknown command %1! admin en Unknown command %1!
unknown imap response from the server. server responded: %s admin en Unknown IMAP response from the server. %s
unknown option %1 admin en Unknown option %1 !
unsupported action '%1' !!! admin en Unsupported action '%1' !
unwilling to save category with current settings. check for inconsistency: admin en Unable to save category with current settings. Check for inconsistency:
up admin en Up
update current email address: admin en Update current email address:
updated admin en Updated
uppercase, lowercase, number, special char admin en Uppercase, lowercase, number, special char
url of the egroupware installation, eg. http://domain.com/egroupware admin en URL of the EGroupware installation, e.g. http://domain.com/egroupware
usage admin en Usage
use cookies to pass sessionid admin en Use cookies to pass session ID
use default admin en use default
use ldap defaults admin en Use LDAP defaults
use predefined username and password defined below admin en Use predefined username and password defined below
use pure html compliant code (not fully working yet) admin en Use pure HTML compliant code
use secure cookies (transmitted only via https) admin en Use secure cookies (transmitted only via https)
use smtp auth admin en Use SMTP authentication
use theme admin en Use theme
use tls authentication admin en Use TLS authentication
use tls encryption admin en Use TLS encryption
use users email-address (as seen in useraccount) admin en Use users email address, as set in user account
user accounts admin en User accounts
user can edit forwarding address admin en User can edit forwarding address
user csv export admin en User CSV export
user csv import admin en User CSV import
user data common en User data
user for smtp-authentication (leave it empty if no auth required) admin en User for SMTP authentication. Leave it empty if no authentication is required.
user groups admin en User groups
userdata admin en User data
userid@domain eg. u1234@domain admin en UserId@domain eg. u1234@domain
username (standard) admin en Username (standard)
username specified below for all admin en Username specified below for all
username/password defined by admin admin en Username / Password defined by admin
username@domainname (virtual mail manager) admin en username@domainname (Virtual MAIL ManaGeR)
users can define their own emailaccounts admin en Users can define their own email accounts
users can define their own identities admin en Users can define their own identities
users can define their own signatures admin en Users can define their own signatures
users can utilize these stationery templates admin en Users can utilize these stationery templates
users choice admin en Users choice
using data from mozilla ispdb for provider %1 admin en Using data from Mozilla ISPDB for provider %1
vacation messages with start- and end-date require an admin account to be set admin en Vacation messages with start and end date require an admin account to be set!
vacation notice admin en Vacation notice
value for column %1 is not unique! admin en Value for column %1 is not unique!
vfs directory "%1" not found! admin en VFS directory "%1" NOT found!
view access log admin en View access log
@ -679,6 +859,7 @@ view error log admin en View error log
view sessions admin en View sessions
view this user admin en View this user
view user account admin en View user account
virtual mail manager admin en Virtual MAIL ManaGeR
warn users about the need to change their password? the number set here should be lower than the value used to enforce the change of passwords every x days. only effective when enforcing of password change is enabled. (empty for no,number for number of days before they must change) admin en Set number of days to inform users in advance about upcoming forced password change. Empty = No information
we ask for the data to improve our profile in the press and to get a better understanding of egroupware's user base and it's needs. admin en Information is asked only to get an overview about the use of EGroupware worldwide.
we hope you understand the importance for this voluntary statistic and not deny it lightly. admin en We're not saving any data regarding your identity.
@ -693,11 +874,15 @@ wrong admin-account or -password !!! admin en Wrong admin account or password!
xml-rpc admin en XML-RPC
yes, but no scayt admin en Yes, but no Spell Check As You Type (online)
yes, use browser based spell checking engine admin en Yes, use browser based spell checking engine
yes, use credentials below only for alarms and notifications, otherwise use credentials of current user admin en Yes, use credentials below only for alarms and notifications, otherwise use credentials of current user
yes, use credentials of current user or if given credentials below admin en Yes, use credentials of current user or if given credentials below
yes, use webspellchecker admin en Yes, use online WebSpellChecker
you can not use --dry-run together with --skip-checks! admin en You can NOT use --dry-run together with --skip-checks!
you can only change the hash, if you set a random password or currently use plaintext passwords! admin en You can change the hash only, if you set a random password or currently use plaintext passwords!
you can use wizard to fix account settings or delete account. admin en You can use wizard to fix account settings or delete account.
you have entered an invalid expiration date admin en You have entered an invalid expiration date!
you have no email address for your user set !!! admin en You have no email address set for your user!
you have received a new message on the admin en You have received a new message on the
you have to enter a name, to create a new field!!! admin en You have to enter a name, to create a new field!
you have to enter a name, to create a new type!!! admin en You have to enter a name, to create a new type!
you must add at least 1 permission or group to this account admin en You must add at least 1 permission or group to this account!
@ -712,219 +897,9 @@ you must select at least one group member. admin en You must select at least one
you need to enter install id and password! admin en You need to enter install ID AND password!
you need to select as least one action! admin en You need to select as least one action!
you need to select some users first! admin en You need to select some users first!
you need to specify a forwarding address, when checking "%1"! admin en You need to specify a forwarding address, when checking "%1"!
you will need to remove the subcategories before you can delete this category admin en Remove the sub categories before deleting this category!
your last submission was less then %1 days ago! admin en Your last submission was less than %1 days ago!
your session could not be verified. admin en Your session could not be verified.
%1 entries deleted. admin en %1 entries deleted.
(imapclass must support this feature by querying the corresponding config value and pass it as defaultquota to the imapserver) admin en (imapclass must support this feature by querying the corresponding config value and pass it as defaultquota to the imapserver)
(no subject) admin en (no subject)
account '%1' not found !!! admin en Account '%1' not found!
account deleted. admin en Account deleted.
account not found! common en Account not found!
account saved. admin en Account saved.
active templates admin en Active templates
add new email address: admin en Add new email address:
add profile admin en Add profile
admin dn admin en Admin dn
admin password admin en Admin password
admin username admin en Admin user name
advanced options admin en Advanced options
allow users to change forwards admin en Allow users to change forwards
alternate email address admin en Alternate email address
and logged in admin en and logged in
any application admin en Any application
any group admin en Any group
any user admin en Any user
back to admin/grouplist admin en Back to Admin / Group list
back to admin/userlist admin en Back to Admin / User list
bad login name or password. admin en Bad login name or password.
bad or malformed request. server responded: %s admin en Bad or malformed request. %s
bad request: %s admin en Bad request: %s
can be used by application admin en Can be used by application
can be used by group admin en Can be used by group
can be used by user admin en Can be used by user
connection dropped by imap server. admin en Connection dropped by IMAP server.
connection is not secure! everyone can read eg. your credentials. admin en Connection is NOT secure! Everyone can read eg. your credentials.
continue admin en Continue
could not append message: admin en Could not append Message:
could not complete request. reason given: %s admin en Could not complete request. %s
could not open secure connection to the imap server. %s : %s. admin en Could not open secure connection to the IMAP server. %s : %s.
cram-md5 or digest-md5 requires the auth_sasl package to be installed. admin en CRAM-MD5 or DIGEST-MD5 requires the Auth_SASL package to be installed.
create new account admin en Create new account
create new identity admin en Create new identity
cyrus imap server admin en Cyrus IMAP server
cyrus imap server administration admin en Cyrus IMAP server administration
default admin en Default
delete identity admin en Delete identity
delete this account admin en Delete this account
deliver extern admin en Deliver extern
displaying html messages is disabled admin en displaying html messages is disabled
displaying plain messages is disabled admin en displaying plain messages is disabled
do not validate certificate admin en Do not validate certificate
do you really want to delete this profile admin en Do you really want to delete this profile?
do you really want to reset the filter for the profile listing admin en Do you really want to reset the filter for the profile listing?
domainname admin en Domain name
edit email settings admin en Edit email settings
email account active admin en Email account active
email address admin en Email address
email settings common en Email settings
emailadmin admin en eMailAdmin
emailadmin: group assigned profile common en eMailAdmin: Group assigned profile
emailadmin: user assigned profile common en eMailAdmin: User assigned profile
enable cyrus imap server administration admin en Enable Cyrus IMAP server administration
enable sieve admin en Enable Sieve
encrypted connection admin en Encrypted connection
encryption settings admin en Encryption settings
enter your default mail domain (from: user@domain) admin en Enter your default mail domain from: user@domain
entry saved admin en Entry saved
error connecting to imap server. %s : %s. admin en Error connecting to IMAP server. %s : %s.
error connecting to imap server: [%s] %s. admin en Error connecting to IMAP server: [%s] %s.
error deleting entry! admin en Error deleting entry!
error saving account! admin en Error saving account!
error saving the entry!!! admin en Error saving the entry!
error, no username! admin en Error, no username!
event details follow admin en Event Details follow
failed to delete account! admin en Failed to delete account!
file rejected, no %2. is:%1 admin en File rejected, no %2. Is:%1
filtered by account admin en Filtered by account
filtered by group admin en Filtered by group
folder acl admin en Folder ACL
forward also to admin en Forward also to
forward email's to admin en Forward email's to
forward only admin en Forward only
forward only disables imap mailbox / storing of mails and just forwards them to given address. admin en Forward only disables IMAP mailbox / storing of mails and just forwards them to given address.
global options admin en Global options
hostname or ip admin en Hostname or IP
how username get constructed admin en How username get constructed
identity deleted admin en Identity deleted
identity saved. admin en Identity saved.
if different from email address admin en if different from EMail address
if using ssl or tls, you must have the php openssl extension loaded. admin en If using SSL or TLS, you must have the PHP openssl extension loaded.
if you specify port 5190 as sieve server port, you enforce ssl for sieve (server must support that) admin en if you specify port 5190 as sieve server port, you enforce ssl for sieve (server must support that)
imap admin password admin en IMAP admin password
imap admin user admin en IMAP admin user
imap c-client version < 2001 admin en IMAP C-Client Version < 2001
imap server admin en IMAP server
imap server closed the connection. admin en IMAP server closed the connection.
imap server closed the connection. server responded: %s admin en IMAP Server closed the connection. Server Responded: %s
imap server hostname or ip address admin en IMAP server hostname or ip address
imap server logintyp admin en IMAP server login type
imap server name admin en IMAP server name
imap server port admin en IMAP server port
imap/pop3 server name admin en IMAP/POP3 server name
importance admin en importance
in mbyte admin en in MByte
inactive admin en Inactive
ldap basedn admin en LDAP basedn
ldap server admin en LDAP server
ldap server accounts dn admin en LDAP server accounts DN
ldap server admin dn admin en LDAP server admin DN
ldap server admin password admin en LDAP server admin password
ldap server hostname or ip address admin en LDAP server host name or IP address
ldap settings admin en LDAP settings
leave empty for no quota admin en Leave empty for no quota
mail settings admin en Mail settings
manage stationery templates admin en Manage stationery templates
manual entry admin en Manual entry
mb used admin en MB used
name of organisation admin en Name of organization
no alternate email address admin en No alternate email address
no encryption admin en No encryption
no forwarding email address admin en No forwarding email address
no message returned. admin en No message returned
no plain text part found admin en no plain text part found
no sieve support detected, either fix configuration manually or leave it switched off. admin en No sieve support detected, either fix configuration manually or leave it switched off.
no supported imap authentication method could be found. admin en No supported IMAP authentication method could be found.
order admin en Order
organisation admin en Organisation
plesk can't rename users --> request ignored admin en Plesk can't rename users --> request ignored
plesk imap server (courier) admin en Plesk IMAP Server (Courier)
plesk mail script '%1' not found !!! admin en Plesk mail script '%1' not found!
plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! admin en Plesk requires passwords to have at least 5 characters and not contain the account name --> password NOT set!
plesk smtp-server (qmail) admin en Plesk SMTP-Server (Qmail)
pop3 server hostname or ip address admin en POP3 server hostname or IP address
pop3 server port admin en POP3 server port
port admin en Port
postfix with ldap admin en Postfix with LDAP
processing of file %1 failed. failed to meet basic restrictions. admin en Processing of file %1 failed. Failed to meet basic restrictions.
profile access rights admin en Profile access rights
profile is active admin en Profile is active
profile list admin en Profile list
profile name admin en Profile name
qmaildotmode admin en qmaildotmode
quota settings admin en Quota settings
quota size in mbyte admin en Quota size in MByte
relay access checked admin en Relay access checked
remove admin en Remove
required pear class mail/mimedecode.php not found. admin en Required PEAR class Mail/mimeDecode.php not found.
reset filter admin en Reset filter
save of message %1 failed. could not save message to folder %2 due to: %3 admin en Save of message %1 failed. Could not save message to folder %2 due to: %3
saving of message %1 failed. destination folder %2 does not exist. admin en Saving of message %1 failed. Destination Folder %2 does not exist.
secure connection admin en Secure connection
select type of imap server admin en Select type of IMAP server
select type of imap/pop3 server admin en Select type of IMAP/POP3 server
select type of smtp server admin en Select type of SMTP server
send using this email-address admin en Send using this email address
server settings admin en Server settings
sieve server hostname or ip address admin en Sieve server hostname or IP address
sieve server port admin en Sieve server port
sieve settings admin en Sieve settings
skip imap admin en Skip IMAP
skipping imap configuration! admin en Skipping IMAP configuration!
smtp authentication admin en SMTP authentication
smtp options admin en SMTP options
smtp server admin en SMTP server
smtp server name admin en SMTP server name
smtp settings admin en SMTP settings
smtp-server hostname or ip address admin en SMTP server hostname or IP address
smtp-server port admin en SMTP server port
standard admin en Standard
standard identity admin en Standard identity
standard imap server admin en Standard IMAP server
standard pop3 server admin en Standard POP3 server
standard smtp-server admin en Standard SMTP server
starts with admin en Starts with
stationery admin en Stationery
successful connected to %1 server%2. admin en Successful connected to %1 server%2.
switch back to standard identity to save account. admin en Switch back to standard identity to save account.
switch back to standard identity to save other account data. admin en Switch back to standard identity to save other account data.
templates admin en Templates
the imap server does not appear to support the authentication method selected. please contact your system administrator. admin en The IMAP server does not appear to support the authentication method selected. Contact your system administrator.
the mimeparser can not parse this message. admin en The mimeparser can not parse this message.
this is not a personal mail account!\n\naccount will be deleted for all users!\n\nare you really sure you want to do that? admin en This is NOT a personal mail account!\n\nAccount will be deleted for ALL users!\n\nAre you really sure you want to do that?
this php has no imap support compiled in!! admin en This PHP has no IMAP support compiled in!!
to use a tls connection, you must be running a version of php 5.1.0 or higher. admin en To use a TLS connection, you must be running a version of PHP 5.1.0 or higher.
unexpected response from server to authenticate command. admin en Unexpected response from server to AUTHENTICATE command.
unexpected response from server to digest-md5 response. admin en Unexpected response from server to Digest-MD5 response.
unexpected response from server to login command. admin en Unexpected response from server to LOGIN command.
unknown imap response from the server. server responded: %s admin en Unknown IMAP response from the server. %s
unsupported action '%1' !!! admin en Unsupported action '%1' !
update current email address: admin en Update current email address:
use default admin en use default
use ldap defaults admin en Use LDAP defaults
use predefined username and password defined below admin en Use predefined username and password defined below
use smtp auth admin en Use SMTP authentication
use tls authentication admin en Use TLS authentication
use tls encryption admin en Use TLS encryption
use users email-address (as seen in useraccount) admin en Use users email address, as set in user account
user can edit forwarding address admin en User can edit forwarding address
userid@domain eg. u1234@domain admin en UserId@domain eg. u1234@domain
username (standard) admin en Username (standard)
username specified below for all admin en Username specified below for all
username/password defined by admin admin en Username / Password defined by admin
username@domainname (virtual mail manager) admin en username@domainname (Virtual MAIL ManaGeR)
users can define their own emailaccounts admin en Users can define their own email accounts
users can define their own identities admin en Users can define their own identities
users can define their own signatures admin en Users can define their own signatures
users can utilize these stationery templates admin en Users can utilize these stationery templates
using data from mozilla ispdb for provider %1 admin en Using data from Mozilla ISPDB for provider %1
vacation messages with start- and end-date require an admin account to be set admin en Vacation messages with start and end date require an admin account to be set!
vacation notice admin en Vacation notice
virtual mail manager admin en Virtual MAIL ManaGeR
yes, use credentials below only for alarms and notifications, otherwise use credentials of current user admin en Yes, use credentials below only for alarms and notifications, otherwise use credentials of current user
yes, use credentials of current user or if given credentials below admin en Yes, use credentials of current user or if given credentials below
you can use wizard to fix account settings or delete account. admin en You can use wizard to fix account settings or delete account.
you have received a new message on the admin en You have received a new message on the
you need to specify a forwarding address, when checking "%1"! admin en You need to specify a forwarding address, when checking "%1"!
your message to %1 was displayed. admin en Your message to %1 was displayed.
your name admin en Your name
your session could not be verified. admin en Your session could not be verified.

View File

@ -48,10 +48,3 @@ $setup_info['admin']['depends'][] = array(
'appname' => 'api',
'versions' => Array('16.1')
);
// still using old etemplate in: admin_statistics
$setup_info['admin']['depends'][] = array(
'appname' => 'etemplate',
'versions' => Array('14.1')
);

View File

@ -5,11 +5,13 @@
<template id="admin.statistics" template="" lang="" group="0" version="1.7.001">
<groupbox span="all" class="bigger">
<caption label="Official EGroupware usage statistic"/>
<description value="We ask for the data to improve our profile in the press and to get a better understanding of EGroupware's user base and it's needs."/>
<html label="The cumulated and anonymised data will be publically available:" id="statistic_url"/>
<description value="We hope you understand the importance for this voluntary statistic and not deny it lightly." class="bold"/>
<description value="Only below displayed information is directly submitted to %s." id="submit_host"/>
<textbox label="To allow us to track the growth of your individual installation use this submit ID, otherwise delete it:" id="submit_id" size="40" maxlength="40"/>
<vbox>
<description value="We ask for the data to improve our profile in the press and to get a better understanding of EGroupware's user base and it's needs."/>
<url label="The cumulated and anonymised data will be publically available:" id="statistic_url" readonly="true"/>
<description value="We hope you understand the importance for this voluntary statistic and not deny it lightly." class="bold"/>
<description label="Only below displayed information is directly submitted to %s." id="submit_host"/>
<textbox label="To allow us to track the growth of your individual installation use this submit ID, otherwise delete it:" id="submit_id" size="42" maxlength="40"/>
</vbox>
</groupbox>
<grid>
<columns>
@ -23,15 +25,11 @@
</row>
<row>
<description options=",,,country" value="Country"/>
<menulist>
<menupopup type="select-country" id="country" options="International use"/>
</menulist>
<select type="select-country" id="country" options="International use"/>
</row>
<row>
<description value="Usage" options=",,,usage_type"/>
<menulist>
<menupopup id="usage_type"/>
</menulist>
<select id="usage_type"/>
</row>
<row>
<description value="Number of users" options=",,,users"/>
@ -43,7 +41,7 @@
</row>
<row>
<description value="EGroupware Version"/>
<textbox id="version" size="-8" readonly="true"/>
<textbox id="version" size="-16" readonly="true"/>
</row>
<row>
<description value="Operating System"/>
@ -74,9 +72,7 @@
<row>
<button label="Submit" statustext="Submit to egroupware.org" onclick="$cont[onclick]" id="submit"/>
<hbox>
<menulist>
<menupopup id="postpone" options="Postpone for" onchange="1"/>
</menulist>
<select id="postpone" options="Postpone for" onchange="1"/>
<button id="cancel" label="Cancel" statustext="Go directly to admin menu, returning here the next time you click on administration." align="right"/>
</hbox>
</row>
@ -84,10 +80,10 @@
</grid>
<styles>
.bold { font-weight: bold; }
fieldset.bigger legend {
font-weight: bold;
font-size: 125%;
padding-left: 5px;
fieldset.bigger legend {
font-weight: bold;
font-size: 125%;
padding-left: 5px;
padding-right: 5px;
}
</styles>