More EL used, this has fixed double calls of translateComma() in various places
authorRoland Häder <roland@mxchange.org>
Mon, 13 Sep 2010 23:25:06 +0000 (23:25 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 13 Sep 2010 23:25:06 +0000 (23:25 +0000)
47 files changed:
inc/autopurge/purge-general.php
inc/extensions/ext-order.php
inc/language/wernis_de.php
inc/libs/surfbar_functions.php
inc/modules/admin/admin-inc.php
inc/modules/admin/what-config_points.php
inc/modules/admin/what-del_email.php
inc/modules/admin/what-del_transfer.php
inc/modules/admin/what-list_beg.php
inc/modules/admin/what-list_bonus.php
inc/modules/admin/what-list_user.php
inc/modules/admin/what-send_bonus.php
inc/modules/guest/what-mediadata.php
inc/modules/member/what-order.php
inc/modules/member/what-payout.php
inc/modules/member/what-surfbar_list.php
inc/modules/member/what-transfer.php
inc/modules/member/what-wernis.php
inc/mysql-manager.php
templates/de/emails/admin/admin_autopurge_points.tpl
templates/de/emails/admin/admin_refback.tpl
templates/de/emails/confirm-member.tpl
templates/de/emails/confirm-referral.tpl
templates/de/emails/member/member_refback.tpl
templates/de/html/admin/admin_cache_stats.tpl
templates/de/html/admin/admin_delete_reflevel_row.tpl
templates/de/html/admin/admin_list_bank_package_row.tpl
templates/de/html/admin/admin_list_beg.tpl
templates/de/html/admin/admin_list_bonus.tpl
templates/de/html/admin/admin_list_reflevel_row.tpl
templates/de/html/admin/admin_list_user_row.tpl
templates/de/html/admin/admin_send_bonus_form.tpl
templates/de/html/admin/admin_user_details.tpl
templates/de/html/doubler/doubler_index.tpl
templates/de/html/guest/guest_doubler.tpl
templates/de/html/member/member_doubler.tpl
templates/de/html/member/member_holiday_form.tpl
templates/de/html/member/member_order_points.tpl
templates/de/html/member/member_points_row.tpl
templates/de/html/member/member_refback_list_row.tpl
templates/de/html/member/member_refback_list_row_deleted.tpl
templates/de/html/member/member_stats_row.tpl
templates/de/html/member/member_surfbar_start_dynamic.tpl
templates/de/html/member/member_transfer_list.tpl
templates/de/html/member/member_transfer_row.tpl
templates/de/html/member/member_wernis_mode_payout.tpl
templates/de/html/member/member_wernis_mode_withdraw.tpl

index fb30bb928c9066080e0ba333f271f47589d54087..f5249b9906872721ad341db099f93643d2d29155 100644 (file)
@@ -144,12 +144,12 @@ ORDER BY
        // 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]
 ?>
index 9df9339aa288247c5d09e5eaedb766e29f7e1b62..68b87ef4dc1ca5bcbfe30d9d4a76c4d05188851d 100644 (file)
@@ -73,7 +73,7 @@ switch (getExtensionMode()) {
        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!)
index 2e204f375ae93c219e9921c348fc4f7a13dab607..1b4e1d644d0fa8ebd16ebeae3ae3aa0329490b5c 100644 (file)
@@ -105,7 +105,7 @@ addMessages(array(
        'MEMBER_WERNIS_MODE_CHOOSE2' => "Hier klicken um neue &Uuml;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&uuml;ssen.",
-       'MEMBER_WERNIS_MIN_PAYOUT' => "Sie haben nicht gen&uuml;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&uuml;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:",
index bbb6daecaff267740a145f5d1a631c4761e1dde7..5f14531f9f078c7025ff882c6e57137c8f68ca64 100644 (file)
@@ -725,7 +725,7 @@ function translateSurfbarLimit ($limit) {
                $return = '{--MEMBER_SURFBAR_UNLIMITED_VIEWS--}';
        } else {
                // Translate comma
-               $return = translateComma($limit);
+               $return = '{%pipe,translateComma=' . $limit . '%}';
        }
 
        // Return value
@@ -1295,9 +1295,9 @@ function SURFBAR_CHANGE_STATUS ($urlId, $prevStatus, $newStatus, $data=array())
 
        // 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')) {
index f0e647c78ad1554e4c810190e60b0790044371fa..543b67f17c7049b55c96ab984dd08ee0a32a2bec 100644 (file)
@@ -1360,7 +1360,7 @@ function generateUnconfirmedAdminLink ($id, $unconfirmed, $type = 'bid') {
        // Do we have unconfirmed mails?
        if ($unconfirmed > 0) {
                // Add link to list_unconfirmed what-file
-               $OUT = '<a href="{%url=modules.php?module=admin&amp;what=list_unconfirmed&amp;' . $type . '=' . $id . '%}">' . translateComma($unconfirmed) . '</a>';
+               $OUT = '<a href="{%url=modules.php?module=admin&amp;what=list_unconfirmed&amp;' . $type . '=' . $id . '%}">{%pipe,translateComma=' . $unconfirmed . '%}</a>';
        } // END - if
 
        // Return it
index 78d995c954666f0a5ceee10293b8590462dac62c..1ec4d829b17dd7dac809ed7999e09905c8ebae92 100644 (file)
@@ -222,9 +222,6 @@ WHERE
 
                        // 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
index 997c6370ee3405ab476cbe50085a7bc0eb757ca5..1b8996f0b6daa761fa9a69d94159ae0fb4d2a058 100644 (file)
@@ -116,17 +116,17 @@ LIMIT 1",
                                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
index 7869127894b61462c42cb04d5395b3c2c9b7615c..19414fe98453b7e17d69dfa255417c7938f78bb4 100644 (file)
@@ -100,7 +100,7 @@ if (!SQL_HASZERONUMS($result)) {
 $content['rows'] = $OUT;
 
 // Remeber total amount
-$content['total'] = translateComma($total);
+$content['total'] = $total;
 
 // Set title
 $content['title'] = '{--TRANSFER_LIST_ALL--}';
index 38bc8c3772e00210125b0260969ff9e9fcdbcb4d..65711bcf700fb3a86621091b29dd34e676ed15f1 100644 (file)
@@ -105,7 +105,7 @@ ORDER BY
                } // 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()) {
index 492f1a0311119005003c3fe466823f40be2c43b2..ef9631c12fc2f719faca441260d35fc04ed0fbb9 100644 (file)
@@ -117,7 +117,7 @@ ORDER BY
                } // 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()) {
index 4502201f68655466190b6703266091733c52014e..8d28ef51c9fbf3c1964258c22fd60b01b4d51f2d 100644 (file)
@@ -118,8 +118,8 @@ LIMIT 1",
                // Add links to the numbers
                if ($content['links'] > 0) $content['links'] = $base . '&amp;what=list_links&amp;userid=' . $userid . '%}">' . $content['links'] . '</a>]';
                if (isValidUserId($content['refid'])) $content['refid'] = $base . '&amp;what=list_user&amp;userid=' . $content['refid'] . '%}">'.$content['refid'] . '</a>]';
-               if ($content['refs']  > 0) $content['refs']  = $base . '&amp;what=list_refs&amp;userid=' . $userid . '%}">' . translateComma($content['refs']) . '</a>]';
-               if ($content['cats']  > 0) $content['cats']  = $base . '&amp;what=list_cats&amp;userid=' . $userid . '%}">' . translateComma($content['cats']) . '</a>]';
+               if ($content['refs']  > 0) $content['refs']  = $base . '&amp;what=list_refs&amp;userid=' . $userid . '%}">{%pipe,translateComma=' . $content['refs'] . '%}</a>]';
+               if ($content['cats']  > 0) $content['cats']  = $base . '&amp;what=list_cats&amp;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']);
@@ -136,7 +136,7 @@ LIMIT 1",
                // 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 . '&amp;what=email_details&amp;userid=' . $userid . '%}">' . translateComma($content['emails_sent']) . '</a>]';
+               if ($content['emails_sent'] > 0) $content['emails_sent'] = $base . '&amp;what=email_details&amp;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);
@@ -289,7 +289,7 @@ LIMIT 1",
                        $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 . '&amp;what=list_refs&amp;userid=' . $content['userid'] . '%}">' . translateComma($content['refs']) . '</a>]';
+                       if ($content['refs'] > 0) $content['refs'] = $base . '&amp;what=list_refs&amp;userid=' . $content['userid'] . '%}">{%pipe,translateComma=' . $content['refs'] . '%}</a>]';
 
                        // Is the extension 'country' installed?
                        // @TODO Rewrite this into a filter
index ff353ba04cf57d1b3007dff0c9c7fc44a6166d31..9ef51ffb053a76038cc81852c1c8054ec548a311 100644 (file)
@@ -56,10 +56,10 @@ if (isFormSent()) {
        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');
index 7c402589f354dd2651f60112718cbfd7c270f1fd..56f45824462202d7473e96282d66f444960ab16f 100644 (file)
@@ -131,7 +131,7 @@ $jackpot = '0';
 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
index d1d18a245a857021b43c9bd5894863959f945938..f891d0609fa8f7d36799e234691f702d188df50f 100644 (file)
@@ -526,7 +526,7 @@ LIMIT 1",
                                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')) {
@@ -599,12 +599,11 @@ LIMIT 1",
                                        // 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
 
index 81369160cd24d54b7173ee924ce617e6a7366ab5..43c0ca91742ca14c764d91d33caf00b3c73d67aa 100644 (file)
@@ -146,7 +146,7 @@ ORDER BY
                        // 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
index 6f892c2486b03a47458b8452cd9272bfddfc2f1b..0f1c81eaa67a8f9e46d58c9474e147c17a343a5a 100644 (file)
@@ -73,7 +73,7 @@ if ((isFormSent()) && (isPostRequestParameterSet('action')) && (isPostRequestPar
                // "Translate"/insert data
                if ($content['views_total'] > 0) {
                        // Include link to stats
-                       $content['views_total'] = '[<a href="{%url=modules.php?module=login&amp;what=surfbar_list%}">' . translateComma($content['views_total']) . '</a>]';
+                       $content['views_total'] = '[<a href="{%url=modules.php?module=login&amp;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);
index b080851b85a29c6751f1d77a16d675529fd4e003..4edd9678515771dee57196232550ffeea35d9855 100644 (file)
@@ -336,7 +336,7 @@ switch ($mode) {
                $content['rows'] = $OUT;
 
                // Remeber total amount
-               $content['total'] = translateComma($totalPoints);
+               $content['total'] = $totalPoints;
 
                // Load final template
                loadTemplate('member_transfer_list', false, $content);
@@ -396,7 +396,6 @@ KEY (`party_userid`)
 
                                // 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);
@@ -420,7 +419,7 @@ KEY (`party_userid`)
                $content['rows'] =  $OUT;
 
                // Remeber total amount
-               $content['total'] = translateComma($total);
+               $content['total'] = $total;
 
                // Set title
                $content['title'] = '{--TRANSFER_LIST_ALL--}';
index b62a5aaaaed3435ae141028fcd449e552b3a13f8..108be32022b2b27605a2f4f40e9801dc7fdec047 100644 (file)
@@ -122,11 +122,7 @@ if ((!isGetRequestParameterSet('mode')) || (getRequestParameter('mode') == 'choo
        // 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
 
@@ -136,9 +132,6 @@ if ((!isGetRequestParameterSet('mode')) || (getRequestParameter('mode') == 'choo
 
        // 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());
index 885b670ce1f68ded7d59f5e24be56f7ee4a0ee77..afd26d2bda99bc98233e00d388feda84281a292f 100644 (file)
@@ -822,7 +822,7 @@ function getPaymentTitlePrice ($pid, $full=false) {
                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?}';
                }
        }
 
index a4ad1b4deba324b313fc07c0a1a6b55be21cf3a7..fe400ff718fe7bb9d266fba893d3898ad85af4e3 100644 (file)
@@ -1,6 +1,6 @@
 Hallo Administrator,
 
-Es wurden soeben $content {?POINTS?} durch die automatische Loeschung von Best&auml;tigungslinks in den Jackpot transferiert!
+Es wurden soeben {%pipe,translateComma=$content%} {?POINTS?} durch die automatische Loeschung von Best&auml;tigungslinks in den Jackpot transferiert!
 
 Mit freundlichen Gr&uuml;&szlig;en,
   Ihr {?MAIN_TITLE?} Script
index ac37176630c7b6a79f9af63508dcb4815397ead7..c0fa399c28b8ada2f975c9fe8f6d97d1fe4c5ec1 100644 (file)
@@ -11,7 +11,7 @@ Familienname: {%user,family=$userid%}
 -----------------------------------
 Email-Adresse: {%user,email=$userid%}
 -----------------------------------
-Ref-Back: {%pipe,translateComma=$content[percents]%}%
+Ref-Back: {%pipe,translateComma=$content[percents]%}&#37;
 -----------------------------------
 Bereits erhalten: {%pipe,translateComma=$content[points]%} {?POINTS?}
 -----------------------------------
index 9e68df08bbd501375d77fed40a5e23ab0bf5aef4..45bb20a3b2b62caacce36c533a16782783ccf170 100644 (file)
@@ -7,7 +7,7 @@ Sie k&ouml;nnen sich nun hier einloggen:
 Ihre Login-Id lautet: $userid
 URL zum Login: {?URL?}/login.php
 
-f&uuml;r Ihre Anmeldung werden wir Ihnen als Willkommensgutschrift {%config,translateComma=points_register%} {?POINTS?} gutschreiben, sobald Sie {?ref_payout?} Mails best&auml;tigt haben. Erst dann k&ouml;nnen Sie Mails an die anderen Mitglieder verschicken!
+F&uuml;r Ihre Anmeldung werden wir Ihnen als Willkommensgutschrift {%config,translateComma=points_register%} {?POINTS?} gutschreiben, sobald Sie {?ref_payout?} Mails best&auml;tigt haben. Erst dann k&ouml;nnen Sie Mails an die anderen Mitglieder verschicken!
 
 Wir w&uuml;nschen Ihnen viel Spass und Erfolg beim Mail-Versand!
 
index 855148178f1ed341961b35399095ce2719307b5b..a0801989b12e6152e5857bffb206a1068c7cb5eb 100644 (file)
@@ -4,7 +4,7 @@ Sie haben heute ein neues Mitglied f&uuml;r {?MAIN_TITLE?} geworben!
 
 Hier sehen Sie genau, in welcher Ebene Sie ihn geworben haben:
 -----------------
-Referal-Ebene (translateComma=$content[percents]%}%): $content[level]
+Referal-Ebene (translateComma=$content[percents]%}&#37;): $content[level]
 {?POINTS?}: {%pipe,translateComma=$content[points]%}
 ID des Mitgliedes: {%user,refid,bigintval=$userid%}
 -----------------
index 9217303ee4b10639b37d4578a8adb2db5d8fdac3..821fcba93a1cfaa01047cf9ce93143a4fc43a27f 100644 (file)
@@ -1,11 +1,11 @@
 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]%}&#37; 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]%}&#37;
 ------------------------------
 
 Sie haben bereits {%pipe,translateComma=$content[points]%} {?POINTS?} Ref-Back-Verg&uuml;tung an das Mitglied abgegeben.
index 6b07e069fffb4d2cd52b5e5aa20aca48dc14f14b..955f180953ab94bf071e7656278a327a7456cca9 100644 (file)
@@ -32,7 +32,7 @@
                </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]%}&#37;</strong>
                        </div>
                </td>
        </tr>
index 1a4e5cff36ed935368e405c66d4988e6d3fea855..30366a7bd8df7b6817d5313c52ac68f51e4960e4 100644 (file)
@@ -5,7 +5,7 @@
 </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]%}&#37; <span class="tiny">({--ID_SELECT--} $content[id])</span>
                <input type="hidden" name="id[$content[id]]" value="1" />
        </td>
 </tr>
index 2f581268f7aa41595dd47df412a04495ba2da7fd..7dab179052a8dd360bffd3f0beea3e36fe0af6f1 100644 (file)
                {%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]%}&#37;
        </td>
        <td align="center" class="{%template,ColorSwitch%} bottom right">
-               {%pipe,translateComma=$content[interest_minus]%}%
+               {%pipe,translateComma=$content[interest_minus]%}&#37;
        </td>
        <td align="center" class="{%template,ColorSwitch%} bottom">
                {%pipe,translateComma=$content[package_active]%}
index 1c83d181c5b4fd9866c09d977c2042c5b41d0255..8dc492893efe275bcce6453811ca44c8e523c668 100644 (file)
@@ -24,7 +24,7 @@
                        <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">
                        &nbsp;
index f11b2a45084e5f8f96a7aa79bc36903ed93402b2..482955275bb748541ef7cc9b6c410d1adeebc56e 100644 (file)
@@ -24,7 +24,7 @@
                        <u>{--ADMIN_TOTAL_MEMBER_BONUS--}:</u>&nbsp;
                </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">&nbsp;</td>
        </tr>
index e9cf154107df5c829b6e96632f60762892750a38..1f24f6103b8802fb403dfffeb1f2ccbcfb5e60ce 100644 (file)
@@ -6,6 +6,6 @@
                $content[level]
        </td>
        <td align="center" class="bottom {%template,ColorSwitch%}">
-               $content[percents]%
+               {%pipe,translateComma=$content[percents]%}&#37;
        </td>
 </tr>
index ecc921e4eccbcf766ca6f66d19d644c5282557b2..571662dff3c149318768a29f6566f6f5d5708cde 100644 (file)
@@ -36,7 +36,7 @@
 <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]%}&#37;</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>
index 40651f5ba37b7050240856832008701cdc454ab2..85406aa76b611b7402b69f1b69e372383c9e6b4d 100644 (file)
@@ -7,8 +7,8 @@
                <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>
index 4082e56b8c3f1f073076ac169d29ad34d964b3fe..9710237d183a4b668476b7d1a631fe67d5a9c53f 100644 (file)
                </td>
                <td align="center" class="top right">
                        {--CLICK_RATE--}:<br />
-                       <strong>{%pipe,translateComma=$content[click_rate]%}%</strong>
+                       <strong>{%pipe,translateComma=$content[click_rate]%}&#37;</strong>
                </td>
                <td align="center" class="top">
                        {--EMAILS_RECEIVED--}:<br />
index 85b98ab3c4bda8362c6743e85a65048bbceae9a0..058d47ed91eaeaf2babe83dbc3c11dc65153aae5 100644 (file)
@@ -65,7 +65,7 @@
                <br />
                $content[payout_time]<br />
                <br />
-               {--DOUBLER_POINTS_1--} <strong>{%config,translateComma=doubler_charge%}%</strong>
+               {--DOUBLER_POINTS_1--} <strong>{%config,translateComma=doubler_charge%}&#37;</strong>
                {--DOUBLER_POINTS_2--}<br />
                <br />
                {--DOUBLER_EXAMPLE_1--} <strong>500 {?POINTS?}</strong> &raquo;&raquo;
index b769c1f6150781dc2b9ba7d0a3150ec05b3d8be2..d6f9f371db658b5cb8a0029b11cf242f229a12ae 100644 (file)
@@ -14,7 +14,7 @@
                        <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%}&#37;</strong> {--DOUBLER_POINTS_2--}</li>
                        <li>{--DOUBLER_EXAMPLE_1--} <strong>500 {?POINTS?}</strong> &raquo;&raquo; {--DOUBLER_EXAMPLE_2--} <strong>1000 {?POINTS?}</strong>{--DOUBLER_EXAMPLE_3--}</li>
                        <li>{--DOUBLER_REFERAL_1--}
                        <li>{--DOUBLER_REFERAL_2--}</li>
index 2edfb852f7905dd30f66f2dfad22bd4b28be84a0..875990e861a9c40dc45686fdd1cb75905d35731c 100644 (file)
@@ -8,7 +8,7 @@
        </div>
 
        <div>
-               <strong>Tipp:</strong> Nutzen Sie diesen zum Werben unseres {?mt_word2?}, um die <strong>{%config,translateComma=doubler_ref%}%</strong> Referal-Verg&uuml;tung zu erhalten!
+               <strong>Tipp:</strong> Nutzen Sie diesen zum Werben unseres {?mt_word2?}, um die <strong>{%config,translateComma=doubler_ref%}&#37;</strong> Referal-Verg&uuml;tung zu erhalten!
        </div>
 
        <div class="big">{--MEMBER_DOUBLER_ALREADY_PAYOUT--}:</div>
@@ -33,7 +33,7 @@
                        <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%}&#37;</strong> {--DOUBLER_POINTS_2--}</li>
                        <li>{--DOUBLER_EXAMPLE_1--} <strong>500 {?POINTS?}</strong> &raquo;&raquo; {--DOUBLER_EXAMPLE_2--} <strong>1000 {?POINTS?}</strong>{--DOUBLER_EXAMPLE_3--}</li>
                        <li>{--DOUBLER_REFERAL_1--}</li>
                        <li>{--DOUBLER_REFERAL_2--}</li>
index 576e80a04712a905a2de81da3781462814a6c732..8fb2a07d156fef552d8e3ebe387e6de61a152c05 100644 (file)
@@ -20,7 +20,7 @@
        </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?}&#37;}</span>
                </td>
        </tr>
        <tr>
index 01b50220f1c9e85c703c9d44190eb29b10bc2cb0..7d1fc9f9b8f83eb318921f6352d3b2b60f222b7c 100644 (file)
@@ -3,7 +3,7 @@
 <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">
index c75032a3f9904b5e2541ae6d66ac4b5815c8db2f..acd137b239eebee7bca478cf4f7262e9ad5ce534 100644 (file)
@@ -1,5 +1,5 @@
 <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]%}&#37;)</td>
        <td class="member_data">{%pipe,translateComma=$content[points]%} {?POINTS?}</td>
        <td class="member_data" align="center">{%pipe,translateComma=$content[counter]%}</td>
 </tr>
index 1642da715404c42ce5c7620bccc58635bc8a617d..d74239bea34b02afadae30a5b15ed810314efd06 100644 (file)
@@ -6,7 +6,7 @@
                $content[level_refid]
        </td>
        <td align="center" class="{%template,ColorSwitch%} bottom right">
-               {%pipe,translateComma=$content[refback]%}%
+               {%pipe,translateComma=$content[refback]%}&#37;
        </td>
        <td align="center" class="{%template,ColorSwitch%} bottom right">
                {%pipe,translateComma=$content[points]%} {?POINTS?}
index b6c724862a8e12bc62b28533f39242bc13640017..f0486436cfba97a66cc7b32a945648c2d6034e23 100644 (file)
@@ -6,7 +6,7 @@
                $content[level_refid]
        </td>
        <td align="center" class="{%template,ColorSwitch%} bottom right">
-               {%pipe,translateComma=$content[refback]%}%
+               {%pipe,translateComma=$content[refback]%}&#37;
        </td>
        <td align="center" class="{%template,ColorSwitch%} bottom right">
                {%pipe,translateComma=$content[points]%} {?POINTS?}
index 1b1c557bec4a9d7ef2171bdafd87885b85bbb751..671dcd19b3351da3babf646495444c853ed5fce0 100644 (file)
@@ -39,6 +39,6 @@
        </td>
        <td align="center" class="{%template,ColorSwitch%} top">
                {--MEMBER_EMAIL_PERCENT--}:<br />
-               <strong>{%pipe,translateComma=$content[percents]%}%</strong>
+               <strong>{%pipe,translateComma=$content[percents]%}&#37;</strong>
        </td>
 </tr>
index 2da45f7a96d99c73a7c0dcfc280ac6d3a0296f32..5df180708640cf1ffba141ecfd25f5f13a669756 100644 (file)
@@ -29,7 +29,7 @@
                <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%}&#37;</strong>.
        </div>
 
        <div style="padding:5px">
index d8c78c442dffffeeec58255a88467dd07b19c0e7..61f542b5cab7805fd76441fe50fe02d6132ccbe6 100644 (file)
@@ -28,7 +28,7 @@
                        $content[balance] ({?POINTS?}):&nbsp;
                </td>
                <td width="80" align="center" class="table_footer">
-                       <strong>$content[total]</strong>
+                       <strong>{%pipe,translateComma=$content[total]%}</strong>
                </td>
        </tr>
 </table>
index 923faafc8ab776e265f7e9c58360ce93783bf103..c1874881810e73fc4ad1a4096db76433d9c6bd62 100644 (file)
@@ -12,6 +12,6 @@
     <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>
index ae7a706a15e7f26c60e6013483ae844db179fac4..6795fa1697e4736cedd4f5ba4d7bfc5ecc03aec6 100644 (file)
@@ -16,7 +16,7 @@
        </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>
@@ -42,7 +42,7 @@
 <div class="notice">
        Die Umrechnung von {?POINTS?} in Wernis enspricht derzeit <strong>{%config,translateComma=wernis_payout_factor%}:1</strong>.
        Das auszahlungsf&auml;hige {?POINTS?}-Guthaben ist entweder um eine
-       prozentuale Geb&uuml;hr von <strong>{%config,translateComma=wernis_payout_fee_percent%}%</strong>
+       prozentuale Geb&uuml;hr von <strong>{%config,translateComma=wernis_payout_fee_percent%}&#37;</strong>
        oder um einen fixen Betrag von <strong>{%config,translateComma=wernis_payout_fee_fix%} {?POINTS?}</strong>
        bereits reduziert.
 </div>
index 11a816ec7ef4d80dcea1a3681721bfbf808abcdf..8c911f4ed5e8e46c9593993f09132784c4d2082c 100644 (file)
@@ -16,7 +16,7 @@
        </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>