diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a87a34b..a10df6e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. +## [3.6.8] +- Add translation support for the AltaPay Payment Actions grid in the following WordPress-supported languages: + + `Danish, German, Estonian, Finnish, French, Czech, German (Austria), German (Switzerland, informal), German (formal), German (Switzerland), French (Belgium), French (Canada), Italian, Lithuanian, Dutch, Dutch (Belgium), Dutch (Formal), Norwegian Nynorsk, Polish, Romanian, Swedish.` + ## [3.6.7] - Extend support to include all languages that the gateway supports. diff --git a/altapay.php b/altapay.php index 46918341..fb9ad553 100755 --- a/altapay.php +++ b/altapay.php @@ -5,10 +5,12 @@ * Description: Payment Gateway to use with WordPress WooCommerce * Author: AltaPay * Author URI: https://altapay.com - * Version: 3.6.7 + * Text Domain: altapay + * Domain Path: /languages + * Version: 3.6.8 * Name: SDM_Altapay * WC requires at least: 3.9.0 - * WC tested up to: 9.0.2 + * WC tested up to: 9.1.2 * * @package Altapay */ @@ -39,7 +41,7 @@ } if ( ! defined( 'ALTAPAY_PLUGIN_VERSION' ) ) { - define( 'ALTAPAY_PLUGIN_VERSION', '3.6.7' ); + define( 'ALTAPAY_PLUGIN_VERSION', '3.6.8' ); } // Include the autoloader, so we can dynamically include the rest of the classes. @@ -81,6 +83,10 @@ function init_altapay_settings() { if ( empty( $altapay_terminal_classes_recreated ) ) { Core\AltapaySettings::recreateTerminalData( $settings ); } + + load_plugin_textdomain( 'altapay', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' ); + + } /** @@ -270,6 +276,9 @@ function altapayAddMetaBoxes() { * @return void */ function altapay_meta_box_side( $post_or_order_object ) { + global $post; + $order_post = $post; + $order = ( $post_or_order_object instanceof WP_Post ) ? wc_get_order( $post_or_order_object->ID ) : $post_or_order_object; if ( ! $order ) { @@ -344,6 +353,8 @@ function altapay_meta_box_side( $post_or_order_object ) { wp_reset_postdata(); } + $post = $order_post; + if ( $payments ) { foreach ( $payments as $pay ) { $reserved = $pay->ReservedAmount; @@ -353,7 +364,7 @@ function altapay_meta_box_side( $post_or_order_object ) { $type = $pay->AuthType; if ( $status === 'released' ) { - echo '' . __( 'Payment released', 'altapay' ) . ''; + echo '' . __( 'Payment Released.', 'altapay' ) . ''; } else { $charge = $reserved - $captured - $refunded; if ( $charge <= 0 ) { @@ -701,6 +712,7 @@ function altapayCaptureCallback() { 'refunded' => $refunded, 'chargeable' => round( $charge, 2 ), 'note' => $noteHtml, + 'message' => __( 'Payment Captured.', 'altapay' ) ) ); } @@ -824,9 +836,10 @@ function altapayRefundPayment( $orderID, $amount, $reason, $isAjax ) { $reconciliation = new Core\AltapayReconciliation(); $reconciliation->saveReconciliationIdentifier( (int) $orderID, $transaction['TransactionId'], $reconciliationId, 'refunded' ); } elseif ( strtolower( $response->Result ) === 'open' ) { - $order->add_order_note( __( 'Payment refund is in progress.', 'altapay' ) ); + $note = __( 'Payment refund is in progress.', 'altapay' ); + $order->add_order_note( $note ); return array( - 'message' => 'Payment refund is in progress.', + 'message' => $note, 'success' => true, ); } else { @@ -906,7 +919,7 @@ function altapayRefundPayment( $orderID, $amount, $reason, $isAjax ) { 'refunded' => $refunded, 'chargeable' => round( $charge, 2 ), 'note' => $noteHtml, - 'message' => __( 'Payment refunded.', 'altapay' ), + 'message' => __( 'Payment Refunded.', 'altapay' ), 'success' => true, ); } @@ -962,7 +975,7 @@ function altapayReleasePayment() { $order->update_meta_data( '_released', true ); $order->add_order_note( __( 'Order released: "The order has been released"', 'altapay' ) ); $order->save(); - wp_send_json_success( array( 'message' => 'Payment Released' ) ); + wp_send_json_success( array( 'message' => __ ( 'Payment Released.', 'altapay') ) ); } } else { $order->add_order_note( __( 'Release failed: ' . $response->MerchantErrorMessage, 'altapay' ) ); @@ -1069,6 +1082,8 @@ function altapay_checkout_blocks_style() { plugin_dir_url( __FILE__ ) . 'assets/css/blocks.css', ); } + + add_action( 'wp_enqueue_scripts', 'altapay_checkout_blocks_style' ); add_action( 'woocommerce_blocks_loaded', 'altapay_wc_checkout_block_support' ); add_filter( 'woocommerce_payment_gateways', 'altapay_add_gateway' ); diff --git a/assets/js/capture.js b/assets/js/capture.js index 56402a32..6e5afb44 100755 --- a/assets/js/capture.js +++ b/assets/js/capture.js @@ -59,7 +59,7 @@ jQuery( document ).ready( function (response) { var result = response.data; if (response.success === true) { - jQuery( '.capture-status' ).html( 'Payment captured.' ); + jQuery( '.capture-status' ).html( '' + result.message + '' ); jQuery( '.payment-reserved' ).text( result.reserved ); jQuery( '.payment-captured' ).text( result.captured ); jQuery( '.payment-refunded' ).text( result.refunded ); diff --git a/assets/js/release.js b/assets/js/release.js index f6de902a..7b4d73fb 100644 --- a/assets/js/release.js +++ b/assets/js/release.js @@ -26,9 +26,8 @@ jQuery( document ).ready( function (response) { var result = response.data; if (response.success === true) { - jQuery( '.release-status' ).html( 'Payment released.' ); - alert( 'Payment released' ); - location.reload(); + jQuery( '.release-status' ).html( '' + result.message + '' ); + window.setTimeout(function(){location.reload()}, 1000); } else { jQuery( '.release-status' ).html( 'Release failed: ' + result.error + '' ); } diff --git a/classes/core/AltapaySettings.php b/classes/core/AltapaySettings.php index 99473c72..f2e8a799 100755 --- a/classes/core/AltapaySettings.php +++ b/classes/core/AltapaySettings.php @@ -27,8 +27,6 @@ class AltapaySettings { * AltapaySettings constructor. */ public function __construct() { - // Load localization files - add_action( 'init', array( $this, 'altapayLocalizationInit' ) ); add_action( 'init', array( $this, 'altapayCapturesPostInit' ) ); // Add admin menu add_action( 'admin_menu', array( $this, 'altapaySettingsMenu' ), 60 ); @@ -247,15 +245,6 @@ public function addActionLinks( $links ) { } - /** - * Loads language file with language specifics - * - * @return void - */ - public function altapayLocalizationInit() { - load_plugin_textdomain( 'altapay', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); - } - /** * Add AltaPay settings option in plugins menu * diff --git a/languages/altapay-cs_CZ.mo b/languages/altapay-cs_CZ.mo new file mode 100644 index 00000000..e81e43a1 Binary files /dev/null and b/languages/altapay-cs_CZ.mo differ diff --git a/languages/altapay-cs_CZ.po b/languages/altapay-cs_CZ.po new file mode 100644 index 00000000..ff9d9f04 --- /dev/null +++ b/languages/altapay-cs_CZ.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "Akce platby AltaPay" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Nepodařilo se připojit k AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Nepodařilo se načíst platby z AltaPay!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Platba uvolněna." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Objednávka nemá žádnou transakci" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Platba zachycena." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Vrácení platby probíhá." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Platba vrácena." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Název produktu" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Cena s daní" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Cena bez daně" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Objednáno" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Procento slevy" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Množství" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Celková částka" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Odeslat řádky objednávky" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Částka" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Zachytit" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Vrátit" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "ID transakce" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Rezervováno" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Zpoplatnitelné" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Zachyceno" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Vráceno" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Zachytit platbu" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Vrátit platbu" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Uvolnit platbu" + diff --git a/languages/altapay-da_DK.mo b/languages/altapay-da_DK.mo new file mode 100644 index 00000000..614db1c3 Binary files /dev/null and b/languages/altapay-da_DK.mo differ diff --git a/languages/altapay-da_DK.po b/languages/altapay-da_DK.po new file mode 100644 index 00000000..b1832230 --- /dev/null +++ b/languages/altapay-da_DK.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da_DK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay betalingshandlinger" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Kunne ikke oprette forbindelse til AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Kunne ikke hente betalinger fra AltaPay!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Betaling frigivet." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Ordren har ingen transaktion" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Betaling hentet." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Refundering for betaling er i gang." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Betaling refunderet." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Produktnavn" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Pris med moms" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Pris uden moms" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Bestilt" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Rabatprocent" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Mængde" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Samlet beløb" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Send ordrelinjer" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Beløb" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Hent" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Refunder" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Transaktions-ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Reserveret" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Debiterbar" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Hentet" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Refunderet" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Hent betaling" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Refunder betaling" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Frigiv betaling" + diff --git a/languages/altapay-de_AT.mo b/languages/altapay-de_AT.mo new file mode 100644 index 00000000..de573a32 Binary files /dev/null and b/languages/altapay-de_AT.mo differ diff --git a/languages/altapay-de_AT.po b/languages/altapay-de_AT.po new file mode 100644 index 00000000..2394fb76 --- /dev/null +++ b/languages/altapay-de_AT.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de_AT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay Zahlungsaktionen" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Konnte keine Verbindung zu AltaPay herstellen!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Konnte Zahlungen von AltaPay nicht abrufen!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Zahlung freigegeben." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Bestellung hat keine Transaktion" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Zahlung erfasst." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Rückerstattung der Zahlung ist in Bearbeitung." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Zahlung erstattet." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Produktname" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Preis mit Steuern" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Preis ohne Steuern" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Bestellt" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Rabatt Prozentsatz" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Menge" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Gesamtbetrag" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Bestellpositionen senden" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Betrag" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Erfassen" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Rückerstattung" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Transaktions-ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Reserviert" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Belastbar" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Erfasst" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Erstattet" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Zahlung erfassen" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Zahlung erstatten" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Zahlung freigeben" + diff --git a/languages/altapay-de_CH.mo b/languages/altapay-de_CH.mo new file mode 100644 index 00000000..ae5cf5ff Binary files /dev/null and b/languages/altapay-de_CH.mo differ diff --git a/languages/altapay-de_CH.po b/languages/altapay-de_CH.po new file mode 100644 index 00000000..7550c89b --- /dev/null +++ b/languages/altapay-de_CH.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay-Zahlungsaktionen" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Konnte keine Verbindung zu AltaPay herstellen!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Konnte Zahlungen von AltaPay nicht abrufen!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Zahlung freigegeben." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Bestellung hat keine Transaktion" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Zahlung erfasst." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Rückerstattung der Zahlung läuft." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Zahlung zurückerstattet." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Produktname" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Preis mit MwSt." + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Preis ohne MwSt." + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Bestellt" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Rabattprozentsatz" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Menge" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Gesamtbetrag" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Bestellzeilen senden" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Betrag" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Erfassen" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Rückerstattung" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Transaktions-ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Reserviert" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Belastbar" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Erfasst" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Zurückerstattet" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Zahlung erfassen" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Zahlung zurückerstatten" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Zahlung freigeben" + diff --git a/languages/altapay-de_CH_informal.mo b/languages/altapay-de_CH_informal.mo new file mode 100644 index 00000000..4a9031c3 Binary files /dev/null and b/languages/altapay-de_CH_informal.mo differ diff --git a/languages/altapay-de_CH_informal.po b/languages/altapay-de_CH_informal.po new file mode 100644 index 00000000..0924f15a --- /dev/null +++ b/languages/altapay-de_CH_informal.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de_CH_informal\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay Zahlungsaktionen" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Konnte keine Verbindung zu AltaPay herstellen!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Konnte Zahlungen von AltaPay nicht abrufen!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Zahlung freigegeben." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Bestellung hat keine Transaktion" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Zahlung erfasst." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Rückzahlung der Zahlung läuft." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Zahlung zurückerstattet." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Produktname" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Preis mit MwSt." + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Preis ohne MwSt." + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Bestellt" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Rabattprozentsatz" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Menge" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Gesamtbetrag" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Bestellzeilen senden" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Betrag" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Erfassen" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Rückerstattung" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Transaktions-ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Reserviert" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Belastbar" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Erfasst" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Zurückerstattet" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Zahlung erfassen" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Zahlung zurückerstatten" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Zahlung freigeben" + diff --git a/languages/altapay-de_DE.mo b/languages/altapay-de_DE.mo new file mode 100644 index 00000000..bfbe55ed Binary files /dev/null and b/languages/altapay-de_DE.mo differ diff --git a/languages/altapay-de_DE.po b/languages/altapay-de_DE.po new file mode 100644 index 00000000..5468515b --- /dev/null +++ b/languages/altapay-de_DE.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay Zahlungsaktionen" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Verbindung zu AltaPay konnte nicht hergestellt werden!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Zahlungen von AltaPay konnten nicht abgerufen werden!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Zahlung freigegeben." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Bestellung hat keine Transaktion" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Zahlung erfasst." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Rückerstattung der Zahlung läuft." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Zahlung erstattet." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Produktname" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Preis inkl. MwSt." + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Preis exkl. MwSt." + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Bestellt" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Rabattprozentsatz" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Menge" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Gesamtbetrag" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Bestellzeilen senden" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Betrag" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Erfassen" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Erstattung" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Transaktions-ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Reserviert" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Belastbar" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Erfasst" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Erstattet" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Zahlung erfassen" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Zahlung erstatten" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Zahlung freigeben" + diff --git a/languages/altapay-de_DE_formal.mo b/languages/altapay-de_DE_formal.mo new file mode 100644 index 00000000..1b13035e Binary files /dev/null and b/languages/altapay-de_DE_formal.mo differ diff --git a/languages/altapay-de_DE_formal.po b/languages/altapay-de_DE_formal.po new file mode 100644 index 00000000..6ea731bf --- /dev/null +++ b/languages/altapay-de_DE_formal.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de_DE_formal\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay Zahlungsaktionen" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Verbindung zu AltaPay konnte nicht hergestellt werden!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Zahlungen von AltaPay konnten nicht abgerufen werden!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Zahlung freigegeben." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Bestellung hat keine Transaktion" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Zahlung erfasst." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Rückerstattung der Zahlung ist in Bearbeitung." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Zahlung zurückerstattet." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Produktname" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Preis mit Steuern" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Preis ohne Steuern" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Bestellt" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Rabattprozentsatz" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Menge" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Gesamtbetrag" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Bestellzeilen senden" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Betrag" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Erfassen" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Rückerstatten" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Transaktions-ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Reserviert" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Belastbar" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Erfasst" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Zurückerstattet" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Zahlung erfassen" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Zahlung zurückerstatten" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Zahlung freigeben" + diff --git a/languages/altapay-et.mo b/languages/altapay-et.mo new file mode 100644 index 00000000..7915e59a Binary files /dev/null and b/languages/altapay-et.mo differ diff --git a/languages/altapay-et.po b/languages/altapay-et.po new file mode 100644 index 00000000..ad9028c3 --- /dev/null +++ b/languages/altapay-et.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay maksetoimingud" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Ei saanud AltaPay-ga ühendust!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Ei saanud AltaPay-st makseid kätte!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Makse vabastatud." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Tellimusel puudub tehing" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Makse kinnitatud." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Tagasimakse on käimas." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Makse tagastatud." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Toote nimi" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Hind koos maksuga" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Hind ilma maksuta" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Tellitud" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Allahindlus protsentides" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Kogus" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Kogusumma" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Saada tellimuse read" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Summa" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Kinnita" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Tagasta" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Tehingu ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Reserveeritud" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Arvestatav" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Kinnitatud" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Tagastatud" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Kinnita makse" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Tagasta makse" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Vabasta makse" + diff --git a/languages/altapay-fi.mo b/languages/altapay-fi.mo new file mode 100644 index 00000000..4e5cdaf6 Binary files /dev/null and b/languages/altapay-fi.mo differ diff --git a/languages/altapay-fi.po b/languages/altapay-fi.po new file mode 100644 index 00000000..9bc7117f --- /dev/null +++ b/languages/altapay-fi.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay maksutoiminnot" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Yhteyttä AltaPayhin ei voitu muodostaa!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Maksuja ei voitu noutaa AltaPaysta!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Maksu vapautettu." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Tilauksella ei ole tapahtumaa" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Maksu varattu." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Maksun palautus on käynnissä." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Maksu palautettu." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Tuotteen nimi" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Hinta verollisena" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Hinta verottomana" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Tilattu" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Alennusprosentti" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Määrä" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Kokonaissumma" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Lähetä tilausrivit" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Summa" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Varaa" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Palauta" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Tapahtumatunnus" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Varattu" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Veloitettava" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Varattu" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Palautettu" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Varaa maksu" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Palauta maksu" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Vapauta maksu" + diff --git a/languages/altapay-fr_BE.mo b/languages/altapay-fr_BE.mo new file mode 100644 index 00000000..bbeb06ae Binary files /dev/null and b/languages/altapay-fr_BE.mo differ diff --git a/languages/altapay-fr_BE.po b/languages/altapay-fr_BE.po new file mode 100644 index 00000000..b80eaa9d --- /dev/null +++ b/languages/altapay-fr_BE.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "Actions de Paiement AltaPay" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Impossible de se connecter à AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Impossible de récupérer les paiements d'AltaPay!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Paiement libéré." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "La commande n'a aucune transaction" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Paiement capturé." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Remboursement en cours." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Paiement remboursé." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Nom du produit" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Prix avec taxes" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Prix hors taxes" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Commandé" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Pourcentage de remise" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Quantité" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Montant total" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Envoyer les lignes de commande" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Montant" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Capturer" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Rembourser" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "ID de transaction" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Réservé" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Facturable" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Capturé" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Remboursé" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Capturer le paiement" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Rembourser le paiement" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Libérer le paiement" + diff --git a/languages/altapay-fr_CA.mo b/languages/altapay-fr_CA.mo new file mode 100644 index 00000000..811ba7f3 Binary files /dev/null and b/languages/altapay-fr_CA.mo differ diff --git a/languages/altapay-fr_CA.po b/languages/altapay-fr_CA.po new file mode 100644 index 00000000..4fdd3050 --- /dev/null +++ b/languages/altapay-fr_CA.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "Actions de paiement AltaPay" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Impossible de se connecter à AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Impossible de récupérer les paiements d'AltaPay!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Paiement libéré." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "La commande n'a pas de transaction" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Paiement capturé." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Le remboursement du paiement est en cours." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Paiement remboursé." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Nom du produit" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Prix avec taxes" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Prix sans taxes" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Commandé" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Pourcentage de réduction" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Quantité" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Montant total" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Envoyer les lignes de commande" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Montant" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Capture" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Remboursement" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "ID de transaction" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Réservé" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Facturable" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Capturé" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Remboursé" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Capturer le paiement" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Rembourser le paiement" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Libérer le paiement" + diff --git a/languages/altapay-fr_FR.mo b/languages/altapay-fr_FR.mo new file mode 100644 index 00000000..f1f82fb4 Binary files /dev/null and b/languages/altapay-fr_FR.mo differ diff --git a/languages/altapay-fr_FR.po b/languages/altapay-fr_FR.po new file mode 100644 index 00000000..f65efa86 --- /dev/null +++ b/languages/altapay-fr_FR.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "Actions de paiement AltaPay" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Impossible de se connecter à AltaPay !" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Impossible de récupérer les paiements d'AltaPay !" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Paiement libéré." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "La commande n'a pas de transaction" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Paiement capturé." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Le remboursement du paiement est en cours." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Paiement remboursé." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Nom du produit" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Prix avec taxe" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Prix hors taxe" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Commandé" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Pourcentage de réduction" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Quantité" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Montant total" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Envoyer les lignes de commande" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Montant" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Capturer" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Rembourser" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "ID de transaction" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Réservé" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Facturable" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Capturé" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Remboursé" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Capturer le paiement" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Rembourser le paiement" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Libérer le paiement" + diff --git a/languages/altapay-it_IT.mo b/languages/altapay-it_IT.mo new file mode 100644 index 00000000..19ca3da7 Binary files /dev/null and b/languages/altapay-it_IT.mo differ diff --git a/languages/altapay-it_IT.po b/languages/altapay-it_IT.po new file mode 100644 index 00000000..81c7a674 --- /dev/null +++ b/languages/altapay-it_IT.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "Azioni di Pagamento AltaPay" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Impossibile connettersi a AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Impossibile recuperare i pagamenti da AltaPay!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Pagamento rilasciato." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "L'ordine non ha transazioni" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Pagamento acquisito." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Il rimborso del pagamento è in corso." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Pagamento rimborsato." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Nome del prodotto" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Prezzo con tasse" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Prezzo senza tasse" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Ordinato" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Percentuale sconto" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Quantità" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Importo totale" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Invia righe ordine" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Importo" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Acquisisci" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Rimborsa" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "ID Transazione" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Riservato" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Addebitabile" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Acquisito" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Rimborsato" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Acquisisci pagamento" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Rimborsa pagamento" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Rilascia pagamento" + diff --git a/languages/altapay-lt_LT.mo b/languages/altapay-lt_LT.mo new file mode 100644 index 00000000..2beecb1d Binary files /dev/null and b/languages/altapay-lt_LT.mo differ diff --git a/languages/altapay-lt_LT.po b/languages/altapay-lt_LT.po new file mode 100644 index 00000000..52e22fb0 --- /dev/null +++ b/languages/altapay-lt_LT.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay mokėjimo veiksmai" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Nepavyko prisijungti prie AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Nepavyko gauti mokėjimų iš AltaPay!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Mokėjimas išleistas." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Užsakymas neturi jokios operacijos" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Mokėjimas užfiksuotas." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Grąžinimas vykdomas." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Mokėjimas grąžintas." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Produkto pavadinimas" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Kaina su mokesčiais" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Kaina be mokesčių" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Užsakyta" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Nuolaidos procentas" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Kiekis" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Bendra suma" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Siųsti užsakymo eilutes" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Suma" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Užfiksuoti" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Grąžinti" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Operacijos ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Rezervuota" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Apmokestinama" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Užfiksuota" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Grąžinta" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Užfiksuoti mokėjimą" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Grąžinti mokėjimą" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Išleisti mokėjimą" + diff --git a/languages/altapay-nl_BE.mo b/languages/altapay-nl_BE.mo new file mode 100644 index 00000000..4207068f Binary files /dev/null and b/languages/altapay-nl_BE.mo differ diff --git a/languages/altapay-nl_BE.po b/languages/altapay-nl_BE.po new file mode 100644 index 00000000..b94de224 --- /dev/null +++ b/languages/altapay-nl_BE.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay Betalingsacties" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Kon geen verbinding maken met AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Kon betalingen van AltaPay niet ophalen!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Betaling vrijgegeven." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Bestelling heeft geen transactie" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Betaling vastgelegd." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Betalingsrestitutie is aan de gang." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Betaling terugbetaald." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Productnaam" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Prijs met belasting" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Prijs zonder belasting" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Besteld" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Kortingspercentage" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Hoeveelheid" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Totaalbedrag" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Verzend orderregels" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Bedrag" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Vastleggen" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Terugbetaling" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Transactie-ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Gereserveerd" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Aan te rekenen" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Vastgelegd" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Terugbetaald" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Betaling vastleggen" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Betaling terugbetalen" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Betaling vrijgeven" + diff --git a/languages/altapay-nl_NL.mo b/languages/altapay-nl_NL.mo new file mode 100644 index 00000000..f89d943d Binary files /dev/null and b/languages/altapay-nl_NL.mo differ diff --git a/languages/altapay-nl_NL.po b/languages/altapay-nl_NL.po new file mode 100644 index 00000000..06777f0b --- /dev/null +++ b/languages/altapay-nl_NL.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay Betalingsacties" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Kon geen verbinding maken met AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Kon betalingen niet ophalen van AltaPay!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Betaling vrijgegeven." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Bestelling heeft geen transactie" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Betaling vastgelegd." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Teruggave van betaling is in behandeling." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Betaling terugbetaald." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Productnaam" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Prijs inclusief belasting" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Prijs exclusief belasting" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Besteld" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Kortingpercentage" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Aantal" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Totaalbedrag" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Verzend bestellijnen" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Bedrag" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Vastleggen" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Terugbetalen" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Transactie-ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Gereserveerd" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "In rekening te brengen" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Vastgelegd" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Terugbetaald" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Betaling vastleggen" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Betaling terugbetalen" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Betaling vrijgeven" + diff --git a/languages/altapay-nl_NL_formal.mo b/languages/altapay-nl_NL_formal.mo new file mode 100644 index 00000000..ff8f2fc3 Binary files /dev/null and b/languages/altapay-nl_NL_formal.mo differ diff --git a/languages/altapay-nl_NL_formal.po b/languages/altapay-nl_NL_formal.po new file mode 100644 index 00000000..2ccaacec --- /dev/null +++ b/languages/altapay-nl_NL_formal.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl_NL_formal\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay Betalingsacties" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Kon geen verbinding maken met AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Kon betalingen niet ophalen van AltaPay!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Betaling vrijgegeven." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Bestelling heeft geen transactie" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Betaling vastgelegd." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Betalingsrestitutie is in behandeling." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Betaling terugbetaald." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Productnaam" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Prijs met belasting" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Prijs zonder belasting" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Besteld" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Kortingspercentage" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Hoeveelheid" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Totaalbedrag" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Bestellijnen verzenden" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Bedrag" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Vastleggen" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Terugbetalen" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Transactie-ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Gereserveerd" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Belastbaar" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Vastgelegd" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Terugbetaald" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Betaling vastleggen" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Betaling terugbetalen" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Betaling vrijgeven" + diff --git a/languages/altapay-nn_NO.mo b/languages/altapay-nn_NO.mo new file mode 100644 index 00000000..c64527cf Binary files /dev/null and b/languages/altapay-nn_NO.mo differ diff --git a/languages/altapay-nn_NO.po b/languages/altapay-nn_NO.po new file mode 100644 index 00000000..816060ba --- /dev/null +++ b/languages/altapay-nn_NO.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nn_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay betalingshandlinger" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Kunne ikke koble til AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Kunne ikke hente betalinger fra AltaPay!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Betaling frigitt." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Ordren har ingen transaksjon" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Betaling registrert." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Tilbakebetaling pågår." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Betaling tilbakebetalt." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Produktnavn" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Pris med skatt" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Pris uten skatt" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Bestilt" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Rabattprosent" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Antall" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Totalbeløp" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Send ordrelinjer" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Beløp" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Registrer" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Tilbakebetal" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Transaksjons-ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Reservert" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Belastbar" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Registrert" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Tilbakebetalt" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Registrer betaling" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Tilbakebetal betaling" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Frigi betaling" + diff --git a/languages/altapay-pl_PL.mo b/languages/altapay-pl_PL.mo new file mode 100644 index 00000000..5fcf8dce Binary files /dev/null and b/languages/altapay-pl_PL.mo differ diff --git a/languages/altapay-pl_PL.po b/languages/altapay-pl_PL.po new file mode 100644 index 00000000..bcb8f2f3 --- /dev/null +++ b/languages/altapay-pl_PL.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "Operacje na płatności AltaPay" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Nie można połączyć się z AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Nie można pobrać płatności z AltaPay!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Płatność zwolniona." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Zamówienie nie ma transakcji" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Płatność zrealizowana." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Zwrot płatności jest w toku." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Płatność zwrócona." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Nazwa produktu" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Cena z podatkiem" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Cena bez podatku" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Zamówione" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Procent rabatu" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Ilość" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Łączna kwota" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Wyślij linie zamówienia" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Kwota" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Zrealizuj" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Zwrot" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Identyfikator transakcji" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Zarezerwowane" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Do obciążenia" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Zrealizowane" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Zwrócone" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Zrealizuj płatność" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Zwróć płatność" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Zwolnij płatność" + diff --git a/languages/altapay-ro_RO.mo b/languages/altapay-ro_RO.mo new file mode 100644 index 00000000..59096509 Binary files /dev/null and b/languages/altapay-ro_RO.mo differ diff --git a/languages/altapay-ro_RO.po b/languages/altapay-ro_RO.po new file mode 100644 index 00000000..0e6c7f57 --- /dev/null +++ b/languages/altapay-ro_RO.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro_RO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "Acțiuni de Plată AltaPay" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Nu s-a putut conecta la AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Nu s-au putut prelua plățile de la AltaPay!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Plata Eliberată." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Comanda nu are nicio tranzacție" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Plata Capturată." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Rambursarea plății este în curs." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Plata Rambursată." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Numele produsului" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Preț cu taxă" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Preț fără taxă" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Comandat" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Procent de Reducere" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Cantitate" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Suma totală" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Trimite liniile de comandă" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Sumă" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Captură" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Rambursare" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "ID-ul Tranzacției" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Rezervat" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Taxabil" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Capturat" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Rambursat" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Capturare Plată" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Rambursare Plată" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Eliberare Plată" + diff --git a/languages/altapay-sv_SE.mo b/languages/altapay-sv_SE.mo new file mode 100644 index 00000000..9a3dd045 Binary files /dev/null and b/languages/altapay-sv_SE.mo differ diff --git a/languages/altapay-sv_SE.po b/languages/altapay-sv_SE.po new file mode 100644 index 00000000..cfdd4d06 --- /dev/null +++ b/languages/altapay-sv_SE.po @@ -0,0 +1,152 @@ +# Copyright (C) 2024 AltaPay +# This file is distributed under the same license as the AltaPay for WooCommerce - Payments less complicated plugin. +msgid "" +msgstr "" +"Project-Id-Version: AltaPay for WooCommerce - Payments less complicated 3.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/altapay-for-woocommerce\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2024-07-18T10:05:00+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.10.0\n" +"X-Domain: altapay\n" + + +#: altapay.php:254 +msgid "AltaPay Payment Actions" +msgstr "AltaPay Betalningsåtgärder" + +#: altapay.php:297 +#: classes/core/AltapayOrderStatus.php:52 +#: classes/core/AltapaySettings.php:63 +#: classes/core/AltapaySettings.php:437 +#: helpers/traits/AltapayMaster.php:69 +#: terminals/Altapay_Test_Terminal.class.php:418 +msgid "Could not connect to AltaPay!" +msgstr "Kunde inte ansluta till AltaPay!" + +#: altapay.php:311 +#: classes/core/AltapayOrderStatus.php:62 +msgid "Could not fetch Payments from AltaPay!" +msgstr "Kunde inte hämta betalningar från AltaPay!" + +#: altapay.php:360 +#: altapay.php:971 +msgid "Payment Released." +msgstr "Betalning släppt." + +#: altapay.php:385 +msgid "Order got no transaction" +msgstr "Beställningen har ingen transaktion" + +#: altapay.php:708 +msgid "Payment Captured." +msgstr "Betalning fångad." + +#: altapay.php:832 +msgid "Payment refund is in progress." +msgstr "Betalningsåterbetalning pågår." + +#: altapay.php:915 +msgid "Payment Refunded." +msgstr "Betalning återbetalad." + +#: views/tables/capture.blade.php:16 +#: views/tables/refund.blade.php:16 +msgid "Product name" +msgstr "Produktnamn" + +#: views/tables/capture.blade.php:17 +#: views/tables/refund.blade.php:17 +msgid "Price with tax" +msgstr "Pris med skatt" + +#: views/tables/capture.blade.php:18 +#: views/tables/refund.blade.php:18 +msgid "Price without tax" +msgstr "Pris utan skatt" + +#: views/tables/capture.blade.php:19 +#: views/tables/refund.blade.php:19 +msgid "Ordered" +msgstr "Beställd" + +#: views/tables/capture.blade.php:20 +#: views/tables/refund.blade.php:20 +msgid "Discount Percent" +msgstr "Rabattprocent" + +#: views/tables/capture.blade.php:21 +#: views/tables/refund.blade.php:21 +msgid "Quantity" +msgstr "Kvantitet" + +#: views/tables/capture.blade.php:22 +#: views/tables/refund.blade.php:22 +msgid "Total amount" +msgstr "Total summa" + +#: views/tables/index.blade.php:59 +#: views/tables/index.blade.php:95 +msgid "Send order lines" +msgstr "Skicka orderrader" + +#: views/tables/index.blade.php:66 +#: views/tables/index.blade.php:101 +msgid "Amount" +msgstr "Belopp" + +#: views/tables/index.blade.php:68 +#: views/tables/index.blade.php:139 +#: views/tables/index.blade.php:143 +msgid "Capture" +msgstr "Fånga" + +#: views/tables/index.blade.php:103 +#: views/tables/index.blade.php:144 +#: views/tables/index.blade.php:148 +msgid "Refund" +msgstr "Återbetalning" + +#: views/tables/index.blade.php:113 +msgid "Transaction ID" +msgstr "Transaktions-ID" + +#: views/tables/index.blade.php:118 +msgid "Reserved" +msgstr "Reserverad" + +#: views/tables/index.blade.php:123 +#: views/tables/index.blade.php:124 +msgid "Chargeable" +msgstr "Debiterbar" + +#: views/tables/index.blade.php:128 +#: views/tables/index.blade.php:130 +msgid "Captured" +msgstr "Fångad" + +#: views/tables/index.blade.php:133 +#: views/tables/index.blade.php:136 +msgid "Refunded" +msgstr "Återbetald" + +#: views/tables/index.blade.php:138 +#: views/tables/index.blade.php:142 +msgid "Capture Payment" +msgstr "Fånga betalning" + +#: views/tables/index.blade.php:143 +#: views/tables/index.blade.php:147 +msgid "Refund Payment" +msgstr "Återbetalning av betalning" + +#: views/tables/index.blade.php:149 +#: views/tables/index.blade.php:153 +msgid "Release Payment" +msgstr "Släpp betalning" + diff --git a/readme.txt b/readme.txt index 4845c911..ceb28ca5 100644 --- a/readme.txt +++ b/readme.txt @@ -4,10 +4,10 @@ Tags: AltaPay, Gateway, Payments, WooCommerce, Payment Card Industry Requires PHP: 7.4 Requires at least: 5.0 Tested up to: 6.6 -Stable tag: 3.6.7 +Stable tag: 3.6.8 License: MIT WC requires at least: 3.9.0 -WC tested up to: 9.0.2 +WC tested up to: 9.1.2 License URI: http://www.gnu.org/licenses/gpl-2.0.html A plugin that integrates your WooCommerce web shop to the AltaPay payments gateway. @@ -39,6 +39,10 @@ AltaPay's Payment Gateway for WooCommerce provides merchants with access to a fu == Changelog == += 3.6.8 = +* Add translation support for the AltaPay Payment Actions grid in the following WordPress-supported languages: +Danish, German, Estonian, Finnish, French, Czech, German (Austria), German (Switzerland, informal), German (formal), German (Switzerland), French (Belgium), French (Canada), Italian, Lithuanian, Dutch, Dutch (Belgium), Dutch (Formal), Norwegian Nynorsk, Polish, Romanian, Swedish. + = 3.6.7 = * Extend support to include all languages that the gateway supports. Supported languages: https://documentation.altapay.com/Content/Ecom/Reference/Supported%20languages.htm diff --git a/views/tables/capture.blade.php b/views/tables/capture.blade.php index 5e8f3acb..94053b6e 100755 --- a/views/tables/capture.blade.php +++ b/views/tables/capture.blade.php @@ -13,13 +13,13 @@ - Product name - Price with tax - Price without tax - Ordered - Discount Percent - Quantity - Total amount + + + + + + + diff --git a/views/tables/index.blade.php b/views/tables/index.blade.php index a5466886..25806732 100755 --- a/views/tables/index.blade.php +++ b/views/tables/index.blade.php @@ -57,16 +57,16 @@
- +

+ placeholder=""/> Capture + style="margin-left:20px; color:white; background-color:#006064; cursor:pointer; border-radius: 4px;">
@endif @@ -93,15 +93,15 @@
- +

+ value="{{max($toBeRefunded, 0)}}" placeholder=""/> Refund + style="margin-left:20px; color:white; background-color:#006064; cursor:pointer; border-radius: 4px;">
@endif @@ -111,43 +111,43 @@
- Transaction ID: + : {{$transaction_id}}

- Reserved: + : {{number_format($reserved, 2)}} {{$order->get_currency()}}

- Chargeable: + : {{number_format($charge, 2)}} {{$order->get_currency()}}

- Captured: + : {{number_format($captured, 2)}} {{$order->get_currency()}}

- Refunded: + : {{number_format($refunded, 2)}} {{$order->get_currency()}}
@if ( $captured < $reserved )
- Capture + @endif @if ( $refunded < $reserved and $captured)
- Refund + @endif @if ($order->get_transaction_id() && $captured == 0)
Release Payment + style="color:white; background-color:#ed2939; cursor:pointer; border-radius: 4px; width: 100%;text-align: center;font-weight: bold;margin-bottom: 15px;"> @endif
diff --git a/views/tables/refund.blade.php b/views/tables/refund.blade.php index 30876c6b..ff2279c3 100755 --- a/views/tables/refund.blade.php +++ b/views/tables/refund.blade.php @@ -13,13 +13,13 @@ - Product name - Price with tax - Price without tax - Ordered - Discount Percent - Quantity - Total amount + + + + + + + diff --git a/wiki.md b/wiki.md index 0b2b3dd5..3801a864 100644 --- a/wiki.md +++ b/wiki.md @@ -275,13 +275,13 @@ In order to reconcile payments please follow the steps below: Minimum system requirements are: - WordPress min. 5.0 – max. 6.6 -- WooCommerce min. 3.9.0 – max. 9.0.2 +- WooCommerce min. 3.9.0 – max. 9.1.2 - PHP 7.4 and above - PHP-bcmath library installed. - PHP-curl MUST be enabled. The latest tested version is: -- WordPress 6.6, WooCommerce 9.0.2 and PHP 8.1 +- WordPress 6.6, WooCommerce 9.1.2 and PHP 8.1 ## Troubleshooting