Plugin Directory

Changeset 3150724


Ignore:
Timestamp:
09/12/2024 10:22:12 AM (19 months ago)
Author:
aplazame
Message:

tagging version v4.1.1

Location:
aplazame
Files:
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • aplazame/tags/v4.1.1/README.txt

    r3095046 r3150724  
    33Tags: aplazame,woocommerce,ecommerce,payment,checkout,credit,aplazar,financiar,financiera,financiación,pago aplazado,método de pago
    44Requires at least: 4.0.1
    5 Tested up to: 6.5.3
     5Tested up to: 6.6.2
    66Requires PHP: 5.3.0
    7 Stable tag: 4.0.2
     7Stable tag: 4.1.1
    88License: BSD-3-Clause
    99License URI: https://github.com/aplazame/woocommerce/blob/master/LICENSE
     
    7878== Changelog ==
    7979
     80#### [v4.1.1](https://github.com/aplazame/woocommerce/tree/v4.1.1) (2024-09-12)
     81
     82* Minor release for marketplace.
     83
     84#### [v4.1.0](https://github.com/aplazame/woocommerce/tree/v4.1.0) (2024-09-12)
     85
     86* [ADD] Widget v5.
     87
     88#### [v4.0.2](https://github.com/aplazame/woocommerce/tree/v4.0.2) (2024-05-30)
     89
     90* Beta support for Checkout Block.
     91
    8092#### [v4.0.1](https://github.com/aplazame/woocommerce/tree/v4.0.1) (2024-03-05)
    8193
  • aplazame/tags/v4.1.1/aplazame.php

    r3095046 r3150724  
    33 * Plugin Name: Aplazame
    44 * Plugin URI: https://github.com/aplazame/woocommerce
    5  * Version: 4.0.2
     5 * Version: 4.1.1
    66 * Description: Aplazame offers a payment method to receive funding for the purchases.
    77 * Author: Aplazame
     
    1212 *
    1313 * WC requires at least: 3.0.0
    14  * WC tested up to: 8.9.1
     14 * WC tested up to: 9.2.3
    1515 *
    1616 * License: GNU General Public License v3.0
     
    2626
    2727class WC_Aplazame {
    28     const VERSION      = '4.0.2';
     28    const VERSION      = '4.1.1';
    2929    const METHOD_ID    = 'aplazame';
    3030    const METHOD_TITLE = 'Aplazame';
     
    372372        'product_widget_layout'           => 'horizontal',
    373373        'cart_widget_layout'              => 'horizontal',
    374         'widget_legacy'                   => 'no',
    375374        'product_widget_border'           => 'yes',
    376375        'product_widget_align'            => 'center',
     
    383382        'product_widget_max_desired'      => 'no',
    384383        'cart_widget_max_desired'         => 'no',
     384        'product_widget_ver'              => 'v5',
     385        'cart_widget_ver'                 => 'v5',
     386        'product_slider'                  => 'yes',
     387        'cart_slider'                     => 'yes',
     388        'product_small_size'              => 'no',
     389        'cart_small_size'                 => 'no',
    385390    );
    386391
     
    411416                $aplazame->settings['title'] = $aplazame->settings['title_instalments'];
    412417            }
    413             if ( ! isset( $aplazame->settings['widget_legacy'] ) ) {
    414                 $aplazame->settings['widget_legacy'] = 'yes';
    415             }
    416418            self::save_settings( $aplazame->settings );
    417419
  • aplazame/tags/v4.1.1/classes/wc-aplazame-gateway.php

    r3041163 r3150724  
    233233                'default'     => WC_Aplazame_Install::$defaultSettings['widget_out_of_limits'],
    234234            ),
    235             'widget_legacy'                   => array(
    236                 'type'        => 'checkbox',
    237                 'title'       => 'Widget legacy',
    238                 'description' => __( 'Use widget legacy instead new widget', 'aplazame' ),
    239                 'label'       => __( 'Turn on widget legacy', 'aplazame' ),
    240             ),
    241235            'payment_section'                 => array(
    242236                'title'       => __( 'Payment method title and description', 'aplazame' ),
     
    267261                'description' => '',
    268262            ),
     263            'product_widget_ver'              => array(
     264                'type'        => 'select',
     265                'title'       => __( 'Widget version', 'aplazame' ),
     266                'description' => __( 'Select your desired version for product widget', 'aplazame' ),
     267                'options'     => array(
     268                    'v3' => __( 'v3', 'aplazame' ),
     269                    'v4' => __( 'v4', 'aplazame' ),
     270                    'v5' => __( 'v5', 'aplazame' ),
     271                ),
     272                'default'     => 'v5',
     273            ),
    269274            'product_widget_action'           => array(
    270275                'type'        => 'select',
     
    286291                'placeholder' => __( 'Optional (only numbers)', 'aplazame' ),
    287292            ),
     293            'product_slider'                  => array(
     294                'type'        => 'checkbox',
     295                'title'       => __( 'Slider', 'aplazame' ),
     296                'description' => __( 'Show slider in product widget (only v5)', 'aplazame' ),
     297                'label'       => __( 'Show slider info', 'aplazame' ),
     298            ),
     299            'product_small_size'              => array(
     300                'type'        => 'checkbox',
     301                'title'       => __( 'Small size', 'aplazame' ),
     302                'description' => __( 'Reduce size of product widget (only v5)', 'aplazame' ),
     303                'label'       => __( 'Reduce size', 'aplazame' ),
     304            ),
    288305            'product_downpayment_info'        => array(
    289306                'type'        => 'checkbox',
     
    307324                'type'        => 'checkbox',
    308325                'title'       => __( 'Border', 'aplazame' ),
    309                 'description' => __( 'Show border in product widget (only new widget)', 'aplazame' ),
     326                'description' => __( 'Show border in product widget (only v4)', 'aplazame' ),
    310327                'label'       => __( 'Show border', 'aplazame' ),
    311328            ),
     
    313330                'type'        => 'checkbox',
    314331                'title'       => __( 'Enter maximum instalment', 'aplazame' ),
    315                 'description' => __( 'Allow the user to manually enter the maximum instalment they want to pay (only new widget)', 'aplazame' ),
     332                'description' => __( 'Allow the user to manually enter the maximum instalment they want to pay (only v4)', 'aplazame' ),
    316333                'label'       => __( 'Allow the user to manually enter the maximum instalment', 'aplazame' ),
     334            ),
     335            'product_widget_layout'           => array(
     336                'type'        => 'select',
     337                'title'       => __( 'Layout', 'aplazame' ),
     338                'description' => __( 'Layout of product widget (only v4)', 'aplazame' ),
     339                'options'     => array(
     340                    'horizontal' => 'Horizontal',
     341                    'vertical'   => 'Vertical',
     342                ),
     343                'default'     => WC_Aplazame_Install::$defaultSettings['product_widget_layout'],
     344            ),
     345            'product_widget_align'            => array(
     346                'type'        => 'select',
     347                'title'       => __( 'Alignment', 'aplazame' ),
     348                'description' => __( 'Product widget alignment (only v4/v5)', 'aplazame' ),
     349                'options'     => array(
     350                    'left'   => __( 'Left', 'aplazame' ),
     351                    'center' => __( 'Center', 'aplazame' ),
     352                    'right'  => __( 'Right', 'aplazame' ),
     353                ),
     354                'default'     => WC_Aplazame_Install::$defaultSettings['product_widget_align'],
    317355            ),
    318356            'product_widget_primary_color'    => array(
     
    321359                'class'       => 'colorpick',
    322360                'title'       => __( 'Primary color', 'aplazame' ),
    323                 'description' => __( 'Primary color hexadecimal code for product widget (only new widget)', 'aplazame' ),
     361                'description' => __( 'Primary color hexadecimal code for product widget (only v4)', 'aplazame' ),
    324362                'default'     => WC_Aplazame_Install::$defaultSettings['product_widget_primary_color'],
    325363                'placeholder' => WC_Aplazame_Install::$defaultSettings['product_widget_primary_color'],
    326             ),
    327             'product_widget_layout'           => array(
    328                 'type'        => 'select',
    329                 'title'       => __( 'Layout', 'aplazame' ),
    330                 'description' => __( 'Layout of product widget (only new widget)', 'aplazame' ),
    331                 'options'     => array(
    332                     'horizontal' => 'Horizontal',
    333                     'vertical'   => 'Vertical',
    334                 ),
    335                 'default'     => WC_Aplazame_Install::$defaultSettings['product_widget_layout'],
    336             ),
    337             'product_widget_align'            => array(
    338                 'type'        => 'select',
    339                 'title'       => __( 'Alignment', 'aplazame' ),
    340                 'description' => __( 'Product widget alignment (only new widget)', 'aplazame' ),
    341                 'options'     => array(
    342                     'left'   => __( 'Left', 'aplazame' ),
    343                     'center' => __( 'Center', 'aplazame' ),
    344                     'right'  => __( 'Right', 'aplazame' ),
    345                 ),
    346                 'default'     => WC_Aplazame_Install::$defaultSettings['product_widget_align'],
    347364            ),
    348365            'quantity_selector'               => array(
     
    375392                'description' => '',
    376393            ),
     394            'cart_widget_ver'                 => array(
     395                'type'        => 'select',
     396                'title'       => __( 'Widget version', 'aplazame' ),
     397                'description' => __( 'Select your desired version for cart widget', 'aplazame' ),
     398                'options'     => array(
     399                    'v3' => __( 'v3', 'aplazame' ),
     400                    'v4' => __( 'v4', 'aplazame' ),
     401                    'v5' => __( 'v5', 'aplazame' ),
     402                ),
     403                'default'     => 'v5',
     404            ),
    377405            'cart_widget_action'              => array(
    378406                'type'        => 'select',
     
    393421                'placeholder' => __( 'Optional (only numbers)', 'aplazame' ),
    394422            ),
     423            'cart_slider'                     => array(
     424                'type'        => 'checkbox',
     425                'title'       => __( 'Slider', 'aplazame' ),
     426                'description' => __( 'Show slider in cart widget (only v5)', 'aplazame' ),
     427                'label'       => __( 'Show slider info', 'aplazame' ),
     428            ),
     429            'cart_small_size'                 => array(
     430                'type'        => 'checkbox',
     431                'title'       => __( 'Small size', 'aplazame' ),
     432                'description' => __( 'Reduce size of cart widget (only v5)', 'aplazame' ),
     433                'label'       => __( 'Reduce size', 'aplazame' ),
     434            ),
    395435            'cart_downpayment_info'           => array(
    396436                'type'        => 'checkbox',
     
    414454                'type'        => 'checkbox',
    415455                'title'       => __( 'Enter maximum instalment', 'aplazame' ),
    416                 'description' => __( 'Allow the user to manually enter the maximum instalment they want to pay (only new widget)', 'aplazame' ),
     456                'description' => __( 'Allow the user to manually enter the maximum instalment they want to pay (only v4)', 'aplazame' ),
    417457                'label'       => __( 'Allow the user to manually enter the maximum instalment', 'aplazame' ),
     458            ),
     459            'cart_widget_layout'              => array(
     460                'type'        => 'select',
     461                'title'       => __( 'Layout', 'aplazame' ),
     462                'description' => __( 'Layout of cart widget (only v4)', 'aplazame' ),
     463                'options'     => array(
     464                    'horizontal' => 'Horizontal',
     465                    'vertical'   => 'Vertical',
     466                ),
     467                'default'     => WC_Aplazame_Install::$defaultSettings['cart_widget_layout'],
     468            ),
     469            'cart_widget_align'               => array(
     470                'type'        => 'select',
     471                'title'       => __( 'Alignment', 'aplazame' ),
     472                'description' => __( 'Cart widget alignment (only v4/v5)', 'aplazame' ),
     473                'options'     => array(
     474                    'left'   => __( 'Left', 'aplazame' ),
     475                    'center' => __( 'Center', 'aplazame' ),
     476                    'right'  => __( 'Right', 'aplazame' ),
     477                ),
     478                'default'     => WC_Aplazame_Install::$defaultSettings['cart_widget_align'],
    418479            ),
    419480            'cart_widget_primary_color'       => array(
     
    422483                'class'       => 'colorpick',
    423484                'title'       => __( 'Primary color', 'aplazame' ),
    424                 'description' => __( 'Primary color hexadecimal code for cart widget (only new widget)', 'aplazame' ),
     485                'description' => __( 'Primary color hexadecimal code for cart widget (only v4)', 'aplazame' ),
    425486                'default'     => WC_Aplazame_Install::$defaultSettings['cart_widget_primary_color'],
    426487                'placeholder' => WC_Aplazame_Install::$defaultSettings['cart_widget_primary_color'],
    427             ),
    428             'cart_widget_layout'              => array(
    429                 'type'        => 'select',
    430                 'title'       => __( 'Layout', 'aplazame' ),
    431                 'description' => __( 'Layout of cart widget (only new widget)', 'aplazame' ),
    432                 'options'     => array(
    433                     'horizontal' => 'Horizontal',
    434                     'vertical'   => 'Vertical',
    435                 ),
    436                 'default'     => WC_Aplazame_Install::$defaultSettings['cart_widget_layout'],
    437             ),
    438             'cart_widget_align'               => array(
    439                 'type'        => 'select',
    440                 'title'       => __( 'Alignment', 'aplazame' ),
    441                 'description' => __( 'Cart widget alignment (only new widget)', 'aplazame' ),
    442                 'options'     => array(
    443                     'left'   => __( 'Left', 'aplazame' ),
    444                     'center' => __( 'Center', 'aplazame' ),
    445                     'right'  => __( 'Right', 'aplazame' ),
    446                 ),
    447                 'default'     => WC_Aplazame_Install::$defaultSettings['cart_widget_align'],
    448488            ),
    449489
  • aplazame/tags/v4.1.1/i18n/languages/aplazame.po

    r3095046 r3150724  
    22msgstr ""
    33"Report-Msgid-Bugs-To: https://github.com/aplazame/woocommerce\n"
    4 "POT-Creation-Date: 2024-05-30 10:53+0200\n"
     4"POT-Creation-Date: 2024-09-11 13:55+0200\n"
    55"Language: es_ES\n"
    66"MIME-Version: 1.0\n"
     
    8282msgstr "Ocultar"
    8383
    84 #: classes/wc-aplazame-gateway.php:238
    85 msgid "Use widget legacy instead new widget"
    86 msgstr "Usa el widget legacy en lugar del nuevo widget"
    87 
    88 #: classes/wc-aplazame-gateway.php:239
    89 msgid "Turn on widget legacy"
    90 msgstr "Activar widget legacy"
    91 
    92 #: classes/wc-aplazame-gateway.php:242
     84#: classes/wc-aplazame-gateway.php:236
    9385msgid "Payment method title and description"
    9486msgstr "Título y descripción del método de pago"
    9587
    96 #: classes/wc-aplazame-gateway.php:248
     88#: classes/wc-aplazame-gateway.php:242
    9789msgid "Title"
    9890msgstr "Título"
    9991
    100 #: classes/wc-aplazame-gateway.php:249
     92#: classes/wc-aplazame-gateway.php:243
    10193msgid "Payment method title"
    10294msgstr "Título del método de pago"
    10395
    104 #: classes/wc-aplazame-gateway.php:254
     96#: classes/wc-aplazame-gateway.php:248
    10597msgid "Description"
    10698msgstr "Descripción"
    10799
    108 #: classes/wc-aplazame-gateway.php:255
     100#: classes/wc-aplazame-gateway.php:249
    109101msgid "Payment method description"
    110102msgstr "Descripción del método de pago"
    111103
    112 #: classes/wc-aplazame-gateway.php:265
     104#: classes/wc-aplazame-gateway.php:259
    113105msgid "Product widget"
    114106msgstr "Widget del producto"
    115107
    116 #: classes/wc-aplazame-gateway.php:271 classes/wc-aplazame-gateway.php:379
     108#: classes/wc-aplazame-gateway.php:265 classes/wc-aplazame-gateway.php:396
     109msgid "Widget version"
     110msgstr "Versión del widget"
     111
     112#: classes/wc-aplazame-gateway.php:266
     113msgid "Select your desired version for product widget"
     114msgstr "Elige la versión deseada para el widget del producto"
     115
     116#: classes/wc-aplazame-gateway.php:268 classes/wc-aplazame-gateway.php:399
     117msgid "v3"
     118msgstr ""
     119
     120#: classes/wc-aplazame-gateway.php:269 classes/wc-aplazame-gateway.php:400
     121msgid "v4"
     122msgstr ""
     123
     124#: classes/wc-aplazame-gateway.php:270 classes/wc-aplazame-gateway.php:401
     125msgid "v5"
     126msgstr ""
     127
     128#: classes/wc-aplazame-gateway.php:276 classes/wc-aplazame-gateway.php:407
    117129msgid "Place to show"
    118130msgstr "Lugar a mostrar"
    119131
    120 #: classes/wc-aplazame-gateway.php:272
     132#: classes/wc-aplazame-gateway.php:277
    121133msgid "Widget place on product page"
    122134msgstr "Lugar del widget en la página del producto"
    123135
    124 #: classes/wc-aplazame-gateway.php:274 classes/wc-aplazame-gateway.php:382
     136#: classes/wc-aplazame-gateway.php:279 classes/wc-aplazame-gateway.php:410
    125137msgid "~ Not show ~"
    126138msgstr "~ No mostrar ~"
    127139
    128 #: classes/wc-aplazame-gateway.php:275
     140#: classes/wc-aplazame-gateway.php:280
    129141msgid "Before add to cart button"
    130142msgstr "Antes del botón de añadir al carrito"
    131143
    132 #: classes/wc-aplazame-gateway.php:276
     144#: classes/wc-aplazame-gateway.php:281
    133145msgid "After add to cart button"
    134146msgstr "Después del botón de añadir al carrito"
    135147
    136 #: classes/wc-aplazame-gateway.php:277
     148#: classes/wc-aplazame-gateway.php:282
    137149msgid "After summary"
    138150msgstr "Después del resumen"
    139151
    140 #: classes/wc-aplazame-gateway.php:284 classes/wc-aplazame-gateway.php:391
     152#: classes/wc-aplazame-gateway.php:289 classes/wc-aplazame-gateway.php:419
    141153msgid "Default instalments"
    142154msgstr "Cuotas por defecto"
    143155
    144 #: classes/wc-aplazame-gateway.php:285
     156#: classes/wc-aplazame-gateway.php:290
    145157msgid "Number of default instalments in product widget"
    146158msgstr "Número de cuotas por defecto en el widget del producto"
    147159
    148 #: classes/wc-aplazame-gateway.php:286 classes/wc-aplazame-gateway.php:393
     160#: classes/wc-aplazame-gateway.php:291 classes/wc-aplazame-gateway.php:421
    149161msgid "Optional (only numbers)"
    150162msgstr "Opcional (solo números)"
    151163
    152 #: classes/wc-aplazame-gateway.php:290 classes/wc-aplazame-gateway.php:397
     164#: classes/wc-aplazame-gateway.php:295 classes/wc-aplazame-gateway.php:425
     165msgid "Slider"
     166msgstr "Barra deslizante"
     167
     168#: classes/wc-aplazame-gateway.php:296
     169msgid "Show slider in product widget (only v5)"
     170msgstr "Muestra la barra deslizante para el widget del producto (sólo v5)"
     171
     172#: classes/wc-aplazame-gateway.php:297 classes/wc-aplazame-gateway.php:427
     173msgid "Show slider info"
     174msgstr "Muestra la barra deslizante"
     175
     176#: classes/wc-aplazame-gateway.php:301 classes/wc-aplazame-gateway.php:431
     177msgid "Small size"
     178msgstr "Tamaño pequeño"
     179
     180#: classes/wc-aplazame-gateway.php:302
     181msgid "Reduce size of product widget (only v5)"
     182msgstr "Reduce el tamaño para el widget del producto (sólo v5)"
     183
     184#: classes/wc-aplazame-gateway.php:303 classes/wc-aplazame-gateway.php:433
     185msgid "Reduce size"
     186msgstr "Reducir tamaño"
     187
     188#: classes/wc-aplazame-gateway.php:307 classes/wc-aplazame-gateway.php:437
    153189msgid "Downpayment info"
    154190msgstr "Pago inicial"
    155191
    156 #: classes/wc-aplazame-gateway.php:291
     192#: classes/wc-aplazame-gateway.php:308
    157193msgid "Show downpayment info in product widget"
    158194msgstr "Mostrar pago inicial en el widget del producto"
    159195
    160 #: classes/wc-aplazame-gateway.php:292 classes/wc-aplazame-gateway.php:399
     196#: classes/wc-aplazame-gateway.php:309 classes/wc-aplazame-gateway.php:439
    161197msgid "Show downpayment info"
    162198msgstr "Mostrar pago inicial"
    163199
    164 #: classes/wc-aplazame-gateway.php:296 classes/wc-aplazame-gateway.php:403
     200#: classes/wc-aplazame-gateway.php:313 classes/wc-aplazame-gateway.php:443
    165201msgid "Legal notice"
    166202msgstr "Texto legal"
    167203
    168 #: classes/wc-aplazame-gateway.php:297
     204#: classes/wc-aplazame-gateway.php:314
    169205msgid "Show legal notice in product widget"
    170206msgstr "Mostrar texto legal en el widget del producto"
    171207
    172 #: classes/wc-aplazame-gateway.php:298 classes/wc-aplazame-gateway.php:405
     208#: classes/wc-aplazame-gateway.php:315 classes/wc-aplazame-gateway.php:445
    173209msgid "Show legal notice"
    174210msgstr "Mostrar texto legal"
    175211
    176 #: classes/wc-aplazame-gateway.php:302 classes/wc-aplazame-gateway.php:409
     212#: classes/wc-aplazame-gateway.php:319 classes/wc-aplazame-gateway.php:449
    177213msgid "Pay in 4"
    178214msgstr "Paga en 4"
    179215
    180 #: classes/wc-aplazame-gateway.php:303
     216#: classes/wc-aplazame-gateway.php:320
    181217msgid "Enable product widget pay in 4 (if available)"
    182218msgstr "Activar widget del producto paga en 4 (si disponible)"
    183219
    184 #: classes/wc-aplazame-gateway.php:304 classes/wc-aplazame-gateway.php:411
     220#: classes/wc-aplazame-gateway.php:321 classes/wc-aplazame-gateway.php:451
    185221msgid "Enable pay in 4"
    186222msgstr "Activar paga en 4"
    187223
    188 #: classes/wc-aplazame-gateway.php:308
     224#: classes/wc-aplazame-gateway.php:325
    189225msgid "Border"
    190226msgstr "Marco"
    191227
    192 #: classes/wc-aplazame-gateway.php:309
    193 msgid "Show border in product widget (only new widget)"
    194 msgstr "Mostrar marco en el widget del producto (sólo nuevo widget)"
    195 
    196 #: classes/wc-aplazame-gateway.php:310
     228#: classes/wc-aplazame-gateway.php:326
     229msgid "Show border in product widget (only v4)"
     230msgstr "Mostrar marco en el widget del producto (sólo v4)"
     231
     232#: classes/wc-aplazame-gateway.php:327
    197233msgid "Show border"
    198234msgstr "Mostrar marco"
    199235
    200 #: classes/wc-aplazame-gateway.php:314 classes/wc-aplazame-gateway.php:415
     236#: classes/wc-aplazame-gateway.php:331 classes/wc-aplazame-gateway.php:455
    201237msgid "Enter maximum instalment"
    202238msgstr "Introducir cuota máxima"
    203239
    204 #: classes/wc-aplazame-gateway.php:315 classes/wc-aplazame-gateway.php:416
     240#: classes/wc-aplazame-gateway.php:332 classes/wc-aplazame-gateway.php:456
    205241msgid ""
    206242"Allow the user to manually enter the maximum instalment they want to pay "
    207 "(only new widget)"
     243"(only v4)"
    208244msgstr ""
    209245"Permitir al usuario introducir manualmente la cuota máxima que desea pagar "
    210 "(sólo nuevo widget)"
    211 
    212 #: classes/wc-aplazame-gateway.php:316 classes/wc-aplazame-gateway.php:417
     246"(sólo v4)"
     247
     248#: classes/wc-aplazame-gateway.php:333 classes/wc-aplazame-gateway.php:457
    213249msgid "Allow the user to manually enter the maximum instalment"
    214250msgstr "Permitir al usuario introducir manualmente la cuota máxima"
    215251
    216 #: classes/wc-aplazame-gateway.php:322 classes/wc-aplazame-gateway.php:423
     252#: classes/wc-aplazame-gateway.php:337 classes/wc-aplazame-gateway.php:461
     253msgid "Layout"
     254msgstr "Disposición"
     255
     256#: classes/wc-aplazame-gateway.php:338
     257msgid "Layout of product widget (only v4)"
     258msgstr "Disposición del widget del producto (sólo v4)"
     259
     260#: classes/wc-aplazame-gateway.php:347 classes/wc-aplazame-gateway.php:471
     261msgid "Alignment"
     262msgstr "Alineación"
     263
     264#: classes/wc-aplazame-gateway.php:348
     265msgid "Product widget alignment (only v4/v5)"
     266msgstr "Alineación del widget del producto (sólo v4/v5)"
     267
     268#: classes/wc-aplazame-gateway.php:350 classes/wc-aplazame-gateway.php:474
     269msgid "Left"
     270msgstr "Izquierda"
     271
     272#: classes/wc-aplazame-gateway.php:351 classes/wc-aplazame-gateway.php:475
     273msgid "Center"
     274msgstr "Centro"
     275
     276#: classes/wc-aplazame-gateway.php:352 classes/wc-aplazame-gateway.php:476
     277msgid "Right"
     278msgstr "Derecha"
     279
     280#: classes/wc-aplazame-gateway.php:360 classes/wc-aplazame-gateway.php:484
    217281msgid "Primary color"
    218282msgstr "Color principal"
    219283
    220 #: classes/wc-aplazame-gateway.php:323
    221 msgid "Primary color hexadecimal code for product widget (only new widget)"
    222 msgstr ""
    223 "Código hexadecimal del color principal para el widget del producto (sólo "
    224 "nuevo widget)"
    225 
    226 #: classes/wc-aplazame-gateway.php:329 classes/wc-aplazame-gateway.php:430
    227 msgid "Layout"
    228 msgstr "Disposición"
    229 
    230 #: classes/wc-aplazame-gateway.php:330
    231 msgid "Layout of product widget (only new widget)"
    232 msgstr "Disposición del widget del producto (sólo nuevo widget)"
    233 
    234 #: classes/wc-aplazame-gateway.php:339 classes/wc-aplazame-gateway.php:440
    235 msgid "Alignment"
    236 msgstr "Alineación"
    237 
    238 #: classes/wc-aplazame-gateway.php:340
    239 msgid "Product widget alignment (only new widget)"
    240 msgstr "Alineación del widget del producto (sólo nuevo widget)"
    241 
    242 #: classes/wc-aplazame-gateway.php:342 classes/wc-aplazame-gateway.php:443
    243 msgid "Left"
    244 msgstr "Izquierda"
    245 
    246 #: classes/wc-aplazame-gateway.php:343 classes/wc-aplazame-gateway.php:444
    247 msgid "Center"
    248 msgstr "Centro"
    249 
    250 #: classes/wc-aplazame-gateway.php:344 classes/wc-aplazame-gateway.php:445
    251 msgid "Right"
    252 msgstr "Derecha"
    253 
    254 #: classes/wc-aplazame-gateway.php:350
     284#: classes/wc-aplazame-gateway.php:361
     285msgid "Primary color hexadecimal code for product widget (only v4)"
     286msgstr "Código hexadecimal del color principal para el widget del producto (sólo v4)"
     287
     288#: classes/wc-aplazame-gateway.php:367
    255289msgid "Product quantity CSS selector"
    256290msgstr "Selector CSS del número de unidades del producto"
    257291
    258 #: classes/wc-aplazame-gateway.php:351
     292#: classes/wc-aplazame-gateway.php:368
    259293msgid "CSS selector pointing to product quantity"
    260294msgstr "Selector CSS para obtener la cantidad de producto"
    261295
    262 #: classes/wc-aplazame-gateway.php:356
     296#: classes/wc-aplazame-gateway.php:373
    263297msgid "Product price CSS selector"
    264298msgstr "Selector CSS del precio del producto"
    265299
    266 #: classes/wc-aplazame-gateway.php:357
     300#: classes/wc-aplazame-gateway.php:374
    267301msgid "CSS selector pointing to product price"
    268302msgstr "Selector CSS para obtener el precio del producto"
    269303
    270 #: classes/wc-aplazame-gateway.php:362
     304#: classes/wc-aplazame-gateway.php:379
    271305msgid "Variable product price CSS selector"
    272306msgstr "Selector CSS del precio variable del producto"
    273307
    274 #: classes/wc-aplazame-gateway.php:363
     308#: classes/wc-aplazame-gateway.php:380
    275309msgid "CSS selector pointing to variable product price"
    276310msgstr "Selector CSS para obtener el precio variable del producto"
    277311
    278 #: classes/wc-aplazame-gateway.php:373
     312#: classes/wc-aplazame-gateway.php:390
    279313msgid "Cart widget"
    280314msgstr "Widget del carrito"
    281315
    282 #: classes/wc-aplazame-gateway.php:380
     316#: classes/wc-aplazame-gateway.php:397
     317msgid "Select your desired version for cart widget"
     318msgstr "Elige la versión deseada para el widget del carrito"
     319
     320#: classes/wc-aplazame-gateway.php:408
    283321msgid "Widget place on cart page"
    284322msgstr "Lugar del widget en la página del carrito"
    285323
    286 #: classes/wc-aplazame-gateway.php:383
     324#: classes/wc-aplazame-gateway.php:411
    287325msgid "Before cart totals"
    288326msgstr "Antes del total"
    289327
    290 #: classes/wc-aplazame-gateway.php:384
     328#: classes/wc-aplazame-gateway.php:412
    291329msgid "After cart totals"
    292330msgstr "Después del total"
    293331
    294 #: classes/wc-aplazame-gateway.php:392
     332#: classes/wc-aplazame-gateway.php:420
    295333msgid "Number of default instalments in cart widget"
    296334msgstr "Número de cuotas por defecto en el widget del carrito"
    297335
    298 #: classes/wc-aplazame-gateway.php:398
     336#: classes/wc-aplazame-gateway.php:426
     337msgid "Show slider in cart widget (only v5)"
     338msgstr "Muestra la barra deslizante para el widget del carrito (sólo v5)"
     339
     340#: classes/wc-aplazame-gateway.php:432
     341msgid "Reduce size of cart widget (only v5)"
     342msgstr "Reduce el tamaño para el widget del carrito (sólo v5)"
     343
     344#: classes/wc-aplazame-gateway.php:438
    299345msgid "Show downpayment info in cart widget"
    300346msgstr "Mostrar pago inicial en el widget del carrito"
    301347
    302 #: classes/wc-aplazame-gateway.php:404
     348#: classes/wc-aplazame-gateway.php:444
    303349msgid "Show legal notice in cart widget"
    304350msgstr "Mostrar texto legal en el widget del carrito"
    305351
    306 #: classes/wc-aplazame-gateway.php:410
     352#: classes/wc-aplazame-gateway.php:450
    307353msgid "Enable cart widget pay in 4 (if available)"
    308354msgstr "Activar widget del carrito paga en 4 (si disponible)"
    309355
    310 #: classes/wc-aplazame-gateway.php:424
    311 msgid "Primary color hexadecimal code for cart widget (only new widget)"
    312 msgstr ""
    313 "Código hexadecimal del color principal para el widget del carrito (sólo "
    314 "nuevo widget)"
    315 
    316 #: classes/wc-aplazame-gateway.php:431
    317 msgid "Layout of cart widget (only new widget)"
    318 msgstr "Disposición del widget del carrito (sólo nuevo widget)"
    319 
    320 #: classes/wc-aplazame-gateway.php:441
    321 msgid "Cart widget alignment (only new widget)"
    322 msgstr "Alineación del widget del carrito (sólo nuevo widget)"
    323 
    324 #: classes/wc-aplazame-gateway.php:452
     356#: classes/wc-aplazame-gateway.php:462
     357msgid "Layout of cart widget (only v4)"
     358msgstr "Disposición del widget del carrito (sólo v4)"
     359
     360#: classes/wc-aplazame-gateway.php:472
     361msgid "Cart widget alignment (only v4/v5)"
     362msgstr "Alineación del widget del carrito (sólo v4/v5)"
     363
     364#: classes/wc-aplazame-gateway.php:485
     365msgid "Primary color hexadecimal code for cart widget (only v4)"
     366msgstr "Código hexadecimal del color principal para el widget del carrito (sólo v4)"
     367
     368#: classes/wc-aplazame-gateway.php:492
    325369msgid "Button"
    326370msgstr "Botón"
    327371
    328 #: classes/wc-aplazame-gateway.php:458
     372#: classes/wc-aplazame-gateway.php:498
    329373msgid "Button Selector"
    330374msgstr "Selector del botón"
    331375
    332 #: classes/wc-aplazame-gateway.php:459
     376#: classes/wc-aplazame-gateway.php:499
    333377msgid "Aplazame Button CSS Selector"
    334378msgstr "Selector CSS del botón de pago con Aplazame"
    335379
    336 #: classes/wc-aplazame-gateway.php:467
     380#: classes/wc-aplazame-gateway.php:507
    337381msgid "Button Image"
    338382msgstr "Imagen del botón"
    339383
    340 #: classes/wc-aplazame-gateway.php:468
     384#: classes/wc-aplazame-gateway.php:508
    341385msgid "Aplazame Button Image that you want to show"
    342386msgstr "Imagen del botón de pago con Aplazame que quieres mostrar"
  • aplazame/tags/v4.1.1/i18n/languages/aplazame.pot

    r3095046 r3150724  
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: Aplazame v4.0.2\n"
     9"Project-Id-Version: Aplazame v4.1.1\n"
    1010"Report-Msgid-Bugs-To: https://github.com/aplazame/woocommerce\n"
    11 "POT-Creation-Date: 2024-05-30 10:53+0200\n"
     11"POT-Creation-Date: 2024-09-12 12:13+0200\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    8989msgstr ""
    9090
    91 #: classes/wc-aplazame-gateway.php:238
    92 msgid "Use widget legacy instead new widget"
    93 msgstr ""
    94 
    95 #: classes/wc-aplazame-gateway.php:239
    96 msgid "Turn on widget legacy"
     91#: classes/wc-aplazame-gateway.php:236
     92msgid "Payment method title and description"
    9793msgstr ""
    9894
    9995#: classes/wc-aplazame-gateway.php:242
    100 msgid "Payment method title and description"
     96msgid "Title"
     97msgstr ""
     98
     99#: classes/wc-aplazame-gateway.php:243
     100msgid "Payment method title"
    101101msgstr ""
    102102
    103103#: classes/wc-aplazame-gateway.php:248
    104 msgid "Title"
     104msgid "Description"
    105105msgstr ""
    106106
    107107#: classes/wc-aplazame-gateway.php:249
    108 msgid "Payment method title"
    109 msgstr ""
    110 
    111 #: classes/wc-aplazame-gateway.php:254
    112 msgid "Description"
    113 msgstr ""
    114 
    115 #: classes/wc-aplazame-gateway.php:255
    116108msgid "Payment method description"
    117109msgstr ""
    118110
    119 #: classes/wc-aplazame-gateway.php:265
     111#: classes/wc-aplazame-gateway.php:259
    120112msgid "Product widget"
    121113msgstr ""
    122114
    123 #: classes/wc-aplazame-gateway.php:271 classes/wc-aplazame-gateway.php:379
     115#: classes/wc-aplazame-gateway.php:265 classes/wc-aplazame-gateway.php:396
     116msgid "Widget version"
     117msgstr ""
     118
     119#: classes/wc-aplazame-gateway.php:266
     120msgid "Select your desired version for product widget"
     121msgstr ""
     122
     123#: classes/wc-aplazame-gateway.php:268 classes/wc-aplazame-gateway.php:399
     124msgid "v3"
     125msgstr ""
     126
     127#: classes/wc-aplazame-gateway.php:269 classes/wc-aplazame-gateway.php:400
     128msgid "v4"
     129msgstr ""
     130
     131#: classes/wc-aplazame-gateway.php:270 classes/wc-aplazame-gateway.php:401
     132msgid "v5"
     133msgstr ""
     134
     135#: classes/wc-aplazame-gateway.php:276 classes/wc-aplazame-gateway.php:407
    124136msgid "Place to show"
    125137msgstr ""
    126138
    127 #: classes/wc-aplazame-gateway.php:272
     139#: classes/wc-aplazame-gateway.php:277
    128140msgid "Widget place on product page"
    129141msgstr ""
    130142
    131 #: classes/wc-aplazame-gateway.php:274 classes/wc-aplazame-gateway.php:382
     143#: classes/wc-aplazame-gateway.php:279 classes/wc-aplazame-gateway.php:410
    132144msgid "~ Not show ~"
    133145msgstr ""
    134146
    135 #: classes/wc-aplazame-gateway.php:275
     147#: classes/wc-aplazame-gateway.php:280
    136148msgid "Before add to cart button"
    137149msgstr ""
    138150
    139 #: classes/wc-aplazame-gateway.php:276
     151#: classes/wc-aplazame-gateway.php:281
    140152msgid "After add to cart button"
    141153msgstr ""
    142154
    143 #: classes/wc-aplazame-gateway.php:277
     155#: classes/wc-aplazame-gateway.php:282
    144156msgid "After summary"
    145157msgstr ""
    146158
    147 #: classes/wc-aplazame-gateway.php:284 classes/wc-aplazame-gateway.php:391
     159#: classes/wc-aplazame-gateway.php:289 classes/wc-aplazame-gateway.php:419
    148160msgid "Default instalments"
    149161msgstr ""
    150162
    151 #: classes/wc-aplazame-gateway.php:285
     163#: classes/wc-aplazame-gateway.php:290
    152164msgid "Number of default instalments in product widget"
    153165msgstr ""
    154166
    155 #: classes/wc-aplazame-gateway.php:286 classes/wc-aplazame-gateway.php:393
     167#: classes/wc-aplazame-gateway.php:291 classes/wc-aplazame-gateway.php:421
    156168msgid "Optional (only numbers)"
    157169msgstr ""
    158170
    159 #: classes/wc-aplazame-gateway.php:290 classes/wc-aplazame-gateway.php:397
     171#: classes/wc-aplazame-gateway.php:295 classes/wc-aplazame-gateway.php:425
     172msgid "Slider"
     173msgstr ""
     174
     175#: classes/wc-aplazame-gateway.php:296
     176msgid "Show slider in product widget (only v5)"
     177msgstr ""
     178
     179#: classes/wc-aplazame-gateway.php:297 classes/wc-aplazame-gateway.php:427
     180msgid "Show slider info"
     181msgstr ""
     182
     183#: classes/wc-aplazame-gateway.php:301 classes/wc-aplazame-gateway.php:431
     184msgid "Small size"
     185msgstr ""
     186
     187#: classes/wc-aplazame-gateway.php:302
     188msgid "Reduce size of product widget (only v5)"
     189msgstr ""
     190
     191#: classes/wc-aplazame-gateway.php:303 classes/wc-aplazame-gateway.php:433
     192msgid "Reduce size"
     193msgstr ""
     194
     195#: classes/wc-aplazame-gateway.php:307 classes/wc-aplazame-gateway.php:437
    160196msgid "Downpayment info"
    161197msgstr ""
    162198
    163 #: classes/wc-aplazame-gateway.php:291
     199#: classes/wc-aplazame-gateway.php:308
    164200msgid "Show downpayment info in product widget"
    165201msgstr ""
    166202
    167 #: classes/wc-aplazame-gateway.php:292 classes/wc-aplazame-gateway.php:399
     203#: classes/wc-aplazame-gateway.php:309 classes/wc-aplazame-gateway.php:439
    168204msgid "Show downpayment info"
    169205msgstr ""
    170206
    171 #: classes/wc-aplazame-gateway.php:296 classes/wc-aplazame-gateway.php:403
     207#: classes/wc-aplazame-gateway.php:313 classes/wc-aplazame-gateway.php:443
    172208msgid "Legal notice"
    173209msgstr ""
    174210
    175 #: classes/wc-aplazame-gateway.php:297
     211#: classes/wc-aplazame-gateway.php:314
    176212msgid "Show legal notice in product widget"
    177213msgstr ""
    178214
    179 #: classes/wc-aplazame-gateway.php:298 classes/wc-aplazame-gateway.php:405
     215#: classes/wc-aplazame-gateway.php:315 classes/wc-aplazame-gateway.php:445
    180216msgid "Show legal notice"
    181217msgstr ""
    182218
    183 #: classes/wc-aplazame-gateway.php:302 classes/wc-aplazame-gateway.php:409
     219#: classes/wc-aplazame-gateway.php:319 classes/wc-aplazame-gateway.php:449
    184220msgid "Pay in 4"
    185221msgstr ""
    186222
    187 #: classes/wc-aplazame-gateway.php:303
     223#: classes/wc-aplazame-gateway.php:320
    188224msgid "Enable product widget pay in 4 (if available)"
    189225msgstr ""
    190226
    191 #: classes/wc-aplazame-gateway.php:304 classes/wc-aplazame-gateway.php:411
     227#: classes/wc-aplazame-gateway.php:321 classes/wc-aplazame-gateway.php:451
    192228msgid "Enable pay in 4"
    193229msgstr ""
    194230
    195 #: classes/wc-aplazame-gateway.php:308
     231#: classes/wc-aplazame-gateway.php:325
    196232msgid "Border"
    197233msgstr ""
    198234
    199 #: classes/wc-aplazame-gateway.php:309
    200 msgid "Show border in product widget (only new widget)"
    201 msgstr ""
    202 
    203 #: classes/wc-aplazame-gateway.php:310
     235#: classes/wc-aplazame-gateway.php:326
     236msgid "Show border in product widget (only v4)"
     237msgstr ""
     238
     239#: classes/wc-aplazame-gateway.php:327
    204240msgid "Show border"
    205241msgstr ""
    206242
    207 #: classes/wc-aplazame-gateway.php:314 classes/wc-aplazame-gateway.php:415
     243#: classes/wc-aplazame-gateway.php:331 classes/wc-aplazame-gateway.php:455
    208244msgid "Enter maximum instalment"
    209245msgstr ""
    210246
    211 #: classes/wc-aplazame-gateway.php:315 classes/wc-aplazame-gateway.php:416
     247#: classes/wc-aplazame-gateway.php:332 classes/wc-aplazame-gateway.php:456
    212248msgid ""
    213249"Allow the user to manually enter the maximum instalment they want to pay "
    214 "(only new widget)"
    215 msgstr ""
    216 
    217 #: classes/wc-aplazame-gateway.php:316 classes/wc-aplazame-gateway.php:417
     250"(only v4)"
     251msgstr ""
     252
     253#: classes/wc-aplazame-gateway.php:333 classes/wc-aplazame-gateway.php:457
    218254msgid "Allow the user to manually enter the maximum instalment"
    219255msgstr ""
    220256
    221 #: classes/wc-aplazame-gateway.php:322 classes/wc-aplazame-gateway.php:423
     257#: classes/wc-aplazame-gateway.php:337 classes/wc-aplazame-gateway.php:461
     258msgid "Layout"
     259msgstr ""
     260
     261#: classes/wc-aplazame-gateway.php:338
     262msgid "Layout of product widget (only v4)"
     263msgstr ""
     264
     265#: classes/wc-aplazame-gateway.php:347 classes/wc-aplazame-gateway.php:471
     266msgid "Alignment"
     267msgstr ""
     268
     269#: classes/wc-aplazame-gateway.php:348
     270msgid "Product widget alignment (only v4/v5)"
     271msgstr ""
     272
     273#: classes/wc-aplazame-gateway.php:350 classes/wc-aplazame-gateway.php:474
     274msgid "Left"
     275msgstr ""
     276
     277#: classes/wc-aplazame-gateway.php:351 classes/wc-aplazame-gateway.php:475
     278msgid "Center"
     279msgstr ""
     280
     281#: classes/wc-aplazame-gateway.php:352 classes/wc-aplazame-gateway.php:476
     282msgid "Right"
     283msgstr ""
     284
     285#: classes/wc-aplazame-gateway.php:360 classes/wc-aplazame-gateway.php:484
    222286msgid "Primary color"
    223287msgstr ""
    224288
    225 #: classes/wc-aplazame-gateway.php:323
    226 msgid "Primary color hexadecimal code for product widget (only new widget)"
    227 msgstr ""
    228 
    229 #: classes/wc-aplazame-gateway.php:329 classes/wc-aplazame-gateway.php:430
    230 msgid "Layout"
    231 msgstr ""
    232 
    233 #: classes/wc-aplazame-gateway.php:330
    234 msgid "Layout of product widget (only new widget)"
    235 msgstr ""
    236 
    237 #: classes/wc-aplazame-gateway.php:339 classes/wc-aplazame-gateway.php:440
    238 msgid "Alignment"
    239 msgstr ""
    240 
    241 #: classes/wc-aplazame-gateway.php:340
    242 msgid "Product widget alignment (only new widget)"
    243 msgstr ""
    244 
    245 #: classes/wc-aplazame-gateway.php:342 classes/wc-aplazame-gateway.php:443
    246 msgid "Left"
    247 msgstr ""
    248 
    249 #: classes/wc-aplazame-gateway.php:343 classes/wc-aplazame-gateway.php:444
    250 msgid "Center"
    251 msgstr ""
    252 
    253 #: classes/wc-aplazame-gateway.php:344 classes/wc-aplazame-gateway.php:445
    254 msgid "Right"
    255 msgstr ""
    256 
    257 #: classes/wc-aplazame-gateway.php:350
     289#: classes/wc-aplazame-gateway.php:361
     290msgid "Primary color hexadecimal code for product widget (only v4)"
     291msgstr ""
     292
     293#: classes/wc-aplazame-gateway.php:367
    258294msgid "Product quantity CSS selector"
    259295msgstr ""
    260296
    261 #: classes/wc-aplazame-gateway.php:351
     297#: classes/wc-aplazame-gateway.php:368
    262298msgid "CSS selector pointing to product quantity"
    263299msgstr ""
    264300
    265 #: classes/wc-aplazame-gateway.php:356
     301#: classes/wc-aplazame-gateway.php:373
    266302msgid "Product price CSS selector"
    267303msgstr ""
    268304
    269 #: classes/wc-aplazame-gateway.php:357
     305#: classes/wc-aplazame-gateway.php:374
    270306msgid "CSS selector pointing to product price"
    271307msgstr ""
    272308
    273 #: classes/wc-aplazame-gateway.php:362
     309#: classes/wc-aplazame-gateway.php:379
    274310msgid "Variable product price CSS selector"
    275311msgstr ""
    276312
    277 #: classes/wc-aplazame-gateway.php:363
     313#: classes/wc-aplazame-gateway.php:380
    278314msgid "CSS selector pointing to variable product price"
    279315msgstr ""
    280316
    281 #: classes/wc-aplazame-gateway.php:373
     317#: classes/wc-aplazame-gateway.php:390
    282318msgid "Cart widget"
    283319msgstr ""
    284320
    285 #: classes/wc-aplazame-gateway.php:380
     321#: classes/wc-aplazame-gateway.php:397
     322msgid "Select your desired version for cart widget"
     323msgstr ""
     324
     325#: classes/wc-aplazame-gateway.php:408
    286326msgid "Widget place on cart page"
    287327msgstr ""
    288328
    289 #: classes/wc-aplazame-gateway.php:383
     329#: classes/wc-aplazame-gateway.php:411
    290330msgid "Before cart totals"
    291331msgstr ""
    292332
    293 #: classes/wc-aplazame-gateway.php:384
     333#: classes/wc-aplazame-gateway.php:412
    294334msgid "After cart totals"
    295335msgstr ""
    296336
    297 #: classes/wc-aplazame-gateway.php:392
     337#: classes/wc-aplazame-gateway.php:420
    298338msgid "Number of default instalments in cart widget"
    299339msgstr ""
    300340
    301 #: classes/wc-aplazame-gateway.php:398
     341#: classes/wc-aplazame-gateway.php:426
     342msgid "Show slider in cart widget (only v5)"
     343msgstr ""
     344
     345#: classes/wc-aplazame-gateway.php:432
     346msgid "Reduce size of cart widget (only v5)"
     347msgstr ""
     348
     349#: classes/wc-aplazame-gateway.php:438
    302350msgid "Show downpayment info in cart widget"
    303351msgstr ""
    304352
    305 #: classes/wc-aplazame-gateway.php:404
     353#: classes/wc-aplazame-gateway.php:444
    306354msgid "Show legal notice in cart widget"
    307355msgstr ""
    308356
    309 #: classes/wc-aplazame-gateway.php:410
     357#: classes/wc-aplazame-gateway.php:450
    310358msgid "Enable cart widget pay in 4 (if available)"
    311359msgstr ""
    312360
    313 #: classes/wc-aplazame-gateway.php:424
    314 msgid "Primary color hexadecimal code for cart widget (only new widget)"
    315 msgstr ""
    316 
    317 #: classes/wc-aplazame-gateway.php:431
    318 msgid "Layout of cart widget (only new widget)"
    319 msgstr ""
    320 
    321 #: classes/wc-aplazame-gateway.php:441
    322 msgid "Cart widget alignment (only new widget)"
    323 msgstr ""
    324 
    325 #: classes/wc-aplazame-gateway.php:452
     361#: classes/wc-aplazame-gateway.php:462
     362msgid "Layout of cart widget (only v4)"
     363msgstr ""
     364
     365#: classes/wc-aplazame-gateway.php:472
     366msgid "Cart widget alignment (only v4/v5)"
     367msgstr ""
     368
     369#: classes/wc-aplazame-gateway.php:485
     370msgid "Primary color hexadecimal code for cart widget (only v4)"
     371msgstr ""
     372
     373#: classes/wc-aplazame-gateway.php:492
    326374msgid "Button"
    327375msgstr ""
    328376
    329 #: classes/wc-aplazame-gateway.php:458
     377#: classes/wc-aplazame-gateway.php:498
    330378msgid "Button Selector"
    331379msgstr ""
    332380
    333 #: classes/wc-aplazame-gateway.php:459
     381#: classes/wc-aplazame-gateway.php:499
    334382msgid "Aplazame Button CSS Selector"
    335383msgstr ""
    336384
    337 #: classes/wc-aplazame-gateway.php:467
     385#: classes/wc-aplazame-gateway.php:507
    338386msgid "Button Image"
    339387msgstr ""
    340388
    341 #: classes/wc-aplazame-gateway.php:468
     389#: classes/wc-aplazame-gateway.php:508
    342390msgid "Aplazame Button Image that you want to show"
    343391msgstr ""
  • aplazame/tags/v4.1.1/templates/widgets/cart.php

    r2943528 r3150724  
    1414
    1515<div
    16     <?php if ( $aplazame->settings['widget_legacy'] === 'yes' ) : ?>
     16    <?php if ( $aplazame->settings['cart_widget_ver'] === 'v3' ) : ?>
    1717        data-aplazame-widget-instalments=""
    1818        data-view="cart"
    19     <?php else : ?>
     19    <?php elseif ( $aplazame->settings['cart_widget_ver'] === 'v4' ) : ?>
    2020        data-aplazame-widget-instalments="v4"
    2121        data-type="cart"
     
    2323        data-option-primary-color="<?php echo esc_attr( $aplazame->settings['cart_widget_primary_color'] ); ?>"
    2424        data-option-layout="<?php echo esc_attr( $aplazame->settings['cart_widget_layout'] ); ?>"
     25        data-option-align="<?php echo esc_attr( $aplazame->settings['cart_widget_align'] ); ?>"
     26    <?php else : ?>
     27        data-aplazame-widget-instalments="v5"
     28        data-type="cart"
     29        data-option-slider="<?php echo esc_attr( $aplazame->settings['cart_slider'] === 'yes' ? 'true' : 'false' ); ?>"
     30        data-option-small-size="<?php echo esc_attr( $aplazame->settings['cart_small_size'] === 'yes' ? 'true' : 'false' ); ?>"
    2531        data-option-align="<?php echo esc_attr( $aplazame->settings['cart_widget_align'] ); ?>"
    2632    <?php endif; ?>
  • aplazame/tags/v4.1.1/templates/widgets/product.php

    r2943528 r3150724  
    3434
    3535<div
    36     <?php if ( $aplazame->settings['widget_legacy'] === 'yes' ) : ?>
     36    <?php if ( $aplazame->settings['product_widget_ver'] === 'v3' ) : ?>
    3737        data-aplazame-widget-instalments=""
    3838        data-view="product"
    39     <?php else : ?>
     39    <?php elseif ( $aplazame->settings['product_widget_ver'] === 'v4' ) : ?>
    4040        data-aplazame-widget-instalments="v4"
    4141        data-type="product"
     
    4545        data-option-align="<?php echo esc_attr( $aplazame->settings['product_widget_align'] ); ?>"
    4646        data-option-border-product="<?php echo esc_attr( $aplazame->settings['product_widget_border'] === 'yes' ? 'true' : 'false' ); ?>"
     47    <?php else : ?>
     48        data-aplazame-widget-instalments="v5"
     49        data-type="product"
     50        data-option-slider="<?php echo esc_attr( $aplazame->settings['product_slider'] === 'yes' ? 'true' : 'false' ); ?>"
     51        data-option-small-size="<?php echo esc_attr( $aplazame->settings['product_small_size'] === 'yes' ? 'true' : 'false' ); ?>"
     52        data-option-align="<?php echo esc_attr( $aplazame->settings['product_widget_align'] ); ?>"
    4753    <?php endif; ?>
    4854    <?php if ( empty( $price_selector ) ) : ?>
  • aplazame/trunk/README.txt

    r3095046 r3150724  
    33Tags: aplazame,woocommerce,ecommerce,payment,checkout,credit,aplazar,financiar,financiera,financiación,pago aplazado,método de pago
    44Requires at least: 4.0.1
    5 Tested up to: 6.5.3
     5Tested up to: 6.6.2
    66Requires PHP: 5.3.0
    7 Stable tag: 4.0.2
     7Stable tag: 4.1.1
    88License: BSD-3-Clause
    99License URI: https://github.com/aplazame/woocommerce/blob/master/LICENSE
     
    7878== Changelog ==
    7979
     80#### [v4.1.1](https://github.com/aplazame/woocommerce/tree/v4.1.1) (2024-09-12)
     81
     82* Minor release for marketplace.
     83
     84#### [v4.1.0](https://github.com/aplazame/woocommerce/tree/v4.1.0) (2024-09-12)
     85
     86* [ADD] Widget v5.
     87
     88#### [v4.0.2](https://github.com/aplazame/woocommerce/tree/v4.0.2) (2024-05-30)
     89
     90* Beta support for Checkout Block.
     91
    8092#### [v4.0.1](https://github.com/aplazame/woocommerce/tree/v4.0.1) (2024-03-05)
    8193
  • aplazame/trunk/aplazame.php

    r3095046 r3150724  
    33 * Plugin Name: Aplazame
    44 * Plugin URI: https://github.com/aplazame/woocommerce
    5  * Version: 4.0.2
     5 * Version: 4.1.1
    66 * Description: Aplazame offers a payment method to receive funding for the purchases.
    77 * Author: Aplazame
     
    1212 *
    1313 * WC requires at least: 3.0.0
    14  * WC tested up to: 8.9.1
     14 * WC tested up to: 9.2.3
    1515 *
    1616 * License: GNU General Public License v3.0
     
    2626
    2727class WC_Aplazame {
    28     const VERSION      = '4.0.2';
     28    const VERSION      = '4.1.1';
    2929    const METHOD_ID    = 'aplazame';
    3030    const METHOD_TITLE = 'Aplazame';
     
    372372        'product_widget_layout'           => 'horizontal',
    373373        'cart_widget_layout'              => 'horizontal',
    374         'widget_legacy'                   => 'no',
    375374        'product_widget_border'           => 'yes',
    376375        'product_widget_align'            => 'center',
     
    383382        'product_widget_max_desired'      => 'no',
    384383        'cart_widget_max_desired'         => 'no',
     384        'product_widget_ver'              => 'v5',
     385        'cart_widget_ver'                 => 'v5',
     386        'product_slider'                  => 'yes',
     387        'cart_slider'                     => 'yes',
     388        'product_small_size'              => 'no',
     389        'cart_small_size'                 => 'no',
    385390    );
    386391
     
    411416                $aplazame->settings['title'] = $aplazame->settings['title_instalments'];
    412417            }
    413             if ( ! isset( $aplazame->settings['widget_legacy'] ) ) {
    414                 $aplazame->settings['widget_legacy'] = 'yes';
    415             }
    416418            self::save_settings( $aplazame->settings );
    417419
  • aplazame/trunk/classes/wc-aplazame-gateway.php

    r3041163 r3150724  
    233233                'default'     => WC_Aplazame_Install::$defaultSettings['widget_out_of_limits'],
    234234            ),
    235             'widget_legacy'                   => array(
    236                 'type'        => 'checkbox',
    237                 'title'       => 'Widget legacy',
    238                 'description' => __( 'Use widget legacy instead new widget', 'aplazame' ),
    239                 'label'       => __( 'Turn on widget legacy', 'aplazame' ),
    240             ),
    241235            'payment_section'                 => array(
    242236                'title'       => __( 'Payment method title and description', 'aplazame' ),
     
    267261                'description' => '',
    268262            ),
     263            'product_widget_ver'              => array(
     264                'type'        => 'select',
     265                'title'       => __( 'Widget version', 'aplazame' ),
     266                'description' => __( 'Select your desired version for product widget', 'aplazame' ),
     267                'options'     => array(
     268                    'v3' => __( 'v3', 'aplazame' ),
     269                    'v4' => __( 'v4', 'aplazame' ),
     270                    'v5' => __( 'v5', 'aplazame' ),
     271                ),
     272                'default'     => 'v5',
     273            ),
    269274            'product_widget_action'           => array(
    270275                'type'        => 'select',
     
    286291                'placeholder' => __( 'Optional (only numbers)', 'aplazame' ),
    287292            ),
     293            'product_slider'                  => array(
     294                'type'        => 'checkbox',
     295                'title'       => __( 'Slider', 'aplazame' ),
     296                'description' => __( 'Show slider in product widget (only v5)', 'aplazame' ),
     297                'label'       => __( 'Show slider info', 'aplazame' ),
     298            ),
     299            'product_small_size'              => array(
     300                'type'        => 'checkbox',
     301                'title'       => __( 'Small size', 'aplazame' ),
     302                'description' => __( 'Reduce size of product widget (only v5)', 'aplazame' ),
     303                'label'       => __( 'Reduce size', 'aplazame' ),
     304            ),
    288305            'product_downpayment_info'        => array(
    289306                'type'        => 'checkbox',
     
    307324                'type'        => 'checkbox',
    308325                'title'       => __( 'Border', 'aplazame' ),
    309                 'description' => __( 'Show border in product widget (only new widget)', 'aplazame' ),
     326                'description' => __( 'Show border in product widget (only v4)', 'aplazame' ),
    310327                'label'       => __( 'Show border', 'aplazame' ),
    311328            ),
     
    313330                'type'        => 'checkbox',
    314331                'title'       => __( 'Enter maximum instalment', 'aplazame' ),
    315                 'description' => __( 'Allow the user to manually enter the maximum instalment they want to pay (only new widget)', 'aplazame' ),
     332                'description' => __( 'Allow the user to manually enter the maximum instalment they want to pay (only v4)', 'aplazame' ),
    316333                'label'       => __( 'Allow the user to manually enter the maximum instalment', 'aplazame' ),
     334            ),
     335            'product_widget_layout'           => array(
     336                'type'        => 'select',
     337                'title'       => __( 'Layout', 'aplazame' ),
     338                'description' => __( 'Layout of product widget (only v4)', 'aplazame' ),
     339                'options'     => array(
     340                    'horizontal' => 'Horizontal',
     341                    'vertical'   => 'Vertical',
     342                ),
     343                'default'     => WC_Aplazame_Install::$defaultSettings['product_widget_layout'],
     344            ),
     345            'product_widget_align'            => array(
     346                'type'        => 'select',
     347                'title'       => __( 'Alignment', 'aplazame' ),
     348                'description' => __( 'Product widget alignment (only v4/v5)', 'aplazame' ),
     349                'options'     => array(
     350                    'left'   => __( 'Left', 'aplazame' ),
     351                    'center' => __( 'Center', 'aplazame' ),
     352                    'right'  => __( 'Right', 'aplazame' ),
     353                ),
     354                'default'     => WC_Aplazame_Install::$defaultSettings['product_widget_align'],
    317355            ),
    318356            'product_widget_primary_color'    => array(
     
    321359                'class'       => 'colorpick',
    322360                'title'       => __( 'Primary color', 'aplazame' ),
    323                 'description' => __( 'Primary color hexadecimal code for product widget (only new widget)', 'aplazame' ),
     361                'description' => __( 'Primary color hexadecimal code for product widget (only v4)', 'aplazame' ),
    324362                'default'     => WC_Aplazame_Install::$defaultSettings['product_widget_primary_color'],
    325363                'placeholder' => WC_Aplazame_Install::$defaultSettings['product_widget_primary_color'],
    326             ),
    327             'product_widget_layout'           => array(
    328                 'type'        => 'select',
    329                 'title'       => __( 'Layout', 'aplazame' ),
    330                 'description' => __( 'Layout of product widget (only new widget)', 'aplazame' ),
    331                 'options'     => array(
    332                     'horizontal' => 'Horizontal',
    333                     'vertical'   => 'Vertical',
    334                 ),
    335                 'default'     => WC_Aplazame_Install::$defaultSettings['product_widget_layout'],
    336             ),
    337             'product_widget_align'            => array(
    338                 'type'        => 'select',
    339                 'title'       => __( 'Alignment', 'aplazame' ),
    340                 'description' => __( 'Product widget alignment (only new widget)', 'aplazame' ),
    341                 'options'     => array(
    342                     'left'   => __( 'Left', 'aplazame' ),
    343                     'center' => __( 'Center', 'aplazame' ),
    344                     'right'  => __( 'Right', 'aplazame' ),
    345                 ),
    346                 'default'     => WC_Aplazame_Install::$defaultSettings['product_widget_align'],
    347364            ),
    348365            'quantity_selector'               => array(
     
    375392                'description' => '',
    376393            ),
     394            'cart_widget_ver'                 => array(
     395                'type'        => 'select',
     396                'title'       => __( 'Widget version', 'aplazame' ),
     397                'description' => __( 'Select your desired version for cart widget', 'aplazame' ),
     398                'options'     => array(
     399                    'v3' => __( 'v3', 'aplazame' ),
     400                    'v4' => __( 'v4', 'aplazame' ),
     401                    'v5' => __( 'v5', 'aplazame' ),
     402                ),
     403                'default'     => 'v5',
     404            ),
    377405            'cart_widget_action'              => array(
    378406                'type'        => 'select',
     
    393421                'placeholder' => __( 'Optional (only numbers)', 'aplazame' ),
    394422            ),
     423            'cart_slider'                     => array(
     424                'type'        => 'checkbox',
     425                'title'       => __( 'Slider', 'aplazame' ),
     426                'description' => __( 'Show slider in cart widget (only v5)', 'aplazame' ),
     427                'label'       => __( 'Show slider info', 'aplazame' ),
     428            ),
     429            'cart_small_size'                 => array(
     430                'type'        => 'checkbox',
     431                'title'       => __( 'Small size', 'aplazame' ),
     432                'description' => __( 'Reduce size of cart widget (only v5)', 'aplazame' ),
     433                'label'       => __( 'Reduce size', 'aplazame' ),
     434            ),
    395435            'cart_downpayment_info'           => array(
    396436                'type'        => 'checkbox',
     
    414454                'type'        => 'checkbox',
    415455                'title'       => __( 'Enter maximum instalment', 'aplazame' ),
    416                 'description' => __( 'Allow the user to manually enter the maximum instalment they want to pay (only new widget)', 'aplazame' ),
     456                'description' => __( 'Allow the user to manually enter the maximum instalment they want to pay (only v4)', 'aplazame' ),
    417457                'label'       => __( 'Allow the user to manually enter the maximum instalment', 'aplazame' ),
     458            ),
     459            'cart_widget_layout'              => array(
     460                'type'        => 'select',
     461                'title'       => __( 'Layout', 'aplazame' ),
     462                'description' => __( 'Layout of cart widget (only v4)', 'aplazame' ),
     463                'options'     => array(
     464                    'horizontal' => 'Horizontal',
     465                    'vertical'   => 'Vertical',
     466                ),
     467                'default'     => WC_Aplazame_Install::$defaultSettings['cart_widget_layout'],
     468            ),
     469            'cart_widget_align'               => array(
     470                'type'        => 'select',
     471                'title'       => __( 'Alignment', 'aplazame' ),
     472                'description' => __( 'Cart widget alignment (only v4/v5)', 'aplazame' ),
     473                'options'     => array(
     474                    'left'   => __( 'Left', 'aplazame' ),
     475                    'center' => __( 'Center', 'aplazame' ),
     476                    'right'  => __( 'Right', 'aplazame' ),
     477                ),
     478                'default'     => WC_Aplazame_Install::$defaultSettings['cart_widget_align'],
    418479            ),
    419480            'cart_widget_primary_color'       => array(
     
    422483                'class'       => 'colorpick',
    423484                'title'       => __( 'Primary color', 'aplazame' ),
    424                 'description' => __( 'Primary color hexadecimal code for cart widget (only new widget)', 'aplazame' ),
     485                'description' => __( 'Primary color hexadecimal code for cart widget (only v4)', 'aplazame' ),
    425486                'default'     => WC_Aplazame_Install::$defaultSettings['cart_widget_primary_color'],
    426487                'placeholder' => WC_Aplazame_Install::$defaultSettings['cart_widget_primary_color'],
    427             ),
    428             'cart_widget_layout'              => array(
    429                 'type'        => 'select',
    430                 'title'       => __( 'Layout', 'aplazame' ),
    431                 'description' => __( 'Layout of cart widget (only new widget)', 'aplazame' ),
    432                 'options'     => array(
    433                     'horizontal' => 'Horizontal',
    434                     'vertical'   => 'Vertical',
    435                 ),
    436                 'default'     => WC_Aplazame_Install::$defaultSettings['cart_widget_layout'],
    437             ),
    438             'cart_widget_align'               => array(
    439                 'type'        => 'select',
    440                 'title'       => __( 'Alignment', 'aplazame' ),
    441                 'description' => __( 'Cart widget alignment (only new widget)', 'aplazame' ),
    442                 'options'     => array(
    443                     'left'   => __( 'Left', 'aplazame' ),
    444                     'center' => __( 'Center', 'aplazame' ),
    445                     'right'  => __( 'Right', 'aplazame' ),
    446                 ),
    447                 'default'     => WC_Aplazame_Install::$defaultSettings['cart_widget_align'],
    448488            ),
    449489
  • aplazame/trunk/i18n/languages/aplazame.po

    r3095046 r3150724  
    22msgstr ""
    33"Report-Msgid-Bugs-To: https://github.com/aplazame/woocommerce\n"
    4 "POT-Creation-Date: 2024-05-30 10:53+0200\n"
     4"POT-Creation-Date: 2024-09-11 13:55+0200\n"
    55"Language: es_ES\n"
    66"MIME-Version: 1.0\n"
     
    8282msgstr "Ocultar"
    8383
    84 #: classes/wc-aplazame-gateway.php:238
    85 msgid "Use widget legacy instead new widget"
    86 msgstr "Usa el widget legacy en lugar del nuevo widget"
    87 
    88 #: classes/wc-aplazame-gateway.php:239
    89 msgid "Turn on widget legacy"
    90 msgstr "Activar widget legacy"
    91 
    92 #: classes/wc-aplazame-gateway.php:242
     84#: classes/wc-aplazame-gateway.php:236
    9385msgid "Payment method title and description"
    9486msgstr "Título y descripción del método de pago"
    9587
    96 #: classes/wc-aplazame-gateway.php:248
     88#: classes/wc-aplazame-gateway.php:242
    9789msgid "Title"
    9890msgstr "Título"
    9991
    100 #: classes/wc-aplazame-gateway.php:249
     92#: classes/wc-aplazame-gateway.php:243
    10193msgid "Payment method title"
    10294msgstr "Título del método de pago"
    10395
    104 #: classes/wc-aplazame-gateway.php:254
     96#: classes/wc-aplazame-gateway.php:248
    10597msgid "Description"
    10698msgstr "Descripción"
    10799
    108 #: classes/wc-aplazame-gateway.php:255
     100#: classes/wc-aplazame-gateway.php:249
    109101msgid "Payment method description"
    110102msgstr "Descripción del método de pago"
    111103
    112 #: classes/wc-aplazame-gateway.php:265
     104#: classes/wc-aplazame-gateway.php:259
    113105msgid "Product widget"
    114106msgstr "Widget del producto"
    115107
    116 #: classes/wc-aplazame-gateway.php:271 classes/wc-aplazame-gateway.php:379
     108#: classes/wc-aplazame-gateway.php:265 classes/wc-aplazame-gateway.php:396
     109msgid "Widget version"
     110msgstr "Versión del widget"
     111
     112#: classes/wc-aplazame-gateway.php:266
     113msgid "Select your desired version for product widget"
     114msgstr "Elige la versión deseada para el widget del producto"
     115
     116#: classes/wc-aplazame-gateway.php:268 classes/wc-aplazame-gateway.php:399
     117msgid "v3"
     118msgstr ""
     119
     120#: classes/wc-aplazame-gateway.php:269 classes/wc-aplazame-gateway.php:400
     121msgid "v4"
     122msgstr ""
     123
     124#: classes/wc-aplazame-gateway.php:270 classes/wc-aplazame-gateway.php:401
     125msgid "v5"
     126msgstr ""
     127
     128#: classes/wc-aplazame-gateway.php:276 classes/wc-aplazame-gateway.php:407
    117129msgid "Place to show"
    118130msgstr "Lugar a mostrar"
    119131
    120 #: classes/wc-aplazame-gateway.php:272
     132#: classes/wc-aplazame-gateway.php:277
    121133msgid "Widget place on product page"
    122134msgstr "Lugar del widget en la página del producto"
    123135
    124 #: classes/wc-aplazame-gateway.php:274 classes/wc-aplazame-gateway.php:382
     136#: classes/wc-aplazame-gateway.php:279 classes/wc-aplazame-gateway.php:410
    125137msgid "~ Not show ~"
    126138msgstr "~ No mostrar ~"
    127139
    128 #: classes/wc-aplazame-gateway.php:275
     140#: classes/wc-aplazame-gateway.php:280
    129141msgid "Before add to cart button"
    130142msgstr "Antes del botón de añadir al carrito"
    131143
    132 #: classes/wc-aplazame-gateway.php:276
     144#: classes/wc-aplazame-gateway.php:281
    133145msgid "After add to cart button"
    134146msgstr "Después del botón de añadir al carrito"
    135147
    136 #: classes/wc-aplazame-gateway.php:277
     148#: classes/wc-aplazame-gateway.php:282
    137149msgid "After summary"
    138150msgstr "Después del resumen"
    139151
    140 #: classes/wc-aplazame-gateway.php:284 classes/wc-aplazame-gateway.php:391
     152#: classes/wc-aplazame-gateway.php:289 classes/wc-aplazame-gateway.php:419
    141153msgid "Default instalments"
    142154msgstr "Cuotas por defecto"
    143155
    144 #: classes/wc-aplazame-gateway.php:285
     156#: classes/wc-aplazame-gateway.php:290
    145157msgid "Number of default instalments in product widget"
    146158msgstr "Número de cuotas por defecto en el widget del producto"
    147159
    148 #: classes/wc-aplazame-gateway.php:286 classes/wc-aplazame-gateway.php:393
     160#: classes/wc-aplazame-gateway.php:291 classes/wc-aplazame-gateway.php:421
    149161msgid "Optional (only numbers)"
    150162msgstr "Opcional (solo números)"
    151163
    152 #: classes/wc-aplazame-gateway.php:290 classes/wc-aplazame-gateway.php:397
     164#: classes/wc-aplazame-gateway.php:295 classes/wc-aplazame-gateway.php:425
     165msgid "Slider"
     166msgstr "Barra deslizante"
     167
     168#: classes/wc-aplazame-gateway.php:296
     169msgid "Show slider in product widget (only v5)"
     170msgstr "Muestra la barra deslizante para el widget del producto (sólo v5)"
     171
     172#: classes/wc-aplazame-gateway.php:297 classes/wc-aplazame-gateway.php:427
     173msgid "Show slider info"
     174msgstr "Muestra la barra deslizante"
     175
     176#: classes/wc-aplazame-gateway.php:301 classes/wc-aplazame-gateway.php:431
     177msgid "Small size"
     178msgstr "Tamaño pequeño"
     179
     180#: classes/wc-aplazame-gateway.php:302
     181msgid "Reduce size of product widget (only v5)"
     182msgstr "Reduce el tamaño para el widget del producto (sólo v5)"
     183
     184#: classes/wc-aplazame-gateway.php:303 classes/wc-aplazame-gateway.php:433
     185msgid "Reduce size"
     186msgstr "Reducir tamaño"
     187
     188#: classes/wc-aplazame-gateway.php:307 classes/wc-aplazame-gateway.php:437
    153189msgid "Downpayment info"
    154190msgstr "Pago inicial"
    155191
    156 #: classes/wc-aplazame-gateway.php:291
     192#: classes/wc-aplazame-gateway.php:308
    157193msgid "Show downpayment info in product widget"
    158194msgstr "Mostrar pago inicial en el widget del producto"
    159195
    160 #: classes/wc-aplazame-gateway.php:292 classes/wc-aplazame-gateway.php:399
     196#: classes/wc-aplazame-gateway.php:309 classes/wc-aplazame-gateway.php:439
    161197msgid "Show downpayment info"
    162198msgstr "Mostrar pago inicial"
    163199
    164 #: classes/wc-aplazame-gateway.php:296 classes/wc-aplazame-gateway.php:403
     200#: classes/wc-aplazame-gateway.php:313 classes/wc-aplazame-gateway.php:443
    165201msgid "Legal notice"
    166202msgstr "Texto legal"
    167203
    168 #: classes/wc-aplazame-gateway.php:297
     204#: classes/wc-aplazame-gateway.php:314
    169205msgid "Show legal notice in product widget"
    170206msgstr "Mostrar texto legal en el widget del producto"
    171207
    172 #: classes/wc-aplazame-gateway.php:298 classes/wc-aplazame-gateway.php:405
     208#: classes/wc-aplazame-gateway.php:315 classes/wc-aplazame-gateway.php:445
    173209msgid "Show legal notice"
    174210msgstr "Mostrar texto legal"
    175211
    176 #: classes/wc-aplazame-gateway.php:302 classes/wc-aplazame-gateway.php:409
     212#: classes/wc-aplazame-gateway.php:319 classes/wc-aplazame-gateway.php:449
    177213msgid "Pay in 4"
    178214msgstr "Paga en 4"
    179215
    180 #: classes/wc-aplazame-gateway.php:303
     216#: classes/wc-aplazame-gateway.php:320
    181217msgid "Enable product widget pay in 4 (if available)"
    182218msgstr "Activar widget del producto paga en 4 (si disponible)"
    183219
    184 #: classes/wc-aplazame-gateway.php:304 classes/wc-aplazame-gateway.php:411
     220#: classes/wc-aplazame-gateway.php:321 classes/wc-aplazame-gateway.php:451
    185221msgid "Enable pay in 4"
    186222msgstr "Activar paga en 4"
    187223
    188 #: classes/wc-aplazame-gateway.php:308
     224#: classes/wc-aplazame-gateway.php:325
    189225msgid "Border"
    190226msgstr "Marco"
    191227
    192 #: classes/wc-aplazame-gateway.php:309
    193 msgid "Show border in product widget (only new widget)"
    194 msgstr "Mostrar marco en el widget del producto (sólo nuevo widget)"
    195 
    196 #: classes/wc-aplazame-gateway.php:310
     228#: classes/wc-aplazame-gateway.php:326
     229msgid "Show border in product widget (only v4)"
     230msgstr "Mostrar marco en el widget del producto (sólo v4)"
     231
     232#: classes/wc-aplazame-gateway.php:327
    197233msgid "Show border"
    198234msgstr "Mostrar marco"
    199235
    200 #: classes/wc-aplazame-gateway.php:314 classes/wc-aplazame-gateway.php:415
     236#: classes/wc-aplazame-gateway.php:331 classes/wc-aplazame-gateway.php:455
    201237msgid "Enter maximum instalment"
    202238msgstr "Introducir cuota máxima"
    203239
    204 #: classes/wc-aplazame-gateway.php:315 classes/wc-aplazame-gateway.php:416
     240#: classes/wc-aplazame-gateway.php:332 classes/wc-aplazame-gateway.php:456
    205241msgid ""
    206242"Allow the user to manually enter the maximum instalment they want to pay "
    207 "(only new widget)"
     243"(only v4)"
    208244msgstr ""
    209245"Permitir al usuario introducir manualmente la cuota máxima que desea pagar "
    210 "(sólo nuevo widget)"
    211 
    212 #: classes/wc-aplazame-gateway.php:316 classes/wc-aplazame-gateway.php:417
     246"(sólo v4)"
     247
     248#: classes/wc-aplazame-gateway.php:333 classes/wc-aplazame-gateway.php:457
    213249msgid "Allow the user to manually enter the maximum instalment"
    214250msgstr "Permitir al usuario introducir manualmente la cuota máxima"
    215251
    216 #: classes/wc-aplazame-gateway.php:322 classes/wc-aplazame-gateway.php:423
     252#: classes/wc-aplazame-gateway.php:337 classes/wc-aplazame-gateway.php:461
     253msgid "Layout"
     254msgstr "Disposición"
     255
     256#: classes/wc-aplazame-gateway.php:338
     257msgid "Layout of product widget (only v4)"
     258msgstr "Disposición del widget del producto (sólo v4)"
     259
     260#: classes/wc-aplazame-gateway.php:347 classes/wc-aplazame-gateway.php:471
     261msgid "Alignment"
     262msgstr "Alineación"
     263
     264#: classes/wc-aplazame-gateway.php:348
     265msgid "Product widget alignment (only v4/v5)"
     266msgstr "Alineación del widget del producto (sólo v4/v5)"
     267
     268#: classes/wc-aplazame-gateway.php:350 classes/wc-aplazame-gateway.php:474
     269msgid "Left"
     270msgstr "Izquierda"
     271
     272#: classes/wc-aplazame-gateway.php:351 classes/wc-aplazame-gateway.php:475
     273msgid "Center"
     274msgstr "Centro"
     275
     276#: classes/wc-aplazame-gateway.php:352 classes/wc-aplazame-gateway.php:476
     277msgid "Right"
     278msgstr "Derecha"
     279
     280#: classes/wc-aplazame-gateway.php:360 classes/wc-aplazame-gateway.php:484
    217281msgid "Primary color"
    218282msgstr "Color principal"
    219283
    220 #: classes/wc-aplazame-gateway.php:323
    221 msgid "Primary color hexadecimal code for product widget (only new widget)"
    222 msgstr ""
    223 "Código hexadecimal del color principal para el widget del producto (sólo "
    224 "nuevo widget)"
    225 
    226 #: classes/wc-aplazame-gateway.php:329 classes/wc-aplazame-gateway.php:430
    227 msgid "Layout"
    228 msgstr "Disposición"
    229 
    230 #: classes/wc-aplazame-gateway.php:330
    231 msgid "Layout of product widget (only new widget)"
    232 msgstr "Disposición del widget del producto (sólo nuevo widget)"
    233 
    234 #: classes/wc-aplazame-gateway.php:339 classes/wc-aplazame-gateway.php:440
    235 msgid "Alignment"
    236 msgstr "Alineación"
    237 
    238 #: classes/wc-aplazame-gateway.php:340
    239 msgid "Product widget alignment (only new widget)"
    240 msgstr "Alineación del widget del producto (sólo nuevo widget)"
    241 
    242 #: classes/wc-aplazame-gateway.php:342 classes/wc-aplazame-gateway.php:443
    243 msgid "Left"
    244 msgstr "Izquierda"
    245 
    246 #: classes/wc-aplazame-gateway.php:343 classes/wc-aplazame-gateway.php:444
    247 msgid "Center"
    248 msgstr "Centro"
    249 
    250 #: classes/wc-aplazame-gateway.php:344 classes/wc-aplazame-gateway.php:445
    251 msgid "Right"
    252 msgstr "Derecha"
    253 
    254 #: classes/wc-aplazame-gateway.php:350
     284#: classes/wc-aplazame-gateway.php:361
     285msgid "Primary color hexadecimal code for product widget (only v4)"
     286msgstr "Código hexadecimal del color principal para el widget del producto (sólo v4)"
     287
     288#: classes/wc-aplazame-gateway.php:367
    255289msgid "Product quantity CSS selector"
    256290msgstr "Selector CSS del número de unidades del producto"
    257291
    258 #: classes/wc-aplazame-gateway.php:351
     292#: classes/wc-aplazame-gateway.php:368
    259293msgid "CSS selector pointing to product quantity"
    260294msgstr "Selector CSS para obtener la cantidad de producto"
    261295
    262 #: classes/wc-aplazame-gateway.php:356
     296#: classes/wc-aplazame-gateway.php:373
    263297msgid "Product price CSS selector"
    264298msgstr "Selector CSS del precio del producto"
    265299
    266 #: classes/wc-aplazame-gateway.php:357
     300#: classes/wc-aplazame-gateway.php:374
    267301msgid "CSS selector pointing to product price"
    268302msgstr "Selector CSS para obtener el precio del producto"
    269303
    270 #: classes/wc-aplazame-gateway.php:362
     304#: classes/wc-aplazame-gateway.php:379
    271305msgid "Variable product price CSS selector"
    272306msgstr "Selector CSS del precio variable del producto"
    273307
    274 #: classes/wc-aplazame-gateway.php:363
     308#: classes/wc-aplazame-gateway.php:380
    275309msgid "CSS selector pointing to variable product price"
    276310msgstr "Selector CSS para obtener el precio variable del producto"
    277311
    278 #: classes/wc-aplazame-gateway.php:373
     312#: classes/wc-aplazame-gateway.php:390
    279313msgid "Cart widget"
    280314msgstr "Widget del carrito"
    281315
    282 #: classes/wc-aplazame-gateway.php:380
     316#: classes/wc-aplazame-gateway.php:397
     317msgid "Select your desired version for cart widget"
     318msgstr "Elige la versión deseada para el widget del carrito"
     319
     320#: classes/wc-aplazame-gateway.php:408
    283321msgid "Widget place on cart page"
    284322msgstr "Lugar del widget en la página del carrito"
    285323
    286 #: classes/wc-aplazame-gateway.php:383
     324#: classes/wc-aplazame-gateway.php:411
    287325msgid "Before cart totals"
    288326msgstr "Antes del total"
    289327
    290 #: classes/wc-aplazame-gateway.php:384
     328#: classes/wc-aplazame-gateway.php:412
    291329msgid "After cart totals"
    292330msgstr "Después del total"
    293331
    294 #: classes/wc-aplazame-gateway.php:392
     332#: classes/wc-aplazame-gateway.php:420
    295333msgid "Number of default instalments in cart widget"
    296334msgstr "Número de cuotas por defecto en el widget del carrito"
    297335
    298 #: classes/wc-aplazame-gateway.php:398
     336#: classes/wc-aplazame-gateway.php:426
     337msgid "Show slider in cart widget (only v5)"
     338msgstr "Muestra la barra deslizante para el widget del carrito (sólo v5)"
     339
     340#: classes/wc-aplazame-gateway.php:432
     341msgid "Reduce size of cart widget (only v5)"
     342msgstr "Reduce el tamaño para el widget del carrito (sólo v5)"
     343
     344#: classes/wc-aplazame-gateway.php:438
    299345msgid "Show downpayment info in cart widget"
    300346msgstr "Mostrar pago inicial en el widget del carrito"
    301347
    302 #: classes/wc-aplazame-gateway.php:404
     348#: classes/wc-aplazame-gateway.php:444
    303349msgid "Show legal notice in cart widget"
    304350msgstr "Mostrar texto legal en el widget del carrito"
    305351
    306 #: classes/wc-aplazame-gateway.php:410
     352#: classes/wc-aplazame-gateway.php:450
    307353msgid "Enable cart widget pay in 4 (if available)"
    308354msgstr "Activar widget del carrito paga en 4 (si disponible)"
    309355
    310 #: classes/wc-aplazame-gateway.php:424
    311 msgid "Primary color hexadecimal code for cart widget (only new widget)"
    312 msgstr ""
    313 "Código hexadecimal del color principal para el widget del carrito (sólo "
    314 "nuevo widget)"
    315 
    316 #: classes/wc-aplazame-gateway.php:431
    317 msgid "Layout of cart widget (only new widget)"
    318 msgstr "Disposición del widget del carrito (sólo nuevo widget)"
    319 
    320 #: classes/wc-aplazame-gateway.php:441
    321 msgid "Cart widget alignment (only new widget)"
    322 msgstr "Alineación del widget del carrito (sólo nuevo widget)"
    323 
    324 #: classes/wc-aplazame-gateway.php:452
     356#: classes/wc-aplazame-gateway.php:462
     357msgid "Layout of cart widget (only v4)"
     358msgstr "Disposición del widget del carrito (sólo v4)"
     359
     360#: classes/wc-aplazame-gateway.php:472
     361msgid "Cart widget alignment (only v4/v5)"
     362msgstr "Alineación del widget del carrito (sólo v4/v5)"
     363
     364#: classes/wc-aplazame-gateway.php:485
     365msgid "Primary color hexadecimal code for cart widget (only v4)"
     366msgstr "Código hexadecimal del color principal para el widget del carrito (sólo v4)"
     367
     368#: classes/wc-aplazame-gateway.php:492
    325369msgid "Button"
    326370msgstr "Botón"
    327371
    328 #: classes/wc-aplazame-gateway.php:458
     372#: classes/wc-aplazame-gateway.php:498
    329373msgid "Button Selector"
    330374msgstr "Selector del botón"
    331375
    332 #: classes/wc-aplazame-gateway.php:459
     376#: classes/wc-aplazame-gateway.php:499
    333377msgid "Aplazame Button CSS Selector"
    334378msgstr "Selector CSS del botón de pago con Aplazame"
    335379
    336 #: classes/wc-aplazame-gateway.php:467
     380#: classes/wc-aplazame-gateway.php:507
    337381msgid "Button Image"
    338382msgstr "Imagen del botón"
    339383
    340 #: classes/wc-aplazame-gateway.php:468
     384#: classes/wc-aplazame-gateway.php:508
    341385msgid "Aplazame Button Image that you want to show"
    342386msgstr "Imagen del botón de pago con Aplazame que quieres mostrar"
  • aplazame/trunk/i18n/languages/aplazame.pot

    r3095046 r3150724  
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: Aplazame v4.0.2\n"
     9"Project-Id-Version: Aplazame v4.1.1\n"
    1010"Report-Msgid-Bugs-To: https://github.com/aplazame/woocommerce\n"
    11 "POT-Creation-Date: 2024-05-30 10:53+0200\n"
     11"POT-Creation-Date: 2024-09-12 12:13+0200\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    8989msgstr ""
    9090
    91 #: classes/wc-aplazame-gateway.php:238
    92 msgid "Use widget legacy instead new widget"
    93 msgstr ""
    94 
    95 #: classes/wc-aplazame-gateway.php:239
    96 msgid "Turn on widget legacy"
     91#: classes/wc-aplazame-gateway.php:236
     92msgid "Payment method title and description"
    9793msgstr ""
    9894
    9995#: classes/wc-aplazame-gateway.php:242
    100 msgid "Payment method title and description"
     96msgid "Title"
     97msgstr ""
     98
     99#: classes/wc-aplazame-gateway.php:243
     100msgid "Payment method title"
    101101msgstr ""
    102102
    103103#: classes/wc-aplazame-gateway.php:248
    104 msgid "Title"
     104msgid "Description"
    105105msgstr ""
    106106
    107107#: classes/wc-aplazame-gateway.php:249
    108 msgid "Payment method title"
    109 msgstr ""
    110 
    111 #: classes/wc-aplazame-gateway.php:254
    112 msgid "Description"
    113 msgstr ""
    114 
    115 #: classes/wc-aplazame-gateway.php:255
    116108msgid "Payment method description"
    117109msgstr ""
    118110
    119 #: classes/wc-aplazame-gateway.php:265
     111#: classes/wc-aplazame-gateway.php:259
    120112msgid "Product widget"
    121113msgstr ""
    122114
    123 #: classes/wc-aplazame-gateway.php:271 classes/wc-aplazame-gateway.php:379
     115#: classes/wc-aplazame-gateway.php:265 classes/wc-aplazame-gateway.php:396
     116msgid "Widget version"
     117msgstr ""
     118
     119#: classes/wc-aplazame-gateway.php:266
     120msgid "Select your desired version for product widget"
     121msgstr ""
     122
     123#: classes/wc-aplazame-gateway.php:268 classes/wc-aplazame-gateway.php:399
     124msgid "v3"
     125msgstr ""
     126
     127#: classes/wc-aplazame-gateway.php:269 classes/wc-aplazame-gateway.php:400
     128msgid "v4"
     129msgstr ""
     130
     131#: classes/wc-aplazame-gateway.php:270 classes/wc-aplazame-gateway.php:401
     132msgid "v5"
     133msgstr ""
     134
     135#: classes/wc-aplazame-gateway.php:276 classes/wc-aplazame-gateway.php:407
    124136msgid "Place to show"
    125137msgstr ""
    126138
    127 #: classes/wc-aplazame-gateway.php:272
     139#: classes/wc-aplazame-gateway.php:277
    128140msgid "Widget place on product page"
    129141msgstr ""
    130142
    131 #: classes/wc-aplazame-gateway.php:274 classes/wc-aplazame-gateway.php:382
     143#: classes/wc-aplazame-gateway.php:279 classes/wc-aplazame-gateway.php:410
    132144msgid "~ Not show ~"
    133145msgstr ""
    134146
    135 #: classes/wc-aplazame-gateway.php:275
     147#: classes/wc-aplazame-gateway.php:280
    136148msgid "Before add to cart button"
    137149msgstr ""
    138150
    139 #: classes/wc-aplazame-gateway.php:276
     151#: classes/wc-aplazame-gateway.php:281
    140152msgid "After add to cart button"
    141153msgstr ""
    142154
    143 #: classes/wc-aplazame-gateway.php:277
     155#: classes/wc-aplazame-gateway.php:282
    144156msgid "After summary"
    145157msgstr ""
    146158
    147 #: classes/wc-aplazame-gateway.php:284 classes/wc-aplazame-gateway.php:391
     159#: classes/wc-aplazame-gateway.php:289 classes/wc-aplazame-gateway.php:419
    148160msgid "Default instalments"
    149161msgstr ""
    150162
    151 #: classes/wc-aplazame-gateway.php:285
     163#: classes/wc-aplazame-gateway.php:290
    152164msgid "Number of default instalments in product widget"
    153165msgstr ""
    154166
    155 #: classes/wc-aplazame-gateway.php:286 classes/wc-aplazame-gateway.php:393
     167#: classes/wc-aplazame-gateway.php:291 classes/wc-aplazame-gateway.php:421
    156168msgid "Optional (only numbers)"
    157169msgstr ""
    158170
    159 #: classes/wc-aplazame-gateway.php:290 classes/wc-aplazame-gateway.php:397
     171#: classes/wc-aplazame-gateway.php:295 classes/wc-aplazame-gateway.php:425
     172msgid "Slider"
     173msgstr ""
     174
     175#: classes/wc-aplazame-gateway.php:296
     176msgid "Show slider in product widget (only v5)"
     177msgstr ""
     178
     179#: classes/wc-aplazame-gateway.php:297 classes/wc-aplazame-gateway.php:427
     180msgid "Show slider info"
     181msgstr ""
     182
     183#: classes/wc-aplazame-gateway.php:301 classes/wc-aplazame-gateway.php:431
     184msgid "Small size"
     185msgstr ""
     186
     187#: classes/wc-aplazame-gateway.php:302
     188msgid "Reduce size of product widget (only v5)"
     189msgstr ""
     190
     191#: classes/wc-aplazame-gateway.php:303 classes/wc-aplazame-gateway.php:433
     192msgid "Reduce size"
     193msgstr ""
     194
     195#: classes/wc-aplazame-gateway.php:307 classes/wc-aplazame-gateway.php:437
    160196msgid "Downpayment info"
    161197msgstr ""
    162198
    163 #: classes/wc-aplazame-gateway.php:291
     199#: classes/wc-aplazame-gateway.php:308
    164200msgid "Show downpayment info in product widget"
    165201msgstr ""
    166202
    167 #: classes/wc-aplazame-gateway.php:292 classes/wc-aplazame-gateway.php:399
     203#: classes/wc-aplazame-gateway.php:309 classes/wc-aplazame-gateway.php:439
    168204msgid "Show downpayment info"
    169205msgstr ""
    170206
    171 #: classes/wc-aplazame-gateway.php:296 classes/wc-aplazame-gateway.php:403
     207#: classes/wc-aplazame-gateway.php:313 classes/wc-aplazame-gateway.php:443
    172208msgid "Legal notice"
    173209msgstr ""
    174210
    175 #: classes/wc-aplazame-gateway.php:297
     211#: classes/wc-aplazame-gateway.php:314
    176212msgid "Show legal notice in product widget"
    177213msgstr ""
    178214
    179 #: classes/wc-aplazame-gateway.php:298 classes/wc-aplazame-gateway.php:405
     215#: classes/wc-aplazame-gateway.php:315 classes/wc-aplazame-gateway.php:445
    180216msgid "Show legal notice"
    181217msgstr ""
    182218
    183 #: classes/wc-aplazame-gateway.php:302 classes/wc-aplazame-gateway.php:409
     219#: classes/wc-aplazame-gateway.php:319 classes/wc-aplazame-gateway.php:449
    184220msgid "Pay in 4"
    185221msgstr ""
    186222
    187 #: classes/wc-aplazame-gateway.php:303
     223#: classes/wc-aplazame-gateway.php:320
    188224msgid "Enable product widget pay in 4 (if available)"
    189225msgstr ""
    190226
    191 #: classes/wc-aplazame-gateway.php:304 classes/wc-aplazame-gateway.php:411
     227#: classes/wc-aplazame-gateway.php:321 classes/wc-aplazame-gateway.php:451
    192228msgid "Enable pay in 4"
    193229msgstr ""
    194230
    195 #: classes/wc-aplazame-gateway.php:308
     231#: classes/wc-aplazame-gateway.php:325
    196232msgid "Border"
    197233msgstr ""
    198234
    199 #: classes/wc-aplazame-gateway.php:309
    200 msgid "Show border in product widget (only new widget)"
    201 msgstr ""
    202 
    203 #: classes/wc-aplazame-gateway.php:310
     235#: classes/wc-aplazame-gateway.php:326
     236msgid "Show border in product widget (only v4)"
     237msgstr ""
     238
     239#: classes/wc-aplazame-gateway.php:327
    204240msgid "Show border"
    205241msgstr ""
    206242
    207 #: classes/wc-aplazame-gateway.php:314 classes/wc-aplazame-gateway.php:415
     243#: classes/wc-aplazame-gateway.php:331 classes/wc-aplazame-gateway.php:455
    208244msgid "Enter maximum instalment"
    209245msgstr ""
    210246
    211 #: classes/wc-aplazame-gateway.php:315 classes/wc-aplazame-gateway.php:416
     247#: classes/wc-aplazame-gateway.php:332 classes/wc-aplazame-gateway.php:456
    212248msgid ""
    213249"Allow the user to manually enter the maximum instalment they want to pay "
    214 "(only new widget)"
    215 msgstr ""
    216 
    217 #: classes/wc-aplazame-gateway.php:316 classes/wc-aplazame-gateway.php:417
     250"(only v4)"
     251msgstr ""
     252
     253#: classes/wc-aplazame-gateway.php:333 classes/wc-aplazame-gateway.php:457
    218254msgid "Allow the user to manually enter the maximum instalment"
    219255msgstr ""
    220256
    221 #: classes/wc-aplazame-gateway.php:322 classes/wc-aplazame-gateway.php:423
     257#: classes/wc-aplazame-gateway.php:337 classes/wc-aplazame-gateway.php:461
     258msgid "Layout"
     259msgstr ""
     260
     261#: classes/wc-aplazame-gateway.php:338
     262msgid "Layout of product widget (only v4)"
     263msgstr ""
     264
     265#: classes/wc-aplazame-gateway.php:347 classes/wc-aplazame-gateway.php:471
     266msgid "Alignment"
     267msgstr ""
     268
     269#: classes/wc-aplazame-gateway.php:348
     270msgid "Product widget alignment (only v4/v5)"
     271msgstr ""
     272
     273#: classes/wc-aplazame-gateway.php:350 classes/wc-aplazame-gateway.php:474
     274msgid "Left"
     275msgstr ""
     276
     277#: classes/wc-aplazame-gateway.php:351 classes/wc-aplazame-gateway.php:475
     278msgid "Center"
     279msgstr ""
     280
     281#: classes/wc-aplazame-gateway.php:352 classes/wc-aplazame-gateway.php:476
     282msgid "Right"
     283msgstr ""
     284
     285#: classes/wc-aplazame-gateway.php:360 classes/wc-aplazame-gateway.php:484
    222286msgid "Primary color"
    223287msgstr ""
    224288
    225 #: classes/wc-aplazame-gateway.php:323
    226 msgid "Primary color hexadecimal code for product widget (only new widget)"
    227 msgstr ""
    228 
    229 #: classes/wc-aplazame-gateway.php:329 classes/wc-aplazame-gateway.php:430
    230 msgid "Layout"
    231 msgstr ""
    232 
    233 #: classes/wc-aplazame-gateway.php:330
    234 msgid "Layout of product widget (only new widget)"
    235 msgstr ""
    236 
    237 #: classes/wc-aplazame-gateway.php:339 classes/wc-aplazame-gateway.php:440
    238 msgid "Alignment"
    239 msgstr ""
    240 
    241 #: classes/wc-aplazame-gateway.php:340
    242 msgid "Product widget alignment (only new widget)"
    243 msgstr ""
    244 
    245 #: classes/wc-aplazame-gateway.php:342 classes/wc-aplazame-gateway.php:443
    246 msgid "Left"
    247 msgstr ""
    248 
    249 #: classes/wc-aplazame-gateway.php:343 classes/wc-aplazame-gateway.php:444
    250 msgid "Center"
    251 msgstr ""
    252 
    253 #: classes/wc-aplazame-gateway.php:344 classes/wc-aplazame-gateway.php:445
    254 msgid "Right"
    255 msgstr ""
    256 
    257 #: classes/wc-aplazame-gateway.php:350
     289#: classes/wc-aplazame-gateway.php:361
     290msgid "Primary color hexadecimal code for product widget (only v4)"
     291msgstr ""
     292
     293#: classes/wc-aplazame-gateway.php:367
    258294msgid "Product quantity CSS selector"
    259295msgstr ""
    260296
    261 #: classes/wc-aplazame-gateway.php:351
     297#: classes/wc-aplazame-gateway.php:368
    262298msgid "CSS selector pointing to product quantity"
    263299msgstr ""
    264300
    265 #: classes/wc-aplazame-gateway.php:356
     301#: classes/wc-aplazame-gateway.php:373
    266302msgid "Product price CSS selector"
    267303msgstr ""
    268304
    269 #: classes/wc-aplazame-gateway.php:357
     305#: classes/wc-aplazame-gateway.php:374
    270306msgid "CSS selector pointing to product price"
    271307msgstr ""
    272308
    273 #: classes/wc-aplazame-gateway.php:362
     309#: classes/wc-aplazame-gateway.php:379
    274310msgid "Variable product price CSS selector"
    275311msgstr ""
    276312
    277 #: classes/wc-aplazame-gateway.php:363
     313#: classes/wc-aplazame-gateway.php:380
    278314msgid "CSS selector pointing to variable product price"
    279315msgstr ""
    280316
    281 #: classes/wc-aplazame-gateway.php:373
     317#: classes/wc-aplazame-gateway.php:390
    282318msgid "Cart widget"
    283319msgstr ""
    284320
    285 #: classes/wc-aplazame-gateway.php:380
     321#: classes/wc-aplazame-gateway.php:397
     322msgid "Select your desired version for cart widget"
     323msgstr ""
     324
     325#: classes/wc-aplazame-gateway.php:408
    286326msgid "Widget place on cart page"
    287327msgstr ""
    288328
    289 #: classes/wc-aplazame-gateway.php:383
     329#: classes/wc-aplazame-gateway.php:411
    290330msgid "Before cart totals"
    291331msgstr ""
    292332
    293 #: classes/wc-aplazame-gateway.php:384
     333#: classes/wc-aplazame-gateway.php:412
    294334msgid "After cart totals"
    295335msgstr ""
    296336
    297 #: classes/wc-aplazame-gateway.php:392
     337#: classes/wc-aplazame-gateway.php:420
    298338msgid "Number of default instalments in cart widget"
    299339msgstr ""
    300340
    301 #: classes/wc-aplazame-gateway.php:398
     341#: classes/wc-aplazame-gateway.php:426
     342msgid "Show slider in cart widget (only v5)"
     343msgstr ""
     344
     345#: classes/wc-aplazame-gateway.php:432
     346msgid "Reduce size of cart widget (only v5)"
     347msgstr ""
     348
     349#: classes/wc-aplazame-gateway.php:438
    302350msgid "Show downpayment info in cart widget"
    303351msgstr ""
    304352
    305 #: classes/wc-aplazame-gateway.php:404
     353#: classes/wc-aplazame-gateway.php:444
    306354msgid "Show legal notice in cart widget"
    307355msgstr ""
    308356
    309 #: classes/wc-aplazame-gateway.php:410
     357#: classes/wc-aplazame-gateway.php:450
    310358msgid "Enable cart widget pay in 4 (if available)"
    311359msgstr ""
    312360
    313 #: classes/wc-aplazame-gateway.php:424
    314 msgid "Primary color hexadecimal code for cart widget (only new widget)"
    315 msgstr ""
    316 
    317 #: classes/wc-aplazame-gateway.php:431
    318 msgid "Layout of cart widget (only new widget)"
    319 msgstr ""
    320 
    321 #: classes/wc-aplazame-gateway.php:441
    322 msgid "Cart widget alignment (only new widget)"
    323 msgstr ""
    324 
    325 #: classes/wc-aplazame-gateway.php:452
     361#: classes/wc-aplazame-gateway.php:462
     362msgid "Layout of cart widget (only v4)"
     363msgstr ""
     364
     365#: classes/wc-aplazame-gateway.php:472
     366msgid "Cart widget alignment (only v4/v5)"
     367msgstr ""
     368
     369#: classes/wc-aplazame-gateway.php:485
     370msgid "Primary color hexadecimal code for cart widget (only v4)"
     371msgstr ""
     372
     373#: classes/wc-aplazame-gateway.php:492
    326374msgid "Button"
    327375msgstr ""
    328376
    329 #: classes/wc-aplazame-gateway.php:458
     377#: classes/wc-aplazame-gateway.php:498
    330378msgid "Button Selector"
    331379msgstr ""
    332380
    333 #: classes/wc-aplazame-gateway.php:459
     381#: classes/wc-aplazame-gateway.php:499
    334382msgid "Aplazame Button CSS Selector"
    335383msgstr ""
    336384
    337 #: classes/wc-aplazame-gateway.php:467
     385#: classes/wc-aplazame-gateway.php:507
    338386msgid "Button Image"
    339387msgstr ""
    340388
    341 #: classes/wc-aplazame-gateway.php:468
     389#: classes/wc-aplazame-gateway.php:508
    342390msgid "Aplazame Button Image that you want to show"
    343391msgstr ""
  • aplazame/trunk/templates/widgets/cart.php

    r2943528 r3150724  
    1414
    1515<div
    16     <?php if ( $aplazame->settings['widget_legacy'] === 'yes' ) : ?>
     16    <?php if ( $aplazame->settings['cart_widget_ver'] === 'v3' ) : ?>
    1717        data-aplazame-widget-instalments=""
    1818        data-view="cart"
    19     <?php else : ?>
     19    <?php elseif ( $aplazame->settings['cart_widget_ver'] === 'v4' ) : ?>
    2020        data-aplazame-widget-instalments="v4"
    2121        data-type="cart"
     
    2323        data-option-primary-color="<?php echo esc_attr( $aplazame->settings['cart_widget_primary_color'] ); ?>"
    2424        data-option-layout="<?php echo esc_attr( $aplazame->settings['cart_widget_layout'] ); ?>"
     25        data-option-align="<?php echo esc_attr( $aplazame->settings['cart_widget_align'] ); ?>"
     26    <?php else : ?>
     27        data-aplazame-widget-instalments="v5"
     28        data-type="cart"
     29        data-option-slider="<?php echo esc_attr( $aplazame->settings['cart_slider'] === 'yes' ? 'true' : 'false' ); ?>"
     30        data-option-small-size="<?php echo esc_attr( $aplazame->settings['cart_small_size'] === 'yes' ? 'true' : 'false' ); ?>"
    2531        data-option-align="<?php echo esc_attr( $aplazame->settings['cart_widget_align'] ); ?>"
    2632    <?php endif; ?>
  • aplazame/trunk/templates/widgets/product.php

    r2943528 r3150724  
    3434
    3535<div
    36     <?php if ( $aplazame->settings['widget_legacy'] === 'yes' ) : ?>
     36    <?php if ( $aplazame->settings['product_widget_ver'] === 'v3' ) : ?>
    3737        data-aplazame-widget-instalments=""
    3838        data-view="product"
    39     <?php else : ?>
     39    <?php elseif ( $aplazame->settings['product_widget_ver'] === 'v4' ) : ?>
    4040        data-aplazame-widget-instalments="v4"
    4141        data-type="product"
     
    4545        data-option-align="<?php echo esc_attr( $aplazame->settings['product_widget_align'] ); ?>"
    4646        data-option-border-product="<?php echo esc_attr( $aplazame->settings['product_widget_border'] === 'yes' ? 'true' : 'false' ); ?>"
     47    <?php else : ?>
     48        data-aplazame-widget-instalments="v5"
     49        data-type="product"
     50        data-option-slider="<?php echo esc_attr( $aplazame->settings['product_slider'] === 'yes' ? 'true' : 'false' ); ?>"
     51        data-option-small-size="<?php echo esc_attr( $aplazame->settings['product_small_size'] === 'yes' ? 'true' : 'false' ); ?>"
     52        data-option-align="<?php echo esc_attr( $aplazame->settings['product_widget_align'] ); ?>"
    4753    <?php endif; ?>
    4854    <?php if ( empty( $price_selector ) ) : ?>
Note: See TracChangeset for help on using the changeset viewer.