primo commit
This commit is contained in:
67
plugins/jem/comments/comments.php
Normal file
67
plugins/jem/comments/comments.php
Normal file
@ -0,0 +1,67 @@
|
||||
<?php
|
||||
/**
|
||||
* @package JEM
|
||||
* @subpackage JEM Comments Plugin
|
||||
* @copyright (C) 2013-2024 joomlaeventmanager.net
|
||||
* @copyright (C) 2005-2009 Christoph Lukes
|
||||
* @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Plugin\CMSPlugin;
|
||||
|
||||
include_once(JPATH_SITE . '/components/com_jem/helpers/route.php');
|
||||
|
||||
class plgJEMComments extends CMSPlugin
|
||||
{
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param object $subject The object to observe
|
||||
* @param array $config An array that holds the plugin configuration
|
||||
*
|
||||
*/
|
||||
public function __construct(&$subject, $config)
|
||||
{
|
||||
parent::__construct($subject, $config);
|
||||
$this->loadLanguage();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* This method handles the supported comment systems
|
||||
*
|
||||
* @access public
|
||||
*
|
||||
* @param int $event_id Integer Event identifier
|
||||
* @param int $event_title String Event title
|
||||
*
|
||||
* @return boolean
|
||||
*
|
||||
*/
|
||||
public function onEventEnd($event_id, $event_title = '')
|
||||
{
|
||||
//simple, skip if processing not needed
|
||||
if (!$this->params->get('commentsystem', '0')) {
|
||||
return '';
|
||||
}
|
||||
|
||||
$res = '';
|
||||
|
||||
//jcomments integration
|
||||
if ($this->params->get('commentsystem') == 2) {
|
||||
if (file_exists(JPATH_SITE . '/components/com_jcomments/jcomments.php')) {
|
||||
require_once(JPATH_SITE . '/components/com_jcomments/jcomments.php');
|
||||
$res .= '<div class="jcomments">';
|
||||
$res .= JComments::show($event_id, 'com_jem', $event_title);
|
||||
$res .= '</div>';
|
||||
}
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
36
plugins/jem/comments/comments.xml
Normal file
36
plugins/jem/comments/comments.xml
Normal file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<extension version="2.5" type="plugin" group="jem" method="upgrade">
|
||||
<name>plg_jem_comments</name>
|
||||
<creationDate>October 2024</creationDate>
|
||||
<author>JEM Community</author>
|
||||
<authorEmail>info@joomlaeventmanager.net</authorEmail>
|
||||
<authorUrl>https://www.joomlaeventmanager.net</authorUrl>
|
||||
<copyright>copyright (C) 2013-2024 joomlaeventmanager.net</copyright>
|
||||
<license>https://www.gnu.org/licenses/gpl-3.0 GNU/GPL</license>
|
||||
<version>4.3.1</version>
|
||||
<description>PLG_JEM_COMMENTS_XML_DESCRIPTION</description>
|
||||
|
||||
<files>
|
||||
<filename plugin="comments">comments.php</filename>
|
||||
<filename>index.html</filename>
|
||||
<folder>language</folder>
|
||||
</files>
|
||||
<languages>
|
||||
<language tag="en-GB">language/en-GB/plg_jem_comments.ini</language>
|
||||
<language tag="en-GB">language/en-GB/plg_jem_comments.sys.ini</language>
|
||||
</languages>
|
||||
<config>
|
||||
<fields name="params">
|
||||
<fieldset name="basic">
|
||||
<field type="list" name="commentsystem"
|
||||
label="PLG_JEM_COMMENTS_COMMENTSYSTEM"
|
||||
default="0"
|
||||
description="PLG_JEM_COMMENTS_COMMENTSYSTEM_DESC"
|
||||
>
|
||||
<option value="0">PLG_JEM_COMMENTS_NONE</option>
|
||||
<option value="2">PLG_JEM_COMMENTS_JCOMMENTS</option>
|
||||
</field>
|
||||
</fieldset>
|
||||
</fields>
|
||||
</config>
|
||||
</extension>
|
||||
1
plugins/jem/comments/index.html
Normal file
1
plugins/jem/comments/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
1
plugins/jem/comments/language/en-GB/index.html
Normal file
1
plugins/jem/comments/language/en-GB/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
16
plugins/jem/comments/language/en-GB/plg_jem_comments.ini
Normal file
16
plugins/jem/comments/language/en-GB/plg_jem_comments.ini
Normal file
@ -0,0 +1,16 @@
|
||||
; @package JEM
|
||||
; @subpackage JEM Comments Plugin
|
||||
; @copyright (C) 2013-2024 joomlaeventmanager.net
|
||||
; @copyright (C) 2005-2009 Christoph Lukes
|
||||
; @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
|
||||
;
|
||||
; All translations can be found at https://app.transifex.com/jemproject/
|
||||
; Please join the translation team if you want to contribute your changes to the translations
|
||||
;
|
||||
; Note: All ini files need to be saved as UTF-8, no BOM
|
||||
|
||||
; PLG_JEM_COMMENTS_PLUGIN_DESC="Enable commenting on events with the help of JComments"
|
||||
PLG_JEM_COMMENTS_COMMENTSYSTEM = "Select used Commentsystem"
|
||||
PLG_JEM_COMMENTS_COMMENTSYSTEM_DESC = "Select the comment component you have installed."
|
||||
PLG_JEM_COMMENTS_NONE = "None"
|
||||
PLG_JEM_COMMENTS_JCOMMENTS = "JComments"
|
||||
13
plugins/jem/comments/language/en-GB/plg_jem_comments.sys.ini
Normal file
13
plugins/jem/comments/language/en-GB/plg_jem_comments.sys.ini
Normal file
@ -0,0 +1,13 @@
|
||||
; @package JEM
|
||||
; @subpackage JEM Comments Plugin
|
||||
; @copyright (C) 2013-2024 joomlaeventmanager.net
|
||||
; @copyright (C) 2005-2009 Christoph Lukes
|
||||
; @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
|
||||
;
|
||||
; All translations can be found at https://app.transifex.com/jemproject/
|
||||
; Please join the translation team if you want to contribute your changes to the translations
|
||||
;
|
||||
; Note: All ini files need to be saved as UTF-8, no BOM
|
||||
|
||||
PLG_JEM_COMMENTS = "JEM - Comments Plugin"
|
||||
PLG_JEM_COMMENTS_XML_DESCRIPTION = "JEM Comments Plugin. This plugin is to integrate various Joomla comments systems with JEM"
|
||||
1
plugins/jem/comments/language/index.html
Normal file
1
plugins/jem/comments/language/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
@ -0,0 +1,17 @@
|
||||
; @version 2.0.0
|
||||
; @package JEM
|
||||
; @subpackage JEM Comments Plugin
|
||||
; @copyright (C) 2005-2009 Christoph Lukes
|
||||
; @copyright (C) 2013-2014 joomlaeventmanager.net
|
||||
; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
|
||||
;
|
||||
; All translations can be found at https://www.transifex.com/projects/p/JEM/
|
||||
; Please join the translation team if you want to contribute your changes to the translations
|
||||
;
|
||||
; Note : All ini files need to be saved as UTF-8 - No BOM
|
||||
|
||||
PLG_JEM_COMMENTS_PLUGIN_DESC="Abilita i commenti agli eventi sfruttando il componente JComments"
|
||||
PLG_JEM_COMMENTS_COMMENTSYSTEM="Seleziona il sistema commenti da utilizzare"
|
||||
PLG_JEM_COMMENTS_COMMENTSYSTEM_DESC="Seleziona il sistema commenti da utilizzare che si ha installato."
|
||||
PLG_JEM_COMMENTS_NONE="Nessuno"
|
||||
PLG_JEM_COMMENTS_JCOMMENTS="JComments"
|
||||
@ -0,0 +1,14 @@
|
||||
; @version 2.0.0
|
||||
; @package JEM
|
||||
; @subpackage JEM Comments Plugin
|
||||
; @copyright (C) 2005-2009 Christoph Lukes
|
||||
; @copyright (C) 2013-2014 joomlaeventmanager.net
|
||||
; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
|
||||
;
|
||||
; All translations can be found at https://www.transifex.com/projects/p/JEM/
|
||||
; Please join the translation team if you want to contribute your changes to the translations
|
||||
;
|
||||
; Note : All ini files need to be saved as UTF-8 - No BOM
|
||||
|
||||
PLG_JEM_COMMENTS="JEM - Plugin commenti"
|
||||
PLG_JEM_COMMENTS_XML_DESCRIPTION="JEM Plugin commenti. Questo plugin integra i vari sistemi di commenti di Joomla! con JEM"
|
||||
1
plugins/jem/mailer/index.html
Normal file
1
plugins/jem/mailer/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
1
plugins/jem/mailer/language/en-GB/index.html
Normal file
1
plugins/jem/mailer/language/en-GB/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
221
plugins/jem/mailer/language/en-GB/plg_jem_mailer.ini
Normal file
221
plugins/jem/mailer/language/en-GB/plg_jem_mailer.ini
Normal file
@ -0,0 +1,221 @@
|
||||
; @package JEM
|
||||
; @subpackage JEM Mailer Plugin
|
||||
; @copyright (C) 2013-2024 joomlaeventmanager.net
|
||||
; @copyright (C) 2005-2009 Christoph Lukes
|
||||
; @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
|
||||
;
|
||||
; All translations can be found at https://app.transifex.com/jemproject/
|
||||
; Please join the translation team if you want to contribute your changes to the translations
|
||||
;
|
||||
; Note: All ini files need to be saved as UTF-8, no BOM
|
||||
|
||||
; PLG_JEM_MAILER_PLUGIN_DESC="Send an email to the user and/or admins if someone registers or unregisters from an event."
|
||||
|
||||
; Plugin options
|
||||
|
||||
PLG_JEM_MAILER_ALL_ADMINS="System Mail receivers"
|
||||
PLG_JEM_MAILER_USER_NOTIFICATIONS="Registration notifications"
|
||||
PLG_JEM_MAILER_USER_REG_DESC="Decide whether or not the user should receive a confirmation email of their registration."
|
||||
PLG_JEM_MAILER_ADMIN_REG_DESC="Decide whether or not site administrators should receive a confirmation email when a user registers for an event. You need to enter the email addresses you want to receive the confirmation messages here in the 'Distribution list' field below."
|
||||
PLG_JEM_MAILER_SETTINGS_USER_REG_ONOFF_DESC="Decide whether or not the user should receive a email when he is taken on/off an event waiting list."
|
||||
PLG_JEM_MAILER_SETTINGS_ADMIN_REG_ONOFF_DESC="Decide whether or not site administrators should receive a confirmation email when a user is taken on or off an event waiting list. You need to enter the email addresses you want to receive the confirmation messages here in the 'Distribution list' field below."
|
||||
PLG_JEM_MAILER_USER_UNREG_DESC="Decide whether or not the user should receive a confirmation email after deregistering from an event."
|
||||
PLG_JEM_MAILER_ADMIN_UNREG_DESC="Decide whether or not site administrators should receive a confirmation email when a user deregisters from an event. You need to enter the email addresses you want to receive the confirmation messages here in the 'Distribution list' field below. "
|
||||
PLG_JEM_MAILER_REGISTRATION="<b>Registration email</b>"
|
||||
PLG_JEM_MAILER_WAITINGLIST="<b>Waitinglist on/off email</b>"
|
||||
PLG_JEM_MAILER_UNREGISTRATION="<b>Unregistration email</b>"
|
||||
PLG_JEM_MAILER_EVENT_NOTIFICATIONS="Event notifications"
|
||||
PLG_JEM_MAILER_NEW_EVENT_TITLE="<b>Email on new event</b>"
|
||||
PLG_JEM_MAILER_EDIT_EVENT_TITLE="<b>Email on update event</b>"
|
||||
PLG_JEM_MAILER_USER_NEW_EVENT_DESC="Decide whether or not the user should receive a confirmation email of their event submission."
|
||||
PLG_JEM_MAILER_ADMIN_NEW_EVENT="Email administrators on new event submission"
|
||||
PLG_JEM_MAILER_ADMIN_NEW_EVENT_DESC="Email administrators on new event submission"
|
||||
PLG_JEM_MAILER_USER_EDIT_EVENT_DESC="Decide whether or not the user should receive a confirmation email of their edit event action."
|
||||
PLG_JEM_MAILER_ADMIN_EDIT_EVENT_DESC="Decide whether or not the administrators should receive a confirmation email of the edit event action."
|
||||
PLG_JEM_MAILER_REGISTERED_EDIT_EVENT="Registered"
|
||||
PLG_JEM_MAILER_REGISTERED_EDIT_EVENT_DESC="Decide whether or not users registered and on waiting list of an event should recieve an email on an edit of that event."
|
||||
PLG_JEM_MAILER_REGISTERED_EDIT_VENUE="Registered"
|
||||
PLG_JEM_MAILER_REGISTERED_EDIT_VENUE_DESC="Decide whether or not users registered and on waiting list of an event should recieve an email on an edit of the venue attached to the event."
|
||||
|
||||
PLG_JEM_MAILER_CREATOR_LABEL="Creator"
|
||||
PLG_JEM_MAILER_NOTIFY_CREATOR_DESC="Enable the send of emails to the creator when a different user modified the item."
|
||||
PLG_JEM_MAILER_REGISTRATION_CREATOR_DESC="Enable the send of emails to the creator when attendees change."
|
||||
PLG_JEM_MAILER_VENUE_EV_CREATOR_LABEL="Event Creator"
|
||||
PLG_JEM_MAILER_VENUE_EV_CREATOR_DESC="Enable the send of emails to the creator of events when attached venue changes."
|
||||
|
||||
PLG_JEM_MAILER_CATEGORY_LABEL="Category"
|
||||
PLG_JEM_MAILER_NOTIFY_CATEGORY_DESC="Enable the send of emails to the addresses designated in the category 'email' field when events are created or edited."
|
||||
PLG_JEM_MAILER_EDIT_VENUE_CATEGORY_DESC="Enable the send of emails to the addresses designated in the category 'email' field when a venue has edited which is attached to an event in this category."
|
||||
PLG_JEM_MAILER_REGISTRATION_CATEGORY_DESC="Enable the send of emails to the addresses designated in the category 'email' field when attendees change."
|
||||
|
||||
PLG_JEM_MAILER_CATEGORY_ACL_LABEL="Category ACL"
|
||||
PLG_JEM_MAILER_NOTIFY_CATEGORY_ACLDESC="Enable the send of emails to the addresses designated in the category ACL 'email' field when events are created or edited."
|
||||
PLG_JEM_MAILER_EDIT_VENUE_CATEGORY_ACL_DESC="Enable the send of emails to the addresses designated in the category ACL 'email' field when a venue has edited which is attached to an event in this category."
|
||||
PLG_JEM_MAILER_REGISTRATION_CATEGORY_ACL_DESC="Enable the send of emails to the addresses designated in the category ACL 'email' field when attendees change."
|
||||
|
||||
PLG_JEM_MAILER_GROUP_LABEL="Group"
|
||||
PLG_JEM_MAILER_NEW_EVENT_GROUP="Decide whether users group of the category of the event receive emails when creating a new event in this category."
|
||||
PLG_JEM_MAILER_EDIT_EVENT_GROUP="Decide whether users group of the category of the event receive emails when an event has changed in this category."
|
||||
PLG_JEM_MAILER_EDIT_VENUE_GROUP="Decide whether users group of the category of all event on a location receive emails when the venue has changed."
|
||||
PLG_JEM_MAILER_REGISTRATION_GROUP_DESC="Decide whether users group of the category of the event receive emails when attendees change."
|
||||
|
||||
PLG_JEM_MAILER_VENUE_NOTIFICATIONS="Venue Notifications"
|
||||
PLG_JEM_MAILER_NEW_VENUE_TITLE="<b>Email on new venue</b>"
|
||||
PLG_JEM_MAILER_EDIT_VENUE_TITLE="<b>Email on update venue</b>"
|
||||
PLG_JEM_MAILER_USER_NEW_VENUE_DESC="Decide whether or not the user should receive a confirmation email of their venue submission."
|
||||
PLG_JEM_MAILER_ADMIN_NEW_VENUE_DESC="Decide whether or not the administrators should receive a confirmation email of a new venue submission."
|
||||
PLG_JEM_MAILER_USER_EDIT_VENUE_DESC="Decide whether or not the user should receive a confirmation email of their edit venue action."
|
||||
PLG_JEM_MAILER_ADMIN_EDIT_VENUE_DESC="Decide whether or not the administrators should receive a confirmation email of the edit venue action."
|
||||
|
||||
PLG_JEM_MAILER_ADMIN_OPTIONS="Administrators"
|
||||
PLG_JEM_MAILER_ALL_ADMINS_DESC="Decide whether or not the administrators who are allowed to receive System Emails should receive admin confirmation mails."
|
||||
PLG_JEM_MAILER_ADMIN_MAIL_RECEIVERS="Distribution list"
|
||||
PLG_JEM_MAILER_ADMIN_MAIL_RECEIVERS_DESC="The email addresses of people who should receive the admin confirmation emails. They must be separated with a comma. This list will be work independant to the above option but works also fine together."
|
||||
|
||||
; Register mailtexts
|
||||
PLG_JEM_MAILER_USER_REG_SUBJECT="%s: Event Registration Successful"
|
||||
PLG_JEM_MAILER_USER_REG_BODY_9="Hello %s, \n\nYou successfully registered for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nBooked places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_BODY_A="Hello %s, \n\nYou successfully registered with comment: \n%s \nfor following event \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nBooked places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ONBEHALF_BODY_A="Hello %s, \n\nYou became registered by %s \nfor following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nBooked places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ONBEHALF_BODY_B="Hello %s, \n\nYou became registered by %s with comment: \n%s \nfor following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nBooked places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_SUBJECT="%s: User Event Registration"
|
||||
PLG_JEM_MAILER_ADMIN_REG_BODY_8="The user %s \nwill attend following event:\n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nBooked places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_BODY_9="The user %s \nwill attend with comment: \n%s \nfollowing event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nBooked places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ONBEHALF_BODY_9="The user %s \nbecame registered by user %s \nto the event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nBooked places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ONBEHALF_BODY_A="The user %s \nbecame registered by user %s with comment: \n%s \nto the event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nBooked places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_WAITING_SUBJECT="%s: Successfully added to the waiting list"
|
||||
PLG_JEM_MAILER_USER_REG_WAITING_BODY_9="Hello %s, \n\nYou have been added to the waiting list for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nWaiting list places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_WAITING_BODY_A="Hello %s, \n\nYou have been added with your comment: \n%s \nto the waiting list for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nWaitingn list places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ONBEHALF_WAITING_BODY_A="Hello %s, \n\nYou have been added by %s \nto the waiting list for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nWaiting list places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ONBEHALF_WAITING_BODY_B="Hello %s, \n\nYou have been added by %s with comment: \n%s \nto the waiting list for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nWaiting list places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_WAITING_SUBJECT="%s: User Event waiting list registration"
|
||||
PLG_JEM_MAILER_ADMIN_REG_WAITING_BODY_8="The user %s \nhas been added to the waiting list for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nWaiting list places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_WAITING_BODY_9="The user %s \nhas been added with his/her comment: \n%s \nto the waiting list for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nWaiting list places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ONBEHALF_WAITING_BODY_9="The user %s \nbecame registered by user %s \nto the waiting list for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nWaiting list places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ONBEHALF_WAITING_BODY_A="The user %s \nbecame registered by user %s with comment: \n%s \nto the waiting list for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nWaiting list places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
|
||||
PLG_JEM_MAILER_USER_REG_NOT_ATTEND_SUBJECT="%s: Event Refusal Successful"
|
||||
PLG_JEM_MAILER_USER_REG_NOT_ATTEND_BODY_9="Hello %s, \n\nYou successfully registered as not attending on following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nCanceled places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_NOT_ATTEND_BODY_A="Hello %s, \n\nYou successfully registered as not attending with comment \n%s \non following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nCanceled places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ONBEHALF_NOT_ATTEND_BODY_A="Hello %s, \n\nYou became registered by %s \nas not attending on following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nCanceled places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ONBEHALF_NOT_ATTEND_BODY_B="Hello %s, \n\nYou became registered by %s \nas not attending with comment \n%s \non following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nCanceled places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_NOT_ATTEND_SUBJECT="%s: User Event Refusal"
|
||||
PLG_JEM_MAILER_ADMIN_REG_NOT_ATTEND_BODY_8="The user %s \nwill not attend following event:\n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nCanceled places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_NOT_ATTEND_BODY_9="The user %s \nwill not attend following event with additional comment: \n%s \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nCanceled places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ONBEHALF_NOT_ATTEND_BODY_9="The user %s \nbecame registered by user %s \nto not attend the event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nCanceled places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ONBEHALF_NOT_ATTEND_BODY_A="The user %s \nbecame registered by user %s \nto not attend the event with additional comment: \n%s \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nCanceled places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
; "undecided" is not really usefull but as fallback in unexpected cases
|
||||
PLG_JEM_MAILER_USER_REG_UNKNOWN_SUBJECT="%s: Event Registration Undecided"
|
||||
PLG_JEM_MAILER_USER_REG_UNKNOWN_BODY_9="Hello %s, \n\nYou registered as undecided attending on following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nInvited places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_UNKNOWN_BODY_A="Hello %s, \n\nYou registered as undecided attending with comment \n%s \non following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nInvited places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_UNKNOWN_SUBJECT="%s: User Event Registration Undecided"
|
||||
PLG_JEM_MAILER_ADMIN_REG_UNKNOWN_BODY_8="The user %s \nis undecided to attend following event:\n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nInvited places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_UNKNOWN_BODY_9="The user %s \nis undecided with comment: \n%s \nto attend following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nInvited places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
; the case "undecided" + "on behalf of" is nonsense, but usefull as invitation
|
||||
PLG_JEM_MAILER_USER_REG_INVITATION_SUBJECT="%s: Event Invitation"
|
||||
PLG_JEM_MAILER_USER_REG_INVITATION_BODY_A="Hello %s, \n\nYou became invited by %s \nto following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nInvited places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nPlease accept or refuse this invitation e.g. by following the link above. \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_INVITATION_BODY_B="Hello %s, \n\nYou became invited by %s \nwith comment \n%s \nto following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nInvited places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\n Please accept or refuse this invitation e.g. by following the link above. \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_INVITATION_SUBJECT="%s: User Event Invitation"
|
||||
PLG_JEM_MAILER_ADMIN_REG_INVITATION_BODY_9="The user %s \nbecame invited by user %s \nto attend the event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nInvited places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_INVITATION_BODY_A="The user %s \nbecame invited by user %s with comment: \n%s \nto attend the event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nInvited places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_UNREG_SUBJECT="%s: Event Unregistration Successful"
|
||||
PLG_JEM_MAILER_USER_UNREG_BODY_9="Hello %s, \n\nYou successfully deregistered from following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nFree places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_UNREG_BODY_A="Hello %s, \n\nYou successfully deregistered with comment: \n%s \nfrom following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nFree places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_UNREG_ONBEHALF_BODY_A="Hello %s, \n\nYour registration has been removed by %s from following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nFree places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_UNREG_ONBEHALF_BODY_B="Hello %s, \n\nYour registration has been removed by %s with comment: \n%s \nfrom following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nFree places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_UNREG_SUBJECT="%s: User Event Unregistration"
|
||||
PLG_JEM_MAILER_ADMIN_UNREG_BODY_8="The user %s \nhas deregistered from following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nFree places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_UNREG_BODY_9="The user %s \nhas deregistered with comment: \n%s \nfrom following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nFree places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_UNREG_ONBEHALF_BODY_9="The registration of user %s \nhas been removed by user %s \nfrom following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nFree places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_UNREG_ONBEHALF_BODY_A="The registration of user %s \nhas been removed by user %s with comment: \n%s \nfrom following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nFree places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
; moving between attendee and waiting list
|
||||
PLG_JEM_MAILER_USER_REG_ON_WAITING_SUBJECT="%s: You have been added to the waiting list"
|
||||
;PLG_JEM_MAILER_USER_REG_ON_WAITING_BODY_4="Hello %s, \n\nYou have been added to the waiting list for the event: %s \nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ON_WAITING_BODY_9="Hello %s, \n\nYou have been added to the waiting list for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nWaiting list places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ON_WAITING_SUBJECT="%s: User added to the waiting list"
|
||||
;PLG_JEM_MAILER_ADMIN_REG_ON_WAITING_BODY_4="The user %s \nhas been added to the waiting list for event: %s \nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ON_WAITING_BODY_8="The user %s \nhas been added to the waiting list for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nWaiting list places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ON_ATTENDING_SUBJECT="%s: You have been added to the attending list"
|
||||
;PLG_JEM_MAILER_USER_REG_ON_ATTENDING_BODY_4="Hello %s, \n\nYou have been taken off the waiting list and added to the attending list for the event: %s \nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ON_ATTENDING_BODY_9="Hello %s, \n\nYou have been taken off the waiting list and added to the attending list for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nBooked places:%s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ON_ATTENDING_SUBJECT="%s: User added to the attending list"
|
||||
;PLG_JEM_MAILER_ADMIN_REG_ON_ATTENDING_BODY_4="The user %s \nhas been taken off the waiting list and added to the attending list for event: %s \nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ON_ATTENDING_BODY_8="The user %s \nhas been taken off the waiting list and added to the attending list for following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nBooked places:%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
|
||||
; Submission mailtexts for the administration
|
||||
|
||||
PLG_JEM_MAILER_NEW_EVENT_MAIL=" %s : New Event - %s"
|
||||
PLG_JEM_MAILER_NEW_EVENT_A="You got a new submission from %s \n\nMailadress: %s \nSubmission time: %s \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_NEW_EVENT_9="There's a new Event submission from %s \n\nSubmission time: %s \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_EVENT_MAIL=" %s : Edited Event - %s"
|
||||
PLG_JEM_MAILER_EDIT_EVENT_A="An Event was edited by %s \n\nMailadress: %s \nModified at: %s \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_EVENT_9="An Event was edited by %s \n\nModified at: %s \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_EVENT_PUBLISHED="The Event is published and can be viewed by clicking this link: %s"
|
||||
PLG_JEM_MAILER_EVENT_UNPUBLISHED="The Event is unpublished and needs to be reviewed"
|
||||
PLG_JEM_MAILER_EVENT_TRASHED="The Event has been deleted"
|
||||
PLG_JEM_MAILER_EVENT_ARCHIVED="The Event has been archived"
|
||||
PLG_JEM_MAILER_EVENT_UNKNOWN="The Event's publishing state is unknown"
|
||||
|
||||
PLG_JEM_MAILER_NEW_VENUE_MAIL=" %s : New Venue - %s"
|
||||
PLG_JEM_MAILER_NEW_VENUE_B="You received a new submission from %s \n\nMailadress: %s \nSubmission time: %s \n\nName: %s \nWebsite: %s \nStreet: %s \nPostcode: %s \nCity: %s \nCountry: %s \n\nDescription:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_NEW_VENUE_A="You received a new Venue submission from %s \n\nSubmission time: %s \n\nName: %s \nWebsite: %s \nStreet: %s \nPostcode: %s \nCity: %s \nCountry: %s \n\nDescription:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_VENUE_MAIL=" %s : Edited Venue - %s"
|
||||
PLG_JEM_MAILER_EDIT_VENUE_B="A Venue was edited by %s \n\nMailadress: %s \nModified at: %s \n\nName: %s \nWebsite: %s \nStreet: %s \nPostcode: %s \nCity: %s \nCountry: %s \n\nDescription:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_VENUE_A="A Venue was edited by %s \n\nModified at: %s \n\nName: %s \nWebsite: %s \nStreet: %s \nPostcode: %s \nCity: %s \nCountry: %s \n\nDescription:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_VENUE_PUBLISHED="The Venue is published and can be viewed by clicking this link: %s"
|
||||
PLG_JEM_MAILER_VENUE_UNPUBLISHED="The Venue is unpublished and needs to be reviewed"
|
||||
|
||||
; Submission mailtexts specific of category notifications
|
||||
|
||||
PLG_JEM_MAILER_NEW_EVENT_CAT_NOTIFY_9="There's a new submission from %s \n\nSubmission time: %s \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_EVENT_CAT_NOTIFY_9="An Event was edited by %s \n\nModified at: %s \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\n%s"
|
||||
|
||||
; Submission mailtexts for the user
|
||||
|
||||
PLG_JEM_MAILER_NEW_USER_EVENT_MAIL=" %s : Thank you for your Event submission"
|
||||
PLG_JEM_MAILER_USER_MAIL_NEW_EVENT_9="Hello %s, \n\nWe successfully received your submission\nWith the details:\nSubmission time: %s \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_USER_EVENT_MAIL=" %s : Event modification - %s"
|
||||
PLG_JEM_MAILER_USER_MAIL_EDIT_EVENT_9="Hello %s, \n\nYou successfully edited the following Event:\nModified at: %s \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_USER_MAIL_EVENT_PUBLISHED="The Event is published and can be viewed by clicking this link: %s"
|
||||
PLG_JEM_MAILER_USER_MAIL_EVENT_UNPUBLISHED="Your Event submission will be reviewed and activated soon by an administrator"
|
||||
PLG_JEM_MAILER_USER_MAIL_EVENT_TRASHED="You've succesfully deleted the event"
|
||||
PLG_JEM_MAILER_USER_MAIL_EVENT_ARCHIVED="The Event is archived"
|
||||
PLG_JEM_MAILER_USER_MAIL_EVENT_UNKNOWN="The Event's publishing state is unknown"
|
||||
|
||||
PLG_JEM_MAILER_NEW_USER_VENUE_MAIL=" %s : Thank you for your Venue submission"
|
||||
PLG_JEM_MAILER_USER_MAIL_NEW_VENUE_A="Hello %s, \n\nWe successfully received your submission\nWith the details:\nSubmission time: %s \n\nName: %s \nWebsite: %s \nStreet: %s \nPostcode: %s \nCity: %s \nCountry: %s \n\nDescription:\n %s \n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_USER_VENUE_MAIL=" %s : Venue modification - %s"
|
||||
PLG_JEM_MAILER_USER_MAIL_EDIT_VENUE_A="Hello %s, \n\nYou successfully edited the following Venue:\nModified at: %s \n\nName: %s \nWebsite: %s \nStreet: %s \nPostcode: %s \nCity: %s \nCountry: %s \n\nDescription:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_USER_MAIL_VENUE_PUBLISHED="Your Venue submission is published and can be reviewed by clicking this link: %s"
|
||||
PLG_JEM_MAILER_USER_MAIL_VENUE_UNPUBLISHED="Your Venue submission will be reviewed and activated soon by an administrator"
|
||||
|
||||
; inform recipient why (s)he got this email (first is the complete sentence where %s will be replaced by a list of the other phrases)
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_1="\n\n(You got this email because you are %s.)"
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_ADMIN="listed as Administrator"
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_ITEM_CREATOR="creator of the item"
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_EVENT_CREATOR="creator of an event refering this venue"
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_GROUP_MEMBER="JEM group member"
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_CATEGORY_LISTED="on a category's mailing list"
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_ATTENDEE="invited, not attending, attending or on waiting list of an event"
|
||||
|
||||
; PLG_JEM_MAILER_MAILS_SENT_2="%s of %s emails sent successfully."
|
||||
PLG_JEM_MAILER_MAILS_NOT_SENT_1="Failed sending notification email to %s recipient(s)."
|
||||
PLG_JEM_MAILER_LOG_SEND_ERROR="Error sending email to \"%s\"
|
||||
|
||||
; IP address is never sent via email
|
||||
;PLG_JEM_MAILER_SHOWIP="Show IP"
|
||||
;PLG_JEM_MAILER_SHOWIP_DESC="Show IP in the mail being send when adding new event/venue"
|
||||
;PLG_JEM_MAILER_IP_DISABLED="Disabled"
|
||||
;PLG_JEM_MAILER_IP_UNKNOWN="Unknown"
|
||||
|
||||
PLG_JEM_MAILER_SENDHTML="Send as HTML"
|
||||
PLG_JEM_MAILER_SENDHTML_DESC="Select this if you want to output mail as HTML"
|
||||
|
||||
; XML
|
||||
PLG_JEM_MAILER_FIELD_REGNOTE_REGISTRATION_ADMIN_DESC="Decide whether or not site administrators should receive a confirmation email when a user registers for an event."
|
||||
PLG_JEM_MAILER_FIELD_REGNOTE_REGISTRATION_USER_DESC="Decide whether or not the user should receive a confirmation email of their registration."
|
||||
PLG_JEM_MAILER_GLOBAL_FIELD_ADMIN_LABEL="Admin"
|
||||
; PLG_JEM_MAILER_GLOBAL_FIELD_USER_LABEL="User"
|
||||
PLG_JEM_MAILER_USER_CREATOR_LABEL="Originator"
|
||||
PLG_JEM_MAILER_USER_EDITOR_LABEL="Originator"
|
||||
PLG_JEM_MAILER_USER_ATTENDEE_LABEL="Attendee"
|
||||
13
plugins/jem/mailer/language/en-GB/plg_jem_mailer.sys.ini
Normal file
13
plugins/jem/mailer/language/en-GB/plg_jem_mailer.sys.ini
Normal file
@ -0,0 +1,13 @@
|
||||
; @package JEM
|
||||
; @subpackage JEM Mailer Plugin
|
||||
; @copyright (C) 2013-2024 joomlaeventmanager.net
|
||||
; @copyright (C) 2005-2009 Christoph Lukes
|
||||
; @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
|
||||
;
|
||||
; All translations can be found at https://app.transifex.com/jemproject/
|
||||
; Please join the translation team if you want to contribute your changes to the translations
|
||||
;
|
||||
; Note: All ini files need to be saved as UTF-8, no BOM
|
||||
|
||||
PLG_JEM_MAILER="JEM - Mailer Plugin"
|
||||
PLG_JEM_MAILER_XML_DESCRIPTION="JEM Mailer Plugin. This plugin handles the automatic mail function (e.g. after event-submission) in JEM"
|
||||
1
plugins/jem/mailer/language/index.html
Normal file
1
plugins/jem/mailer/language/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
223
plugins/jem/mailer/language/it-IT/it-IT.plg_jem_mailer.ini
Normal file
223
plugins/jem/mailer/language/it-IT/it-IT.plg_jem_mailer.ini
Normal file
@ -0,0 +1,223 @@
|
||||
; @version 2.1.7
|
||||
; @package JEM
|
||||
; @subpackage JEM Mailer Plugin
|
||||
; @copyright (C) 2005-2009 Christoph Lukes
|
||||
; @copyright (C) 2013-2016 joomlaeventmanager.net
|
||||
; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
|
||||
;
|
||||
; All translations can be found at https://www.transifex.com/projects/p/JEM/
|
||||
; Please join the translation team if you want to contribute your changes to the translations
|
||||
;
|
||||
; Note : All ini files need to be saved as UTF-8 - No BOM
|
||||
|
||||
PLG_JEM_MAILER_PLUGIN_DESC="Invia una E-mail all'utente / admin se qualcuno si registra o annulla una registrazione ad un evento."
|
||||
|
||||
; Plugin options
|
||||
|
||||
PLG_JEM_MAILER_ALL_ADMINS="Sistema ricevimento E-mail"
|
||||
PLG_JEM_MAILER_USER_NOTIFICATIONS="Notifiche di registrazione"
|
||||
PLG_JEM_MAILER_USER_REG_DESC="Decidere se l'utente deve ricevere una E-mail di conferma all'iscrizione ad un evento."
|
||||
PLG_JEM_MAILER_ADMIN_REG_DESC="Decidere se gli amministratori del sito dovono ricevere una conferma tramite E-mail quando un utente si registra per un evento. E` necessario inserire gli indirizzi E-mail, nel campo sotto riportato 'Lista di distribuzione', che desideri ricevere come messaggi di conferma."
|
||||
PLG_JEM_MAILER_SETTINGS_USER_REG_ONOFF_DESC="Decidere se l'utente deve ricevere una E-mail di conferma all'attivazione della lista d'attesa per un evento."
|
||||
PLG_JEM_MAILER_SETTINGS_ADMIN_REG_ONOFF_DESC="Decidere se gli amministratori del sito dovono ricevere una conferma tramite E-mail quando un utente e` attivato o disattivato in un elenco di eventi in attesa. E` necessario inserire gli indirizzi E-mail, nel campo sotto riportato 'Lista di distribuzione', che desideri ricevere come messaggi di conferma."
|
||||
PLG_JEM_MAILER_USER_UNREG_DESC="Decidere se l'utente deve ricevere una E-mail di conferma all'annullamento dell'iscrizione ad un evento."
|
||||
PLG_JEM_MAILER_ADMIN_UNREG_DESC="Decidere se gli amministratori del sito devono ricevere una conferma tramite E-mail quando un utente annulla la registrazione di un evento. E` necessario inserire gli indirizzi E-mail, nel campo sotto riportato 'Lista di distribuzione', che desideri ricevere come messaggi di conferma."
|
||||
PLG_JEM_MAILER_REGISTRATION="<b>Registrazione E-mail</b>"
|
||||
PLG_JEM_MAILER_WAITINGLIST="<b>E-mail lista d'attesa si/no</b>"
|
||||
PLG_JEM_MAILER_UNREGISTRATION="<b>Annullamento registrazione E-mail</b>"
|
||||
PLG_JEM_MAILER_EVENT_NOTIFICATIONS="Notifiche eventi"
|
||||
PLG_JEM_MAILER_NEW_EVENT_TITLE="<b>E-mail in caso di nuovo evento</b>"
|
||||
PLG_JEM_MAILER_EDIT_EVENT_TITLE="<b>E-mail in caso di aggiornamento</b>"
|
||||
PLG_JEM_MAILER_USER_NEW_EVENT_DESC="Decidere se l'utente deve ricevere una E-mail di conferma all'inserimento di un proprio evento."
|
||||
PLG_JEM_MAILER_ADMIN_NEW_EVENT="Invia E-mail all'admin all'invio di un nuovo evento da parte di un utente"
|
||||
PLG_JEM_MAILER_ADMIN_NEW_EVENT_DESC="Invia E-mail all'admin all'invio di un nuovo evento da parte di un utente"
|
||||
PLG_JEM_MAILER_USER_EDIT_EVENT_DESC="Decidere se l'utente deve ricevere una E-mail di conferma alla modifica di un proprio evento."
|
||||
PLG_JEM_MAILER_ADMIN_EDIT_EVENT_DESC="Decidere se l'admin deve ricevere una E-mail di conferma alla modifica di un evento da parte di un utente."
|
||||
PLG_JEM_MAILER_REGISTERED_EDIT_EVENT="Registrato"
|
||||
PLG_JEM_MAILER_REGISTERED_EDIT_EVENT_DESC="Decidere se gli utenti registrati e in lista d'attesa di un evento dovrebbero ricevere una E-mail in caso di modifica di tale evento."
|
||||
PLG_JEM_MAILER_REGISTERED_EDIT_VENUE="Registrato"
|
||||
PLG_JEM_MAILER_REGISTERED_EDIT_VENUE_DESC="Decidere se gli utenti registrati e in lista d'attesa di un evento dovrebbero ricevere una E-mail in caso di modifica della sede di un evento."
|
||||
|
||||
PLG_JEM_MAILER_CREATOR_LABEL="Creatore"
|
||||
PLG_JEM_MAILER_NOTIFY_CREATOR_DESC="Abilitare l'invio di E-mail al creatore quando un'altro utente modifica un evento."
|
||||
PLG_JEM_MAILER_REGISTRATION_CREATOR_DESC="Abilitare l'invio di E-mail al creatore quando i partecipanti cambiano."
|
||||
PLG_JEM_MAILER_VENUE_EV_CREATOR_LABEL="Creatore evento"
|
||||
PLG_JEM_MAILER_VENUE_EV_CREATOR_DESC="Abilitare l'invio di E-mail al creatore di eventi quando cambia la sede dell'evento."
|
||||
|
||||
PLG_JEM_MAILER_CATEGORY_LABEL="Categoria"
|
||||
PLG_JEM_MAILER_NOTIFY_CATEGORY_DESC="Abilitare l'invio di E-mail agli indirizzi indicati nel campo 'E-mail' quando gli eventi sono creati o modificati."
|
||||
PLG_JEM_MAILER_EDIT_VENUE_CATEGORY_DESC="Abilita l'invio di E-mail agli indirizzi indicati nel campo 'E-mail', quando una sede e` modificata ed e` ad un evento in questa categoria."
|
||||
PLG_JEM_MAILER_REGISTRATION_CATEGORY_DESC="Abilitare l'invio di E-mail agli indirizzi indicati nel campo 'E-mail' quando i partecipanti cambiano."
|
||||
|
||||
PLG_JEM_MAILER_GROUP_LABEL="Gruppo"
|
||||
PLG_JEM_MAILER_NEW_EVENT_GROUP="Decidere se il gruppo di utenti della categoria dell'evento riceve l'E-mail quando un nuovo evento viene creato in questa categoria"
|
||||
PLG_JEM_MAILER_EDIT_EVENT_GROUP="Decidere se il gruppo di utenti della categoria dell'evento riceve l'E-mail quando, in questa categoria, un evento viene modificato "
|
||||
PLG_JEM_MAILER_EDIT_VENUE_GROUP="Decidere se il gruppo di utenti della categoria di tutti gli eventi in un luogo ricevono E-mail quando la sede viene modificata."
|
||||
PLG_JEM_MAILER_REGISTRATION_GROUP_DESC="Decidere se il gruppo di utenti della categoria dell'evento riceve l'E-mail quando cambiano i partecipanti."
|
||||
|
||||
PLG_JEM_MAILER_VENUE_NOTIFICATIONS="Notifiche sede"
|
||||
PLG_JEM_MAILER_NEW_VENUE_TITLE="<b>E-mail inserimento nuova sede</b>"
|
||||
PLG_JEM_MAILER_EDIT_VENUE_TITLE="<b>E-mail aggiornamento sede</b>"
|
||||
PLG_JEM_MAILER_USER_NEW_VENUE_DESC="Decidere se l'utente deve ricevere una E-mail di conferma all'inserimento di una propria sede."
|
||||
PLG_JEM_MAILER_ADMIN_NEW_VENUE_DESC="Decidere se l'admin deve ricevere una E-mail di conferma all'invio di una nuova sede da parte di un utente."
|
||||
PLG_JEM_MAILER_USER_EDIT_VENUE_DESC="Decidere se l'utente deve ricevere una E-mail di conferma alla modifica di una propria sede."
|
||||
PLG_JEM_MAILER_ADMIN_EDIT_VENUE_DESC="Decidere se l'admin deve ricevere una E-mail di conferma alla modifica di una sede da parte di un utente."
|
||||
|
||||
PLG_JEM_MAILER_ADMIN_OPTIONS="Amministratori"
|
||||
PLG_JEM_MAILER_ALL_ADMINS_DESC="Decidere se gli utenti abilitati che sono autorizzati a ricevere e-E-mail di sistema dovrebbero ricevere E-mail di conferma di admin."
|
||||
PLG_JEM_MAILER_ADMIN_MAIL_RECEIVERS="Lista di distribuzione"
|
||||
PLG_JEM_MAILER_ADMIN_MAIL_RECEIVERS_DESC="Gli indirizzi email di persone che dovrebbero ricevere le e-E-mail di conferma dell'admin. Gli indirizzi devono essere separati da una virgola. L'elenco lavora anche in modo indipendente dalle opzioni precedenti."
|
||||
|
||||
; Register mailtexts
|
||||
PLG_JEM_MAILER_USER_REG_SUBJECT="%s: Registrazione all'evento avvenuta con successo"
|
||||
PLG_JEM_MAILER_USER_REG_BODY_9="Ciao %s,\n\nhai correttamente registrato il seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s \n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_BODY_A="Ciao %s,\n\nhai correttamente registrato con commento:\n%s\nil seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ONBEHALF_BODY_A="Ciao %s,\n\nSei stato registrato da %s\nper il seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ONBEHALF_BODY_B="Ciao %s,\n\nSei stato registrato da %s con il commento:\n%s\nal seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_SUBJECT="%s: Utente registrato all'evento"
|
||||
PLG_JEM_MAILER_ADMIN_REG_BODY_8="L'utente %s\nsara` presente al seguente evento:\n\n Titolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_BODY_9="L'utente %s\nsara` presente con commento:\n%s\nal seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ONBEHALF_BODY_9="L'utente %s\ne` stato registrato dall'utente %s\nall'evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ONBEHALF_BODY_A="L'utente %s\ne` stato registrato dall'utente %s con commento_\n%s\nall'evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_WAITING_SUBJECT="%s: aggiunto con successo alla lista d'attesa"
|
||||
PLG_JEM_MAILER_USER_REG_WAITING_BODY_9="Ciao %s,\nsei stato aggiunto nella lista d'attesa del seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_WAITING_BODY_A="Ciao %s,\n\nsei stato aggiunto con il commento:\n%s\nnella lista d'attesa del seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ONBEHALF_WAITING_BODY_A="Ciao %s,\nsei stato aggiunto da %s nella lista d'attesa del seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ONBEHALF_WAITING_BODY_B="Ciao %s,\n\nsei stato aggiunto da %s con il commento:\n%s\nnella lista d'attesa del seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_WAITING_SUBJECT="%s: Utente registralo alla lista d'attesa di un evento"
|
||||
PLG_JEM_MAILER_ADMIN_REG_WAITING_BODY_8="L'utente %s,\ne` stato aggiunto nella lista d'attesa del seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_WAITING_BODY_9="L'utente %s,\ne` stato aggiunto con il suo commento:\n%s\nnella lista d'attesa del seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ONBEHALF_WAITING_BODY_9="L'utente %s\ne` stato registrato dall'utente %s\nnella lista d'attesa del seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ONBEHALF_WAITING_BODY_A="L'utente %s\ne` stato registrato dall'utente %s con commento:\n%s\nnella lista d'attesa del seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
|
||||
PLG_JEM_MAILER_USER_REG_NOT_ATTEND_SUBJECT="%s: Rifiuto dell'evento avvenuta con successo"
|
||||
PLG_JEM_MAILER_USER_REG_NOT_ATTEND_BODY_9="Ciao %s,\nhai correttamente registrato che non parteciperai al seguente evento:\n\nTitolo: %s \nData: %s \nOrario: %s\nSede: %s / %s \n\nDescrizione:\n%s\n\nLink diretto: %s \n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_NOT_ATTEND_BODY_A="Ciao %s,\n\nhai correttamente registrato che non parteciperai con commento\n%s\nal seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ONBEHALF_NOT_ATTEND_BODY_A="Ciao %s,\n\nSei stato registrato da %s\ncome non partecipante al seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ONBEHALF_NOT_ATTEND_BODY_B="Ciao %s,\n\nSei stato registrato da %s\ncome non partecipante con il commento\n%s\nal seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_NOT_ATTEND_SUBJECT="%s: Utente evento rifiutato"
|
||||
PLG_JEM_MAILER_ADMIN_REG_NOT_ATTEND_BODY_8="L'utente %s\nnon sara` presente al seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_NOT_ATTEND_BODY_9="L'utente %s\nnon sara` presente al seguente evento con commenti aggiuntivi:\n%s\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ONBEHALF_NOT_ATTEND_BODY_9="L'utente %s\ne` stato registrato dall'utente %s\ncome non partecipante all'evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
; PLG_JEM_MAILER_ADMIN_REG_ONBEHALF_NOT_ATTEND_BODY_A="The user %s \nbecame registered by user %s \nto not attend the event with additional comment: \n%s \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
; "undecided" is not really usefull but as fallback in unexpected cases
|
||||
PLG_JEM_MAILER_USER_REG_UNKNOWN_SUBJECT="%s: Registrazione evento non decisa"
|
||||
; PLG_JEM_MAILER_USER_REG_UNKNOWN_BODY_9="Hello %s, \n\nYou registered as undecided attending on following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
; PLG_JEM_MAILER_USER_REG_UNKNOWN_BODY_A="Hello %s, \n\nYou registered as undecided attending with comment \n%s \non following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_UNKNOWN_SUBJECT="%s: Utente registrato all'evento non decisa"
|
||||
; PLG_JEM_MAILER_ADMIN_REG_UNKNOWN_BODY_8="The user %s \nis undecided to attend following event:\n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
; PLG_JEM_MAILER_ADMIN_REG_UNKNOWN_BODY_9="The user %s \nis undecided with comment: \n%s \nto attend following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
; the case "undecided" + "on behalf of" is nonsense, but usefull as invitation
|
||||
PLG_JEM_MAILER_USER_REG_INVITATION_SUBJECT="%s: Invito all'evento"
|
||||
; PLG_JEM_MAILER_USER_REG_INVITATION_BODY_A="Hello %s, \n\nYou became invited by %s \nto following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\nDirect Link: %s \n\nPlease accept or refuse this invitation e.g. by following the link above. \n\nThank you\n%s"
|
||||
; PLG_JEM_MAILER_USER_REG_INVITATION_BODY_B="Hello %s, \n\nYou became invited by %s \nwith comment \n%s \nto following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\nDirect Link: %s \n\n Please accept or refuse this invitation e.g. by following the link above. \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_INVITATION_SUBJECT="%s: Utente invitato all'evento"
|
||||
; PLG_JEM_MAILER_ADMIN_REG_INVITATION_BODY_9="The user %s \nbecame invited by user %s \nto attend the event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
; PLG_JEM_MAILER_ADMIN_REG_INVITATION_BODY_A="The user %s \nbecame invited by user %s with comment: \n%s \nto attend the event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
; unregister = rrimuovere tabella dal dbe
|
||||
PLG_JEM_MAILER_USER_UNREG_SUBJECT="%s: Annullamento alla partecipazione all'evento effettuato con successo"
|
||||
PLG_JEM_MAILER_USER_UNREG_BODY_9="Ciao %s\n\nHai annullato con successo la partecipazione all'evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
; PLG_JEM_MAILER_USER_UNREG_BODY_A="Hello %s, \n\nYou successfully unregistered with comment: \n%s \nfrom following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_USER_UNREG_ONBEHALF_BODY_A="Ciao %s, \n\nLa tua registrazione e` stato rimossa da %s per il seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
; PLG_JEM_MAILER_USER_UNREG_ONBEHALF_BODY_B="Hello %s, \n\nYour registration has been removed by %s with comment: \n%s \nfrom following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDescription:\n%s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_UNREG_SUBJECT="%s: Annullamento da parte di un utente alla partecipazione all'evento"
|
||||
PLG_JEM_MAILER_ADMIN_UNREG_BODY_8="L'utente %s\nha annullato la partecipazione al seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
; PLG_JEM_MAILER_ADMIN_UNREG_BODY_9="The user %s \nhas unregistered with comment: \n%s \nfrom following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_UNREG_ONBEHALF_BODY_9="La registrazione dell'utente %s\ne` stato rimossa dall'utente %s \nper il seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
; PLG_JEM_MAILER_ADMIN_UNREG_ONBEHALF_BODY_A="The registration of user %s \nhas been removed by user %s with comment: \n%s \nfrom following event: \n\nTitle: %s \nDate: %s \nTime: %s \nVenue: %s / %s \n\nDirect Link: %s \n\nThank you\n%s"
|
||||
; moving between attendee and waiting list
|
||||
PLG_JEM_MAILER_USER_REG_ON_WAITING_SUBJECT="%s: Sei stato aggiunto alla lista d'attesa"
|
||||
PLG_JEM_MAILER_USER_REG_ON_WAITING_BODY_4="Ciao %s, \n\nsei stato aggiunto alla lista d'attesa per l'evento: %s \nLink diretto: %s \n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ON_WAITING_BODY_9="Ciao %s,\nsei stato aggiunto nella lista d'attesa del seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ON_WAITING_SUBJECT="%s: Utente aggiunto alla lista d'attesa"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ON_WAITING_BODY_4="L'utente %s\ne` stato aggiunto alla lista d'attesa per l'evento: %s\n\nLink diretto: %s\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ON_WAITING_BODY_8="L'utente %s,\ne` stato aggiunto nella lista d'attesa del seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ON_ATTENDING_SUBJECT="%s: Sei stato aggiunto alla lista di parteciparione di un evento"
|
||||
PLG_JEM_MAILER_USER_REG_ON_ATTENDING_BODY_4="Ciao %s, \n\nsei stato tolto dalla lista d'attesa ed aggiunto alla lista dei partecipanti all'evento: %s \nLink diretto: %s \n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_USER_REG_ON_ATTENDING_BODY_9="Ciao %s,\n\nSei stato tolto la lista d'attesa e aggiunto alla lista partecipanti per il seguente evento:\n\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ON_ATTENDING_SUBJECT="%s: Un utente è stato aggiunto alla lista di partecipazione di un evento"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ON_ATTENDING_BODY_4="L'utente %s\ne` stato tolto dalla lista d'attesa ed aggiunto alla lista dei partecipanti all'evento: %s\nLink diretto: %s\n\nGrazie\n%s"
|
||||
PLG_JEM_MAILER_ADMIN_REG_ON_ATTENDING_BODY_8="L'utente %s\ne` stato tolto dalla lista d'attesa ed inserito nella lista per partecipare al seguente evento:\n\nTitolo: %s\nData: %s\nOrario: %s\nLuogo: %s / %s\n\nLink diretto: %s\n\nGrazie\n%s"
|
||||
|
||||
; Submission mailtexts for the administration
|
||||
|
||||
PLG_JEM_MAILER_NEW_EVENT_MAIL="%s : Nuovo Evento - %s"
|
||||
;PLG_JEM_MAILER_NEW_EVENT_A="Hai una nuova presentazione da %s \n\nIndirizzo E-mail: %s\nModificato il: %s\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\n%s"
|
||||
PLG_JEM_MAILER_NEW_EVENT_9="C'e` un nuovo evento inserito da %s\n\nInserito il: %s\n\nTitolo: %s\nDate: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_EVENT_MAIL="%s : Evento modificato - %s"
|
||||
;PLG_JEM_MAILER_EDIT_EVENT_A="Un evento e` stato modificato da %s\n\nIndirizzo E-mail: %s\nModificato il: %s\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_EVENT_9="Un evento e` stato modificato da %s\n\nModificato il: %s\n\nTitolo: %s\nDate: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\n%s"
|
||||
PLG_JEM_MAILER_EVENT_PUBLISHED="L'evento è stato pubblicato ed è visibile a questo link: %s"
|
||||
PLG_JEM_MAILER_EVENT_UNPUBLISHED="L'evento è stato sospeso e va rivisto."
|
||||
PLG_JEM_MAILER_EVENT_TRASHED="L'evento e` stato cancellato"
|
||||
PLG_JEM_MAILER_EVENT_ARCHIVED="L'evento e` archiviato"
|
||||
PLG_JEM_MAILER_EVENT_UNKNOWN="Lo stato di pubblicazione della manifestazione e` sconosciuto"
|
||||
|
||||
PLG_JEM_MAILER_NEW_VENUE_MAIL="%s : Nuova Sede - %s"
|
||||
;PLG_JEM_MAILER_NEW_VENUE_B="Hai ricevuto una nuova sede inserita da %s\n\nIndirizzo E-mail: %s\nInserita il: %s\n\nNome: %s\nSito web: %s\nIndirizzo: %s\nCAP: %s\nCitta`: %s\nProvincia: %s\n\nDescrizione:\n%s\n\n%s"
|
||||
PLG_JEM_MAILER_NEW_VENUE_A="Hai ricevuto una nuova sede inserita da %s\n\nInserita il: %s\n\nNome: %s\nSito web: %s\nIndirizzo: %s\nCAP: %s\nCitta`: %s\nProvincia: %s\n\nDescrizione:\n%s\n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_VENUE_MAIL="%s : Sede modificata - %s"
|
||||
;PLG_JEM_MAILER_EDIT_VENUE_B="Una sede e` stata modificata da %s\n\nIndirizzo E-mail: %s\nModificato il: %s\n\nNome: %s\nSito web: %s\nIndirizzo: %s\nCAP: %s\nCitta`: %s\nProvincia: %s\n\nDescrizione:\n%s\n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_VENUE_A="Una sede e` stata modificata da %s\n\nModificata il: %s\n\nNome: %s\nSito web: %s\nIndirizzo: %s\nCAP: %s\nCitta`: %s\nProvincia: %s\n\nDescrizione:\n%s\n\n%s"
|
||||
PLG_JEM_MAILER_VENUE_PUBLISHED="La sede è stata pubblicata ed è visibile a questo link: %s"
|
||||
PLG_JEM_MAILER_VENUE_UNPUBLISHED="La sede è stata sospesa e va rivista."
|
||||
|
||||
; Submission mailtexts specific of category notifications
|
||||
|
||||
;PLG_JEM_MAILER_NEW_EVENT_CAT_NOTIFY_9="C'e` un nuovo evento inserito da %s\n\nModificato il: %s\n\nTitolo: %s\nData: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\n%s"
|
||||
;PLG_JEM_MAILER_EDIT_EVENT_CAT_NOTIFY_9="Un evento e` stato modificato da %s\n\nModificato il: %s\n\nTitolo: %s\nDate: %s\nOrario: %s\nSede: %s / %s\n\nDescrizione:\n%s\n\n%s"
|
||||
|
||||
; Submission mailtexts for the user
|
||||
|
||||
PLG_JEM_MAILER_NEW_USER_EVENT_MAIL=" %s : Grazie per aver inserito un evento"
|
||||
PLG_JEM_MAILER_USER_MAIL_NEW_EVENT_9="Ciao %s, \n\nAbbiamo ricevuto correttamente il vostro evento\nCon i seguenti dettagli:\nModificato il: %s \n\nTitolo: %s \nData: %s \nOrario: %s \nSede: %s / %s \n\nDescrizione:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_USER_EVENT_MAIL="%s : Evento modificato - %s"
|
||||
PLG_JEM_MAILER_USER_MAIL_EDIT_EVENT_9="Ciao %s, \n\nhai correttamente modificato il seguente evento:\nModificato il: %s \n\nTitolo: %s \nData: %s \nOrario: %s \nSede: %s / %s \n\nDescrizione:\n%s \n\n%s"_QQ_""
|
||||
PLG_JEM_MAILER_USER_MAIL_EVENT_PUBLISHED="L'evento è stato pubblicato ed è visibile a questo link : %s"
|
||||
PLG_JEM_MAILER_USER_MAIL_EVENT_UNPUBLISHED="L'inserimento del tuo evento è stato ricevuto correttamente e verrà rivisto e attivato dall'amministratore"
|
||||
PLG_JEM_MAILER_USER_MAIL_EVENT_TRASHED="Hai correttamente cancellato l'evento"
|
||||
PLG_JEM_MAILER_USER_MAIL_EVENT_ARCHIVED="L'evento e` archiviato"
|
||||
PLG_JEM_MAILER_USER_MAIL_EVENT_UNKNOWN="Lo stato di pubblicazione della manifestazione e` sconosciuto"
|
||||
|
||||
PLG_JEM_MAILER_NEW_USER_VENUE_MAIL=" %s : Grazie per aver inserito una sede"
|
||||
PLG_JEM_MAILER_USER_MAIL_NEW_VENUE_A="Ciao %s, \n\nAbbiamo ricevuto correttamente la vostra sede\nCon i seguenti dettagli:\nData inserimento: %s \n\nDescrizione:\n %s \n\n%s"
|
||||
PLG_JEM_MAILER_EDIT_USER_VENUE_MAIL="%s : Sede modificata - %s"
|
||||
PLG_JEM_MAILER_USER_MAIL_EDIT_VENUE_A="Ciao %s, \n\nhai modificato correttamente la seguente sede:\nModificata il: %s \n\nNome: %s \nSito web: %s \nIndirizzo: %s \nCAP: %s \nCitta`: %s \nProvincia: %s \n\nDescrizione:\n%s \n\n%s"
|
||||
PLG_JEM_MAILER_USER_MAIL_VENUE_PUBLISHED="La sede è stata pubblicata ed è visibile a questo link: %s"
|
||||
PLG_JEM_MAILER_USER_MAIL_VENUE_UNPUBLISHED="L'inserimento della tua sede è stato ricevuto correttamente e verrà rivisto e attivato dall'amministratore"
|
||||
|
||||
; inform recipient why (s)he got this email (first is the complete sentence where %s will be replaced by a list of the other phrases)
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_1="\n\n(Hai questa E-mail perche` sei %s.)"
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_ADMIN="indicato come Amministratore"
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_ITEM_CREATOR="creatore della voce"
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_EVENT_CREATOR="creatore di un evento riferito a questo luogo"
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_GROUP_MEMBER="Membro del gruppo JEM"
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_CATEGORY_LISTED="nella mailing list di una categoria"
|
||||
PLG_JEM_MAILER_RECIPIENT_BECAUSE_ATTENDEE="invitato, non partecipa, partecipa o in lista d'attesa di un evento"
|
||||
|
||||
PLG_JEM_MAILER_MAILS_SENT_2="Inviate con successo %s E-mail su %s."
|
||||
PLG_JEM_MAILER_MAILS_NOT_SENT_1="Impossibile inviare E-mail di notifica al destinatario(i) %s."
|
||||
PLG_JEM_MAILER_LOG_SEND_ERROR="Errore durante l'invio E-mail a "_QQ_"%s"_QQ_"_QQ_
|
||||
|
||||
; IP address is never sent via email
|
||||
;PLG_JEM_MAILER_SHOWIP="Mostra IP"
|
||||
;PLG_JEM_MAILER_SHOWIP_DESC="Mostra IP nella E-mail che viene inviato quando si aggiunge un nuovo evento e/o sede"
|
||||
;PLG_JEM_MAILER_IP_DISABLED="Disabilitato"
|
||||
;PLG_JEM_MAILER_IP_UNKNOWN="Sconosciuto"
|
||||
|
||||
PLG_JEM_MAILER_SENDHTML="Invia in formato HTML"
|
||||
PLG_JEM_MAILER_SENDHTML_DESC="Selezionare questo se si desidera inviare l'E-mail in formato HTML"
|
||||
|
||||
|
||||
; View
|
||||
PLG_JEM_MAILER_EVENT_ARCHIVED="L'evento e` archiviato"
|
||||
PLG_JEM_MAILER_USER_MAIL_EVENT_ARCHIVED="L'evento e` archiviato"
|
||||
|
||||
; XML
|
||||
PLG_JEM_MAILER_FIELD_REGNOTE_REGISTRATION_ADMIN_DESC="Decidere se gli amministratori del sito dovrebbero ricevere una E-mail di conferma quando un utente si registra per un evento."
|
||||
PLG_JEM_MAILER_FIELD_REGNOTE_REGISTRATION_USER_DESC="Decidere se l'utente deve ricevere una E-mail di conferma all'iscrizione ad un evento."
|
||||
PLG_JEM_MAILER_GLOBAL_FIELD_ADMIN_LABEL="Amministratore"
|
||||
PLG_JEM_MAILER_GLOBAL_FIELD_USER_LABEL="Utente"
|
||||
PLG_JEM_MAILER_USER_CREATOR_LABEL="Creatore"
|
||||
PLG_JEM_MAILER_USER_EDITOR_LABEL="Creatore"
|
||||
PLG_JEM_MAILER_USER_ATTENDEE_LABEL="Partecipante"
|
||||
@ -0,0 +1,14 @@
|
||||
; @version 2.0.0
|
||||
; @package JEM
|
||||
; @subpackage JEM Mailer Plugin
|
||||
; @copyright (C) 2005-2009 Christoph Lukes
|
||||
; @copyright (C) 2013-2014 joomlaeventmanager.net
|
||||
; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
|
||||
;
|
||||
; All translations can be found at https://www.transifex.com/projects/p/JEM/
|
||||
; Please join the translation team if you want to contribute your changes to the translations
|
||||
;
|
||||
; Note : All ini files need to be saved as UTF-8 - No BOM
|
||||
|
||||
PLG_JEM_MAILER="JEM - Plugin mailer"
|
||||
PLG_JEM_MAILER_XML_DESCRIPTION="JEM Plugin Mailer. JEM is based on Eventlist by Christoph Lukes (http://www.schlu.net)"
|
||||
1225
plugins/jem/mailer/mailer.php
Normal file
1225
plugins/jem/mailer/mailer.php
Normal file
File diff suppressed because it is too large
Load Diff
409
plugins/jem/mailer/mailer.xml
Normal file
409
plugins/jem/mailer/mailer.xml
Normal file
@ -0,0 +1,409 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<extension version="2.5" type="plugin" group="jem" method="upgrade">
|
||||
<name>plg_jem_mailer</name>
|
||||
<creationDate>October 2024</creationDate>
|
||||
<author>JEM Community</author>
|
||||
<authorEmail>info@joomlaeventmanager.net</authorEmail>
|
||||
<authorUrl>https://www.joomlaeventmanager.net</authorUrl>
|
||||
<copyright>copyright (C) 2013-2024 joomlaeventmanager.net</copyright>
|
||||
<license>https://www.gnu.org/licenses/gpl-3.0 GNU/GPL</license>
|
||||
<version>4.3.1</version>
|
||||
<description>PLG_JEM_MAILER_XML_DESCRIPTION</description>
|
||||
|
||||
<files>
|
||||
<filename plugin="mailer">mailer.php</filename>
|
||||
<filename>index.html</filename>
|
||||
<folder>language</folder>
|
||||
</files>
|
||||
<languages>
|
||||
<language tag="en-GB">language/en-GB/plg_jem_mailer.ini</language>
|
||||
<language tag="en-GB">language/en-GB/plg_jem_mailer.sys.ini</language>
|
||||
</languages>
|
||||
|
||||
<config>
|
||||
<fields name="params">
|
||||
<fieldset name="basic" label="PLG_JEM_MAILER_USER_NOTIFICATIONS">
|
||||
<field type="spacer" label="PLG_JEM_MAILER_REGISTRATION"></field>
|
||||
|
||||
<field type="radio" name="reg_mail_user"
|
||||
label="PLG_JEM_MAILER_USER_ATTENDEE_LABEL"
|
||||
default="1"
|
||||
description="PLG_JEM_MAILER_FIELD_REGNOTE_REGISTRATION_USER_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="reg_mail_creator"
|
||||
label="PLG_JEM_MAILER_CREATOR_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_REGISTRATION_CREATOR_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="reg_mail_admin"
|
||||
label="PLG_JEM_MAILER_GLOBAL_FIELD_ADMIN_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_FIELD_REGNOTE_REGISTRATION_ADMIN_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="reg_mail_category"
|
||||
label="PLG_JEM_MAILER_CATEGORY_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_REGISTRATION_CATEGORY_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="reg_mail_group"
|
||||
label="PLG_JEM_MAILER_GROUP_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_REGISTRATION_GROUP_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
|
||||
<field type="spacer"/>
|
||||
<field type="spacer" label="PLG_JEM_MAILER_WAITINGLIST"></field>
|
||||
|
||||
<field type="radio" name="reg_mail_user_onoff"
|
||||
label="PLG_JEM_MAILER_USER_ATTENDEE_LABEL"
|
||||
default="1"
|
||||
description="PLG_JEM_MAILER_SETTINGS_USER_REG_ONOFF_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="reg_mail_creator_onoff"
|
||||
label="PLG_JEM_MAILER_CREATOR_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_REGISTRATION_CREATOR_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="reg_mail_admin_onoff"
|
||||
label="PLG_JEM_MAILER_GLOBAL_FIELD_ADMIN_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_SETTINGS_ADMIN_REG_ONOFF_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="reg_mail_category_onoff"
|
||||
label="PLG_JEM_MAILER_CATEGORY_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_REGISTRATION_CATEGORY_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="reg_mail_group_onoff"
|
||||
label="PLG_JEM_MAILER_GROUP_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_REGISTRATION_GROUP_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
|
||||
<field type="spacer"/>
|
||||
<field type="spacer" label="PLG_JEM_MAILER_UNREGISTRATION"></field>
|
||||
|
||||
<field type="radio" name="unreg_mail_user"
|
||||
label="PLG_JEM_MAILER_USER_ATTENDEE_LABEL"
|
||||
default="1"
|
||||
description="PLG_JEM_MAILER_USER_UNREG_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="unreg_mail_creator"
|
||||
label="PLG_JEM_MAILER_CREATOR_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_REGISTRATION_CREATOR_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="unreg_mail_admin"
|
||||
label="PLG_JEM_MAILER_GLOBAL_FIELD_ADMIN_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_ADMIN_UNREG_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="unreg_mail_category"
|
||||
label="PLG_JEM_MAILER_CATEGORY_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_REGISTRATION_CATEGORY_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="unreg_mail_group"
|
||||
label="PLG_JEM_MAILER_GROUP_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_REGISTRATION_GROUP_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
</fieldset>
|
||||
|
||||
<fieldset name="event_notifications" label="PLG_JEM_MAILER_EVENT_NOTIFICATIONS">
|
||||
<field type="spacer" label="PLG_JEM_MAILER_NEW_EVENT_TITLE"></field>
|
||||
|
||||
<field type="radio" name="newevent_mail_user"
|
||||
label="PLG_JEM_MAILER_USER_CREATOR_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_USER_NEW_EVENT_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="newevent_mail_admin"
|
||||
label="PLG_JEM_MAILER_GLOBAL_FIELD_ADMIN_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_ADMIN_NEW_EVENT_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="newevent_mail_category"
|
||||
label="PLG_JEM_MAILER_CATEGORY_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_NOTIFY_CATEGORY_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="newevent_mail_category_acl"
|
||||
label="PLG_JEM_MAILER_CATEGORY_ACL_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_NOTIFY_ACL_CATEGORY_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="newevent_mail_group"
|
||||
label="PLG_JEM_MAILER_GROUP_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_NEW_EVENT_GROUP"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
|
||||
<field type="spacer"/>
|
||||
<field type="spacer" label="PLG_JEM_MAILER_EDIT_EVENT_TITLE"></field>
|
||||
|
||||
<field type="radio" name="editevent_mail_user"
|
||||
label="PLG_JEM_MAILER_USER_EDITOR_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_USER_EDIT_EVENT_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="editevent_mail_creator"
|
||||
label="PLG_JEM_MAILER_CREATOR_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_NOTIFY_CREATOR_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="editevent_mail_admin"
|
||||
label="PLG_JEM_MAILER_GLOBAL_FIELD_ADMIN_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_ADMIN_EDIT_EVENT_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="editevent_mail_registered"
|
||||
label="PLG_JEM_MAILER_REGISTERED_EDIT_EVENT"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_REGISTERED_EDIT_EVENT_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="editevent_mail_category"
|
||||
label="PLG_JEM_MAILER_CATEGORY_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_NOTIFY_CATEGORY_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="editevent_mail_category_acl"
|
||||
label="PLG_JEM_MAILER_CATEGORY_ACL_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_NOTIFY_CATEGORY_ACL_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="editevent_mail_group"
|
||||
label="PLG_JEM_MAILER_GROUP_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_EDIT_EVENT_GROUP"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
</fieldset>
|
||||
|
||||
<fieldset name="venue_notifications" label="PLG_JEM_MAILER_VENUE_NOTIFICATIONS">
|
||||
<field type="spacer" label="PLG_JEM_MAILER_NEW_VENUE_TITLE"></field>
|
||||
|
||||
<field type="radio" name="newvenue_mail_user"
|
||||
label="PLG_JEM_MAILER_USER_CREATOR_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_USER_NEW_VENUE_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="newvenue_mail_admin"
|
||||
label="PLG_JEM_MAILER_GLOBAL_FIELD_ADMIN_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_ADMIN_NEW_VENUE_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
|
||||
<field type="spacer"/>
|
||||
<field type="spacer" label="PLG_JEM_MAILER_EDIT_VENUE_TITLE"></field>
|
||||
|
||||
<field type="radio" name="editvenue_mail_user"
|
||||
label="PLG_JEM_MAILER_USER_EDITOR_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_USER_EDIT_VENUE_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="editvenue_mail_creator"
|
||||
label="PLG_JEM_MAILER_CREATOR_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_NOTIFY_CREATOR_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="editvenue_mail_ev-creator"
|
||||
label="PLG_JEM_MAILER_VENUE_EV_CREATOR_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_VENUE_EV_CREATOR_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="editvenue_mail_admin"
|
||||
label="PLG_JEM_MAILER_GLOBAL_FIELD_ADMIN_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_ADMIN_EDIT_VENUE_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="editvenue_mail_registered"
|
||||
label="PLG_JEM_MAILER_REGISTERED_EDIT_VENUE"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_REGISTERED_EDIT_VENUE_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="editvenue_mail_category"
|
||||
label="PLG_JEM_MAILER_CATEGORY_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_EDIT_VENUE_CATEGORY_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="radio" name="editvenue_mail_group"
|
||||
label="PLG_JEM_MAILER_GROUP_LABEL"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_EDIT_VENUE_GROUP"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
</fieldset>
|
||||
|
||||
<fieldset name="admin_options" label="PLG_JEM_MAILER_ADMIN_OPTIONS">
|
||||
<field type="radio" name="fetch_admin_mails"
|
||||
label="PLG_JEM_MAILER_ALL_ADMINS"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_ALL_ADMINS_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
<field type="textarea" name="admin_receivers"
|
||||
label="PLG_JEM_MAILER_ADMIN_MAIL_RECEIVERS"
|
||||
default=""
|
||||
description="PLG_JEM_MAILER_ADMIN_MAIL_RECEIVERS_DESC"
|
||||
rows="5"
|
||||
cols="20"
|
||||
/>
|
||||
<field type="radio" name="send_html"
|
||||
label="PLG_JEM_MAILER_SENDHTML"
|
||||
default="0"
|
||||
description="PLG_JEM_MAILER_SENDHTML_DESC"
|
||||
class="btn-group btn-group-yesno"
|
||||
>
|
||||
<option value="1">JYES</option>
|
||||
<option value="0">JNO</option>
|
||||
</field>
|
||||
</fieldset>
|
||||
</fields>
|
||||
</config>
|
||||
</extension>
|
||||
Reference in New Issue
Block a user