Changeset 960002
- Timestamp:
- 08/04/2014 02:24:44 PM (12 years ago)
- Location:
- woocommerce-mpay24-gateway
- Files:
-
- 6 edited
-
assets/screenshot-1.png (modified) (previous)
-
trunk/class-wc-mpay24-shop.php (modified) (2 diffs)
-
trunk/gateway-mpay24.php (modified) (13 diffs)
-
trunk/languages/wc-mpay24-de_DE.mo (modified) (previous)
-
trunk/languages/wc-mpay24-de_DE.po (modified) (10 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-mpay24-gateway/trunk/class-wc-mpay24-shop.php
r925767 r960002 467 467 $secret = $transactionDb->secret; 468 468 } else { 469 $secret = $this->createSecret( $this->getTid(), $this->getPrice(), 'EUR', time() ); 470 469 471 $wpdb->insert( 470 472 $wpdb->prefix . GATEWAY_MPAY24_TABLE_NAME, … … 478 480 ); 479 481 480 $secret = $this->createSecret( $this->getTid(), $this->getPrice(), 'EUR', time() );482 481 483 } 482 484 -
woocommerce-mpay24-gateway/trunk/gateway-mpay24.php
r925767 r960002 2 2 /* 3 3 Plugin Name: WooCommerce mPAY24 Gateway 4 Plugin URI: http://w ww.woothemes.com/product-category/woocommerce-extensions/4 Plugin URI: http://wordpress.org/plugins/woocommerce-mpay24-gateway/ 5 5 Description: Add mPAY24 Payment Gateway to WooCommerce Plugin 6 Version: 1. 36 Version: 1.4 7 7 Author: datenwerk innovationsagentur GmbH 8 8 Author URI: http://www.datenwerk.at … … 22 22 23 23 if ( ! defined( 'GATEWAY_MPAY24_VERSION' ) ) { 24 define( 'GATEWAY_MPAY24_VERSION', '1. 3' );24 define( 'GATEWAY_MPAY24_VERSION', '1.4' ); 25 25 } 26 26 if ( ! defined( 'GATEWAY_MPAY24_TABLE_NAME' ) ) { … … 84 84 ?> 85 85 <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> – 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§ion=WC_Gateway_MPAY24' ); ?>" class="button-primary"><?php _e( 'Payment Settings', 'wc-mpay24' ); ?></a></p> 90 </div> 91 <?php else: ?> 86 92 <p><?php _e( '<strong>mPAY24 gateway is installed</strong> – Configure the setting to get started :)', 'wc-mpay24' ); ?></p> 87 93 <p class="submit"><a href="<?php echo admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=wc_gateway_mpay24' ); ?>" class="button-primary"><?php _e( 'Checkout', 'wc-mpay24' ); ?></a></p> 94 <?php endif; ?> 88 95 </div> 89 96 <?php … … 129 136 var $error_title_style = ''; 130 137 var $footer_style = ''; 138 var $htaccessuser; 139 var $htaccesspass; 131 140 132 141 /** … … 137 146 138 147 $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' ) ); 140 150 $this->has_fields = false; 141 151 $this->method_title = __( 'mPAY24', 'wc-mpay24' ); // backend title 142 152 $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( '/' ) ); 144 154 145 155 require_once( GATEWAY_MPAY24_PATH . 'class-wc-mpay24-shop.php' ); … … 178 188 $this->error_title_style = $this->get_option( 'error_title_style' ); 179 189 $this->footer_style = $this->get_option( 'footer_style' ); 180 190 191 $this->htaccessuser = $this->get_option( 'htaccessuser' ); 192 $this->htaccesspass = $this->get_option( 'htaccesspass' ); 181 193 // Logging 182 194 if ( 'yes' == $this->debug ) { … … 406 418 'type' => 'textarea', 407 419 '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' => '' 408 435 ) 409 436 ); … … 429 456 <?php 430 457 } 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 } 431 472 432 473 /** … … 443 484 444 485 $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; 447 488 448 489 // start mpay24 transaction … … 460 501 461 502 $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 cancelled503 $shop->setErrorUrl( $order->get_cancel_order_url() ); // failed orders will also be marked as cancelled 463 504 $shop->setCancelUrl( $order->get_cancel_order_url() ); 464 $shop->setConfirmUrl( $this-> notify_url);505 $shop->setConfirmUrl( $this->protect_url( $this->notify_url ) ); 465 506 466 507 $shop->setPageBgColor( $this->page_bg_color ); … … 579 620 do_action( 'valid_mpay24_standard_request', $_GET ); 580 621 } else { 581 wc_add_notice( __( 'mPAY24 IPN Request Failure', 'wc-mpay24' ), 'error' );582 622 wp_die( 'mPAY24 IPN Request Failure' ); 583 623 } … … 628 668 } 629 669 break; 670 case 'suspended': 630 671 case 'reserved': 631 672 // Order pending … … 633 674 break; 634 675 case 'error': 635 case 'suspended':636 676 // Order failed 637 677 $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 } 639 681 break; 640 682 case 'credited': -
woocommerce-mpay24-gateway/trunk/languages/wc-mpay24-de_DE.po
r925767 r960002 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: WooCommerce mPAY24 Gateway v1. 3\n"3 "Project-Id-Version: WooCommerce mPAY24 Gateway v1.4\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 6-03 16:01+0100\n"6 "PO-Revision-Date: 2014-0 6-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" 7 7 "Last-Translator: Melanie Reichel <[email protected]>\n" 8 8 "Language-Team: datenwerk innovationsagentur GmbH <wordpressdev@datenwerk." … … 18 18 "X-Poedit-Basepath: .\n" 19 19 "X-Textdomain-Support: yes\n" 20 "X-Generator: Poedit 1.6. 5\n"20 "X-Generator: Poedit 1.6.7\n" 21 21 "X-Poedit-SearchPath-0: .\n" 22 22 "X-Poedit-SearchPath-1: ..\n" 23 23 24 24 # @ wc-mpay24 25 #: ../gateway-mpay24.php:86 25 #: ../gateway-mpay24.php:88 ../gateway-mpay24.php:92 26 #, fuzzy 26 27 msgid "" 27 28 "<strong>mPAY24 gateway is installed</strong> – Configure the setting " … … 31 32 "die Einstellungen um zu starten :)" 32 33 33 #: ../gateway-mpay24.php:87 34 #: ../gateway-mpay24.php:89 35 msgid "Payment Settings" 36 msgstr "Zahlungsweisen" 37 38 #: ../gateway-mpay24.php:93 34 39 msgid "Checkout" 35 40 msgstr "Kasse" 36 41 37 # @ wc-mpay24 38 #: ../gateway-mpay24.php:141 ../gateway-mpay24.php:421 42 #: ../gateway-mpay24.php:149 43 msgid "Proceed to mPAY24" 44 msgstr "Weiter zu mPAY24" 45 46 # @ wc-mpay24 47 #: ../gateway-mpay24.php:151 ../gateway-mpay24.php:448 39 48 msgid "mPAY24" 40 49 msgstr "mPAY24" 41 50 42 51 # @ wc-mpay24 43 #: ../gateway-mpay24.php:1 42 ../gateway-mpay24.php:42252 #: ../gateway-mpay24.php:152 ../gateway-mpay24.php:449 44 53 msgid "Online payment via mPAY24 payment page" 45 54 msgstr "Online Zahlung über das mPAY24 Bezahlfenster" 46 55 47 #: ../gateway-mpay24.php:2 0956 #: ../gateway-mpay24.php:221 48 57 msgid "Woocommerce Settings" 49 58 msgstr "Woocommerce Einstellungen" 50 59 51 60 # @ wc-mpay24 52 #: ../gateway-mpay24.php:2 1461 #: ../gateway-mpay24.php:226 53 62 msgid "Enable/Disable" 54 63 msgstr "Aktivieren/ Deaktivieren" 55 64 56 65 # @ wc-mpay24 57 #: ../gateway-mpay24.php:2 1566 #: ../gateway-mpay24.php:227 58 67 msgid "Enable mPAY24" 59 68 msgstr "mPAY24 aktivieren" 60 69 61 70 # @ wc-mpay24 62 #: ../gateway-mpay24.php:2 2171 #: ../gateway-mpay24.php:233 63 72 msgid "Title" 64 73 msgstr "Titel" 65 74 66 75 # @ wc-mpay24 67 #: ../gateway-mpay24.php:2 2376 #: ../gateway-mpay24.php:235 68 77 msgid "This controls the title which the user sees during checkout." 69 78 msgstr "" … … 72 81 73 82 # @ wc-mpay24 74 #: ../gateway-mpay24.php:2 2583 #: ../gateway-mpay24.php:237 75 84 msgid "Credit card" 76 85 msgstr "Kreditkarte" 77 86 78 87 # @ wc-mpay24 79 #: ../gateway-mpay24.php:2 2888 #: ../gateway-mpay24.php:240 80 89 msgid "Description" 81 90 msgstr "Beschreibung" 82 91 83 92 # @ wc-mpay24 84 #: ../gateway-mpay24.php:2 3093 #: ../gateway-mpay24.php:242 85 94 msgid "This controls the description which the user sees during checkout." 86 95 msgstr "Dies aktiviert die Beschreibung, die der Kunde an der Kasse sieht." 87 96 88 97 # @ wc-mpay24 89 #: ../gateway-mpay24.php:2 3298 #: ../gateway-mpay24.php:244 90 99 msgid "Pay with your credit card via mPAY24." 91 100 msgstr "Bezahlen Sie mit Ihrer Kreditkarte über mPAY24." 92 101 93 102 # @ wc-mpay24 94 #: ../gateway-mpay24.php:2 35103 #: ../gateway-mpay24.php:247 95 104 msgid "Thank you page text" 96 105 msgstr "Text für Danke-Seite" 97 106 98 107 # @ wc-mpay24 99 #: ../gateway-mpay24.php:2 37108 #: ../gateway-mpay24.php:249 100 109 msgid "" 101 110 "This controls the text which the user sees on the order thank you page above " … … 106 115 107 116 # @ wc-mpay24 108 #: ../gateway-mpay24.php:2 41117 #: ../gateway-mpay24.php:253 109 118 msgid "Customer email text" 110 119 msgstr "Text für Kunden Bestätigungsmail" 111 120 112 121 # @ wc-mpay24 113 #: ../gateway-mpay24.php:2 43122 #: ../gateway-mpay24.php:255 114 123 msgid "" 115 124 "This controls the text which the user sees in order confirmation email below " … … 119 128 "Bestellungen sieht." 120 129 121 #: ../gateway-mpay24.php:2 47130 #: ../gateway-mpay24.php:259 122 131 msgid "mPAY24 Settings" 123 132 msgstr "mPAY24 Einstellungen" 124 133 125 134 # @ wc-mpay24 126 #: ../gateway-mpay24.php:2 52135 #: ../gateway-mpay24.php:264 127 136 msgid "Username TEST" 128 137 msgstr "Benutzername TEST" 129 138 130 139 # @ wc-mpay24 131 #: ../gateway-mpay24.php:2 54140 #: ../gateway-mpay24.php:266 132 141 msgid "This is the SOAP API username (without leading u) for test environment." 133 142 msgstr "" … … 135 144 136 145 # @ wc-mpay24 137 #: ../gateway-mpay24.php:2 59146 #: ../gateway-mpay24.php:271 138 147 msgid "Password TEST" 139 148 msgstr "Passwort TEST" 140 149 141 150 # @ wc-mpay24 142 #: ../gateway-mpay24.php:2 61151 #: ../gateway-mpay24.php:273 143 152 msgid "This is the SOAP API password for test environment." 144 153 msgstr "Dies ist das SOAP API Passwort für die Testumgebung." 145 154 146 155 # @ wc-mpay24 147 #: ../gateway-mpay24.php:2 66156 #: ../gateway-mpay24.php:278 148 157 msgid "Username PROD" 149 158 msgstr "Benutzername PROD" 150 159 151 160 # @ wc-mpay24 152 #: ../gateway-mpay24.php:2 68161 #: ../gateway-mpay24.php:280 153 162 msgid "This is the SOAP API username (without leading u) for prod environment." 154 163 msgstr "" … … 157 166 158 167 # @ wc-mpay24 159 #: ../gateway-mpay24.php:2 73168 #: ../gateway-mpay24.php:285 160 169 msgid "Password PROD" 161 170 msgstr "Passwort PROD" 162 171 163 172 # @ wc-mpay24 164 #: ../gateway-mpay24.php:2 75173 #: ../gateway-mpay24.php:287 165 174 msgid "This is the SOAP API password for prod environment." 166 175 msgstr "Dies ist das SOAP API Passwort für die Produktivumgebung." 167 176 168 177 # @ wc-mpay24 169 #: ../gateway-mpay24.php:2 80178 #: ../gateway-mpay24.php:292 170 179 msgid "Test Mode" 171 180 msgstr "Testmodus" 172 181 173 182 # @ wc-mpay24 174 #: ../gateway-mpay24.php:2 81183 #: ../gateway-mpay24.php:293 175 184 msgid "Enable Test Mode" 176 185 msgstr "Entwicklungsmodus aktivieren" 177 186 178 187 # @ wc-mpay24 179 #: ../gateway-mpay24.php:2 83188 #: ../gateway-mpay24.php:295 180 189 msgid "Place the payment gateway in test mode." 181 190 msgstr "Versetzt das Bezahlungssystem in den Testmodus." 182 191 183 192 # @ wc-mpay24 184 #: ../gateway-mpay24.php: 288193 #: ../gateway-mpay24.php:300 185 194 msgid "Debug Log" 186 195 msgstr "Debug-Protokoll" 187 196 188 197 # @ wc-mpay24 189 #: ../gateway-mpay24.php: 289198 #: ../gateway-mpay24.php:301 190 199 msgid "Enable logging" 191 200 msgstr "Protokollierung aktivieren" 192 201 193 202 # @ wc-mpay24 194 #: ../gateway-mpay24.php: 291203 #: ../gateway-mpay24.php:303 195 204 msgid "Log mPAY24 events inside <code>/plugins/woocommerce/logs/</code>" 196 205 msgstr "" … … 198 207 199 208 # @ wc-mpay24 200 #: ../gateway-mpay24.php: 296209 #: ../gateway-mpay24.php:308 201 210 msgid "mPAY24 Payment Page Styling" 202 211 msgstr "mPAY24 Bezahlfenster Styling" 203 212 204 #: ../gateway-mpay24.php:3 01213 #: ../gateway-mpay24.php:313 205 214 msgid "Language" 206 215 msgstr "Sprache" 207 216 208 217 # @ wc-mpay24 209 #: ../gateway-mpay24.php:3 04218 #: ../gateway-mpay24.php:316 210 219 msgid "Bulgarian" 211 220 msgstr "Bulgarisch" 212 221 213 #: ../gateway-mpay24.php:3 05222 #: ../gateway-mpay24.php:317 214 223 msgid "Chinese" 215 224 msgstr "Chinesisch" 216 225 217 #: ../gateway-mpay24.php:3 06226 #: ../gateway-mpay24.php:318 218 227 msgid "Croatian" 219 228 msgstr "Kroatisch" 220 229 221 230 # @ wc-mpay24 222 #: ../gateway-mpay24.php:3 07231 #: ../gateway-mpay24.php:319 223 232 msgid "Czech" 224 233 msgstr "Tschechisch" 225 234 226 235 # @ wc-mpay24 227 #: ../gateway-mpay24.php:3 08236 #: ../gateway-mpay24.php:320 228 237 msgid "Dutch" 229 238 msgstr "Niederländisch" 230 239 231 240 # @ wc-mpay24 232 #: ../gateway-mpay24.php:3 09241 #: ../gateway-mpay24.php:321 233 242 msgid "English" 234 243 msgstr "Englisch" 235 244 236 245 # @ wc-mpay24 237 #: ../gateway-mpay24.php:3 10246 #: ../gateway-mpay24.php:322 238 247 msgid "French" 239 248 msgstr "Französisch" 240 249 241 250 # @ wc-mpay24 242 #: ../gateway-mpay24.php:3 11251 #: ../gateway-mpay24.php:323 243 252 msgid "German" 244 253 msgstr "Deutsch" 245 254 246 255 # @ wc-mpay24 247 #: ../gateway-mpay24.php:3 12256 #: ../gateway-mpay24.php:324 248 257 msgid "Hungarian" 249 258 msgstr "Ungarisch" 250 259 251 #: ../gateway-mpay24.php:3 13260 #: ../gateway-mpay24.php:325 252 261 msgid "Italian" 253 262 msgstr "Italienisch" 254 263 255 #: ../gateway-mpay24.php:3 14264 #: ../gateway-mpay24.php:326 256 265 msgid "Japanese" 257 266 msgstr "Japanisch" 258 267 259 268 # @ wc-mpay24 260 #: ../gateway-mpay24.php:3 15269 #: ../gateway-mpay24.php:327 261 270 msgid "Polish" 262 271 msgstr "Polnisch" 263 272 264 #: ../gateway-mpay24.php:3 16273 #: ../gateway-mpay24.php:328 265 274 msgid "Portuguese" 266 275 msgstr "Portugiesisch" 267 276 268 #: ../gateway-mpay24.php:3 17277 #: ../gateway-mpay24.php:329 269 278 msgid "Romanian" 270 279 msgstr "Rumänisch" 271 280 272 #: ../gateway-mpay24.php:3 18281 #: ../gateway-mpay24.php:330 273 282 msgid "Russian" 274 283 msgstr "Russisch" 275 284 276 #: ../gateway-mpay24.php:3 19285 #: ../gateway-mpay24.php:331 277 286 msgid "Serbian" 278 287 msgstr "Serbisch" 279 288 280 #: ../gateway-mpay24.php:3 20289 #: ../gateway-mpay24.php:332 281 290 msgid "Slovak" 282 291 msgstr "Slowakisch" 283 292 284 #: ../gateway-mpay24.php:3 21293 #: ../gateway-mpay24.php:333 285 294 msgid "Slovenian" 286 295 msgstr "Slowenisch" 287 296 288 297 # @ wc-mpay24 289 #: ../gateway-mpay24.php:3 22298 #: ../gateway-mpay24.php:334 290 299 msgid "Spanish" 291 300 msgstr "Spanisch" 292 301 293 #: ../gateway-mpay24.php:3 23302 #: ../gateway-mpay24.php:335 294 303 msgid "Turkish" 295 304 msgstr "Türkisch" 296 305 297 306 # @ wc-mpay24 298 #: ../gateway-mpay24.php:3 25307 #: ../gateway-mpay24.php:337 299 308 msgid "This controls in which language the payment page is shown." 300 309 msgstr "" 301 310 "Dies aktiviert in welcher Sprache das mPAY24 Bezahlfenster angezeigt wird." 302 311 303 #: ../gateway-mpay24.php:3 30312 #: ../gateway-mpay24.php:342 304 313 msgid "Page Background Color" 305 314 msgstr "Seitenhintergrundfarbe" 306 315 307 #: ../gateway-mpay24.php:3 31316 #: ../gateway-mpay24.php:343 308 317 msgid "Background color of the payment page. Default" 309 318 msgstr "Hintergrundfarbe des Bezahlfensters. Standard" 310 319 311 #: ../gateway-mpay24.php:3 38320 #: ../gateway-mpay24.php:350 312 321 msgid "Logo Styling" 313 322 msgstr "Logo Styling" 314 323 315 #: ../gateway-mpay24.php:3 39324 #: ../gateway-mpay24.php:351 316 325 msgid "CSS rules for payment page logo image. Default" 317 326 msgstr "CSS Regeln für das Logo im Bezahlfenster. Standard" 318 327 319 #: ../gateway-mpay24.php:3 44328 #: ../gateway-mpay24.php:356 320 329 msgid "Page Header Styling" 321 330 msgstr "Seitenüberschrift Styling" 322 331 323 #: ../gateway-mpay24.php:3 45332 #: ../gateway-mpay24.php:357 324 333 msgid "CSS rules for payment page header. Default" 325 334 msgstr "CSS Regeln für die Seitenüberschrift des Bezahlfensters. Standard" 326 335 327 #: ../gateway-mpay24.php:3 50336 #: ../gateway-mpay24.php:362 328 337 msgid "Page Caption Styling" 329 338 msgstr "Seitentitel Styling" 330 339 331 #: ../gateway-mpay24.php:3 51340 #: ../gateway-mpay24.php:363 332 341 msgid "CSS rules for payment page caption. Default" 333 342 msgstr "CSS Regeln für den Seitentitel des Bezahlfensters. Standard" 334 343 335 #: ../gateway-mpay24.php:3 56344 #: ../gateway-mpay24.php:368 336 345 msgid "Page Styling" 337 346 msgstr "Seiten Styling" 338 347 339 #: ../gateway-mpay24.php:3 57348 #: ../gateway-mpay24.php:369 340 349 msgid "CSS rules for payment page box with inputs. Default" 341 350 msgstr "CSS Regeln für den Eingabebereich im Bezahlfenster. Standard" 342 351 343 #: ../gateway-mpay24.php:3 62352 #: ../gateway-mpay24.php:374 344 353 msgid "Input Fields Styling" 345 354 msgstr "Eingabefelder Styling" 346 355 347 #: ../gateway-mpay24.php:3 63356 #: ../gateway-mpay24.php:375 348 357 msgid "CSS rules for payment page input fields." 349 358 msgstr "CSS Regeln für die Eingabefelder im Bezahlfenster." 350 359 351 #: ../gateway-mpay24.php:3 68360 #: ../gateway-mpay24.php:380 352 361 msgid "Drop Down Lists Styling" 353 362 msgstr "Auswahllisten Styling" 354 363 355 #: ../gateway-mpay24.php:3 69364 #: ../gateway-mpay24.php:381 356 365 msgid "CSS rules for payment page drop down lists." 357 366 msgstr "CSS Regeln für die Auswahllisten im Bezahlfenster." 358 367 359 #: ../gateway-mpay24.php:3 74368 #: ../gateway-mpay24.php:386 360 369 msgid "Buttons Styling" 361 370 msgstr "Buttons Styling" 362 371 363 #: ../gateway-mpay24.php:3 75372 #: ../gateway-mpay24.php:387 364 373 msgid "CSS rules for payment page buttons." 365 374 msgstr "CSS Regeln für die Buttons im Bezahlfenster." 366 375 367 #: ../gateway-mpay24.php:3 80376 #: ../gateway-mpay24.php:392 368 377 msgid "Errors Styling" 369 378 msgstr "Fehler Styling" 370 379 371 #: ../gateway-mpay24.php:3 81380 #: ../gateway-mpay24.php:393 372 381 msgid "CSS rules for payment page error messages." 373 382 msgstr "CSS Regeln für Fehlermeldungen im Bezahlfenster." 374 383 375 #: ../gateway-mpay24.php:3 86384 #: ../gateway-mpay24.php:398 376 385 msgid "Errors Header Styling" 377 386 msgstr "Fehlerüberschrift Styling" 378 387 379 #: ../gateway-mpay24.php:3 87388 #: ../gateway-mpay24.php:399 380 389 msgid "CSS rules for payment page error heading." 381 390 msgstr "CSS Regeln für Fehlerüberschrift im Bezahlfenster." 382 391 383 #: ../gateway-mpay24.php: 392392 #: ../gateway-mpay24.php:404 384 393 msgid "Success Title Styling" 385 394 msgstr "Titel auf Erfolgsseite Styling" 386 395 387 #: ../gateway-mpay24.php: 393396 #: ../gateway-mpay24.php:405 388 397 msgid "CSS rules for payment success page title area." 389 398 msgstr "CSS Regeln für den Seitentitel auf der Erfolgsseite im Bezahlfenster." 390 399 391 #: ../gateway-mpay24.php: 398400 #: ../gateway-mpay24.php:410 392 401 msgid "Error Title Styling" 393 402 msgstr "Titel auf Fehlerseite Styling" 394 403 395 #: ../gateway-mpay24.php: 399404 #: ../gateway-mpay24.php:411 396 405 msgid "CSS rules for payment error page title area." 397 406 msgstr "CSS Regeln für den Seitentitel auf der Fehlerseite im Bezahlfenster." 398 407 399 #: ../gateway-mpay24.php:4 04408 #: ../gateway-mpay24.php:416 400 409 msgid "Footer Styling" 401 410 msgstr "Fußzeilen Styling" 402 411 403 #: ../gateway-mpay24.php:4 05412 #: ../gateway-mpay24.php:417 404 413 msgid "CSS rules for payment page footer area." 405 414 msgstr "CSS Regeln für den Fußzeilenbereich im Bezahlfenster." 406 415 407 # @ wc-mpay24 408 #: ../gateway-mpay24.php:503 416 #: ../gateway-mpay24.php:422 417 msgid "Access Protection" 418 msgstr "Zugriffsschutz" 419 420 #: ../gateway-mpay24.php:424 421 msgid "" 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." 425 msgstr "" 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 432 msgid "Username .htaccess" 433 msgstr "Benutzername .htaccess" 434 435 #: ../gateway-mpay24.php:432 436 msgid "Password .htaccess" 437 msgstr "Passwort .htaccess" 438 439 # @ wc-mpay24 440 #: ../gateway-mpay24.php:544 409 441 msgid "TEST MODE ENABLED" 410 442 msgstr "TEST MODUS AKTIVIERT" 411 443 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 418 446 msgid "mPAY24 payment completed" 419 447 msgstr "mPAY24 Bezahlung abgeschlossen" 420 448 421 449 # @ wc-mpay24 422 #: ../gateway-mpay24.php:6 32 ../gateway-mpay24.php:637423 #: ../gateway-mpay24.php:6 41 ../gateway-mpay24.php:645450 #: ../gateway-mpay24.php:673 ../gateway-mpay24.php:677 451 #: ../gateway-mpay24.php:683 ../gateway-mpay24.php:687 424 452 #, php-format 425 453 msgid "Payment %s via mPAY24." … … 427 455 428 456 # @ wc-mpay24 429 #: ../gateway-mpay24.php:6 38457 #: ../gateway-mpay24.php:679 430 458 msgid "Payment failed via mPAY24." 431 459 msgstr "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 6 6 Requires at least: 3.5 7 7 Tested up to: 3.9.1 8 Stable tag: 1. 38 Stable tag: 1.4 9 9 License: GNU General Public License v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 25 25 * no mPAY24 proSafe support 26 26 * CSS styling for payment page 27 * Setting .htaccess credentials in mPAY24 confirmation url 27 28 28 29 = mPAY24 = … … 76 77 == Changelog == 77 78 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 78 87 = 1.3 - 2014-06-03 = 79 88
Note: See TracChangeset
for help on using the changeset viewer.