mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 06:27:52 +00:00
Liste Spielverlegungen in Frontend
This commit is contained in:
@@ -21,12 +21,13 @@ COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_TEAMS_JOINT="Mannschaften in gem
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_CLUBS="Vereine"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_VENUES="Spielorte"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_APPOINTMENTS="Termine"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_MATCH_RESCHEDULING="Spielverlegungen"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_TITLE="Titel"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_TITLE_DESC="Titel, der im Fenster oben angezeigt wird"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_DESCRIPTION="Beschreibung"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_DESCRIPTION_DESC="Beschreibung, die unterhalb des Titels angezeigt wird (WICHTIG: Werden HTML-Tags verwendet, müssen auch Umlaute in HTML-Code angeben werden)"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_CATEGORIES="Kategorien"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_CATEGORIES_DESC="Eine optionale Auswahl an durch Kommata getrennte Kategorienummern"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_CATEGORIES_DESC="Eine optionale Auswahl von Kategorienummern durch Kommata oder Spiegelstrich getrennt"
|
||||
COM_SPORTSMANAGER_LAYOUT_ELO_RANKING_TITLE="Layout: Elo-Rangliste"
|
||||
COM_SPORTSMANAGER_LAYOUT_ELO_RANKING_DESC="Auflistung der Spieler sortiert nach Elo-Wertung"
|
||||
COM_SPORTSMANAGER_LAYOUT_ELO_RANKING_OPTION_ELO_RANKING="Elo-Rangliste"
|
||||
|
||||
@@ -21,12 +21,13 @@ COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_TEAMS_JOINT="Teams in joint list
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_CLUBS="Clubs"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_VENUES="Venues"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_APPOINTMENTS="Appointments"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_MATCH_RESCHEDULING="Match reschedulings"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_TITLE="Title"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_TITLE_DESC="Title which will be shows on top"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_DESCRIPTION="Description"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_DESCRIPTION_DESC="Description that will be shows below the titel (IMPORTANT: if html tags are used, special characters must be maskeraded)"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_CATEGORIES="Categories"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_CATEGORIES_DESC="An optional selection of category numbers seperated by commas"
|
||||
COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_CATEGORIES_DESC="An optional selection of category numbers seperated by commas or bullet point"
|
||||
COM_SPORTSMANAGER_LAYOUT_ELO_RANKING_TITLE="Layout: elo ranking"
|
||||
COM_SPORTSMANAGER_LAYOUT_ELO_RANKING_DESC="Listing of players sorted by elo rating"
|
||||
COM_SPORTSMANAGER_LAYOUT_ELO_RANKING_OPTION_ELO_RANKING="Elo ranking"
|
||||
|
||||
@@ -1038,6 +1038,8 @@ if ($task == "spielerbild") {
|
||||
adminTermine(0);
|
||||
break;
|
||||
}
|
||||
} else if ($content == 'spielverlegungen') {
|
||||
spielverlegungen();
|
||||
} else if ($content == 'login') {
|
||||
userAuth();
|
||||
} else if ($content == 'login_refresh') {
|
||||
@@ -4094,6 +4096,85 @@ function spielort(): void
|
||||
HTML_sportsmanager::iCalBegegnungen(SportsManagerURL('&task=spielort_begegnungen_ical&id=' . $id));
|
||||
}
|
||||
|
||||
function spielverlegungen(): void
|
||||
{
|
||||
$db = getDatabase();
|
||||
global $params;
|
||||
$jInput = Factory::getContainer()->get(SiteApplication::class)->input;
|
||||
$filter_status = $jInput->get('filter_status', '', 'RAW');
|
||||
|
||||
if (empty($filter_status))
|
||||
$filter_status = "offen,genehmigt,abgelehnt";
|
||||
|
||||
$query = "SELECT"
|
||||
. "\n t1.begegnung_id, t1.beantragt, t1.Begruendung AS Begruendung_beantragt, t1.Termin_alt,"
|
||||
. "\n t2.genehmigt, t2.Termin_neu, t2.Begruendung AS Begruendung_genehmigt,"
|
||||
. "\n t3.abgelehnt, t3.Begruendung AS Begruendung_abgelehnt,"
|
||||
. "\n t5.teamname AS Heim, t6.teamname AS Gast, t7.bezeichnung AS Liga, t8.teamname AS beantragt_von,"
|
||||
|
||||
// Ermittlung Status
|
||||
. "\n CASE"
|
||||
. "\n WHEN t3.abgelehnt IS NOT NULL AND (t2.genehmigt IS NULL OR t3.abgelehnt > t2.genehmigt)"
|
||||
. "\n THEN 'abgelehnt'"
|
||||
. "\n WHEN t2.genehmigt IS NOT NULL"
|
||||
. "\n THEN 'genehmigt'"
|
||||
. "\n ELSE 'offen'"
|
||||
. "\n END AS status"
|
||||
|
||||
// Beantragt
|
||||
. "\n FROM ("
|
||||
. "\n SELECT begegnung_id,"
|
||||
. "\n MIN(eingetragen) AS beantragt,"
|
||||
. "\n MIN(zeitpunkt) AS Termin_alt,"
|
||||
. "\n MAX(kommentar) AS Begruendung,"
|
||||
. "\n MAX(team_id) AS team_id"
|
||||
. "\n FROM #__sportsmanager_begegnung_historie"
|
||||
. "\n WHERE aktion IN (2,3)"
|
||||
. "\n GROUP BY begegnung_id"
|
||||
. "\n ) AS t1"
|
||||
|
||||
// Genehmigt
|
||||
. "\n LEFT JOIN ("
|
||||
. "\n SELECT begegnung_id,"
|
||||
. "\n MAX(eingetragen) AS genehmigt,"
|
||||
. "\n MAX(zeitpunkt) AS Termin_neu,"
|
||||
. "\n MAX(kommentar) AS Begruendung"
|
||||
. "\n FROM #__sportsmanager_begegnung_historie"
|
||||
. "\n WHERE aktion = 1"
|
||||
. "\n GROUP BY begegnung_id"
|
||||
. "\n ) AS t2 ON t2.begegnung_id = t1.begegnung_id"
|
||||
|
||||
// Abgelehnt
|
||||
. "\n LEFT JOIN ("
|
||||
. "\n SELECT begegnung_id,"
|
||||
. "\n MAX(eingetragen) AS abgelehnt,"
|
||||
. "\n MAX(kommentar) AS Begruendung"
|
||||
. "\n FROM #__sportsmanager_begegnung_historie"
|
||||
. "\n WHERE aktion = 10"
|
||||
. "\n GROUP BY begegnung_id"
|
||||
. "\n ) AS t3 ON t3.begegnung_id = t1.begegnung_id"
|
||||
|
||||
// Sonstige Infos
|
||||
. "\n LEFT JOIN #__sportsmanager_begegnung AS t4 ON t4.begegnung_id = t1.begegnung_id"
|
||||
. "\n LEFT JOIN #__sportsmanager_team AS t5 ON t5.team_id = t4.heim_team_id"
|
||||
. "\n LEFT JOIN #__sportsmanager_team AS t6 ON t6.team_id = t4.gast_team_id"
|
||||
. "\n LEFT JOIN #__sportsmanager_veranstaltung AS t7 ON t7.veranstaltung_id = t5.veranstaltung_id"
|
||||
. "\n LEFT JOIN #__sportsmanager_team AS t8 ON t8.team_id = t1.team_id"
|
||||
|
||||
// Filter
|
||||
. "\n " . kategorieFilter("WHERE t7.kategorie IN")
|
||||
. "\n HAVING status in ('" . str_replace(",", "','", $filter_status) . "')"
|
||||
. "\n ORDER BY t1.beantragt DESC;";
|
||||
|
||||
$spielverlegungen = loadObjectList($db, $query);
|
||||
|
||||
if (isJson()) {
|
||||
echo json_encode($spielverlegungen);
|
||||
} else {
|
||||
HTML_sportsmanager::spielverlegungen($params->get('titel'), $params->get('beschreibung'), $spielverlegungen);
|
||||
}
|
||||
}
|
||||
|
||||
function begegnungSpielplan($teamansicht = false): void
|
||||
{
|
||||
$db = getDatabase();
|
||||
@@ -4280,7 +4361,11 @@ function begegnungVerlegenForm(): void
|
||||
die("Missing id!");
|
||||
$aus_uebersicht = $jInput->get('aus_uebersicht', 0, 'INT');
|
||||
|
||||
$query = "SELECT #__sportsmanager_veranstaltung.*, initial_ohne_termin, keine_gegenvorschlaege, vorlaufzeit_tage, termine_minimal, termine_maximal, ablehnen FROM #__sportsmanager_veranstaltung LEFT JOIN #__sportsmanager_verschieberegel USING (verschieberegel_id) WHERE veranstaltung_id = $veranstaltungid";
|
||||
$query = "SELECT #__sportsmanager_veranstaltung.*, initial_ohne_termin, keine_gegenvorschlaege, vorlaufzeit_tage,"
|
||||
. "\n termine_minimal, termine_maximal, ablehnen, begruendung_erforderlich"
|
||||
. "\n FROM #__sportsmanager_veranstaltung LEFT JOIN #__sportsmanager_verschieberegel USING (verschieberegel_id)"
|
||||
. "\n WHERE veranstaltung_id = $veranstaltungid";
|
||||
|
||||
$rows = loadObjectList($db, $query);
|
||||
if (count($rows) < 1)
|
||||
die("Wrong id!");
|
||||
@@ -4364,6 +4449,7 @@ function begegnungVerlegen(): void
|
||||
$aus_uebersicht = $jInput->get('aus_uebersicht', 0, 'INT');
|
||||
$angefordert = $jInput->get('anfordern', false, 'BOOL');
|
||||
$abgelehnt = $jInput->get('ablehnen', false, 'BOOL');
|
||||
$verlegungsgrund = $jInput->get('verlegungsgrund', '', 'RAW');
|
||||
|
||||
if ($jInput->get('cancel', false, 'BOOL')) {
|
||||
redirectSportsManagerURL('&task=' . ($aus_uebersicht ? 'veranstaltungen' : 'veranstaltung') . '&veranstaltungid=' . $veranstaltungId);
|
||||
@@ -4431,7 +4517,7 @@ function begegnungVerlegen(): void
|
||||
$aktueller_zeitpunkt = date('Y-m-d H:i:s');
|
||||
if (count($verlegen_aktionen) == 0 || $verlegen_aktionen[0]->aktion == 1 || $verlegen_aktionen[0]->aktion == 5 || $verlegen_aktionen[0]->aktion == 10) {
|
||||
$query = "INSERT INTO #__sportsmanager_begegnung_historie (begegnung_id, aktion, zeitpunkt, user_id, team_id, verantwortlich_team_id, kommentar, eingetragen)"
|
||||
. "\n VALUES ($id, 2, '$begegnung->zeitpunkt', NULL, NULL, NULL, NULL, '$aktueller_zeitpunkt');";
|
||||
. "\n VALUES ($id, 2, '$begegnung->zeitpunkt', '$user_id', '$vorschlagendes_team_id', '" . ($vorschlagendes_team_id == $begegnung->heim_team_id ? $begegnung->gast_team_id : $begegnung->heim_team_id) . "', '$verlegungsgrund', '$aktueller_zeitpunkt');";
|
||||
$db->setQuery($query);
|
||||
if (!$db->execute()) {
|
||||
abortWithError($db->stderr(true));
|
||||
@@ -4440,7 +4526,7 @@ function begegnungVerlegen(): void
|
||||
|
||||
if ($angefordert) {
|
||||
$query = "INSERT INTO #__sportsmanager_begegnung_historie (begegnung_id, aktion, zeitpunkt, user_id, team_id, verantwortlich_team_id, kommentar, eingetragen)"
|
||||
. "\n VALUES ($id, 3, NULL, '$user_id', '$vorschlagendes_team_id', '" . ($vorschlagendes_team_id == $begegnung->heim_team_id ? $begegnung->gast_team_id : $begegnung->heim_team_id) . "', NULL, '$aktueller_zeitpunkt');";
|
||||
. "\n VALUES ($id, 3, NULL, '$user_id', '$vorschlagendes_team_id', '" . ($vorschlagendes_team_id == $begegnung->heim_team_id ? $begegnung->gast_team_id : $begegnung->heim_team_id) . "', '$verlegungsgrund', '$aktueller_zeitpunkt');";
|
||||
$db->setQuery($query);
|
||||
if (!$db->execute()) {
|
||||
abortWithError($db->stderr(true));
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
<option value="vereine"><![CDATA[COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_CLUBS]]></option>
|
||||
<option value="spielorte"><![CDATA[COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_VENUES]]></option>
|
||||
<option value="termine"><![CDATA[COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_APPOINTMENTS]]></option>
|
||||
<option value="spielverlegungen"><![CDATA[COM_SPORTSMANAGER_LAYOUT_GENERAL_CONTENT_OPTION_MATCH_RESCHEDULING]]></option>
|
||||
</field>
|
||||
<field name="titel"
|
||||
type="text"
|
||||
|
||||
@@ -3929,6 +3929,76 @@ static function spielort($spielort, $begegnung_zeitpunkt, $aktuelle_teams, $vorh
|
||||
}
|
||||
}
|
||||
|
||||
static function spielverlegungen($titel, $beschreibung, $rows): void
|
||||
{
|
||||
global $params;
|
||||
if (!empty($titel)) { ?>
|
||||
<style>td{padding: 3px;}</style>
|
||||
<div
|
||||
class="componentheading<?php echo $params->get('pageclass_sfx'); ?>"><?php echo htmlentities_utf8($titel); ?></div><?php }
|
||||
if (!empty($beschreibung)) {
|
||||
?>
|
||||
<div class="uk-overflow-auto">
|
||||
<table class="contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
|
||||
<tr>
|
||||
<td><?php echo str_contains($beschreibung, ">") ? $beschreibung : htmlentities_utf8($beschreibung); ?></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<div class="uk-overflow-auto">
|
||||
<table class="uk-table-shrink contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>" style='width: 900px;'>
|
||||
<tr class="sectiontableheader<?php echo $params->get('pageclass_sfx'); ?>">
|
||||
<th nowrap style='text-align: center; width: 120px;'><STRONG><?php echo Text::_('COM_SPORTSMANAGER_OLD_DATE'); ?></STRONG></th>
|
||||
<th nowrap style='text-align: center; width: 180px;'><STRONG><?php echo Text::_('COM_SPORTSMANAGER_COMPETITION'); ?></STRONG></th>
|
||||
<th nowrap style='text-align: center; width: 200px;'><STRONG><?php echo Text::_('COM_SPORTSMANAGER_MATCH'); ?></STRONG></th>
|
||||
<th nowrap style='text-align: center; width: 120px;'><STRONG><?php echo Text::_('COM_SPORTSMANAGER_NEW_DATE'); ?></STRONG></th>
|
||||
<th nowrap style='text-align: left; width: 280px;'><STRONG><?php echo Text::_('COM_SPORTSMANAGER_COMMENT'); ?></STRONG></th>
|
||||
</tr>
|
||||
<?php
|
||||
if (count($rows) > 0) {
|
||||
$k = 0;
|
||||
foreach ($rows as $row) {
|
||||
?>
|
||||
<tr class="sectiontableentry<?php echo $k + 1;
|
||||
$k = ($k + 1) % 2; ?><?php echo $params->get('pageclass_sfx'); ?>">
|
||||
<td nowrap style='text-align: center;'>
|
||||
<?php echo str_replace(" ", "<br>", $row->Termin_alt); ?>
|
||||
</td>
|
||||
<td nowrap style='text-align: center;'>
|
||||
<?php echo htmlentities_utf8($row->Liga); ?>
|
||||
</td>
|
||||
<td nowrap style='text-align: center;'>
|
||||
<?php
|
||||
if ($row->Heim == $row->beantragt_von)
|
||||
echo "<u>" . htmlentities_utf8($row->Heim) . "</u>";
|
||||
else
|
||||
echo htmlentities_utf8($row->Heim);
|
||||
echo "<br>";
|
||||
if ($row->Gast == $row->beantragt_von)
|
||||
echo "<u>" . htmlentities_utf8($row->Gast) . "</u>";
|
||||
else
|
||||
echo htmlentities_utf8($row->Gast);
|
||||
?>
|
||||
</td>
|
||||
<td nowrap style='text-align: center;'>
|
||||
<?php echo str_replace(" ", "<br>", $row->Termin_neu); ?>
|
||||
</td>
|
||||
<td nowrap style='text-align: left;'>
|
||||
<?php echo htmlentities_utf8($row->Begruendung_beantragt); ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
</table></div>
|
||||
<span class="article_seperator<?php echo $params->get('pageclass_sfx'); ?>"> </span>
|
||||
<?php
|
||||
}
|
||||
|
||||
static function spieler($beschreibung, $rows, $sortierung, $statistik, $beginn, $kategorie, $filter, $veranstaltungid, $einstufungid, $veranstaltungen, $veranstalterid, $veranstalter, $einstufungen, $details_anzeigen): void
|
||||
{
|
||||
global $params;
|
||||
@@ -5190,7 +5260,22 @@ function begegnungVerlegen($veranstaltung, $begegnung, $heim_team, $gast_team, $
|
||||
return anzahl_termine >= termine_minimal;
|
||||
}
|
||||
</script>
|
||||
<?PHP if ($veranstaltung->begruendung_erforderlich && empty($verlegen_aktionen)){ ?>
|
||||
<tr>
|
||||
<td nowrap style="width: 20%; text-align: right">
|
||||
<label
|
||||
for="reason"><?php echo Text::_('COM_SPORTSMANAGER_REASON_GAME_APPOINTMENT'); ?>
|
||||
:</label>
|
||||
</td>
|
||||
<td nowrap>
|
||||
<input class="inputbox" type="text"
|
||||
name="verlegungsgrund"
|
||||
id="reason"
|
||||
size="100" maxlength="255"/>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
for ($termin = 1;
|
||||
$termin <= $anzahl_moegliche_termine;
|
||||
$termin++) {
|
||||
@@ -5330,35 +5415,35 @@ function begegnungVerlegen($veranstaltung, $begegnung, $heim_team, $gast_team, $
|
||||
$anzahl_moegliche_termine = $veranstaltung->termine_maximal == 0 ? 3 : $veranstaltung->termine_maximal;
|
||||
for ($termin = 1;
|
||||
$termin <= count($termine);
|
||||
$termin++) {
|
||||
?>
|
||||
<tr>
|
||||
<td nowrap style="width: 20%; text-align: right">
|
||||
<?php echo $termin; ?>
|
||||
. <?php echo Text::_('COM_SPORTSMANAGER_PROPOSAL'); ?>:
|
||||
</td>
|
||||
<td nowrap>
|
||||
<?php echo htmlentities_utf8(FormatiertesDatum($termine[$termin - 1]->zeitpunkt)); ?>
|
||||
<input type="submit" name="akzeptieren"
|
||||
value="<?php echo Text::_('COM_SPORTSMANAGER_ACCEPT'); ?>"
|
||||
class="button"
|
||||
onclick="document.adminForm.task.value='begegnung_verlegen_bestaetigen'; document.adminForm.begegnung_historie_id.value='<?php echo $termine[$termin - 1]->begegnung_historie_id; ?>'; return true;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
if (!empty($termine[$termin - 1]->kommentar)) {
|
||||
$termin++) {
|
||||
?>
|
||||
<tr>
|
||||
<td nowrap style="width: 20%; text-align: right">
|
||||
<?php echo Text::_('COM_SPORTSMANAGER_COMMENT'); ?>:
|
||||
</td>
|
||||
<td nowrap>
|
||||
<?php echo htmlentities_utf8($termine[$termin - 1]->kommentar); ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
<tr>
|
||||
<td nowrap style="width: 20%; text-align: right">
|
||||
<?php echo $termin; ?>
|
||||
. <?php echo Text::_('COM_SPORTSMANAGER_PROPOSAL'); ?>:
|
||||
</td>
|
||||
<td nowrap>
|
||||
<?php echo htmlentities_utf8(FormatiertesDatum($termine[$termin - 1]->zeitpunkt)); ?>
|
||||
<input type="submit" name="akzeptieren"
|
||||
value="<?php echo Text::_('COM_SPORTSMANAGER_ACCEPT'); ?>"
|
||||
class="button"
|
||||
onclick="document.adminForm.task.value='begegnung_verlegen_bestaetigen'; document.adminForm.begegnung_historie_id.value='<?php echo $termine[$termin - 1]->begegnung_historie_id; ?>'; return true;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
if (!empty($termine[$termin - 1]->kommentar)) {
|
||||
?>
|
||||
<tr>
|
||||
<td nowrap style="width: 20%; text-align: right">
|
||||
<?php echo Text::_('COM_SPORTSMANAGER_COMMENT'); ?>:
|
||||
</td>
|
||||
<td nowrap>
|
||||
<?php echo htmlentities_utf8($termine[$termin - 1]->kommentar); ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
|
||||
@@ -1060,3 +1060,6 @@ COM_SPORTSMANAGER_MULTIPLIER="Multiplikator"
|
||||
COM_SPORTSMANAGER_ADDITIONAL_INFORMATION="Weitere Angaben"
|
||||
COM_SPORTSMANAGER_EMAIL_WAS_SEND="Die E-Mail wurde erfolgreich versendet"
|
||||
COM_SPORTSMANAGER_EMAIL_WAS_NOT_SEND="Die E-Mail wurde nicht versendet"
|
||||
COM_SPORTSMANAGER_OLD_DATE="Alter Termin"
|
||||
COM_SPORTSMANAGER_NEW_DATE="Neuer Termin"
|
||||
COM_SPORTSMANAGER_REASON_GAME_APPOINTMENT="Verlegungsgrund"
|
||||
@@ -1060,3 +1060,6 @@ COM_SPORTSMANAGER_MULTIPLIER="Multiplier"
|
||||
COM_SPORTSMANAGER_ADDITIONAL_INFORMATION="Additional information"
|
||||
COM_SPORTSMANAGER_EMAIL_WAS_SEND="E-Mail was succesfully sent"
|
||||
COM_SPORTSMANAGER_EMAIL_WAS_NOT_SEND="E-Mail was not sent"
|
||||
COM_SPORTSMANAGER_OLD_DATE="Old Date"
|
||||
COM_SPORTSMANAGER_NEW_DATE="New Date"
|
||||
COM_SPORTSMANAGER_REASON_GAME_APPOINTMENT="Appointment reason"
|
||||
Reference in New Issue
Block a user