diff --git a/assets/moka-admin.js b/assets/moka-admin.js
index e4d4fd7..77a3892 100644
--- a/assets/moka-admin.js
+++ b/assets/moka-admin.js
@@ -170,4 +170,30 @@ jQuery(document).ready(function ($) {
});
}
}
+
+ $('.moka-woocommerce-check-update').click(function (e) {
+ e.preventDefault();
+ let _thiz = $(this);
+ if (!_thiz.hasClass('checking')) {
+ _thiz.addClass('checking');
+ _thiz.text(_thiz.attr('data-check'));
+ $.post(moka_ajax.ajax_url, {
+ action: 'optimisthub_ajax',
+ method: 'update_check'
+ }, function (response) {
+ _thiz.removeClass('checking');
+ _thiz.text(_thiz.attr('data-default'));
+ if (response.status === true) {
+ alert(response.message);
+ setTimeout(function () {
+ window.location.reload(true);
+ }, 1250);
+ }
+ }, 'json').fail(function () {
+ _thiz.removeClass('checking');
+ _thiz.text(_thiz.attr('data-default'));
+ alert(moka_ajax.failed);
+ });
+ }
+ });
});
\ No newline at end of file
diff --git a/changelog.md b/changelog.md
index 1ba6da5..60ba4ae 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,9 @@
+#### Version 3.8.3
+- Improvement : Force update check
+- Improvement : Translations Update
+- Issue : Self update error at some cases
+- Issue : Installment fee tax
+
#### Version 3.8.2
- Issue : Order total at pay for order state
@@ -17,11 +23,11 @@
- Issue : Secure Renegotiation
#### Version 3.7.8 Beta
-- Feauture : Limit instalment.
-- Feauture : Limit instalment by product
-- Feauture : Remote connection test
-- Feauture : Dealer informations test
-- Feauture : Debug mode
+- Feature : Limit instalment.
+- Feature : Limit instalment by product
+- Feature : Remote connection test
+- Feature : Dealer informations test
+- Feature : Debug mode
- Improvement : Translations updated
- Security : Subscription queries updated
@@ -31,7 +37,7 @@
- Improvement : Installment tab.
- Improvement : Performence issue.
- Improvement : Translations updated.
-- Feauture : Option to show instalment total amount.
+- Feature : Option to show instalment total amount.
- Security : Installement rate calculation logic has been changed.
- Security : Oder Total calculation logic has been changed.
diff --git a/core/library/Moka_Gateway.php b/core/library/Moka_Gateway.php
index 57052e2..d7bc606 100644
--- a/core/library/Moka_Gateway.php
+++ b/core/library/Moka_Gateway.php
@@ -966,7 +966,7 @@ private function saveComissionDecision( $params )
$order = self::fetchOrder(data_get($params, 'orderId'));
$orderFee = new \WC_Order_Item_Fee();
- $orderFee->set_props(
+ /*$orderFee->set_props(
[
'name' => __('Installment Fee', 'moka-woocommerce'),
'tax_class' => '',
@@ -975,9 +975,13 @@ private function saveComissionDecision( $params )
'taxes' => [],
'order_id' => $order->get_id(),
]
- );
- $orderFee->save();
-
+ );*/
+ $orderFee->set_name( __('Installment Fee', 'moka-woocommerce') );
+ $orderFee->set_amount( $installmentFee );
+ $orderFee->set_tax_class( '' );
+ $orderFee->set_tax_status( 'none' );
+ $orderFee->set_total( $installmentFee );
+
$order->add_item( $orderFee );
$order->calculate_totals(true);
$order->save();
diff --git a/core/library/Moka_Init.php b/core/library/Moka_Init.php
index fa41b73..a5e5a42 100644
--- a/core/library/Moka_Init.php
+++ b/core/library/Moka_Init.php
@@ -25,6 +25,24 @@ public function __construct()
add_action( 'add_meta_boxes', [ $this, 'add_meta_box' ] );
add_action( 'save_post', [ $this, 'save_meta_box' ] );
+ add_filter( 'plugin_row_meta', [ $this, 'plugin_row_meta' ], 10, 2 );
+
+ }
+
+ public function plugin_row_meta( $links, $file ) {
+ if ( plugin_basename( OPTIMISTHUB_MOKA_FILE ) !== $file ) {
+ return $links;
+ }
+
+ $more = [
+ '' . __( 'Wiki', 'moka-woocommerce' ) . '',
+ '' . __( 'Report Issue',
+ 'moka-woocommerce' ) .
+ '',
+ '' . __( 'Check Update', 'moka-woocommerce' ) . '',
+ ];
+
+ return array_merge( $links, $more );
}
public function add_meta_box( $post_type ) {
diff --git a/core/library/Optimisthub_Ajax.php b/core/library/Optimisthub_Ajax.php
index a675318..921b4a1 100644
--- a/core/library/Optimisthub_Ajax.php
+++ b/core/library/Optimisthub_Ajax.php
@@ -190,6 +190,10 @@ public function optimisthub_ajax()
if( $method == 'debug_clear' ) {
self::debug_clear();
}
+
+ if( $method == 'update_check' ) {
+ self::update_check();
+ }
wp_die();
}
@@ -503,6 +507,16 @@ private function debug_clear(){
}
wp_send_json($result);
}
+
+ private function update_check(){
+ $result = [
+ 'time' => time(),
+ 'status' => true,
+ 'message' => __( 'Success', 'moka-woocommerce' )
+ ];
+ wp_update_plugins();
+ wp_send_json($result);
+ }
}
diff --git a/core/library/Optimisthub_Update_Checker.php b/core/library/Optimisthub_Update_Checker.php
index 4417913..0db1a71 100644
--- a/core/library/Optimisthub_Update_Checker.php
+++ b/core/library/Optimisthub_Update_Checker.php
@@ -147,7 +147,8 @@ public function update( $transient ) {
$remote = $this->request();
if(
- $remote
+ $remote
+ && data_get($remote, 'version')
&& version_compare( $this->version, $remote->version, '<' )
) {
$_response = new stdClass();
@@ -157,7 +158,13 @@ public function update( $transient ) {
$_response->tested = data_get($remote, 'tested');
$_response->package = data_get($remote, 'download_url');
- $transient->response[ $_response->plugin ] = $_response;
+ if( is_array($transient->response) ){
+ $transient->response[ $_response->plugin ] = $_response;
+ }else{
+ $transient->response = [
+ $_response->plugin => $_response,
+ ];
+ }
}
diff --git a/index.php b/index.php
index 4ebfb3c..d02eeeb 100644
--- a/index.php
+++ b/index.php
@@ -3,7 +3,7 @@
* Plugin Name: Moka Payment Gateway for WooCommerce
* Plugin URI: https://github.com/optimisthub/moka-woocommerce
* Description: Moka Payment gateway for woocommerce
- * Version: 3.8.2
+ * Version: 3.8.3
* Author: Optimist Hub
* Author URI: https://optimisthub.com/?utm_source=moka-woocommerce&utm_campaign=moka-woocommerce&utm_content=plugins
* Domain Path: /languages/
@@ -14,10 +14,11 @@
exit;
}
-define( 'OPTIMISTHUB_MOKA_PAY_VERSION', '3.8.2' );
-define( 'OPTIMISTHUB_MOKA_BASENAME', plugin_basename( __FILE__ ) );
-define( 'OPTIMISTHUB_MOKA_DIR', plugin_dir_path( __FILE__ ) );
-define( 'OPTIMISTHUB_MOKA_URL', plugin_dir_url( __FILE__ ) );
+define( 'OPTIMISTHUB_MOKA_PAY_VERSION', '3.8.3' );
+define( 'OPTIMISTHUB_MOKA_FILE', __FILE__ );
+define( 'OPTIMISTHUB_MOKA_BASENAME', plugin_basename( OPTIMISTHUB_MOKA_FILE ) );
+define( 'OPTIMISTHUB_MOKA_DIR', plugin_dir_path( OPTIMISTHUB_MOKA_FILE ) );
+define( 'OPTIMISTHUB_MOKA_URL', plugin_dir_url( OPTIMISTHUB_MOKA_FILE ) );
define( 'OPTIMISTHUB_MOKA_UPDATE', 'https://moka.wooxup.com/' );
define( 'OPTIMISTHUB_MOKA_DOMAIN', 'moka-woocommerce' );
@@ -29,7 +30,7 @@
function loadOptimisthubMoka()
{
require __DIR__ . '/vendor/autoload.php';
- $path = dirname( plugin_basename(__FILE__) ) . '/languages';
+ $path = dirname( plugin_basename( OPTIMISTHUB_MOKA_FILE ) ) . '/languages';
load_plugin_textdomain( OPTIMISTHUB_MOKA_DOMAIN, false, $path );
}
diff --git a/languages/moka-woocommerce-en_US.mo b/languages/moka-woocommerce-en_US.mo
index fa59a8f..e94586e 100644
Binary files a/languages/moka-woocommerce-en_US.mo and b/languages/moka-woocommerce-en_US.mo differ
diff --git a/languages/moka-woocommerce-en_US.po b/languages/moka-woocommerce-en_US.po
index 6b2b83c..613cdfc 100644
--- a/languages/moka-woocommerce-en_US.po
+++ b/languages/moka-woocommerce-en_US.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-08T11:49:40+00:00\n"
-"PO-Revision-Date: 2023-10-16 17:52+0000\n"
+"PO-Revision-Date: 2023-10-31 12:42+0000\n"
"Last-Translator: Administrator\n"
"Language-Team: English (United States)\n"
"Language: en_US\n"
@@ -21,16 +21,16 @@ msgstr ""
#: core/library/Moka_Gateway.php:185 core/library/Moka_Gateway.php:186
#: core/library/Moka_Gateway.php:187 core/library/Moka_Gateway.php:188
#: core/library/Moka_Gateway.php:189 core/library/Moka_Gateway.php:190
-#: core/library/Moka_Init.php:75
+#: core/library/Moka_Init.php:93
msgid "%s Installement"
msgstr "%s Installement"
-#: core/library/Moka_Gateway.php:1177
+#: core/library/Moka_Gateway.php:1181
#| msgid "3D authorisation Error"
msgid "3D authorisation error"
msgstr "3D authorisation error"
-#: core/library/Moka_Gateway.php:1176
+#: core/library/Moka_Gateway.php:1180
msgid "3D confirmation received but money could not be withdrawn from the part"
msgstr ""
"3D confirmation received but money could not be withdrawn from the part"
@@ -69,15 +69,15 @@ msgstr "Active"
msgid "Amount"
msgstr "Amount"
-#: core/library/Moka_Gateway.php:1188 core/library/Optimisthub_Ajax.php:247
+#: core/library/Moka_Gateway.php:1192 core/library/Optimisthub_Ajax.php:251
msgid "An unexpected error occurred"
msgstr "An unexpected error occurred"
-#: core/library/Moka_Gateway.php:1138
+#: core/library/Moka_Gateway.php:1142
msgid "An unexpected error occurred."
msgstr "An unexpected error occurred."
-#: core/library/Moka_Gateway.php:1037
+#: core/library/Moka_Gateway.php:1041
msgid "Any of the daily limits defined for the dealer have been exceeded."
msgstr "Any of the daily limits defined for the dealer have been exceeded."
@@ -89,15 +89,15 @@ msgstr "Api Password"
msgid "Api Username"
msgstr "Api Username"
-#: core/library/Moka_Gateway.php:1168
+#: core/library/Moka_Gateway.php:1172
msgid "Approval mechanism not available"
msgstr "Approval mechanism not available"
-#: core/library/Moka_Gateway.php:1069
+#: core/library/Moka_Gateway.php:1073
msgid "Authorization Forbidden For This Dealer."
msgstr "Authorization Forbidden For This Dealer."
-#: core/library/Moka_Gateway.php:1182
+#: core/library/Moka_Gateway.php:1186
msgid "Bank Declined Transaction"
msgstr "Bank Declined Transaction"
@@ -106,19 +106,19 @@ msgstr "Bank Declined Transaction"
msgid "Bank Identification Test"
msgstr "Bank Identification Test"
-#: core/library/Moka_Gateway.php:1178
+#: core/library/Moka_Gateway.php:1182
msgid "Bank or Card does not support 3D secure"
msgstr "Bank or Card does not support 3D secure"
-#: core/library/Moka_Gateway.php:1162
+#: core/library/Moka_Gateway.php:1166
msgid "Bank SSL error"
msgstr "Bank SSL error"
-#: core/library/Moka_Gateway.php:1120
+#: core/library/Moka_Gateway.php:1124
msgid "Basket Amount Is Not Equal Payment Amount."
msgstr "Basket Amount Is Not Equal Payment Amount."
-#: core/library/Moka_Gateway.php:1123
+#: core/library/Moka_Gateway.php:1127
msgid "Basket Product Not Found In Your Product List."
msgstr "Basket Product Not Found In Your Product List."
@@ -126,7 +126,7 @@ msgstr "Basket Product Not Found In Your Product List."
msgid "Begining: "
msgstr "Begining: "
-#: core/library/Moka_Gateway.php:1163
+#: core/library/Moka_Gateway.php:1167
msgid "Call your bank for manual confirmation"
msgstr "Call your bank for manual confirmation"
@@ -136,7 +136,7 @@ msgstr "Cancel"
#: core/library/Moka_Gateway.php:294 core/library/Moka_Gateway.php:495
#: core/library/Moka_Subscriptions.php:631
-#: core/library/Optimisthub_Ajax.php:472 core/library/Optimisthub_Ajax.php:488
+#: core/library/Optimisthub_Ajax.php:484 core/library/Optimisthub_Ajax.php:500
msgid "Cant find debug file"
msgstr "Cant find debug file"
@@ -152,11 +152,11 @@ msgstr "Card Code"
msgid "Card details have been successfully verified."
msgstr "Card details have been successfully verified."
-#: core/library/Moka_Gateway.php:1164
+#: core/library/Moka_Gateway.php:1168
msgid "Card details incorrect"
msgstr "Card details incorrect"
-#: core/library/Moka_Gateway.php:1158
+#: core/library/Moka_Gateway.php:1162
msgid "Card expiry date incorrect"
msgstr "Card expiry date incorrect"
@@ -164,18 +164,26 @@ msgstr "Card expiry date incorrect"
msgid "Card Number"
msgstr "Card Number"
-#: core/library/Moka_Gateway.php:1081
+#: core/library/Moka_Gateway.php:1085
msgid "Card Token Cannot Use With Save Card."
msgstr "Card Token Cannot Use With Save Card."
-#: core/library/Moka_Gateway.php:1084
+#: core/library/Moka_Gateway.php:1088
msgid "Card Token Not Found."
msgstr "Card Token Not Found."
-#: core/library/Optimisthub_Ajax.php:342
+#: core/library/Optimisthub_Ajax.php:354
msgid "Cash In Advence"
msgstr "Cash In Advence"
+#: core/library/Moka_Init.php:42
+msgid "Check Update"
+msgstr "Check Update"
+
+#: core/library/Moka_Init.php:42
+msgid "Checking"
+msgstr "Checking"
+
#: core/library/Moka_Gateway.php:293 core/library/Moka_Gateway.php:494
#: core/library/Moka_Subscriptions.php:630
msgid "Clear debug file"
@@ -197,7 +205,7 @@ msgstr "Created At"
msgid "Credit Card"
msgstr "Credit Card"
-#: core/library/Moka_Gateway.php:1155
+#: core/library/Moka_Gateway.php:1159
msgid "Credit card number not in valid format"
msgstr "Credit card number not in valid format"
@@ -210,15 +218,15 @@ msgstr "Customer Id"
msgid "Day"
msgstr "Day"
-#: core/library/Moka_Gateway.php:1105
+#: core/library/Moka_Gateway.php:1109
msgid "Dealer Commission Rate Not Found."
msgstr "Dealer Commission Rate Not Found."
-#: core/library/Moka_Gateway.php:1108
+#: core/library/Moka_Gateway.php:1112
msgid "Dealer Group Commission Rate Not Found."
msgstr "Dealer Group Commission Rate Not Found."
-#: core/library/Moka_Init.php:69
+#: core/library/Moka_Init.php:87
msgid "Default"
msgstr ""
"Default\n"
@@ -287,27 +295,27 @@ msgstr "End"
msgid "Failed"
msgstr "Failed"
-#: core/library/Moka_Gateway.php:1160
+#: core/library/Moka_Gateway.php:1164
msgid "Failed to connect to bank"
msgstr "Failed to connect to bank"
-#: core/library/Moka_Gateway.php:1153
+#: core/library/Moka_Gateway.php:1157
msgid "Failed to obtain cardholder approval"
msgstr "Failed to obtain cardholder approval"
-#: core/library/Moka_Gateway.php:1175
+#: core/library/Moka_Gateway.php:1179
msgid "Fake approval"
msgstr "Fake approval"
-#: core/library/Moka_Gateway.php:1180
+#: core/library/Moka_Gateway.php:1184
msgid "Fraud possibility"
msgstr "Fraud possibility"
-#: core/library/Moka_Gateway.php:1152
+#: core/library/Moka_Gateway.php:1156
msgid "General Error"
msgstr "General Error"
-#: core/library/Moka_Gateway.php:1156
+#: core/library/Moka_Gateway.php:1160
msgid "General rejection"
msgstr "General rejection"
@@ -320,6 +328,16 @@ msgstr "#"
msgid "Hey, the order is paid by Moka Pay!"
msgstr "Hey, the order is paid by Moka Pay!"
+#. Plugin URI of the plugin
+msgid "https://github.com/optimisthub/moka-woocommerce"
+msgstr ""
+
+#. Author URI of the plugin
+msgid ""
+"https://optimisthub.com/?utm_source=moka-woocommerce&utm_campaign=moka-"
+"woocommerce&utm_content=plugins"
+msgstr ""
+
#: core/library/Moka_Gateway.php:283 core/library/Moka_Gateway.php:484
#: core/library/Moka_Subscriptions.php:620
msgid ""
@@ -345,24 +363,24 @@ msgid "Installement"
msgstr "Installement"
#: core/library/Moka_Core.php:219 core/library/Moka_Core.php:293
-#: core/library/Moka_Gateway.php:574 core/library/Moka_Init.php:221
-#: core/library/Optimisthub_Ajax.php:342
+#: core/library/Moka_Gateway.php:574 core/library/Moka_Init.php:239
+#: core/library/Optimisthub_Ajax.php:354
msgid "Installment"
msgstr "Installment"
-#: core/library/Moka_Init.php:222
+#: core/library/Moka_Init.php:240
msgid "Installment Amount"
msgstr "Installment Amount"
-#: core/library/Moka_Gateway.php:971
+#: core/library/Moka_Gateway.php:979
msgid "Installment Fee"
msgstr "Installment Fee"
-#: core/library/Moka_Init.php:37
+#: core/library/Moka_Init.php:55
msgid "Installment Limit"
msgstr "Installment Limit"
-#: core/library/Moka_Init.php:153
+#: core/library/Moka_Init.php:171
msgid "Installment Options"
msgstr "Taksit Seçenekleri"
@@ -371,7 +389,7 @@ msgstr "Taksit Seçenekleri"
msgid "Installment Rate Test"
msgstr "Installment Rate Test"
-#: core/library/Optimisthub_Ajax.php:314
+#: core/library/Optimisthub_Ajax.php:326
msgid "Installment Shopping"
msgstr "Installment Shopping"
@@ -383,43 +401,43 @@ msgstr "Installment Table"
msgid "Installment table display on product pages"
msgstr "Installment table display on product pages"
-#: core/library/Moka_Gateway.php:1166
+#: core/library/Moka_Gateway.php:1170
msgid "Invalid account number"
msgstr "Invalid account number"
-#: core/library/Moka_Gateway.php:1054
+#: core/library/Moka_Gateway.php:1058
msgid "Invalid Currency Code."
msgstr "Invalid Currency Code."
-#: core/library/Moka_Gateway.php:1167
+#: core/library/Moka_Gateway.php:1171
msgid "Invalid CVV"
msgstr "Invalid CVV"
-#: core/library/Moka_Gateway.php:1174
+#: core/library/Moka_Gateway.php:1178
msgid "Invalid merchant"
msgstr "Invalid CVV"
-#: core/library/Moka_Gateway.php:1117
+#: core/library/Moka_Gateway.php:1121
msgid "Invalid Quantity Value."
msgstr "Invalid Quantity Value."
-#: core/library/Moka_Gateway.php:1028 core/library/Moka_Gateway.php:1048
+#: core/library/Moka_Gateway.php:1032 core/library/Moka_Gateway.php:1052
msgid "Invalid request detected. Try Again."
msgstr "Invalid request detected. Try Again."
-#: core/library/Moka_Gateway.php:1111
+#: core/library/Moka_Gateway.php:1115
msgid "Invalid Sub Merchant Name."
msgstr "Invalid Sub Merchant Name."
-#: core/library/Moka_Gateway.php:1159
+#: core/library/Moka_Gateway.php:1163
msgid "Invalid transaction"
msgstr "Invalid transaction"
-#: core/library/Moka_Gateway.php:1114
+#: core/library/Moka_Gateway.php:1118
msgid "Invalid Unit Price."
msgstr "Invalid Unit Price."
-#: core/library/Moka_Gateway.php:1093
+#: core/library/Moka_Gateway.php:1097
msgid "IP address is not available for this operation."
msgstr "IP address is not available for this operation."
@@ -427,7 +445,7 @@ msgstr "IP address is not available for this operation."
msgid "It allows you to sell products via subscription method on your site."
msgstr "It allows you to sell products via subscription method on your site."
-#: core/library/Moka_Gateway.php:1132
+#: core/library/Moka_Gateway.php:1136
msgid "It is mandatory to send the transaction amount."
msgstr "It is mandatory to send the transaction amount."
@@ -439,7 +457,7 @@ msgstr "Limit Installement"
msgid "Limit Installement By Product"
msgstr "Limit Installement By Product"
-#: core/library/Moka_Gateway.php:1171
+#: core/library/Moka_Gateway.php:1175
msgid "Lost card"
msgstr "Lost card"
@@ -447,6 +465,14 @@ msgstr "Lost card"
msgid "Moka by Isbank WooCommerce Gateway"
msgstr "Moka by Isbank WooCommerce Gateway"
+#. Plugin Name of the plugin
+msgid "Moka Payment Gateway for WooCommerce"
+msgstr ""
+
+#. Description of the plugin
+msgid "Moka Payment gateway for woocommerce"
+msgstr ""
+
#: core/library/Optimisthub_Transaction_History.php:31
#: core/library/Optimisthub_Transaction_History.php:52
msgid "Moka Payment History"
@@ -461,7 +487,7 @@ msgstr "Moka Pos Settings"
msgid "Month"
msgstr "Month"
-#: core/library/Moka_Gateway.php:1126
+#: core/library/Moka_Gateway.php:1130
msgid "Must Be One Of Dealer Product Id Or Product Code."
msgstr "Must Be One Of Dealer Product Id Or Product Code."
@@ -473,14 +499,16 @@ msgstr "Name On Card"
msgid "Next Payment"
msgstr "Next Payment"
-#: core/library/Moka_Gateway.php:1031
+#: core/library/Moka_Gateway.php:1035
msgid "No dealer found."
msgstr "No dealer found."
-#: core/library/Moka_Gateway.php:1044
+#: core/library/Moka_Gateway.php:1048
+#, fuzzy
#| msgid ""
#| "No further transactions can be made as the daily limit of the card has "
-#| "been exceeded."
+#| "been\n"
+#| " exceeded."
msgid ""
"No further transactions can be made as the daily limit of the card has been\n"
" exceeded."
@@ -488,7 +516,7 @@ msgstr ""
"No further transactions can be made as the daily limit of the card has been "
"exceeded."
-#: core/library/Moka_Gateway.php:1060 core/library/Moka_Gateway.php:1063
+#: core/library/Moka_Gateway.php:1064 core/library/Moka_Gateway.php:1067
msgid "No installments in foreign currency."
msgstr "No installments in foreign currency."
@@ -500,6 +528,10 @@ msgstr "No order has been made yet."
msgid "Not editable"
msgstr "Not editable"
+#. Author of the plugin
+msgid "Optimist Hub"
+msgstr ""
+
#: core/library/Moka_Subscriptions_History.php:57
msgid "Order ID"
msgstr "Order ID"
@@ -508,11 +540,11 @@ msgstr "Order ID"
msgid "Order Id"
msgstr "Order Id"
-#: core/library/Optimisthub_Ajax.php:212
+#: core/library/Optimisthub_Ajax.php:216
msgid "Order identifier not found"
msgstr "Order identifier not found"
-#: core/library/Optimisthub_Ajax.php:217
+#: core/library/Optimisthub_Ajax.php:221
msgid "Order not found"
msgstr "Order not found"
@@ -544,7 +576,7 @@ msgstr "Payment Failed"
msgid "Payment is processing via Moka Pay."
msgstr "Payment is processing via Moka Pay."
-#: core/library/Moka_Gateway.php:1066
+#: core/library/Moka_Gateway.php:1070
msgid "Payment Must Be Authorization."
msgstr "Payment Must Be Authorization."
@@ -564,11 +596,11 @@ msgid ""
"settings."
msgstr "Payment Failed"
-#: core/library/Moka_Gateway.php:1072
+#: core/library/Moka_Gateway.php:1076
msgid "Pool Payment Not Available For This Dealer."
msgstr "Pool Payment Not Available For This Dealer."
-#: core/library/Moka_Gateway.php:1075
+#: core/library/Moka_Gateway.php:1079
msgid "Pool Payment Required For This Dealer."
msgstr "Pool Payment Required For This Dealer."
@@ -576,7 +608,7 @@ msgstr "Pool Payment Required For This Dealer."
msgid "Position of Installment Options Tab among other tabs"
msgstr "Position of Installment Options Tab among other tabs"
-#: core/library/Moka_Gateway.php:1051
+#: core/library/Moka_Gateway.php:1055
msgid "Redirect Url Required."
msgstr "Redirect Url Required."
@@ -589,7 +621,11 @@ msgstr "Remote Connection Test"
msgid "Renewal Period"
msgstr "Renewal Period"
-#: core/library/Moka_Gateway.php:1172
+#: core/library/Moka_Init.php:39
+msgid "Report Issue"
+msgstr "Report Issue"
+
+#: core/library/Moka_Gateway.php:1176
msgid "Restricted card"
msgstr "Restricted card"
@@ -597,7 +633,7 @@ msgstr "Restricted card"
msgid "Save Settings"
msgstr "Save Settings"
-#: core/library/Moka_Gateway.php:1135
+#: core/library/Moka_Gateway.php:1139
msgid "Sending the expiry date is mandatory."
msgstr "Sending the expiry date is mandatory."
@@ -613,7 +649,7 @@ msgstr "Show Installment Total Amount"
msgid "Status"
msgstr "Status"
-#: core/library/Moka_Gateway.php:1170
+#: core/library/Moka_Gateway.php:1174
msgid "Stolen card"
msgstr "Stolen card"
@@ -634,11 +670,11 @@ msgstr "Subscription"
msgid "Subscription Features"
msgstr "Subscription Features"
-#: core/library/Optimisthub_Ajax.php:244
+#: core/library/Optimisthub_Ajax.php:248
msgid "Subscription has been successfully canceled. Please wait."
msgstr "Subscription has been successfully canceled. Please wait."
-#: core/library/Optimisthub_Ajax.php:226
+#: core/library/Optimisthub_Ajax.php:230
msgid "Subscription not found"
msgstr "Subscription not found"
@@ -657,12 +693,12 @@ msgstr "Subscriptions"
#: core/library/Moka_Gateway.php:290 core/library/Moka_Gateway.php:491
#: core/library/Moka_Subscriptions.php:627 core/library/Optimisthub_Ajax.php:75
-#: core/library/Optimisthub_Ajax.php:107 core/library/Optimisthub_Ajax.php:477
-#: core/library/Optimisthub_Ajax.php:494
+#: core/library/Optimisthub_Ajax.php:107 core/library/Optimisthub_Ajax.php:489
+#: core/library/Optimisthub_Ajax.php:506 core/library/Optimisthub_Ajax.php:515
msgid "Success"
msgstr "Success"
-#: core/library/Moka_Gateway.php:1169
+#: core/library/Moka_Gateway.php:1173
msgid "System error"
msgstr "System error"
@@ -671,6 +707,7 @@ msgid "Test Informations"
msgstr "Test Informations"
#: core/library/Moka_Gateway.php:449
+#, fuzzy
#| msgid ""
#| "TEST MODE ENABLED. In test mode, you can use the card numbers listed in\n"
#| " "
@@ -690,11 +727,11 @@ msgstr ""
"The default value is 20. You can change the tab position according to the "
"features provided by your theme or plugins. Example (like 40,60,90.)"
-#: core/library/Moka_Gateway.php:1057 core/library/Moka_Gateway.php:1102
+#: core/library/Moka_Gateway.php:1061 core/library/Moka_Gateway.php:1106
msgid "The number of installments is invalid."
msgstr "The number of installments is invalid."
-#: core/library/Moka_Gateway.php:1099
+#: core/library/Moka_Gateway.php:1103
msgid "The number of installments is not allowed."
msgstr "The number of installments is not allowed."
@@ -712,7 +749,7 @@ msgid ""
msgstr ""
"The test function can be performed after saving the merchant information."
-#: core/library/Moka_Gateway.php:1041
+#: core/library/Moka_Gateway.php:1045
msgid "There is an error in the card details, please check."
msgstr "There is an error in the card details, please check."
@@ -732,7 +769,7 @@ msgstr ""
"This field provides convenience for the separation of orders during "
"reporting for the Moka POS module used in more than one site. (Optional)"
-#: core/library/Moka_Gateway.php:1173
+#: core/library/Moka_Gateway.php:1177
msgid "Timeout"
msgstr "Timeout"
@@ -740,11 +777,11 @@ msgstr "Timeout"
msgid "Title"
msgstr "Title"
-#: core/library/Moka_Gateway.php:1078
+#: core/library/Moka_Gateway.php:1082
msgid "Tokenization Not Available For This Dealer."
msgstr "Tokenization Not Available For This Dealer."
-#: core/library/Moka_Init.php:223
+#: core/library/Moka_Init.php:241
msgid "Total Amount"
msgstr "Total Amount"
@@ -756,11 +793,11 @@ msgstr "Total."
msgid "Transaction Id"
msgstr "Transaction Id"
-#: core/library/Moka_Gateway.php:1157
+#: core/library/Moka_Gateway.php:1161
msgid "Transaction not open to cardholder"
msgstr "Transaction not open to cardholder"
-#: core/library/Moka_Gateway.php:1161
+#: core/library/Moka_Gateway.php:1165
msgid "Undefined error"
msgstr "Undefined error"
@@ -772,15 +809,15 @@ msgstr "Update installment rates via Moka"
msgid "User ID"
msgstr "User ID"
-#: core/library/Moka_Gateway.php:1179
+#: core/library/Moka_Gateway.php:1183
msgid "User is not authorised to perform this operation"
msgstr "User is not authorised to perform this operation"
-#: core/library/Moka_Gateway.php:1034
+#: core/library/Moka_Gateway.php:1038
msgid "Virtual pos is not defined for the dealer."
msgstr "Virtual pos is not defined for the dealer."
-#: core/library/Moka_Gateway.php:1096
+#: core/library/Moka_Gateway.php:1100
msgid "Virtual Pos Not Available."
msgstr "Virtual Pos Not Available."
@@ -806,7 +843,11 @@ msgstr ""
"be reversed. To continue, please enter confirmation in the field below and "
"continue the process. Otherwise, your transaction will not continue."
-#: core/library/Moka_Init.php:265
+#: core/library/Moka_Init.php:38
+msgid "Wiki"
+msgstr "Wiki"
+
+#: core/library/Moka_Init.php:285
msgid "With installments starting from"
msgstr "With installments starting from"
@@ -823,11 +864,11 @@ msgstr ""
"You can choose what the status of the order will be when your payments are "
"successfully completed."
-#: core/library/Moka_Gateway.php:1165
+#: core/library/Moka_Gateway.php:1169
msgid "Your card does not support 3D secure"
msgstr "Your card does not support 3D secure"
-#: core/library/Moka_Gateway.php:1154
+#: core/library/Moka_Gateway.php:1158
msgid "Your card has insufficient limit."
msgstr "Your card has insufficient limit."
@@ -841,11 +882,11 @@ msgstr ""
"Moka with the assurance of Moka. Your next subscription payment will be "
"taken with this card."
-#: core/library/Moka_Gateway.php:1181
+#: core/library/Moka_Gateway.php:1185
msgid "Your card is closed to internet purchases"
msgstr "Your card is closed to internet purchases"
-#: core/library/Moka_Gateway.php:1129
+#: core/library/Moka_Gateway.php:1133
msgid "Your card limit is insufficient."
msgstr "Your card limit is insufficient."
diff --git a/languages/moka-woocommerce-tr_TR.mo b/languages/moka-woocommerce-tr_TR.mo
index f539be9..0c8d6c9 100644
Binary files a/languages/moka-woocommerce-tr_TR.mo and b/languages/moka-woocommerce-tr_TR.mo differ
diff --git a/languages/moka-woocommerce-tr_TR.po b/languages/moka-woocommerce-tr_TR.po
index 4db81d8..cb16f34 100644
--- a/languages/moka-woocommerce-tr_TR.po
+++ b/languages/moka-woocommerce-tr_TR.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-08T11:49:40+00:00\n"
-"PO-Revision-Date: 2023-10-16 17:59+0000\n"
+"PO-Revision-Date: 2023-10-31 12:43+0000\n"
"Last-Translator: Administrator\n"
"Language-Team: Türkçe\n"
"Language: tr_TR\n"
@@ -21,15 +21,15 @@ msgstr ""
#: core/library/Moka_Gateway.php:185 core/library/Moka_Gateway.php:186
#: core/library/Moka_Gateway.php:187 core/library/Moka_Gateway.php:188
#: core/library/Moka_Gateway.php:189 core/library/Moka_Gateway.php:190
-#: core/library/Moka_Init.php:75
+#: core/library/Moka_Init.php:93
msgid "%s Installement"
msgstr "%s Taksit"
-#: core/library/Moka_Gateway.php:1177
+#: core/library/Moka_Gateway.php:1181
msgid "3D authorisation error"
msgstr "3D onay alma hatası"
-#: core/library/Moka_Gateway.php:1176
+#: core/library/Moka_Gateway.php:1180
msgid "3D confirmation received but money could not be withdrawn from the part"
msgstr "3D onayı alındı ancak para parttan çekilemedi"
@@ -67,15 +67,15 @@ msgstr "Aktif"
msgid "Amount"
msgstr "Tutar"
-#: core/library/Moka_Gateway.php:1188 core/library/Optimisthub_Ajax.php:247
+#: core/library/Moka_Gateway.php:1192 core/library/Optimisthub_Ajax.php:251
msgid "An unexpected error occurred"
msgstr "Beklenmeyen bir hata oluştu"
-#: core/library/Moka_Gateway.php:1138
+#: core/library/Moka_Gateway.php:1142
msgid "An unexpected error occurred."
msgstr "Beklenmeyen bir hata oluştu."
-#: core/library/Moka_Gateway.php:1037
+#: core/library/Moka_Gateway.php:1041
msgid "Any of the daily limits defined for the dealer have been exceeded."
msgstr "Kartın günlük limiti aşıldığı için daha fazla işlem yapılamaz."
@@ -87,15 +87,15 @@ msgstr "Api Şifresi"
msgid "Api Username"
msgstr "Api Kullanıcı Adı"
-#: core/library/Moka_Gateway.php:1168
+#: core/library/Moka_Gateway.php:1172
msgid "Approval mechanism not available"
msgstr "Onay mekanizması mevcut değil"
-#: core/library/Moka_Gateway.php:1069
+#: core/library/Moka_Gateway.php:1073
msgid "Authorization Forbidden For This Dealer."
msgstr "Üye İş Yerinin Yetkilendirmesi Yoktur."
-#: core/library/Moka_Gateway.php:1182
+#: core/library/Moka_Gateway.php:1186
msgid "Bank Declined Transaction"
msgstr "Banka İşlemi Reddetti"
@@ -104,19 +104,19 @@ msgstr "Banka İşlemi Reddetti"
msgid "Bank Identification Test"
msgstr "Banka Tanımlama Testi"
-#: core/library/Moka_Gateway.php:1178
+#: core/library/Moka_Gateway.php:1182
msgid "Bank or Card does not support 3D secure"
msgstr "Banka veya Kart 3D secure desteklemiyor"
-#: core/library/Moka_Gateway.php:1162
+#: core/library/Moka_Gateway.php:1166
msgid "Bank SSL error"
msgstr "Banka SSL hatası"
-#: core/library/Moka_Gateway.php:1120
+#: core/library/Moka_Gateway.php:1124
msgid "Basket Amount Is Not Equal Payment Amount."
msgstr "Sepet Tutarı Ödeme Tutarına Eşit Değil."
-#: core/library/Moka_Gateway.php:1123
+#: core/library/Moka_Gateway.php:1127
msgid "Basket Product Not Found In Your Product List."
msgstr "Sepetteki Ürün, Ürün Listenizde Bulunamadı."
@@ -124,7 +124,7 @@ msgstr "Sepetteki Ürün, Ürün Listenizde Bulunamadı."
msgid "Begining: "
msgstr "Başlangıç:"
-#: core/library/Moka_Gateway.php:1163
+#: core/library/Moka_Gateway.php:1167
msgid "Call your bank for manual confirmation"
msgstr "Manual onay için bankanızı arayınız"
@@ -134,7 +134,7 @@ msgstr "İptal"
#: core/library/Moka_Gateway.php:294 core/library/Moka_Gateway.php:495
#: core/library/Moka_Subscriptions.php:631
-#: core/library/Optimisthub_Ajax.php:472 core/library/Optimisthub_Ajax.php:488
+#: core/library/Optimisthub_Ajax.php:484 core/library/Optimisthub_Ajax.php:500
msgid "Cant find debug file"
msgstr "Kayıt dosyası bulunamadı"
@@ -150,11 +150,11 @@ msgstr "Güvenlik Kodunuz"
msgid "Card details have been successfully verified."
msgstr "Kart bilgileri başarıyla doğrulandı."
-#: core/library/Moka_Gateway.php:1164
+#: core/library/Moka_Gateway.php:1168
msgid "Card details incorrect"
msgstr "Kart bilgileri hatalı"
-#: core/library/Moka_Gateway.php:1158
+#: core/library/Moka_Gateway.php:1162
msgid "Card expiry date incorrect"
msgstr "Kartın son kullanma tarihi hatalı"
@@ -162,18 +162,26 @@ msgstr "Kartın son kullanma tarihi hatalı"
msgid "Card Number"
msgstr "Kart Numaranız"
-#: core/library/Moka_Gateway.php:1081
+#: core/library/Moka_Gateway.php:1085
msgid "Card Token Cannot Use With Save Card."
msgstr "Kart Doğrulaması, Kart Kayıt İşlemi İçin Kullanılamaz."
-#: core/library/Moka_Gateway.php:1084
+#: core/library/Moka_Gateway.php:1088
msgid "Card Token Not Found."
msgstr "Kart Doğrulaması Bulunamadı."
-#: core/library/Optimisthub_Ajax.php:342
+#: core/library/Optimisthub_Ajax.php:354
msgid "Cash In Advence"
msgstr "Tek Çekim"
+#: core/library/Moka_Init.php:42
+msgid "Check Update"
+msgstr "Güncelleme Kontrol"
+
+#: core/library/Moka_Init.php:42
+msgid "Checking"
+msgstr "Kontrol Ediliyor"
+
#: core/library/Moka_Gateway.php:293 core/library/Moka_Gateway.php:494
#: core/library/Moka_Subscriptions.php:630
msgid "Clear debug file"
@@ -195,7 +203,7 @@ msgstr "Oluşturulma"
msgid "Credit Card"
msgstr "Kredi Kartı"
-#: core/library/Moka_Gateway.php:1155
+#: core/library/Moka_Gateway.php:1159
msgid "Credit card number not in valid format"
msgstr "Kredi kartı numarası geçerli formatta değil"
@@ -208,15 +216,15 @@ msgstr "Müşteri Id"
msgid "Day"
msgstr "Gün"
-#: core/library/Moka_Gateway.php:1105
+#: core/library/Moka_Gateway.php:1109
msgid "Dealer Commission Rate Not Found."
msgstr "Üye İş Yeri Komisyon Oranı Bulunamadı."
-#: core/library/Moka_Gateway.php:1108
+#: core/library/Moka_Gateway.php:1112
msgid "Dealer Group Commission Rate Not Found."
msgstr "Üye İş Yeri Komisyon Oranı Bulunamadı."
-#: core/library/Moka_Init.php:69
+#: core/library/Moka_Init.php:87
msgid "Default"
msgstr "Varsayılan"
@@ -284,27 +292,27 @@ msgstr "Bitti"
msgid "Failed"
msgstr "Başarısız"
-#: core/library/Moka_Gateway.php:1160
+#: core/library/Moka_Gateway.php:1164
msgid "Failed to connect to bank"
msgstr "Bankaya bağlanılamadı"
-#: core/library/Moka_Gateway.php:1153
+#: core/library/Moka_Gateway.php:1157
msgid "Failed to obtain cardholder approval"
msgstr "Kart sahibi onayı alınamadı"
-#: core/library/Moka_Gateway.php:1175
+#: core/library/Moka_Gateway.php:1179
msgid "Fake approval"
msgstr "Sahte onay"
-#: core/library/Moka_Gateway.php:1180
+#: core/library/Moka_Gateway.php:1184
msgid "Fraud possibility"
msgstr "Fraud olasılığı"
-#: core/library/Moka_Gateway.php:1152
+#: core/library/Moka_Gateway.php:1156
msgid "General Error"
msgstr "Genel Hata"
-#: core/library/Moka_Gateway.php:1156
+#: core/library/Moka_Gateway.php:1160
msgid "General rejection"
msgstr "Genel red"
@@ -317,6 +325,16 @@ msgstr "#"
msgid "Hey, the order is paid by Moka Pay!"
msgstr "Sipariş ödemesi başarılı bir şekilde tamamlandı!"
+#. Plugin URI of the plugin
+msgid "https://github.com/optimisthub/moka-woocommerce"
+msgstr ""
+
+#. Author URI of the plugin
+msgid ""
+"https://optimisthub.com/?utm_source=moka-woocommerce&utm_campaign=moka-"
+"woocommerce&utm_content=plugins"
+msgstr ""
+
#: core/library/Moka_Gateway.php:283 core/library/Moka_Gateway.php:484
#: core/library/Moka_Subscriptions.php:620
msgid ""
@@ -342,24 +360,24 @@ msgid "Installement"
msgstr "Taksitli Alışveriş"
#: core/library/Moka_Core.php:219 core/library/Moka_Core.php:293
-#: core/library/Moka_Gateway.php:574 core/library/Moka_Init.php:221
-#: core/library/Optimisthub_Ajax.php:342
+#: core/library/Moka_Gateway.php:574 core/library/Moka_Init.php:239
+#: core/library/Optimisthub_Ajax.php:354
msgid "Installment"
msgstr "Taksit"
-#: core/library/Moka_Init.php:222
+#: core/library/Moka_Init.php:240
msgid "Installment Amount"
msgstr "Taksit Tutarı"
-#: core/library/Moka_Gateway.php:971
+#: core/library/Moka_Gateway.php:979
msgid "Installment Fee"
msgstr "Taksitli Alışveriş Komisyonu"
-#: core/library/Moka_Init.php:37
+#: core/library/Moka_Init.php:55
msgid "Installment Limit"
msgstr "Taksit Limiti"
-#: core/library/Moka_Init.php:153
+#: core/library/Moka_Init.php:171
msgid "Installment Options"
msgstr "Taksit Seçenekleri"
@@ -368,7 +386,7 @@ msgstr "Taksit Seçenekleri"
msgid "Installment Rate Test"
msgstr "Taksit Oranıları Testi"
-#: core/library/Optimisthub_Ajax.php:314
+#: core/library/Optimisthub_Ajax.php:326
msgid "Installment Shopping"
msgstr "Taksitli Alışveriş"
@@ -380,43 +398,43 @@ msgstr "Taksit Tablosu"
msgid "Installment table display on product pages"
msgstr "Ürün sayfalarında taksit tablosu gösterimi"
-#: core/library/Moka_Gateway.php:1166
+#: core/library/Moka_Gateway.php:1170
msgid "Invalid account number"
msgstr "Geçersiz hesap numarası"
-#: core/library/Moka_Gateway.php:1054
+#: core/library/Moka_Gateway.php:1058
msgid "Invalid Currency Code."
msgstr "Geçersiz Para Birimi Kodu."
-#: core/library/Moka_Gateway.php:1167
+#: core/library/Moka_Gateway.php:1171
msgid "Invalid CVV"
msgstr "Geçersiz CVV"
-#: core/library/Moka_Gateway.php:1174
+#: core/library/Moka_Gateway.php:1178
msgid "Invalid merchant"
msgstr "Geçersiz işyeri"
-#: core/library/Moka_Gateway.php:1117
+#: core/library/Moka_Gateway.php:1121
msgid "Invalid Quantity Value."
msgstr "Geçersiz Miktar Değeri."
-#: core/library/Moka_Gateway.php:1028 core/library/Moka_Gateway.php:1048
+#: core/library/Moka_Gateway.php:1032 core/library/Moka_Gateway.php:1052
msgid "Invalid request detected. Try Again."
msgstr "Geçersiz istek tespit edildi. Tekrar deneyiniz."
-#: core/library/Moka_Gateway.php:1111
+#: core/library/Moka_Gateway.php:1115
msgid "Invalid Sub Merchant Name."
msgstr "Geçersiz Alt Satıcı Adı."
-#: core/library/Moka_Gateway.php:1159
+#: core/library/Moka_Gateway.php:1163
msgid "Invalid transaction"
msgstr "Geçersiz işlem"
-#: core/library/Moka_Gateway.php:1114
+#: core/library/Moka_Gateway.php:1118
msgid "Invalid Unit Price."
msgstr "Geçersiz Birim Fiyat."
-#: core/library/Moka_Gateway.php:1093
+#: core/library/Moka_Gateway.php:1097
msgid "IP address is not available for this operation."
msgstr "IP adresi bu işlem için kullanılamaz."
@@ -424,7 +442,7 @@ msgstr "IP adresi bu işlem için kullanılamaz."
msgid "It allows you to sell products via subscription method on your site."
msgstr "Siteniz üzerinden abonelik yöntemi ile ürün satışı yapmanızı sağlar."
-#: core/library/Moka_Gateway.php:1132
+#: core/library/Moka_Gateway.php:1136
msgid "It is mandatory to send the transaction amount."
msgstr "İşlem tutarı göndermek zorunludur."
@@ -436,7 +454,7 @@ msgstr "Taksit Limitle"
msgid "Limit Installement By Product"
msgstr "Ürüne Göre Taksit Limitle"
-#: core/library/Moka_Gateway.php:1171
+#: core/library/Moka_Gateway.php:1175
msgid "Lost card"
msgstr "Kayıp kart"
@@ -444,6 +462,14 @@ msgstr "Kayıp kart"
msgid "Moka by Isbank WooCommerce Gateway"
msgstr "İş Bankası desteği ile Moka Pay"
+#. Plugin Name of the plugin
+msgid "Moka Payment Gateway for WooCommerce"
+msgstr ""
+
+#. Description of the plugin
+msgid "Moka Payment gateway for woocommerce"
+msgstr ""
+
#: core/library/Optimisthub_Transaction_History.php:31
#: core/library/Optimisthub_Transaction_History.php:52
msgid "Moka Payment History"
@@ -458,7 +484,7 @@ msgstr "Moka Pos Ayarları"
msgid "Month"
msgstr "Ay"
-#: core/library/Moka_Gateway.php:1126
+#: core/library/Moka_Gateway.php:1130
msgid "Must Be One Of Dealer Product Id Or Product Code."
msgstr "Bayi Ürün Kimliği veya Ürün Kodundan Biri Olmalıdır."
@@ -470,20 +496,22 @@ msgstr "Kart Üzerindeki İsim"
msgid "Next Payment"
msgstr "Sonraki Ödeme"
-#: core/library/Moka_Gateway.php:1031
+#: core/library/Moka_Gateway.php:1035
msgid "No dealer found."
msgstr "Üye işyeri bulunamadı."
-#: core/library/Moka_Gateway.php:1044
+#: core/library/Moka_Gateway.php:1048
+#, fuzzy
#| msgid ""
#| "No further transactions can be made as the daily limit of the card has "
-#| "been exceeded."
+#| "been\n"
+#| " exceeded."
msgid ""
"No further transactions can be made as the daily limit of the card has been\n"
" exceeded."
msgstr "Kartın günlük limiti aşıldığı için daha fazla işlem yapılamaz."
-#: core/library/Moka_Gateway.php:1060 core/library/Moka_Gateway.php:1063
+#: core/library/Moka_Gateway.php:1064 core/library/Moka_Gateway.php:1067
msgid "No installments in foreign currency."
msgstr "Döviz ile taksit yapılamaz."
@@ -495,6 +523,10 @@ msgstr "Henüz bir sipariş verilmedi."
msgid "Not editable"
msgstr "Düzenlenemez"
+#. Author of the plugin
+msgid "Optimist Hub"
+msgstr ""
+
#: core/library/Moka_Subscriptions_History.php:57
msgid "Order ID"
msgstr "Şipariş No"
@@ -503,11 +535,11 @@ msgstr "Şipariş No"
msgid "Order Id"
msgstr "Sipariş Id"
-#: core/library/Optimisthub_Ajax.php:212
+#: core/library/Optimisthub_Ajax.php:216
msgid "Order identifier not found"
msgstr "Sipariş tanımlayıcısı bulunamadı"
-#: core/library/Optimisthub_Ajax.php:217
+#: core/library/Optimisthub_Ajax.php:221
msgid "Order not found"
msgstr "Sipariş bulunamadı"
@@ -541,7 +573,7 @@ msgstr "Ödeme Başarısız"
msgid "Payment is processing via Moka Pay."
msgstr "Moka Pay ile ödeme işlemi tamamlanıyor."
-#: core/library/Moka_Gateway.php:1066
+#: core/library/Moka_Gateway.php:1070
msgid "Payment Must Be Authorization."
msgstr "Ödeme Yetkilendirmesi Olmalıdır."
@@ -565,11 +597,11 @@ msgid ""
msgstr ""
"Lütfen Moka Pay ayarlarından, taksit seçeneğini aktif edip ayarları kaydedin."
-#: core/library/Moka_Gateway.php:1072
+#: core/library/Moka_Gateway.php:1076
msgid "Pool Payment Not Available For This Dealer."
msgstr "Havuz Ödemesi Üye İş Yeri İçin Mevcut Değildir."
-#: core/library/Moka_Gateway.php:1075
+#: core/library/Moka_Gateway.php:1079
msgid "Pool Payment Required For This Dealer."
msgstr "Üye İş Yeri İçin Havuz Ödemesi Gerekmektedir."
@@ -577,7 +609,7 @@ msgstr "Üye İş Yeri İçin Havuz Ödemesi Gerekmektedir."
msgid "Position of Installment Options Tab among other tabs"
msgstr "Taksit Seçenekleri Sekmesinin diğer sekmeler arasındaki pozisyonu"
-#: core/library/Moka_Gateway.php:1051
+#: core/library/Moka_Gateway.php:1055
msgid "Redirect Url Required."
msgstr "Yönlendirme URL'si Gereklidir."
@@ -590,7 +622,11 @@ msgstr "Sunucu Bağlantı Testi"
msgid "Renewal Period"
msgstr "Yenilenme Periyodu"
-#: core/library/Moka_Gateway.php:1172
+#: core/library/Moka_Init.php:39
+msgid "Report Issue"
+msgstr "Sorun Bildir"
+
+#: core/library/Moka_Gateway.php:1176
msgid "Restricted card"
msgstr "Kısıtlı kart"
@@ -598,7 +634,7 @@ msgstr "Kısıtlı kart"
msgid "Save Settings"
msgstr "Ayarları Kaydet"
-#: core/library/Moka_Gateway.php:1135
+#: core/library/Moka_Gateway.php:1139
msgid "Sending the expiry date is mandatory."
msgstr "Son kullanım tarihi gönderme zorunludur."
@@ -614,7 +650,7 @@ msgstr "Taksit Toplam Tutarını Göster"
msgid "Status"
msgstr "Durum"
-#: core/library/Moka_Gateway.php:1170
+#: core/library/Moka_Gateway.php:1174
msgid "Stolen card"
msgstr "Çalıntı kart"
@@ -635,11 +671,11 @@ msgstr "Abonelikler"
msgid "Subscription Features"
msgstr "Abonelik Özellikleri"
-#: core/library/Optimisthub_Ajax.php:244
+#: core/library/Optimisthub_Ajax.php:248
msgid "Subscription has been successfully canceled. Please wait."
msgstr "Abonelik başarıyla iptal edildi. Lütfen bekleyiniz."
-#: core/library/Optimisthub_Ajax.php:226
+#: core/library/Optimisthub_Ajax.php:230
msgid "Subscription not found"
msgstr "Abonelik bulunamadı"
@@ -658,12 +694,12 @@ msgstr "Abonelikler"
#: core/library/Moka_Gateway.php:290 core/library/Moka_Gateway.php:491
#: core/library/Moka_Subscriptions.php:627 core/library/Optimisthub_Ajax.php:75
-#: core/library/Optimisthub_Ajax.php:107 core/library/Optimisthub_Ajax.php:477
-#: core/library/Optimisthub_Ajax.php:494
+#: core/library/Optimisthub_Ajax.php:107 core/library/Optimisthub_Ajax.php:489
+#: core/library/Optimisthub_Ajax.php:506 core/library/Optimisthub_Ajax.php:515
msgid "Success"
msgstr "Başarılı"
-#: core/library/Moka_Gateway.php:1169
+#: core/library/Moka_Gateway.php:1173
msgid "System error"
msgstr "Sistem hatası"
@@ -672,6 +708,7 @@ msgid "Test Informations"
msgstr "Üye İşyeri Bilgilerini Test Et"
#: core/library/Moka_Gateway.php:449
+#, fuzzy
#| msgid ""
#| "TEST MODE ENABLED. In test mode, you can use the card numbers listed in\n"
#| " "
@@ -692,11 +729,11 @@ msgstr ""
"sağladığı niteliklere göre sekme pozisyonunu değiştirebilirsiniz. Örnek (40,"
"60,90 gibi.)"
-#: core/library/Moka_Gateway.php:1057 core/library/Moka_Gateway.php:1102
+#: core/library/Moka_Gateway.php:1061 core/library/Moka_Gateway.php:1106
msgid "The number of installments is invalid."
msgstr "Taksit sayısı geçersiz."
-#: core/library/Moka_Gateway.php:1099
+#: core/library/Moka_Gateway.php:1103
msgid "The number of installments is not allowed."
msgstr "Taksit sayısına izin verilmiyor."
@@ -714,7 +751,7 @@ msgid ""
msgstr ""
"Test fonksiyonu, üye işyeri bilgilerini kaydettikten sonra yapılabilir."
-#: core/library/Moka_Gateway.php:1041
+#: core/library/Moka_Gateway.php:1045
msgid "There is an error in the card details, please check."
msgstr "Kart bilgilerinde hata var lütfen kontrol ediniz."
@@ -734,7 +771,7 @@ msgstr ""
"Bu alan birden çok sitede kullanılan Moka POS modülü için raporlama "
"esnasında siparişlerin ayrıştırılmasında kolaylık sağlar. (Opsiyonel)"
-#: core/library/Moka_Gateway.php:1173
+#: core/library/Moka_Gateway.php:1177
msgid "Timeout"
msgstr "Zaman aşımı"
@@ -742,11 +779,11 @@ msgstr "Zaman aşımı"
msgid "Title"
msgstr "Başlık"
-#: core/library/Moka_Gateway.php:1078
+#: core/library/Moka_Gateway.php:1082
msgid "Tokenization Not Available For This Dealer."
msgstr "Üye İş Yeri Tokenizasyon İçin Yetkili Değildir."
-#: core/library/Moka_Init.php:223
+#: core/library/Moka_Init.php:241
msgid "Total Amount"
msgstr "Toplam Tutar"
@@ -758,11 +795,11 @@ msgstr "Toplam."
msgid "Transaction Id"
msgstr "İşlem Id"
-#: core/library/Moka_Gateway.php:1157
+#: core/library/Moka_Gateway.php:1161
msgid "Transaction not open to cardholder"
msgstr "Kart sahibine açık olmayan işlem"
-#: core/library/Moka_Gateway.php:1161
+#: core/library/Moka_Gateway.php:1165
msgid "Undefined error"
msgstr "Tanımsız hata"
@@ -774,15 +811,15 @@ msgstr "Taksit oranlarını Moka ile Güncelle"
msgid "User ID"
msgstr "Kullanıcı"
-#: core/library/Moka_Gateway.php:1179
+#: core/library/Moka_Gateway.php:1183
msgid "User is not authorised to perform this operation"
msgstr "Kullanıcı bu işlemi yapmaya yetkili değil"
-#: core/library/Moka_Gateway.php:1034
+#: core/library/Moka_Gateway.php:1038
msgid "Virtual pos is not defined for the dealer."
msgstr "Üye işyeri için sanal pos tanımı yapılmamış."
-#: core/library/Moka_Gateway.php:1096
+#: core/library/Moka_Gateway.php:1100
msgid "Virtual Pos Not Available."
msgstr "Sanal Pos Kullanılamıyor."
@@ -808,7 +845,11 @@ msgstr ""
"alınamaz. Devam etmek için lütfen alttaki alana onay yazıp işleme devam "
"ediniz.Aksi halde işlemniz devam etmeyecektir."
-#: core/library/Moka_Init.php:265
+#: core/library/Moka_Init.php:38
+msgid "Wiki"
+msgstr "Wiki"
+
+#: core/library/Moka_Init.php:285
msgid "With installments starting from"
msgstr "den başlayan taksitlerle"
@@ -825,11 +866,11 @@ msgstr ""
"Ödemeleriniz başarılı bir şekilde tamamlandığında siparişin durumunun ne "
"olacağını seçebilirsiniz."
-#: core/library/Moka_Gateway.php:1165
+#: core/library/Moka_Gateway.php:1169
msgid "Your card does not support 3D secure"
msgstr "Katınız 3D secure desteklemiyor"
-#: core/library/Moka_Gateway.php:1154
+#: core/library/Moka_Gateway.php:1158
msgid "Your card has insufficient limit."
msgstr "Kartınızın limiti yetersiz."
@@ -842,11 +883,11 @@ msgstr ""
"Ödeme esnasında eklemiş olduğunuz kart bilgileriniz, Moka güvencesi ile Moka "
"tarafından saklanacaktır. Sonraki abonelik ödemeniz bu kart ile alınacaktır."
-#: core/library/Moka_Gateway.php:1181
+#: core/library/Moka_Gateway.php:1185
msgid "Your card is closed to internet purchases"
msgstr "Kartınız internet alışverişlerine kapalıdır"
-#: core/library/Moka_Gateway.php:1129
+#: core/library/Moka_Gateway.php:1133
msgid "Your card limit is insufficient."
msgstr "Kart limitiniz yetersiz."
diff --git a/languages/moka-woocommerce.pot b/languages/moka-woocommerce.pot
index 012cd0a..90bb2eb 100644
--- a/languages/moka-woocommerce.pot
+++ b/languages/moka-woocommerce.pot
@@ -2,14 +2,14 @@
# This file is distributed under the same license as the Moka Payment Gateway for WooCommerce plugin.
msgid ""
msgstr ""
-"Project-Id-Version: Moka Payment Gateway for WooCommerce 3.7.9\n"
+"Project-Id-Version: Moka Payment Gateway for WooCommerce 3.8.3\n"
"Report-Msgid-Bugs-To: https://github.com/optimisthub/moka-woocommerce\n"
"Last-Translator: Cuneyt Cil \n"
"Language-Team: Optimisthub \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"POT-Creation-Date: 2023-10-01T19:23:52+03:00\n"
+"POT-Creation-Date: 2023-10-31T15:41:06+03:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: moka-woocommerce\n"
@@ -29,8 +29,8 @@ msgstr ""
#: core/library/Moka_Core.php:219
#: core/library/Moka_Core.php:293
#: core/library/Moka_Gateway.php:574
-#: core/library/Moka_Init.php:221
-#: core/library/Optimisthub_Ajax.php:342
+#: core/library/Moka_Init.php:239
+#: core/library/Optimisthub_Ajax.php:354
msgid "Installment"
msgstr ""
@@ -152,7 +152,7 @@ msgstr ""
#: core/library/Moka_Gateway.php:188
#: core/library/Moka_Gateway.php:189
#: core/library/Moka_Gateway.php:190
-#: core/library/Moka_Init.php:75
+#: core/library/Moka_Init.php:93
msgid "%s Installement"
msgstr ""
@@ -252,8 +252,9 @@ msgstr ""
#: core/library/Moka_Subscriptions.php:627
#: core/library/Optimisthub_Ajax.php:75
#: core/library/Optimisthub_Ajax.php:107
-#: core/library/Optimisthub_Ajax.php:477
-#: core/library/Optimisthub_Ajax.php:494
+#: core/library/Optimisthub_Ajax.php:489
+#: core/library/Optimisthub_Ajax.php:506
+#: core/library/Optimisthub_Ajax.php:515
msgid "Success"
msgstr ""
@@ -278,8 +279,8 @@ msgstr ""
#: core/library/Moka_Gateway.php:294
#: core/library/Moka_Gateway.php:495
#: core/library/Moka_Subscriptions.php:631
-#: core/library/Optimisthub_Ajax.php:472
-#: core/library/Optimisthub_Ajax.php:488
+#: core/library/Optimisthub_Ajax.php:484
+#: core/library/Optimisthub_Ajax.php:500
msgid "Cant find debug file"
msgstr ""
@@ -373,293 +374,309 @@ msgstr ""
msgid "Your payment could not be collected. Please try again."
msgstr ""
-#: core/library/Moka_Gateway.php:971
+#: core/library/Moka_Gateway.php:979
msgid "Installment Fee"
msgstr ""
-#: core/library/Moka_Gateway.php:1028
-#: core/library/Moka_Gateway.php:1048
+#: core/library/Moka_Gateway.php:1032
+#: core/library/Moka_Gateway.php:1052
msgid "Invalid request detected. Try Again."
msgstr ""
-#: core/library/Moka_Gateway.php:1031
+#: core/library/Moka_Gateway.php:1035
msgid "No dealer found."
msgstr ""
-#: core/library/Moka_Gateway.php:1034
+#: core/library/Moka_Gateway.php:1038
msgid "Virtual pos is not defined for the dealer."
msgstr ""
-#: core/library/Moka_Gateway.php:1037
+#: core/library/Moka_Gateway.php:1041
msgid "Any of the daily limits defined for the dealer have been exceeded."
msgstr ""
-#: core/library/Moka_Gateway.php:1041
+#: core/library/Moka_Gateway.php:1045
msgid "There is an error in the card details, please check."
msgstr ""
-#: core/library/Moka_Gateway.php:1044
+#: core/library/Moka_Gateway.php:1048
msgid ""
"No further transactions can be made as the daily limit of the card has been\r\n"
" exceeded."
msgstr ""
-#: core/library/Moka_Gateway.php:1051
+#: core/library/Moka_Gateway.php:1055
msgid "Redirect Url Required."
msgstr ""
-#: core/library/Moka_Gateway.php:1054
+#: core/library/Moka_Gateway.php:1058
msgid "Invalid Currency Code."
msgstr ""
-#: core/library/Moka_Gateway.php:1057
-#: core/library/Moka_Gateway.php:1102
+#: core/library/Moka_Gateway.php:1061
+#: core/library/Moka_Gateway.php:1106
msgid "The number of installments is invalid."
msgstr ""
-#: core/library/Moka_Gateway.php:1060
-#: core/library/Moka_Gateway.php:1063
+#: core/library/Moka_Gateway.php:1064
+#: core/library/Moka_Gateway.php:1067
msgid "No installments in foreign currency."
msgstr ""
-#: core/library/Moka_Gateway.php:1066
+#: core/library/Moka_Gateway.php:1070
msgid "Payment Must Be Authorization."
msgstr ""
-#: core/library/Moka_Gateway.php:1069
+#: core/library/Moka_Gateway.php:1073
msgid "Authorization Forbidden For This Dealer."
msgstr ""
-#: core/library/Moka_Gateway.php:1072
+#: core/library/Moka_Gateway.php:1076
msgid "Pool Payment Not Available For This Dealer."
msgstr ""
-#: core/library/Moka_Gateway.php:1075
+#: core/library/Moka_Gateway.php:1079
msgid "Pool Payment Required For This Dealer."
msgstr ""
-#: core/library/Moka_Gateway.php:1078
+#: core/library/Moka_Gateway.php:1082
msgid "Tokenization Not Available For This Dealer."
msgstr ""
-#: core/library/Moka_Gateway.php:1081
+#: core/library/Moka_Gateway.php:1085
msgid "Card Token Cannot Use With Save Card."
msgstr ""
-#: core/library/Moka_Gateway.php:1084
+#: core/library/Moka_Gateway.php:1088
msgid "Card Token Not Found."
msgstr ""
-#: core/library/Moka_Gateway.php:1093
+#: core/library/Moka_Gateway.php:1097
msgid "IP address is not available for this operation."
msgstr ""
-#: core/library/Moka_Gateway.php:1096
+#: core/library/Moka_Gateway.php:1100
msgid "Virtual Pos Not Available."
msgstr ""
-#: core/library/Moka_Gateway.php:1099
+#: core/library/Moka_Gateway.php:1103
msgid "The number of installments is not allowed."
msgstr ""
-#: core/library/Moka_Gateway.php:1105
+#: core/library/Moka_Gateway.php:1109
msgid "Dealer Commission Rate Not Found."
msgstr ""
-#: core/library/Moka_Gateway.php:1108
+#: core/library/Moka_Gateway.php:1112
msgid "Dealer Group Commission Rate Not Found."
msgstr ""
-#: core/library/Moka_Gateway.php:1111
+#: core/library/Moka_Gateway.php:1115
msgid "Invalid Sub Merchant Name."
msgstr ""
-#: core/library/Moka_Gateway.php:1114
+#: core/library/Moka_Gateway.php:1118
msgid "Invalid Unit Price."
msgstr ""
-#: core/library/Moka_Gateway.php:1117
+#: core/library/Moka_Gateway.php:1121
msgid "Invalid Quantity Value."
msgstr ""
-#: core/library/Moka_Gateway.php:1120
+#: core/library/Moka_Gateway.php:1124
msgid "Basket Amount Is Not Equal Payment Amount."
msgstr ""
-#: core/library/Moka_Gateway.php:1123
+#: core/library/Moka_Gateway.php:1127
msgid "Basket Product Not Found In Your Product List."
msgstr ""
-#: core/library/Moka_Gateway.php:1126
+#: core/library/Moka_Gateway.php:1130
msgid "Must Be One Of Dealer Product Id Or Product Code."
msgstr ""
-#: core/library/Moka_Gateway.php:1129
+#: core/library/Moka_Gateway.php:1133
msgid "Your card limit is insufficient."
msgstr ""
-#: core/library/Moka_Gateway.php:1132
+#: core/library/Moka_Gateway.php:1136
msgid "It is mandatory to send the transaction amount."
msgstr ""
-#: core/library/Moka_Gateway.php:1135
+#: core/library/Moka_Gateway.php:1139
msgid "Sending the expiry date is mandatory."
msgstr ""
-#: core/library/Moka_Gateway.php:1138
+#: core/library/Moka_Gateway.php:1142
msgid "An unexpected error occurred."
msgstr ""
-#: core/library/Moka_Gateway.php:1152
+#: core/library/Moka_Gateway.php:1156
msgid "General Error"
msgstr ""
-#: core/library/Moka_Gateway.php:1153
+#: core/library/Moka_Gateway.php:1157
msgid "Failed to obtain cardholder approval"
msgstr ""
-#: core/library/Moka_Gateway.php:1154
+#: core/library/Moka_Gateway.php:1158
msgid "Your card has insufficient limit."
msgstr ""
-#: core/library/Moka_Gateway.php:1155
+#: core/library/Moka_Gateway.php:1159
msgid "Credit card number not in valid format"
msgstr ""
-#: core/library/Moka_Gateway.php:1156
+#: core/library/Moka_Gateway.php:1160
msgid "General rejection"
msgstr ""
-#: core/library/Moka_Gateway.php:1157
+#: core/library/Moka_Gateway.php:1161
msgid "Transaction not open to cardholder"
msgstr ""
-#: core/library/Moka_Gateway.php:1158
+#: core/library/Moka_Gateway.php:1162
msgid "Card expiry date incorrect"
msgstr ""
-#: core/library/Moka_Gateway.php:1159
+#: core/library/Moka_Gateway.php:1163
msgid "Invalid transaction"
msgstr ""
-#: core/library/Moka_Gateway.php:1160
+#: core/library/Moka_Gateway.php:1164
msgid "Failed to connect to bank"
msgstr ""
-#: core/library/Moka_Gateway.php:1161
+#: core/library/Moka_Gateway.php:1165
msgid "Undefined error"
msgstr ""
-#: core/library/Moka_Gateway.php:1162
+#: core/library/Moka_Gateway.php:1166
msgid "Bank SSL error"
msgstr ""
-#: core/library/Moka_Gateway.php:1163
+#: core/library/Moka_Gateway.php:1167
msgid "Call your bank for manual confirmation"
msgstr ""
-#: core/library/Moka_Gateway.php:1164
+#: core/library/Moka_Gateway.php:1168
msgid "Card details incorrect"
msgstr ""
-#: core/library/Moka_Gateway.php:1165
+#: core/library/Moka_Gateway.php:1169
msgid "Your card does not support 3D secure"
msgstr ""
-#: core/library/Moka_Gateway.php:1166
+#: core/library/Moka_Gateway.php:1170
msgid "Invalid account number"
msgstr ""
-#: core/library/Moka_Gateway.php:1167
+#: core/library/Moka_Gateway.php:1171
msgid "Invalid CVV"
msgstr ""
-#: core/library/Moka_Gateway.php:1168
+#: core/library/Moka_Gateway.php:1172
msgid "Approval mechanism not available"
msgstr ""
-#: core/library/Moka_Gateway.php:1169
+#: core/library/Moka_Gateway.php:1173
msgid "System error"
msgstr ""
-#: core/library/Moka_Gateway.php:1170
+#: core/library/Moka_Gateway.php:1174
msgid "Stolen card"
msgstr ""
-#: core/library/Moka_Gateway.php:1171
+#: core/library/Moka_Gateway.php:1175
msgid "Lost card"
msgstr ""
-#: core/library/Moka_Gateway.php:1172
+#: core/library/Moka_Gateway.php:1176
msgid "Restricted card"
msgstr ""
-#: core/library/Moka_Gateway.php:1173
+#: core/library/Moka_Gateway.php:1177
msgid "Timeout"
msgstr ""
-#: core/library/Moka_Gateway.php:1174
+#: core/library/Moka_Gateway.php:1178
msgid "Invalid merchant"
msgstr ""
-#: core/library/Moka_Gateway.php:1175
+#: core/library/Moka_Gateway.php:1179
msgid "Fake approval"
msgstr ""
-#: core/library/Moka_Gateway.php:1176
+#: core/library/Moka_Gateway.php:1180
msgid "3D confirmation received but money could not be withdrawn from the part"
msgstr ""
-#: core/library/Moka_Gateway.php:1177
+#: core/library/Moka_Gateway.php:1181
msgid "3D authorisation error"
msgstr ""
-#: core/library/Moka_Gateway.php:1178
+#: core/library/Moka_Gateway.php:1182
msgid "Bank or Card does not support 3D secure"
msgstr ""
-#: core/library/Moka_Gateway.php:1179
+#: core/library/Moka_Gateway.php:1183
msgid "User is not authorised to perform this operation"
msgstr ""
-#: core/library/Moka_Gateway.php:1180
+#: core/library/Moka_Gateway.php:1184
msgid "Fraud possibility"
msgstr ""
-#: core/library/Moka_Gateway.php:1181
+#: core/library/Moka_Gateway.php:1185
msgid "Your card is closed to internet purchases"
msgstr ""
-#: core/library/Moka_Gateway.php:1182
+#: core/library/Moka_Gateway.php:1186
msgid "Bank Declined Transaction"
msgstr ""
-#: core/library/Moka_Gateway.php:1188
-#: core/library/Optimisthub_Ajax.php:247
+#: core/library/Moka_Gateway.php:1192
+#: core/library/Optimisthub_Ajax.php:251
msgid "An unexpected error occurred"
msgstr ""
-#: core/library/Moka_Init.php:37
+#: core/library/Moka_Init.php:38
+msgid "Wiki"
+msgstr ""
+
+#: core/library/Moka_Init.php:39
+msgid "Report Issue"
+msgstr ""
+
+#: core/library/Moka_Init.php:42
+msgid "Check Update"
+msgstr ""
+
+#: core/library/Moka_Init.php:42
+msgid "Checking"
+msgstr ""
+
+#: core/library/Moka_Init.php:55
msgid "Installment Limit"
msgstr ""
-#: core/library/Moka_Init.php:69
+#: core/library/Moka_Init.php:87
msgid "Default"
msgstr ""
-#: core/library/Moka_Init.php:153
+#: core/library/Moka_Init.php:171
msgid "Installment Options"
msgstr ""
-#: core/library/Moka_Init.php:222
+#: core/library/Moka_Init.php:240
msgid "Installment Amount"
msgstr ""
-#: core/library/Moka_Init.php:223
+#: core/library/Moka_Init.php:241
msgid "Total Amount"
msgstr ""
-#: core/library/Moka_Init.php:265
+#: core/library/Moka_Init.php:285
msgid "With installments starting from"
msgstr ""
@@ -791,27 +808,27 @@ msgstr ""
msgid "The test function can be performed after saving the merchant information."
msgstr ""
-#: core/library/Optimisthub_Ajax.php:212
+#: core/library/Optimisthub_Ajax.php:216
msgid "Order identifier not found"
msgstr ""
-#: core/library/Optimisthub_Ajax.php:217
+#: core/library/Optimisthub_Ajax.php:221
msgid "Order not found"
msgstr ""
-#: core/library/Optimisthub_Ajax.php:226
+#: core/library/Optimisthub_Ajax.php:230
msgid "Subscription not found"
msgstr ""
-#: core/library/Optimisthub_Ajax.php:244
+#: core/library/Optimisthub_Ajax.php:248
msgid "Subscription has been successfully canceled. Please wait."
msgstr ""
-#: core/library/Optimisthub_Ajax.php:314
+#: core/library/Optimisthub_Ajax.php:326
msgid "Installment Shopping"
msgstr ""
-#: core/library/Optimisthub_Ajax.php:342
+#: core/library/Optimisthub_Ajax.php:354
msgid "Cash In Advence"
msgstr ""