Skip to content

Commit 29e1086

Browse files
Feature/plugins 245 (#285)
* [PLUGINS-245]: Templates file edited to show localized text. Japanese text added from Google translate for testing purpose. Real translation will be added once we receive it. * [PLUGINS-245]: Japanese translation text added. * [PLUGINS-245]: Missing Japanese translation for text 'Delete' is added. Translation text added from Google translate for testing. Waiting for the actual translation text. * [PLUGINS-245]: Actual JP translation added. Small code refactoring in my-card.php
1 parent 4880208 commit 29e1086

File tree

3 files changed

+54
-16
lines changed

3 files changed

+54
-16
lines changed

languages/omise-ja.mo

111 Bytes
Binary file not shown.

languages/omise-ja.po

+31-3
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ msgstr "決済リンク"
356356

357357
#: templates/payment/form-konhini.php:4
358358
msgid "Name"
359-
msgstr "名前"
359+
msgstr "カード名義"
360360

361361
#: templates/payment/form-konhini.php:8
362362
msgid "Email"
@@ -376,7 +376,7 @@ msgstr "名前欄が空白でないこと、メールアドレスが無効な形
376376

377377
#: includes/class-omise-callback.php:156
378378
msgid "email is in invalid format and phone_number must contain 10-11 digit characters"
379-
msgstr ""電子メールの形式が無効です。電話_番号には10-11桁の数字を入力してください"。"
379+
msgstr "電子メールの形式が無効です。電話_番号には10-11桁の数字を入力してください。"
380380

381381
#: includes/class-omise-callback.php:156
382382
msgid "name cannot be blank and phone_number must contain 10-11 digit characters"
@@ -460,4 +460,32 @@ msgstr "https://www.omise.co/ja/japan"
460460

461461
#: includes/gateway/class-omise-payment-konbini.php:111
462462
msgid "Your payment code has been sent to your email"
463-
msgstr "お客様のメールに決済コードが送信されました。"
463+
msgstr "お客様のメールに決済コードが送信されました。"
464+
465+
#: templates/myaccount/my-card.php
466+
msgid "Cards"
467+
msgstr "カード"
468+
469+
#: templates/myaccount/my-card.php
470+
msgid "Number"
471+
msgstr "カード番号"
472+
473+
#: templates/myaccount/my-card.php
474+
msgid "Created date"
475+
msgstr "カード作成日"
476+
477+
#: templates/myaccount/my-card.php
478+
msgid "Action"
479+
msgstr "アクション"
480+
481+
#: templates/myaccount/my-card.php
482+
msgid "Add new card"
483+
msgstr "新しいカードを追加する"
484+
485+
#: templates/myaccount/my-card.php
486+
msgid "Save card"
487+
msgstr "カードを保存する"
488+
489+
#: templates/myaccount/my-card.php
490+
msgid "Delete"
491+
msgstr "削除する"

templates/myaccount/my-card.php

+23-13
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,45 @@
1-
<h2>Omise settings</h2>
2-
<h3>Cards</h3>
1+
<h3><?php _e( 'Cards', 'omise' ); ?></h3>
32
<div id="omise_card_panel">
43
<table>
54
<tr>
6-
<th>Name</th>
7-
<th>Number</th>
8-
<th>Created date</th>
9-
<th>Action</th>
5+
<th><?php _e( 'Name', 'omise' ); ?></th>
6+
<th><?php _e( 'Number', 'omise' ); ?></th>
7+
<th><?php _e( 'Created date', 'omise' ); ?></th>
8+
<th><?php _e( 'Action', 'omise' ); ?></th>
109
</tr>
1110
<tbody>
1211
<?php if ( isset( $viewData['existingCards']['data'] ) ): ?>
1312
<?php foreach( $viewData['existingCards']['data'] as $card ): ?>
1413
<?php
15-
$nonce = wp_create_nonce( 'omise_delete_card_' . $card['id'] );
16-
echo "<tr><td>{$card['name']}</td><td>XXXX XXXX XXXX {$card['last_digits']}</td>";
17-
$created_date = date_i18n( get_option( 'date_format' ), strtotime($card['created']));
18-
echo "<td>{$created_date}</td>";
19-
echo "<td><button class='button delete_card' data-card-id='{$card['id']}' data-delete-card-nonce='{$nonce}'>Delete</button></td></tr>";
14+
$nonce = wp_create_nonce( 'omise_delete_card_' . $card['id'] );
15+
$created_date = date_i18n( get_option( 'date_format' ), strtotime($card['created']));
2016
?>
17+
<tr>
18+
<td><?= $card['name'] ?></td>
19+
<td>XXXX XXXX XXXX <?= $card['last_digits'] ?></td>
20+
<td><?= $created_date ?></td>
21+
<td>
22+
<button
23+
class='button delete_card'
24+
data-card-id=<?= $card['id'] ?>
25+
data-delete-card-nonce=<?= $nonce ?>
26+
>
27+
<?php _e( 'Delete', 'omise' ); ?>
28+
</button>
29+
</td>
30+
</tr>
2131
<?php endforeach; ?>
2232
<?php endif; ?>
2333
</tbody>
2434
</table>
2535

26-
<h4>Add new card</h4>
36+
<h4><?php _e( 'Add new card', 'omise' ); ?></h4>
2737
<form name="omise_cc_form" id="omise_cc_form">
2838
<?php wp_nonce_field('omise_add_card','omise_add_card_nonce'); ?>
2939
<fieldset>
3040
<?php require_once( __DIR__ . '/../payment/form-creditcard.php' ); ?>
3141
<div class="clear"></div>
3242
</fieldset>
3343
</form>
34-
<button id="omise_add_new_card" class="button">Save card</button>
44+
<button id="omise_add_new_card" class="button"><?php _e( 'Save card', 'omise' ); ?></button>
3545
</div>

0 commit comments

Comments
 (0)