Changeset 3288528
- Timestamp:
- 05/06/2025 02:59:51 PM (11 months ago)
- Location:
- wc-koin-official/trunk
- Files:
-
- 23 edited
-
app/Controllers/Checkout/CheckoutFieldManager.php (modified) (1 diff)
-
app/Controllers/Gateways/Gateway.php (modified) (3 diffs)
-
app/Controllers/Menus/Installments.php (modified) (1 diff)
-
app/Controllers/Render/CreditCheckout.php (modified) (5 diffs)
-
app/Helpers/Config.php (modified) (1 diff)
-
composer.json (modified) (1 diff)
-
languages/wc-koin-official-es_AR.mo (modified) (previous)
-
languages/wc-koin-official-es_AR.po (modified) (2 diffs)
-
languages/wc-koin-official-es_CL.mo (modified) (previous)
-
languages/wc-koin-official-es_CL.po (modified) (2 diffs)
-
languages/wc-koin-official-es_CO.mo (modified) (previous)
-
languages/wc-koin-official-es_CO.po (modified) (2 diffs)
-
languages/wc-koin-official-es_ES.mo (modified) (previous)
-
languages/wc-koin-official-es_ES.po (modified) (2 diffs)
-
languages/wc-koin-official-es_MX.mo (modified) (previous)
-
languages/wc-koin-official-es_MX.po (modified) (2 diffs)
-
languages/wc-koin-official-es_PE.mo (modified) (previous)
-
languages/wc-koin-official-es_PE.po (modified) (2 diffs)
-
languages/wc-koin-official-pt_BR.mo (modified) (previous)
-
languages/wc-koin-official-pt_BR.po (modified) (3 diffs)
-
languages/wc-koin-official.pot (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
wc-koin-official.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wc-koin-official/trunk/app/Controllers/Checkout/CheckoutFieldManager.php
r3279008 r3288528 9 9 if (get_option('wc_koin_settings_override_number_fields') !== 'yes') { 10 10 add_filter('woocommerce_checkout_fields', [$this, 'add_number_field']); 11 add_filter('woocommerce_checkout_fields', [$this, 'add_custom_checkout_fields']);12 11 } 13 12 14 13 if (get_option('wc_koin_settings_override_document_fields') !== 'yes') { 14 add_filter('woocommerce_checkout_fields', [$this, 'add_custom_checkout_fields']); 15 add_filter('woocommerce_get_country_locale', [$this, 'manage_country_locale']); 15 16 add_filter('woocommerce_form_field', [$this, 'remove_optional']); 16 add_filter('woocommerce_get_country_locale', [$this, 'manage_country_locale']);17 17 } 18 18 19 add_action('woocommerce_checkout_update_order_meta', [$this, 'save_custom_checkout_fields']); 19 20 } -
wc-koin-official/trunk/app/Controllers/Gateways/Gateway.php
r3279008 r3288528 611 611 612 612 $address = []; 613 614 613 if ($type === 'shipping' && $this->validate_address_fields($shipping)) { 615 614 $address = $shipping; … … 681 680 $person_type = $this->get_person($wc_order); 682 681 683 684 682 $name = "$billing_first_name $billing_last_name"; 685 683 $mail = $wc_order->get_billing_email(); … … 738 736 case '2': 739 737 $person = 'cnpj'; 740 $document = preg_replace('/ [^0-9]/', '', $order->get_meta($document_fields_by_country[$country]['cnpj'] ?? ''));738 $document = preg_replace('/\D/', '', $order->get_meta($document_fields_by_country[$country]['cnpj'] ?? '')); 741 739 break; 742 740 case '1': 743 741 $person = 'cpf'; 744 $document = preg_replace('/ [^0-9]/', '', $order->get_meta($document_fields_by_country[$country]['cpf'] ?? ''));742 $document = preg_replace('/\D/', '', $order->get_meta($document_fields_by_country[$country]['cpf'] ?? '')); 745 743 break; 746 744 default: -
wc-koin-official/trunk/app/Controllers/Menus/Installments.php
r3279008 r3288528 51 51 'title' => __('Installment Display', 'wc-koin-official'), 52 52 'type' => 'text', 53 'desc' => __('Define how the installments will be displayed on checkout. Leave the field blank for default display. <br> You can use the following variables: {installments}, {value}, {total_value}, {interest}', 'wc-koin-official'),53 'desc' => __('Define how the installments will be displayed on checkout. Leave the field blank for default display.', 'wc-koin-official'), 54 54 'id' => 'wc_koin_installment_display' 55 55 ], -
wc-koin-official/trunk/app/Controllers/Render/CreditCheckout.php
r3279008 r3288528 44 44 if ($hasOverrideRules) { 45 45 $overrideRuleInstallments = []; 46 46 47 47 foreach ($rules as $rule) { 48 48 if ($rule->overrideRules) { … … 51 51 } 52 52 } 53 53 54 54 return $overrideRuleInstallments; 55 55 } else { … … 58 58 $installments = array_replace_recursive($installments, $ruleInstallments); 59 59 } 60 60 61 61 return $installments; 62 62 } … … 141 141 $currency = html_entity_decode(get_woocommerce_currency_symbol(), ENT_QUOTES, 'UTF-8'); 142 142 143 if ($rule && isset($rule->installmentDisplay) && !empty($rule->installmentDisplay)) {144 $customFormat = $rule->installmentDisplay;145 146 $replacements = [147 '{installments}' => $installment,148 '{value}' => $currency . $value,149 '{total_value}' => $currency . $total,150 '{interest}' => $rateText,151 ];152 153 return str_replace(array_keys($replacements), array_values($replacements), $customFormat);154 }155 156 143 $format = $gateway->get_option('installments_show_mode'); 157 144 switch ($format) { … … 168 155 $text = "$installment x $currency" . $value; 169 156 break; 157 } 158 159 if ($rule && isset($rule->installmentDisplay) && !empty($rule->installmentDisplay)) { 160 $customFormatText = $rule->installmentDisplay; 161 $text = $customFormatText . ' - ' . $text; 170 162 } 171 163 -
wc-koin-official/trunk/app/Helpers/Config.php
r3279008 r3288528 95 95 public static function __version() 96 96 { 97 return '1.3. 7';97 return '1.3.8'; 98 98 } 99 99 -
wc-koin-official/trunk/composer.json
r3279008 r3288528 3 3 "description": "Koin Official Payments for Woocommerce", 4 4 "type": "wordpress-plugin", 5 "version": "1.3. 7",5 "version": "1.3.8", 6 6 "license": "GPL-3.0", 7 7 "require": { -
wc-koin-official/trunk/languages/wc-koin-official-es_AR.po
r3279008 r3288528 1365 1365 msgstr "Habilite esta opción si su tienda ya tiene un campo de documento existente en el proceso de pago. Cuando está habilitado, el plugin utilizará su campo de documento existente en lugar de crear sus propios campos de documento específicos por país." 1366 1366 1367 #: app/Controllers/Menus/Settings.php:1 351367 #: app/Controllers/Menus/Settings.php:128 1368 1368 msgid "Custom document field" 1369 1369 msgstr "Campo de documento personalizado" 1370 1370 1371 #: app/Controllers/Menus/Settings.php:13 81371 #: app/Controllers/Menus/Settings.php:131 1372 1372 msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled." 1373 1373 msgstr "Ingrese la meta_key de su campo de documento existente en el proceso de pago que debe ser utilizado por Koin. Este campo es obligatorio cuando 'Sobrescribir campos de documento' está habilitado." … … 1378 1378 1379 1379 #: app/Controllers/Menus/Installments.php:53 1380 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display. <br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"1381 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada. <br> Puede usar las siguientes variables: {installments}, {value}, {total_value}, {interest}"1382 1383 #: app/Controllers/Menus/Settings.php:1 281380 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display." 1381 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada." 1382 1383 #: app/Controllers/Menus/Settings.php:135 1384 1384 msgid "Use existing street number field" 1385 msgstr "U sar campo de número de calle existente"1386 1387 #: app/Controllers/Menus/Settings.php:13 11385 msgstr "Utilizá el campo existente del número de calle." 1386 1387 #: app/Controllers/Menus/Settings.php:138 1388 1388 msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one." 1389 1389 msgstr "Habilite esta opción si su proceso de pago ya incluye un campo de número de calle. Cuando está habilitado, el plugin utilizará su campo existente en lugar de agregar uno nuevo." -
wc-koin-official/trunk/languages/wc-koin-official-es_CL.po
r3279008 r3288528 1363 1363 msgstr "Habilite esta opción si su tienda ya tiene un campo de documento existente en el proceso de pago. Cuando está habilitado, el plugin utilizará su campo de documento existente en lugar de crear sus propios campos de documento específicos por país." 1364 1364 1365 #: app/Controllers/Menus/Settings.php:1 351365 #: app/Controllers/Menus/Settings.php:128 1366 1366 msgid "Custom document field" 1367 1367 msgstr "Campo de documento personalizado" 1368 1368 1369 #: app/Controllers/Menus/Settings.php:13 81369 #: app/Controllers/Menus/Settings.php:131 1370 1370 msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled." 1371 1371 msgstr "Ingrese la meta_key de su campo de documento existente en el proceso de pago que debe ser utilizado por Koin. Este campo es obligatorio cuando 'Sobrescribir campos de documento' está habilitado." … … 1380 1380 1381 1381 #: app/Controllers/Menus/Installments.php:53 1382 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display. <br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"1383 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada. <br> Puede usar las siguientes variables: {installments}, {value}, {total_value}, {interest}"1384 1385 #: app/Controllers/Menus/Settings.php:1 281382 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display." 1383 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada." 1384 1385 #: app/Controllers/Menus/Settings.php:135 1386 1386 msgid "Use existing street number field" 1387 msgstr "U sar campo de número de calle existente"1388 1389 #: app/Controllers/Menus/Settings.php:13 11387 msgstr "Utilizá el campo existente del número de calle." 1388 1389 #: app/Controllers/Menus/Settings.php:138 1390 1390 msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one." 1391 1391 msgstr "Habilite esta opción si su checkout ya incluye un campo de número de calle. Cuando está habilitado, el plugin utilizará su campo existente en lugar de agregar uno nuevo." -
wc-koin-official/trunk/languages/wc-koin-official-es_CO.po
r3279008 r3288528 1367 1367 msgstr "Habilite esta opción si su tienda ya tiene un campo de documento existente en el proceso de pago. Cuando está habilitado, el plugin utilizará su campo de documento existente en lugar de crear sus propios campos de documento específicos por país." 1368 1368 1369 #: app/Controllers/Menus/Settings.php:1 351369 #: app/Controllers/Menus/Settings.php:128 1370 1370 msgid "Custom document field" 1371 1371 msgstr "Campo de documento personalizado" 1372 1372 1373 #: app/Controllers/Menus/Settings.php:13 81373 #: app/Controllers/Menus/Settings.php:131 1374 1374 msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled." 1375 1375 msgstr "Ingrese la meta_key de su campo de documento existente en el proceso de pago que debe ser utilizado por Koin. Este campo es obligatorio cuando 'Sobrescribir campos de documento' está habilitado." … … 1380 1380 1381 1381 #: app/Controllers/Menus/Installments.php:53 1382 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display. <br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"1383 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada. <br> Puede usar las siguientes variables: {installments}, {value}, {total_value}, {interest}"1384 1385 #: app/Controllers/Menus/Settings.php:1 281382 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display." 1383 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada." 1384 1385 #: app/Controllers/Menus/Settings.php:135 1386 1386 msgid "Use existing street number field" 1387 msgstr "U sar campo de número de calle existente"1388 1389 #: app/Controllers/Menus/Settings.php:13 11387 msgstr "Utilizá el campo existente del número de calle." 1388 1389 #: app/Controllers/Menus/Settings.php:138 1390 1390 msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one." 1391 1391 msgstr "Habilite esta opción si su proceso de pago ya incluye un campo para el número de calle. Cuando está habilitado, el plugin utilizará su campo existente en lugar de agregar uno nuevo." -
wc-koin-official/trunk/languages/wc-koin-official-es_ES.po
r3279008 r3288528 1366 1366 msgstr "Habilite esta opción si su tienda ya tiene un campo de documento existente en el proceso de pago. Cuando está habilitado, el plugin utilizará su campo de documento existente en lugar de crear sus propios campos de documento específicos por país." 1367 1367 1368 #: app/Controllers/Menus/Settings.php:1 351368 #: app/Controllers/Menus/Settings.php:128 1369 1369 msgid "Custom document field" 1370 1370 msgstr "Campo de documento personalizado" 1371 1371 1372 #: app/Controllers/Menus/Settings.php:13 81372 #: app/Controllers/Menus/Settings.php:131 1373 1373 msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled." 1374 1374 msgstr "Ingrese la meta_key de su campo de documento existente en el proceso de pago que debe ser utilizado por Koin. Este campo es obligatorio cuando 'Sobrescribir campos de documento' está habilitado." … … 1379 1379 1380 1380 #: app/Controllers/Menus/Installments.php:53 1381 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display. <br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"1382 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada. <br> Puede usar las siguientes variables: {installments}, {value}, {total_value}, {interest}"1383 1384 #: app/Controllers/Menus/Settings.php:1 281381 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display." 1382 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada." 1383 1384 #: app/Controllers/Menus/Settings.php:135 1385 1385 msgid "Use existing street number field" 1386 msgstr "U sar campo de número de calle existente"1387 1388 #: app/Controllers/Menus/Settings.php:13 11386 msgstr "Utilizá el campo existente del número de calle." 1387 1388 #: app/Controllers/Menus/Settings.php:138 1389 1389 msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one." 1390 1390 msgstr "Habilite esta opción si su proceso de pago ya incluye un campo de número de calle. Cuando está habilitado, el plugin utilizará su campo existente en lugar de agregar uno nuevo." -
wc-koin-official/trunk/languages/wc-koin-official-es_MX.po
r3279008 r3288528 1365 1365 msgstr "Habilite esta opción si su tienda ya tiene un campo de documento existente en el proceso de pago. Cuando está habilitado, el plugin utilizará su campo de documento existente en lugar de crear sus propios campos de documento específicos por país." 1366 1366 1367 #: app/Controllers/Menus/Settings.php:1 351367 #: app/Controllers/Menus/Settings.php:128 1368 1368 msgid "Custom document field" 1369 1369 msgstr "Campo de documento personalizado" 1370 1370 1371 #: app/Controllers/Menus/Settings.php:13 81371 #: app/Controllers/Menus/Settings.php:131 1372 1372 msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled." 1373 1373 msgstr "Ingrese la meta_key de su campo de documento existente en el proceso de pago que debe ser utilizado por Koin. Este campo es obligatorio cuando 'Sobrescribir campos de documento' está habilitado." … … 1378 1378 1379 1379 #: app/Controllers/Menus/Installments.php:53 1380 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display. <br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"1381 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada. <br> Puede usar las siguientes variables: {installments}, {value}, {total_value}, {interest}"1382 1383 #: app/Controllers/Menus/Settings.php:1 281380 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display." 1381 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada." 1382 1383 #: app/Controllers/Menus/Settings.php:135 1384 1384 msgid "Use existing street number field" 1385 msgstr "U sar campo de número de calle existente"1386 1387 #: app/Controllers/Menus/Settings.php:13 11385 msgstr "Utilizá el campo existente del número de calle." 1386 1387 #: app/Controllers/Menus/Settings.php:138 1388 1388 msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one." 1389 1389 msgstr "Habilite esta opción si su proceso de pago ya incluye un campo de número de calle. Cuando está habilitado, el plugin utilizará su campo existente en lugar de agregar uno nuevo." -
wc-koin-official/trunk/languages/wc-koin-official-es_PE.po
r3279008 r3288528 1365 1365 msgstr "Habilite esta opción si su tienda ya tiene un campo de documento existente en el proceso de pago. Cuando está habilitado, el plugin utilizará su campo de documento existente en lugar de crear sus propios campos de documento específicos por país." 1366 1366 1367 #: app/Controllers/Menus/Settings.php:1 351367 #: app/Controllers/Menus/Settings.php:128 1368 1368 msgid "Custom document field" 1369 1369 msgstr "Campo de documento personalizado" 1370 1370 1371 #: app/Controllers/Menus/Settings.php:13 81371 #: app/Controllers/Menus/Settings.php:131 1372 1372 msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled." 1373 1373 msgstr "Ingrese la meta_key de su campo de documento existente en el proceso de pago que debe ser utilizado por Koin. Este campo es obligatorio cuando 'Sobrescribir campos de documento' está habilitado." … … 1378 1378 1379 1379 #: app/Controllers/Menus/Installments.php:53 1380 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display. <br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"1381 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada. <br> Puede usar las siguientes variables: {installments}, {value}, {total_value}, {interest}"1382 1383 #: app/Controllers/Menus/Settings.php:1 281380 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display." 1381 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada." 1382 1383 #: app/Controllers/Menus/Settings.php:135 1384 1384 msgid "Use existing street number field" 1385 msgstr "U sar campo de número de calle existente"1386 1387 #: app/Controllers/Menus/Settings.php:13 11385 msgstr "Utilizá el campo existente del número de calle." 1386 1387 #: app/Controllers/Menus/Settings.php:138 1388 1388 msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one." 1389 1389 msgstr "Habilite esta opción si su proceso de pago ya incluye un campo de número de calle. Cuando está habilitado, el plugin utilizará su campo existente en lugar de agregar uno nuevo." -
wc-koin-official/trunk/languages/wc-koin-official-pt_BR.po
r3279008 r3288528 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Koin Official Payments 1.3. 7\n"3 "Project-Id-Version: Koin Official Payments 1.3.8\n" 4 4 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-koin-official\n" 5 5 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 1366 1366 msgstr "Ative esta opção se sua loja já possui um campo de documento existente no checkout. Quando ativado, o plugin usará seu campo de documento existente em vez de criar seus próprios campos de documento específicos por país." 1367 1367 1368 #: app/Controllers/Menus/Settings.php:1 351368 #: app/Controllers/Menus/Settings.php:128 1369 1369 msgid "Custom document field" 1370 1370 msgstr "Campo de documento personalizado" 1371 1371 1372 #: app/Controllers/Menus/Settings.php:13 81372 #: app/Controllers/Menus/Settings.php:131 1373 1373 msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled." 1374 1374 msgstr "Digite o meta_key do seu campo de documento existente no checkout que deve ser usado pela Koin. Este campo é obrigatório quando 'Substituir campos de documento' está ativado." … … 1379 1379 1380 1380 #: app/Controllers/Menus/Installments.php:53 1381 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display. <br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"1382 msgstr "Defina como as parcelas serão exibidas no checkout. Deixe o campo em branco para exibição padrão. <br> Você pode usar as seguintes variáveis: {installments}, {value}, {total_value}, {interest}"1383 1384 #: app/Controllers/Menus/Settings.php:1 281381 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display." 1382 msgstr "Defina como as parcelas serão exibidas no checkout. Deixe o campo em branco para exibição padrão." 1383 1384 #: app/Controllers/Menus/Settings.php:135 1385 1385 msgid "Use existing street number field" 1386 1386 msgstr "Usar campo de número de endereço existente" 1387 1387 1388 #: app/Controllers/Menus/Settings.php:13 11388 #: app/Controllers/Menus/Settings.php:138 1389 1389 msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one." 1390 1390 msgstr "Ative esta opção se o seu checkout já inclui um campo de número de endereço. Quando ativado, o plugin usará seu campo existente em vez de adicionar um novo." -
wc-koin-official/trunk/languages/wc-koin-official.pot
r3279008 r3288528 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Koin Official Payments 1.3. 7\n"5 "Project-Id-Version: Koin Official Payments 1.3.8\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-koin-official\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 641 641 642 642 #: app/Controllers/Menus/Installments.php:53 643 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display. <br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"643 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display." 644 644 msgstr "" 645 645 … … 934 934 msgstr "" 935 935 936 #: app/Controllers/Menus/Settings.php:135 937 msgid "Use existing street number field" 938 msgstr "" 939 940 #: app/Controllers/Menus/Settings.php:138 941 msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one." 942 msgstr "" 943 936 944 #: app/Controllers/Menus/Settings.php:128 937 msgid " Use existing street numberfield"945 msgid "Custom document field" 938 946 msgstr "" 939 947 940 948 #: app/Controllers/Menus/Settings.php:131 941 msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one."942 msgstr ""943 944 #: app/Controllers/Menus/Settings.php:135945 msgid "Custom document field"946 msgstr ""947 948 #: app/Controllers/Menus/Settings.php:138949 949 msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled." 950 950 msgstr "" -
wc-koin-official/trunk/readme.txt
r3279008 r3288528 4 4 Requires at least: 5.0 5 5 Tested up to: 6.6 6 Stable tag: 1.3. 76 Stable tag: 1.3.8 7 7 Requires PHP: 7.4 8 8 License: GPLv3 … … 42 42 43 43 == Changelog == 44 = 1.3.8 = - 2025-05-06 45 - Tweaks to input validation rules 46 - Fixes to translation 47 - Standardized installment display; custom placeholders no longer supported. 48 49 44 50 = 1.3.7 = - 2025-04-17 45 51 - Added toggle button to enable/disable the address number field -
wc-koin-official/trunk/wc-koin-official.php
r3279008 r3288528 4 4 * Plugin Name: Koin Official Payments 5 5 * Plugin URI: https://github.com/koinlatam 6 * Version: 1.3. 76 * Version: 1.3.8 7 7 * Description: Koin Official Payments Gateways 8 8 * Text Domain: wc-koin-official
Note: See TracChangeset
for help on using the changeset viewer.