BankPayment - Version 1.1.0

Version Notes

- Moved templates to base folder

Download this release

Release Info

Developer Magento Core Team
Extension BankPayment
Version 1.1.0
Comparing to
See all releases


Code changes from version 1.0.0 to 1.1.0

app/code/community/Phoenix/BankPayment/Model/BankPayment.php CHANGED
@@ -118,14 +118,15 @@ class Phoenix_BankPayment_Model_BankPayment extends Mage_Payment_Model_Method_Ab
118
  {
119
  if (!$this->_accounts) {
120
  $paymentInfo = $this->getInfoInstance();
121
- if ($paymentInfo instanceof Mage_Sales_Model_Order_Payment) {
 
 
 
122
  $storeId = $paymentInfo->getOrder()->getStoreId();
123
  } else {
124
  $storeId = $paymentInfo->getQuote()->getStoreId();
125
  }
126
 
127
- $currentOrder = Mage::registry('current_order');
128
- $storeId = $currentOrder ? $currentOrder->getStoreId() : null;
129
  $accounts = unserialize(Mage::getStoreConfig('payment/bankpayment/bank_accounts',$storeId));
130
 
131
  $this->_accounts = array();
118
  {
119
  if (!$this->_accounts) {
120
  $paymentInfo = $this->getInfoInstance();
121
+ $storeId = null;
122
+ if ($currentOrder = Mage::registry('current_order')) {
123
+ $storeId = $currentOrder->getStoreId();
124
+ } elseif ($paymentInfo instanceof Mage_Sales_Model_Order_Payment) {
125
  $storeId = $paymentInfo->getOrder()->getStoreId();
126
  } else {
127
  $storeId = $paymentInfo->getQuote()->getStoreId();
128
  }
129
 
 
 
130
  $accounts = unserialize(Mage::getStoreConfig('payment/bankpayment/bank_accounts',$storeId));
131
 
132
  $this->_accounts = array();
app/code/community/Phoenix/BankPayment/Model/Source/PaymentFormBlockType.php DELETED
@@ -1,41 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * @category Phoenix
16
- * @package Phoenix_BankPayment
17
- * @copyright Copyright (c) 2010 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
18
- */
19
-
20
- class Phoenix_BankPayment_Model_Source_PaymentFormBlockType
21
- {
22
-
23
- protected $_options;
24
-
25
- public function toOptionArray()
26
- {
27
- if (!$this->_options) {
28
- $this->_options = array(
29
- array(
30
- 'value' => Phoenix_BankPayment_Model_BankPayment::FORM_BLOCK_TYPE_DEFAULT,
31
- 'label' => Mage::helper('bankpayment')->__('Show account information in form'),
32
- ),
33
- array(
34
- 'value' => Phoenix_BankPayment_Model_BankPayment::FORM_BLOCK_TYPE_CMS,
35
- 'label' => Mage::helper('bankpayment')->__('Link to CMS page'),
36
- )
37
- );
38
- }
39
- return $this->_options;
40
- }
41
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/Phoenix/BankPayment/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Phoenix_BankPayment>
5
- <version>1.0.0</version>
6
  </Phoenix_BankPayment>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Phoenix_BankPayment>
5
+ <version>1.1.0</version>
6
  </Phoenix_BankPayment>
7
  </modules>
8
  <global>
app/design/adminhtml/default/default/template/bankpayment/form.phtml CHANGED
@@ -21,7 +21,7 @@
21
  <li>
22
  <?php if ($_cmsPage = $this->getFormCmsUrl()): ?>
23
  <div class="input-box">
24
- <p><?php echo $this->__('More information on this paymentmethod can be found <a target="_blank" href="%s">here</a>.', $_cmsPage) ?></p>
25
  </div>
26
  <?php elseif ($_accounts = $this->getAccounts()): ?>
27
  <?php if (count($_accounts) == 1): ?>
@@ -64,7 +64,7 @@
64
  </table>
65
  <!--
66
  <?php if (($_iban = $_account->getIban()) && ($_bic = $_account->getBic())): ?>
67
- <p><?php echo $this->__('For international transfers please use also following data') ?>:</p>
68
  <table>
69
  <tbody>
70
  <tr><td><label><?php echo $this->__('IBAN') ?>:</label> </td><td><?php echo $_iban ?></td></tr>
21
  <li>
22
  <?php if ($_cmsPage = $this->getFormCmsUrl()): ?>
23
  <div class="input-box">
24
+ <p><?php echo $this->__('More information on this payment method can be found <a target="_blank" href="%s">here</a>.', $_cmsPage) ?></p>
25
  </div>
26
  <?php elseif ($_accounts = $this->getAccounts()): ?>
27
  <?php if (count($_accounts) == 1): ?>
64
  </table>
65
  <!--
66
  <?php if (($_iban = $_account->getIban()) && ($_bic = $_account->getBic())): ?>
67
+ <p><?php echo $this->__('For international transfers please use the following data') ?>:</p>
68
  <table>
69
  <tbody>
70
  <tr><td><label><?php echo $this->__('IBAN') ?>:</label> </td><td><?php echo $_iban ?></td></tr>
app/design/frontend/{default → base}/default/template/bankpayment/form.phtml RENAMED
@@ -62,7 +62,7 @@
62
  </tbody>
63
  </table>
64
  <?php if (($_iban = $_account->getIban()) && ($_bic = $_account->getBic())): ?>
65
- <p><?php echo $this->__('For international transfers please use also following data') ?>:</p>
66
  <table>
67
  <tbody>
68
  <tr><td><label><?php echo $this->__('IBAN') ?></label>: </td><td><?php echo $_iban ?></td></tr>
62
  </tbody>
63
  </table>
64
  <?php if (($_iban = $_account->getIban()) && ($_bic = $_account->getBic())): ?>
65
+ <p><?php echo $this->__('For international transfers please use the following data') ?>:</p>
66
  <table>
67
  <tbody>
68
  <tr><td><label><?php echo $this->__('IBAN') ?></label>: </td><td><?php echo $_iban ?></td></tr>
app/design/frontend/{default → base}/default/template/bankpayment/info.phtml RENAMED
File without changes
app/locale/da_DK/Phoenix_BankPayment.csv CHANGED
@@ -9,13 +9,13 @@
9
  "Account number1","Kontonummer"
10
  "Sort code","Sorteringsnøgle"
11
  "Bank name","Bank"
12
- "For international transfers please use also following data","For internationale overførsler, benyt venligst nedenstående oplysninger"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Kontoinformation"
16
  "International","International"
17
  "Custom text","Brugerdefineret tekst"
18
- "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Kontohaver"
20
  "Bank Account number","Kontonummer"
21
  "Bank Sort code","Sorteringsnøgle"
9
  "Account number1","Kontonummer"
10
  "Sort code","Sorteringsnøgle"
11
  "Bank name","Bank"
12
+ "For international transfers please use the following data","For internationale overførsler, benyt venligst nedenstående oplysninger"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Kontoinformation"
16
  "International","International"
17
  "Custom text","Brugerdefineret tekst"
18
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Kontohaver"
20
  "Bank Account number","Kontonummer"
21
  "Bank Sort code","Sorteringsnøgle"
app/locale/de_DE/Phoenix_BankPayment.csv CHANGED
@@ -9,13 +9,13 @@
9
  "Account number1","Kontonummer"
10
  "Sort code","BLZ"
11
  "Bank name","Bankname"
12
- "For international transfers please use also following data","Für internationale Überweisungen benutzen Sie bitte folgende Daten"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Kontodaten"
16
  "International","International"
17
  "Custom text","Benutzerdefinierter Text"
18
- "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","Einzelheiten der Zahlungsart finden Sie <a target=""_blank"" href=""%s"">hier</a>."
19
  "Bank Account holder","Inhaber"
20
  "Bank Account number","Kto-Nr."
21
  "Bank Sort code","BLZ"
9
  "Account number1","Kontonummer"
10
  "Sort code","BLZ"
11
  "Bank name","Bankname"
12
+ "For international transfers please use the following data","Für internationale Überweisungen benutzen Sie bitte folgende Daten"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Kontodaten"
16
  "International","International"
17
  "Custom text","Benutzerdefinierter Text"
18
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","Einzelheiten der Zahlungsart finden Sie <a target=""_blank"" href=""%s"">hier</a>."
19
  "Bank Account holder","Inhaber"
20
  "Bank Account number","Kto-Nr."
21
  "Bank Sort code","BLZ"
app/locale/el_GR/Phoenix_BankPayment.csv CHANGED
@@ -9,13 +9,13 @@
9
  "Account number1","Αριθμός Λογαριασμού"
10
  "Sort code","Sort code"
11
  "Bank name","Τράπεζα"
12
- "For international transfers please use also following data","Για διεθνείς καταθέσεις παρακαλώ χρησιμοποιείστε και τα παρακάτω στοιχεία"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Πληροφορίες Λογαριασμού"
16
  "International","Διεθνείς"
17
  "Custom text","Custom text"
18
- "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Δικαιούχος"
20
  "Bank Account number","Αριθμός Λογαριασμού"
21
  "Bank Sort code","Sort code"
9
  "Account number1","Αριθμός Λογαριασμού"
10
  "Sort code","Sort code"
11
  "Bank name","Τράπεζα"
12
+ "For international transfers please use the following data","Για διεθνείς καταθέσεις παρακαλώ χρησιμοποιείστε και τα παρακάτω στοιχεία"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Πληροφορίες Λογαριασμού"
16
  "International","Διεθνείς"
17
  "Custom text","Custom text"
18
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Δικαιούχος"
20
  "Bank Account number","Αριθμός Λογαριασμού"
21
  "Bank Sort code","Sort code"
app/locale/en_US/Phoenix_BankPayment.csv CHANGED
@@ -9,13 +9,13 @@
9
  "Account number1","Account number"
10
  "Sort code","Sort code"
11
  "Bank name","Bank name"
12
- "For international transfers please use also following data","For international transfers please use also following data"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Account info"
16
  "International","International"
17
  "Custom text","Custom text"
18
- "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Bank Account holder"
20
  "Bank Account number","Bank Account number"
21
  "Bank Sort code","Bank Sort code"
9
  "Account number1","Account number"
10
  "Sort code","Sort code"
11
  "Bank name","Bank name"
12
+ "For international transfers please use the following data","For international transfers please use also following data"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Account info"
16
  "International","International"
17
  "Custom text","Custom text"
18
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Bank Account holder"
20
  "Bank Account number","Bank Account number"
21
  "Bank Sort code","Bank Sort code"
app/locale/es_ES/Phoenix_BankPayment.csv CHANGED
@@ -9,13 +9,13 @@
9
  "Account number1","Número de cuenta"
10
  "Sort code","Tipo de cuenta"
11
  "Bank name","Nombre del Banco"
12
- "For international transfers please use also following data","Para transferencias internacionales, por favor, utilice los siguientes datos"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Información de la cuenta"
16
  "International","Internacional"
17
  "Custom text","Texto personalizado "
18
- "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Titular de la cuenta"
20
  "Bank Account number","Número de cuenta"
21
  "Bank Sort code","Tipo de cuenta"
9
  "Account number1","Número de cuenta"
10
  "Sort code","Tipo de cuenta"
11
  "Bank name","Nombre del Banco"
12
+ "For international transfers please use the following data","Para transferencias internacionales, por favor, utilice los siguientes datos"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Información de la cuenta"
16
  "International","Internacional"
17
  "Custom text","Texto personalizado "
18
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Titular de la cuenta"
20
  "Bank Account number","Número de cuenta"
21
  "Bank Sort code","Tipo de cuenta"
app/locale/fr_FR/Phoenix_BankPayment.csv CHANGED
@@ -9,13 +9,13 @@
9
  "Account number1","Numéro de compte"
10
  "Sort code","Clé RIB"
11
  "Bank name","Code banque"
12
- "For international transfers please use also following data","Pour les transferts internationaux compléter aussi les informations suivantes"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Information sur votre compte"
16
  "International","International"
17
  "Custom text","Autres instructions"
18
- "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Détenteur du compte"
20
  "Bank Account number","Numéro de compte"
21
  "Bank Sort code","Clé RIB"
9
  "Account number1","Numéro de compte"
10
  "Sort code","Clé RIB"
11
  "Bank name","Code banque"
12
+ "For international transfers please use the following data","Pour les transferts internationaux compléter aussi les informations suivantes"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Information sur votre compte"
16
  "International","International"
17
  "Custom text","Autres instructions"
18
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Détenteur du compte"
20
  "Bank Account number","Numéro de compte"
21
  "Bank Sort code","Clé RIB"
app/locale/it_IT/Phoenix_BankPayment.csv CHANGED
@@ -9,13 +9,13 @@
9
  "Account number1","Numero conto"
10
  "Sort code","Ordinamento"
11
  "Bank name","Banca"
12
- "For international transfers please use also following data","Per bonifici internazionali utilizzate anche i seguenti dati"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Informazioni conto"
16
  "International","Internationale"
17
  "Custom text","Testo aggiuntivo"
18
- "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Intestatario"
20
  "Bank Account number","Numero conto"
21
  "Bank Sort code","Ordinamento"
9
  "Account number1","Numero conto"
10
  "Sort code","Ordinamento"
11
  "Bank name","Banca"
12
+ "For international transfers please use the following data","Per bonifici internazionali utilizzate anche i seguenti dati"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Informazioni conto"
16
  "International","Internationale"
17
  "Custom text","Testo aggiuntivo"
18
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Intestatario"
20
  "Bank Account number","Numero conto"
21
  "Bank Sort code","Ordinamento"
app/locale/ja_JP/Phoenix_BankPayment.csv ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Bank Prepayment","銀行振込"
2
+ "Pay within X days","X日以内に支払い"
3
+ "Please transfer the money within %s days to the following bank account","下記の銀行口座に%s日以内にお振込みください"
4
+ "Please transfer the money to the following bank account","下記の銀行口座にお振込みください"
5
+ "Please transfer the money within %s days to one of the following bank accounts","下記の銀行口座のいずれかに%s日以内にお振込みください"
6
+ "Please transfer the money to one of the following bank accounts","下記の銀行口座のいずれかにお振込みください"
7
+ "Account holder","口座名義"
8
+ "Account number","口座番号"
9
+ "Account number1","口座番号"
10
+ "Sort code","Sort code"
11
+ "Bank name","銀行名"
12
+ "For international transfers please use also following data","国際送金の場合は次の情報をお使いください"
13
+ "IBAN","IBAN"
14
+ "BIC","BIC"
15
+ "Account info","口座情報"
16
+ "International","国際"
17
+ "Custom text","カスタムテキスト"
18
+ "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","このお支払い方法についての詳細は<a target=""_blank"" href=""%s"">こちら</a>."
19
+ "Bank Account holder","銀行口座名義"
20
+ "Bank Account number","銀行口座情報"
21
+ "Bank Sort code","Bank Sort code"
22
+ "Bank Accounts","銀行口座"
23
+ "Add Bank Account","銀行口座を追加"
24
+ "Delete Account","口座を削除"
25
+ "Add your bank accounts data","銀行口座情報を追加"
26
+ "Form CMS Page","CMSページフォーム"
27
+ "Choose CMS page to display a link instead of the bank accounts in the payment form","講座情報の代わりに表示するCMSページを選択してください"
28
+ "Show bank accounts in PDF","銀行口座をPDFに表示"
29
+ "Show custom text in PDF","カスタムテキストをPDFに表示"
app/locale/nb_NO/Phoenix_BankPayment.csv CHANGED
@@ -9,13 +9,13 @@
9
  "Account number1","Account number"
10
  "Sort code","Sort code (not used in Norway)"
11
  "Bank name","Bank name"
12
- "For international transfers please use also following data","For utenlandsbetalinger, vennligst bruk følgende bankdata"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Account info"
16
  "International","International"
17
  "Custom text","Tilpasset tekst"
18
- "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Account holder"
20
  "Bank Account number","Account number"
21
  "Bank Sort code","Bank Sort code"
9
  "Account number1","Account number"
10
  "Sort code","Sort code (not used in Norway)"
11
  "Bank name","Bank name"
12
+ "For international transfers please use the following data","For utenlandsbetalinger, vennligst bruk følgende bankdata"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Account info"
16
  "International","International"
17
  "Custom text","Tilpasset tekst"
18
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Account holder"
20
  "Bank Account number","Account number"
21
  "Bank Sort code","Bank Sort code"
app/locale/nl_NL/Phoenix_BankPayment.csv CHANGED
@@ -9,13 +9,13 @@
9
  "Account number1","Rekeningnummer"
10
  "Sort code","Sort code (wordt niet gebruikt in Nederland)"
11
  "Bank name","Bank naam"
12
- "For international transfers please use also following data","Voor internationale overschrijvingen gebruik a.u.b. de volgende gegevens"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Rekening info"
16
  "International","Internationaal"
17
  "Custom text","Custom text"
18
- "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Rekeninghouder"
20
  "Bank Account number","Rekeningnummer"
21
  "Bank Sort code","Bank Sort code"
9
  "Account number1","Rekeningnummer"
10
  "Sort code","Sort code (wordt niet gebruikt in Nederland)"
11
  "Bank name","Bank naam"
12
+ "For international transfers please use the following data","Voor internationale overschrijvingen gebruik a.u.b. de volgende gegevens"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Rekening info"
16
  "International","Internationaal"
17
  "Custom text","Custom text"
18
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Rekeninghouder"
20
  "Bank Account number","Rekeningnummer"
21
  "Bank Sort code","Bank Sort code"
app/locale/pl_PL/Phoenix_BankPayment.csv CHANGED
@@ -9,13 +9,13 @@
9
  "Account number1","Numer konta"
10
  "Sort code","Kolejność wyświetlania"
11
  "Bank name","Nazwa banku"
12
- "For international transfers please use also following data","Dla przelewów międzynarodowych użyj następujących danych"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Informacje o koncie"
16
  "International","Międzynarodowy"
17
  "Custom text","Dodatkowy tekst"
18
- "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Właściciel konta"
20
  "Bank Account number","Numer konta"
21
  "Bank Sort code","Kolejność wyświetlania"
9
  "Account number1","Numer konta"
10
  "Sort code","Kolejność wyświetlania"
11
  "Bank name","Nazwa banku"
12
+ "For international transfers please use the following data","Dla przelewów międzynarodowych użyj następujących danych"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Informacje o koncie"
16
  "International","Międzynarodowy"
17
  "Custom text","Dodatkowy tekst"
18
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Właściciel konta"
20
  "Bank Account number","Numer konta"
21
  "Bank Sort code","Kolejność wyświetlania"
app/locale/pt_BR/Phoenix_BankPayment.csv CHANGED
@@ -9,13 +9,13 @@
9
  "Account number1","Número da conta"
10
  "Sort code","Tipo da conta"
11
  "Bank name","Nome do banco"
12
- "For international transfers please use also following data","Para transferências internacionais, por favor, utilize os seguintes dados"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Informações da conta"
16
  "International","Internacional"
17
  "Custom text","Texto personalizado"
18
- "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Titular da conta"
20
  "Bank Account number","Número da conta"
21
  "Bank Sort code","Tipo da conta"
9
  "Account number1","Número da conta"
10
  "Sort code","Tipo da conta"
11
  "Bank name","Nome do banco"
12
+ "For international transfers please use the following data","Para transferências internacionais, por favor, utilize os seguintes dados"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Informações da conta"
16
  "International","Internacional"
17
  "Custom text","Texto personalizado"
18
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Titular da conta"
20
  "Bank Account number","Número da conta"
21
  "Bank Sort code","Tipo da conta"
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>BankPayment</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Bank prepayment module which notifies the buyer to which bank account he has to transfer the money.</summary>
10
  <description>Bank prepayment module which notifies the buyer to which bank account he has to transfer the money.</description>
11
- <notes>- version 0.3.4 is considered as stable</notes>
12
  <authors><author><name>Phoenix Medien</name><user>auto-converted</user><email>info@phoenix-medien.de</email></author></authors>
13
- <date>2010-07-28</date>
14
- <time>14:10:50</time>
15
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="bankpayment"><dir name="pdf"><file name="info.phtml" hash="7c6d2e1e664d70f09ade058b32e06d40"/></dir><file name="form.phtml" hash="ff83806ff9d07a666addafda0965c341"/><file name="info.phtml" hash="90976a36077a1c26095efa6801f2e4de"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="bankpayment"><file name="form.phtml" hash="9c8395be95224ed9b4877642fc32754b"/><file name="info.phtml" hash="a7ee46f4ff40fd7a9bb9dc8785977b6c"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="da_DK"><file name="Phoenix_BankPayment.csv" hash="fb40c686b78d01709aebea652aa7c340"/></dir><dir name="de_DE"><file name="Phoenix_BankPayment.csv" hash="cd8456c154fe068d3558da9833a3781a"/></dir><dir name="el_GR"><file name="Phoenix_BankPayment.csv" hash="5f3547b1a4e49babd871cf8448c93962"/></dir><dir name="en_US"><file name="Phoenix_BankPayment.csv" hash="5b033b43d85e8561659b6421d73c94f4"/></dir><dir name="es_ES"><file name="Phoenix_BankPayment.csv" hash="0a4b8ac2a8c25d2d61cb46ed674aec45"/></dir><dir name="fr_FR"><file name="Phoenix_BankPayment.csv" hash="ce052f852e58a3a0f64ee781274b99a3"/></dir><dir name="it_IT"><file name="Phoenix_BankPayment.csv" hash="87ed0e388f07c7ed2accf8b92142a556"/></dir><dir name="nb_NO"><file name="Phoenix_BankPayment.csv" hash="4ec7d4e903df7e24f5ff8c6a42a3d40a"/></dir><dir name="nl_NL"><file name="Phoenix_BankPayment.csv" hash="b7feecb74565c9e3068a72b7bbe592c9"/></dir><dir name="pl_PL"><file name="Phoenix_BankPayment.csv" hash="2aa50869de7cad94020ca4317790b89d"/></dir><dir name="pt_BR"><file name="Phoenix_BankPayment.csv" hash="354888c763ae3c9b6ba3fc4923c58df0"/></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_BankPayment.xml" hash="e18bd0a877b5da700b8d565dc50ea788"/><file name="Phoenix_BankPayment.xml" hash="225a3bc6e06900570203a7b66460d7ca"/></dir></target><target name="magecommunity"><dir name="Phoenix"><dir name="BankPayment"><dir name="Block"><dir name="Adminhtml"><file name="BankAccount.php" hash="1efad32fd1a2015b359c06ed76ab9a8d"/></dir><file name="Form.php" hash="b5279b08c04902a46ab723c49b530f9c"/><file name="Info.php" hash="61b3aae2b2817f60e0c7dba2d34d789c"/></dir><dir name="etc"><file name="config.xml" hash="2137a203bb8d60dfa524d956ebb6b5ee"/><file name="system.xml" hash="2c814b1ae88da52c6d4e31eb7fa69ab7"/></dir><dir name="Helper"><file name="Data.php" hash="f6b06bd3a19f1ba2d323f7e6547e9b77"/></dir><dir name="Model"><dir name="Source"><dir name="Order"><file name="Status.php" hash="244cf40b204a0dbc9d296fe90f0001da"/></dir><file name="CmsPage.php" hash="f685066651992f25ed3f8fd2c842959c"/><file name="PaymentFormBlockType.php" hash="c6b18a547cfd028d4e652f9537ecf935"/></dir><file name="BankPayment.php" hash="7cf834c3d9efd74955560c8414e0a8ab"/></dir><dir name="sql"><dir name="bankpayment_setup"><file name="mysql4-upgrade-0.2.5-0.3.0.php" hash="6606b754bfbc1fd68c3a3fa25a0799a5"/></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>BankPayment</name>
4
+ <version>1.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Bank prepayment module which notifies the buyer to which bank account he has to transfer the money.</summary>
10
  <description>Bank prepayment module which notifies the buyer to which bank account he has to transfer the money.</description>
11
+ <notes>- Moved templates to base folder</notes>
12
  <authors><author><name>Phoenix Medien</name><user>auto-converted</user><email>info@phoenix-medien.de</email></author></authors>
13
+ <date>2012-06-04</date>
14
+ <time>21:09:11</time>
15
+ <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="bankpayment"><dir name="pdf"><file name="info.phtml" hash="7c6d2e1e664d70f09ade058b32e06d40"/></dir><file name="form.phtml" hash="8a40960994fcc207504185f6f8496ee7"/><file name="info.phtml" hash="90976a36077a1c26095efa6801f2e4de"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="bankpayment"><file name="form.phtml" hash="d17f83a13039a1b53263c786fb8cb7dd"/><file name="info.phtml" hash="a7ee46f4ff40fd7a9bb9dc8785977b6c"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="da_DK"><file name="Phoenix_BankPayment.csv" hash="cf20b4b899bd4c27ad1ab599cb2a4a15"/></dir><dir name="de_DE"><file name="Phoenix_BankPayment.csv" hash="e15f446512665ba82d0b89f6e277a16f"/></dir><dir name="el_GR"><file name="Phoenix_BankPayment.csv" hash="37deb1bbdbd0dcf6ede82e342555036a"/></dir><dir name="en_US"><file name="Phoenix_BankPayment.csv" hash="9c8e34711daf16145ee6e75b2589a5ba"/></dir><dir name="es_ES"><file name="Phoenix_BankPayment.csv" hash="66c5675ba12c431290c2f8c29cf108de"/></dir><dir name="fr_FR"><file name="Phoenix_BankPayment.csv" hash="8530520abce05bae3eabfdf2229e8d4d"/></dir><dir name="it_IT"><file name="Phoenix_BankPayment.csv" hash="e8d9f83ac98959d1fd6c2847594011cf"/></dir><dir name="ja_JP"><file name="Phoenix_BankPayment.csv" hash="80b8757c63f5f5a9b8d0a9dfe3fa6b5e"/></dir><dir name="nb_NO"><file name="Phoenix_BankPayment.csv" hash="813f0a8c306c283f55429012d5dc2f21"/></dir><dir name="nl_NL"><file name="Phoenix_BankPayment.csv" hash="82e92fa5575b0fb92a7ae053424da06d"/></dir><dir name="pl_PL"><file name="Phoenix_BankPayment.csv" hash="cb45cc08f2fe61a3912b82e4bd372e6f"/></dir><dir name="pt_BR"><file name="Phoenix_BankPayment.csv" hash="133eececfca97e437521b281e5f5aad0"/></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_BankPayment.xml" hash="e18bd0a877b5da700b8d565dc50ea788"/><file name="Phoenix_BankPayment.xml" hash="225a3bc6e06900570203a7b66460d7ca"/></dir></target><target name="magecommunity"><dir name="Phoenix"><dir name="BankPayment"><dir name="Block"><dir name="Adminhtml"><file name="BankAccount.php" hash="1efad32fd1a2015b359c06ed76ab9a8d"/></dir><file name="Form.php" hash="b5279b08c04902a46ab723c49b530f9c"/><file name="Info.php" hash="61b3aae2b2817f60e0c7dba2d34d789c"/></dir><dir name="etc"><file name="config.xml" hash="4c3946f4b05cff0b43be6371f3d54ced"/><file name="system.xml" hash="2c814b1ae88da52c6d4e31eb7fa69ab7"/></dir><dir name="Helper"><file name="Data.php" hash="f6b06bd3a19f1ba2d323f7e6547e9b77"/></dir><dir name="Model"><dir name="Source"><dir name="Order"><file name="Status.php" hash="244cf40b204a0dbc9d296fe90f0001da"/></dir><file name="CmsPage.php" hash="f685066651992f25ed3f8fd2c842959c"/></dir><file name="BankPayment.php" hash="9d1046d0886aa0ea24c42040af63ca58"/></dir><dir name="sql"><dir name="bankpayment_setup"><file name="mysql4-upgrade-0.2.5-0.3.0.php" hash="6606b754bfbc1fd68c3a3fa25a0799a5"/></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>