blob: b24e40aa23d5b0e76e4c2ec8d31034e6703b7961 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
$TRANSLATIONS = array(
"Couldn't delete %s permanently" => "%s を完全に削除できませんでした",
"Couldn't restore %s" => "%s を復元できませんでした",
"Deleted files" => "ゴミ箱",
"Restore" => "復元",
"Error" => "エラー",
"restored" => "復元済",
"Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!",
"Name" => "名前",
"Deleted" => "削除済み",
"Delete" => "削除"
);
$PLURAL_FORMS = "nplurals=1; plural=0;";
|