Version Description
- 2014.09.05 =
- Localization - Included a .pot file for localization
Download this release
Release Info
Developer | SkyVerge |
Plugin | WooCommerce Sequential Order Numbers |
Version | 1.3.3 |
Comparing to | |
See all releases |
Code changes from version 1.3.2 to 1.3.3
assets/icon-128x128.png
DELETED
Binary file
|
assets/icon-256x256.png
DELETED
Binary file
|
i18n/languages/woocommerce-sequential-order-numbers.pot
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 SkyVerge
|
2 |
+
# This file is distributed under the GNU General Public License v3.0.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: WooCommerce Sequential Order Numbers 1.3.3\n"
|
6 |
+
"Report-Msgid-Bugs-To: "
|
7 |
+
"https://github.com/skyverge/woocommerce-sequential-order-numbers/issues\n"
|
8 |
+
"POT-Creation-Date: 2014-09-05 22:27:38+00:00\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
|
13 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
+
|
16 |
+
#. Plugin Name of the plugin/theme
|
17 |
+
msgid "WooCommerce Sequential Order Numbers"
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#. Plugin URI of the plugin/theme
|
21 |
+
msgid "http://www.skyverge.com/blog/woocommerce-sequential-order-numbers/"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#. Description of the plugin/theme
|
25 |
+
msgid "Provides sequential order numbers for WooCommerce orders"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#. Author of the plugin/theme
|
29 |
+
msgid "SkyVerge"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#. Author URI of the plugin/theme
|
33 |
+
msgid "http://www.skyverge.com"
|
34 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -1,8 +1,11 @@
|
|
1 |
=== WooCommerce Sequential Order Numbers ===
|
2 |
Contributors: SkyVerge
|
3 |
Tags: woocommerce, order number
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
6 |
|
7 |
This plugin extends the WooCommerce e-commerce plugin by setting sequential order numbers for new orders.
|
8 |
|
@@ -40,7 +43,10 @@ This free version does not have that functionality, but now you can with the pre
|
|
40 |
|
41 |
== Changelog ==
|
42 |
|
43 |
-
= 1.3.
|
|
|
|
|
|
|
44 |
* Misc - WooCommerce 2.2 compatibility
|
45 |
|
46 |
= 1.3.1 - 2014.01.22 =
|
1 |
=== WooCommerce Sequential Order Numbers ===
|
2 |
Contributors: SkyVerge
|
3 |
Tags: woocommerce, order number
|
4 |
+
Requires at least: 3.8
|
5 |
+
Tested up to: 4.0
|
6 |
+
Requires WooCommerce at least: 2.0
|
7 |
+
Tested WooCommerce up to: 2.2
|
8 |
+
Stable tag: 1.3.3
|
9 |
|
10 |
This plugin extends the WooCommerce e-commerce plugin by setting sequential order numbers for new orders.
|
11 |
|
43 |
|
44 |
== Changelog ==
|
45 |
|
46 |
+
= 1.3.3 - 2014.09.05 =
|
47 |
+
* Localization - Included a .pot file for localization
|
48 |
+
|
49 |
+
= 1.3.2 - 2014.09.02 =
|
50 |
* Misc - WooCommerce 2.2 compatibility
|
51 |
|
52 |
= 1.3.1 - 2014.01.22 =
|
woocommerce-sequential-order-numbers.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Provides sequential order numbers for WooCommerce orders
|
6 |
* Author: SkyVerge
|
7 |
* Author URI: http://www.skyverge.com
|
8 |
-
* Version: 1.3.
|
9 |
*
|
10 |
* Copyright: (c) 2012-2013 SkyVerge, Inc. (info@skyverge.com)
|
11 |
*
|
@@ -36,7 +36,7 @@ $GLOBALS['wc_seq_order_number'] = new WC_Seq_Order_Number();
|
|
36 |
class WC_Seq_Order_Number {
|
37 |
|
38 |
/** version number */
|
39 |
-
const VERSION = "1.3.
|
40 |
|
41 |
/** version option name */
|
42 |
const VERSION_OPTION_NAME = "woocommerce_seq_order_number_db_version";
|
@@ -53,7 +53,7 @@ class WC_Seq_Order_Number {
|
|
53 |
public function __construct() {
|
54 |
|
55 |
add_action( 'plugins_loaded', array( $this, 'initialize' ) );
|
56 |
-
|
57 |
}
|
58 |
|
59 |
|
@@ -101,6 +101,18 @@ class WC_Seq_Order_Number {
|
|
101 |
}
|
102 |
|
103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
/**
|
105 |
* Search for an order with order_number $order_number
|
106 |
*
|
5 |
* Description: Provides sequential order numbers for WooCommerce orders
|
6 |
* Author: SkyVerge
|
7 |
* Author URI: http://www.skyverge.com
|
8 |
+
* Version: 1.3.3
|
9 |
*
|
10 |
* Copyright: (c) 2012-2013 SkyVerge, Inc. (info@skyverge.com)
|
11 |
*
|
36 |
class WC_Seq_Order_Number {
|
37 |
|
38 |
/** version number */
|
39 |
+
const VERSION = "1.3.3";
|
40 |
|
41 |
/** version option name */
|
42 |
const VERSION_OPTION_NAME = "woocommerce_seq_order_number_db_version";
|
53 |
public function __construct() {
|
54 |
|
55 |
add_action( 'plugins_loaded', array( $this, 'initialize' ) );
|
56 |
+
add_action( 'init', array( $this, 'load_translation' ) );
|
57 |
}
|
58 |
|
59 |
|
101 |
}
|
102 |
|
103 |
|
104 |
+
/**
|
105 |
+
* Load Translations
|
106 |
+
*
|
107 |
+
* @since 1.3.3
|
108 |
+
*/
|
109 |
+
public function load_translation() {
|
110 |
+
|
111 |
+
// localization
|
112 |
+
load_plugin_textdomain( 'woocommerce-sequential-order-numbers', false, dirname( plugin_basename( __FILE__ ) ) . '/i18n/languages' );
|
113 |
+
}
|
114 |
+
|
115 |
+
|
116 |
/**
|
117 |
* Search for an order with order_number $order_number
|
118 |
*
|