Plugin Directory

Changeset 960002


Ignore:
Timestamp:
08/04/2014 02:24:44 PM (12 years ago)
Author:
datenwerk
Message:

1.4 - 2014-07-18

Location:
woocommerce-mpay24-gateway
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • woocommerce-mpay24-gateway/trunk/class-wc-mpay24-shop.php

    r925767 r960002  
    467467            $secret = $transactionDb->secret;
    468468        } else {
     469            $secret = $this->createSecret( $this->getTid(), $this->getPrice(), 'EUR', time() );
     470           
    469471            $wpdb->insert(
    470472                $wpdb->prefix . GATEWAY_MPAY24_TABLE_NAME,
     
    478480            );
    479481           
    480             $secret = $this->createSecret( $this->getTid(), $this->getPrice(), 'EUR', time() );
     482           
    481483        }
    482484       
  • woocommerce-mpay24-gateway/trunk/gateway-mpay24.php

    r925767 r960002  
    22/*
    33    Plugin Name: WooCommerce mPAY24 Gateway
    4     Plugin URI: http://www.woothemes.com/product-category/woocommerce-extensions/
     4    Plugin URI: http://wordpress.org/plugins/woocommerce-mpay24-gateway/
    55    Description: Add mPAY24 Payment Gateway to WooCommerce Plugin
    6     Version: 1.3
     6    Version: 1.4
    77    Author: datenwerk innovationsagentur GmbH
    88    Author URI: http://www.datenwerk.at
     
    2222
    2323    if ( ! defined( 'GATEWAY_MPAY24_VERSION' ) ) {
    24         define( 'GATEWAY_MPAY24_VERSION', '1.3' );
     24        define( 'GATEWAY_MPAY24_VERSION', '1.4' );
    2525    }
    2626    if ( ! defined( 'GATEWAY_MPAY24_TABLE_NAME' ) ) {
     
    8484        ?>
    8585        <div id="message" class="updated woocommerce-message wc-connect">
     86            <?php if( version_compare( $woocommerce->version, '2.1', '<' ) ): ?>
     87            <div class="squeezer">
     88                <h4><?php _e( '<strong>mPAY24 gateway is installed</strong> &#8211; Configure the setting to get started :)', 'wc-mpay24' ); ?></h4>
     89                <p class="submit"><a href="<?php echo admin_url( 'admin.php?page=woocommerce_settings&tab=payment_gateways&section=WC_Gateway_MPAY24' ); ?>" class="button-primary"><?php _e( 'Payment Settings', 'wc-mpay24' ); ?></a></p>
     90            </div>
     91            <?php else: ?>
    8692            <p><?php _e( '<strong>mPAY24 gateway is installed</strong> &#8211; Configure the setting to get started :)', 'wc-mpay24' ); ?></p>
    8793            <p class="submit"><a href="<?php echo admin_url( 'admin.php?page=wc-settings&tab=checkout&section=wc_gateway_mpay24' ); ?>" class="button-primary"><?php _e( 'Checkout', 'wc-mpay24' ); ?></a></p>
     94            <?php endif; ?>
    8895        </div>
    8996        <?php
     
    129136            var $error_title_style = '';
    130137            var $footer_style = '';
     138            var $htaccessuser;
     139            var $htaccesspass;
    131140
    132141            /**
     
    137146
    138147                $this->id                 = 'mpay24';
    139                 $this->icon               = apply_filters('woocommerce_mpay24_icon', GATEWAY_MPAY24_URL . 'assets/images/cards.png');
     148                $this->icon               = apply_filters( 'woocommerce_mpay24_icon', GATEWAY_MPAY24_URL . 'assets/images/cards.png' );
     149                $this->order_button_text  = apply_filters( 'woocommerce_mpay24_button_text', __( 'Proceed to mPAY24', 'woocommerce' ) );
    140150                $this->has_fields         = false;
    141151                $this->method_title       = __( 'mPAY24', 'wc-mpay24' ); // backend title
    142152                $this->method_description = __( 'Online payment via mPAY24 payment page', 'wc-mpay24' ); // backend description
    143                 $this->notify_url         = str_replace( 'https:', 'http:', add_query_arg( 'wc-api', 'WC_Gateway_MPAY24', home_url( '/' ) ) );
     153                $this->notify_url         = add_query_arg( 'wc-api', 'WC_Gateway_MPAY24', home_url( '/' ) );
    144154
    145155                require_once( GATEWAY_MPAY24_PATH . 'class-wc-mpay24-shop.php' );
     
    178188                $this->error_title_style     = $this->get_option( 'error_title_style' );
    179189                $this->footer_style          = $this->get_option( 'footer_style' );
    180 
     190               
     191                $this->htaccessuser           = $this->get_option( 'htaccessuser' );
     192                $this->htaccesspass           = $this->get_option( 'htaccesspass' );
    181193                // Logging
    182194                if ( 'yes' == $this->debug ) {
     
    406418                        'type'        => 'textarea',
    407419                        'default'     => ''
     420                    ),
     421                    'protection' => array(
     422                        'title'       => __( 'Access Protection', 'wc-mpay24' ),
     423                        'type'        => 'title',
     424                        'description' => __( 'If your site has an access protection with .htaccess fill in the credentials to get the right status from mPAY24 during payment process. Please remove them as website is productive.' ),
     425                    ),
     426                    'htaccessuser' => array(
     427                        'title'       => __( 'Username .htaccess', 'wc-mpay24' ),
     428                        'type'        => 'text',
     429                        'default'     => ''
     430                    ),
     431                    'htaccesspass' => array(
     432                        'title'       => __( 'Password .htaccess', 'wc-mpay24' ),
     433                        'type'        => 'password',
     434                        'default'     => ''
    408435                    )
    409436                );
     
    429456                <?php
    430457            }
     458           
     459            /**
     460             * add .htaccess credentials from options to url
     461             *
     462             * @param string $url
     463             * @return string - protected url
     464             */
     465            protected function protect_url( $url ) {
     466                if( '' != $this->htaccessuser && '' != $this->htaccesspass ) {
     467                    return str_replace( '://', '://' . $this->htaccessuser . ':' . $this->htaccesspass . '@', $url );
     468                }
     469               
     470                return $url;
     471            }
    431472
    432473            /**
     
    443484
    444485                $testmode = ( 'yes' == $this->testmode ) ? true : false;
    445                 $user     = ( 'yes' == $this->testmode ) ? $this->apiusertest : $this->apiuserprod;
    446                 $pass     = ( 'yes' == $this->testmode ) ? $this->apipasstest : $this->apipassprod;
     486                $user     = ( 'yes' == $this->testmode ) ? $this->apiusertest : $this->apiuserprod;
     487                $pass     = ( 'yes' == $this->testmode ) ? $this->apipasstest : $this->apipassprod;
    447488
    448489                // start mpay24 transaction
     
    460501
    461502                $shop->setSuccessUrl( $this->get_return_url( $order ) ); // thank you page
    462                 $shop->setErrorUrl ($order->get_cancel_order_url() ); // failed orders will also be marked as cancelled
     503                $shop->setErrorUrl( $order->get_cancel_order_url() ); // failed orders will also be marked as cancelled
    463504                $shop->setCancelUrl( $order->get_cancel_order_url() );
    464                 $shop->setConfirmUrl( $this->notify_url );
     505                $shop->setConfirmUrl( $this->protect_url( $this->notify_url ) );
    465506
    466507                $shop->setPageBgColor( $this->page_bg_color );
     
    579620                    do_action( 'valid_mpay24_standard_request', $_GET );
    580621                } else {
    581                     wc_add_notice( __( 'mPAY24 IPN Request Failure', 'wc-mpay24' ), 'error' );
    582622                    wp_die( 'mPAY24 IPN Request Failure' );
    583623                }
     
    628668                            }
    629669                        break;
     670                        case 'suspended':
    630671                        case 'reserved':
    631672                            // Order pending
     
    633674                        break;
    634675                        case 'error':
    635                         case 'suspended':
    636676                            // Order failed
    637677                            $order->update_status( 'failed', sprintf( __( 'Payment %s via mPAY24.', 'wc-mpay24' ), $tstatus ) );
    638                             wc_add_notice( __( 'Payment failed via mPAY24.', 'wc-mpay24' ), 'error' );
     678                            if( version_compare( $woocommerce->version, '2.1', '>=' ) ) {
     679                                wc_add_notice( __( 'Payment failed via mPAY24.', 'wc-mpay24' ), 'error' );
     680                            }
    639681                        break;
    640682                        case 'credited':
  • woocommerce-mpay24-gateway/trunk/languages/wc-mpay24-de_DE.po

    r925767 r960002  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: WooCommerce mPAY24 Gateway v1.3\n"
     3"Project-Id-Version: WooCommerce mPAY24 Gateway v1.4\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-06-03 16:01+0100\n"
    6 "PO-Revision-Date: 2014-06-03 16:13+0100\n"
     5"POT-Creation-Date: 2014-08-04 16:15+0100\n"
     6"PO-Revision-Date: 2014-08-04 16:15+0100\n"
    77"Last-Translator: Melanie Reichel <[email protected]>\n"
    88"Language-Team: datenwerk innovationsagentur GmbH <wordpressdev@datenwerk."
     
    1818"X-Poedit-Basepath: .\n"
    1919"X-Textdomain-Support: yes\n"
    20 "X-Generator: Poedit 1.6.5\n"
     20"X-Generator: Poedit 1.6.7\n"
    2121"X-Poedit-SearchPath-0: .\n"
    2222"X-Poedit-SearchPath-1: ..\n"
    2323
    2424# @ wc-mpay24
    25 #: ../gateway-mpay24.php:86
     25#: ../gateway-mpay24.php:88 ../gateway-mpay24.php:92
     26#, fuzzy
    2627msgid ""
    2728"<strong>mPAY24 gateway is installed</strong> &#8211; Configure the setting "
     
    3132"die Einstellungen um zu starten :)"
    3233
    33 #: ../gateway-mpay24.php:87
     34#: ../gateway-mpay24.php:89
     35msgid "Payment Settings"
     36msgstr "Zahlungsweisen"
     37
     38#: ../gateway-mpay24.php:93
    3439msgid "Checkout"
    3540msgstr "Kasse"
    3641
    37 # @ wc-mpay24
    38 #: ../gateway-mpay24.php:141 ../gateway-mpay24.php:421
     42#: ../gateway-mpay24.php:149
     43msgid "Proceed to mPAY24"
     44msgstr "Weiter zu mPAY24"
     45
     46# @ wc-mpay24
     47#: ../gateway-mpay24.php:151 ../gateway-mpay24.php:448
    3948msgid "mPAY24"
    4049msgstr "mPAY24"
    4150
    4251# @ wc-mpay24
    43 #: ../gateway-mpay24.php:142 ../gateway-mpay24.php:422
     52#: ../gateway-mpay24.php:152 ../gateway-mpay24.php:449
    4453msgid "Online payment via mPAY24 payment page"
    4554msgstr "Online Zahlung über das mPAY24 Bezahlfenster"
    4655
    47 #: ../gateway-mpay24.php:209
     56#: ../gateway-mpay24.php:221
    4857msgid "Woocommerce Settings"
    4958msgstr "Woocommerce Einstellungen"
    5059
    5160# @ wc-mpay24
    52 #: ../gateway-mpay24.php:214
     61#: ../gateway-mpay24.php:226
    5362msgid "Enable/Disable"
    5463msgstr "Aktivieren/ Deaktivieren"
    5564
    5665# @ wc-mpay24
    57 #: ../gateway-mpay24.php:215
     66#: ../gateway-mpay24.php:227
    5867msgid "Enable mPAY24"
    5968msgstr "mPAY24 aktivieren"
    6069
    6170# @ wc-mpay24
    62 #: ../gateway-mpay24.php:221
     71#: ../gateway-mpay24.php:233
    6372msgid "Title"
    6473msgstr "Titel"
    6574
    6675# @ wc-mpay24
    67 #: ../gateway-mpay24.php:223
     76#: ../gateway-mpay24.php:235
    6877msgid "This controls the title which the user sees during checkout."
    6978msgstr ""
     
    7281
    7382# @ wc-mpay24
    74 #: ../gateway-mpay24.php:225
     83#: ../gateway-mpay24.php:237
    7584msgid "Credit card"
    7685msgstr "Kreditkarte"
    7786
    7887# @ wc-mpay24
    79 #: ../gateway-mpay24.php:228
     88#: ../gateway-mpay24.php:240
    8089msgid "Description"
    8190msgstr "Beschreibung"
    8291
    8392# @ wc-mpay24
    84 #: ../gateway-mpay24.php:230
     93#: ../gateway-mpay24.php:242
    8594msgid "This controls the description which the user sees during checkout."
    8695msgstr "Dies aktiviert die Beschreibung, die der Kunde an der Kasse sieht."
    8796
    8897# @ wc-mpay24
    89 #: ../gateway-mpay24.php:232
     98#: ../gateway-mpay24.php:244
    9099msgid "Pay with your credit card via mPAY24."
    91100msgstr "Bezahlen Sie mit Ihrer Kreditkarte über mPAY24."
    92101
    93102# @ wc-mpay24
    94 #: ../gateway-mpay24.php:235
     103#: ../gateway-mpay24.php:247
    95104msgid "Thank you page text"
    96105msgstr "Text für Danke-Seite"
    97106
    98107# @ wc-mpay24
    99 #: ../gateway-mpay24.php:237
     108#: ../gateway-mpay24.php:249
    100109msgid ""
    101110"This controls the text which the user sees on the order thank you page above "
     
    106115
    107116# @ wc-mpay24
    108 #: ../gateway-mpay24.php:241
     117#: ../gateway-mpay24.php:253
    109118msgid "Customer email text"
    110119msgstr "Text für Kunden Bestätigungsmail"
    111120
    112121# @ wc-mpay24
    113 #: ../gateway-mpay24.php:243
     122#: ../gateway-mpay24.php:255
    114123msgid ""
    115124"This controls the text which the user sees in order confirmation email below "
     
    119128"Bestellungen sieht."
    120129
    121 #: ../gateway-mpay24.php:247
     130#: ../gateway-mpay24.php:259
    122131msgid "mPAY24 Settings"
    123132msgstr "mPAY24 Einstellungen"
    124133
    125134# @ wc-mpay24
    126 #: ../gateway-mpay24.php:252
     135#: ../gateway-mpay24.php:264
    127136msgid "Username TEST"
    128137msgstr "Benutzername TEST"
    129138
    130139# @ wc-mpay24
    131 #: ../gateway-mpay24.php:254
     140#: ../gateway-mpay24.php:266
    132141msgid "This is the SOAP API username (without leading u) for test environment."
    133142msgstr ""
     
    135144
    136145# @ wc-mpay24
    137 #: ../gateway-mpay24.php:259
     146#: ../gateway-mpay24.php:271
    138147msgid "Password TEST"
    139148msgstr "Passwort TEST"
    140149
    141150# @ wc-mpay24
    142 #: ../gateway-mpay24.php:261
     151#: ../gateway-mpay24.php:273
    143152msgid "This is the SOAP API password for test environment."
    144153msgstr "Dies ist das SOAP API Passwort für die Testumgebung."
    145154
    146155# @ wc-mpay24
    147 #: ../gateway-mpay24.php:266
     156#: ../gateway-mpay24.php:278
    148157msgid "Username PROD"
    149158msgstr "Benutzername PROD"
    150159
    151160# @ wc-mpay24
    152 #: ../gateway-mpay24.php:268
     161#: ../gateway-mpay24.php:280
    153162msgid "This is the SOAP API username (without leading u) for prod environment."
    154163msgstr ""
     
    157166
    158167# @ wc-mpay24
    159 #: ../gateway-mpay24.php:273
     168#: ../gateway-mpay24.php:285
    160169msgid "Password PROD"
    161170msgstr "Passwort PROD"
    162171
    163172# @ wc-mpay24
    164 #: ../gateway-mpay24.php:275
     173#: ../gateway-mpay24.php:287
    165174msgid "This is the SOAP API password for prod environment."
    166175msgstr "Dies ist das SOAP API Passwort für die Produktivumgebung."
    167176
    168177# @ wc-mpay24
    169 #: ../gateway-mpay24.php:280
     178#: ../gateway-mpay24.php:292
    170179msgid "Test Mode"
    171180msgstr "Testmodus"
    172181
    173182# @ wc-mpay24
    174 #: ../gateway-mpay24.php:281
     183#: ../gateway-mpay24.php:293
    175184msgid "Enable Test Mode"
    176185msgstr "Entwicklungsmodus aktivieren"
    177186
    178187# @ wc-mpay24
    179 #: ../gateway-mpay24.php:283
     188#: ../gateway-mpay24.php:295
    180189msgid "Place the payment gateway in test mode."
    181190msgstr "Versetzt das Bezahlungssystem in den Testmodus."
    182191
    183192# @ wc-mpay24
    184 #: ../gateway-mpay24.php:288
     193#: ../gateway-mpay24.php:300
    185194msgid "Debug Log"
    186195msgstr "Debug-Protokoll"
    187196
    188197# @ wc-mpay24
    189 #: ../gateway-mpay24.php:289
     198#: ../gateway-mpay24.php:301
    190199msgid "Enable logging"
    191200msgstr "Protokollierung aktivieren"
    192201
    193202# @ wc-mpay24
    194 #: ../gateway-mpay24.php:291
     203#: ../gateway-mpay24.php:303
    195204msgid "Log mPAY24 events inside <code>/plugins/woocommerce/logs/</code>"
    196205msgstr ""
     
    198207
    199208# @ wc-mpay24
    200 #: ../gateway-mpay24.php:296
     209#: ../gateway-mpay24.php:308
    201210msgid "mPAY24 Payment Page Styling"
    202211msgstr "mPAY24 Bezahlfenster Styling"
    203212
    204 #: ../gateway-mpay24.php:301
     213#: ../gateway-mpay24.php:313
    205214msgid "Language"
    206215msgstr "Sprache"
    207216
    208217# @ wc-mpay24
    209 #: ../gateway-mpay24.php:304
     218#: ../gateway-mpay24.php:316
    210219msgid "Bulgarian"
    211220msgstr "Bulgarisch"
    212221
    213 #: ../gateway-mpay24.php:305
     222#: ../gateway-mpay24.php:317
    214223msgid "Chinese"
    215224msgstr "Chinesisch"
    216225
    217 #: ../gateway-mpay24.php:306
     226#: ../gateway-mpay24.php:318
    218227msgid "Croatian"
    219228msgstr "Kroatisch"
    220229
    221230# @ wc-mpay24
    222 #: ../gateway-mpay24.php:307
     231#: ../gateway-mpay24.php:319
    223232msgid "Czech"
    224233msgstr "Tschechisch"
    225234
    226235# @ wc-mpay24
    227 #: ../gateway-mpay24.php:308
     236#: ../gateway-mpay24.php:320
    228237msgid "Dutch"
    229238msgstr "Niederländisch"
    230239
    231240# @ wc-mpay24
    232 #: ../gateway-mpay24.php:309
     241#: ../gateway-mpay24.php:321
    233242msgid "English"
    234243msgstr "Englisch"
    235244
    236245# @ wc-mpay24
    237 #: ../gateway-mpay24.php:310
     246#: ../gateway-mpay24.php:322
    238247msgid "French"
    239248msgstr "Französisch"
    240249
    241250# @ wc-mpay24
    242 #: ../gateway-mpay24.php:311
     251#: ../gateway-mpay24.php:323
    243252msgid "German"
    244253msgstr "Deutsch"
    245254
    246255# @ wc-mpay24
    247 #: ../gateway-mpay24.php:312
     256#: ../gateway-mpay24.php:324
    248257msgid "Hungarian"
    249258msgstr "Ungarisch"
    250259
    251 #: ../gateway-mpay24.php:313
     260#: ../gateway-mpay24.php:325
    252261msgid "Italian"
    253262msgstr "Italienisch"
    254263
    255 #: ../gateway-mpay24.php:314
     264#: ../gateway-mpay24.php:326
    256265msgid "Japanese"
    257266msgstr "Japanisch"
    258267
    259268# @ wc-mpay24
    260 #: ../gateway-mpay24.php:315
     269#: ../gateway-mpay24.php:327
    261270msgid "Polish"
    262271msgstr "Polnisch"
    263272
    264 #: ../gateway-mpay24.php:316
     273#: ../gateway-mpay24.php:328
    265274msgid "Portuguese"
    266275msgstr "Portugiesisch"
    267276
    268 #: ../gateway-mpay24.php:317
     277#: ../gateway-mpay24.php:329
    269278msgid "Romanian"
    270279msgstr "Rumänisch"
    271280
    272 #: ../gateway-mpay24.php:318
     281#: ../gateway-mpay24.php:330
    273282msgid "Russian"
    274283msgstr "Russisch"
    275284
    276 #: ../gateway-mpay24.php:319
     285#: ../gateway-mpay24.php:331
    277286msgid "Serbian"
    278287msgstr "Serbisch"
    279288
    280 #: ../gateway-mpay24.php:320
     289#: ../gateway-mpay24.php:332
    281290msgid "Slovak"
    282291msgstr "Slowakisch"
    283292
    284 #: ../gateway-mpay24.php:321
     293#: ../gateway-mpay24.php:333
    285294msgid "Slovenian"
    286295msgstr "Slowenisch"
    287296
    288297# @ wc-mpay24
    289 #: ../gateway-mpay24.php:322
     298#: ../gateway-mpay24.php:334
    290299msgid "Spanish"
    291300msgstr "Spanisch"
    292301
    293 #: ../gateway-mpay24.php:323
     302#: ../gateway-mpay24.php:335
    294303msgid "Turkish"
    295304msgstr "Türkisch"
    296305
    297306# @ wc-mpay24
    298 #: ../gateway-mpay24.php:325
     307#: ../gateway-mpay24.php:337
    299308msgid "This controls in which language the payment page is shown."
    300309msgstr ""
    301310"Dies aktiviert in welcher Sprache das mPAY24 Bezahlfenster angezeigt wird."
    302311
    303 #: ../gateway-mpay24.php:330
     312#: ../gateway-mpay24.php:342
    304313msgid "Page Background Color"
    305314msgstr "Seitenhintergrundfarbe"
    306315
    307 #: ../gateway-mpay24.php:331
     316#: ../gateway-mpay24.php:343
    308317msgid "Background color of the payment page. Default"
    309318msgstr "Hintergrundfarbe des Bezahlfensters. Standard"
    310319
    311 #: ../gateway-mpay24.php:338
     320#: ../gateway-mpay24.php:350
    312321msgid "Logo Styling"
    313322msgstr "Logo Styling"
    314323
    315 #: ../gateway-mpay24.php:339
     324#: ../gateway-mpay24.php:351
    316325msgid "CSS rules for payment page logo image. Default"
    317326msgstr "CSS Regeln für das Logo im Bezahlfenster. Standard"
    318327
    319 #: ../gateway-mpay24.php:344
     328#: ../gateway-mpay24.php:356
    320329msgid "Page Header Styling"
    321330msgstr "Seitenüberschrift Styling"
    322331
    323 #: ../gateway-mpay24.php:345
     332#: ../gateway-mpay24.php:357
    324333msgid "CSS rules for payment page header. Default"
    325334msgstr "CSS Regeln für die Seitenüberschrift des Bezahlfensters. Standard"
    326335
    327 #: ../gateway-mpay24.php:350
     336#: ../gateway-mpay24.php:362
    328337msgid "Page Caption Styling"
    329338msgstr "Seitentitel Styling"
    330339
    331 #: ../gateway-mpay24.php:351
     340#: ../gateway-mpay24.php:363
    332341msgid "CSS rules for payment page caption. Default"
    333342msgstr "CSS Regeln für den Seitentitel des Bezahlfensters. Standard"
    334343
    335 #: ../gateway-mpay24.php:356
     344#: ../gateway-mpay24.php:368
    336345msgid "Page Styling"
    337346msgstr "Seiten Styling"
    338347
    339 #: ../gateway-mpay24.php:357
     348#: ../gateway-mpay24.php:369
    340349msgid "CSS rules for payment page box with inputs. Default"
    341350msgstr "CSS Regeln für den Eingabebereich im Bezahlfenster. Standard"
    342351
    343 #: ../gateway-mpay24.php:362
     352#: ../gateway-mpay24.php:374
    344353msgid "Input Fields Styling"
    345354msgstr "Eingabefelder Styling"
    346355
    347 #: ../gateway-mpay24.php:363
     356#: ../gateway-mpay24.php:375
    348357msgid "CSS rules for payment page input fields."
    349358msgstr "CSS Regeln für die Eingabefelder im Bezahlfenster."
    350359
    351 #: ../gateway-mpay24.php:368
     360#: ../gateway-mpay24.php:380
    352361msgid "Drop Down Lists Styling"
    353362msgstr "Auswahllisten Styling"
    354363
    355 #: ../gateway-mpay24.php:369
     364#: ../gateway-mpay24.php:381
    356365msgid "CSS rules for payment page drop down lists."
    357366msgstr "CSS Regeln für die Auswahllisten im Bezahlfenster."
    358367
    359 #: ../gateway-mpay24.php:374
     368#: ../gateway-mpay24.php:386
    360369msgid "Buttons Styling"
    361370msgstr "Buttons Styling"
    362371
    363 #: ../gateway-mpay24.php:375
     372#: ../gateway-mpay24.php:387
    364373msgid "CSS rules for payment page buttons."
    365374msgstr "CSS Regeln für die Buttons im Bezahlfenster."
    366375
    367 #: ../gateway-mpay24.php:380
     376#: ../gateway-mpay24.php:392
    368377msgid "Errors Styling"
    369378msgstr "Fehler Styling"
    370379
    371 #: ../gateway-mpay24.php:381
     380#: ../gateway-mpay24.php:393
    372381msgid "CSS rules for payment page error messages."
    373382msgstr "CSS Regeln für Fehlermeldungen im Bezahlfenster."
    374383
    375 #: ../gateway-mpay24.php:386
     384#: ../gateway-mpay24.php:398
    376385msgid "Errors Header Styling"
    377386msgstr "Fehlerüberschrift Styling"
    378387
    379 #: ../gateway-mpay24.php:387
     388#: ../gateway-mpay24.php:399
    380389msgid "CSS rules for payment page error heading."
    381390msgstr "CSS Regeln für Fehlerüberschrift im Bezahlfenster."
    382391
    383 #: ../gateway-mpay24.php:392
     392#: ../gateway-mpay24.php:404
    384393msgid "Success Title Styling"
    385394msgstr "Titel auf Erfolgsseite Styling"
    386395
    387 #: ../gateway-mpay24.php:393
     396#: ../gateway-mpay24.php:405
    388397msgid "CSS rules for payment success page title area."
    389398msgstr "CSS Regeln für den Seitentitel auf der Erfolgsseite im Bezahlfenster."
    390399
    391 #: ../gateway-mpay24.php:398
     400#: ../gateway-mpay24.php:410
    392401msgid "Error Title Styling"
    393402msgstr "Titel auf Fehlerseite Styling"
    394403
    395 #: ../gateway-mpay24.php:399
     404#: ../gateway-mpay24.php:411
    396405msgid "CSS rules for payment error page title area."
    397406msgstr "CSS Regeln für den Seitentitel auf der Fehlerseite im Bezahlfenster."
    398407
    399 #: ../gateway-mpay24.php:404
     408#: ../gateway-mpay24.php:416
    400409msgid "Footer Styling"
    401410msgstr "Fußzeilen Styling"
    402411
    403 #: ../gateway-mpay24.php:405
     412#: ../gateway-mpay24.php:417
    404413msgid "CSS rules for payment page footer area."
    405414msgstr "CSS Regeln für den Fußzeilenbereich im Bezahlfenster."
    406415
    407 # @ wc-mpay24
    408 #: ../gateway-mpay24.php:503
     416#: ../gateway-mpay24.php:422
     417msgid "Access Protection"
     418msgstr "Zugriffsschutz"
     419
     420#: ../gateway-mpay24.php:424
     421msgid ""
     422"If your site has an access protection with .htaccess fill in the credentials "
     423"to get the right status from mPAY24 during payment process. Please remove "
     424"them as website is productive."
     425msgstr ""
     426"Falls Ihre Seite einen Zugriffsschutz via .htaccess hat, geben Sie hier die "
     427"Zugangsdaten ein um den richtigen Status von mPAY24 während des "
     428"Bezahlvorgangs zurückzubekommen. Bitte entfernen Sie diese Daten sobald die "
     429"Website produktiv ist."
     430
     431#: ../gateway-mpay24.php:427
     432msgid "Username .htaccess"
     433msgstr "Benutzername .htaccess"
     434
     435#: ../gateway-mpay24.php:432
     436msgid "Password .htaccess"
     437msgstr "Passwort .htaccess"
     438
     439# @ wc-mpay24
     440#: ../gateway-mpay24.php:544
    409441msgid "TEST MODE ENABLED"
    410442msgstr "TEST MODUS AKTIVIERT"
    411443
    412 #: ../gateway-mpay24.php:581
    413 msgid "mPAY24 IPN Request Failure"
    414 msgstr "mPAY24 IPN Anfrage fehlgeschlagen"
    415 
    416 # @ wc-mpay24
    417 #: ../gateway-mpay24.php:623
     444# @ wc-mpay24
     445#: ../gateway-mpay24.php:663
    418446msgid "mPAY24 payment completed"
    419447msgstr "mPAY24 Bezahlung abgeschlossen"
    420448
    421449# @ wc-mpay24
    422 #: ../gateway-mpay24.php:632 ../gateway-mpay24.php:637
    423 #: ../gateway-mpay24.php:641 ../gateway-mpay24.php:645
     450#: ../gateway-mpay24.php:673 ../gateway-mpay24.php:677
     451#: ../gateway-mpay24.php:683 ../gateway-mpay24.php:687
    424452#, php-format
    425453msgid "Payment %s via mPAY24."
     
    427455
    428456# @ wc-mpay24
    429 #: ../gateway-mpay24.php:638
     457#: ../gateway-mpay24.php:679
    430458msgid "Payment failed via mPAY24."
    431459msgstr "Bezahlung über mPAY24 fehlgeschlagen."
     460
     461#~ msgid "mPAY24 IPN Request Failure"
     462#~ msgstr "mPAY24 IPN Anfrage fehlgeschlagen"
  • woocommerce-mpay24-gateway/trunk/readme.txt

    r925767 r960002  
    66Requires at least: 3.5
    77Tested up to: 3.9.1
    8 Stable tag: 1.3
     8Stable tag: 1.4
    99License: GNU General Public License v3.0
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    2525* no mPAY24 proSafe support
    2626* CSS styling for payment page
     27* Setting .htaccess credentials in mPAY24 confirmation url
    2728
    2829= mPAY24 =
     
    7677== Changelog ==
    7778
     79= 1.4 - 2014-07-18 =
     80* Bugfix: wc_add_notice not WC 2.0 compatible
     81* Bugfix: welcome message not WC 2.0 compatible
     82* Bugfix: transaction secret not saved correctly in database
     83* Enhancement: Fixed order status for "SOFORT"-Überweisung (thanks to [mmtomm](http://profiles.wordpress.org/mmtomm/) for donation)
     84* Enhancement: add var "order_button_text" with default text "Proceed to mPAY24" for the checkout submit button if gateway is selected, change text with filter "woocommerce_mpay24_button_text"
     85* New Feature: possibility to set .htaccess credentials in mPAY24 confirmation url in gateway settings
     86
    7887= 1.3 - 2014-06-03 =
    7988
Note: See TracChangeset for help on using the changeset viewer.