diff --git a/README.md b/README.md index 8283f73..eb3f6fa 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,23 @@ -# Installatie via SSH + GIT # +# WHMCS Mollie Gateway +Onofficiƫle Mollie gateway voor WHMCS. + +Compatible met WHMCS **7.3.0**. + +### Installatie via SSH + Log in op SSH (of console) en zorg dat GIT geinstalleerd is op uw webserver. + Ga naar de root van de WHMCS installatie (de hoofd folder) en voer het onderstaande commando uit. + ``` git clone --recursive https://github.com/0100Dev/WHMCS-Mollie.git /tmp/whmcs && sudo cp /tmp/whmcs/src ./modules/gateways/``` -# Installatie via FTP # +### Installatie via FTP + Log in op FTP. + Download de `whmcs-mollie.tar.gz` van onze [releases pagina](https://github.com/0100Dev/WHMCS-Mollie/releases) (**LET OP:** **niet** `Source code (zip)` of `Source code (tar.gz)`!). + Upload alles uit de `src` folder uit de hierboven gedownloaden TAR in de `/modules/gateways` folder van uw WHMCS installatie. ++ Opmerking: mollieideal.php van deze module moet de originele van WHMCS overschrijven. Het is tot nu toe nog niet mogelijk om het bestand een andere naam te geven dankzij WHMCS naamgevingen en interne namen. -# Ondersteunde betaalmethodes # +### Betaalmethodes Alle betaalmethodes van Mollie zijn ondersteund. Zet de gewenste betaalmethodes aan door de gateway in WHMCS te activeren. -# Support # +### Support Support alleen in Github via haar issuetracker. -[Meer informatie via Mollie](https://www.mollie.nl/betaaldiensten/) - -![Powerd By Mollie](http://www.mollie.nl/images/badge-betaling-medium.png) +[Meer informatie via Mollie](https://www.mollie.nl/betaaldiensten/) \ No newline at end of file diff --git a/src/mollie/lang/dutch.php b/src/mollie/lang/dutch.php index 94e35e3..7c30c46 100644 --- a/src/mollie/lang/dutch.php +++ b/src/mollie/lang/dutch.php @@ -6,14 +6,14 @@ $_GATEWAYLANG['selectBank'] = 'Selecteer bank'; $_GATEWAYLANG['errorTransactionNotFound'] = 'Transactie is niet gevonden. Probeer later opnieuw'; -$_GATEWAYLANG['checkPayment'] = 'We controleren je betalen, even wachten.'; +$_GATEWAYLANG['checkPayment'] = 'We controleren je betaling, moment geduld...'; $_GATEWAYLANG['payWithBanktransfer'] = 'Betaal met Bank overschrijving'; $_GATEWAYLANG['payWithBelfius'] = 'Betaal met Belfius'; $_GATEWAYLANG['payWithBitcoin'] = 'Betaal met Bitcoin'; $_GATEWAYLANG['payWithDirectdebit'] = 'Betaal met Automatisch Incasso'; $_GATEWAYLANG['payWithIdeal'] = 'Betaal met iDeal'; -$_GATEWAYLANG['payWithMistercash'] = 'Betaal met Mistercash'; +$_GATEWAYLANG['payWithMistercash'] = 'Betaal met Bancontact'; $_GATEWAYLANG['payWithPaypal'] = 'Betaal met PayPal'; $_GATEWAYLANG['payWithPaysafecard'] = 'Betaal met Paysafecard'; $_GATEWAYLANG['payWithSofort'] = 'Betaal met Sofort Banking'; \ No newline at end of file diff --git a/src/mollie/lang/english.php b/src/mollie/lang/english.php index 7bee4f3..c6c2695 100644 --- a/src/mollie/lang/english.php +++ b/src/mollie/lang/english.php @@ -7,14 +7,14 @@ $_GATEWAYLANG['selectLater'] = 'Select later'; $_GATEWAYLANG['errorTransactionNotFound'] = 'Transaction is not found. Please try again.'; -$_GATEWAYLANG['checkPayment'] = 'Checking your payment.. Please wait.'; +$_GATEWAYLANG['checkPayment'] = 'Checking your payment, please wait...'; $_GATEWAYLANG['payWithBanktransfer'] = 'Pay with Bank Transfer'; $_GATEWAYLANG['payWithBelfius'] = 'Pay with Belfius'; $_GATEWAYLANG['payWithBitcoin'] = 'Pay with Bitcoin'; $_GATEWAYLANG['payWithDirectdebit'] = 'Pay with Direct Debit'; $_GATEWAYLANG['payWithIdeal'] = 'Pay with iDeal'; -$_GATEWAYLANG['payWithMistercash'] = 'Pay with Mistercash'; +$_GATEWAYLANG['payWithMistercash'] = 'Pay with Bancontact'; $_GATEWAYLANG['payWithPaypal'] = 'Pay with PayPal'; $_GATEWAYLANG['payWithPaysafecard'] = 'Pay with Paysafecard'; $_GATEWAYLANG['payWithSofort'] = 'Pay with Sofort Banking'; \ No newline at end of file diff --git a/src/molliemistercash.php b/src/molliemistercash.php index 6cd350d..08a225a 100755 --- a/src/molliemistercash.php +++ b/src/molliemistercash.php @@ -8,7 +8,7 @@ function molliemistercash_config() { $config = array_merge($config, array( 'FriendlyName' => array( 'Type' => 'System', - 'Value'=> 'Mollie Mistercash' + 'Value'=> 'Mollie Bancontact' ) ));