remove not maintained sms notification backend

This commit is contained in:
Klaus Leithoff 2014-05-13 15:02:07 +00:00
parent 7ddc51e7e4
commit 134ef05744
16 changed files with 3 additions and 277 deletions

View File

@ -45,7 +45,7 @@ final class notifications {
* registered backends
* @var array
*/
private $backends = array('popup', 'winpopup', 'email', 'sms', 'jpopup');
private $backends = array('popup', 'winpopup', 'email', 'jpopup');
/**
* backends to skip even if the user has chosen it
@ -72,14 +72,11 @@ final class notifications {
'all' => false, // will be created by $this->get_available_chains
'popup_only' => array('popup' => 'stop'),
'popup_or_email' => array('popup' => 'fail', 'email' => 'stop'),
'popup_or_sms' => array('popup' => 'fail', 'sms' => 'stop'),
'popup_and_email' => array('popup' => 'continue', 'email' => 'stop'),
'popup_and_winpopup' => array('popup' => 'continue', 'winpopup' => 'stop'),
'winpopup_only' => array('winpopup' => 'stop'),
'winpopup_or_email' => array('winpopup' => 'fail', 'email' => 'stop'),
//'winpopup_or_sms' => array('winpopup' => 'fail', 'sms' => 'stop'),
'winpopup_and_email' => array('winpopup' => 'continue', 'email' => 'stop'),
'sms_only' => array('sms' => 'stop'),
'jpopup_only' => array('jpopup' => 'continue', 'popup' => 'stop'),
'jpopup_and_email' => array('jpopup' => 'continue', 'popup' => 'continue', 'email' => 'stop'),
);
@ -94,14 +91,11 @@ final class notifications {
'all' => 'all possible notification backends',
'popup_only' => 'eGroupWare-Popup only',
'popup_or_email' => 'eGroupWare-Popup first, if that fails notify me by E-Mail',
'popup_or_sms' => 'eGroupware-Popup first, if that fails notify me by SMS',
'popup_and_email' => 'eGroupWare-Popup and E-Mail',
'popup_and_winpopup' => 'eGroupWare-Popup and Windows-Popup',
'winpopup_only' => 'Windows-Popup only',
'winpopup_or_email' => 'Windows-Popup first, if that fails notify me by E-Mail',
//'winpopup_or_sms' => 'Windows-Popup first, if that fails notify me by SMS',
'winpopup_and_email' => 'Windows-Popup and E-Mail',
'sms_only' => 'SMS only',
'jpopup_only' => 'Java-Windows-Popup and eGroupWare-Popup only',
'jpopup_and_email' => 'Java-Windows-Popup, eGroupWare-Popup and Email'
);

View File

@ -22,7 +22,7 @@ class notifications_ajax {
/**
* Mailappname
*/
const _mailappname = 'felamimail';
const _mailappname = 'mail';
/**
* Notification table in SQL database
@ -112,7 +112,7 @@ class notifications_ajax {
*/
public function get_notifications($browserNotify = false) {
// call a hook for notifications on new mail
//if ($GLOBALS['egw_info']['user']['apps']['felamimail']) $this->check_mailbox();
//if ($GLOBALS['egw_info']['user']['apps']['mail']) $this->check_mailbox();
$GLOBALS['egw']->hooks->process('check_notify');
// update currentusers

View File

@ -1,186 +0,0 @@
<?php
/**
* eGroupWare - Notifications
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package notifications
* @link http://www.egroupware.org
* @author Aleksander Adamowski <aleksander.adamowski@olo.org.pl>
* @version $Id$
*/
/**
* User notification via winpopup.
*/
class notifications_sms implements notifications_iface {
/**
* Appname
*/
const _appname = 'notifications';
/**
* Login table in SQL database
*/
const _login_table = 'egw_access_log';
/**
* holds account object for user who sends the message
*
* @var object
*/
private $sender;
/**
* holds account object for user to notify
*
* @var object
*/
private $recipient;
/**
* holds config object (sitewide application config)
*
* @var object
*/
private $config;
/**
* holds preferences object of user to notify
*
* @var object
*/
private $preferences;
/**
* holds the sms sending command. the script should accept two arguments: mobile number and
* SMS body in ASCII.
*
* @abstract
* Example: /usr/bin/sendsms
* (sendsms is from smstools)
*
* @var string
*/
private $sendsms_command = '/usr/sbin/sendsms';
/**
* constructor of notification_sms
*
* @param object $_sender
* @param object $_recipient
* @param object $_config
* @param object $_preferences
*/
public function __construct($_sender, $_recipient, $_config = null, $_preferences = null) {
if(!is_object($_sender)) { throw new Exception("no sender given."); }
if(!is_object($_recipient)) { throw new Exception("no recipient given."); }
$this->sender = $_sender;
$this->recipient = $_recipient;
$this->config = $_config;
$this->preferences = $_preferences;
}
/**
* sends notification
*
* @param string $_subject
* @param array $_messages
* @param array $_attachments
*/
public function send(array $_messages, $_subject = false, $_links = false, $_attachments = false) {
if(!$this->sendsms_command) {
throw new Exception( 'SMS plugin not configured yet. Skipped sending notification message. '.
'Please check var "sms_command" in SMS backend '.
'('.EGW_INCLUDE_ROOT. SEP. self::_appname. SEP. 'inc'. SEP. 'class.notification_sms.inc.php).');
}
//error_log('_messages: '.var_export($_messages, TRUE)."\n");
$this->send_sms( $_subject.$_messages['plain']);
return true;
}
/**
* Try to guess a locale supported by the server, with fallback to 'en_EN' and 'C'
* borrowed from projectmanager/inc/class.ganttchart.inc.php
*
* @return string
*/
function guess_locale() {
$fullprefs = new preferences($this->recipient->account_id);
$fullpreferences = $fullprefs->read();
$lang = $fullpreferences['common']['lang'];
$country = $fullpreferences['common']['country'];
if (strlen($lang) == 2) {
$country_from_lang = strtoupper($lang);
} else {
list($lang,$country_from_lang) = explode('-',$lang);
$country_from_lang = strtoupper($country_from_lang);
}
$old_locale = setlocale(LC_CTYPE, '0');
if (setlocale(LC_CTYPE,$locale=$lang.'_'.$country)) return $old_locale;
if (setlocale(LC_CTYPE,$locale=$lang.'_'.$country_from_lang)) return $old_locale;
if (setlocale(LC_CTYPE,$locale=$lang)) return $old_locale;
if (setlocale(LC_CTYPE,$locale='en_EN')) return $old_locale;
return $old_locale;
}
/**
* sends the sms message via command line script specified above
*
* @param string $_message
* @param array $_user_sessions
*/
private function send_sms( $_message) {
$account_id = $this->recipient->account_id;
// Theoretically one could send unicode text SMS by using UCS-2 encoding for the message.
// My modem, however, rejected UCS-2 encoded text so I convert to plain ASCII:
if (function_exists('iconv')) {
$funcToUse = 'iconv';
} else if (function_exists('mb_convert_encoding')) {
$funcToUse = 'mb_convert_encoding';
}
$old_locale = $this->guess_locale();
//error_log("New LC_CTYPE locale: ".setlocale(LC_CTYPE, '0'));
$source_charset = $GLOBALS['egw']->translation->charset();
if ($funcToUse == 'iconv') {
$converted_message = iconv($source_charset, 'ASCII//TRANSLIT', $_message);
} else if ($funcToUse == 'mb_convert_encoding') {
$converted_message = mb_convert_encoding($_message, 'ASCII', $source_charset);
}
setlocale(LC_CTYPE, $old_locale);
//error_log("Restored old LC_CTYPE locale: ".setlocale(LC_CTYPE, '0'));
$addressbook = new addressbook_bo();
$contact = $addressbook->read('account:'.$account_id);
$cell = $contact['tel_cell'];
// remove all characters that are non-digit and not a plus sign:
$cell = preg_replace('/[^0-9]/', '', $cell);
if (!preg_match('/48[^0][0-9]{8}/', $cell)) {
error_log('Invalid cell number: '.$cell);
throw new Exception("Failed sending notification message via sms. Invalid mobile number: ".$cell);
}
$command = $this->sendsms_command;
// just in case to be sure of safeness:
$escaped_cell = escapeshellarg($cell);
$command .= ' '.$cell;
// The first four rows of alarm message contain redundant text
// that's unneeded in SMS notifications, and space is precious,
// so we remove them:
// Or maybe not:
//$converted_message = preg_replace("/^([^\n]*\r?\n){4}/", "", $converted_message);
// SMS length limit of max. 3 SMS concatenated:
$converted_message = substr($converted_message, 0, 160*3);
// escape any dangerous content from the message:
$escaped_message = escapeshellarg($converted_message);
$command .= ' '.$escaped_message;
//error_log('SMS command: '.$command."\n");
exec($command,$output,$returncode);
if($returncode != 0) {
throw new Exception("Failed sending notification message via sms. Error while executing the specified command.");
}
}
}

View File

@ -11,12 +11,10 @@ egroupware-popup and e-mail notifications cs Překryvná okna v eGroupWaru a e-m
egroupware-popup and windows-popup notifications cs Překryvná okna v eGroupWaru a překryvná okna ve Windows
egroupware-popup backend admin cs Backend Překryvná okna v eGroupWaru
egroupware-popup first, if that fails notify me by e-mail notifications cs Nejprve překryvná okna v eGroupWaru, pokud se nezdaří, upozorni mě e-mailem
egroupware-popup first, if that fails notify me by sms notifications cs Nejprve překryvná okna v eGroupWaru, pokud se nezdaří, upozorni mě SMS zprávou
egroupware-popup only notifications cs Jen překryvná okna v eGroupWaru
egroupware-popup verbosity notifications cs Intenzita sdělení pro Překryvná okna v eGroupWaru
emailadmin profile only (do not use user defined (active) mail profiles for notification) admin cs Jen emailadmin profil (Nepoužívat aktivní, uživatelem definovaný účet, pro zasílání upozornění)
enable egroupware-popup backend admin cs Povolit backend Překryvná okna v eGroupWaru
enable sms backend admin cs Povolit SMS backend
enable windows-popup backend admin cs Povolit backend Překryvná okna ve Windows
enabled chains notifications cs Povolené posloupnosti
folder notifications cs Složka
@ -25,7 +23,6 @@ how verbose should the egroupware-popup behave if a notification is sent to the
if set, embedded links get rendered special for external clients notifications cs Pokud je nastaveno, vložené odkazy jsou speciálně renderovány pro externí klienty
linked entries: common cs Odkazované záznamy:
mail backend admin cs Poštovní backend
maximum sms messages per notification admin cs Maximální počet SMS zpráv na jedno upozornění
message from notifications cs Zpráva od
minutes notifications cs minut
notification common cs Upozornění
@ -37,15 +34,12 @@ preferences for notification notifications cs Předvolby pro upozornění
received notifications cs Přijato
settings notifications cs Nastavení
signature admin cs Podpis
sms backend admin cs SMS backend
sms only notifications cs Jen SMS
step notifications cs Krok
this egroupware notification has been sent to you by mail because your chosen notification-chain has been disabled by the administrator. please choose another notification-chain in your preferences! notifications cs Toto upozornění od eGroupWaru Vám bylo zasláno e-mailem, protože Vámi zvolená posloupnost upozornění byla zakázána administrátorem. Vyberte si prosím v předvolbách jinou posloupnost upozornění.
warning notifications cs Varování
windows-popup and e-mail notifications cs Překryvná okna ve Windows a e-mail
windows-popup backend admin cs Backend Překryvná okna ve Windows
windows-popup first, if that fails notify me by e-mail notifications cs Nejprve překryvná okna ve Windows, pokud se nezdaří, upozorni mě e-mailem
windows-popup first, if that fails notify me by sms notifications cs Nejprve překryvná okna ve Windows, pokud se nezdaří, upozorni mě SMS zprávou
windows-popup only notifications cs Jen překryvná okna ve Windows
you've got new mail notifications cs Přišel Vám nový e-mail
your session could not be verified. notifications cs Vaše relace nemohla být ověřena.

View File

@ -28,12 +28,10 @@ egroupware-popup and e-mail notifications de EGroupware-Popup und E-Mail
egroupware-popup and windows-popup notifications de EGroupware-Popup und Windows-Popup
egroupware-popup backend admin de EGroupware-Popup Schnittstelle
egroupware-popup first, if that fails notify me by e-mail notifications de zuerst EGroupware-Popup. Wenn dies fehl schlägt, benachrichtige mich per E-Mail.
egroupware-popup first, if that fails notify me by sms notifications de zuerst EGroupware-Popup. Wenn dies fehl schlägt, benachrichtige mich per SMS.
egroupware-popup only notifications de nur EGroupware-Popup
egroupware-popup verbosity notifications de EGroupware-Popup Mitteilungspriorität
emailadmin profile only (do not use user defined (active) mail profiles for notification) admin de Nur Emailadmin Profil (aktive Benutzerdefinierte Konten werden nicht für die Notifizierung per E-Mail verwendet)
enable egroupware-popup backend admin de EGroupware-Popup Schnittstelle aktivieren
enable sms backend admin de SMS Schnittstelle aktivieren
enable windows-popup backend admin de Windows-Popup Schnittstelle aktivieren
enabled chains notifications de Aktivierte Ketten
error browser can`t start. notifications de Fehler beim Starten des Browsers.
@ -52,7 +50,6 @@ linked entries: common de Verknüpfte Einträge:
login aborted, application exit? notifications de Login abgebrochen, Anwendung beenden?
login in egroupware: notifications de Login in EGroupware
mail backend admin de E-Mail Schnittstelle
maximum sms messages per notification admin de Maximale Anzahl an SMS Nachrichten pro Benachrichtigung
message from notifications de Nachricht von
minutes notifications de Minuten
notification common de Benachrichtigung
@ -79,8 +76,6 @@ setting aborted, application exit notifications de Einstellungen abgebrochen, An
settings notifications de Einstellungen
signature admin de Signatur
signature added to every change notification admin de Signatur zu allen Änderungen hinzugefügt
sms backend admin de SMS Schnittstelle
sms only notifications de nur SMS
sorry, your login has expired notifications de Entschuldigung, Ihre Benutzerkennung ist abgelaufen
step notifications de Schritt
subject dn: notifications de Serveradresse
@ -92,7 +87,6 @@ warning notifications de Warnung
windows-popup and e-mail notifications de Windows-Popup und E-Mail
windows-popup backend admin de Windows-Popup Schnittstelle
windows-popup first, if that fails notify me by e-mail notifications de Zuerst Windows-Popup. Wenn dies fehl schlägt, benachrichtige mich per E-Mail.
windows-popup first, if that fails notify me by sms notifications de Zuerst Windows-Popup. Wenn dies fehl schlägt, benachrichtige mich per SMS.
windows-popup only notifications de nur Windows-Popup
you can also use admin de Sie können ebenso folgendes verwenden:
you have been successfully logged out notifications de Sie wurde erfolgreich abgemeldet

View File

@ -28,12 +28,10 @@ egroupware-popup and e-mail notifications en EGroupware popup and email
egroupware-popup and windows-popup notifications en EGroupware popup and Windows popup
egroupware-popup backend admin en EGroupware popup back end
egroupware-popup first, if that fails notify me by e-mail notifications en EGroupware popup first, if that fails notify me by email
egroupware-popup first, if that fails notify me by sms notifications en EGroupware popup first, if that fails notify me by SMS
egroupware-popup only notifications en EGroupware popup only
egroupware-popup verbosity notifications en EGroupware popup verbosity
emailadmin profile only (do not use user defined (active) mail profiles for notification) admin en EmailAdmin profile only. Do NOT use user defined active mail profiles for notification.
enable egroupware-popup backend admin en Enable EGroupware popup back end
enable sms backend admin en Enable SMS backend
enable windows-popup backend admin en Enable Windows popup back end
enabled chains notifications en Enabled chains
error browser can`t start. notifications en Error Browser can`t start.
@ -52,7 +50,6 @@ linked entries: common en Linked entries:
login aborted, application exit? notifications en Login aborted, application exit?
login in egroupware: notifications en login in EGroupware:
mail backend admin en Mail backend
maximum sms messages per notification admin en Maximum SMS messages per notification
message from notifications en Message from
minutes notifications en Minutes
notification common en Notification
@ -79,8 +76,6 @@ setting aborted, application exit notifications en Setting aborted, application
settings notifications en Settings
signature admin en Signature
signature added to every change notification admin en Signature added to every change notification
sms backend admin en SMS back end
sms only notifications en SMS only
sorry, your login has expired notifications en Sorry, your login has expired
step notifications en Step
subject dn: notifications en Subject DN:
@ -92,7 +87,6 @@ warning notifications en Warning
windows-popup and e-mail notifications en Windows popup and email
windows-popup backend admin en Windows popup back end
windows-popup first, if that fails notify me by e-mail notifications en Windows popup first, if that fails notify me by email
windows-popup first, if that fails notify me by sms notifications en Windows popup first, if that fails notify me by SMS
windows-popup only notifications en Windows popup only
you can also use admin en You can also use
you have been successfully logged out notifications en You have been successfully logged out

View File

@ -11,12 +11,10 @@ egroupware-popup and e-mail notifications es-es Ventana emergente de eGroupWare
egroupware-popup and windows-popup notifications es-es Ventanas emergentes de eGroupWare y Windows
egroupware-popup backend admin es-es Método ventana emergente de eGroupWare
egroupware-popup first, if that fails notify me by e-mail notifications es-es Primero, ventana emergente de eGroupWare, y si falla, notificarme por correo electrónico
egroupware-popup first, if that fails notify me by sms notifications es-es Primero, ventana emergente de eGroupWare, y si falla, notificarme por SMS
egroupware-popup only notifications es-es Sólo ventana emergente de eGroupWare
egroupware-popup verbosity notifications es-es Verbosidad de la ventana emergente de eGroupWare
emailadmin profile only (do not use user defined (active) mail profiles for notification) admin es-es Sólo el perfil de emailadmin (no usar perfiles activos definidos para el usuario para la notificación)
enable egroupware-popup backend admin es-es Activar el método de ventanas emergentes de eGroupWare
enable sms backend admin es-es Activar el método SMS
enable windows-popup backend admin es-es Activar el método ventanas emergentes de Windows
enabled chains notifications es-es Cadenas activadas
folder notifications es-es Carpeta
@ -25,7 +23,6 @@ how verbose should the egroupware-popup behave if a notification is sent to the
if set, embedded links get rendered special for external clients notifications es-es Si está activado, los enlaces embebidos se visualizan de una forma especial para los clientes externos
linked entries: common es-es Entradas vinculadas:
mail backend admin es-es Gestor de correo
maximum sms messages per notification admin es-es Número máximo de mensajes SMS por notificación
message from notifications es-es Mensaje desde
minutes notifications es-es minutos
notification common es-es Notificaciones
@ -37,15 +34,12 @@ preferences for notification notifications es-es Preferencias para la notificaci
received notifications es-es Recibido
settings notifications es-es Configuración
signature admin es-es Firma
sms backend admin es-es Método SMS
sms only notifications es-es Sólo SMS
step notifications es-es Paso
this egroupware notification has been sent to you by mail because your chosen notification-chain has been disabled by the administrator. please choose another notification-chain in your preferences! notifications es-es Esta notificación de eGroupWare le ha sido enviada por correo electrónico porque su cadena de notificaciones elegida ha sido desactivada por el administrador. ¡Por favor, elija otra cadena de notificación en sus preferencias!
warning notifications es-es Aviso
windows-popup and e-mail notifications es-es Ventana emergente de Windows y correo electrónico
windows-popup backend admin es-es Método ventana emergente de Windows
windows-popup first, if that fails notify me by e-mail notifications es-es Primero, ventana emergente de Windows, y si falla, notificarme por correo electrónico.
windows-popup first, if that fails notify me by sms notifications es-es Primero, ventana emergente de Windows, y si falla, notificarme por SMS.
windows-popup only notifications es-es Sólo ventana emergente de Windows
you've got new mail notifications es-es Tiene correo nuevo
your session could not be verified. notifications es-es Su sesión no pudo ser verificada.

View File

@ -23,12 +23,10 @@ egroupware-popup and e-mail notifications fi EGroupware-Popup ja sähköposti
egroupware-popup and windows-popup notifications fi EGroupware-Popup ja Windows Popup
egroupware-popup backend admin fi EGroupware-Popup backend
egroupware-popup first, if that fails notify me by e-mail notifications fi Ensin EGroupware-Popup, sen epäonnistuessa sähköposti
egroupware-popup first, if that fails notify me by sms notifications fi Ensin EGroupware-Popup, sen epäonnistuessa tekstiviesti
egroupware-popup only notifications fi Vain EGroupware-Popup
egroupware-popup verbosity notifications fi EGroupware-Popupin voimakkuus
emailadmin profile only (do not use user defined (active) mail profiles for notification) admin fi Ainoastaan sähköpostinhallinnan profiiliin mukaan
enable egroupware-popup backend admin fi Ota EGroupware-Popup backend käyttöön
enable sms backend admin fi Ota teksiviesti backend käyttöön
enable windows-popup backend admin fi Ota Windows-Popup backend käyttöön
enabled chains notifications fi Sallitut ketjut
folder notifications fi Kansio
@ -37,7 +35,6 @@ how verbose should the egroupware-popup behave if a notification is sent to the
java desktop notification app preferences fi Java -huomautusikkuna sovellus työpöydälle
linked entries: common fi Linkitetyt tietueet:
mail backend admin fi Sähköpostin backendit
maximum sms messages per notification admin fi Maksimi tekstiviestien määrä per huomautus
message from notifications fi Viesti henkilöltä:
minutes notifications fi Minuuttia
notification common fi Huomautusviesti
@ -56,8 +53,6 @@ save password notifications fi Tallenna salasana
setting notifications fi Asetukset
settings notifications fi Asetukset
signature admin fi Allekirjoitus
sms backend admin fi Tekstiviesti backend
sms only notifications fi Vain tekstiviesti
sorry, your login has expired notifications fi Käyttäjätili ei ole enää voimassa
step notifications fi Vaihe
this egroupware notification has been sent to you by mail because your chosen notification-chain has been disabled by the administrator. please choose another notification-chain in your preferences! notifications fi Tämä huomautusviesti on lähetetty sähköpostilla, koska ylläpitäjät eivät salli valitsemaasi huomautusviestiketjua. Valitse asetuksissa toinen huomautusviestiketju!
@ -66,7 +61,6 @@ warning notifications fi Varoitus
windows-popup and e-mail notifications fi Windows-Popup ja sähköposti
windows-popup backend admin fi Windows-Popup backend
windows-popup first, if that fails notify me by e-mail notifications fi Ensin Windows-Popup, sen epäonnistuessa sähköposti
windows-popup first, if that fails notify me by sms notifications fi Ensin Windows-Popup, sen epäonnistuessa tekstiviesti
windows-popup only notifications fi Vain Windows-popup
you have been successfully logged out notifications fi Olet kirjautunut ulos!
you've got new mail notifications fi Sinulle on uusi sähköposti

View File

@ -26,7 +26,6 @@ egroupware-popup only notifications fr Popup eGroupware seulement
egroupware-popup verbosity notifications fr Verbosité des Popup eGroupware
emailadmin profile only (do not use user defined (active) mail profiles for notification) admin fr Profil eMailAdmin seulement. Ne pas utiliser les profils mail des utilisateurs pour les notifications.
enable egroupware-popup backend admin fr Activer le backend des popup eGroupware
enable sms backend admin fr Activer le backend SMS
enable windows-popup backend admin fr Activer le backend de popup Windows
error browser can`t start. notifications fr Erreur : le navigateur ne se lance pas
error on loading tray icon notifications fr Erreur au chargement de la barre d'icône
@ -63,8 +62,6 @@ setting aborted, application exit notifications fr Paramètre annulé, l'applica
settings notifications fr Paramètres
signature admin fr Signature
signature added to every change notification admin fr Signature ajoutée à chaque notification de changement
sms backend admin fr Backend SMS
sms only notifications fr SMS seulement
sorry, your login has expired notifications fr Désolé, votre login a expiré
step notifications fr Etape
subject dn: notifications fr Sujet DN :
@ -75,7 +72,6 @@ warning notifications fr Attention
windows-popup and e-mail notifications fr Popup et email Windows
windows-popup backend admin fr Backend popup Windows
windows-popup first, if that fails notify me by e-mail notifications fr Popup windows en premier, en cas d'échec, me notifier par email
windows-popup first, if that fails notify me by sms notifications fr Popup windows en premier, en cas d'échec, me notifier par SMS
windows-popup only notifications fr Popup windows seulement
you can also use admin fr Vous pouvez aussi utiliser
you have been successfully logged out notifications fr Vous avez été déconnecté avec succès

View File

@ -16,8 +16,6 @@ preferences for notification notifications id kesukaan untuk notifikasi
received notifications id received
settings notifications id Seting
signature admin id Tandatangan
sms backend admin id SMS backend
sms only notifications id Hanya SMS
step notifications id Langkah
warning notifications id Peringatan
windows-popup backend admin id Windows-Popup backend

View File

@ -5,14 +5,12 @@ egroupware has notifications for you notifications nl eGroupWare heeft meldingen
egroupware-popup backend admin nl eGroupWare popup backend
egroupware-popup verbosity notifications nl eGroupWare popup zichtbaarheid
enable egroupware-popup backend admin nl eGroupWare popup backend inschakelen
enable sms backend admin nl SMS backend inschakelen
enable windows-popup backend admin nl Windows popup backend inschakelen
enabled chains notifications nl Ingeschakelde lijsten
folder notifications nl folder
from notifications nl Van
if set, embedded links get rendered special for external clients notifications nl Indien ingesteld, embedded links worden op een speciale manier samengesteld voor externe clients
linked entries: common nl Gekoppelde items:
maximum sms messages per notification admin nl Maximaal aantal SMS berichten per melding
message from notifications nl Bericht van
minutes notifications nl minuten
notification common nl Melding
@ -22,7 +20,6 @@ permission notifications nl toestemming
preferences for notification notifications nl Voorkeuren voor meldingen
settings notifications nl Instellingen
signature admin nl Ondertekening
sms backend admin nl SMS backend
step notifications nl Stap
warning notifications nl Waarschuwing
windows-popup backend admin nl Windows-Popup backend

View File

@ -11,12 +11,10 @@ egroupware-popup and e-mail notifications pl Popup eGroupware i e-mail
egroupware-popup and windows-popup notifications pl Popop eGroupware i windows
egroupware-popup backend admin pl backend eGroupware-popup
egroupware-popup first, if that fails notify me by e-mail notifications pl Najpierw popup eGroupware, jeśli to zawiedzie powiadom przez email
egroupware-popup first, if that fails notify me by sms notifications pl Najpierw popup eGroupware, jeśli to zawiedzie powiadom przez SMS
egroupware-popup only notifications pl Popup eGroupware
egroupware-popup verbosity notifications pl ilość informacji w eGroupware-popup
emailadmin profile only (do not use user defined (active) mail profiles for notification) admin pl Tylko profil Administratora Poczty (nie używaj profilów użytkowników do powiadomień)
enable egroupware-popup backend admin pl Włącz backend eGroupware-popup
enable sms backend admin pl Włącz backend SMS
enable windows-popup backend admin pl Włącz backend Windows-popup
enabled chains notifications pl Włączone łańcuchy
folder notifications pl Katalog
@ -25,7 +23,6 @@ how verbose should the egroupware-popup behave if a notification is sent to the
if set, embedded links get rendered special for external clients notifications pl Jeśli opcja zostanie skonfigurowana, załączone linki będą renderowane specjalnie dla klientów zewnętrznych
linked entries: common pl Powiązane wpisy:
mail backend admin pl Backend Pocztowy
maximum sms messages per notification admin pl Maksymalna ilość wiadomości SMS użytych na powiadomienie?
message from notifications pl Wiadomość od
minutes notifications pl minuty
notification common pl Powiadomienie
@ -36,15 +33,12 @@ preferences for notification notifications pl Preferencje dla powiadomienia
received notifications pl odebrano
settings notifications pl Ustawienia
signature admin pl Sygnaturka
sms backend admin pl Backend SMS
sms only notifications pl Tylko SMS
step notifications pl Krok
this egroupware notification has been sent to you by mail because your chosen notification-chain has been disabled by the administrator. please choose another notification-chain in your preferences! notifications pl To powiadomienie zostało wysłane do ciebie przez email ponieważ twój wybrany łańcuch powiadomień został zablokowany przez administratora. Proszę wybrać inny łańcuch w opcjach.
warning notifications pl Ostrzeżenie
windows-popup and e-mail notifications pl Popup windows i email
windows-popup backend admin pl Backend Windows-popup
windows-popup first, if that fails notify me by e-mail notifications pl Najpierw popup Windows, jeśli to zawiedzie powiadom przez email
windows-popup first, if that fails notify me by sms notifications pl Najpierw popup Windows, jeśli to zawiedzie powiadom przez SMS
windows-popup only notifications pl Popup Windows
you've got new mail notifications pl Masz nową pocztę
your session could not be verified. notifications pl Nie można zweryfikować sesji.

View File

@ -5,14 +5,12 @@ egroupware has notifications for you notifications pt-br O eGroupWare possui not
egroupware-popup backend admin pt-br Método eGroupWare-Popup
egroupware-popup verbosity notifications pt-br Nível de detalhe do eGroupWare-Popup
enable egroupware-popup backend admin pt-br Habilitar método eGroupWare-Popup
enable sms backend admin pt-br Habilitar método SMS
enable windows-popup backend admin pt-br Habilitar método Windows-Popup
enabled chains notifications pt-br Séries habilitadas
folder notifications pt-br pasta
from notifications pt-br De
if set, embedded links get rendered special for external clients notifications pt-br Se definido, links embutidos serão exibidos de forma especial para clientes externos
linked entries: common pt-br Registros linkados:
maximum sms messages per notification admin pt-br Máximo de mensagens SMS por notificação
message from notifications pt-br Mensagem de
minutes notifications pt-br minutos
notification common pt-br Notificação
@ -22,7 +20,6 @@ permission notifications pt-br Permissões
preferences for notification notifications pt-br Preferências para notificação
settings notifications pt-br Configurações
signature admin pt-br Assinatura
sms backend admin pt-br Método SMS
step notifications pt-br Etapa
warning notifications pt-br Atenção
windows-popup backend admin pt-br Método Windows-Popup

View File

@ -28,12 +28,10 @@ egroupware-popup and e-mail notifications ru Всплывающие уведом
egroupware-popup and windows-popup notifications ru Всплывающие уведомления EGroupware и Windows
egroupware-popup backend admin ru Обработчик всплавающих окон eGroupware
egroupware-popup first, if that fails notify me by e-mail notifications ru Сначала всплывающие уведомления EGroupware, если это невозможно, уведомляйте по почте
egroupware-popup first, if that fails notify me by sms notifications ru Сначала всплывающие уведомления EGroupware, если это невозможно, уведомляйте через SMS
egroupware-popup only notifications ru Только всплывающие уведомления EGroupware
egroupware-popup verbosity notifications ru Многословие всплавающих окон eGroupware
emailadmin profile only (do not use user defined (active) mail profiles for notification) admin ru Только профиль администратора почты. НЕ использовать для уведомлений определенный пользователем активный профиль почты.
enable egroupware-popup backend admin ru Включить
enable sms backend admin ru Включить обработчик СМС
enable windows-popup backend admin ru Включить обработчик всплывающих окон
enabled chains notifications ru Включить цепочки
error browser can`t start. notifications ru Ошибка: браузер не может стартовать
@ -52,7 +50,6 @@ linked entries: common ru Связанные записи:
login aborted, application exit? notifications ru Авторизация прервана. Выйти из приложения?
login in egroupware: notifications ru Авторизация в EGroupware
mail backend admin ru Письмо обработано
maximum sms messages per notification admin ru Максимальное количество СМСок на сообщение
message from notifications ru Сообщение от
minutes notifications ru Минуты
notification common ru Извещения
@ -77,8 +74,6 @@ setting notifications ru Установки
setting aborted, application exit notifications ru Задание установок прервано. Выйти из приложения?
settings notifications ru Настройки
signature admin ru Подпись
sms backend admin ru Обработка СМС
sms only notifications ru Только СМС
step notifications ru Шаг
subject dn: notifications ru Идентификатор стороны назначения
the server certificate is not a valid trust center certificate! notifications ru Сертификат сервера не имеет подтверждения центра сертификации!
@ -89,7 +84,6 @@ warning notifications ru Предупреждение
windows-popup and e-mail notifications ru Всплывающие уведомления Windows и почтой
windows-popup backend admin ru Всплывающее уведомление Windows обработано
windows-popup first, if that fails notify me by e-mail notifications ru Сначала всплывающие уведомления Windows, если невозможно, уведомляйте по почте
windows-popup first, if that fails notify me by sms notifications ru Сначала всплывающие уведомления Windows, если невозможно, уведомляйте посредством СМС
windows-popup only notifications ru Только всплывающие уведомления Windows
you've got new mail notifications ru Вы получили новое письмо
your session could not be verified. notifications ru Сессия не может быть проверена

View File

@ -11,12 +11,10 @@ egroupware-popup and e-mail notifications sk Vyskakovacie okno EGroupware a E-ma
egroupware-popup and windows-popup notifications sk Vyskakovacie okno EGroupware a Windows
egroupware-popup backend admin sk Vyskakovací mechanizmus EGroupware
egroupware-popup first, if that fails notify me by e-mail notifications sk Najprv vyskakovacie okno EGroupware, ak sa nepodarí, použiť E-mail
egroupware-popup first, if that fails notify me by sms notifications sk Najprv vyskakovacie okno EGroupware, ak sa nepodarí, použiť SMS
egroupware-popup only notifications sk Iba vyskakovacie okno EGroupware
egroupware-popup verbosity notifications sk Podrobnosť vyskakovacieho mechanizmu
emailadmin profile only (do not use user defined (active) mail profiles for notification) admin sk Iba profil správcu pošty (Nepoužívať používateľom definované (aktívne) poštové profily pre Upozornenia)
enable egroupware-popup backend admin sk Povoliť vyskakovací mechanizmus EGroupware
enable sms backend admin sk Povoliť SMS mechanizmus
enable windows-popup backend admin sk Povoliť Windows vyskakovací mechanizmus
enabled chains notifications sk Povolené reťazce
folder notifications sk Priečinok
@ -25,7 +23,6 @@ how verbose should the egroupware-popup behave if a notification is sent to the
if set, embedded links get rendered special for external clients notifications sk Ak je nastavené, pripojené odkazy sa vykreslia špeciálne pre vonkajších klientov
linked entries: common sk Pripojené záznamy:
mail backend admin sk Poštová infraštruktúra
maximum sms messages per notification admin sk Maximálny počet SMS pre jednu pripomienku
message from notifications sk Správa od
minutes notifications sk minút
notification common sk Pripomienka
@ -37,15 +34,12 @@ preferences for notification notifications sk Predvoľby pre Pripomienky
received notifications sk Doručené
settings notifications sk Nastavenia
signature admin sk Podpis
sms backend admin sk Mechanizmus SMS
sms only notifications sk Iba SMS
step notifications sk Krok
this egroupware notification has been sent to you by mail because your chosen notification-chain has been disabled by the administrator. please choose another notification-chain in your preferences! notifications sk Táto pripomienka EGroupware vám bola odoslané E-mailom, pretože vaša nastavená upozorňovacia postupnosť bola zablokovaná správcom. Prosím, vyberte si inú postupnosť vo svojich predvoľbách!
warning notifications sk Pozor
windows-popup and e-mail notifications sk Vyskakovacie okno Windows a E-mail
windows-popup backend admin sk Windows vyskakovací mechanizmus
windows-popup first, if that fails notify me by e-mail notifications sk Najprv vyskakovacie okno Windows, ak sa nepodarí, použiť E-mail
windows-popup first, if that fails notify me by sms notifications sk Najprv vyskakovacie okno Windows, ak sa nepodarí, použiť SMS
windows-popup only notifications sk Iba vyskakovacie okno Windows
you've got new mail notifications sk Máte novú správu
your session could not be verified. notifications sk Vašu reláciu sa nepodarilo overiť.

View File

@ -47,28 +47,6 @@
</select>
</td>
</tr>
<tr class="th">
<td colspan="2">&nbsp;<b>{lang_SMS_backend}</b></td>
</tr>
<tr class="row_on">
<td>{lang_Enable_SMS_backend}</td>
<td>
<select name="newsettings[sms_enable]">
<option value=""{selected_sms_enable_False}>{lang_No}</option>
<option value="True"{selected_sms_enable_True}>{lang_Yes}</option>
</select>
</td>
</tr>
<tr class="row_off">
<td>{lang_Maximum_SMS_messages_per_notification}</td>
<td>
<select name="newsettings[sms_maxmessages]">
<option value="1"{selected_sms_maxmessages_1}>1</option>
<option value="2"{selected_sms_maxmessages_2}>2</option>
<option value="3"{selected_sms_maxmessages_3}>3</option>
</select>
</td>
</tr>
<tr class="th">
<td colspan="2">{lang_Signature}</td>
</tr>