Changeset 1875243
- Timestamp:
- 05/16/2018 08:39:13 AM (7 years ago)
- Location:
- wc-gift-packaging
- Files:
-
- 7 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
wc-gift-packaging/trunk/languages/woocommerce-gift-packaging-de_DE.po
r1523097 r1875243 2 2 msgstr "" 3 3 "Project-Id-Version: WooCommerce Gift Packaging\n" 4 "POT-Creation-Date: 201 6-10-18 10:07+0200\n"5 "PO-Revision-Date: 201 6-10-18 11:30+0200\n"6 "Last-Translator: \n"4 "POT-Creation-Date: 2018-05-16 10:38+0200\n" 5 "PO-Revision-Date: 2018-05-16 10:38+0200\n" 6 "Last-Translator: Johannes Grandy <[email protected]>\n" 7 7 "Language-Team: Johannes Grandy <[email protected]>\n" 8 8 "Language: de\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Generator: Poedit 1.8.10\n"12 "X-Generator: Poedit 2.0.6\n" 13 13 "X-Poedit-KeywordsList: __;_e;_n:1,2\n" 14 14 "X-Poedit-Basepath: .\n" … … 17 17 "X-Poedit-SearchPath-0: ..\n" 18 18 19 #: ../w oo_gift_options.php:4619 #: ../wc-gift-packaging.php:50 20 20 msgid "Send this order packaged as gift" 21 21 msgstr "Diese Bestellung als Geschenk verpackt versenden" 22 22 23 #: ../w oo_gift_options.php:88 ../woo_gift_options.php:13124 #: ../w oo_gift_options.php:153 ../woo_gift_options.php:17623 #: ../wc-gift-packaging.php:99 ../wc-gift-packaging.php:138 24 #: ../wc-gift-packaging.php:156 ../wc-gift-packaging.php:175 25 25 msgid "Gift packaging" 26 26 msgstr "Geschenkverpackung" 27 27 28 #: ../w oo_gift_options.php:123 ../woo_gift_options.php:14529 #: ../w oo_gift_options.php:16828 #: ../wc-gift-packaging.php:136 ../wc-gift-packaging.php:154 29 #: ../wc-gift-packaging.php:173 30 30 msgid "Yes" 31 31 msgstr "Ja" 32 32 33 #: ../w oo_gift_options.php:127 ../woo_gift_options.php:14934 #: ../w oo_gift_options.php:17233 #: ../wc-gift-packaging.php:136 ../wc-gift-packaging.php:154 34 #: ../wc-gift-packaging.php:173 35 35 msgid "No" 36 36 msgstr "Nein" 37 37 38 #: ../w oo_gift_options.php:19038 #: ../wc-gift-packaging.php:191 39 39 msgid "Gift packaging cost" 40 40 msgstr "Kosten für die Geschenkverpackung" 41 41 42 #: ../w oo_gift_options.php:19142 #: ../wc-gift-packaging.php:192 43 43 msgid "Set here the cost for gift packaging" 44 44 msgstr "Gib hier die Kosten für die Geschenkverpackung an" -
wc-gift-packaging/trunk/readme.txt
r1820345 r1875243 8 8 Copyright: Arpit Tambi 9 9 Copyright URI: http://aheadzen.com/ 10 Stable tag: 1. 210 Stable tag: 1.3 11 11 12 12 This plugin adds a 'Send this order packaged as gift' option on the WooCommerce checkout. … … 123 123 == Changelog == 124 124 125 = 1.3 = 126 * Bugfix that removes a PHP-Undefined-Index-Notice 127 125 128 = 1.2 = 126 129 * Bugfix that changes `$order->id` to `$order->get_order_number()` -
wc-gift-packaging/trunk/wc-gift-packaging.php
r1666255 r1875243 11 11 Copyright: Arpit Tambi 12 12 Copyright URI: http://aheadzen.com/ 13 Version: 1. 213 Version: 1.3 14 14 15 15 */ … … 95 95 parse_str( $_POST[ 'post_data' ], $data ); 96 96 97 if( ( $data[ 'wc-gift-packaging' ] OR $_POST[ 'wc-gift-packaging' ]) AND !empty( $gift_packaging_fee ) ):97 if( ( isset( $data[ 'wc-gift-packaging' ] ) OR isset( $_POST[ 'wc-gift-packaging' ] ) ) AND !empty( $gift_packaging_fee ) ): 98 98 99 99 $woocommerce->cart->add_fee( __( 'Gift packaging', 'wc-gift-packaging' ), $gift_packaging_fee );
Note: See TracChangeset
for help on using the changeset viewer.