Changeset 1592803
- Timestamp:
- 02/09/2017 09:40:23 PM (9 years ago)
- Location:
- edd-fastbill
- Files:
-
- 16 edited
- 1 copied
-
tags/1.5.1 (copied) (copied from edd-fastbill/trunk)
-
tags/1.5.1/edd-fastbill.php (modified) (1 diff)
-
tags/1.5.1/includes/fastbill-functions.php (modified) (3 diffs)
-
tags/1.5.1/includes/payment-actions.php (modified) (3 diffs)
-
tags/1.5.1/includes/register-settings.php (modified) (1 diff)
-
tags/1.5.1/languages/edd-fastbill-de_DE.mo (modified) (previous)
-
tags/1.5.1/languages/edd-fastbill-de_DE.po (modified) (2 diffs)
-
tags/1.5.1/languages/edd-fastbill.pot (modified) (2 diffs)
-
tags/1.5.1/readme.txt (modified) (2 diffs)
-
trunk/edd-fastbill.php (modified) (1 diff)
-
trunk/includes/fastbill-functions.php (modified) (3 diffs)
-
trunk/includes/payment-actions.php (modified) (3 diffs)
-
trunk/includes/register-settings.php (modified) (1 diff)
-
trunk/languages/edd-fastbill-de_DE.mo (modified) (previous)
-
trunk/languages/edd-fastbill-de_DE.po (modified) (2 diffs)
-
trunk/languages/edd-fastbill.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
edd-fastbill/tags/1.5.1/edd-fastbill.php
r1590243 r1592803 6 6 Author: Markus Drubba 7 7 Author URI: http://markusdrubba.de 8 Version: 1.5. 08 Version: 1.5.1 9 9 Text Domain: edd-fastbill 10 10 Domain Path: /languages -
edd-fastbill/tags/1.5.1/includes/fastbill-functions.php
r1590243 r1592803 14 14 use drumba\EDD\FastBill\Helper\Logger; 15 15 use SimpleXMLElement; 16 use Exception; 16 17 17 18 class FastBill { … … 23 24 * Create a new instance 24 25 * 25 * @throws \Exception26 * @throws Exception 26 27 */ 27 28 public function __construct() { 28 29 global $edd_options; 29 30 31 if ( ! isset( $edd_options['drubba_fb_fastbill_api_key'] ) || ! isset( $edd_options['drubba_fb_fastbill_email'] ) ) { 32 throw new Exception( __( 'Invalid FastBill credentials supplied', 'edd-fastbill' ) ); 33 } 34 30 35 $this->api_key = $edd_options['drubba_fb_fastbill_api_key']; 31 36 $this->api_email = $edd_options['drubba_fb_fastbill_email']; 32 37 $this->logger = new Logger( 'edd_fastbill_error_log' ); 33 38 34 if ( empty( $this->api_key ) || empty( $this->api_email ) ) {35 throw new \Exception( __( 'Invalid FastBill credentials supplied', 'edd-fastbill' ) );36 }37 39 } 38 40 … … 40 42 * Create a client record in FastBill for the given order. 41 43 * 42 * @param $payment_id 44 * @param $payment_id 45 * @param boolean $client_id 43 46 * 44 47 * @return mixed -
edd-fastbill/tags/1.5.1/includes/payment-actions.php
r1590243 r1592803 11 11 12 12 namespace drumba\EDD\FastBill; 13 14 13 15 14 class Payment_Actions { … … 113 112 */ 114 113 private function _checkout_with_advance_payment_gateway() { 114 if ( ! isset( $this->edd_options['drubba_fb_fastbill_advance_payment_gateways'] ) || ! is_array( $this->edd_options['drubba_fb_fastbill_advance_payment_gateways'] ) ) { 115 return false; 116 } 117 115 118 $gateway = edd_get_payment_gateway( $this->payment_id ); 116 119 … … 120 123 } 121 124 122 $payment_actions = new Payment_Actions( new FastBill() ); 123 $payment_actions->load(); 125 try { 126 127 $fastbill = new FastBill(); 128 $payment_actions = new Payment_Actions( $fastbill ); 129 $payment_actions->load(); 130 131 } catch ( \Exception $e ) { 132 } -
edd-fastbill/tags/1.5.1/includes/register-settings.php
r1590243 r1592803 213 213 ); 214 214 215 $fastbill = new \drumba\EDD\FastBill\FastBill(); 215 try { 216 217 $fastbill = new \drumba\EDD\FastBill\FastBill(); 218 219 } catch ( \Exception $e ) { 220 221 return $templates; 222 223 } 224 216 225 $templates_array = $fastbill->templates_get(); 217 226 -
edd-fastbill/tags/1.5.1/languages/edd-fastbill-de_DE.po
r1590243 r1592803 3 3 "Project-Id-Version: EDD - FastBill\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2017-02-0 6 21:07+0100\n"6 "PO-Revision-Date: 2017-02-0 6 21:07+0100\n"5 "POT-Creation-Date: 2017-02-09 22:36+0100\n" 6 "PO-Revision-Date: 2017-02-09 22:36+0100\n" 7 7 "Last-Translator: Markus Drubba <kontakt@markusdrubba.de>\n" 8 8 "Language-Team: \n" … … 20 20 "X-Poedit-SearchPath-0: .\n" 21 21 22 #: includes/fastbill-functions.php:3 522 #: includes/fastbill-functions.php:32 23 23 msgid "Invalid FastBill credentials supplied" 24 24 msgstr "Scheinbar stimmen deine FastBill Zugangsdaten nicht" 25 25 26 26 # @ edd-fastbill 27 #: includes/fastbill-functions.php:16 327 #: includes/fastbill-functions.php:166 28 28 msgid "There was an error creating this customer in FastBill:" 29 29 msgstr "Es gab einen Fehler beim Erstellen des Kunden bei FastBill:" 30 30 31 31 # @ edd-fastbill 32 #: includes/fastbill-functions.php:16 4 includes/fastbill-functions.php:21633 #: includes/fastbill-functions.php:38 2 includes/fastbill-functions.php:43934 #: includes/fastbill-functions.php:49 4 includes/fastbill-functions.php:54835 #: includes/fastbill-functions.php:60 3 includes/fastbill-functions.php:63636 #: includes/fastbill-functions.php:64 3 includes/fastbill-functions.php:68037 #: includes/fastbill-functions.php:73 5 includes/fastbill-functions.php:78832 #: includes/fastbill-functions.php:167 includes/fastbill-functions.php:219 33 #: includes/fastbill-functions.php:385 includes/fastbill-functions.php:442 34 #: includes/fastbill-functions.php:497 includes/fastbill-functions.php:551 35 #: includes/fastbill-functions.php:606 includes/fastbill-functions.php:639 36 #: includes/fastbill-functions.php:646 includes/fastbill-functions.php:683 37 #: includes/fastbill-functions.php:738 includes/fastbill-functions.php:791 38 38 msgid "Error: " 39 39 msgstr "Fehler: " 40 40 41 41 # @ edd-fastbill 42 #: includes/fastbill-functions.php:21 542 #: includes/fastbill-functions.php:218 43 43 msgid "There was an error looking up this customer in FastBill:" 44 44 msgstr "Es gab einen Fehler beim Suchen des Kunden bei FastBill:" 45 45 46 46 # @ edd-fastbill 47 #: includes/fastbill-functions.php:2 7947 #: includes/fastbill-functions.php:282 48 48 msgid "Discount used: " 49 49 msgstr "Verwendeter Gutschein-Code: " 50 50 51 #: includes/fastbill-functions.php:31 251 #: includes/fastbill-functions.php:315 52 52 msgid "renewal" 53 53 msgstr "Lizenzverlängerung" 54 54 55 55 # @ edd-fastbill 56 #: includes/fastbill-functions.php:38 156 #: includes/fastbill-functions.php:384 57 57 msgid "There was an error adding the invocie to FastBill:" 58 58 msgstr "Es gab einen Fehler beim Erstellen der Rechnung bei FastBill:" 59 59 60 60 # @ edd-fastbill 61 #: includes/fastbill-functions.php:4 38 includes/fastbill-functions.php:49361 #: includes/fastbill-functions.php:441 includes/fastbill-functions.php:496 62 62 msgid "There was an error completing invoice in FastBill:" 63 63 msgstr "Es gab einen Fehler beim finalen Erstellen der Rechnung:" 64 64 65 #: includes/fastbill-functions.php:5 4765 #: includes/fastbill-functions.php:550 66 66 msgid "There was an error canceling an invoice in FastBill:" 67 67 msgstr "Es gab einen Fehler beim canceln der Rechnung in FastBill:" 68 68 69 #: includes/fastbill-functions.php:60 269 #: includes/fastbill-functions.php:605 70 70 msgid "There was an error deleting an invoice in FastBill:" 71 71 msgstr "Es gab einen Fehler beim löschen der Rechnung in FastBill:" 72 72 73 #: includes/fastbill-functions.php:6 7973 #: includes/fastbill-functions.php:682 74 74 msgid "There was an error sending an invoice via FastBill:" 75 75 msgstr "Es gab einen Fehler beim senden der Rechnung via FastBill:" 76 76 77 77 # @ edd-fastbill 78 #: includes/fastbill-functions.php:73 478 #: includes/fastbill-functions.php:737 79 79 msgid "There was an error creating a payment in FastBill:" 80 80 msgstr "Es gab einen Fehler beim setzen der Rechnung als bezahlt:" 81 81 82 82 # @ edd-fastbill 83 #: includes/fastbill-functions.php:7 8783 #: includes/fastbill-functions.php:790 84 84 msgid "There was an error when receiving templates from FastBill:" 85 85 msgstr "" -
edd-fastbill/tags/1.5.1/languages/edd-fastbill.pot
r1590243 r1592803 6 6 "Project-Id-Version: EDD - FastBill\n" 7 7 "Report-Msgid-Bugs-To: \n" 8 "POT-Creation-Date: 2017-02-0 6 21:07+0100\n"8 "POT-Creation-Date: 2017-02-09 22:36+0100\n" 9 9 "PO-Revision-Date: 2016-12-07 00:33+0100\n" 10 10 "Last-Translator: Markus Drubba <kontakt@markusdrubba.de>\n" … … 23 23 "X-Poedit-SearchPath-0: .\n" 24 24 25 #: includes/fastbill-functions.php:3 525 #: includes/fastbill-functions.php:32 26 26 msgid "Invalid FastBill credentials supplied" 27 27 msgstr "" 28 28 29 #: includes/fastbill-functions.php:16 329 #: includes/fastbill-functions.php:166 30 30 msgid "There was an error creating this customer in FastBill:" 31 31 msgstr "" 32 32 33 #: includes/fastbill-functions.php:16 4 includes/fastbill-functions.php:216 includes/fastbill-functions.php:38234 #: includes/fastbill-functions.php:4 39 includes/fastbill-functions.php:494 includes/fastbill-functions.php:54835 #: includes/fastbill-functions.php:60 3 includes/fastbill-functions.php:636 includes/fastbill-functions.php:64336 #: includes/fastbill-functions.php:68 0 includes/fastbill-functions.php:735 includes/fastbill-functions.php:78833 #: includes/fastbill-functions.php:167 includes/fastbill-functions.php:219 includes/fastbill-functions.php:385 34 #: includes/fastbill-functions.php:442 includes/fastbill-functions.php:497 includes/fastbill-functions.php:551 35 #: includes/fastbill-functions.php:606 includes/fastbill-functions.php:639 includes/fastbill-functions.php:646 36 #: includes/fastbill-functions.php:683 includes/fastbill-functions.php:738 includes/fastbill-functions.php:791 37 37 msgid "Error: " 38 38 msgstr "" 39 39 40 #: includes/fastbill-functions.php:21 540 #: includes/fastbill-functions.php:218 41 41 msgid "There was an error looking up this customer in FastBill:" 42 42 msgstr "" 43 43 44 #: includes/fastbill-functions.php:2 7944 #: includes/fastbill-functions.php:282 45 45 msgid "Discount used: " 46 46 msgstr "" 47 47 48 #: includes/fastbill-functions.php:31 248 #: includes/fastbill-functions.php:315 49 49 msgid "renewal" 50 50 msgstr "" 51 51 52 #: includes/fastbill-functions.php:38 152 #: includes/fastbill-functions.php:384 53 53 msgid "There was an error adding the invocie to FastBill:" 54 54 msgstr "" 55 55 56 #: includes/fastbill-functions.php:4 38 includes/fastbill-functions.php:49356 #: includes/fastbill-functions.php:441 includes/fastbill-functions.php:496 57 57 msgid "There was an error completing invoice in FastBill:" 58 58 msgstr "" 59 59 60 #: includes/fastbill-functions.php:5 4760 #: includes/fastbill-functions.php:550 61 61 msgid "There was an error canceling an invoice in FastBill:" 62 62 msgstr "" 63 63 64 #: includes/fastbill-functions.php:60 264 #: includes/fastbill-functions.php:605 65 65 msgid "There was an error deleting an invoice in FastBill:" 66 66 msgstr "" 67 67 68 #: includes/fastbill-functions.php:6 7968 #: includes/fastbill-functions.php:682 69 69 msgid "There was an error sending an invoice via FastBill:" 70 70 msgstr "" 71 71 72 #: includes/fastbill-functions.php:73 472 #: includes/fastbill-functions.php:737 73 73 msgid "There was an error creating a payment in FastBill:" 74 74 msgstr "" 75 75 76 #: includes/fastbill-functions.php:7 8776 #: includes/fastbill-functions.php:790 77 77 msgid "There was an error when receiving templates from FastBill:" 78 78 msgstr "" -
edd-fastbill/tags/1.5.1/readme.txt
r1590243 r1592803 5 5 Requires at least: 4.5 6 6 Tested up to: 4.7.2 7 Stable tag: 1.5. 07 Stable tag: 1.5.1 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 40 40 == Changelog == 41 42 = 2017-02-09 1.5.1 = 43 44 * Fixed: Fatal Error on plugin activation or when the FastBill credentials are not saved 45 * Fixed: Fixed a PHP Notice when no advanced payment gateways is selected 41 46 42 47 = 2017-02-04 1.5.0 = -
edd-fastbill/trunk/edd-fastbill.php
r1590243 r1592803 6 6 Author: Markus Drubba 7 7 Author URI: http://markusdrubba.de 8 Version: 1.5. 08 Version: 1.5.1 9 9 Text Domain: edd-fastbill 10 10 Domain Path: /languages -
edd-fastbill/trunk/includes/fastbill-functions.php
r1590243 r1592803 14 14 use drumba\EDD\FastBill\Helper\Logger; 15 15 use SimpleXMLElement; 16 use Exception; 16 17 17 18 class FastBill { … … 23 24 * Create a new instance 24 25 * 25 * @throws \Exception26 * @throws Exception 26 27 */ 27 28 public function __construct() { 28 29 global $edd_options; 29 30 31 if ( ! isset( $edd_options['drubba_fb_fastbill_api_key'] ) || ! isset( $edd_options['drubba_fb_fastbill_email'] ) ) { 32 throw new Exception( __( 'Invalid FastBill credentials supplied', 'edd-fastbill' ) ); 33 } 34 30 35 $this->api_key = $edd_options['drubba_fb_fastbill_api_key']; 31 36 $this->api_email = $edd_options['drubba_fb_fastbill_email']; 32 37 $this->logger = new Logger( 'edd_fastbill_error_log' ); 33 38 34 if ( empty( $this->api_key ) || empty( $this->api_email ) ) {35 throw new \Exception( __( 'Invalid FastBill credentials supplied', 'edd-fastbill' ) );36 }37 39 } 38 40 … … 40 42 * Create a client record in FastBill for the given order. 41 43 * 42 * @param $payment_id 44 * @param $payment_id 45 * @param boolean $client_id 43 46 * 44 47 * @return mixed -
edd-fastbill/trunk/includes/payment-actions.php
r1590243 r1592803 11 11 12 12 namespace drumba\EDD\FastBill; 13 14 13 15 14 class Payment_Actions { … … 113 112 */ 114 113 private function _checkout_with_advance_payment_gateway() { 114 if ( ! isset( $this->edd_options['drubba_fb_fastbill_advance_payment_gateways'] ) || ! is_array( $this->edd_options['drubba_fb_fastbill_advance_payment_gateways'] ) ) { 115 return false; 116 } 117 115 118 $gateway = edd_get_payment_gateway( $this->payment_id ); 116 119 … … 120 123 } 121 124 122 $payment_actions = new Payment_Actions( new FastBill() ); 123 $payment_actions->load(); 125 try { 126 127 $fastbill = new FastBill(); 128 $payment_actions = new Payment_Actions( $fastbill ); 129 $payment_actions->load(); 130 131 } catch ( \Exception $e ) { 132 } -
edd-fastbill/trunk/includes/register-settings.php
r1590243 r1592803 213 213 ); 214 214 215 $fastbill = new \drumba\EDD\FastBill\FastBill(); 215 try { 216 217 $fastbill = new \drumba\EDD\FastBill\FastBill(); 218 219 } catch ( \Exception $e ) { 220 221 return $templates; 222 223 } 224 216 225 $templates_array = $fastbill->templates_get(); 217 226 -
edd-fastbill/trunk/languages/edd-fastbill-de_DE.po
r1590243 r1592803 3 3 "Project-Id-Version: EDD - FastBill\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2017-02-0 6 21:07+0100\n"6 "PO-Revision-Date: 2017-02-0 6 21:07+0100\n"5 "POT-Creation-Date: 2017-02-09 22:36+0100\n" 6 "PO-Revision-Date: 2017-02-09 22:36+0100\n" 7 7 "Last-Translator: Markus Drubba <kontakt@markusdrubba.de>\n" 8 8 "Language-Team: \n" … … 20 20 "X-Poedit-SearchPath-0: .\n" 21 21 22 #: includes/fastbill-functions.php:3 522 #: includes/fastbill-functions.php:32 23 23 msgid "Invalid FastBill credentials supplied" 24 24 msgstr "Scheinbar stimmen deine FastBill Zugangsdaten nicht" 25 25 26 26 # @ edd-fastbill 27 #: includes/fastbill-functions.php:16 327 #: includes/fastbill-functions.php:166 28 28 msgid "There was an error creating this customer in FastBill:" 29 29 msgstr "Es gab einen Fehler beim Erstellen des Kunden bei FastBill:" 30 30 31 31 # @ edd-fastbill 32 #: includes/fastbill-functions.php:16 4 includes/fastbill-functions.php:21633 #: includes/fastbill-functions.php:38 2 includes/fastbill-functions.php:43934 #: includes/fastbill-functions.php:49 4 includes/fastbill-functions.php:54835 #: includes/fastbill-functions.php:60 3 includes/fastbill-functions.php:63636 #: includes/fastbill-functions.php:64 3 includes/fastbill-functions.php:68037 #: includes/fastbill-functions.php:73 5 includes/fastbill-functions.php:78832 #: includes/fastbill-functions.php:167 includes/fastbill-functions.php:219 33 #: includes/fastbill-functions.php:385 includes/fastbill-functions.php:442 34 #: includes/fastbill-functions.php:497 includes/fastbill-functions.php:551 35 #: includes/fastbill-functions.php:606 includes/fastbill-functions.php:639 36 #: includes/fastbill-functions.php:646 includes/fastbill-functions.php:683 37 #: includes/fastbill-functions.php:738 includes/fastbill-functions.php:791 38 38 msgid "Error: " 39 39 msgstr "Fehler: " 40 40 41 41 # @ edd-fastbill 42 #: includes/fastbill-functions.php:21 542 #: includes/fastbill-functions.php:218 43 43 msgid "There was an error looking up this customer in FastBill:" 44 44 msgstr "Es gab einen Fehler beim Suchen des Kunden bei FastBill:" 45 45 46 46 # @ edd-fastbill 47 #: includes/fastbill-functions.php:2 7947 #: includes/fastbill-functions.php:282 48 48 msgid "Discount used: " 49 49 msgstr "Verwendeter Gutschein-Code: " 50 50 51 #: includes/fastbill-functions.php:31 251 #: includes/fastbill-functions.php:315 52 52 msgid "renewal" 53 53 msgstr "Lizenzverlängerung" 54 54 55 55 # @ edd-fastbill 56 #: includes/fastbill-functions.php:38 156 #: includes/fastbill-functions.php:384 57 57 msgid "There was an error adding the invocie to FastBill:" 58 58 msgstr "Es gab einen Fehler beim Erstellen der Rechnung bei FastBill:" 59 59 60 60 # @ edd-fastbill 61 #: includes/fastbill-functions.php:4 38 includes/fastbill-functions.php:49361 #: includes/fastbill-functions.php:441 includes/fastbill-functions.php:496 62 62 msgid "There was an error completing invoice in FastBill:" 63 63 msgstr "Es gab einen Fehler beim finalen Erstellen der Rechnung:" 64 64 65 #: includes/fastbill-functions.php:5 4765 #: includes/fastbill-functions.php:550 66 66 msgid "There was an error canceling an invoice in FastBill:" 67 67 msgstr "Es gab einen Fehler beim canceln der Rechnung in FastBill:" 68 68 69 #: includes/fastbill-functions.php:60 269 #: includes/fastbill-functions.php:605 70 70 msgid "There was an error deleting an invoice in FastBill:" 71 71 msgstr "Es gab einen Fehler beim löschen der Rechnung in FastBill:" 72 72 73 #: includes/fastbill-functions.php:6 7973 #: includes/fastbill-functions.php:682 74 74 msgid "There was an error sending an invoice via FastBill:" 75 75 msgstr "Es gab einen Fehler beim senden der Rechnung via FastBill:" 76 76 77 77 # @ edd-fastbill 78 #: includes/fastbill-functions.php:73 478 #: includes/fastbill-functions.php:737 79 79 msgid "There was an error creating a payment in FastBill:" 80 80 msgstr "Es gab einen Fehler beim setzen der Rechnung als bezahlt:" 81 81 82 82 # @ edd-fastbill 83 #: includes/fastbill-functions.php:7 8783 #: includes/fastbill-functions.php:790 84 84 msgid "There was an error when receiving templates from FastBill:" 85 85 msgstr "" -
edd-fastbill/trunk/languages/edd-fastbill.pot
r1590243 r1592803 6 6 "Project-Id-Version: EDD - FastBill\n" 7 7 "Report-Msgid-Bugs-To: \n" 8 "POT-Creation-Date: 2017-02-0 6 21:07+0100\n"8 "POT-Creation-Date: 2017-02-09 22:36+0100\n" 9 9 "PO-Revision-Date: 2016-12-07 00:33+0100\n" 10 10 "Last-Translator: Markus Drubba <kontakt@markusdrubba.de>\n" … … 23 23 "X-Poedit-SearchPath-0: .\n" 24 24 25 #: includes/fastbill-functions.php:3 525 #: includes/fastbill-functions.php:32 26 26 msgid "Invalid FastBill credentials supplied" 27 27 msgstr "" 28 28 29 #: includes/fastbill-functions.php:16 329 #: includes/fastbill-functions.php:166 30 30 msgid "There was an error creating this customer in FastBill:" 31 31 msgstr "" 32 32 33 #: includes/fastbill-functions.php:16 4 includes/fastbill-functions.php:216 includes/fastbill-functions.php:38234 #: includes/fastbill-functions.php:4 39 includes/fastbill-functions.php:494 includes/fastbill-functions.php:54835 #: includes/fastbill-functions.php:60 3 includes/fastbill-functions.php:636 includes/fastbill-functions.php:64336 #: includes/fastbill-functions.php:68 0 includes/fastbill-functions.php:735 includes/fastbill-functions.php:78833 #: includes/fastbill-functions.php:167 includes/fastbill-functions.php:219 includes/fastbill-functions.php:385 34 #: includes/fastbill-functions.php:442 includes/fastbill-functions.php:497 includes/fastbill-functions.php:551 35 #: includes/fastbill-functions.php:606 includes/fastbill-functions.php:639 includes/fastbill-functions.php:646 36 #: includes/fastbill-functions.php:683 includes/fastbill-functions.php:738 includes/fastbill-functions.php:791 37 37 msgid "Error: " 38 38 msgstr "" 39 39 40 #: includes/fastbill-functions.php:21 540 #: includes/fastbill-functions.php:218 41 41 msgid "There was an error looking up this customer in FastBill:" 42 42 msgstr "" 43 43 44 #: includes/fastbill-functions.php:2 7944 #: includes/fastbill-functions.php:282 45 45 msgid "Discount used: " 46 46 msgstr "" 47 47 48 #: includes/fastbill-functions.php:31 248 #: includes/fastbill-functions.php:315 49 49 msgid "renewal" 50 50 msgstr "" 51 51 52 #: includes/fastbill-functions.php:38 152 #: includes/fastbill-functions.php:384 53 53 msgid "There was an error adding the invocie to FastBill:" 54 54 msgstr "" 55 55 56 #: includes/fastbill-functions.php:4 38 includes/fastbill-functions.php:49356 #: includes/fastbill-functions.php:441 includes/fastbill-functions.php:496 57 57 msgid "There was an error completing invoice in FastBill:" 58 58 msgstr "" 59 59 60 #: includes/fastbill-functions.php:5 4760 #: includes/fastbill-functions.php:550 61 61 msgid "There was an error canceling an invoice in FastBill:" 62 62 msgstr "" 63 63 64 #: includes/fastbill-functions.php:60 264 #: includes/fastbill-functions.php:605 65 65 msgid "There was an error deleting an invoice in FastBill:" 66 66 msgstr "" 67 67 68 #: includes/fastbill-functions.php:6 7968 #: includes/fastbill-functions.php:682 69 69 msgid "There was an error sending an invoice via FastBill:" 70 70 msgstr "" 71 71 72 #: includes/fastbill-functions.php:73 472 #: includes/fastbill-functions.php:737 73 73 msgid "There was an error creating a payment in FastBill:" 74 74 msgstr "" 75 75 76 #: includes/fastbill-functions.php:7 8776 #: includes/fastbill-functions.php:790 77 77 msgid "There was an error when receiving templates from FastBill:" 78 78 msgstr "" -
edd-fastbill/trunk/readme.txt
r1590243 r1592803 5 5 Requires at least: 4.5 6 6 Tested up to: 4.7.2 7 Stable tag: 1.5. 07 Stable tag: 1.5.1 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 40 40 == Changelog == 41 42 = 2017-02-09 1.5.1 = 43 44 * Fixed: Fatal Error on plugin activation or when the FastBill credentials are not saved 45 * Fixed: Fixed a PHP Notice when no advanced payment gateways is selected 41 46 42 47 = 2017-02-04 1.5.0 =
Note: See TracChangeset
for help on using the changeset viewer.