Rename to "Woo Viet"

* Replace all “WooCommerce for Vietnam” to “Woo Viet”

* Replace all “woocomerce-fo-vietnam” to “woo-viet”
This commit is contained in:
dat
2017-01-02 08:18:01 +07:00
parent c445ab7eab
commit b3eb79cc3f
6 changed files with 103 additions and 103 deletions
+20 -20
View File
@@ -5,7 +5,7 @@ if ( ! defined( 'ABSPATH' ) ) {
}
/**
* Create the admin page under wp-admin -> WooCommerce -> WooCommerce for Vietnam
* Create the admin page under wp-admin -> WooCommerce -> Woo Viet
*
* @author htdat
* @since 1.0
@@ -36,33 +36,33 @@ class WooViet_Admin_Page {
*/
public function save_settings() {
if ( wp_verify_nonce( $_REQUEST['wooviet_nonce'], 'wooviet_save_settings' ) ) {
update_option( 'woocommerce-for-vietnam', $_REQUEST['settings'] );
update_option( 'woo-viet', $_REQUEST['settings'] );
$this->message =
'<div class="updated notice"><p><strong>' .
__( 'Settings saved', 'woocommerce-for-vietnam' ) .
__( 'Settings saved', 'woo-viet' ) .
'</p></strong></div>';
} else {
$this->message =
'<div class="error notice"><p><strong>' .
__( 'Can not save settings! Please refresh this page.', 'woocommerce-for-vietnam' ) .
__( 'Can not save settings! Please refresh this page.', 'woo-viet' ) .
'</p></strong></div>';
}
}
/**
* Register the sub-menu under "WooCommerce"
* Link: http://my-site.com/wp-admin/admin.php?page=woocommerce-for-vietnam
* Link: http://my-site.com/wp-admin/admin.php?page=woo-viet
*/
public function register_submenu_page() {
add_submenu_page(
'woocommerce',
'WooCommerce for Vietnam Settings',
'WooCommerce for Vietnam',
'Woo Viet Settings',
'Woo Viet',
'manage_options',
'woocommerce-for-vietnam',
'woo-viet',
array( $this, 'admin_page_html' )
);
}
@@ -89,61 +89,61 @@ class WooViet_Admin_Page {
<table class="form-table">
<tbody>
<tr>
<th scope="row"><?php _e( 'Add provinces for Vietnam', 'woocommerce-for-vietnam' ) ?></th>
<th scope="row"><?php _e( 'Add provinces for Vietnam', 'woo-viet' ) ?></th>
<td>
<input name="settings[add_province][enabled]" type="hidden" value="no">
<input name="settings[add_province][enabled]" type="checkbox" id="add_province" value="yes"
<?php if ( 'yes' == $settings['add_province']['enabled'] )
echo 'checked="checked"' ?>>
<label for="add_province"><?php _e( 'Enabled', 'woocommerce-for-vietnam' ) ?></label>
<label for="add_province"><?php _e( 'Enabled', 'woo-viet' ) ?></label>
</td>
</tr>
<tr>
<th scope="row"><?php _e( 'Change VND currency symbol', 'woocommerce-for-vietnam' ) ?></th>
<th scope="row"><?php _e( 'Change VND currency symbol', 'woo-viet' ) ?></th>
<td>
<input name="settings[change_currency_symbol][enabled]" type="hidden" value="no">
<input name="settings[change_currency_symbol][enabled]" type="checkbox"
id="change_currency_symbol" value="yes"
<?php if ( 'yes' == $settings['change_currency_symbol']['enabled'] )
echo 'checked="checked"' ?>>
<label for="change_currency_symbol"><?php _e( 'Enabled', 'woocommerce-for-vietnam' ) ?></label>
<label for="change_currency_symbol"><?php _e( 'Enabled', 'woo-viet' ) ?></label>
<br/>
<br/>
<input type="text" name="settings[change_currency_symbol][text]"
value="<?php echo $settings['change_currency_symbol']['text'] ?>"
id="change_currency_symbol_text" class="small-text">
<label for="change_currency_symbol_text"><?php _e( 'Insert a text to change the default symbol <code>đ</code>', 'woocommerce-for-vietnam' ) ?></label>
<label for="change_currency_symbol_text"><?php _e( 'Insert a text to change the default symbol <code>đ</code>', 'woo-viet' ) ?></label>
</td>
</tr>
<tr>
<th scope="row"><?php _e( 'Convert <code>000</code> of prices to K (or anything)', 'woocommerce-for-vietnam' ) ?></th>
<th scope="row"><?php _e( 'Convert <code>000</code> of prices to K (or anything)', 'woo-viet' ) ?></th>
<td>
<input name="settings[convert_price][enabled]" type="hidden" value="no">
<input name="settings[convert_price][enabled]" type="checkbox" id="convert_price"
value="yes"
<?php if ( 'yes' == $settings['convert_price']['enabled'] )
echo 'checked="checked"' ?>>
<label for="convert_price"><?php _e( 'Enabled', 'woocommerce-for-vietnam' ) ?></label>
<label for="convert_price"><?php _e( 'Enabled', 'woo-viet' ) ?></label>
<fieldset><br/>
<input type="text" name="settings[convert_price][text]"
value="<?php echo $settings['convert_price']['text'] ?>"
id="convert_price_text" class="small-text">
<label for="convert_price_text"><?php _e( 'Choose what you want to change. E.g:', 'woocommerce-for-vietnam' ) ?>
<label for="convert_price_text"><?php _e( 'Choose what you want to change. E.g:', 'woo-viet' ) ?>
<code>K</code>, <code>nghìn</code>, <code>ngàn</code></label>
</fieldset>
</td>
</tr>
<tr>
<th scope="row"><?php printf( __( 'Support VND for <a href="%s">the PayPal Standard gateway</a>', 'woocommerce-for-vietnam' ), 'https://docs.woocommerce.com/document/paypal-standard/' ) ?></th>
<th scope="row"><?php printf( __( 'Support VND for <a href="%s">the PayPal Standard gateway</a>', 'woo-viet' ), 'https://docs.woocommerce.com/document/paypal-standard/' ) ?></th>
<td>
<input name="settings[vnd_paypal_standard][enabled]" type="hidden" value="no">
<input name="settings[vnd_paypal_standard][enabled]" type="checkbox"
id="vnd_paypal_standard" value="yes"
<?php if ( 'yes' == $settings['vnd_paypal_standard']['enabled'] )
echo 'checked="checked"' ?>>
<label for="vnd_paypal_standard"><?php _e( 'Enabled', 'woocommerce-for-vietnam' ) ?></label>
<label for="vnd_paypal_standard"><?php _e( 'Enabled', 'woo-viet' ) ?></label>
<fieldset><br/>
<select name="settings[vnd_paypal_standard][currency]"
@@ -188,14 +188,14 @@ class WooViet_Admin_Page {
}
?>
</select>
<label for="vnd_paypal_standard_currency"><?php _e( 'Select a PayPal supported currency (like USD, EUR, etc), which is used to convert VND prices', 'woocommerce-for-vietnam' ) ?></label>
<label for="vnd_paypal_standard_currency"><?php _e( 'Select a PayPal supported currency (like USD, EUR, etc), which is used to convert VND prices', 'woo-viet' ) ?></label>
<br/>
<br/>
<input name="settings[vnd_paypal_standard][rate]" type="number" step="1" min="100"
id="vnd_paypal_standard_rate" style="width: 70px;"
value="<?php echo $settings['vnd_paypal_standard']['rate'] ?>"
<label for="vnd_paypal_standard_rate"><?php _e( 'Insert the exchange rate of this currency to VND', 'woocommerce-for-vietnam' ) ?></label>
<label for="vnd_paypal_standard_rate"><?php _e( 'Insert the exchange rate of this currency to VND', 'woo-viet' ) ?></label>
</fieldset>
</td>
+63 -63
View File
@@ -68,69 +68,69 @@ class WooViet_Provinces {
* @source: https://vi.wikipedia.org/wiki/Tỉnh_thành_Việt_Nam and https://en.wikipedia.org/wiki/Provinces_of_Vietnam
*/
$states['VN'] = array(
'AN-GIANG' => __( 'An Giang', 'woocommerce-for-vietnam' ),
'BA-RIA-VUNG-TAU' => __( 'Ba Ria - Vung Tau', 'woocommerce-for-vietnam' ),
'BAC-LIEU' => __( 'Bac Lieu', 'woocommerce-for-vietnam' ),
'BAC-KAN' => __( 'Bac Kan', 'woocommerce-for-vietnam' ),
'BAC-GIANG' => __( 'Bac Giang', 'woocommerce-for-vietnam' ),
'BAC-NINH' => __( 'Bac Ninh', 'woocommerce-for-vietnam' ),
'BEN-TRE' => __( 'Ben Tre', 'woocommerce-for-vietnam' ),
'BINH-DUONG' => __( 'Binh Duong', 'woocommerce-for-vietnam' ),
'BINH-DINH' => __( 'Binh Dinh', 'woocommerce-for-vietnam' ),
'BINH-PHUOC' => __( 'Binh Phuoc', 'woocommerce-for-vietnam' ),
'BINH-THUAN' => __( 'Binh Thuan', 'woocommerce-for-vietnam' ),
'CA-MAU' => __( 'Ca Mau', 'woocommerce-for-vietnam' ),
'CAO-BANG' => __( 'Cao Bang', 'woocommerce-for-vietnam' ),
'CAN-THO' => __( 'Can Tho', 'woocommerce-for-vietnam' ),
'DA-NANG' => __( 'Da Nang', 'woocommerce-for-vietnam' ),
'DAK-LAK' => __( 'Dak Lak', 'woocommerce-for-vietnam' ),
'DAK-NONG' => __( 'Dak Nong', 'woocommerce-for-vietnam' ),
'DONG-NAI' => __( 'Dong Nai', 'woocommerce-for-vietnam' ),
'DONG-THAP' => __( 'Dong Thap', 'woocommerce-for-vietnam' ),
'DIEN-BIEN' => __( 'Dien Bien', 'woocommerce-for-vietnam' ),
'GIA-LAI' => __( 'Gia Lai', 'woocommerce-for-vietnam' ),
'HA-GIANG' => __( 'Ha Giang', 'woocommerce-for-vietnam' ),
'HA-NAM' => __( 'Ha Nam', 'woocommerce-for-vietnam' ),
'HA-NOI' => __( 'Ha Noi', 'woocommerce-for-vietnam' ),
'HA-TINH' => __( 'Ha Tinh', 'woocommerce-for-vietnam' ),
'HAI-DUONG' => __( 'Hai Duong', 'woocommerce-for-vietnam' ),
'HAI-PHONG' => __( 'Hai Phong', 'woocommerce-for-vietnam' ),
'HOA-BINH' => __( 'Hoa Binh', 'woocommerce-for-vietnam' ),
'HAU-GIANG' => __( 'Hau Giang', 'woocommerce-for-vietnam' ),
'HUNG-YEN' => __( 'Hung Yen', 'woocommerce-for-vietnam' ),
'HO-CHI-MINH' => __( 'Ho Chi Minh', 'woocommerce-for-vietnam' ),
'KHANH-HOA' => __( 'Khanh Hoa', 'woocommerce-for-vietnam' ),
'KIEN-GIANG' => __( 'Kien Giang', 'woocommerce-for-vietnam' ),
'KON-TUM' => __( 'Kon Tum', 'woocommerce-for-vietnam' ),
'LAI-CHAU' => __( 'Lai Chau', 'woocommerce-for-vietnam' ),
'LAO-CAI' => __( 'Lao Cai', 'woocommerce-for-vietnam' ),
'LANG-SON' => __( 'Lang Son', 'woocommerce-for-vietnam' ),
'LAM-DONG' => __( 'Lam Dong', 'woocommerce-for-vietnam' ),
'LONG-AN' => __( 'Long An', 'woocommerce-for-vietnam' ),
'NAM-DINH' => __( 'Nam Dinh', 'woocommerce-for-vietnam' ),
'NGHE-AN' => __( 'Nghe An', 'woocommerce-for-vietnam' ),
'NINH-BINH' => __( 'Ninh Binh', 'woocommerce-for-vietnam' ),
'NINH-THUAN' => __( 'Ninh Thuan', 'woocommerce-for-vietnam' ),
'PHU-THO' => __( 'Phu Tho', 'woocommerce-for-vietnam' ),
'PHU-YEN' => __( 'Phu Yen', 'woocommerce-for-vietnam' ),
'QUANG-BINH' => __( 'Quang Binh', 'woocommerce-for-vietnam' ),
'QUANG-NAM' => __( 'Quang Nam', 'woocommerce-for-vietnam' ),
'QUANG-NGAI' => __( 'Quang Ngai', 'woocommerce-for-vietnam' ),
'QUANG-NINH' => __( 'Quang Ninh', 'woocommerce-for-vietnam' ),
'QUANG-TRI' => __( 'Quang Tri', 'woocommerce-for-vietnam' ),
'SOC-TRANG' => __( 'Soc Trang', 'woocommerce-for-vietnam' ),
'SON-LA' => __( 'Son La', 'woocommerce-for-vietnam' ),
'TAY-NINH' => __( 'Tay Ninh', 'woocommerce-for-vietnam' ),
'THAI-BINH' => __( 'Thai Binh', 'woocommerce-for-vietnam' ),
'THAI-NGUYEN' => __( 'Thai Nguyen', 'woocommerce-for-vietnam' ),
'THANH-HOA' => __( 'Thanh Hoa', 'woocommerce-for-vietnam' ),
'THUA-THIEN-HUE' => __( 'Thua Thien - Hue', 'woocommerce-for-vietnam' ),
'TIEN-GIANG' => __( 'Tien Giang', 'woocommerce-for-vietnam' ),
'TRA-VINH' => __( 'Tra Vinh', 'woocommerce-for-vietnam' ),
'TUYEN-QUANG' => __( 'Tuyen Quang', 'woocommerce-for-vietnam' ),
'VINH-LONG' => __( 'Vinh Long', 'woocommerce-for-vietnam' ),
'VINH-PHUC' => __( 'Vinh Phuc', 'woocommerce-for-vietnam' ),
'YEN-BAI' => __( 'Yen Bai', 'woocommerce-for-vietnam' ),
'AN-GIANG' => __( 'An Giang', 'woo-viet' ),
'BA-RIA-VUNG-TAU' => __( 'Ba Ria - Vung Tau', 'woo-viet' ),
'BAC-LIEU' => __( 'Bac Lieu', 'woo-viet' ),
'BAC-KAN' => __( 'Bac Kan', 'woo-viet' ),
'BAC-GIANG' => __( 'Bac Giang', 'woo-viet' ),
'BAC-NINH' => __( 'Bac Ninh', 'woo-viet' ),
'BEN-TRE' => __( 'Ben Tre', 'woo-viet' ),
'BINH-DUONG' => __( 'Binh Duong', 'woo-viet' ),
'BINH-DINH' => __( 'Binh Dinh', 'woo-viet' ),
'BINH-PHUOC' => __( 'Binh Phuoc', 'woo-viet' ),
'BINH-THUAN' => __( 'Binh Thuan', 'woo-viet' ),
'CA-MAU' => __( 'Ca Mau', 'woo-viet' ),
'CAO-BANG' => __( 'Cao Bang', 'woo-viet' ),
'CAN-THO' => __( 'Can Tho', 'woo-viet' ),
'DA-NANG' => __( 'Da Nang', 'woo-viet' ),
'DAK-LAK' => __( 'Dak Lak', 'woo-viet' ),
'DAK-NONG' => __( 'Dak Nong', 'woo-viet' ),
'DONG-NAI' => __( 'Dong Nai', 'woo-viet' ),
'DONG-THAP' => __( 'Dong Thap', 'woo-viet' ),
'DIEN-BIEN' => __( 'Dien Bien', 'woo-viet' ),
'GIA-LAI' => __( 'Gia Lai', 'woo-viet' ),
'HA-GIANG' => __( 'Ha Giang', 'woo-viet' ),
'HA-NAM' => __( 'Ha Nam', 'woo-viet' ),
'HA-NOI' => __( 'Ha Noi', 'woo-viet' ),
'HA-TINH' => __( 'Ha Tinh', 'woo-viet' ),
'HAI-DUONG' => __( 'Hai Duong', 'woo-viet' ),
'HAI-PHONG' => __( 'Hai Phong', 'woo-viet' ),
'HOA-BINH' => __( 'Hoa Binh', 'woo-viet' ),
'HAU-GIANG' => __( 'Hau Giang', 'woo-viet' ),
'HUNG-YEN' => __( 'Hung Yen', 'woo-viet' ),
'HO-CHI-MINH' => __( 'Ho Chi Minh', 'woo-viet' ),
'KHANH-HOA' => __( 'Khanh Hoa', 'woo-viet' ),
'KIEN-GIANG' => __( 'Kien Giang', 'woo-viet' ),
'KON-TUM' => __( 'Kon Tum', 'woo-viet' ),
'LAI-CHAU' => __( 'Lai Chau', 'woo-viet' ),
'LAO-CAI' => __( 'Lao Cai', 'woo-viet' ),
'LANG-SON' => __( 'Lang Son', 'woo-viet' ),
'LAM-DONG' => __( 'Lam Dong', 'woo-viet' ),
'LONG-AN' => __( 'Long An', 'woo-viet' ),
'NAM-DINH' => __( 'Nam Dinh', 'woo-viet' ),
'NGHE-AN' => __( 'Nghe An', 'woo-viet' ),
'NINH-BINH' => __( 'Ninh Binh', 'woo-viet' ),
'NINH-THUAN' => __( 'Ninh Thuan', 'woo-viet' ),
'PHU-THO' => __( 'Phu Tho', 'woo-viet' ),
'PHU-YEN' => __( 'Phu Yen', 'woo-viet' ),
'QUANG-BINH' => __( 'Quang Binh', 'woo-viet' ),
'QUANG-NAM' => __( 'Quang Nam', 'woo-viet' ),
'QUANG-NGAI' => __( 'Quang Ngai', 'woo-viet' ),
'QUANG-NINH' => __( 'Quang Ninh', 'woo-viet' ),
'QUANG-TRI' => __( 'Quang Tri', 'woo-viet' ),
'SOC-TRANG' => __( 'Soc Trang', 'woo-viet' ),
'SON-LA' => __( 'Son La', 'woo-viet' ),
'TAY-NINH' => __( 'Tay Ninh', 'woo-viet' ),
'THAI-BINH' => __( 'Thai Binh', 'woo-viet' ),
'THAI-NGUYEN' => __( 'Thai Nguyen', 'woo-viet' ),
'THANH-HOA' => __( 'Thanh Hoa', 'woo-viet' ),
'THUA-THIEN-HUE' => __( 'Thua Thien - Hue', 'woo-viet' ),
'TIEN-GIANG' => __( 'Tien Giang', 'woo-viet' ),
'TRA-VINH' => __( 'Tra Vinh', 'woo-viet' ),
'TUYEN-QUANG' => __( 'Tuyen Quang', 'woo-viet' ),
'VINH-LONG' => __( 'Vinh Long', 'woo-viet' ),
'VINH-PHUC' => __( 'Vinh Phuc', 'woo-viet' ),
'YEN-BAI' => __( 'Yen Bai', 'woo-viet' ),
);
return $states;
+1 -1
View File
@@ -97,7 +97,7 @@ class WooViet_VND_PayPal_Standard {
$value['description'] .= '<br />';
$value['description'] .=
sprintf( __( 'The prices will be converted to %1$s in the PayPal pages with the exchange rate %2$s.', 'woocommerce-for-vietnam' ),
sprintf( __( 'The prices will be converted to %1$s in the PayPal pages with the exchange rate %2$s.', 'woo-viet' ),
"<span style='color:red'> $this->paypal_currency</span>",
"<span style='color:red'> $this->paypal_currency / VND = $this->exchange_rate_to_vnd</span>"
);
@@ -14,9 +14,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Loco https://localise.biz/"
#: woocommerce-for-vietnam.php:87
#: woo-viet.php:87
msgid ""
"WooCommerce for Vietnam is not running because WooCommerce is not active. "
"Woo Viet is not running because WooCommerce is not active. "
"Please activate both plugins"
msgstr ""
@@ -328,7 +328,7 @@ msgid ""
msgstr ""
#. Name of the plugin
msgid "WooCommerce for Vietnam"
msgid "Woo Viet"
msgstr ""
#. Description of the plugin
@@ -337,7 +337,7 @@ msgid ""
msgstr ""
#. URI of the plugin
msgid "https://github.com/htdat/woocommerce-for-vietnam"
msgid "https://github.com/htdat/woo-viet"
msgstr ""
#. Author of the plugin
+9 -9
View File
@@ -11,9 +11,9 @@ Add features to WooCommerce stores having anything related to Vietnam: currency,
== Description ==
`WooCommerce for Vietnam` brings the features that help to run WooCommerce stores and customize them for Vietnam much easier.
`Woo Viet` brings the features that help to run WooCommerce stores and customize them for Vietnam much easier.
`WooCommerce for Vietnam` đem đến các chức năng để site WooCommerce có thể dễ dàng tuỳ biến cho thị trường Việt Nam.
`Woo Viet` đem đến các chức năng để site WooCommerce có thể dễ dàng tuỳ biến cho thị trường Việt Nam.
**Chức năng - Features**
@@ -53,7 +53,7 @@ In the future, this plugin will be added more and more features for the Vietnam
**Where can I contribute my code or idea?**
* You can report bugs or contribute code on [this GitHub repo](https://github.com/htdat/woocommerce-for-vietnam).
* You can report bugs or contribute code on [this GitHub repo](https://github.com/htdat/woo-viet).
* Please also do let us know if the "bug" is just a grammar/spelling error in both English and Vietnamese. We try to make our products as perfect as possible.
@@ -61,29 +61,29 @@ In the future, this plugin will be added more and more features for the Vietnam
Follow these steps to install and use the plugin:
1. Upload the plugin files to the `/wp-content/plugins/woocommerce-for-vietnam` directory, or install the plugin through the WordPress plugins screen directly.
1. Upload the plugin files to the `/wp-content/plugins/woo-viet` directory, or install the plugin through the WordPress plugins screen directly.
1. Activate the plugin through the `Plugins` screen in WordPress.
1. Go to the `WooCommerce -> WooCommerce for Vietnam` screen and configure the plugin.
1. Go to the `WooCommerce -> Woo Viet` screen and configure the plugin.
== Installation ==
Follow these steps to install and use the plugin:
1. Upload the plugin files to the `/wp-content/plugins/woocommerce-for-vietnam` directory, or install the plugin through the WordPress plugins screen directly.
1. Upload the plugin files to the `/wp-content/plugins/woo-viet` directory, or install the plugin through the WordPress plugins screen directly.
1. Activate the plugin through the 'Plugins' screen in WordPress.
1. Go to the `WooCommerce -> WooCommerce for Vietnam` screen and configure the plugin.
1. Go to the `WooCommerce -> Woo Viet` screen and configure the plugin.
== Frequently Asked Questions ==
= Where can I contribute my code or idea? =
* You can report bugs or contribute code on [this GitHub repo](https://github.com/htdat/woocommerce-for-vietnam).
* You can report bugs or contribute code on [this GitHub repo](https://github.com/htdat/woo-viet).
* Please also do let us know if the "bug" is just a grammar/spelling error in both English and Vietnamese. We try to make our products as perfect as possible.
== Screenshots ==
1. The settings page under WooCommerce -> WooCommerce for Vietnam.
1. The settings page under WooCommerce -> Woo Viet.
2. Prices are changed to "K", and the symbol is now "VND".
3. List provinces when selecting Vietnam.
4. Let clients know about the currency conversion before switching to the PayPal pages.
+6 -6
View File
@@ -1,11 +1,11 @@
<?php
/**
* Plugin Name: WooCommerce for Vietnam
* Plugin URI: https://github.com/htdat/woocommerce-for-vietnam
* Plugin Name: Woo Viet
* Plugin URI: https://github.com/htdat/woo-viet
* Description: This plugin provides features and integrations specifically for Vietnam.
* Author: htdat
* Author URI: https://profiles.wordpress.org/htdat
* Text Domain: woocommerce-for-vietnam
* Text Domain: woo-viet
* Domain Path: /languages
* Version: 1.0
* License: GPLv2+
@@ -84,8 +84,8 @@ class WooViet {
public function notice_if_not_woocommerce() {
$class = 'notice notice-error';
$message = __( 'WooCommerce for Vietnam is not running because WooCommerce is not active. Please activate both plugins',
'woocommerce-for-vietnam' );
$message = __( 'Woo Viet is not running because WooCommerce is not active. Please activate both plugins',
'woo-viet' );
printf( '<div class="%1$s"><p><strong>%2$s</strong></p></div>', $class, $message );
}
@@ -165,7 +165,7 @@ class WooViet {
* @return array
*/
static function get_settings() {
return get_option( 'woocommerce-for-vietnam', self::$default_settings );
return get_option( 'woo-viet', self::$default_settings );
}
}