Changeset 1680720
- Timestamp:
- 06/18/2017 06:37:33 PM (9 years ago)
- Location:
- wc-stock-amount-report/trunk
- Files:
-
- 5 edited
-
changelog.txt (modified) (1 diff)
-
languages/wc-stock-amount-report.pot (modified) (2 diffs)
-
package.json (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wc-stock-amount-report.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wc-stock-amount-report/trunk/changelog.txt
r1622378 r1680720 1 1 *** WC Stock Amount Report Changelog *** 2 3 2017-06-18 - version 0.0.8 4 * Fix i18n 2 5 3 6 2017-03-26 - version 0.0.7 -
wc-stock-amount-report/trunk/languages/wc-stock-amount-report.pot
r1622378 r1680720 7 7 msgid "" 8 8 msgstr "" 9 "Project-Id-Version: wc-stock-amount-report 0.0. 7\n"9 "Project-Id-Version: wc-stock-amount-report 0.0.8\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2017-0 3-26 15:48-0300\n"11 "POT-Creation-Date: 2017-06-18 15:35-0300\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 18 18 "Content-Transfer-Encoding: 8bit\n" 19 19 20 #: classes/class-wc- report-stock-amount.php:4620 #: classes/class-wc-stock-amount-report.php:46 21 21 msgid "items" 22 22 msgstr "" 23 23 24 #: classes/class-wc- report-stock-amount.php:5024 #: classes/class-wc-stock-amount-report.php:50 25 25 msgid "Total" 26 26 msgstr "" 27 27 28 #: classes/class-wc- report-stock-amount.php:11628 #: classes/class-wc-stock-amount-report.php:116 29 29 msgid "Product" 30 30 msgstr "" 31 31 32 #: classes/class-wc- report-stock-amount.php:11732 #: classes/class-wc-stock-amount-report.php:117 33 33 msgid "Units in stock" 34 34 msgstr "" 35 35 36 #: classes/class-wc- report-stock-amount.php:11836 #: classes/class-wc-stock-amount-report.php:118 37 37 msgid "Price" 38 38 msgstr "" 39 39 40 #: classes/class-wc- report-stock-amount.php:11940 #: classes/class-wc-stock-amount-report.php:119 41 41 msgid "Total Price" 42 42 msgstr "" -
wc-stock-amount-report/trunk/package.json
r1622378 r1680720 1 1 { 2 2 "name": "wc-stock-amount-report", 3 "version": "0.0. 7",3 "version": "0.0.8", 4 4 "description": "Report to visualize how much you have in your available stock if you sell everything.", 5 5 "main": "Gruntfile.js", -
wc-stock-amount-report/trunk/readme.txt
r1622378 r1680720 3 3 Tags: woocommerce, extension, reporting, stock, analytics 4 4 Requires at least: 3.8 5 Tested up to: 4. 7.36 Stable tag: 0.0. 75 Tested up to: 4.8.0 6 Stable tag: 0.0.8 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 38 38 == Changelog == 39 39 40 = 0.0.8 - 2017-06-18 = 41 * Fix i18n 42 40 43 = 0.0.7 - 2017-03-26 = 41 44 * Add pot -
wc-stock-amount-report/trunk/wc-stock-amount-report.php
r1622378 r1680720 6 6 * Author: Thiago Guimarães 7 7 * Author URI: https://github.com/thiagogsr 8 * Version: 0.0. 78 * Version: 0.0.8 9 9 * Text Domain: wc_stock_amount_report 10 10 * Domain Path: /languages/ … … 40 40 class WC_StockAmount_Report { 41 41 /** plugin version number */ 42 public static $version = '0.0. 7';42 public static $version = '0.0.8'; 43 43 44 44 /** @var string the plugin file */ … … 75 75 public static function initialize_location_admin_report($report) { 76 76 $report['stock']['reports']['stock_amount'] = array( 77 'title' => __('Stock amount', 'wc- report-stock-amount'),77 'title' => __('Stock amount', 'wc-stock-amount-report'), 78 78 'description' => '', 79 79 'hide_title' => true, … … 92 92 */ 93 93 public static function initialize_location_admin_reports_path($report_path, $name, $class) { 94 if ('WC_ Report_stock_amount' == $class) {95 $report_path = self::$plugin_dir . '/classes/class-wc- report-' . $name . '.php';94 if ('WC_Stock_Amount_Report' == $class) { 95 $report_path = self::$plugin_dir . '/classes/class-wc-' . $name . '-report.php'; 96 96 } 97 97
Note: See TracChangeset
for help on using the changeset viewer.