Skip to content

Commit

Permalink
Used translation keys that exist in the omnipay module.
Browse files Browse the repository at this point in the history
Removed the "Note", as this doesn't exist on "Payment" and is therefore superfluous.
  • Loading branch information
bummzack committed Apr 21, 2016
1 parent afdd145 commit 69668dc
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions templates/order/Order_Payments.ss
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
<table id="PaymentTable" class="infotable">
<thead>
<tr class="gap mainHeader">
<th colspan="5" class="left"><%t Payment.PaymentsHeadline "Payment(s)" %></th>
<th colspan="4" class="left"><%t Payment.PaymentsHeadline "Payment(s)" %></th>
</tr>
<tr>
<th scope="row" class="twoColHeader"><%t Payment.Date "Date" %></th>
<th scope="row" class="twoColHeader"><%t Payment.Amount "Amount" %></th>
<th scope="row" class="twoColHeader"><%t Payment.Status "Payment Status" %></th>
<th scope="row" class="twoColHeader"><%t Payment.Method "Method" %></th>
<th scope="row" class="twoColHeader"><%t Payment.Note "Note" %></th>
<th scope="row" class="twoColHeader"><%t Payment.db_Status "Payment Status" %></th>
<th scope="row" class="twoColHeader"><%t Payment.db_Gateway "Method" %></th>
</tr>
</thead>
<tbody>
Expand All @@ -18,12 +17,11 @@
<td class="price">$Amount.Nice $Currency</td>
<td class="price">$PaymentStatus</td>
<td class="price">$GatewayTitle</td>
<td class="price">$Message.NoHTML</td>
</tr>
<% if $ShowMessages %>
<% loop $Messages %>
<tr>
<td colspan="5">
<td colspan="4">
$ClassName $Message $User.Name
</td>
</tr>
Expand Down

0 comments on commit 69668dc

Please sign in to comment.