1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
$ja = array (
'item:object:reported_content' => '報告済みアイテム',
'reportedcontent' => '報告済みアイテム',
'reportedcontent:this' => '報告する',
'reportedcontent:none' => '報告されたコンテンツはありません。',
'reportedcontent:report' => '報告する',
'reportedcontent:title' => 'ページタイトル',
'reportedcontent:deleted' => '報告されたコンテンツは削除されています。',
'reportedcontent:notdeleted' => '報告を削除することができません。',
'reportedcontent:delete' => '削除',
'reportedcontent:areyousure' => '本当に削除しますか?',
'reportedcontent:archive' => '保管する',
'reportedcontent:archived' => '報告を保管しました。',
'reportedcontent:visit' => '報告されたアイテムをみる',
'reportedcontent:by' => '報告者:',
'reportedcontent:objecttitle' => 'オブジェクトタイトル',
'reportedcontent:objecturl' => 'オブジェクトURL',
'reportedcontent:reason' => '報告理由',
'reportedcontent:description' => '何か問題がありましたか?',
'reportedcontent:address' => 'アイテムのURL',
'reportedcontent:success' => 'あなたの報告を管理者に送信しました。',
'reportedcontent:failing' => 'あなたの報告を送信できません。',
'reportedcontent:moreinfo' => 'もっとみる',
'reportedcontent:failed' => '申し訳ありません。報告の送信に失敗しました。',
'reportedcontent:notarchived' => '報告が保管できません。',
);
add_translation("ja", $ja);
|