Plugin Directory

Changeset 1034441


Ignore:
Timestamp:
11/28/2014 12:36:57 PM (11 years ago)
Author:
datenwerk
Message:

1.5 - 2014-11-28

  • Bugfix: change translation domain for "Proceed to mPAY24" to "mpay24"
  • Enhancement: changed default payment page language to "EN"
  • New Feature: set automatically payment page language to current site language, if available on mPAY24, else use "EN".

"ZH" is mapped to "zh-hans". "PT" is mapped to "pt-pt". WPML plugin required for this feature!

Location:
woocommerce-mpay24-gateway/trunk
Files:
5 edited

Legend:

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

    r1003623 r1034441  
    2525     * @var string
    2626     */
    27     protected $language = 'DE';
     27    protected $language = 'EN';
    2828
    2929    /**
  • woocommerce-mpay24-gateway/trunk/gateway-mpay24.php

    r1006337 r1034441  
    44    Plugin URI: http://wordpress.org/plugins/woocommerce-mpay24-gateway/
    55    Description: Add mPAY24 Payment Gateway to WooCommerce Plugin
    6     Version: 1.4.2
     6    Version: 1.5
    77    Author: datenwerk innovationsagentur GmbH
    88    Author URI: http://www.datenwerk.at
    99    Requires at least: 3.5
    10     Tested up to: 4.0
     10    Tested up to: 4.0.1
    1111*/
    1212
     
    2222
    2323    if ( ! defined( 'GATEWAY_MPAY24_VERSION' ) ) {
    24         define( 'GATEWAY_MPAY24_VERSION', '1.4.2' );
     24        define( 'GATEWAY_MPAY24_VERSION', '1.5' );
    2525    }
    2626    if ( ! defined( 'GATEWAY_MPAY24_TABLE_NAME' ) ) {
     
    115115            var $thankyou_text;
    116116            var $email_text;
    117             var $payment_page_lang = 'DE';
     117            var $payment_page_lang = 'EN';
    118118            var $apiusertest;
    119119            var $apipasstest;
     
    138138            var $htaccessuser;
    139139            var $htaccesspass;
     140           
     141            // only these who cannot mapped 1:1
     142            var $wpml_lang_mpay24 = array(
     143                'zh-hans' => 'ZH',
     144                'pt-pt'   => 'PT',
     145                'bg'      => 'BG',
     146                'hr'      => 'HR',
     147                'cs'      => 'CS',
     148                'nl'      => 'NL',
     149                'en'      => 'EN',
     150                'fr'      => 'FR',
     151                'de'      => 'DE',
     152                'hu'      => 'HU',
     153                'it'      => 'IT',
     154                'ja'      => 'JA',
     155                'pl'      => 'PL',
     156                'ro'      => 'RO',
     157                'ru'      => 'RU',
     158                'sr'      => 'SR',
     159                'sk'      => 'SK',
     160                'sl'      => 'SL',
     161                'es'      => 'ES',
     162                'tr'      => 'TR'
     163            );
    140164
    141165            /**
     
    147171                $this->id                 = 'mpay24';
    148172                $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' ) );
     173                $this->order_button_text  = apply_filters( 'woocommerce_mpay24_button_text', __( 'Proceed to mPAY24', 'wc-mpay24' ) );
    150174                $this->has_fields         = false;
    151175                $this->method_title       = __( 'mPAY24', 'wc-mpay24' ); // backend title
     
    174198                $this->debug                 = $this->get_option( 'debug' );
    175199                                             
    176                 $this->payment_page_lang     = $this->get_option( 'payment_page_lang' );
     200                $this->payment_page_lang     = $this->set_payment_page_lang();
    177201                $this->page_bg_color         = $this->get_option( 'page_bg_color' );
    178202                $this->logo_style            = $this->get_option( 'logo_style' );
     
    314338                        'type'        => 'select',
    315339                        'options'     => array(
    316                             'BG' => __( 'Bulgarian', 'wc-mpay24' ),
    317                             'ZH' => __( 'Chinese', 'wc-mpay24' ),
    318                             'HR' => __( 'Croatian', 'wc-mpay24' ),
    319                             'CS' => __( 'Czech', 'wc-mpay24' ),
    320                             'NL' => __( 'Dutch', 'wc-mpay24' ),
    321                             'EN' => __( 'English', 'wc-mpay24' ),
    322                             'FR' => __( 'French', 'wc-mpay24' ),
    323                             'DE' => __( 'German', 'wc-mpay24' ), // default
    324                             'HU' => __( 'Hungarian', 'wc-mpay24' ),
    325                             'IT' => __( 'Italian', 'wc-mpay24' ),
    326                             'JA' => __( 'Japanese', 'wc-mpay24' ),
    327                             'PL' => __( 'Polish', 'wc-mpay24' ),
    328                             'PT' => __( 'Portuguese', 'wc-mpay24' ),
    329                             'RO' => __( 'Romanian', 'wc-mpay24' ),
    330                             'RU' => __( 'Russian', 'wc-mpay24' ),
    331                             'SR' => __( 'Serbian', 'wc-mpay24' ),
    332                             'SK' => __( 'Slovak', 'wc-mpay24' ),
    333                             'SL' => __( 'Slovenian', 'wc-mpay24' ),
    334                             'ES' => __( 'Spanish', 'wc-mpay24' ),
    335                             'TR' => __( 'Turkish', 'wc-mpay24' )
     340                            'auto' => __( 'auto with WPML', 'wc-mpay24' ),
     341                            'BG'   => __( 'Bulgarian', 'wc-mpay24' ),
     342                            'ZH'   => __( 'Chinese', 'wc-mpay24' ),
     343                            'HR'   => __( 'Croatian', 'wc-mpay24' ),
     344                            'CS'   => __( 'Czech', 'wc-mpay24' ),
     345                            'NL'   => __( 'Dutch', 'wc-mpay24' ),
     346                            'EN'   => __( 'English', 'wc-mpay24' ),
     347                            'FR'   => __( 'French', 'wc-mpay24' ),
     348                            'DE'   => __( 'German', 'wc-mpay24' ), // default
     349                            'HU'   => __( 'Hungarian', 'wc-mpay24' ),
     350                            'IT'   => __( 'Italian', 'wc-mpay24' ),
     351                            'JA'   => __( 'Japanese', 'wc-mpay24' ),
     352                            'PL'   => __( 'Polish', 'wc-mpay24' ),
     353                            'PT'   => __( 'Portuguese', 'wc-mpay24' ),
     354                            'RO'   => __( 'Romanian', 'wc-mpay24' ),
     355                            'RU'   => __( 'Russian', 'wc-mpay24' ),
     356                            'SR'   => __( 'Serbian', 'wc-mpay24' ),
     357                            'SK'   => __( 'Slovak', 'wc-mpay24' ),
     358                            'SL'   => __( 'Slovenian', 'wc-mpay24' ),
     359                            'ES'   => __( 'Spanish', 'wc-mpay24' ),
     360                            'TR'   => __( 'Turkish', 'wc-mpay24' )
    336361                        ), // see mPAY24 specification Appendix for supported languages
    337                         'description' => __( 'This controls in which language the payment page is shown.', 'wc-mpay24' ),
     362                        'description' => __( 'This controls in which language the payment page is shown. If "auto with WPML" is set current user language is used (if avaiable on mPAY24 side, otherwise "EN"). WPML plugin required for "auto with WPML" option.', 'wc-mpay24' ),
    338363                        'desc_tip'    => true,
    339                         'default'     => 'DE'
     364                        'default'     => 'EN'
    340365                    ),
    341366                    'page_bg_color' => array(
     
    470495                return $url;
    471496            }
     497           
     498            protected function set_payment_page_lang() {
     499                if( $this->get_option( 'payment_page_lang' ) == 'auto' ) {
     500                    if( defined( 'ICL_LANGUAGE_CODE' ) ) {
     501                        if( array_key_exists( ICL_LANGUAGE_CODE, $this->wpml_lang_mpay24 ) ) {
     502                            return $this->wpml_lang_mpay24[ICL_LANGUAGE_CODE];
     503                        } else {
     504                            return 'EN';
     505                        }
     506                    }
     507                }
     508               
     509                return $this->get_option( 'payment_page_lang' );
     510            }
    472511
    473512            /**
     
    495534                $shop->setTid( substr( $tid, 0, 32 ) );
    496535                $shop->setPrice( $order->order_total );
     536               
    497537                $shop->setLanguage( $this->payment_page_lang );
    498538                $customer_name = ( $order->billing_company != '' ) ? $order->billing_company : $order->billing_first_name . ' ' . $order->billing_last_name;
  • woocommerce-mpay24-gateway/trunk/languages/wc-mpay24-de_DE.po

    r1003623 r1034441  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: WooCommerce mPAY24 Gateway v1.4\n"
     3"Project-Id-Version: WooCommerce mPAY24 Gateway v1.5\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-10-08 09:15+0100\n"
    6 "PO-Revision-Date: 2014-10-08 09:16+0100\n"
     5"POT-Creation-Date: 2014-11-28 13:32+0100\n"
     6"PO-Revision-Date: 2014-11-28 13:32+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.9\n"
     20"X-Generator: Poedit 1.6.10\n"
    2121"X-Poedit-SearchPath-0: .\n"
    2222"X-Poedit-SearchPath-1: ..\n"
     
    3939msgstr "Kasse"
    4040
    41 #: ../gateway-mpay24.php:149
     41#: ../gateway-mpay24.php:173
    4242msgid "Proceed to mPAY24"
    4343msgstr "Weiter zu mPAY24"
    4444
    4545# @ wc-mpay24
    46 #: ../gateway-mpay24.php:151 ../gateway-mpay24.php:448
     46#: ../gateway-mpay24.php:175 ../gateway-mpay24.php:473
    4747msgid "mPAY24"
    4848msgstr "mPAY24"
    4949
    5050# @ wc-mpay24
    51 #: ../gateway-mpay24.php:152 ../gateway-mpay24.php:449
     51#: ../gateway-mpay24.php:176 ../gateway-mpay24.php:474
    5252msgid "Online payment via mPAY24 payment page"
    5353msgstr "Online Zahlung über das mPAY24 Bezahlfenster"
    5454
    55 #: ../gateway-mpay24.php:221
     55#: ../gateway-mpay24.php:245
    5656msgid "Woocommerce Settings"
    5757msgstr "Woocommerce Einstellungen"
    5858
    5959# @ wc-mpay24
    60 #: ../gateway-mpay24.php:226
     60#: ../gateway-mpay24.php:250
    6161msgid "Enable/Disable"
    6262msgstr "Aktivieren/ Deaktivieren"
    6363
    6464# @ wc-mpay24
    65 #: ../gateway-mpay24.php:227
     65#: ../gateway-mpay24.php:251
    6666msgid "Enable mPAY24"
    6767msgstr "mPAY24 aktivieren"
    6868
    6969# @ wc-mpay24
    70 #: ../gateway-mpay24.php:233
     70#: ../gateway-mpay24.php:257
    7171msgid "Title"
    7272msgstr "Titel"
    7373
    7474# @ wc-mpay24
    75 #: ../gateway-mpay24.php:235
     75#: ../gateway-mpay24.php:259
    7676msgid "This controls the title which the user sees during checkout."
    7777msgstr ""
     
    8080
    8181# @ wc-mpay24
    82 #: ../gateway-mpay24.php:237
     82#: ../gateway-mpay24.php:261
    8383msgid "Credit card"
    8484msgstr "Kreditkarte"
    8585
    8686# @ wc-mpay24
    87 #: ../gateway-mpay24.php:240
     87#: ../gateway-mpay24.php:264
    8888msgid "Description"
    8989msgstr "Beschreibung"
    9090
    9191# @ wc-mpay24
    92 #: ../gateway-mpay24.php:242
     92#: ../gateway-mpay24.php:266
    9393msgid "This controls the description which the user sees during checkout."
    9494msgstr "Dies aktiviert die Beschreibung, die der Kunde an der Kasse sieht."
    9595
    9696# @ wc-mpay24
    97 #: ../gateway-mpay24.php:244
     97#: ../gateway-mpay24.php:268
    9898msgid "Pay with your credit card via mPAY24."
    9999msgstr "Bezahlen Sie mit Ihrer Kreditkarte über mPAY24."
    100100
    101101# @ wc-mpay24
    102 #: ../gateway-mpay24.php:247
     102#: ../gateway-mpay24.php:271
    103103msgid "Thank you page text"
    104104msgstr "Text für Danke-Seite"
    105105
    106106# @ wc-mpay24
    107 #: ../gateway-mpay24.php:249
     107#: ../gateway-mpay24.php:273
    108108msgid ""
    109109"This controls the text which the user sees on the order thank you page above "
     
    114114
    115115# @ wc-mpay24
    116 #: ../gateway-mpay24.php:253
     116#: ../gateway-mpay24.php:277
    117117msgid "Customer email text"
    118118msgstr "Text für Kunden Bestätigungsmail"
    119119
    120120# @ wc-mpay24
    121 #: ../gateway-mpay24.php:255
     121#: ../gateway-mpay24.php:279
    122122msgid ""
    123123"This controls the text which the user sees in order confirmation email below "
     
    127127"Bestellungen sieht."
    128128
    129 #: ../gateway-mpay24.php:259
     129#: ../gateway-mpay24.php:283
    130130msgid "mPAY24 Settings"
    131131msgstr "mPAY24 Einstellungen"
    132132
    133133# @ wc-mpay24
    134 #: ../gateway-mpay24.php:264
     134#: ../gateway-mpay24.php:288
    135135msgid "Username TEST"
    136136msgstr "Benutzername TEST"
    137137
    138138# @ wc-mpay24
    139 #: ../gateway-mpay24.php:266
     139#: ../gateway-mpay24.php:290
    140140msgid "This is the SOAP API username (without leading u) for test environment."
    141141msgstr ""
     
    143143
    144144# @ wc-mpay24
    145 #: ../gateway-mpay24.php:271
     145#: ../gateway-mpay24.php:295
    146146msgid "Password TEST"
    147147msgstr "Passwort TEST"
    148148
    149149# @ wc-mpay24
    150 #: ../gateway-mpay24.php:273
     150#: ../gateway-mpay24.php:297
    151151msgid "This is the SOAP API password for test environment."
    152152msgstr "Dies ist das SOAP API Passwort für die Testumgebung."
    153153
    154154# @ wc-mpay24
    155 #: ../gateway-mpay24.php:278
     155#: ../gateway-mpay24.php:302
    156156msgid "Username PROD"
    157157msgstr "Benutzername PROD"
    158158
    159159# @ wc-mpay24
    160 #: ../gateway-mpay24.php:280
     160#: ../gateway-mpay24.php:304
    161161msgid "This is the SOAP API username (without leading u) for prod environment."
    162162msgstr ""
     
    165165
    166166# @ wc-mpay24
    167 #: ../gateway-mpay24.php:285
     167#: ../gateway-mpay24.php:309
    168168msgid "Password PROD"
    169169msgstr "Passwort PROD"
    170170
    171171# @ wc-mpay24
    172 #: ../gateway-mpay24.php:287
     172#: ../gateway-mpay24.php:311
    173173msgid "This is the SOAP API password for prod environment."
    174174msgstr "Dies ist das SOAP API Passwort für die Produktivumgebung."
    175175
    176176# @ wc-mpay24
    177 #: ../gateway-mpay24.php:292
     177#: ../gateway-mpay24.php:316
    178178msgid "Test Mode"
    179179msgstr "Testmodus"
    180180
    181181# @ wc-mpay24
    182 #: ../gateway-mpay24.php:293
     182#: ../gateway-mpay24.php:317
    183183msgid "Enable Test Mode"
    184184msgstr "Entwicklungsmodus aktivieren"
    185185
    186186# @ wc-mpay24
    187 #: ../gateway-mpay24.php:295
     187#: ../gateway-mpay24.php:319
    188188msgid "Place the payment gateway in test mode."
    189189msgstr "Versetzt das Bezahlungssystem in den Testmodus."
    190190
    191191# @ wc-mpay24
    192 #: ../gateway-mpay24.php:300
     192#: ../gateway-mpay24.php:324
    193193msgid "Debug Log"
    194194msgstr "Debug-Protokoll"
    195195
    196196# @ wc-mpay24
    197 #: ../gateway-mpay24.php:301
     197#: ../gateway-mpay24.php:325
    198198msgid "Enable logging"
    199199msgstr "Protokollierung aktivieren"
    200200
    201201# @ wc-mpay24
    202 #: ../gateway-mpay24.php:303
     202#: ../gateway-mpay24.php:327
    203203msgid ""
    204204"Log mPAY24 events inside <code>/wp-content/plugins/woocommerce/logs/</code>, "
     
    209209
    210210# @ wc-mpay24
    211 #: ../gateway-mpay24.php:308
     211#: ../gateway-mpay24.php:332
    212212msgid "mPAY24 Payment Page Styling"
    213213msgstr "mPAY24 Bezahlfenster Styling"
    214214
    215 #: ../gateway-mpay24.php:313
     215#: ../gateway-mpay24.php:337
    216216msgid "Language"
    217217msgstr "Sprache"
    218218
    219 # @ wc-mpay24
    220 #: ../gateway-mpay24.php:316
     219#: ../gateway-mpay24.php:340
     220msgid "auto with WPML"
     221msgstr "auto mit WPML"
     222
     223# @ wc-mpay24
     224#: ../gateway-mpay24.php:341
    221225msgid "Bulgarian"
    222226msgstr "Bulgarisch"
    223227
    224 #: ../gateway-mpay24.php:317
     228#: ../gateway-mpay24.php:342
    225229msgid "Chinese"
    226230msgstr "Chinesisch"
    227231
    228 #: ../gateway-mpay24.php:318
     232#: ../gateway-mpay24.php:343
    229233msgid "Croatian"
    230234msgstr "Kroatisch"
    231235
    232236# @ wc-mpay24
    233 #: ../gateway-mpay24.php:319
     237#: ../gateway-mpay24.php:344
    234238msgid "Czech"
    235239msgstr "Tschechisch"
    236240
    237241# @ wc-mpay24
    238 #: ../gateway-mpay24.php:320
     242#: ../gateway-mpay24.php:345
    239243msgid "Dutch"
    240244msgstr "Niederländisch"
    241245
    242246# @ wc-mpay24
    243 #: ../gateway-mpay24.php:321
     247#: ../gateway-mpay24.php:346
    244248msgid "English"
    245249msgstr "Englisch"
    246250
    247251# @ wc-mpay24
    248 #: ../gateway-mpay24.php:322
     252#: ../gateway-mpay24.php:347
    249253msgid "French"
    250254msgstr "Französisch"
    251255
    252256# @ wc-mpay24
    253 #: ../gateway-mpay24.php:323
     257#: ../gateway-mpay24.php:348
    254258msgid "German"
    255259msgstr "Deutsch"
    256260
    257261# @ wc-mpay24
    258 #: ../gateway-mpay24.php:324
     262#: ../gateway-mpay24.php:349
    259263msgid "Hungarian"
    260264msgstr "Ungarisch"
    261265
    262 #: ../gateway-mpay24.php:325
     266#: ../gateway-mpay24.php:350
    263267msgid "Italian"
    264268msgstr "Italienisch"
    265269
    266 #: ../gateway-mpay24.php:326
     270#: ../gateway-mpay24.php:351
    267271msgid "Japanese"
    268272msgstr "Japanisch"
    269273
    270274# @ wc-mpay24
    271 #: ../gateway-mpay24.php:327
     275#: ../gateway-mpay24.php:352
    272276msgid "Polish"
    273277msgstr "Polnisch"
    274278
    275 #: ../gateway-mpay24.php:328
     279#: ../gateway-mpay24.php:353
    276280msgid "Portuguese"
    277281msgstr "Portugiesisch"
    278282
    279 #: ../gateway-mpay24.php:329
     283#: ../gateway-mpay24.php:354
    280284msgid "Romanian"
    281285msgstr "Rumänisch"
    282286
    283 #: ../gateway-mpay24.php:330
     287#: ../gateway-mpay24.php:355
    284288msgid "Russian"
    285289msgstr "Russisch"
    286290
    287 #: ../gateway-mpay24.php:331
     291#: ../gateway-mpay24.php:356
    288292msgid "Serbian"
    289293msgstr "Serbisch"
    290294
    291 #: ../gateway-mpay24.php:332
     295#: ../gateway-mpay24.php:357
    292296msgid "Slovak"
    293297msgstr "Slowakisch"
    294298
    295 #: ../gateway-mpay24.php:333
     299#: ../gateway-mpay24.php:358
    296300msgid "Slovenian"
    297301msgstr "Slowenisch"
    298302
    299303# @ wc-mpay24
    300 #: ../gateway-mpay24.php:334
     304#: ../gateway-mpay24.php:359
    301305msgid "Spanish"
    302306msgstr "Spanisch"
    303307
    304 #: ../gateway-mpay24.php:335
     308#: ../gateway-mpay24.php:360
    305309msgid "Turkish"
    306310msgstr "Türkisch"
    307311
    308 # @ wc-mpay24
    309 #: ../gateway-mpay24.php:337
    310 msgid "This controls in which language the payment page is shown."
    311 msgstr ""
    312 "Dies aktiviert in welcher Sprache das mPAY24 Bezahlfenster angezeigt wird."
    313 
    314 #: ../gateway-mpay24.php:342
     312#: ../gateway-mpay24.php:362
     313msgid ""
     314"This controls in which language the payment page is shown. If \"auto with "
     315"WPML\" is set current user language is used (if avaiable on mPAY24 side, "
     316"otherwise \"EN\"). WPML plugin required for \"auto with WPML\" option."
     317msgstr ""
     318"Dies kontrolliert in welcher Sprache das Bezahlfenster angezeigt wird. Wenn "
     319"\"auto mit WPML\" gesetzt ist, wird die aktuell durch den Benutzer gewählte "
     320"Sprache verwendet (wenn auf mPAY24-seitig vorhanden, sonst \"EN\"). WPML "
     321"plugin ist erforderlich für die \"auto mit WPML\" Option."
     322
     323#: ../gateway-mpay24.php:367
    315324msgid "Page Background Color"
    316325msgstr "Seitenhintergrundfarbe"
    317326
    318 #: ../gateway-mpay24.php:343
     327#: ../gateway-mpay24.php:368
    319328msgid "Background color of the payment page. Default"
    320329msgstr "Hintergrundfarbe des Bezahlfensters. Standard"
    321330
    322 #: ../gateway-mpay24.php:350
     331#: ../gateway-mpay24.php:375
    323332msgid "Logo Styling"
    324333msgstr "Logo Styling"
    325334
    326 #: ../gateway-mpay24.php:351
     335#: ../gateway-mpay24.php:376
    327336msgid "CSS rules for payment page logo image. Default"
    328337msgstr "CSS Regeln für das Logo im Bezahlfenster. Standard"
    329338
    330 #: ../gateway-mpay24.php:356
     339#: ../gateway-mpay24.php:381
    331340msgid "Page Header Styling"
    332341msgstr "Seitenüberschrift Styling"
    333342
    334 #: ../gateway-mpay24.php:357
     343#: ../gateway-mpay24.php:382
    335344msgid "CSS rules for payment page header. Default"
    336345msgstr "CSS Regeln für die Seitenüberschrift des Bezahlfensters. Standard"
    337346
    338 #: ../gateway-mpay24.php:362
     347#: ../gateway-mpay24.php:387
    339348msgid "Page Caption Styling"
    340349msgstr "Seitentitel Styling"
    341350
    342 #: ../gateway-mpay24.php:363
     351#: ../gateway-mpay24.php:388
    343352msgid "CSS rules for payment page caption. Default"
    344353msgstr "CSS Regeln für den Seitentitel des Bezahlfensters. Standard"
    345354
    346 #: ../gateway-mpay24.php:368
     355#: ../gateway-mpay24.php:393
    347356msgid "Page Styling"
    348357msgstr "Seiten Styling"
    349358
    350 #: ../gateway-mpay24.php:369
     359#: ../gateway-mpay24.php:394
    351360msgid "CSS rules for payment page box with inputs. Default"
    352361msgstr "CSS Regeln für den Eingabebereich im Bezahlfenster. Standard"
    353362
    354 #: ../gateway-mpay24.php:374
     363#: ../gateway-mpay24.php:399
    355364msgid "Input Fields Styling"
    356365msgstr "Eingabefelder Styling"
    357366
    358 #: ../gateway-mpay24.php:375
     367#: ../gateway-mpay24.php:400
    359368msgid "CSS rules for payment page input fields."
    360369msgstr "CSS Regeln für die Eingabefelder im Bezahlfenster."
    361370
    362 #: ../gateway-mpay24.php:380
     371#: ../gateway-mpay24.php:405
    363372msgid "Drop Down Lists Styling"
    364373msgstr "Auswahllisten Styling"
    365374
    366 #: ../gateway-mpay24.php:381
     375#: ../gateway-mpay24.php:406
    367376msgid "CSS rules for payment page drop down lists."
    368377msgstr "CSS Regeln für die Auswahllisten im Bezahlfenster."
    369378
    370 #: ../gateway-mpay24.php:386
     379#: ../gateway-mpay24.php:411
    371380msgid "Buttons Styling"
    372381msgstr "Buttons Styling"
    373382
    374 #: ../gateway-mpay24.php:387
     383#: ../gateway-mpay24.php:412
    375384msgid "CSS rules for payment page buttons."
    376385msgstr "CSS Regeln für die Buttons im Bezahlfenster."
    377386
    378 #: ../gateway-mpay24.php:392
     387#: ../gateway-mpay24.php:417
    379388msgid "Errors Styling"
    380389msgstr "Fehler Styling"
    381390
    382 #: ../gateway-mpay24.php:393
     391#: ../gateway-mpay24.php:418
    383392msgid "CSS rules for payment page error messages."
    384393msgstr "CSS Regeln für Fehlermeldungen im Bezahlfenster."
    385394
    386 #: ../gateway-mpay24.php:398
     395#: ../gateway-mpay24.php:423
    387396msgid "Errors Header Styling"
    388397msgstr "Fehlerüberschrift Styling"
    389398
    390 #: ../gateway-mpay24.php:399
     399#: ../gateway-mpay24.php:424
    391400msgid "CSS rules for payment page error heading."
    392401msgstr "CSS Regeln für Fehlerüberschrift im Bezahlfenster."
    393402
    394 #: ../gateway-mpay24.php:404
     403#: ../gateway-mpay24.php:429
    395404msgid "Success Title Styling"
    396405msgstr "Titel auf Erfolgsseite Styling"
    397406
    398 #: ../gateway-mpay24.php:405
     407#: ../gateway-mpay24.php:430
    399408msgid "CSS rules for payment success page title area."
    400409msgstr "CSS Regeln für den Seitentitel auf der Erfolgsseite im Bezahlfenster."
    401410
    402 #: ../gateway-mpay24.php:410
     411#: ../gateway-mpay24.php:435
    403412msgid "Error Title Styling"
    404413msgstr "Titel auf Fehlerseite Styling"
    405414
    406 #: ../gateway-mpay24.php:411
     415#: ../gateway-mpay24.php:436
    407416msgid "CSS rules for payment error page title area."
    408417msgstr "CSS Regeln für den Seitentitel auf der Fehlerseite im Bezahlfenster."
    409418
    410 #: ../gateway-mpay24.php:416
     419#: ../gateway-mpay24.php:441
    411420msgid "Footer Styling"
    412421msgstr "Fußzeilen Styling"
    413422
    414 #: ../gateway-mpay24.php:417
     423#: ../gateway-mpay24.php:442
    415424msgid "CSS rules for payment page footer area."
    416425msgstr "CSS Regeln für den Fußzeilenbereich im Bezahlfenster."
    417426
    418 #: ../gateway-mpay24.php:422
     427#: ../gateway-mpay24.php:447
    419428msgid "Access Protection"
    420429msgstr "Zugriffsschutz"
    421430
    422 #: ../gateway-mpay24.php:424
     431#: ../gateway-mpay24.php:449
    423432msgid ""
    424433"If your site has an access protection with .htaccess fill in the credentials "
     
    431440"Website produktiv ist."
    432441
    433 #: ../gateway-mpay24.php:427
     442#: ../gateway-mpay24.php:452
    434443msgid "Username .htaccess"
    435444msgstr "Benutzername .htaccess"
    436445
    437 #: ../gateway-mpay24.php:432
     446#: ../gateway-mpay24.php:457
    438447msgid "Password .htaccess"
    439448msgstr "Passwort .htaccess"
    440449
    441450# @ wc-mpay24
    442 #: ../gateway-mpay24.php:544
     451#: ../gateway-mpay24.php:584
    443452msgid "TEST MODE ENABLED"
    444453msgstr "TEST MODUS AKTIVIERT"
    445454
    446455# @ wc-mpay24
    447 #: ../gateway-mpay24.php:663
     456#: ../gateway-mpay24.php:703
    448457msgid "mPAY24 payment completed"
    449458msgstr "mPAY24 Bezahlung abgeschlossen"
    450459
    451460# @ wc-mpay24
    452 #: ../gateway-mpay24.php:673 ../gateway-mpay24.php:677
    453 #: ../gateway-mpay24.php:683 ../gateway-mpay24.php:687
     461#: ../gateway-mpay24.php:713 ../gateway-mpay24.php:717
     462#: ../gateway-mpay24.php:723 ../gateway-mpay24.php:727
    454463#, php-format
    455464msgid "Payment %s via mPAY24."
     
    457466
    458467# @ wc-mpay24
    459 #: ../gateway-mpay24.php:679
     468#: ../gateway-mpay24.php:719
    460469msgid "Payment failed via mPAY24."
    461470msgstr "Bezahlung über mPAY24 fehlgeschlagen."
    462471
     472# @ wc-mpay24
     473#~ msgid "This controls in which language the payment page is shown."
     474#~ msgstr ""
     475#~ "Dies aktiviert in welcher Sprache das mPAY24 Bezahlfenster angezeigt wird."
     476
    463477#~ msgid "mPAY24 IPN Request Failure"
    464478#~ msgstr "mPAY24 IPN Anfrage fehlgeschlagen"
  • woocommerce-mpay24-gateway/trunk/readme.txt

    r1006337 r1034441  
    55Tags: woocommerce, gateway, mpay24
    66Requires at least: 3.5
    7 Tested up to: 4.0
    8 Stable tag: 1.4.2
     7Tested up to: 4.0.1
     8Stable tag: 1.5
    99License: GNU General Public License v3.0
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    7777== Changelog ==
    7878
     79= 1.5 - 2014-11-28 =
     80
     81* Bugfix: change translation domain for "Proceed to mPAY24" to "mpay24"
     82* Enhancement: changed default payment page language to "EN"
     83* New Feature: set automatically payment page language to current site language, if available on mPAY24, else use "EN".
     84"ZH" is mapped to "zh-hans". "PT" is mapped to "pt-pt". WPML plugin required for this feature!
     85
    7986= 1.4.2 - 2014-10-13 =
    8087
Note: See TracChangeset for help on using the changeset viewer.