// Add points from deleted accounts to jackpot, but here just add to notify mail
if ($admin_points > 0) {
// Send mail to admin
- sendAdminNotification('{--ADMIN_AUTOPURGE_SUBJECT--}', 'admin_autopurge_points', translateComma($admin_points));
+ sendAdminNotification('{--ADMIN_AUTOPURGE_SUBJECT--}', 'admin_autopurge_points', $admin_points);
} // END - if
// Run all SQLs here
runFilterChain('run_sqls');
} // END - if
-//
+// [EOF]
?>
case 'update': // Update an extension
switch (getCurrentExtensionVersion()) {
case '0.1.0': // SQL queries for v0.1
- addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD order_max_full ENUM('ORDER','MAX') NOT NULL DEFAULT 'MAX'");
+ addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `order_max_full` ENUM('ORDER','MAX') NOT NULL DEFAULT 'MAX'");
addAdminMenuSql('setup','config_order','Mailbuchungsseite','Einstellungen am Mailbuchungsformular.',7);
// Update notes (these will be set as task text!)
'MEMBER_WERNIS_MODE_CHOOSE2' => "Hier klicken um neue Überweisung zu starten...",
'MEMBER_WERNIS_NO_ACCOUNT' => "Noch kein WDS66-Account? Hier entlang.",
'MEMBER_WERNIS_API_DATA_MISSING' => "Diese Funktion kann derzeit nicht genutzt werden, da wir sie noch einrichten müssen.",
- 'MEMBER_WERNIS_MIN_PAYOUT' => "Sie haben nicht genügend Wernis zum Auszahlen! Mindestens: <span class=\"data\">%s</span>, Ihr Guthaben: <span class=\"data\">%s</span> Wernis.",
+ 'MEMBER_WERNIS_MIN_PAYOUT' => "Sie haben nicht genügend Wernis zum Auszahlen! Mindestens: <span class=\"data\">{%%config,translateComma=wernis_min_payout%%} {?POINTS?}</span>, Ihr Guthaben: <span class=\"data\">{%%pipe,translateComma=%s%%}</span> {?POINTS?}.",
'MEMBER_WERNIS_WITHDRAW_TITLE' => "Wernis bei {?MAIN_TITLE?} einzahlen:",
'MEMBER_WERNIS_WITHDRAW_POINTS_ACCOUNT' => "Wernis hier im Account:",
'MEMBER_WERNIS_WITHDRAW_MIN_POINTS' => "Mindest einzuzahlendes Wernis-Guthaben:",
$return = '{--MEMBER_SURFBAR_UNLIMITED_VIEWS--}';
} else {
// Translate comma
- $return = translateComma($limit);
+ $return = '{%pipe,translateComma=' . $limit . '%}';
}
// Return value
// Prepare content for notification routines
$data[$urlId]['url_userid'] = $data[$urlId]['url_userid'];
- $data[$urlId]['frametester'] = generateFrametesterUrl($data[$urlId]['url']);
- $data[$urlId]['reward'] = translateComma(getConfig('surfbar_static_reward'));
- $data[$urlId]['costs'] = translateComma(getConfig('surfbar_static_costs'));
+ $data[$urlId]['frametester'] = '{%pipe,generateFrametesterUrl=' . $data[$urlId]['url'] . '%}';
+ $data[$urlId]['reward'] = '{%config,translateComma=surfbar_static_reward%}';
+ $data[$urlId]['costs'] = '{%config,translateComma=surfbar_static_costs%}';
// Do some dirty fixing here:
if (($data[$urlId]['url_status'] == 'STOPPED') && ($newStatus == 'pending')) {
// Do we have unconfirmed mails?
if ($unconfirmed > 0) {
// Add link to list_unconfirmed what-file
- $OUT = '<a href="{%url=modules.php?module=admin&what=list_unconfirmed&' . $type . '=' . $id . '%}">' . translateComma($unconfirmed) . '</a>';
+ $OUT = '<a href="{%url=modules.php?module=admin&what=list_unconfirmed&' . $type . '=' . $id . '%}">{%pipe,translateComma=' . $unconfirmed . '%}</a>';
} // END - if
// Return it
// List already existing categories for editing
while ($content = SQL_FETCHARRAY($result)) {
- // Prepare data for the row template
- $content['percents'] = translateComma($content['percents']);
-
// Load row template and switch color
$OUT .= loadTemplate('admin_list_reflevel_row', true, $content);
} // END - while
if (getConfig('repay_deleted_mails') == 'REPAY') {
// Repayed
loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_POINTS_REPAYED',
- translateComma($totalPoints)
+ '{%pipe,translateComma=' . $totalPoints . '%}'
));
} else {
// To jackpot
loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_POINTS_TO_JACKPOT',
- translateComma($totalPoints)
+ '{%pipe,translateComma=' . $totalPoints . '%}'
));
}
} else {
// Points shredded!
- loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_POINTS_SHREDDED', translateComma($totalPoints)));
+ loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_POINTS_SHREDDED', '{%pipe,translateComma=' . $totalPoints . '%}'));
}
// Remove links from DB
$content['rows'] = $OUT;
// Remeber total amount
-$content['total'] = translateComma($total);
+$content['total'] = $total;
// Set title
$content['title'] = '{--TRANSFER_LIST_ALL--}';
} // END - while
$content['rows'] = $OUT;
- $content['total'] = translateComma($total);
+ $content['total'] = $total;
// Check if we need to display form or not with manuel withdraw
if (getConfig('last_month') == getMonth()) {
} // END - while
$content['rows'] = $OUT;
- $content['total'] = translateComma($total);
+ $content['total'] = $total;
// Check if we need to display form or not with manuel withdraw
if (getConfig('last_month') == getMonth()) {
// Add links to the numbers
if ($content['links'] > 0) $content['links'] = $base . '&what=list_links&userid=' . $userid . '%}">' . $content['links'] . '</a>]';
if (isValidUserId($content['refid'])) $content['refid'] = $base . '&what=list_user&userid=' . $content['refid'] . '%}">'.$content['refid'] . '</a>]';
- if ($content['refs'] > 0) $content['refs'] = $base . '&what=list_refs&userid=' . $userid . '%}">' . translateComma($content['refs']) . '</a>]';
- if ($content['cats'] > 0) $content['cats'] = $base . '&what=list_cats&userid=' . $userid . '%}">' . translateComma($content['cats']) . '</a>]';
+ if ($content['refs'] > 0) $content['refs'] = $base . '&what=list_refs&userid=' . $userid . '%}">{%pipe,translateComma=' . $content['refs'] . '%}</a>]';
+ if ($content['cats'] > 0) $content['cats'] = $base . '&what=list_cats&userid=' . $userid . '%}">{%pipe,translateComma=' . $content['cats'] . '%}</a>]';
// Calculate timestamp for birthday
$stamp = mktime(0, 0, 0, $content['birth_month'], $content['birth_day'], $content['birth_year']);
// Prepare data for template
$content['email_link'] = generateEmailLink($content['email'], 'user_data');
$content['last_online'] = generateDateTime($content['last_online'], 0);
- if ($content['emails_sent'] > 0) $content['emails_sent'] = $base . '&what=email_details&userid=' . $userid . '%}">' . translateComma($content['emails_sent']) . '</a>]';
+ if ($content['emails_sent'] > 0) $content['emails_sent'] = $base . '&what=email_details&userid=' . $userid . '%}">}{%pipe,translateComma=' . $content['emails_sent'] . '%}</a>]';
$content['joined'] = generateDateTime($content['joined'], 0);
$content['last_update'] = generateDateTime($content['last_update'], 0);
$content['last_profile_sent'] = generateDateTime($content['last_profile_sent'], 0);
$content['locked'] = countSumTotalData($content['userid'], 'user_points', 'locked_points');
// If we have at least one referal, make it clickable to referal list
- if ($content['refs'] > 0) $content['refs'] = $base . '&what=list_refs&userid=' . $content['userid'] . '%}">' . translateComma($content['refs']) . '</a>]';
+ if ($content['refs'] > 0) $content['refs'] = $base . '&what=list_refs&userid=' . $content['userid'] . '%}">{%pipe,translateComma=' . $content['refs'] . '%}</a>]';
// Is the extension 'country' installed?
// @TODO Rewrite this into a filter
addNewBonusMail(postRequestArray(), getRequestParameter('mode'));
} else {
// Get all available users
- $content['all'] = translateComma(getTotalReceivers(getRequestParameter('mode')));
+ $content['all'] = getRequestParameter('mode');
// Prepare option lines
- $content['options_lines'] = generateCategoryOptionsList(getRequestParameter('mode'));
+ $content['options_lines'] = getRequestParameter('mode');
// Store send mode
$content['mode'] = getRequestParameter('mode');
if (isExtensionActive('jackpot')) $jackpot = getJackpotPoints();
if (empty($jackpot)) $jackpot = '0';
-$content['jackpot'] = translateComma($jackpot);
+$content['jackpot'] = $jackpot;
// Total referal link clicks, total logins
$result = SQL_QUERY('SELECT
SQL_FREERESULT($result);
// Output user's points
- $content['total'] = translateComma($total);
+ $content['total'] = $total;
// Check how many mail orders he has placed today and how many he's allowed to send
switch (getConfig('order_max_full')) {
// Mail type
$content['type_selection'] = '';
foreach ($types as $key => $value) {
- $P = translateComma($types[$key][1]);
if (is_array($value)) {
// Output option line
$content['type_selection'] .= ' <option value="' . $types[$key][0] . '"';
if (($OLD_ORDER) && ($content['payment_id'] == $types[$key][0])) $content['type_selection'] .= ' selected="selected"';
- $content['type_selection'] .= '>' . $P . ' {--PER_MAIL--} - ' . $types[$key][3] . ' - ' . round($types[$key][2]) . ' {--PAYMENT--}</option>';
+ $content['type_selection'] .= '>{%pipe,translateComma=' . $types[$key][1] . '%} {--PER_MAIL--} - ' . $types[$key][3] . ' - ' . round($types[$key][2]) . ' {--PAYMENT--}</option>';
} // END - if
} // END - foreach
// Ok, he can get be paid
if ((isFormSent()) && ($points <= $PAY_MAX) && ($points >= $content['min_points'])) {
// Remember points in array
- setPostRequestParameter('payout_points', translateComma($points));
+ setPostRequestParameter('payout_points', $points);
setPostRequestParameter('type' , $content['type']);
// Subtract points from member's account
// "Translate"/insert data
if ($content['views_total'] > 0) {
// Include link to stats
- $content['views_total'] = '[<a href="{%url=modules.php?module=login&what=surfbar_list%}">' . translateComma($content['views_total']) . '</a>]';
+ $content['views_total'] = '[<a href="{%url=modules.php?module=login&what=surfbar_list%}">{%pipe,translateComma=' . $content['views_total'] . '%}</a>]';
} // END - if
$content['url_registered'] = generateDateTime($content['url_registered'], 2);
$content['url_last_locked'] = generateDateTime($content['url_last_locked'], 2);
$content['rows'] = $OUT;
// Remeber total amount
- $content['total'] = translateComma($totalPoints);
+ $content['total'] = $totalPoints;
// Load final template
loadTemplate('member_transfer_list', false, $content);
// Prepare content for template
$content['time'] = generateDateTime($content['time_trans'], 3);
- $content['points'] = translateComma($content['points']);
// Load row template
$OUT .= loadTemplate('member_transfer_row', true, $content);
$content['rows'] = $OUT;
// Remeber total amount
- $content['total'] = translateComma($total);
+ $content['total'] = $total;
// Set title
$content['title'] = '{--TRANSFER_LIST_ALL--}';
// Is this enougth for a payout?
if ($points < getConfig('wernis_min_payout')) {
// No, then abort here
- loadTemplate('admin_settings_saved', false, sprintf(
- getMessage('MEMBER_WERNIS_MIN_PAYOUT'),
- translateComma(getConfig('wernis_min_payout')),
- translateComma($points)
- ));
+ loadTemplate('admin_settings_saved', false, '{%message,MEMBER_WERNIS_MIN_PAYOUT=' . $points . '%}');
return;
} // END - if
// Add points to content array
$content['points'] = $points;
-
- // Get WDS66 username
- $content['wernis_userid'] = getUserData('wernis_userid');
} elseif ((getRequestParameter('mode') == 'withdraw') && (getConfig('wernis_withdraw_active') == 'Y')) {
// Prepare data for the template
$content['points'] = getTotalPoints(getMemberId());
if ($full === false) {
$ret = $data['mail_title'];
} else {
- $ret = $data['mail_title'] . ' / ' . translateComma($data['price']) . ' {?POINTS?}';
+ $ret = $data['mail_title'] . ' / {%pipe,translateComma=' . $data['price' . '%} {?POINTS?}';
}
}
Hallo Administrator,
-Es wurden soeben $content {?POINTS?} durch die automatische Loeschung von Bestätigungslinks in den Jackpot transferiert!
+Es wurden soeben {%pipe,translateComma=$content%} {?POINTS?} durch die automatische Loeschung von Bestätigungslinks in den Jackpot transferiert!
Mit freundlichen Grüßen,
Ihr {?MAIN_TITLE?} Script
-----------------------------------
Email-Adresse: {%user,email=$userid%}
-----------------------------------
-Ref-Back: {%pipe,translateComma=$content[percents]%}%
+Ref-Back: {%pipe,translateComma=$content[percents]%}%
-----------------------------------
Bereits erhalten: {%pipe,translateComma=$content[points]%} {?POINTS?}
-----------------------------------
Ihre Login-Id lautet: $userid
URL zum Login: {?URL?}/login.php
-für Ihre Anmeldung werden wir Ihnen als Willkommensgutschrift {%config,translateComma=points_register%} {?POINTS?} gutschreiben, sobald Sie {?ref_payout?} Mails bestätigt haben. Erst dann können Sie Mails an die anderen Mitglieder verschicken!
+Für Ihre Anmeldung werden wir Ihnen als Willkommensgutschrift {%config,translateComma=points_register%} {?POINTS?} gutschreiben, sobald Sie {?ref_payout?} Mails bestätigt haben. Erst dann können Sie Mails an die anderen Mitglieder verschicken!
Wir wünschen Ihnen viel Spass und Erfolg beim Mail-Versand!
Hier sehen Sie genau, in welcher Ebene Sie ihn geworben haben:
-----------------
-Referal-Ebene (translateComma=$content[percents]%}%): $content[level]
+Referal-Ebene (translateComma=$content[percents]%}%): $content[level]
{?POINTS?}: {%pipe,translateComma=$content[points]%}
ID des Mitgliedes: {%user,refid,bigintval=$userid%}
-----------------
Hallo {%user,gender,translateGender=$userid%} {%user,surname=$userid%} {%user,family=$userid%},
-Das Mitglied $content[refid] hat Ihnen soeben {%pipe,translateComma=$content[percents]%}% Ref-Back eingestellt. Sie erhalten also anteilig {?POINTS?} von seinen Referal-Gutschriften die Sie ihm/ihr bringen ebenfalls gutgeschrieben.
+Das Mitglied $content[refid] hat Ihnen soeben {%pipe,translateComma=$content[percents]%}% Ref-Back eingestellt. Sie erhalten also anteilig {?POINTS?} von seinen Referal-Gutschriften die Sie ihm/ihr bringen ebenfalls gutgeschrieben.
------------------------------
Ihr Mitglieder-Id ist: $userid
------------------------------
-Ref-Back: {%pipe,translateComma=$content[percents]%}%
+Ref-Back: {%pipe,translateComma=$content[percents]%}%
------------------------------
Sie haben bereits {%pipe,translateComma=$content[points]%} {?POINTS?} Ref-Back-Vergütung an das Mitglied abgegeben.
</td>
<td width="100" class="table_footer">
<div align="right" style="padding-right: 2px">
- <strong>{%pipe,translateComma=$content[cache_perc]%}%</strong>
+ <strong>{%pipe,translateComma=$content[cache_perc]%}%</strong>
</div>
</td>
</tr>
</tr>
<tr>
<td align="center" class="{%template,ColorSwitch%} bottom">
- {%pipe,translateComma=$content[percents]%}% <span class="tiny">({--ID_SELECT--} $content[id])</span>
+ {%pipe,translateComma=$content[percents]%}% <span class="tiny">({--ID_SELECT--} $content[id])</span>
<input type="hidden" name="id[$content[id]]" value="1" />
</td>
</tr>
{%pipe,translateComma=$content[account_fee]%} {?POINTS?}
</td>
<td align="center" class="{%template,ColorSwitch%} bottom right">
- {%pipe,translateComma=$content[interest_plus]%}%
+ {%pipe,translateComma=$content[interest_plus]%}%
</td>
<td align="center" class="{%template,ColorSwitch%} bottom right">
- {%pipe,translateComma=$content[interest_minus]%}%
+ {%pipe,translateComma=$content[interest_minus]%}%
</td>
<td align="center" class="{%template,ColorSwitch%} bottom">
{%pipe,translateComma=$content[package_active]%}
<u>{--MEMBER_BEG_TOTAL--}:</u>
</td>
<td class="header_column bottom right">
- <u>$content[total] {?POINTS?}</u>
+ <u>{%pipe,translateComma=$content[total]%} {?POINTS?}</u>
</td>
<td class="header_column bottom">
<u>{--ADMIN_TOTAL_MEMBER_BONUS--}:</u>
</td>
<td class="header_column bottom right">
- <u>$content[total] {?POINTS?}</u>
+ <u>{%pipe,translateComma=$content[total]%} {?POINTS?}</u>
</td>
<td class="header_column bottom"> </td>
</tr>
$content[level]
</td>
<td align="center" class="bottom {%template,ColorSwitch%}">
- $content[percents]%
+ {%pipe,translateComma=$content[percents]%}%
</td>
</tr>
<tr>
<td align="center" class="right {%template,ColorSwitch%} bottom">{%pipe,getTotalPoints,translateComma=$content[userid]%} {?POINTS?}</td>
<td align="center" class="right {%template,ColorSwitch%} bottom">$content[emails_sent]</td>
- <td align="center" class="right {%template,ColorSwitch%} bottom">{%pipe,translateComma=$content[rate]%}%</td>
+ <td align="center" class="right {%template,ColorSwitch%} bottom">{%pipe,translateComma=$content[rate]%}%</td>
<td align="center" class="right {%template,ColorSwitch%} bottom">{%pipe,translateComma=$content[locked]%} {?POINTS?}</td>
<td align="center" class="{%template,ColorSwitch%} bottom">$content[refs]</td>
</tr>
<td>
<select name="cat" size="1" class="form_select">
<option value="X" disabled="disabled">{--PLEASE_SELECT--}</option>
- <option value="0">{--ALL_MEMBERS--} ($content[all])</option>
- $content[options_lines]
+ <option value="0">{--ALL_MEMBERS--} ({%pipe,getTotalReceivers,translateComma=$content[all]%})</option>
+ {%pipe,generateCategoryOptionsList=$content[options_lines]%}
</select>
</td>
</tr>
</td>
<td align="center" class="top right">
{--CLICK_RATE--}:<br />
- <strong>{%pipe,translateComma=$content[click_rate]%}%</strong>
+ <strong>{%pipe,translateComma=$content[click_rate]%}%</strong>
</td>
<td align="center" class="top">
{--EMAILS_RECEIVED--}:<br />
<br />
$content[payout_time]<br />
<br />
- {--DOUBLER_POINTS_1--} <strong>{%config,translateComma=doubler_charge%}%</strong>
+ {--DOUBLER_POINTS_1--} <strong>{%config,translateComma=doubler_charge%}%</strong>
{--DOUBLER_POINTS_2--}<br />
<br />
{--DOUBLER_EXAMPLE_1--} <strong>500 {?POINTS?}</strong> »»
<li>{--DOUBLER_USAGE_COUNTER--}</li>
<li>$content[payout_time]</li>
<li><strong>{--DOUBLER_FULL_PAYOUT--}</strong></li>
- <li>{--DOUBLER_POINTS_1--} <strong>{%config,translateComma=doubler_charge%}%</strong> {--DOUBLER_POINTS_2--}</li>
+ <li>{--DOUBLER_POINTS_1--} <strong>{%config,translateComma=doubler_charge%}%</strong> {--DOUBLER_POINTS_2--}</li>
<li>{--DOUBLER_EXAMPLE_1--} <strong>500 {?POINTS?}</strong> »» {--DOUBLER_EXAMPLE_2--} <strong>1000 {?POINTS?}</strong>{--DOUBLER_EXAMPLE_3--}</li>
<li>{--DOUBLER_REFERAL_1--}
<li>{--DOUBLER_REFERAL_2--}</li>
</div>
<div>
- <strong>Tipp:</strong> Nutzen Sie diesen zum Werben unseres {?mt_word2?}, um die <strong>{%config,translateComma=doubler_ref%}%</strong> Referal-Vergütung zu erhalten!
+ <strong>Tipp:</strong> Nutzen Sie diesen zum Werben unseres {?mt_word2?}, um die <strong>{%config,translateComma=doubler_ref%}%</strong> Referal-Vergütung zu erhalten!
</div>
<div class="big">{--MEMBER_DOUBLER_ALREADY_PAYOUT--}:</div>
<li>{--DOUBLER_USAGE_COUNTER--}</li>
<li>$content[payout_time]</li>
<li><strong>{--DOUBLER_FULL_PAYOUT--}</strong></li>
- <li>{--DOUBLER_POINTS_1--} <strong>{%config,translateComma=doubler_charge%}%</strong> {--DOUBLER_POINTS_2--}</li>
+ <li>{--DOUBLER_POINTS_1--} <strong>{%config,translateComma=doubler_charge%}%</strong> {--DOUBLER_POINTS_2--}</li>
<li>{--DOUBLER_EXAMPLE_1--} <strong>500 {?POINTS?}</strong> »» {--DOUBLER_EXAMPLE_2--} <strong>1000 {?POINTS?}</strong>{--DOUBLER_EXAMPLE_3--}</li>
<li>{--DOUBLER_REFERAL_1--}</li>
<li>{--DOUBLER_REFERAL_2--}</li>
</tr>
<tr>
<td colspan="2" align="center">
- <span class="notice">{%message,MEMBER_HOLIDAY_MAX_DAYS,{?holiday_max?}%}</span>
+ <span class="notice">{%message,MEMBER_HOLIDAY_MAX_DAYS,{?holiday_max?}%}</span>
</td>
</tr>
<tr>
<div class="table dashed">
<div align="center">
{--MEMBER_POINTS_LEFT--}:
- <strong>$content[total] {?POINTS?}</strong>
+ <strong>{%pipe,translateComma=$content[total]%} {?POINTS?}</strong>
</div>
<div align="center">
<tr>
- <td class="member_data">$content[level] {--REFERAL_LEVEL--} ({%pipe,translateComma=$content[percents]%}%)</td>
+ <td class="member_data">$content[level] {--REFERAL_LEVEL--} ({%pipe,translateComma=$content[percents]%}%)</td>
<td class="member_data">{%pipe,translateComma=$content[points]%} {?POINTS?}</td>
<td class="member_data" align="center">{%pipe,translateComma=$content[counter]%}</td>
</tr>
$content[level_refid]
</td>
<td align="center" class="{%template,ColorSwitch%} bottom right">
- {%pipe,translateComma=$content[refback]%}%
+ {%pipe,translateComma=$content[refback]%}%
</td>
<td align="center" class="{%template,ColorSwitch%} bottom right">
{%pipe,translateComma=$content[points]%} {?POINTS?}
$content[level_refid]
</td>
<td align="center" class="{%template,ColorSwitch%} bottom right">
- {%pipe,translateComma=$content[refback]%}%
+ {%pipe,translateComma=$content[refback]%}%
</td>
<td align="center" class="{%template,ColorSwitch%} bottom right">
{%pipe,translateComma=$content[points]%} {?POINTS?}
</td>
<td align="center" class="{%template,ColorSwitch%} top">
{--MEMBER_EMAIL_PERCENT--}:<br />
- <strong>{%pipe,translateComma=$content[percents]%}%</strong>
+ <strong>{%pipe,translateComma=$content[percents]%}%</strong>
</td>
</tr>
<strong>{%pipe,getMemberId,SURFBAR_GET_TOTAL_USER_URLS,translateComma%}</strong> URLs werden als
Berechnungsgrundlage verwendet. Sie erhalten allerdings nur einen
reduzierten Anteil von
- <strong>{%config,translateComma=surfbar_dynamic_percent%}%</strong>.
+ <strong>{%config,translateComma=surfbar_dynamic_percent%}%</strong>.
</div>
<div style="padding:5px">
$content[balance] ({?POINTS?}):
</td>
<td width="80" align="center" class="table_footer">
- <strong>$content[total]</strong>
+ <strong>{%pipe,translateComma=$content[total]%}</strong>
</td>
</tr>
</table>
<div class="transfer_row4">$content[reason]</div>
</td>
<td class="transfer_row5 {%template,ColorSwitch%} bottom">
- <div class="transfer_row5">$content[points]</div>
+ <div class="transfer_row5">{%pipe,translateComma=$content[points]%}</div>
</td>
</tr>
</tr>
<tr>
<td height="35" align="right">{--MEMBER_WERNIS_WDS66_ID--}</td>
- <td><input type="text" class="form_field" name="wernis_userid" size="6" maxlength="5" value="$content[wernis_userid]" /></td>
+ <td><input type="text" class="form_field" name="wernis_userid" size="6" maxlength="5" value="{%user,wernis_userid=$userid%}" /></td>
</tr>
<tr>
<td height="35" align="right">{--MEMBER_WERNIS_WDS66_PASSWORD--}</td>
<div class="notice">
Die Umrechnung von {?POINTS?} in Wernis enspricht derzeit <strong>{%config,translateComma=wernis_payout_factor%}:1</strong>.
Das auszahlungsfähige {?POINTS?}-Guthaben ist entweder um eine
- prozentuale Gebühr von <strong>{%config,translateComma=wernis_payout_fee_percent%}%</strong>
+ prozentuale Gebühr von <strong>{%config,translateComma=wernis_payout_fee_percent%}%</strong>
oder um einen fixen Betrag von <strong>{%config,translateComma=wernis_payout_fee_fix%} {?POINTS?}</strong>
bereits reduziert.
</div>
</tr>
<tr>
<td height="35" align="right">{--MEMBER_WERNIS_WDS66_ID--}</td>
- <td><input type="text" class="form_field" name="wernis_userid" size="6" maxlength="5" value="$content[wernis_userid]" /></td>
+ <td><input type="text" class="form_field" name="wernis_userid" size="6" maxlength="5" value="{%user,wernis_userid=$userid%}" /></td>
</tr>
<tr>
<td height="35" align="right">{--MEMBER_WERNIS_WDS66_PASSWORD--}</td>