diff --git a/includes/component/plugin-deactivation/assets/css/style.css b/includes/component/plugin-deactivation/assets/css/style.css
new file mode 100644
index 0000000..7508377
--- /dev/null
+++ b/includes/component/plugin-deactivation/assets/css/style.css
@@ -0,0 +1,148 @@
+.ts-modal {
+ position: fixed;
+ overflow: auto;
+ height: 100%;
+ width: 100%;
+ top: 0;
+ z-index: 100000;
+ display: none;
+ background: rgba(0, 0, 0, 0.6)
+}
+
+.ts-modal .ts-modal-dialog {
+ background: transparent;
+ position: absolute;
+ left: 50%;
+ margin-left: -298px;
+ padding-bottom: 30px;
+ top: -100%;
+ z-index: 100001;
+ width: 596px
+}
+
+.ts-modal li.reason.has_html .reason_html {
+ display: none;
+ border: 1px solid #ddd;
+ padding: 4px 6px;
+ margin: 6px 0 0 20px;
+}
+
+.ts-modal li.reason.has_html.li-active .reason_html {
+ display: block;
+}
+
+@media (max-width: 650px) {
+ .ts-modal .ts-modal-dialog {
+ margin-left: -50%;
+ box-sizing: border-box;
+ padding-left: 10px;
+ padding-right: 10px;
+ width: 100%
+ }
+
+ .ts-modal .ts-modal-dialog .ts-modal-panel>h3>strong {
+ font-size: 1.3em
+ }
+
+ .ts-modal .ts-modal-dialog li.reason {
+ margin-bottom: 10px
+ }
+
+ .ts-modal .ts-modal-dialog li.reason .reason-input {
+ margin-left: 29px
+ }
+
+ .ts-modal .ts-modal-dialog li.reason label {
+ display: table
+ }
+
+ .ts-modal .ts-modal-dialog li.reason label>span {
+ display: table-cell;
+ font-size: 1.3em
+ }
+}
+
+.ts-modal.active {
+ display: block
+}
+
+.ts-modal.active:before {
+ display: block
+}
+
+.ts-modal.active .ts-modal-dialog {
+ top: 10%
+}
+
+.ts-modal .ts-modal-body,
+.ts-modal .ts-modal-footer {
+ border: 0;
+ background: #fefefe;
+ padding: 20px
+}
+
+.ts-modal .ts-modal-body {
+ border-bottom: 0
+}
+
+.ts-modal .ts-modal-body h2 {
+ font-size: 20px
+}
+
+.ts-modal .ts-modal-body>div {
+ margin-top: 10px
+}
+
+.ts-modal .ts-modal-body>div h2 {
+ font-weight: bold;
+ font-size: 20px;
+ margin-top: 0
+}
+
+.ts-modal .ts-modal-footer {
+ border-top: #eeeeee solid 1px;
+ text-align: right
+}
+
+.ts-modal .ts-modal-footer>.button {
+ margin: 0 7px
+}
+
+.ts-modal .ts-modal-footer>.button:first-child {
+ margin: 0
+}
+
+.ts-modal .ts-modal-panel:not(.active) {
+ display: none
+}
+
+.ts-modal .reason-input {
+ margin: 3px 0 3px 22px
+}
+
+.ts-modal .reason-input input,
+.ts-modal .reason-input textarea {
+ width: 100%
+}
+
+body.has-ts-modal {
+ overflow: hidden
+}
+
+#the-list .deactivate>.ts-slug {
+ display: none
+}
+
+.ts-modal li.reason-hide {
+ display: none;
+}
+
+.ts-modal-footer p {
+ /* display: inline-block; */
+ margin: 0 10px;
+ vertical-align: middle;
+ font-weight: 500;
+ color: red;
+ padding: 5px 0;
+ display: none;
+}
\ No newline at end of file
diff --git a/includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php b/includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php
index b46a3cb..d143579 100644
--- a/includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php
+++ b/includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php
@@ -151,7 +151,7 @@ public function enqueue_scripts() {
wp_enqueue_style(
'tyche_plugin_deactivation',
- $this->api_url . '/assets/plugin-deactivation/css/style.css',
+ plugins_url( '/assets/css/style.css', __FILE__ ),
array(),
$this->plugin_version
);
@@ -164,17 +164,91 @@ public function enqueue_scripts() {
true
);
- $request = wp_remote_get( $this->api_url . '?action=fetch-deactivation-data&plugin=' . $this->plugin_short_name . '&language=' . apply_filters( 'tyche_plugin_deactivation_language', 'en' ) . '&version=' . $this->version );
-
- if ( is_wp_error( $request ) || 200 !== wp_remote_retrieve_response_code( $request ) ) {
- return false; // In case the user is offline or something else that could have probably caused an error.
- }
-
- $data = json_decode( wp_remote_retrieve_body( $request ), true );
-
- if ( ! is_array( $data ) ) {
- return false;
- }
+ // Hardcoded deactivation data.
+ $data = array(
+ 'reasons' => array(
+ array(
+ 'id' => 1,
+ 'text' => __( 'I only needed the plugin for a short period.', 'checkout-fees-for-woocommerce' ),
+ 'input_type' => '',
+ 'input_placeholder' => '',
+ ),
+ array(
+ 'id' => 2,
+ 'text' => __( 'I found a better plugin.', 'checkout-fees-for-woocommerce' ),
+ 'input_type' => 'textfield',
+ 'input_placeholder' => __( 'Please let us have the plugin\'s name so that we can make improvements', 'checkout-fees-for-woocommerce' ),
+ ),
+ array(
+ 'id' => 3,
+ 'text' => __( 'The plugin is not working.', 'checkout-fees-for-woocommerce' ),
+ 'input_type' => 'textfield',
+ 'input_placeholder' => __( 'Please share what was faulty with the plugin so that we may get the issue fixed.', 'checkout-fees-for-woocommerce' ),
+ ),
+ array(
+ 'id' => 4,
+ 'text' => __( 'The plugin is causing issues on my site', 'checkout-fees-for-woocommerce' ),
+ 'input_type' => 'textfield',
+ 'input_placeholder' => __( 'We’re sorry! Please tell us about the issues so that we can get them fixed.', 'checkout-fees-for-woocommerce' ),
+ ),
+ array(
+ 'id' => 6,
+ 'text' => __( 'Some features I need are not working as per my expectations', 'checkout-fees-for-woocommerce' ),
+ 'input_type' => 'textfield',
+ 'input_placeholder' => __( 'Please tell us about these features.', 'checkout-fees-for-woocommerce' ),
+ ),
+ array(
+ 'id' => 7,
+ 'text' => __( 'The plugin is not compatible with another plugin/theme', 'checkout-fees-for-woocommerce' ),
+ 'input_type' => 'textfield',
+ 'input_placeholder' => __( 'We’re sorry! We would like you to tell us the plugin/theme so that we can work on the compatibility.', 'checkout-fees-for-woocommerce' ),
+ ),
+ array(
+ 'id' => 10,
+ 'text' => __( 'Other', 'checkout-fees-for-woocommerce' ),
+ 'input_type' => 'textfield',
+ 'input_placeholder' => '',
+ ),
+ array(
+ 'id' => 11,
+ 'text' => __( 'The Tax fees are not calculated correctly', 'checkout-fees-for-woocommerce' ),
+ 'input_type' => '',
+ 'input_placeholder' => '',
+ ),
+ array(
+ 'id' => 12,
+ 'text' => __( 'I’m unable to set up fees for my Custom Payment Gateway plugin', 'checkout-fees-for-woocommerce' ),
+ 'input_type' => '',
+ 'input_placeholder' => '',
+ ),
+ ),
+ 'template' => '
+
+
+
+
+
+
+ ' . __( 'If you have a moment, please let us know why you are deactivating:', 'checkout-fees-for-woocommerce' ) . '
+
+
+
+
+
+
+
+
+
+
',
+ );
wp_localize_script(
'tyche_plugin_deactivation_' . $this->plugin_short_name,
@@ -183,7 +257,7 @@ public function enqueue_scripts() {
'deactivation_data' => $data,
'ajax_url' => admin_url( 'admin-ajax.php' ),
'nonce' => wp_create_nonce( 'tyche_plugin_deactivation_submit_action' ),
- 'deactivation_req_msg' => __( 'Please select a reason for deactivation!', $this->plugin_locale ),
+ 'deactivation_req_msg' => __( 'Please select a reason for deactivation!', 'checkout-fees-for-woocommerce' ),
)
);
diff --git a/langs/checkout-fees-for-woocommerce.po b/langs/checkout-fees-for-woocommerce.po
new file mode 100644
index 0000000..697c92d
--- /dev/null
+++ b/langs/checkout-fees-for-woocommerce.po
@@ -0,0 +1,1903 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2024-11-20 14:24+0530\n"
+"PO-Revision-Date: 2024-11-20 14:24+0500\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: \n"
+"X-Generator: Eazy Po 1.0.0.0\n"
+
+#: checkout-fees-for-woocommerce.php:162
+msgid "Settings"
+msgstr ""
+
+#: checkout-fees-for-woocommerce.php:165
+msgid "Unlock All"
+msgstr ""
+
+#: includes/class-alg-wc-checkout-fees-admin.php:75
+msgid "Plugin data successfully deleted."
+msgstr ""
+
+#: includes/class-alg-wc-checkout-fees-admin.php:85
+msgid "Wrong user role or nonce not verified."
+msgstr ""
+
+#: includes/class-alg-wc-checkout-fees.php:1083
+#, php-format
+msgid "(includes %s %s)"
+msgstr ""
+
+#: includes/class-alg-wc-order-fees.php:841
+msgid "Pay for order"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:172
+msgid "I only needed the plugin for a short period."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:178
+msgid "I found a better plugin."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:180
+msgid "Please let us have the plugin's name so that we can make improvements"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:184
+msgid "The plugin is not working."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:186
+msgid ""
+"Please share what was faulty with the plugin so that we may get the issue "
+"fixed."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:190
+msgid "The plugin is causing issues on my site"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:192
+msgid ""
+"We’re sorry! Please tell us about the issues so that we can get them fixed."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:196
+msgid "Some features I need are not working as per my expectations"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:198
+msgid "Please tell us about these features."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:202
+msgid "The plugin is not compatible with another plugin/theme"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:204
+msgid ""
+"We’re sorry! We would like you to tell us the plugin/theme so that we can "
+"work on the compatibility."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:208
+msgid "Other"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:214
+msgid "The Tax fees are not calculated correctly"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:220
+msgid "I’m unable to set up fees for my Custom Payment Gateway plugin"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:234
+msgid "If you have a moment, please let us know why you are deactivating:"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:245
+msgid "Skip & Deactivate"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:246
+msgid "Submit & Deactivate"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:247
+msgid "Cancel"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:260
+msgid "Please select a reason for deactivation!"
+msgstr ""
+
+#: includes/component/plugin-tracking/class-tyche-plugin-tracking.php:121
+msgid "Once in a Week"
+msgstr ""
+
+#: includes/component/plugin-tracking/class-tyche-plugin-tracking.php:255
+msgid "Want to help make "
+msgstr ""
+
+#: includes/component/plugin-tracking/class-tyche-plugin-tracking.php:258
+msgid "Allow"
+msgstr ""
+
+#: includes/component/plugin-tracking/class-tyche-plugin-tracking.php:259
+msgid "No thanks"
+msgstr ""
+
+#: includes/functions/country-functions.php:49
+msgid "Africa"
+msgstr ""
+
+#: includes/functions/country-functions.php:50
+msgid "Asia"
+msgstr ""
+
+#: includes/functions/country-functions.php:51
+msgid "Australia & Oceania"
+msgstr ""
+
+#: includes/functions/country-functions.php:52
+msgid "Central America"
+msgstr ""
+
+#: includes/functions/country-functions.php:53
+msgid "European Union"
+msgstr ""
+
+#: includes/functions/country-functions.php:54
+msgid "Europe"
+msgstr ""
+
+#: includes/functions/country-functions.php:55
+msgid "Europe excluding EU"
+msgstr ""
+
+#: includes/functions/country-functions.php:56
+msgid "Eurozone"
+msgstr ""
+
+#: includes/functions/country-functions.php:57
+msgid "North America"
+msgstr ""
+
+#: includes/functions/country-functions.php:58
+msgid "South America"
+msgstr ""
+
+#: includes/functions/country-functions.php:72
+msgid "Afghanistan"
+msgstr ""
+
+#: includes/functions/country-functions.php:73
+msgid "Åland Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:74
+msgid "Albania"
+msgstr ""
+
+#: includes/functions/country-functions.php:75
+msgid "Algeria"
+msgstr ""
+
+#: includes/functions/country-functions.php:76
+msgid "Andorra"
+msgstr ""
+
+#: includes/functions/country-functions.php:77
+msgid "Angola"
+msgstr ""
+
+#: includes/functions/country-functions.php:78
+msgid "Anguilla"
+msgstr ""
+
+#: includes/functions/country-functions.php:79
+msgid "Antarctica"
+msgstr ""
+
+#: includes/functions/country-functions.php:80
+msgid "Antigua and Barbuda"
+msgstr ""
+
+#: includes/functions/country-functions.php:81
+msgid "Argentina"
+msgstr ""
+
+#: includes/functions/country-functions.php:82
+msgid "Armenia"
+msgstr ""
+
+#: includes/functions/country-functions.php:83
+msgid "Aruba"
+msgstr ""
+
+#: includes/functions/country-functions.php:84
+msgid "Australia"
+msgstr ""
+
+#: includes/functions/country-functions.php:85
+msgid "Austria"
+msgstr ""
+
+#: includes/functions/country-functions.php:86
+msgid "Azerbaijan"
+msgstr ""
+
+#: includes/functions/country-functions.php:87
+msgid "Bahamas"
+msgstr ""
+
+#: includes/functions/country-functions.php:88
+msgid "Bahrain"
+msgstr ""
+
+#: includes/functions/country-functions.php:89
+msgid "Bangladesh"
+msgstr ""
+
+#: includes/functions/country-functions.php:90
+msgid "Barbados"
+msgstr ""
+
+#: includes/functions/country-functions.php:91
+msgid "Belarus"
+msgstr ""
+
+#: includes/functions/country-functions.php:92
+msgid "Belgium"
+msgstr ""
+
+#: includes/functions/country-functions.php:93
+msgid "Belau"
+msgstr ""
+
+#: includes/functions/country-functions.php:94
+msgid "Belize"
+msgstr ""
+
+#: includes/functions/country-functions.php:95
+msgid "Benin"
+msgstr ""
+
+#: includes/functions/country-functions.php:96
+msgid "Bermuda"
+msgstr ""
+
+#: includes/functions/country-functions.php:97
+msgid "Bhutan"
+msgstr ""
+
+#: includes/functions/country-functions.php:98
+msgid "Bolivia"
+msgstr ""
+
+#: includes/functions/country-functions.php:99
+msgid "Bonaire, Saint Eustatius and Saba"
+msgstr ""
+
+#: includes/functions/country-functions.php:100
+msgid "Bosnia and Herzegovina"
+msgstr ""
+
+#: includes/functions/country-functions.php:101
+msgid "Botswana"
+msgstr ""
+
+#: includes/functions/country-functions.php:102
+msgid "Bouvet Island"
+msgstr ""
+
+#: includes/functions/country-functions.php:103
+msgid "Brazil"
+msgstr ""
+
+#: includes/functions/country-functions.php:104
+msgid "British Indian Ocean Territory"
+msgstr ""
+
+#: includes/functions/country-functions.php:105
+msgid "British Virgin Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:106
+msgid "Brunei"
+msgstr ""
+
+#: includes/functions/country-functions.php:107
+msgid "Bulgaria"
+msgstr ""
+
+#: includes/functions/country-functions.php:108
+msgid "Burkina Faso"
+msgstr ""
+
+#: includes/functions/country-functions.php:109
+msgid "Burundi"
+msgstr ""
+
+#: includes/functions/country-functions.php:110
+msgid "Cambodia"
+msgstr ""
+
+#: includes/functions/country-functions.php:111
+msgid "Cameroon"
+msgstr ""
+
+#: includes/functions/country-functions.php:112
+msgid "Canada"
+msgstr ""
+
+#: includes/functions/country-functions.php:113
+msgid "Cape Verde"
+msgstr ""
+
+#: includes/functions/country-functions.php:114
+msgid "Cayman Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:115
+msgid "Central African Republic"
+msgstr ""
+
+#: includes/functions/country-functions.php:116
+msgid "Chad"
+msgstr ""
+
+#: includes/functions/country-functions.php:117
+msgid "Chile"
+msgstr ""
+
+#: includes/functions/country-functions.php:118
+msgid "China"
+msgstr ""
+
+#: includes/functions/country-functions.php:119
+msgid "Christmas Island"
+msgstr ""
+
+#: includes/functions/country-functions.php:120
+msgid "Cocos (Keeling) Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:121
+msgid "Colombia"
+msgstr ""
+
+#: includes/functions/country-functions.php:122
+msgid "Comoros"
+msgstr ""
+
+#: includes/functions/country-functions.php:123
+msgid "Congo (Brazzaville)"
+msgstr ""
+
+#: includes/functions/country-functions.php:124
+msgid "Congo (Kinshasa)"
+msgstr ""
+
+#: includes/functions/country-functions.php:125
+msgid "Cook Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:126
+msgid "Costa Rica"
+msgstr ""
+
+#: includes/functions/country-functions.php:127
+msgid "Croatia"
+msgstr ""
+
+#: includes/functions/country-functions.php:128
+msgid "Cuba"
+msgstr ""
+
+#: includes/functions/country-functions.php:129
+msgid "CuraÇao"
+msgstr ""
+
+#: includes/functions/country-functions.php:130
+msgid "Cyprus"
+msgstr ""
+
+#: includes/functions/country-functions.php:131
+msgid "Czech Republic"
+msgstr ""
+
+#: includes/functions/country-functions.php:132
+msgid "Denmark"
+msgstr ""
+
+#: includes/functions/country-functions.php:133
+msgid "Djibouti"
+msgstr ""
+
+#: includes/functions/country-functions.php:134
+msgid "Dominica"
+msgstr ""
+
+#: includes/functions/country-functions.php:135
+msgid "Dominican Republic"
+msgstr ""
+
+#: includes/functions/country-functions.php:136
+msgid "Ecuador"
+msgstr ""
+
+#: includes/functions/country-functions.php:137
+msgid "Egypt"
+msgstr ""
+
+#: includes/functions/country-functions.php:138
+msgid "El Salvador"
+msgstr ""
+
+#: includes/functions/country-functions.php:139
+msgid "Equatorial Guinea"
+msgstr ""
+
+#: includes/functions/country-functions.php:140
+msgid "Eritrea"
+msgstr ""
+
+#: includes/functions/country-functions.php:141
+msgid "Estonia"
+msgstr ""
+
+#: includes/functions/country-functions.php:142
+msgid "Ethiopia"
+msgstr ""
+
+#: includes/functions/country-functions.php:143
+msgid "Falkland Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:144
+msgid "Faroe Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:145
+msgid "Fiji"
+msgstr ""
+
+#: includes/functions/country-functions.php:146
+msgid "Finland"
+msgstr ""
+
+#: includes/functions/country-functions.php:147
+msgid "France"
+msgstr ""
+
+#: includes/functions/country-functions.php:148
+msgid "French Guiana"
+msgstr ""
+
+#: includes/functions/country-functions.php:149
+msgid "French Polynesia"
+msgstr ""
+
+#: includes/functions/country-functions.php:150
+msgid "French Southern Territories"
+msgstr ""
+
+#: includes/functions/country-functions.php:151
+msgid "Gabon"
+msgstr ""
+
+#: includes/functions/country-functions.php:152
+msgid "Gambia"
+msgstr ""
+
+#: includes/functions/country-functions.php:153
+msgid "Georgia"
+msgstr ""
+
+#: includes/functions/country-functions.php:154
+msgid "Germany"
+msgstr ""
+
+#: includes/functions/country-functions.php:155
+msgid "Ghana"
+msgstr ""
+
+#: includes/functions/country-functions.php:156
+msgid "Gibraltar"
+msgstr ""
+
+#: includes/functions/country-functions.php:157
+msgid "Greece"
+msgstr ""
+
+#: includes/functions/country-functions.php:158
+msgid "Greenland"
+msgstr ""
+
+#: includes/functions/country-functions.php:159
+msgid "Grenada"
+msgstr ""
+
+#: includes/functions/country-functions.php:160
+msgid "Guadeloupe"
+msgstr ""
+
+#: includes/functions/country-functions.php:161
+msgid "Guatemala"
+msgstr ""
+
+#: includes/functions/country-functions.php:162
+msgid "Guernsey"
+msgstr ""
+
+#: includes/functions/country-functions.php:163
+msgid "Guinea"
+msgstr ""
+
+#: includes/functions/country-functions.php:164
+msgid "Guinea-Bissau"
+msgstr ""
+
+#: includes/functions/country-functions.php:165
+msgid "Guyana"
+msgstr ""
+
+#: includes/functions/country-functions.php:166
+msgid "Haiti"
+msgstr ""
+
+#: includes/functions/country-functions.php:167
+msgid "Heard Island and McDonald Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:168
+msgid "Honduras"
+msgstr ""
+
+#: includes/functions/country-functions.php:169
+msgid "Hong Kong"
+msgstr ""
+
+#: includes/functions/country-functions.php:170
+msgid "Hungary"
+msgstr ""
+
+#: includes/functions/country-functions.php:171
+msgid "Iceland"
+msgstr ""
+
+#: includes/functions/country-functions.php:172
+msgid "India"
+msgstr ""
+
+#: includes/functions/country-functions.php:173
+msgid "Indonesia"
+msgstr ""
+
+#: includes/functions/country-functions.php:174
+msgid "Iran"
+msgstr ""
+
+#: includes/functions/country-functions.php:175
+msgid "Iraq"
+msgstr ""
+
+#: includes/functions/country-functions.php:176
+msgid "Republic of Ireland"
+msgstr ""
+
+#: includes/functions/country-functions.php:177
+msgid "Isle of Man"
+msgstr ""
+
+#: includes/functions/country-functions.php:178
+msgid "Israel"
+msgstr ""
+
+#: includes/functions/country-functions.php:179
+msgid "Italy"
+msgstr ""
+
+#: includes/functions/country-functions.php:180
+msgid "Ivory Coast"
+msgstr ""
+
+#: includes/functions/country-functions.php:181
+msgid "Jamaica"
+msgstr ""
+
+#: includes/functions/country-functions.php:182
+msgid "Japan"
+msgstr ""
+
+#: includes/functions/country-functions.php:183
+msgid "Jersey"
+msgstr ""
+
+#: includes/functions/country-functions.php:184
+msgid "Jordan"
+msgstr ""
+
+#: includes/functions/country-functions.php:185
+msgid "Kazakhstan"
+msgstr ""
+
+#: includes/functions/country-functions.php:186
+msgid "Kenya"
+msgstr ""
+
+#: includes/functions/country-functions.php:187
+msgid "Kiribati"
+msgstr ""
+
+#: includes/functions/country-functions.php:188
+msgid "Kuwait"
+msgstr ""
+
+#: includes/functions/country-functions.php:189
+msgid "Kyrgyzstan"
+msgstr ""
+
+#: includes/functions/country-functions.php:190
+msgid "Laos"
+msgstr ""
+
+#: includes/functions/country-functions.php:191
+msgid "Latvia"
+msgstr ""
+
+#: includes/functions/country-functions.php:192
+msgid "Lebanon"
+msgstr ""
+
+#: includes/functions/country-functions.php:193
+msgid "Lesotho"
+msgstr ""
+
+#: includes/functions/country-functions.php:194
+msgid "Liberia"
+msgstr ""
+
+#: includes/functions/country-functions.php:195
+msgid "Libya"
+msgstr ""
+
+#: includes/functions/country-functions.php:196
+msgid "Liechtenstein"
+msgstr ""
+
+#: includes/functions/country-functions.php:197
+msgid "Lithuania"
+msgstr ""
+
+#: includes/functions/country-functions.php:198
+msgid "Luxembourg"
+msgstr ""
+
+#: includes/functions/country-functions.php:199
+msgid "Macao S.A.R., China"
+msgstr ""
+
+#: includes/functions/country-functions.php:200
+msgid "Macedonia"
+msgstr ""
+
+#: includes/functions/country-functions.php:201
+msgid "Madagascar"
+msgstr ""
+
+#: includes/functions/country-functions.php:202
+msgid "Malawi"
+msgstr ""
+
+#: includes/functions/country-functions.php:203
+msgid "Malaysia"
+msgstr ""
+
+#: includes/functions/country-functions.php:204
+msgid "Maldives"
+msgstr ""
+
+#: includes/functions/country-functions.php:205
+msgid "Mali"
+msgstr ""
+
+#: includes/functions/country-functions.php:206
+msgid "Malta"
+msgstr ""
+
+#: includes/functions/country-functions.php:207
+msgid "Marshall Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:208
+msgid "Martinique"
+msgstr ""
+
+#: includes/functions/country-functions.php:209
+msgid "Mauritania"
+msgstr ""
+
+#: includes/functions/country-functions.php:210
+msgid "Mauritius"
+msgstr ""
+
+#: includes/functions/country-functions.php:211
+msgid "Mayotte"
+msgstr ""
+
+#: includes/functions/country-functions.php:212
+msgid "Mexico"
+msgstr ""
+
+#: includes/functions/country-functions.php:213
+msgid "Micronesia"
+msgstr ""
+
+#: includes/functions/country-functions.php:214
+msgid "Moldova"
+msgstr ""
+
+#: includes/functions/country-functions.php:215
+msgid "Monaco"
+msgstr ""
+
+#: includes/functions/country-functions.php:216
+msgid "Mongolia"
+msgstr ""
+
+#: includes/functions/country-functions.php:217
+msgid "Montenegro"
+msgstr ""
+
+#: includes/functions/country-functions.php:218
+msgid "Montserrat"
+msgstr ""
+
+#: includes/functions/country-functions.php:219
+msgid "Morocco"
+msgstr ""
+
+#: includes/functions/country-functions.php:220
+msgid "Mozambique"
+msgstr ""
+
+#: includes/functions/country-functions.php:221
+msgid "Myanmar"
+msgstr ""
+
+#: includes/functions/country-functions.php:222
+msgid "Namibia"
+msgstr ""
+
+#: includes/functions/country-functions.php:223
+msgid "Nauru"
+msgstr ""
+
+#: includes/functions/country-functions.php:224
+msgid "Nepal"
+msgstr ""
+
+#: includes/functions/country-functions.php:225
+msgid "Netherlands"
+msgstr ""
+
+#: includes/functions/country-functions.php:226
+msgid "Netherlands Antilles"
+msgstr ""
+
+#: includes/functions/country-functions.php:227
+msgid "New Caledonia"
+msgstr ""
+
+#: includes/functions/country-functions.php:228
+msgid "New Zealand"
+msgstr ""
+
+#: includes/functions/country-functions.php:229
+msgid "Nicaragua"
+msgstr ""
+
+#: includes/functions/country-functions.php:230
+msgid "Niger"
+msgstr ""
+
+#: includes/functions/country-functions.php:231
+msgid "Nigeria"
+msgstr ""
+
+#: includes/functions/country-functions.php:232
+msgid "Niue"
+msgstr ""
+
+#: includes/functions/country-functions.php:233
+msgid "Norfolk Island"
+msgstr ""
+
+#: includes/functions/country-functions.php:234
+msgid "North Korea"
+msgstr ""
+
+#: includes/functions/country-functions.php:235
+msgid "Norway"
+msgstr ""
+
+#: includes/functions/country-functions.php:236
+msgid "Oman"
+msgstr ""
+
+#: includes/functions/country-functions.php:237
+msgid "Pakistan"
+msgstr ""
+
+#: includes/functions/country-functions.php:238
+msgid "Palestinian Territory"
+msgstr ""
+
+#: includes/functions/country-functions.php:239
+msgid "Panama"
+msgstr ""
+
+#: includes/functions/country-functions.php:240
+msgid "Papua New Guinea"
+msgstr ""
+
+#: includes/functions/country-functions.php:241
+msgid "Paraguay"
+msgstr ""
+
+#: includes/functions/country-functions.php:242
+msgid "Peru"
+msgstr ""
+
+#: includes/functions/country-functions.php:243
+msgid "Philippines"
+msgstr ""
+
+#: includes/functions/country-functions.php:244
+msgid "Pitcairn"
+msgstr ""
+
+#: includes/functions/country-functions.php:245
+msgid "Poland"
+msgstr ""
+
+#: includes/functions/country-functions.php:246
+msgid "Portugal"
+msgstr ""
+
+#: includes/functions/country-functions.php:247
+msgid "Qatar"
+msgstr ""
+
+#: includes/functions/country-functions.php:248
+msgid "Reunion"
+msgstr ""
+
+#: includes/functions/country-functions.php:249
+msgid "Romania"
+msgstr ""
+
+#: includes/functions/country-functions.php:250
+msgid "Russia"
+msgstr ""
+
+#: includes/functions/country-functions.php:251
+msgid "Rwanda"
+msgstr ""
+
+#: includes/functions/country-functions.php:252
+msgid "Saint Barthélemy"
+msgstr ""
+
+#: includes/functions/country-functions.php:253
+msgid "Saint Helena"
+msgstr ""
+
+#: includes/functions/country-functions.php:254
+msgid "Saint Kitts and Nevis"
+msgstr ""
+
+#: includes/functions/country-functions.php:255
+msgid "Saint Lucia"
+msgstr ""
+
+#: includes/functions/country-functions.php:256
+msgid "Saint Martin (French part)"
+msgstr ""
+
+#: includes/functions/country-functions.php:257
+msgid "Saint Martin (Dutch part)"
+msgstr ""
+
+#: includes/functions/country-functions.php:258
+msgid "Saint Pierre and Miquelon"
+msgstr ""
+
+#: includes/functions/country-functions.php:259
+msgid "Saint Vincent and the Grenadines"
+msgstr ""
+
+#: includes/functions/country-functions.php:260
+msgid "San Marino"
+msgstr ""
+
+#: includes/functions/country-functions.php:261
+msgid "São Tomé and Príncipe"
+msgstr ""
+
+#: includes/functions/country-functions.php:262
+msgid "Saudi Arabia"
+msgstr ""
+
+#: includes/functions/country-functions.php:263
+msgid "Senegal"
+msgstr ""
+
+#: includes/functions/country-functions.php:264
+msgid "Serbia"
+msgstr ""
+
+#: includes/functions/country-functions.php:265
+msgid "Seychelles"
+msgstr ""
+
+#: includes/functions/country-functions.php:266
+msgid "Sierra Leone"
+msgstr ""
+
+#: includes/functions/country-functions.php:267
+msgid "Singapore"
+msgstr ""
+
+#: includes/functions/country-functions.php:268
+msgid "Slovakia"
+msgstr ""
+
+#: includes/functions/country-functions.php:269
+msgid "Slovenia"
+msgstr ""
+
+#: includes/functions/country-functions.php:270
+msgid "Solomon Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:271
+msgid "Somalia"
+msgstr ""
+
+#: includes/functions/country-functions.php:272
+msgid "South Africa"
+msgstr ""
+
+#: includes/functions/country-functions.php:273
+msgid "South Georgia/Sandwich Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:274
+msgid "South Korea"
+msgstr ""
+
+#: includes/functions/country-functions.php:275
+msgid "South Sudan"
+msgstr ""
+
+#: includes/functions/country-functions.php:276
+msgid "Spain"
+msgstr ""
+
+#: includes/functions/country-functions.php:277
+msgid "Sri Lanka"
+msgstr ""
+
+#: includes/functions/country-functions.php:278
+msgid "Sudan"
+msgstr ""
+
+#: includes/functions/country-functions.php:279
+msgid "Suriname"
+msgstr ""
+
+#: includes/functions/country-functions.php:280
+msgid "Svalbard and Jan Mayen"
+msgstr ""
+
+#: includes/functions/country-functions.php:281
+msgid "Swaziland"
+msgstr ""
+
+#: includes/functions/country-functions.php:282
+msgid "Sweden"
+msgstr ""
+
+#: includes/functions/country-functions.php:283
+msgid "Switzerland"
+msgstr ""
+
+#: includes/functions/country-functions.php:284
+msgid "Syria"
+msgstr ""
+
+#: includes/functions/country-functions.php:285
+msgid "Taiwan"
+msgstr ""
+
+#: includes/functions/country-functions.php:286
+msgid "Tajikistan"
+msgstr ""
+
+#: includes/functions/country-functions.php:287
+msgid "Tanzania"
+msgstr ""
+
+#: includes/functions/country-functions.php:288
+msgid "Thailand"
+msgstr ""
+
+#: includes/functions/country-functions.php:289
+msgid "Timor-Leste"
+msgstr ""
+
+#: includes/functions/country-functions.php:290
+msgid "Togo"
+msgstr ""
+
+#: includes/functions/country-functions.php:291
+msgid "Tokelau"
+msgstr ""
+
+#: includes/functions/country-functions.php:292
+msgid "Tonga"
+msgstr ""
+
+#: includes/functions/country-functions.php:293
+msgid "Trinidad and Tobago"
+msgstr ""
+
+#: includes/functions/country-functions.php:294
+msgid "Tunisia"
+msgstr ""
+
+#: includes/functions/country-functions.php:295
+msgid "Turkey"
+msgstr ""
+
+#: includes/functions/country-functions.php:296
+msgid "Turkmenistan"
+msgstr ""
+
+#: includes/functions/country-functions.php:297
+msgid "Turks and Caicos Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:298
+msgid "Tuvalu"
+msgstr ""
+
+#: includes/functions/country-functions.php:299
+msgid "Uganda"
+msgstr ""
+
+#: includes/functions/country-functions.php:300
+msgid "Ukraine"
+msgstr ""
+
+#: includes/functions/country-functions.php:301
+msgid "United Arab Emirates"
+msgstr ""
+
+#: includes/functions/country-functions.php:302
+msgid "United Kingdom (UK)"
+msgstr ""
+
+#: includes/functions/country-functions.php:303
+msgid "United States (US)"
+msgstr ""
+
+#: includes/functions/country-functions.php:304
+msgid "Uruguay"
+msgstr ""
+
+#: includes/functions/country-functions.php:305
+msgid "Uzbekistan"
+msgstr ""
+
+#: includes/functions/country-functions.php:306
+msgid "Vanuatu"
+msgstr ""
+
+#: includes/functions/country-functions.php:307
+msgid "Vatican"
+msgstr ""
+
+#: includes/functions/country-functions.php:308
+msgid "Venezuela"
+msgstr ""
+
+#: includes/functions/country-functions.php:309
+msgid "Vietnam"
+msgstr ""
+
+#: includes/functions/country-functions.php:310
+msgid "Wallis and Futuna"
+msgstr ""
+
+#: includes/functions/country-functions.php:311
+msgid "Western Sahara"
+msgstr ""
+
+#: includes/functions/country-functions.php:312
+msgid "Western Samoa"
+msgstr ""
+
+#: includes/functions/country-functions.php:313
+msgid "Yemen"
+msgstr ""
+
+#: includes/functions/country-functions.php:314
+msgid "Zambia"
+msgstr ""
+
+#: includes/functions/country-functions.php:315
+msgid "Zimbabwe"
+msgstr ""
+
+#: includes/functions/country-functions.php:317
+msgid "France, Metropolitan"
+msgstr ""
+
+#: includes/functions/country-functions.php:318
+msgid "African Regional Industrial Property Organization"
+msgstr ""
+
+#: includes/functions/country-functions.php:319
+msgid "American Samoa"
+msgstr ""
+
+#: includes/functions/country-functions.php:320
+msgid "Guam"
+msgstr ""
+
+#: includes/functions/country-functions.php:321
+msgid "Northern Mariana Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:322
+msgid "United States Minor Outlying Islands"
+msgstr ""
+
+#: includes/functions/country-functions.php:323
+msgid "Puerto Rico"
+msgstr ""
+
+#: includes/functions/country-functions.php:324
+msgid "Virgin Islands, U.S."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:144
+#, php-format
+msgid ""
+"You will need Pro version of the plugin "
+"to set this option."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:167
+#, php-format
+msgid "\"%s\" fees and discounts"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:168
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:529
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:548
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:80
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:106
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:70
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:79
+msgid "Enable"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:170
+#, php-format
+msgid "Add fee/discount to \"%s\" gateway."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:180
+msgid "Fee"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:185
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:336
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:94
+msgid "Fee title"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:186
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:337
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:95
+msgid "Fee (or discount) title to show to customer."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:192
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:344
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:101
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:108
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:170
+msgid "Fee type"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:193
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:345
+msgid "Fee (or discount) type. Percent or fixed value."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:198
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:350
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:107
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:110
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:172
+msgid "Fixed"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:199
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:351
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:108
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:111
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:173
+msgid "Percent"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:203
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:355
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:112
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:118
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:180
+msgid "Fee value"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:204
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:356
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:113
+msgid "Fee (or discount) value. For discount enter a negative number."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:211
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:363
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:125
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:187
+msgid "Minimum fee value"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:212
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:364
+msgid "Minimum fee (or discount)."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:212
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:220
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:364
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:372
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:507
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:518
+msgid "Ignored if set to zero."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:219
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:371
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:132
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:194
+msgid "Maximum fee value"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:220
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:372
+msgid "Maximum fee (or discount)."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:227
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:379
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:139
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:201
+msgid "Coupons rule"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:232
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:384
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:80
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:141
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:203
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:231
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:249
+msgid "Disabled"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:233
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:385
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:142
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:204
+msgid "Apply fees only if no coupons were applied"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:234
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:386
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:143
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:205
+msgid "Apply fees only if any coupons were applied"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:238
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:390
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:579
+msgid "Customer countries"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:239
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:391
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:580
+msgid "Countries to include"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:244
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:396
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:585
+msgid ""
+"Fee (or discount) will only be added if customer's billing country is in the "
+"list."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:245
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:260
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:276
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:289
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:303
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:318
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:397
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:412
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:428
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:441
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:455
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:479
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:586
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:602
+msgid "Ignored if empty."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:254
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:406
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:596
+msgid "Countries to exclude"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:259
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:411
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:601
+msgid ""
+"Fee (or discount) will only be added if customer's billing country is NOT in "
+"the list."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:269
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:421
+msgid "Customer states"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:270
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:422
+msgid "States to include"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:275
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:427
+msgid ""
+"Fee (or discount) will only be added if customer's billing state is in the "
+"list. Comma separated list of states codes."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:283
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:435
+msgid "States to exclude"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:288
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:440
+msgid ""
+"Fee (or discount) will only be added if customer's billing state is NOT in "
+"the list. Comma separated list of states codes."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:296
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:448
+msgid "Product categories"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:297
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:449
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:613
+msgid "Categories to include"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:302
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:454
+msgid ""
+"Fee (or discount) will only be added if product of selected category(-ies) "
+"is in the cart."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:312
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:473
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:623
+msgid "Categories to exclude"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:317
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:478
+msgid ""
+"Fee (or discount) will only be added if NO product of selected category(-"
+"ies) is in the cart."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:331
+msgid "Additional Fee (Optional)"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:338
+msgid ""
+"To display each (i.e. main and additional) fees on different lines in cart "
+"(and checkout), you must set different titles. If titles are equal they will "
+"be merged into single line."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:501
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:99
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:210
+msgid "General Options"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:506
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:216
+msgid "Minimum cart amount"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:507
+msgid "Minimum cart amount for adding the fee (or discount)."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:517
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:223
+msgid "Maximum cart amount"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:518
+msgid "Maximum cart amount for adding the fee (or discount)."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:528
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:234
+msgid "Rounding"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:530
+msgid "Round the fee (or discount) value before adding to the cart."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:536
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:240
+msgid "Rounding precision"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:537
+msgid "If rounding is enabled, set precision (i.e. number of decimals) here."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:547
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:252
+msgid "Taxes"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:549
+msgid "Is taxable?"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:555
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:258
+msgid "Tax class"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:556
+msgid "Only if \"Taxes\" option above is enabled."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:560
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:259
+msgid "Standard rate"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:563
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:269
+msgid "Exclude shipping"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:564
+msgid "Exclude"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:565
+msgid "Exclude shipping from total cart sum, when calculating fees."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:571
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:279
+msgid "Add taxes"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:572
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:88
+msgid "Add"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:573
+msgid "Add taxes to total cart sum, when calculating fees."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:587
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:603
+msgid ""
+"This is applied to both main and additional fees. Alternatively you can also "
+"set customer countries for each fee individually."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:612
+msgid "Product categories - Calculation type"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:618
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:628
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:287
+msgid "For all cart"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:619
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:629
+msgid "Only for selected products"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:44
+msgid "General"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:57
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:62
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:45
+#: includes/settings/class-alg-wc-settings-checkout-fees.php:44
+msgid "Payment Gateway Based Fees and Discounts"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:63
+msgid "Enable plugin"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:64
+msgid "Enable extra fees or discounts for WooCommerce payment gateways."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:74
+msgid "Fees/Discounts per Product"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:79
+msgid "Payment gateways fees and discounts on per product basis"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:81
+msgid ""
+"This will add meta boxes with fees settings to each product's edit page."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:87
+msgid "Add product title to fee/discount title"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:89
+msgid "This can help when you adding fees/discounts for variable products."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:104
+msgid "Merge all fees"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:105
+msgid ""
+"This will merge all fees for a gateway into single line (i.e. will display "
+"it as a single fee on front end)."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:116
+msgid "Max Range Options"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:121
+msgid "Max total discount"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:122
+msgid "Negative number."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:122
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:130
+msgid "Set 0 to disable."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:129
+msgid "Max total fee"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:141
+msgid "Cart Options"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:146
+msgid "Hide gateways fees and discounts on cart page"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:147
+msgid "Hide"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:157
+msgid "Advanced Options"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:162
+msgid "Delete all plugin's data"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:168
+msgid "Are you sure?"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:170
+msgid "Delete"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:45
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:64
+msgid "Global Extra Fee"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:69
+msgid "Global extra fee"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:71
+msgid "This fee will be added to all gateways. Fee is fixed and not taxable."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:77
+msgid "Add as extra fee only"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:78
+msgid ""
+"Check this, if you want fee to be added only if there are already any other "
+"fees added for the gateway."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:85
+msgid "Exclude from gateways"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:86
+msgid "Leave blank to include in all gateways."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:102
+msgid "Fee type. Percent or fixed value."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:44
+msgid "Info"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:57
+msgid "Info on Single Product"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:61
+#, php-format
+msgid "Values that will be replaced in templates below are: %s."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:78
+#, php-format
+msgid "You can also use %1$s and %2$s shortcodes. Or %3$s and %4$s functions."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:87
+msgid "Info on single product page"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:88
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:137
+msgid "Show"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:89
+msgid ""
+"This will add gateway fee/discount info on single product frontend page."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:95
+msgid "Start HTML"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:103
+msgid "Row template HTML"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:111
+msgid "End HTML"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:119
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:152
+msgid "Position"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:124
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:157
+msgid "Inside product summary"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:125
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:158
+msgid "Before product summary"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:126
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:159
+msgid "After product summary"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:130
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:163
+msgid "Position priority (i.e. order)"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:136
+msgid "Lowest price info on single product page"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:138
+msgid ""
+"This will add gateway fee/discount lowest price info on single product "
+"frontend page."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:144
+msgid "Template HTML"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:169
+msgid "Variable products info"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:174
+msgid "For each variation"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:175
+msgid "As price range"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:81
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:232
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:250
+msgid "Enabled"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:86
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:92
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:154
+msgid "Fee/Discount"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:92
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:154
+msgid "title"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:98
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:160
+msgid "Override global fee"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:100
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:162
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:266
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:276
+msgid "No"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:101
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:163
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:267
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:277
+msgid "Yes"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:148
+msgid "Additional Fee/Discount (Optional)"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:242
+msgid "Number of decimals"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:285
+msgid "Fee calculation (for Percent fees)"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:288
+msgid "Only for current product"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:295
+msgid "Fee calculation (for Fixed fees)"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:297
+msgid "Once"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:298
+msgid "Multiply by product quantity"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:357
+#, php-format
+msgid ""
+"You will need Pro version of the plugin "
+"to set fees for this gateway on per product basis."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:380
+msgid ""
+"In free version only Direct Bank Transfer (BACS) fees are "
+"available on per product basis."
+msgstr ""
+
+#: includes/settings/class-alg-wc-settings-checkout-fees.php:65
+msgid "Reset Settings"
+msgstr ""
+
+#: includes/settings/class-alg-wc-settings-checkout-fees.php:70
+msgid "Reset section settings"
+msgstr ""
+
+#: includes/settings/class-alg-wc-settings-checkout-fees.php:71
+msgid "Reset"
+msgstr ""
+
+#: includes/settings/class-alg-wc-settings-checkout-fees.php:77
+msgid "Reset usage tracking"
+msgstr ""
+
+#: includes/settings/class-alg-wc-settings-checkout-fees.php:79
+msgid ""
+"This will reset your usage tracking settings, causing it to show the opt-in "
+"banner again and not sending any data"
+msgstr ""
\ No newline at end of file
diff --git a/langs/checkout-fees-for-woocommerce.pot b/langs/checkout-fees-for-woocommerce.pot
index 9d2c2a7..da53447 100644
--- a/langs/checkout-fees-for-woocommerce.pot
+++ b/langs/checkout-fees-for-woocommerce.pot
@@ -1,1777 +1,1902 @@
-#: checkout-fees-for-woocommerce.php:125
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2024-11-20 14:24+0530\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: checkout-fees-for-woocommerce.php:162
msgid "Settings"
msgstr ""
-#: checkout-fees-for-woocommerce.php:128
+#: checkout-fees-for-woocommerce.php:165
msgid "Unlock All"
msgstr ""
-#: includes/class-wc-checkout-fees-admin.php:33
+#: includes/class-alg-wc-checkout-fees-admin.php:75
msgid "Plugin data successfully deleted."
msgstr ""
-#: includes/class-wc-checkout-fees-admin.php:43
+#: includes/class-alg-wc-checkout-fees-admin.php:85
msgid "Wrong user role or nonce not verified."
msgstr ""
-#: includes/class-alg-wc-checkout-fees.php:908
+#: includes/class-alg-wc-checkout-fees.php:1083
+#, php-format
msgid "(includes %s %s)"
msgstr ""
-#: includes/functions/country-functions.php:45
+#: includes/class-alg-wc-order-fees.php:841
+msgid "Pay for order"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:172
+msgid "I only needed the plugin for a short period."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:178
+msgid "I found a better plugin."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:180
+msgid "Please let us have the plugin's name so that we can make improvements"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:184
+msgid "The plugin is not working."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:186
+msgid ""
+"Please share what was faulty with the plugin so that we may get the issue "
+"fixed."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:190
+msgid "The plugin is causing issues on my site"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:192
+msgid ""
+"We’re sorry! Please tell us about the issues so that we can get them fixed."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:196
+msgid "Some features I need are not working as per my expectations"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:198
+msgid "Please tell us about these features."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:202
+msgid "The plugin is not compatible with another plugin/theme"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:204
+msgid ""
+"We’re sorry! We would like you to tell us the plugin/theme so that we can "
+"work on the compatibility."
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:208
+msgid "Other"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:214
+msgid "The Tax fees are not calculated correctly"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:220
+msgid "I’m unable to set up fees for my Custom Payment Gateway plugin"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:234
+msgid "If you have a moment, please let us know why you are deactivating:"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:245
+msgid "Skip & Deactivate"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:246
+msgid "Submit & Deactivate"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:247
+msgid "Cancel"
+msgstr ""
+
+#: includes/component/plugin-deactivation/class-tyche-plugin-deactivation.php:260
+msgid "Please select a reason for deactivation!"
+msgstr ""
+
+#: includes/component/plugin-tracking/class-tyche-plugin-tracking.php:121
+msgid "Once in a Week"
+msgstr ""
+
+#: includes/component/plugin-tracking/class-tyche-plugin-tracking.php:255
+msgid "Want to help make "
+msgstr ""
+
+#: includes/component/plugin-tracking/class-tyche-plugin-tracking.php:258
+msgid "Allow"
+msgstr ""
+
+#: includes/component/plugin-tracking/class-tyche-plugin-tracking.php:259
+msgid "No thanks"
+msgstr ""
+
+#: includes/functions/country-functions.php:49
msgid "Africa"
msgstr ""
-#: includes/functions/country-functions.php:46
+#: includes/functions/country-functions.php:50
msgid "Asia"
msgstr ""
-#: includes/functions/country-functions.php:47
+#: includes/functions/country-functions.php:51
msgid "Australia & Oceania"
msgstr ""
-#: includes/functions/country-functions.php:48
+#: includes/functions/country-functions.php:52
msgid "Central America"
msgstr ""
-#: includes/functions/country-functions.php:49
+#: includes/functions/country-functions.php:53
msgid "European Union"
msgstr ""
-#: includes/functions/country-functions.php:50
+#: includes/functions/country-functions.php:54
msgid "Europe"
msgstr ""
-#: includes/functions/country-functions.php:51
+#: includes/functions/country-functions.php:55
msgid "Europe excluding EU"
msgstr ""
-#: includes/functions/country-functions.php:52
+#: includes/functions/country-functions.php:56
msgid "Eurozone"
msgstr ""
-#: includes/functions/country-functions.php:53
+#: includes/functions/country-functions.php:57
msgid "North America"
msgstr ""
-#: includes/functions/country-functions.php:54
+#: includes/functions/country-functions.php:58
msgid "South America"
msgstr ""
-#: includes/functions/country-functions.php:68
+#: includes/functions/country-functions.php:72
msgid "Afghanistan"
msgstr ""
-#: includes/functions/country-functions.php:69
+#: includes/functions/country-functions.php:73
msgid "Åland Islands"
msgstr ""
-#: includes/functions/country-functions.php:70
+#: includes/functions/country-functions.php:74
msgid "Albania"
msgstr ""
-#: includes/functions/country-functions.php:71
+#: includes/functions/country-functions.php:75
msgid "Algeria"
msgstr ""
-#: includes/functions/country-functions.php:72
+#: includes/functions/country-functions.php:76
msgid "Andorra"
msgstr ""
-#: includes/functions/country-functions.php:73
+#: includes/functions/country-functions.php:77
msgid "Angola"
msgstr ""
-#: includes/functions/country-functions.php:74
+#: includes/functions/country-functions.php:78
msgid "Anguilla"
msgstr ""
-#: includes/functions/country-functions.php:75
+#: includes/functions/country-functions.php:79
msgid "Antarctica"
msgstr ""
-#: includes/functions/country-functions.php:76
+#: includes/functions/country-functions.php:80
msgid "Antigua and Barbuda"
msgstr ""
-#: includes/functions/country-functions.php:77
+#: includes/functions/country-functions.php:81
msgid "Argentina"
msgstr ""
-#: includes/functions/country-functions.php:78
+#: includes/functions/country-functions.php:82
msgid "Armenia"
msgstr ""
-#: includes/functions/country-functions.php:79
+#: includes/functions/country-functions.php:83
msgid "Aruba"
msgstr ""
-#: includes/functions/country-functions.php:80
+#: includes/functions/country-functions.php:84
msgid "Australia"
msgstr ""
-#: includes/functions/country-functions.php:81
+#: includes/functions/country-functions.php:85
msgid "Austria"
msgstr ""
-#: includes/functions/country-functions.php:82
+#: includes/functions/country-functions.php:86
msgid "Azerbaijan"
msgstr ""
-#: includes/functions/country-functions.php:83
+#: includes/functions/country-functions.php:87
msgid "Bahamas"
msgstr ""
-#: includes/functions/country-functions.php:84
+#: includes/functions/country-functions.php:88
msgid "Bahrain"
msgstr ""
-#: includes/functions/country-functions.php:85
+#: includes/functions/country-functions.php:89
msgid "Bangladesh"
msgstr ""
-#: includes/functions/country-functions.php:86
+#: includes/functions/country-functions.php:90
msgid "Barbados"
msgstr ""
-#: includes/functions/country-functions.php:87
+#: includes/functions/country-functions.php:91
msgid "Belarus"
msgstr ""
-#: includes/functions/country-functions.php:88
+#: includes/functions/country-functions.php:92
msgid "Belgium"
msgstr ""
-#: includes/functions/country-functions.php:89
+#: includes/functions/country-functions.php:93
msgid "Belau"
msgstr ""
-#: includes/functions/country-functions.php:90
+#: includes/functions/country-functions.php:94
msgid "Belize"
msgstr ""
-#: includes/functions/country-functions.php:91
+#: includes/functions/country-functions.php:95
msgid "Benin"
msgstr ""
-#: includes/functions/country-functions.php:92
+#: includes/functions/country-functions.php:96
msgid "Bermuda"
msgstr ""
-#: includes/functions/country-functions.php:93
+#: includes/functions/country-functions.php:97
msgid "Bhutan"
msgstr ""
-#: includes/functions/country-functions.php:94
+#: includes/functions/country-functions.php:98
msgid "Bolivia"
msgstr ""
-#: includes/functions/country-functions.php:95
+#: includes/functions/country-functions.php:99
msgid "Bonaire, Saint Eustatius and Saba"
msgstr ""
-#: includes/functions/country-functions.php:96
+#: includes/functions/country-functions.php:100
msgid "Bosnia and Herzegovina"
msgstr ""
-#: includes/functions/country-functions.php:97
+#: includes/functions/country-functions.php:101
msgid "Botswana"
msgstr ""
-#: includes/functions/country-functions.php:98
+#: includes/functions/country-functions.php:102
msgid "Bouvet Island"
msgstr ""
-#: includes/functions/country-functions.php:99
+#: includes/functions/country-functions.php:103
msgid "Brazil"
msgstr ""
-#: includes/functions/country-functions.php:100
+#: includes/functions/country-functions.php:104
msgid "British Indian Ocean Territory"
msgstr ""
-#: includes/functions/country-functions.php:101
+#: includes/functions/country-functions.php:105
msgid "British Virgin Islands"
msgstr ""
-#: includes/functions/country-functions.php:102
+#: includes/functions/country-functions.php:106
msgid "Brunei"
msgstr ""
-#: includes/functions/country-functions.php:103
+#: includes/functions/country-functions.php:107
msgid "Bulgaria"
msgstr ""
-#: includes/functions/country-functions.php:104
+#: includes/functions/country-functions.php:108
msgid "Burkina Faso"
msgstr ""
-#: includes/functions/country-functions.php:105
+#: includes/functions/country-functions.php:109
msgid "Burundi"
msgstr ""
-#: includes/functions/country-functions.php:106
+#: includes/functions/country-functions.php:110
msgid "Cambodia"
msgstr ""
-#: includes/functions/country-functions.php:107
+#: includes/functions/country-functions.php:111
msgid "Cameroon"
msgstr ""
-#: includes/functions/country-functions.php:108
+#: includes/functions/country-functions.php:112
msgid "Canada"
msgstr ""
-#: includes/functions/country-functions.php:109
+#: includes/functions/country-functions.php:113
msgid "Cape Verde"
msgstr ""
-#: includes/functions/country-functions.php:110
+#: includes/functions/country-functions.php:114
msgid "Cayman Islands"
msgstr ""
-#: includes/functions/country-functions.php:111
+#: includes/functions/country-functions.php:115
msgid "Central African Republic"
msgstr ""
-#: includes/functions/country-functions.php:112
+#: includes/functions/country-functions.php:116
msgid "Chad"
msgstr ""
-#: includes/functions/country-functions.php:113
+#: includes/functions/country-functions.php:117
msgid "Chile"
msgstr ""
-#: includes/functions/country-functions.php:114
+#: includes/functions/country-functions.php:118
msgid "China"
msgstr ""
-#: includes/functions/country-functions.php:115
+#: includes/functions/country-functions.php:119
msgid "Christmas Island"
msgstr ""
-#: includes/functions/country-functions.php:116
+#: includes/functions/country-functions.php:120
msgid "Cocos (Keeling) Islands"
msgstr ""
-#: includes/functions/country-functions.php:117
+#: includes/functions/country-functions.php:121
msgid "Colombia"
msgstr ""
-#: includes/functions/country-functions.php:118
+#: includes/functions/country-functions.php:122
msgid "Comoros"
msgstr ""
-#: includes/functions/country-functions.php:119
+#: includes/functions/country-functions.php:123
msgid "Congo (Brazzaville)"
msgstr ""
-#: includes/functions/country-functions.php:120
+#: includes/functions/country-functions.php:124
msgid "Congo (Kinshasa)"
msgstr ""
-#: includes/functions/country-functions.php:121
+#: includes/functions/country-functions.php:125
msgid "Cook Islands"
msgstr ""
-#: includes/functions/country-functions.php:122
+#: includes/functions/country-functions.php:126
msgid "Costa Rica"
msgstr ""
-#: includes/functions/country-functions.php:123
+#: includes/functions/country-functions.php:127
msgid "Croatia"
msgstr ""
-#: includes/functions/country-functions.php:124
+#: includes/functions/country-functions.php:128
msgid "Cuba"
msgstr ""
-#: includes/functions/country-functions.php:125
+#: includes/functions/country-functions.php:129
msgid "CuraÇao"
msgstr ""
-#: includes/functions/country-functions.php:126
+#: includes/functions/country-functions.php:130
msgid "Cyprus"
msgstr ""
-#: includes/functions/country-functions.php:127
+#: includes/functions/country-functions.php:131
msgid "Czech Republic"
msgstr ""
-#: includes/functions/country-functions.php:128
+#: includes/functions/country-functions.php:132
msgid "Denmark"
msgstr ""
-#: includes/functions/country-functions.php:129
+#: includes/functions/country-functions.php:133
msgid "Djibouti"
msgstr ""
-#: includes/functions/country-functions.php:130
+#: includes/functions/country-functions.php:134
msgid "Dominica"
msgstr ""
-#: includes/functions/country-functions.php:131
+#: includes/functions/country-functions.php:135
msgid "Dominican Republic"
msgstr ""
-#: includes/functions/country-functions.php:132
+#: includes/functions/country-functions.php:136
msgid "Ecuador"
msgstr ""
-#: includes/functions/country-functions.php:133
+#: includes/functions/country-functions.php:137
msgid "Egypt"
msgstr ""
-#: includes/functions/country-functions.php:134
+#: includes/functions/country-functions.php:138
msgid "El Salvador"
msgstr ""
-#: includes/functions/country-functions.php:135
+#: includes/functions/country-functions.php:139
msgid "Equatorial Guinea"
msgstr ""
-#: includes/functions/country-functions.php:136
+#: includes/functions/country-functions.php:140
msgid "Eritrea"
msgstr ""
-#: includes/functions/country-functions.php:137
+#: includes/functions/country-functions.php:141
msgid "Estonia"
msgstr ""
-#: includes/functions/country-functions.php:138
+#: includes/functions/country-functions.php:142
msgid "Ethiopia"
msgstr ""
-#: includes/functions/country-functions.php:139
+#: includes/functions/country-functions.php:143
msgid "Falkland Islands"
msgstr ""
-#: includes/functions/country-functions.php:140
+#: includes/functions/country-functions.php:144
msgid "Faroe Islands"
msgstr ""
-#: includes/functions/country-functions.php:141
+#: includes/functions/country-functions.php:145
msgid "Fiji"
msgstr ""
-#: includes/functions/country-functions.php:142
+#: includes/functions/country-functions.php:146
msgid "Finland"
msgstr ""
-#: includes/functions/country-functions.php:143
+#: includes/functions/country-functions.php:147
msgid "France"
msgstr ""
-#: includes/functions/country-functions.php:144
+#: includes/functions/country-functions.php:148
msgid "French Guiana"
msgstr ""
-#: includes/functions/country-functions.php:145
+#: includes/functions/country-functions.php:149
msgid "French Polynesia"
msgstr ""
-#: includes/functions/country-functions.php:146
+#: includes/functions/country-functions.php:150
msgid "French Southern Territories"
msgstr ""
-#: includes/functions/country-functions.php:147
+#: includes/functions/country-functions.php:151
msgid "Gabon"
msgstr ""
-#: includes/functions/country-functions.php:148
+#: includes/functions/country-functions.php:152
msgid "Gambia"
msgstr ""
-#: includes/functions/country-functions.php:149
+#: includes/functions/country-functions.php:153
msgid "Georgia"
msgstr ""
-#: includes/functions/country-functions.php:150
+#: includes/functions/country-functions.php:154
msgid "Germany"
msgstr ""
-#: includes/functions/country-functions.php:151
+#: includes/functions/country-functions.php:155
msgid "Ghana"
msgstr ""
-#: includes/functions/country-functions.php:152
+#: includes/functions/country-functions.php:156
msgid "Gibraltar"
msgstr ""
-#: includes/functions/country-functions.php:153
+#: includes/functions/country-functions.php:157
msgid "Greece"
msgstr ""
-#: includes/functions/country-functions.php:154
+#: includes/functions/country-functions.php:158
msgid "Greenland"
msgstr ""
-#: includes/functions/country-functions.php:155
+#: includes/functions/country-functions.php:159
msgid "Grenada"
msgstr ""
-#: includes/functions/country-functions.php:156
+#: includes/functions/country-functions.php:160
msgid "Guadeloupe"
msgstr ""
-#: includes/functions/country-functions.php:157
+#: includes/functions/country-functions.php:161
msgid "Guatemala"
msgstr ""
-#: includes/functions/country-functions.php:158
+#: includes/functions/country-functions.php:162
msgid "Guernsey"
msgstr ""
-#: includes/functions/country-functions.php:159
+#: includes/functions/country-functions.php:163
msgid "Guinea"
msgstr ""
-#: includes/functions/country-functions.php:160
+#: includes/functions/country-functions.php:164
msgid "Guinea-Bissau"
msgstr ""
-#: includes/functions/country-functions.php:161
+#: includes/functions/country-functions.php:165
msgid "Guyana"
msgstr ""
-#: includes/functions/country-functions.php:162
+#: includes/functions/country-functions.php:166
msgid "Haiti"
msgstr ""
-#: includes/functions/country-functions.php:163
+#: includes/functions/country-functions.php:167
msgid "Heard Island and McDonald Islands"
msgstr ""
-#: includes/functions/country-functions.php:164
+#: includes/functions/country-functions.php:168
msgid "Honduras"
msgstr ""
-#: includes/functions/country-functions.php:165
-msgid "Hong Kong"
-msgstr ""
-
-#: includes/functions/country-functions.php:166
-msgid "Hungary"
-msgstr ""
-
-#: includes/functions/country-functions.php:167
-msgid "Iceland"
-msgstr ""
-
-#: includes/functions/country-functions.php:168
-msgid "India"
-msgstr ""
-
#: includes/functions/country-functions.php:169
-msgid "Indonesia"
+msgid "Hong Kong"
msgstr ""
#: includes/functions/country-functions.php:170
-msgid "Iran"
+msgid "Hungary"
msgstr ""
#: includes/functions/country-functions.php:171
-msgid "Iraq"
+msgid "Iceland"
msgstr ""
#: includes/functions/country-functions.php:172
-msgid "Republic of Ireland"
+msgid "India"
msgstr ""
#: includes/functions/country-functions.php:173
-msgid "Isle of Man"
+msgid "Indonesia"
msgstr ""
#: includes/functions/country-functions.php:174
-msgid "Israel"
+msgid "Iran"
msgstr ""
#: includes/functions/country-functions.php:175
-msgid "Italy"
+msgid "Iraq"
msgstr ""
#: includes/functions/country-functions.php:176
-msgid "Ivory Coast"
+msgid "Republic of Ireland"
msgstr ""
#: includes/functions/country-functions.php:177
-msgid "Jamaica"
+msgid "Isle of Man"
msgstr ""
#: includes/functions/country-functions.php:178
-msgid "Japan"
+msgid "Israel"
msgstr ""
#: includes/functions/country-functions.php:179
-msgid "Jersey"
+msgid "Italy"
msgstr ""
#: includes/functions/country-functions.php:180
-msgid "Jordan"
+msgid "Ivory Coast"
msgstr ""
#: includes/functions/country-functions.php:181
-msgid "Kazakhstan"
+msgid "Jamaica"
msgstr ""
#: includes/functions/country-functions.php:182
-msgid "Kenya"
+msgid "Japan"
msgstr ""
#: includes/functions/country-functions.php:183
-msgid "Kiribati"
+msgid "Jersey"
msgstr ""
#: includes/functions/country-functions.php:184
-msgid "Kuwait"
+msgid "Jordan"
msgstr ""
#: includes/functions/country-functions.php:185
-msgid "Kyrgyzstan"
+msgid "Kazakhstan"
msgstr ""
#: includes/functions/country-functions.php:186
-msgid "Laos"
+msgid "Kenya"
msgstr ""
#: includes/functions/country-functions.php:187
-msgid "Latvia"
+msgid "Kiribati"
msgstr ""
#: includes/functions/country-functions.php:188
-msgid "Lebanon"
+msgid "Kuwait"
msgstr ""
#: includes/functions/country-functions.php:189
-msgid "Lesotho"
+msgid "Kyrgyzstan"
msgstr ""
#: includes/functions/country-functions.php:190
-msgid "Liberia"
+msgid "Laos"
msgstr ""
#: includes/functions/country-functions.php:191
-msgid "Libya"
+msgid "Latvia"
msgstr ""
#: includes/functions/country-functions.php:192
-msgid "Liechtenstein"
+msgid "Lebanon"
msgstr ""
#: includes/functions/country-functions.php:193
-msgid "Lithuania"
+msgid "Lesotho"
msgstr ""
#: includes/functions/country-functions.php:194
-msgid "Luxembourg"
+msgid "Liberia"
msgstr ""
#: includes/functions/country-functions.php:195
-msgid "Macao S.A.R., China"
+msgid "Libya"
msgstr ""
#: includes/functions/country-functions.php:196
-msgid "Macedonia"
+msgid "Liechtenstein"
msgstr ""
#: includes/functions/country-functions.php:197
-msgid "Madagascar"
+msgid "Lithuania"
msgstr ""
#: includes/functions/country-functions.php:198
-msgid "Malawi"
+msgid "Luxembourg"
msgstr ""
#: includes/functions/country-functions.php:199
-msgid "Malaysia"
+msgid "Macao S.A.R., China"
msgstr ""
#: includes/functions/country-functions.php:200
-msgid "Maldives"
+msgid "Macedonia"
msgstr ""
#: includes/functions/country-functions.php:201
-msgid "Mali"
+msgid "Madagascar"
msgstr ""
#: includes/functions/country-functions.php:202
-msgid "Malta"
+msgid "Malawi"
msgstr ""
#: includes/functions/country-functions.php:203
-msgid "Marshall Islands"
+msgid "Malaysia"
msgstr ""
#: includes/functions/country-functions.php:204
-msgid "Martinique"
+msgid "Maldives"
msgstr ""
#: includes/functions/country-functions.php:205
-msgid "Mauritania"
+msgid "Mali"
msgstr ""
#: includes/functions/country-functions.php:206
-msgid "Mauritius"
+msgid "Malta"
msgstr ""
#: includes/functions/country-functions.php:207
-msgid "Mayotte"
+msgid "Marshall Islands"
msgstr ""
#: includes/functions/country-functions.php:208
-msgid "Mexico"
+msgid "Martinique"
msgstr ""
#: includes/functions/country-functions.php:209
-msgid "Micronesia"
+msgid "Mauritania"
msgstr ""
#: includes/functions/country-functions.php:210
-msgid "Moldova"
+msgid "Mauritius"
msgstr ""
#: includes/functions/country-functions.php:211
-msgid "Monaco"
+msgid "Mayotte"
msgstr ""
#: includes/functions/country-functions.php:212
-msgid "Mongolia"
+msgid "Mexico"
msgstr ""
#: includes/functions/country-functions.php:213
-msgid "Montenegro"
+msgid "Micronesia"
msgstr ""
#: includes/functions/country-functions.php:214
-msgid "Montserrat"
+msgid "Moldova"
msgstr ""
#: includes/functions/country-functions.php:215
-msgid "Morocco"
+msgid "Monaco"
msgstr ""
#: includes/functions/country-functions.php:216
-msgid "Mozambique"
+msgid "Mongolia"
msgstr ""
#: includes/functions/country-functions.php:217
-msgid "Myanmar"
+msgid "Montenegro"
msgstr ""
#: includes/functions/country-functions.php:218
-msgid "Namibia"
+msgid "Montserrat"
msgstr ""
#: includes/functions/country-functions.php:219
-msgid "Nauru"
+msgid "Morocco"
msgstr ""
#: includes/functions/country-functions.php:220
-msgid "Nepal"
+msgid "Mozambique"
msgstr ""
#: includes/functions/country-functions.php:221
-msgid "Netherlands"
+msgid "Myanmar"
msgstr ""
#: includes/functions/country-functions.php:222
-msgid "Netherlands Antilles"
+msgid "Namibia"
msgstr ""
#: includes/functions/country-functions.php:223
-msgid "New Caledonia"
+msgid "Nauru"
msgstr ""
#: includes/functions/country-functions.php:224
-msgid "New Zealand"
+msgid "Nepal"
msgstr ""
#: includes/functions/country-functions.php:225
-msgid "Nicaragua"
+msgid "Netherlands"
msgstr ""
#: includes/functions/country-functions.php:226
-msgid "Niger"
+msgid "Netherlands Antilles"
msgstr ""
#: includes/functions/country-functions.php:227
-msgid "Nigeria"
+msgid "New Caledonia"
msgstr ""
#: includes/functions/country-functions.php:228
-msgid "Niue"
+msgid "New Zealand"
msgstr ""
#: includes/functions/country-functions.php:229
-msgid "Norfolk Island"
+msgid "Nicaragua"
msgstr ""
#: includes/functions/country-functions.php:230
-msgid "North Korea"
+msgid "Niger"
msgstr ""
#: includes/functions/country-functions.php:231
-msgid "Norway"
+msgid "Nigeria"
msgstr ""
#: includes/functions/country-functions.php:232
-msgid "Oman"
+msgid "Niue"
msgstr ""
#: includes/functions/country-functions.php:233
-msgid "Pakistan"
+msgid "Norfolk Island"
msgstr ""
#: includes/functions/country-functions.php:234
-msgid "Palestinian Territory"
+msgid "North Korea"
msgstr ""
#: includes/functions/country-functions.php:235
-msgid "Panama"
+msgid "Norway"
msgstr ""
#: includes/functions/country-functions.php:236
-msgid "Papua New Guinea"
+msgid "Oman"
msgstr ""
#: includes/functions/country-functions.php:237
-msgid "Paraguay"
+msgid "Pakistan"
msgstr ""
#: includes/functions/country-functions.php:238
-msgid "Peru"
+msgid "Palestinian Territory"
msgstr ""
#: includes/functions/country-functions.php:239
-msgid "Philippines"
+msgid "Panama"
msgstr ""
#: includes/functions/country-functions.php:240
-msgid "Pitcairn"
+msgid "Papua New Guinea"
msgstr ""
#: includes/functions/country-functions.php:241
-msgid "Poland"
+msgid "Paraguay"
msgstr ""
#: includes/functions/country-functions.php:242
-msgid "Portugal"
+msgid "Peru"
msgstr ""
#: includes/functions/country-functions.php:243
-msgid "Qatar"
+msgid "Philippines"
msgstr ""
#: includes/functions/country-functions.php:244
-msgid "Reunion"
+msgid "Pitcairn"
msgstr ""
#: includes/functions/country-functions.php:245
-msgid "Romania"
+msgid "Poland"
msgstr ""
#: includes/functions/country-functions.php:246
-msgid "Russia"
+msgid "Portugal"
msgstr ""
#: includes/functions/country-functions.php:247
-msgid "Rwanda"
+msgid "Qatar"
msgstr ""
#: includes/functions/country-functions.php:248
-msgid "Saint Barthélemy"
+msgid "Reunion"
msgstr ""
#: includes/functions/country-functions.php:249
-msgid "Saint Helena"
+msgid "Romania"
msgstr ""
#: includes/functions/country-functions.php:250
-msgid "Saint Kitts and Nevis"
+msgid "Russia"
msgstr ""
#: includes/functions/country-functions.php:251
-msgid "Saint Lucia"
+msgid "Rwanda"
msgstr ""
#: includes/functions/country-functions.php:252
-msgid "Saint Martin (French part)"
+msgid "Saint Barthélemy"
msgstr ""
#: includes/functions/country-functions.php:253
-msgid "Saint Martin (Dutch part)"
+msgid "Saint Helena"
msgstr ""
#: includes/functions/country-functions.php:254
-msgid "Saint Pierre and Miquelon"
+msgid "Saint Kitts and Nevis"
msgstr ""
#: includes/functions/country-functions.php:255
-msgid "Saint Vincent and the Grenadines"
+msgid "Saint Lucia"
msgstr ""
#: includes/functions/country-functions.php:256
-msgid "San Marino"
+msgid "Saint Martin (French part)"
msgstr ""
#: includes/functions/country-functions.php:257
-msgid "São Tomé and Príncipe"
+msgid "Saint Martin (Dutch part)"
msgstr ""
#: includes/functions/country-functions.php:258
-msgid "Saudi Arabia"
+msgid "Saint Pierre and Miquelon"
msgstr ""
#: includes/functions/country-functions.php:259
-msgid "Senegal"
+msgid "Saint Vincent and the Grenadines"
msgstr ""
#: includes/functions/country-functions.php:260
-msgid "Serbia"
+msgid "San Marino"
msgstr ""
#: includes/functions/country-functions.php:261
-msgid "Seychelles"
+msgid "São Tomé and Príncipe"
msgstr ""
#: includes/functions/country-functions.php:262
-msgid "Sierra Leone"
+msgid "Saudi Arabia"
msgstr ""
#: includes/functions/country-functions.php:263
-msgid "Singapore"
+msgid "Senegal"
msgstr ""
#: includes/functions/country-functions.php:264
-msgid "Slovakia"
+msgid "Serbia"
msgstr ""
#: includes/functions/country-functions.php:265
-msgid "Slovenia"
+msgid "Seychelles"
msgstr ""
#: includes/functions/country-functions.php:266
-msgid "Solomon Islands"
+msgid "Sierra Leone"
msgstr ""
#: includes/functions/country-functions.php:267
-msgid "Somalia"
+msgid "Singapore"
msgstr ""
#: includes/functions/country-functions.php:268
-msgid "South Africa"
+msgid "Slovakia"
msgstr ""
#: includes/functions/country-functions.php:269
-msgid "South Georgia/Sandwich Islands"
+msgid "Slovenia"
msgstr ""
#: includes/functions/country-functions.php:270
-msgid "South Korea"
+msgid "Solomon Islands"
msgstr ""
#: includes/functions/country-functions.php:271
-msgid "South Sudan"
+msgid "Somalia"
msgstr ""
#: includes/functions/country-functions.php:272
-msgid "Spain"
+msgid "South Africa"
msgstr ""
#: includes/functions/country-functions.php:273
-msgid "Sri Lanka"
+msgid "South Georgia/Sandwich Islands"
msgstr ""
#: includes/functions/country-functions.php:274
-msgid "Sudan"
+msgid "South Korea"
msgstr ""
#: includes/functions/country-functions.php:275
-msgid "Suriname"
+msgid "South Sudan"
msgstr ""
#: includes/functions/country-functions.php:276
-msgid "Svalbard and Jan Mayen"
+msgid "Spain"
msgstr ""
#: includes/functions/country-functions.php:277
-msgid "Swaziland"
+msgid "Sri Lanka"
msgstr ""
#: includes/functions/country-functions.php:278
-msgid "Sweden"
+msgid "Sudan"
msgstr ""
#: includes/functions/country-functions.php:279
-msgid "Switzerland"
+msgid "Suriname"
msgstr ""
#: includes/functions/country-functions.php:280
-msgid "Syria"
+msgid "Svalbard and Jan Mayen"
msgstr ""
#: includes/functions/country-functions.php:281
-msgid "Taiwan"
+msgid "Swaziland"
msgstr ""
#: includes/functions/country-functions.php:282
-msgid "Tajikistan"
-msgstr ""
-
-#: includes/functions/country-functions.php:283
-msgid "Tanzania"
-msgstr ""
-
-#: includes/functions/country-functions.php:284
-msgid "Thailand"
-msgstr ""
-
-#: includes/functions/country-functions.php:285
-msgid "Timor-Leste"
-msgstr ""
-
-#: includes/functions/country-functions.php:286
-msgid "Togo"
-msgstr ""
-
-#: includes/functions/country-functions.php:287
-msgid "Tokelau"
-msgstr ""
-
-#: includes/functions/country-functions.php:288
-msgid "Tonga"
-msgstr ""
-
-#: includes/functions/country-functions.php:289
-msgid "Trinidad and Tobago"
-msgstr ""
-
-#: includes/functions/country-functions.php:290
-msgid "Tunisia"
-msgstr ""
-
-#: includes/functions/country-functions.php:291
-msgid "Turkey"
-msgstr ""
-
-#: includes/functions/country-functions.php:292
-msgid "Turkmenistan"
-msgstr ""
-
-#: includes/functions/country-functions.php:293
-msgid "Turks and Caicos Islands"
-msgstr ""
-
-#: includes/functions/country-functions.php:294
-msgid "Tuvalu"
-msgstr ""
-
-#: includes/functions/country-functions.php:295
-msgid "Uganda"
-msgstr ""
-
-#: includes/functions/country-functions.php:296
-msgid "Ukraine"
-msgstr ""
-
-#: includes/functions/country-functions.php:297
-msgid "United Arab Emirates"
-msgstr ""
-
-#: includes/functions/country-functions.php:298
-msgid "United Kingdom (UK)"
-msgstr ""
-
-#: includes/functions/country-functions.php:299
-msgid "United States (US)"
-msgstr ""
-
-#: includes/functions/country-functions.php:300
-msgid "Uruguay"
-msgstr ""
-
-#: includes/functions/country-functions.php:301
-msgid "Uzbekistan"
-msgstr ""
-
-#: includes/functions/country-functions.php:302
-msgid "Vanuatu"
-msgstr ""
-
-#: includes/functions/country-functions.php:303
-msgid "Vatican"
-msgstr ""
-
-#: includes/functions/country-functions.php:304
-msgid "Venezuela"
-msgstr ""
-
-#: includes/functions/country-functions.php:305
-msgid "Vietnam"
-msgstr ""
-
-#: includes/functions/country-functions.php:306
-msgid "Wallis and Futuna"
-msgstr ""
-
-#: includes/functions/country-functions.php:307
-msgid "Western Sahara"
-msgstr ""
-
-#: includes/functions/country-functions.php:308
-msgid "Western Samoa"
-msgstr ""
-
-#: includes/functions/country-functions.php:309
-msgid "Yemen"
-msgstr ""
-
-#: includes/functions/country-functions.php:310
-msgid "Zambia"
-msgstr ""
-
-#: includes/functions/country-functions.php:311
-msgid "Zimbabwe"
-msgstr ""
-
-#: includes/functions/country-functions.php:313
-msgid "France, Metropolitan"
-msgstr ""
-
-#: includes/functions/country-functions.php:314
-msgid "African Regional Industrial Property Organization"
-msgstr ""
-
-#: includes/functions/country-functions.php:315
-msgid "American Samoa"
+msgid "Sweden"
msgstr ""
-#: includes/functions/country-functions.php:316
-msgid "Guam"
+#: includes/functions/country-functions.php:283
+msgid "Switzerland"
msgstr ""
-#: includes/functions/country-functions.php:317
-msgid "Northern Mariana Islands"
+#: includes/functions/country-functions.php:284
+msgid "Syria"
msgstr ""
-#: includes/functions/country-functions.php:318
-msgid "United States Minor Outlying Islands"
+#: includes/functions/country-functions.php:285
+msgid "Taiwan"
msgstr ""
-#: includes/functions/country-functions.php:319
-msgid "Puerto Rico"
+#: includes/functions/country-functions.php:286
+msgid "Tajikistan"
msgstr ""
-#: includes/functions/country-functions.php:320
-msgid "Virgin Islands, U.S."
+#: includes/functions/country-functions.php:287
+msgid "Tanzania"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:24
-#: includes/settings/class-wc-checkout-fees-settings-general.php:36
-#: includes/settings/class-wc-checkout-fees-settings-general.php:41
-#: includes/settings/class-wc-settings-checkout-fees.php:24
-msgid "Payment Gateway Based Fees and Discounts"
+#: includes/functions/country-functions.php:288
+msgid "Thailand"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:57
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:118
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:180
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:208
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:226
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:160
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:300
-msgid "Disabled"
+#: includes/functions/country-functions.php:289
+msgid "Timor-Leste"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:58
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:209
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:227
-msgid "Enabled"
+#: includes/functions/country-functions.php:290
+msgid "Togo"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:63
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:69
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:131
-msgid "Fee/Discount"
+#: includes/functions/country-functions.php:291
+msgid "Tokelau"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:69
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:131
-msgid "title"
+#: includes/functions/country-functions.php:292
+msgid "Tonga"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:75
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:137
-msgid "Override global fee"
+#: includes/functions/country-functions.php:293
+msgid "Trinidad and Tobago"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:77
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:139
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:243
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:253
-msgid "No"
+#: includes/functions/country-functions.php:294
+msgid "Tunisia"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:78
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:140
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:244
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:254
-msgid "Yes"
+#: includes/functions/country-functions.php:295
+msgid "Turkey"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:85
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:147
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:120
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:260
-msgid "Fee type"
+#: includes/functions/country-functions.php:296
+msgid "Turkmenistan"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:87
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:149
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:126
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:266
-msgid "Fixed"
+#: includes/functions/country-functions.php:297
+msgid "Turks and Caicos Islands"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:88
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:150
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:127
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:267
-msgid "Percent"
+#: includes/functions/country-functions.php:298
+msgid "Tuvalu"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:95
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:157
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:131
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:271
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:80
-msgid "Fee value"
+#: includes/functions/country-functions.php:299
+msgid "Uganda"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:102
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:164
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:139
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:279
-msgid "Minimum fee value"
+#: includes/functions/country-functions.php:300
+msgid "Ukraine"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:109
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:171
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:147
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:287
-msgid "Maximum fee value"
+#: includes/functions/country-functions.php:301
+msgid "United Arab Emirates"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:116
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:178
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:155
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:295
-msgid "Coupons rule"
+#: includes/functions/country-functions.php:302
+msgid "United Kingdom (UK)"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:119
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:181
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:161
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:301
-msgid "Apply fees only if no coupons were applied"
+#: includes/functions/country-functions.php:303
+msgid "United States (US)"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:120
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:182
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:162
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:302
-msgid "Apply fees only if any coupons were applied"
+#: includes/functions/country-functions.php:304
+msgid "Uruguay"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:125
-msgid "Additional Fee/Discount (Optional)"
+#: includes/functions/country-functions.php:305
+msgid "Uzbekistan"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:187
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:387
-#: includes/settings/class-wc-checkout-fees-settings-general.php:78
-msgid "General Options"
+#: includes/functions/country-functions.php:306
+msgid "Vanuatu"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:193
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:392
-msgid "Minimum cart amount"
+#: includes/functions/country-functions.php:307
+msgid "Vatican"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:200
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:400
-msgid "Maximum cart amount"
+#: includes/functions/country-functions.php:308
+msgid "Venezuela"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:211
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:408
-msgid "Rounding"
+#: includes/functions/country-functions.php:309
+msgid "Vietnam"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:217
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:416
-msgid "Rounding precision"
+#: includes/functions/country-functions.php:310
+msgid "Wallis and Futuna"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:219
-msgid "Number of decimals"
+#: includes/functions/country-functions.php:311
+msgid "Western Sahara"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:229
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:424
-msgid "Taxes"
+#: includes/functions/country-functions.php:312
+msgid "Western Samoa"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:235
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:432
-msgid "Tax class"
+#: includes/functions/country-functions.php:313
+msgid "Yemen"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:236
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:437
-msgid "Standard rate"
+#: includes/functions/country-functions.php:314
+msgid "Zambia"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:246
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:440
-msgid "Exclude shipping"
+#: includes/functions/country-functions.php:315
+msgid "Zimbabwe"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:256
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:448
-msgid "Add taxes"
+#: includes/functions/country-functions.php:317
+msgid "France, Metropolitan"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:262
-msgid "Fee calculation (for Percent fees)"
+#: includes/functions/country-functions.php:318
+msgid "African Regional Industrial Property Organization"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:264
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:491
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:501
-msgid "For all cart"
+#: includes/functions/country-functions.php:319
+msgid "American Samoa"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:265
-msgid "Only for current product"
+#: includes/functions/country-functions.php:320
+msgid "Guam"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:272
-msgid "Fee calculation (for Fixed fees)"
+#: includes/functions/country-functions.php:321
+msgid "Northern Mariana Islands"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:274
-msgid "Once"
+#: includes/functions/country-functions.php:322
+msgid "United States Minor Outlying Islands"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:275
-msgid "Multiply by product quantity"
+#: includes/functions/country-functions.php:323
+msgid "Puerto Rico"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:352
-msgid ""
-"In free version only Direct Bank Transfer (BACS) fees are "
-"available on per product basis."
+#: includes/functions/country-functions.php:324
+msgid "Virgin Islands, U.S."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-meta-boxes-per-product.php:353
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:144
#, php-format
msgid ""
"You will need Pro version of the plugin "
-"to set fees for this gateway on per product basis."
+"to set this option."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:96
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:167
#, php-format
msgid "\"%s\" fees and discounts"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:97
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:409
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:425
-#: includes/settings/class-wc-checkout-fees-settings-general.php:59
-#: includes/settings/class-wc-checkout-fees-settings-general.php:85
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:49
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:58
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:168
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:529
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:548
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:80
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:106
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:70
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:79
msgid "Enable"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:98
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:170
#, php-format
msgid "Add fee/discount to \"%s\" gateway."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:108
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:180
msgid "Fee"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:113
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:252
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:73
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:185
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:336
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:94
msgid "Fee title"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:114
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:253
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:74
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:186
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:337
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:95
msgid "Fee (or discount) title to show to customer."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:121
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:261
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:192
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:344
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:101
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:108
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:170
+msgid "Fee type"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:193
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:345
msgid "Fee (or discount) type. Percent or fixed value."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:132
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:272
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:81
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:198
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:350
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:107
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:110
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:172
+msgid "Fixed"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:199
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:351
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:108
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:111
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:173
+msgid "Percent"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:203
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:355
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:112
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:118
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:180
+msgid "Fee value"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:204
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:356
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:113
msgid "Fee (or discount) value. For discount enter a negative number."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:140
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:280
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:211
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:363
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:125
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:187
+msgid "Minimum fee value"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:212
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:364
msgid "Minimum fee (or discount)."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:140
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:148
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:280
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:288
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:393
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:401
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:212
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:220
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:364
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:372
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:507
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:518
msgid "Ignored if set to zero."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:148
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:288
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:219
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:371
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:132
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:194
+msgid "Maximum fee value"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:220
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:372
msgid "Maximum fee (or discount)."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:166
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:306
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:456
-msgid "Customer countries"
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:227
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:379
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:139
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:201
+msgid "Coupons rule"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:167
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:307
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:457
-msgid "Countries to include"
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:232
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:384
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:80
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:141
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:203
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:231
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:249
+msgid "Disabled"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:168
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:181
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:195
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:206
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:218
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:231
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:308
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:321
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:335
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:346
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:358
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:371
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:458
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:472
-#, php-format
-msgid ""
-"You will need Pro version of the plugin "
-"to set this option."
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:233
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:385
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:142
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:204
+msgid "Apply fees only if no coupons were applied"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:234
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:386
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:143
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:205
+msgid "Apply fees only if any coupons were applied"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:238
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:390
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:579
+msgid "Customer countries"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:170
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:310
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:460
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:239
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:391
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:580
+msgid "Countries to include"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:244
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:396
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:585
msgid ""
"Fee (or discount) will only be added if customer's billing country is in the "
"list."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:171
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:184
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:198
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:209
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:221
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:234
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:311
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:324
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:338
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:349
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:361
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:374
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:461
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:475
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:245
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:260
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:276
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:289
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:303
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:318
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:397
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:412
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:428
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:441
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:455
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:479
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:586
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:602
msgid "Ignored if empty."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:180
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:320
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:471
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:254
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:406
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:596
msgid "Countries to exclude"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:183
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:323
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:474
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:259
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:411
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:601
msgid ""
"Fee (or discount) will only be added if customer's billing country is NOT in "
"the list."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:193
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:333
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:269
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:421
msgid "Customer states"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:194
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:334
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:270
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:422
msgid "States to include"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:197
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:337
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:275
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:427
msgid ""
"Fee (or discount) will only be added if customer's billing state is in the "
"list. Comma separated list of states codes."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:205
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:345
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:283
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:435
msgid "States to exclude"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:208
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:348
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:288
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:440
msgid ""
"Fee (or discount) will only be added if customer's billing state is NOT in "
"the list. Comma separated list of states codes."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:216
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:356
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:296
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:448
msgid "Product categories"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:217
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:357
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:486
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:297
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:449
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:613
msgid "Categories to include"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:220
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:360
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:302
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:454
msgid ""
"Fee (or discount) will only be added if product of selected category(-ies) "
"is in the cart."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:230
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:370
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:496
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:312
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:473
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:623
msgid "Categories to exclude"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:233
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:373
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:317
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:478
msgid ""
"Fee (or discount) will only be added if NO product of selected category(-"
"ies) is in the cart."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:247
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:331
msgid "Additional Fee (Optional)"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:254
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:338
msgid ""
"To display each (i.e. main and additional) fees on different lines in cart "
"(and checkout), you must set different titles. If titles are equal they will "
"be merged into single line."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:393
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:501
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:99
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:210
+msgid "General Options"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:506
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:216
+msgid "Minimum cart amount"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:507
msgid "Minimum cart amount for adding the fee (or discount)."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:401
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:517
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:223
+msgid "Maximum cart amount"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:518
msgid "Maximum cart amount for adding the fee (or discount)."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:410
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:528
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:234
+msgid "Rounding"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:530
msgid "Round the fee (or discount) value before adding to the cart."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:417
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:536
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:240
+msgid "Rounding precision"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:537
msgid "If rounding is enabled, set precision (i.e. number of decimals) here."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:426
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:547
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:252
+msgid "Taxes"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:549
msgid "Is taxable?"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:433
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:555
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:258
+msgid "Tax class"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:556
msgid "Only if \"Taxes\" option above is enabled."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:441
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:560
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:259
+msgid "Standard rate"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:563
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:269
+msgid "Exclude shipping"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:564
msgid "Exclude"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:442
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:565
msgid "Exclude shipping from total cart sum, when calculating fees."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:449
-#: includes/settings/class-wc-checkout-fees-settings-general.php:67
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:571
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:279
+msgid "Add taxes"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:572
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:88
msgid "Add"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:450
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:573
msgid "Add taxes to total cart sum, when calculating fees."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:462
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:476
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:587
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:603
msgid ""
"This is applied to both main and additional fees. Alternatively you can also "
"set customer countries for each fee individually."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:485
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:612
msgid "Product categories - Calculation type"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:492
-#: includes/settings/class-wc-checkout-fees-settings-gateways.php:502
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:618
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:628
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:287
+msgid "For all cart"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:619
+#: includes/settings/class-alg-wc-checkout-fees-settings-gateways.php:629
msgid "Only for selected products"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:23
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:44
msgid "General"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:42
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:57
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:62
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:45
+#: includes/settings/class-alg-wc-settings-checkout-fees.php:44
+msgid "Payment Gateway Based Fees and Discounts"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:63
msgid "Enable plugin"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:43
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:64
msgid "Enable extra fees or discounts for WooCommerce payment gateways."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:53
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:74
msgid "Fees/Discounts per Product"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:58
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:79
msgid "Payment gateways fees and discounts on per product basis"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:60
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:81
msgid ""
"This will add meta boxes with fees settings to each product's edit page."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:66
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:87
msgid "Add product title to fee/discount title"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:68
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:89
msgid "This can help when you adding fees/discounts for variable products."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:83
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:104
msgid "Merge all fees"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:84
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:105
msgid ""
"This will merge all fees for a gateway into single line (i.e. will display "
"it as a single fee on front end)."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:95
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:116
msgid "Max Range Options"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:100
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:121
msgid "Max total discount"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:101
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:122
msgid "Negative number."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:101
-#: includes/settings/class-wc-checkout-fees-settings-general.php:109
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:122
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:130
msgid "Set 0 to disable."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:108
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:129
msgid "Max total fee"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:120
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:141
msgid "Cart Options"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:125
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:146
msgid "Hide gateways fees and discounts on cart page"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:126
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:147
msgid "Hide"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:136
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:157
msgid "Advanced Options"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:141
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:162
msgid "Delete all plugin's data"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:144
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:168
msgid "Are you sure?"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-general.php:146
+#: includes/settings/class-alg-wc-checkout-fees-settings-general.php:170
msgid "Delete"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:24
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:43
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:45
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:64
msgid "Global Extra Fee"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:48
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:69
msgid "Global extra fee"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:50
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:71
msgid "This fee will be added to all gateways. Fee is fixed and not taxable."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:56
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:77
msgid "Add as extra fee only"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:57
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:78
msgid ""
"Check this, if you want fee to be added only if there are already any other "
"fees added for the gateway."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:64
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:85
msgid "Exclude from gateways"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-global-extra-fee.php:65
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:86
msgid "Leave blank to include in all gateways."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:24
+#: includes/settings/class-alg-wc-checkout-fees-settings-global-extra-fee.php:102
+msgid "Fee type. Percent or fixed value."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:44
msgid "Info"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:37
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:57
msgid "Info on Single Product"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:40
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:61
#, php-format
msgid "Values that will be replaced in templates below are: %s."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:52
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:78
#, php-format
-msgid "You can also use %s and %s shortcodes. Or %s and %s functions."
+msgid "You can also use %1$s and %2$s shortcodes. Or %3$s and %4$s functions."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:61
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:87
msgid "Info on single product page"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:62
-#: includes/settings/class-wc-checkout-fees-settings-info.php:111
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:88
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:137
msgid "Show"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:63
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:89
msgid ""
"This will add gateway fee/discount info on single product frontend page."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:69
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:95
msgid "Start HTML"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:77
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:103
msgid "Row template HTML"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:85
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:111
msgid "End HTML"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:93
-#: includes/settings/class-wc-checkout-fees-settings-info.php:126
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:119
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:152
msgid "Position"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:98
-#: includes/settings/class-wc-checkout-fees-settings-info.php:131
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:124
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:157
msgid "Inside product summary"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:99
-#: includes/settings/class-wc-checkout-fees-settings-info.php:132
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:125
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:158
msgid "Before product summary"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:100
-#: includes/settings/class-wc-checkout-fees-settings-info.php:133
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:126
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:159
msgid "After product summary"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:104
-#: includes/settings/class-wc-checkout-fees-settings-info.php:137
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:130
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:163
msgid "Position priority (i.e. order)"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:110
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:136
msgid "Lowest price info on single product page"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:112
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:138
msgid ""
"This will add gateway fee/discount lowest price info on single product "
"frontend page."
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:118
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:144
msgid "Template HTML"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:143
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:169
msgid "Variable products info"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:148
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:174
msgid "For each variation"
msgstr ""
-#: includes/settings/class-wc-checkout-fees-settings-info.php:149
+#: includes/settings/class-alg-wc-checkout-fees-settings-info.php:175
msgid "As price range"
msgstr ""
-#: includes/settings/class-wc-settings-checkout-fees.php:43
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:81
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:232
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:250
+msgid "Enabled"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:86
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:92
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:154
+msgid "Fee/Discount"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:92
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:154
+msgid "title"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:98
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:160
+msgid "Override global fee"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:100
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:162
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:266
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:276
+msgid "No"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:101
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:163
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:267
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:277
+msgid "Yes"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:148
+msgid "Additional Fee/Discount (Optional)"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:242
+msgid "Number of decimals"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:285
+msgid "Fee calculation (for Percent fees)"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:288
+msgid "Only for current product"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:295
+msgid "Fee calculation (for Fixed fees)"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:297
+msgid "Once"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:298
+msgid "Multiply by product quantity"
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:357
+#, php-format
+msgid ""
+"You will need Pro version of the plugin "
+"to set fees for this gateway on per product basis."
+msgstr ""
+
+#: includes/settings/class-alg-wc-checkout-fees-settings-per-product.php:380
+msgid ""
+"In free version only Direct Bank Transfer (BACS) fees are "
+"available on per product basis."
+msgstr ""
+
+#: includes/settings/class-alg-wc-settings-checkout-fees.php:65
msgid "Reset Settings"
msgstr ""
-#: includes/settings/class-wc-settings-checkout-fees.php:48
+#: includes/settings/class-alg-wc-settings-checkout-fees.php:70
msgid "Reset section settings"
msgstr ""
-#: includes/settings/class-wc-settings-checkout-fees.php:49
+#: includes/settings/class-alg-wc-settings-checkout-fees.php:71
msgid "Reset"
msgstr ""
+
+#: includes/settings/class-alg-wc-settings-checkout-fees.php:77
+msgid "Reset usage tracking"
+msgstr ""
+
+#: includes/settings/class-alg-wc-settings-checkout-fees.php:79
+msgid ""
+"This will reset your usage tracking settings, causing it to show the opt-in "
+"banner again and not sending any data"
+msgstr ""
diff --git a/readme.txt b/readme.txt
index 63b5555..787a7df 100644
--- a/readme.txt
+++ b/readme.txt
@@ -97,6 +97,65 @@ Plugin requires **minimum setup**: after enabling the fee/discount for selected
2. Activate the plugin through the "Plugins" menu in WordPress.
3. Go to "WooCommerce > Settings > Payment Gateway Based Fees and Discounts".
+== External Services ==
+
+=== Usage Tracking in Payment Gateway Based Fees and Discounts oor WooCommerce ===
+
+This plugin includes a feature that sends non-sensitive usage tracking data to Tyche Softwares. The data is used solely for improving the plugin and its features based on how it is being used across different stores. The tracking is **optional**, and you can choose to opt-out at any time.
+
+=== What is Tracked: ===
+
+When you enable the usage tracking feature, the following information is sent to Tyche Softwares:
+
+* Site URL
+* WordPress admin email
+* Theme
+* WordPress version
+* WordPress locale
+* WordPress debug mode
+* WordPress memory limit
+* Webserver software & version
+* PHP version
+* Some PHP Settings like maximum post size, maximum input vars, if suhosin is enabled, if you have cURL, SOAP and fSock enabled
+* MySQL version
+* WooCommerce version
+* List of activate plugins
+* List of inactive plugins
+* Plugin settings
+* Enabled Payment Gateways in the plugin
+* Payment Gateway Fees and how frequently are they updated along with other related settings for the same
+* Number of products present on the site for each gateway.
+
+This data helps Tyche Softwares understand how the plugin is being used, which features are popular, and identify areas for improvement.
+
+=== How the Data is Used: ===
+
+The data collected is used to:
+
+* Improve the plugin’s functionality and performance.
+* Gain insights into which features are most commonly used.
+* Ensure compatibility with different versions of WordPress, WooCommerce, and PHP.
+
+=== Sensitive Data: ===
+
+The only sensitive information that is stored is the **admin email address**, which is kept to contact you regarding important updates or bug fixes related to the plugin. **No personal or business-critical data** is tracked or stored.
+
+=== How and When Data is Sent: ===
+
+The tracking data is sent automatically to our servers once you opt-in, and it will continue to be sent once a week thereafter.
+
+=== Opt-In and Opt-Out: ===
+
+* By default, usage tracking is enabled in the plugin settings.
+* You can **opt-out** at any time by resetting the usage tracking option, which is located under the **Settings** tab of the plugin.
+
+=== Link to Full Details: ===
+
+For more information about the usage tracking, please visit our documentation:
+[Payment Gateway Based Fees and Discounts](https://www.tychesoftwares.com/docs/payment-gateway-based-fees-and-discounts-for-woocommerce/usage-trackings-payment-gateways/)
+
+By using this plugin, you consent to the collection of the data mentioned above for the purpose of improving the plugin. If you do not wish to share this data, you can easily opt-out via the plugin settings.
+
== Changelog ==
= 2.14.0 - 22/10/2024 =