forked from filerun/translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
japanese.php
1490 lines (1490 loc) · 92 KB
/
japanese.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php return array (
'trans' =>
array (
'Login Page' =>
array (
'Username' => 'ユーザー名',
'Password' => 'パスワード',
'Language' => '言語',
'Sign in' => 'サインイン',
'Please login.' => 'ログインしてください',
'Please type a username.' => 'ユーザー名を入力してください。',
'Invalid password.' => '無効なパスワード',
'Invalid username.' => '無効なユーザー名',
'Your account has been deactivated!' => 'あなたの口座は非活性化されました',
'Create account' => '登録',
'Forgot password?' => 'あなたのパスワードを忘れてしまった?',
'Signing in...' => 'サインイン',
'Your account access is limited to a particular IP address!' => 'アカウントへのアクセスは特定の IP アドレスに限定',
'2-step verification: add account' => '2段階認証:アカウントを追加',
'Done' => '完了',
'Your account is configured for 2-step verification. You need to type in a verification code!' => 'あなたのアカウントは2段階認証が設定されているため、確認コードの入力が必要です。',
'The provided verification code is not valid!' => 'その確認コードは無効です。',
'Your account is configured for 2-step verification. Click Ok to start the setup.' => 'あなたのアカウントは2段階認証が設定されています。「OK」をクリックしてセットアップを開始してください。',
'Type the following key code into your authentication app:' => '認証アプリに次のキーコードを入力してください:',
'Verification code' => '確認コード',
'Please type a password.' => 'パスワードを入力してください。',
'Changing language...' => '言語を変更しています…',
'Loading...' => '読み込み中…',
),
'User Registration' =>
array (
'User Registration' => 'ユーザー登録',
'Username' => 'ユーザー名',
'E-mail address' => 'メール アドレス',
'Password' => 'パスワード',
'Retype password' => 'パスワードの再入力',
'Name' => '名前',
'Company' => '会社',
'Web site address' => 'ウェブサイト アドレス',
'Comment' => 'コメント',
'Submit' => '送信',
'Please type a username!' => 'ユーザー名を入力してください。',
'Please avoid using special characters for the username!' => 'ユーザー名には特殊文字を使用しないでください。',
'Username already in use. Please choose another one.' => 'ユーザー名は既に使用されています。他のユーザー名を選択してください。',
'Please type a password!' => 'パスワードを入力してください!',
'Please retype the password correctly!' => 'パスワードを正しく再入力してください!',
'Please type your name!' => '自分の名前を入力してください!',
'Please type your email address!' => 'メールアドレスを入力してください!',
'Please type the company name!' => '会社名を入力してください!',
'Please type your website address!' => 'ウェブサイトのアドレスを入力してください!',
'Please type the comment!' => 'コメントを入力してください!',
'Failed to create user account!' => 'ユーザーアカウントの作成に失敗しました!',
'Your account has been successfully created.' => 'アカウントが正常に作成されました。',
'Login' => 'ログイン',
'Your account information has been emailed to you!' => 'アカウント情報があなたの電子メールに送信されました!',
'An e-mail message has been sent at "%1" with details on how to complete the registration process.' => '登録手続き完了方法についてのメッセージが、"%1"で送信されました。',
'E-mail address already registered. Please use the password recovery options if you forgot your password.' => 'Eメールアドレスはすでに登録されています。パスワードを忘れた場合は、パスワードの回復オプションを使用してください。',
'Cancel' => 'キャンセル',
'Please make sure you are not a robot! :)' => '2の単語を正しく入力してください!',
'Please type your last name!' => '姓を入力してください。',
'Loading...' => 'ロード中…',
'Phone' => '電話番号',
'Please type the phone number' => '電話番号を入力してください。',
),
'Password Reset' =>
array (
'The login information has been sent to your email address.' => 'ログインのご案内をあなたのメールアドレス宛に送信しました。',
'Password Reset' => 'パスワードのリセット',
'E-mail address' => 'メールアドレス',
'Submit' => '送信',
'Please type the e-mail address.' => 'メールアドレスを入力してください。',
'The e-mail address was not found in the database.' => 'メールアドレスが見つかりませんでした。',
'Please check your inbox for information on how to reset your account\'s password.' => '受信したメールでパスワードのリセット方法をご確認ください。',
'Please wait...' => 'しばらくお待ちください…',
'Sign in' => 'サインイン',
),
'Main Interface' =>
array (
'The file is already in the download cart' => 'このファイルは既にカートにあります。',
'Rating' => '評価',
'Please check your network connection.' => 'ネットワーク接続を確認してください。',
'Loading...' => '読み込み中。。',
'Sign out' => 'サインアウト',
'Control Panel' => 'コントロールパネル',
'Change password' => 'パスワードの変更',
'Preview' => 'プレビュー',
'No preview available for this type of files.' => 'このファイルタイプのプレビューは出来ません',
'Comments' => 'コメント',
'Please select a file.' => 'ファイルを選択して下さい',
'Folder contains no image file' => 'このフォルダにはイメージファイルはありません',
'There are no files in this folder' => 'このフォルダにはファイルはありません',
'This item contains changes' => '前回アクセス後、このファイルが作成されたか変更されています',
'This file is locked by %1.' => 'このファイルは%1によりロックされています。',
'This file has %1 comment(s).' => 'このファイルには%1のコメントがあります。',
'This file has a WebLink attached to it.' => 'このファイルはウェブリンクに接続されています。',
'Loading Preview...' => 'プレビューを読み込み中。。。',
'Free space available:' => '使用可能な空き容量有り',
'Delete "%1"?' => '確認',
'Internet Explorer is blocking the download?<br>Click <a href="%1" target="_blank">here</a> to download the file without reloading this page.' => 'インターネットエクスプローラーがダウンロードをブロックしていますか。<br>このページを再度読み込まないでダウンロードするには、<a href="%1" target="_blank">ここを</a>クリックしてください。',
'Upload' => 'アップロード',
'Please type a file name:' => 'ファイルネームを入力してください',
'Creating blank file...' => 'ブランク(空)のファイルを作成中。。。',
'Sort' => '並べ替え',
'Settings' => 'セッティング',
'Select All' => '全て選択',
'View' => '表示',
'Tools' => 'ツール',
'List view' => '詳細ビュー',
'Refresh' => '再読込',
'New File' => 'ファイル',
'New tab' => '新しいタブ',
'Space:' => 'スペース',
'Search' => '検索',
'File Search' => 'ファイル検索',
'Share' => 'シェア・共有',
'Sharing' => '共有する',
'New sub-folder' => '新規サブフォルダ',
'Rename' => '名前の変更',
'Remove' => '削除',
'Properties' => 'プロパティ',
'Download' => 'ダウンロード',
'..in one zip file' => '1つのZIPファイルに',
'Open with..' => 'で開いてください。',
'E-mail Files' => '電子メールファイル',
'Share with users' => '他のユーザーと共有',
'Get link' => 'ウェブリンク',
'Details and activity' => '通知',
'Versioning' => 'バージョン化',
'Previous Versions' => '以前のバージョン',
'Lock' => 'ロック',
'Unlock' => 'アンロック',
'File Versions' => 'ファイルのバージョン',
'Metadata' => 'メタデータ',
'Comment' => 'コメント',
'Zip archive..' => 'ZIPに追加',
'Extract archive..' => 'アーカイブを抽出する',
'Copy' => 'コピー',
'Loading file list...' => 'ファイルリストの読み込み中。。。。',
'Name' => '名前',
'Size' => 'サイズ',
'Type' => 'タイプ',
'Meta Type' => 'メタタイプ',
'Modified' => '変更日',
'Created' => '作成日',
'Comments count' => 'コメントの数',
'Yes' => 'はい',
'No' => 'いいえ',
'Version' => 'バージョン',
'Is new' => '新しいです。',
'Locked by' => 'によってロックされています。',
'Sort Ascending' => '昇順並べ替え',
'Sort Descending' => '降順並べ替え',
'Columns' => 'コラム',
'Reset Columns' => 'コラムのリセット',
'%1 items' => '%1個のアイテム',
'Moving files...' => 'ファイルの移動中',
'Moving folder...' => 'フォルダの移動中',
'Renaming file...' => 'ファイル名変更中',
'Zipping files...' => 'ファイルのZIP(圧縮)中',
'Extracting archive contents...' => 'アーカイブ内容を抽出中',
'Deleting...' => 'ファイルの削除中',
'Restoring file(s)...' => 'ファイルの復元中',
'Locking file...' => 'ファイルのロック中',
'Unlocking file...' => 'ファイルのロック解除中',
'Renaming folder...' => 'フォルダ名変更中',
'Please wait while the selected files are being zipped...' => '選択したファイルがzip形式で圧縮されている間しばらくお待ちください...',
'Please wait while the selected folder is being zipped...' => '選択したフォルダがzip形式で圧縮されている間しばらくお待ちください...',
'Selected Files.zip' => '選択したファイル.zip',
'Downloading zip file...' => 'zipファイルをダウンロードしています...',
'Are you sure you want to delete the selected file(s)?' => '選択したファイルを削除してもいいですか?',
'The selected folder and all its contents will be deleted.' => '選択したフォルダとそのすべての内容を削除してもいいですか?',
'Permanent deletion' => '永久削除',
'New Folder' => '新しいフォルダ',
'Creating new folder...' => '新しいフォルダを作成しています...',
'Please type a folder name for the archive contents:' => 'アーカイブコンテンツ用にフォルダ名を入力してください:',
'Extracted Files' => '抽出されたファイル',
'Deleted from' => 'から削除済み',
'Trash' => '削除済みファイル',
'Restore' => '復元する',
'Recent' => '最新',
'Shared by me' => '自分の共有',
'There are no shared files or folders' => 'シェアされたファイルとフォルダーがありません。',
'Files' => 'ファイル',
'There are no recently accessed files' => '最近アクセスされたファイルがありません。',
'Activity' => 'フォルダーアクティビティ',
'Please type a name for the zip file:' => 'zipファイル名を入力してください:',
'New Archive.zip' => '新しいアーカイブ.zip',
'E-mail' => '電子メール',
'Activity log' => 'アクティビティログ (記録)',
'Loading the file\'s activity log...' => 'ファイルのアクティビティログを読み込んでいます。',
'External Window' => '外部ウィンドウ',
'Folders' => 'フォルダー',
'Zip and download' => 'ZIPとダウンロード',
'This type of archives is not supported by the current server configuration.' => 'このタイプのアーカイブは、現在のサーバー構成ではサポートされていません',
'With users' => '他のユーザー',
'BitTorrent Sync' => 'BitTorrentと同期',
'One item' => '1個のアイテム',
'One item selected' => '1個のアイテムが選択されました',
'More' => 'もっと',
'Confirm' => '確認',
'Details' => '詳細',
'Upload to "%1"' => '"%1"にアップロード',
'Folder upload' => 'フォルダーアップロード',
'File upload' => 'ファイルアップロード',
'Create new' => '新規作成',
'Add Files' => 'ファイルを追加',
'Add Folder' => 'フォルダを追加',
'Cancel' => 'キャンセル',
'Cancel all' => '全てキャンセル',
'Skip file' => 'ファイルをスキップ',
'Resume file' => 'ファイルを復元',
'Pause all' => '全て停止',
'File name' => 'ファイル名',
'Uploaded' => 'アップロード済',
'Progress' => '進捗',
'Speed' => '速度',
'Time remaining' => '残り時間',
'%1 files left' => '残り%1ファイル',
'%1 of %2' => '%2個中%1個',
'[Skipped]' => '[スキップ]',
'Paused' => '停止',
'Uploading (Retry #%1)...' => 'アップロード中(%1回目のリトライ)',
'Paused (%1%)' => '停止(%1%)',
'Waiting (100%)' => '待機(100%)',
'Server error' => 'サーバーエラー',
'A problem has been encountered!' => '問題が発生しました。',
'Try again' => '再度お試しください。',
'%1 hours' => '%1時間',
'%1 minutes' => '%1分',
'%1 seconds' => '%1秒',
'You are not allowed to upload the file "%1"' => '"%1"をアップロードする許可がありません。',
'There are no comments for this item' => 'このアイテムにはコメントがありません。',
'Write a comment...' => 'コメントを記入しています…',
'Contents' => '内容',
'Drop files here' => 'ここにファイルをドロップ',
'or use the "NEW" button' => 'もしくは"NEW"ボタンを使用してください。',
'Notifications' => '通知',
'Add to cart' => 'カートに追加',
'Download cart' => 'カートをダウンロード',
'Label' => 'ラベル',
'No label' => 'ラベルなし',
'Custom label' => 'カスタムラベル',
'New label' => '新しいラベル',
'Page' => 'ページ',
'First Page' => '最初のページ',
'Last Page' => '最後のページ',
'Next Page' => '次のページ',
'Previous Page' => '前のページ',
'Uploading pasted image...' => '貼り付けられた画像をアップロード中…',
'Pasted image' => '貼り付けられた画像',
'Pasted image successfully uploaded' => '貼り付けられた画像のアップロードに成功しました。',
'Are you sure you want to remove the comment?' => '本当にコメントを削除しますか?',
'%1 of %2 results' => '結果%2個のうち%1個目',
'%1 results' => '%1個の結果',
'Show more...' => 'もっと見る…',
'Star' => 'お気に入り',
'Starred' => 'お気に入り',
'Remove star' => 'お気に入りから削除',
'There are no starred files or folders' => 'お気に入りがありません。',
'There are no shared links' => '共有リンクがありません。',
'Folder' => 'フォルダー',
'File' => 'ファイル',
'More options' => '詳細オプション',
'Location' => '場所',
'Shared links' => '共有リンク',
'Next' => '次へ',
'Previous' => '前へ',
'Close' => '閉じる',
'Zoom' => '拡大',
'First page' => '最初のページ',
'Page %1' => '%1ページ',
'You are required to change your password.' => 'パスワードを変更してください。',
'No file was found matching your search criteria.' => 'ファイルが見つかりませんでした。',
'To upload files, drag them from your computer' => 'PCからファイルをドラッグしてアップロードできます。',
'Account settings' => 'アカウント設定',
'Download all' => 'すべてダウンロード',
'Use "Page Down" and "Page Up" to change the page' => '"Page Down", "Page Up"でページを切替できます。',
'Empty trash' => '空のゴミ箱',
'Emptying trash...' => 'ゴミ箱を空にしています…',
'Empty trash?' => 'ゴミ箱を空にしますか?',
'All files and folders in your trash are about to be permanently deleted.' => '全てのファイルとフォルダーは完全に削除されます。',
'Resume' => '復元する',
'Delete folder?' => 'フォルダーを削除しますか?',
'Please enter a new name for the item:' => '新しい名前を入力してください:',
'Are you sure you want to move the folder?' => '本当にフォルダーを移動しますか?',
'Move folder?' => 'フォルダーを移動しますか?',
'Web link' => 'ウェブリンク',
'Date Format: Files' => '日付のフォーマット:ファイル',
'Tags' => 'タグ',
'Failed to load file list.' => 'ファイルリストの取得に失敗しました。',
'Please select a PNG or JPG image file.' => 'PNGかJPG形式の画像を選択してください。',
'File request' => 'ファイルのリクエスト',
'Search options' => '検索オプション',
'Create new folder' => 'フォルダーの新規作成',
'This field is required' => 'このフィールドは必須です。',
'Photos' => '写真',
'Uploading...' => 'アップロード中…',
'Help' => 'ヘルプ',
'Date deleted' => '削除日',
'Display mode' => '表示モード',
'Detailed list' => '詳細リスト',
'Thumbnails' => 'サムネイル',
'Last taken' => '最後に見たもの',
'By date' => '日付ごと',
'By tag' => 'タグごと',
'Music' => '音楽',
'Last added' => '最後に追加されたもの',
'By artist' => 'アーティストごと',
'By album' => 'アルバムごと',
'Random' => 'ランダム',
'Failed to load audio file.' => '音声ファイルのロードに失敗しました。',
'There are no photos in here' => '写真がありません。',
'There are no audio files in here' => '音声ファイルがありません。',
'There is one other item' => '他に1個のアイテムがあります。',
'There are %1 other items' => '他に%1個のアイテムがあります。',
'Show all items' => '全てのアイテムを表示',
'Show the item' => 'アイテムを表示',
'Scan files for changes' => '変更をスキャン',
'This folder is empty' => 'このフォルダーは空です。',
'Tag files' => 'タグファイル',
'Add tags...' => 'タグを追加…',
'[calculate]' => '[計算する]',
'No comments available for this item' => 'このアイテムにはコメントがありません。',
'Hide details' => '詳細を隠す',
'Available options' => '有効なオプション',
'Collections' => 'コレクション',
'Add to' => '追加…',
'Collection..' => 'コレクション…',
'Create a new collection' => '新しいコレクションを作成',
'Adding files to collection...' => 'コレクションにファイルを追加中…',
'Are you sure you want to remove the collection?' => '本当にコレクションから削除しますか?',
'Removing collections...' => 'コレクションを削除中…',
'Remove from collection' => 'コレクションから削除',
'Removing items from collection...' => 'コレクションから削除中…',
'Creating a new collection...' => '新しいコレクションを作成中…',
'There are no collections' => 'コレクションがありません。',
'Move' => '移動',
'Move here' => 'ここに移動',
'Copy here' => 'ここにコピー',
'Select folder' => 'フォルダーを選択',
'Create a new folder' => '新しいフォルダーを作成',
'There are no folders in here' => 'フォルダーがありません。',
'Failed to load data!' => 'データのロードに失敗しました。',
),
'General' =>
array (
'One minute ago' => '1分前',
'One minute' => '1分',
'Under one minute' => '1分以内',
'just now' => '今すぐ',
'Submit' => '送信',
'Save' => '保存',
'Cancel' => 'キャンセル',
'Error' => 'エラー',
'Invalid path.' => 'パスが無効です',
'File not found!' => 'ファイルが見つかりません!',
'You are not allowed to preview the selected file.' => '選択したファイルのプレビューは許可されていません',
'%1 users' => '%1のユーザー',
'You are not allowed to download the requested file!' => 'リクエストの会ったファイルのダウンロードは許可されていません!',
'The file you are trying to download is no longer available!' => 'ダウンロードしようとしているファイルはもう使用できません!',
'You are not allowed to download or preview files.' => 'ファイルをダウンロードしたり、プレビューは許可されていません',
'Invalid folder.' => '無効なフォルダ',
'You are not allowed to copy that shared file.' => '共有ファイルのコピーは許可されていません',
'You are not allowed to copy files to the specified target.' => '指定されたターゲットにファイルをコピーすることはできません',
'No file was copied!' => 'ファイルはコピーされませんでした!',
'One file copied.' => '一つのファイルがコピーされました',
'%1 files copied.' => '%1のファイルがコピーされました',
'No more file space available.' => '利用可能なファイルスペースはありません',
'You are not allowed to delete files from this shared folder.' => 'この共有フォルダからファイルを削除することはできません',
'No files were deleted!' => 'ファイルは削除されませんでした!',
'One file deleted.' => '1つのファイルが削除されました',
'%1 files successfully deleted.' => '%1のファイルが正常に削除されました',
'You are not allowed to move that shared file.' => 'この共有ファイルを移動することはできません',
'You are not allowed to move files to the specified target.' => '指定されたターゲットにファイルを移動することはできません',
'You are not allowed to move these shared files to your own folder.' => '自分のフォルダにこれらの共有ファイルを移動することはできません',
'No file was moved!' => 'ファイルは移動されませんでした!',
'One file moved.' => '1つのファイルが移動されました',
'%1 files moved.' => '%1のファイルが移動されました',
'Invalid target path, file already exists.' => '無効なターゲット·パスです。ファイルはすでに存在しています',
'The selected file is currently locked by another user.' => 'ファイルは、他の人によってロックされています',
'Invalid path, not a file.' => '無効なパスです。ファイルではありません。',
'Invalid path, not a folder.' => '無効なパスです。フォルダではありません。',
'Invalid source path, not a folder.' => '無効なソース·パスです。フォルダではありません',
'Invalid target path, not a folder.' => '無効なターゲット·パスです。フォルダではありません',
'Invalid source path, not a file.' => '無効なソース·パスです。ファイルではありません',
'You are not allowed to rename files in this shared folder.' => 'この共有フォルダ内のファイル名の変更はできません',
'File successfully renamed.' => 'ファイル名は正常に変更できました',
'There is already a file or a folder with the same name!' => 'このフォルダ内には同じ名前のファイルが既に存在します!',
'Failed to rename file!' => 'ファイルの名前を変更できませんでした!',
'You are not allowed to extract archives in this shared folder.' => 'この共有フォルダ内にアーカイブを抽出することはできません',
'You are not allowed to zip files in this shared folder.' => 'この共有フォルダ内のファイルはzip(圧縮)できません',
'Invalid folder name!' => '無効なフォルダ名!',
'Invalid file name' => '無効なファイル名',
'A folder with that name already exists!' => 'この名前のフォルダは既に存在しています!',
'Unzipped Files' => '解凍済みファイル',
'The archive was successfully extracted.' => 'アーカイブが正常に抽出されました。',
'Invalid zip name!' => '無効なZIP名!',
'A file with that name already exists!' => 'その名前のファイルは既に存在しています!',
'Zip archive successfully created.' => 'ZIPアーカイブが正常に作成されました',
'You are not allowed to delete that shared folder.' => 'その共有フォルダを削除することはできません',
'You cannot delete the root of a shared folder.' => '共有フォルダのルートを削除することはできません',
'Folder deleted.' => 'フォルダは削除されました。',
'Failed to delete folder!' => 'フォルダの削除に失敗しました!',
'You are not allowed to move that shared folder.' => 'その共有フォルダを移動することはできません',
'You are not allowed to copy that shared folder.' => 'その共有フォルダをコピーすることはできません',
'You are not allowed to copy folder to the specified target.' => '指定したターゲットにフォルダをコピーすることはできません',
'You are not allowed to move the folder to the shared location.' => '共有の場所にフォルダを移動することはできません',
'You are not allowed to move this shared folder to your own folder.' => '自分のフォルダにこの共有フォルダを移動することはできません',
'Folder moved.' => 'フォルダを移動しました',
'Failed to move folder!' => 'フォルダを移動できませんでした!',
'Failed to rename folder!' => 'フォルダの名前を変更できませんでした!',
'There is already a folder with the same name in this folder!' => 'このフォルダ内に同じ名前のフォルダが既に存在します!',
'Folder successfully created.' => 'フォルダが作成されました',
'Failed to create folder!' => 'フォルダの作成に失敗しました!',
'Failed to upload file "%1": %2' => '"%1": %2のファイルのアップロードに失敗しました',
'You are not allowed to upload to this shared folder.' => 'この共有フォルダへのアップロードは許可されていません',
'No more file space available!' => '利用可能なファイルスペースがありません!',
'File uploaded.' => 'ファイルがアップロードされました',
'The previous version is available from the versioning menu.' => 'バージョニング・メニューから以前のバージョンが利用できます',
'Failed to upload file.' => 'ファイルをアップロードできませんでした',
'Please specify a file for upload.' => 'アップロードするファイルを指定してください',
'The monthly traffic limit has been reached!' => '転送済データ量が毎月の上限に達しました!',
'Click <a href="%1">here</a> to go back.' => '戻るには<a href="%1">ここを</a>クリックしてください。',
'A file named "%1" already exists!' => '"%1"という名前のファイルが既に存在します!',
'The path of your home folder doesn\'t point to an existing folder. Please contact the site administrator.' => 'ホームフォルダのパスは、既存のフォルダを指していません。サイト管理者に連絡してください。',
'Zip Archive.zip' => 'アーカイブを圧縮してください.zip',
'The shared folder is no longer available.' => '共有フォルダはもう使用できません',
'You are not allowed to modify files in this shared folder.' => 'この共有フォルダ内のファイルを変更することはできません',
'You are not allowed to upload files in this folder.' => 'このフォルダにファイルをアップロードすることはできません',
'Please type a name for the file!' => 'ファイル名を入力してください!',
'Please type a name for the folder!' => 'フォルダ名を入力してください!',
'You are not allowed to create folders under this shared folder.' => 'この共有フォルダの下にフォルダを作成することはできません',
'%1 minutes' => '%1分',
'%1 minutes ago' => '%1分前',
'One hour' => '1時間',
'One hour ago' => '1時間前',
'%1 hours' => '%1時間',
'%1 hours ago' => '%1時間前',
'One day' => '1日',
'One day ago' => '1日前',
'Yesterday' => '昨日',
'%1 days' => '%1日',
'%1 days ago' => '%1日前',
'One week' => '1週間',
'One week ago' => '1週間前',
'%1 weeks' => '%1週間',
'%1 weeks ago' => '%1週間前',
'One month' => '1ヶ月',
'One month ago' => '1ヶ月前',
'%1 months' => '%1ヶ月',
'%1 months ago' => '%1ヶ月前',
'One year' => '1年',
'One year ago' => '1年前',
'%1 years' => '%1年',
'%1 years ago' => '%1年前',
),
'DateTime' =>
array (
'This month' => '今月',
'January' => '1月',
'February' => '2月',
'March' => '3月',
'April' => '4月',
'May' => '5月',
'June' => '6月',
'July' => '7月',
'August' => '8月',
'September' => '9月',
'October' => '10月',
'November' => '11月',
'December' => '12月',
'Sunday' => '日曜日',
'Monday' => '月曜日',
'Tuesday' => '火曜日',
'Wednesday' => '水曜日',
'Thursday' => '木曜日',
'Friday' => '金曜日',
'Saturday' => '土曜日',
'Today' => '今日',
'This date is before the minimum date' => '有効期間以前の日付が設定されています。',
'This date is after the maximum date' => '有効期間移行の日付が設定されています。',
'Next Month (Control+Right)' => '次の月(Ctrl + →)',
'Previous Month (Control+Left)' => '前の月(Ctrl + ←)',
'Choose a month (Control+Up/Down to move years)' => '月を選択 (Ctrll + ↑ / ↓ で年を変更)',
'{0} (Spacebar)' => '{0}(スペースキー)',
'Cancel' => 'キャンセル',
'Jan' => '1月',
'Feb' => '2月',
'Mar' => '3月',
'Apr' => '4月',
'Jun' => '6月',
'Jul' => '7月',
'Aug' => '8月',
'Sep' => '9月',
'Oct' => '10月',
'Nov' => '11月',
'Dec' => '12月',
),
'Trash' =>
array (
'One item permanently deleted.' => '1個のアイテムが完全に削除されました。',
'No items were restored!' => 'アイテムはレストアされませんでした。',
'One item restored.' => '1個のアイテムがレストアされました。',
'%1 items successfully restored.' => '%1個のアイテムがレストアされました。',
'Trash emptied' => 'ゴミ箱を空にしました。',
'Failed to empty trash' => 'ゴミ箱を空にできませんでした。',
'%1 items permanently deleted.' => '%1個のアイテムが完全に削除されました。',
),
'Account Settings' =>
array (
'Current password' => '現在のパスワード',
'New password' => '新しいパスワード',
'Confirm new password' => '新しいパスワード(再入力)',
'Save changes' => '変更を保存',
'Cancel' => 'キャンセル',
'Please type the current password correctly.' => '現在のパスワードを正しく入力してください。',
'Name' => '氏名',
'Phone' => '電話番号',
),
'Web Links' =>
array (
'Upload' => 'アップロード',
'The link has been copied to clipboard.' => 'リンクがクリックボードにコピーされました。',
'Loading data...' => 'ロード中…',
'Link address' => 'リンクのアドレス',
'Expiration date' => '有効期限',
'Download limit' => 'ダウンロード期限',
'Set a password' => 'パスワード設定',
'Save changes' => '変更を保存',
'Remove link' => 'リンクを削除',
'You cannot allow uploads in this folder' => 'このフォルダーへのアップロードが許可されていません。',
'Web link successfully created!' => 'ウェブリンクを作成しました。',
'Failed to create web link!' => 'ウェブリンクの作成に失敗しました。',
'Web link successfully updated!' => 'ウェブリンクを更新しました。',
'Failed to update web link!' => 'ウェブリンクの更新に失敗しました。',
'Web link successfully deleted!' => 'ウェブリンクを削除しました。',
'Failed to delete web link!' => 'ウェブリンクの削除に失敗しました。',
'The requested file requires a password.' => 'リクエストされたファイルにはパスワードが必要です。',
'Password' => 'パスワード',
'Submit' => '送信',
'Open' => '開く',
'E-mail' => 'E-メール',
'Grid view' => 'グリッド表示',
'Image gallery' => 'イメージギャラリー',
'Audio playlist' => 'プレイリスト',
'RSS feed' => 'RSSフィード',
'Advanced' => '拡張設定',
'Download Terms' => 'ダウンロード規約',
'Comments' => 'コメント',
'Link' => 'リンク',
'QR Code' => 'QRコード',
'Scan this QR code with your mobile device.' => 'QRコードをデバイスでスキャンしてください。',
'You are not allowed to access web links!' => 'ウェブリンクへのアクセスが許可されていません。',
'Changes saved.' => '変更が保存されました。',
'Empty contents.' => 'コンテンツは空です。',
'Failed to save changes.' => '変更の保存に失敗しました。',
'Done' => '完了',
'Share link' => 'リンクをシェア',
'Shorten' => '短縮URL',
'Cancel' => 'キャンセル',
'Display users names.' => 'ユーザー名を表示',
'Download' => 'ダウンロード',
'Download All' => '全てダウンロード',
'Submit files' => 'ファイルを送信',
'Choose files' => 'ファイルを選択',
'Or drag them from your computer onto this page.' => 'もしくは、ファイル・フォルダーをドラッグしてください。',
'Type your name here' => '氏名を入力してください。',
'Start upload' => 'アップロード',
'The files have been successfully sent!' => 'ファイルが送信されました。',
'Upload starting...' => 'アップロードを開始中…',
'Uploading...' => 'アップロード中…',
'Refreshing page...' => 'ページを再表示…',
'List view' => 'リスト表示',
'One item' => '1個のアイテム',
'Empty folder' => '空のフォルダ',
'%1 items' => '%1個のアイテム',
'Options' => 'オプション',
'Copy' => 'コピー',
),
'Custom Actions: CloudConvert' =>
array (
'API Key' => 'APIキー',
'Convert "%1" to:' => '"%1"をコンバート:',
),
'File Comments' =>
array (
'Author' => '記入者',
'Comment' => 'コメント',
'Add comment' => 'コメントを追加',
'Type in your comment' => 'コメントを入力してください。',
'Remove comment' => 'コメントを削除',
'You are not allowed to read comments.' => 'コメントを読む許可がありません。',
'You are not allowed to add comments.' => 'コメントを追加する許可がありません。',
'You are not allowed to remove comments.' => 'コメントを削除する許可がありません。',
'You are not allowed to add comments to files in this shared folder.' => 'この共有フォルダー内のファイルにコメントを追加する許可がありません。',
'You are not allowed to remove comments from files in this shared folder.' => 'この共有フォルダー内のファイルにコメントを削除する許可がありません。',
'You are allowed to delete only your own comments from a shared file.' => '共有ファイルでは自分のコメントのみが削除できます。',
'You are not allowed to read comments in this shared folder.' => 'この共有フォルダーのコメントを読む許可がありません。',
'No comments available for this file.' => 'このファイルにはコメントがありません。',
'Comment successfully added.' => 'コメントが追加されました。',
'Failed to add comment to file.' => 'コメントの追加に失敗しました。',
'Comment successfully removed.' => 'コメントが削除されました。',
'Failed to remove comment from file.' => 'コメントの削除に失敗しました。',
),
'Custom Actions: Text Editor' =>
array (
'Text Editor' => 'テキストエディタ',
'Text File' => 'テキストファイル',
'Save' => '保存',
'Saving...' => '保存中…',
'File successfully saved' => 'ファイルを保存しました。',
'File successfully created' => 'ファイルを作成しました。',
'A file with that name already exists' => '同じファイル名が存在します。',
'Please type a file name' => 'ファイル名を入力してください。',
'Other..' => '他…',
'Would you like to reload the file using the selected charset? Any unsaved changes will be lost.' => '選択した文字コードを使用してファイルを再読み込みしますか?保存していない変更はすべて失われます。',
'Save and close' => '保存して閉じる',
'Word wrap' => 'ワードラップ',
'The file type is not allowed.' => '許可されていないファイルタイプです。',
'Close' => '閉じる',
),
'Custom Actions: Zoho' =>
array (
'API key' => 'APIキー',
'Zoho Editor' => 'Zoho エディター',
'Document with Zoho' => 'Zohoドキュメント',
'Blank file created successfully' => '空ファイルが作成されました。',
),
'Custom Actions: Image Editor' =>
array (
'Apply' => '適用',
'Close' => '閉じる',
'Save and close' => '保存して閉じる',
'Save' => '保存',
'Failed to load image!' => '画像のロードに失敗しました。',
'Loading image..' => 'ロード中…',
'Cancel' => 'キャンセル',
'Crop' => '切り抜き',
'Scale down' => '縮小',
'Rotate' => '回転',
'Reset' => 'リセット',
'Flip horizontal' => '横反転',
'Flip vertical' => '縦反転',
'Fit to screen' => 'スクリーンにフィット',
'Full size' => '元のサイズ',
'Reload image' => '再読込',
'Uploading image..' => '画像のアップロード中…',
),
'Custom Actions: File Encryption' =>
array (
'AES File Encryption' => 'AES暗号化',
'Password' => 'パスワード',
'Decrypt "%1"' => '"%1"を復号',
'Encrypt "%1"' => '"%1"を暗号化',
'Processing file...' => '処理中…',
'The user doesn\'t have permission to use this function!' => 'この操作の権限がありません。',
'The selected file was successfully decrypted.' => '選択されたファイルを復号しました。',
'Failed to decrypt the selected file!' => '選択されたファイルの復号に失敗しました。',
'A file named "%1" already exists!' => 'ファイル名"%1"はすでに存在します。',
'The selected file was successfully encrypted.' => '選択されたファイルを暗号化しました。',
'Failed to encrypt the selected file!' => '選択されたファイルの暗号化に失敗しました。',
'The selected file was not found!' => '選択されたファイルが見つかりません。',
'Confirm password' => 'パスワード確認',
'Delete the source file' => '元ファイルを削除',
'Please type the password' => 'パスワードを入力してください。',
'Please confirm the password' => 'パスワードを確認してください。',
),
'Admin' =>
array (
'Control Panel' => 'コントロールパネル',
'Users' => 'ユーザー',
'Import users' => 'ユーザーのインポート',
'Activity logs' => 'アクティビティログ',
'Configuration' => '設定',
'Configure system options.' => 'システムオプションの設定',
'Interface' => 'インターフェイス',
'Login and registration' => 'ログインと登録',
'E-mail' => 'E-メール',
'Indexing' => 'インデックス',
'Metadata' => 'メタデータ',
'Software update' => 'ソフトウェアアップデート',
'Software licensing' => 'ソフトウェアライセンス',
'Tools' => 'ツール',
'Login as' => 'このユーザーでログイン',
'Archive logs' => 'アーカイブログ',
'Roles' => 'ロール',
'Groups' => 'グループ',
'Thumbnails and preview' => 'イメージプレビュー',
'File Manager' => 'ファイルマネージャー',
'Sign out' => 'サインアウト',
'Page' => 'ページ',
'First Page' => '最初のページ',
'Last Page' => '最後のページ',
'Next Page' => '次のページ',
'Previous Page' => '前のページ',
'Refresh' => '再読込',
'Field sets' => 'フィールド設定',
'File types' => 'ファイルタイプ',
'Web Links' => 'ウェブリンク',
'Open Web Link' => 'ウェブリンクを開く',
'Add' => '追加',
'Edit' => '編集',
'Search' => '検索',
'Quick search' => 'クイックサーチ',
'Save changes' => '変更を保存',
'Add Groups' => 'グループを追加',
'Add Users' => 'ユーザーを追加',
'Remove Selected' => '選択されたものを削除',
'Select Users' => 'ユーザーを選択',
'Delete' => '削除',
'Cancel' => 'キャンセル',
'Delete users?' => 'ユーザーを削除しますか?',
'Permanently delete the users home folders.' => 'ユーザーのホームフォルダーを完全に削除',
'Third party services' => 'サードパーティのサービス',
'Searching' => '検索中',
'Welcome to FileRun!' => 'FileRunへようこそ!',
'View activity log' => 'アクティブティログを表示',
'View' => '表示',
'Password policy' => 'パスワードポリシー',
'Export users' => 'ユーザーをエクスポート',
'Clients' => 'クライアント',
'Deleting web links...' => 'ウェブリンクを削除しています…',
'Web link successfully deleted.' => 'ウェブリンクを削除しました。',
'No web link has been deleted!' => 'ウェブリンクは削除されませんでした。',
'%1 web links successfully deleted.' => '%1個のウェブリンクが削除されました。',
'Options' => 'オプション',
'Settings' => '設定',
'Logs' => 'ログ',
'Defaults' => 'デフォルト',
'Files' => 'ファイル',
'Security' => 'セキュリティ',
'Add new' => '新規追加',
'Calculate all' => 'すべて計算',
),
'Admin: Users' =>
array (
'Generate random password' => 'ランダムなパスワードを生成',
'Users' => 'ユーザー',
'Parent user' => '親ユーザー',
'You are not allowed to manage users.' => 'ユーザー管理権限がありません。',
'You are not allowed to manage user accounts.' => 'アカウント管理権限がありません。',
'User successfully created.' => 'ユーザーが作成されました。',
'You cannot delete your own account!' => '自分のアカウントを削除することはできません。',
'You cannot create user accounts any more, the limit was reached!' => 'これ以上アカウントを作成することはできません。',
'You are not allowed to manage this user.' => 'このユーザーを管理する権限がありません。',
'User successfully updated!' => 'ユーザー情報が更新されました。',
'Sorry, the "superuser" account cannot be deactivated!' => '管理者アカウントは無効にできません。',
'You cannot deactivate your own user account!' => '自分のアカウントを無効化することはできません。',
'Action unavailable in this demo version of the software!' => 'デモバージョンではその操作はできません。',
'Please type a username!' => 'ユーザー名を入力してください。',
'Please type a name!' => '氏名を入力してください。',
'Please don\'t use special characters for the username!' => 'ユーザー名には特殊な文字を使用できません。',
'Username already in use. Please choose another one.' => 'そのユーザ名はすでに使用されています。',
'Please type a password!' => 'パスワードを入力してください。',
'Please retype the password correctly!' => '正しいパスワードを再入力してください。',
'You are required to set a space quota for this user!' => 'このユーザーが利用可能なディスク容量を設定してください。',
'The maximum space quota you can assign to this user is %1MB!' => 'このユーザに割り当て可能な最大容量は%1MBです。',
'Copy to clipboard' => 'クリップボードにコピー',
'Guest access URL' => 'ゲストがアクセスするURL',
'Failed to update user!' => 'ユーザ情報の更新に失敗しました。',
'Sorry, the superuser account cannot be deleted!' => '管理者アカウントは削除できません。',
'Failed to delete user "%1"!' => 'ユーザー"%1"の削除に失敗しました。',
'Delete user' => 'ユーザーを削除',
'You cannot create user accounts when custom authentication is used!' => 'カスタム認証が使用されている場合はユーザ作成ができません。',
'Can interact with' => '対話可能なユーザー',
'[All users]' => '[全てのユーザー]',
'Hold "Ctrl" key to select multiple options.' => '"Ctrl"を押したまま複数選択できます。',
'Failed to create user!' => 'ユーザーの作成に失敗しました。',
'Create user' => 'ユーザーを作成',
'Username' => 'ユーザー名',
'Password' => 'パスワード',
'Retype password' => 'パスワード再入力',
'Name' => '氏名',
'Company' => '会社名',
'Website' => 'ホームぺージ',
'E-mail address' => 'E-メールアドレス',
'Notifications' => '通知',
'Role' => 'ロール',
'- None -' => '- なし -',
'Home folder' => 'ホームフォルダー',
'Your personal home folder is:' => 'あなたのホームフォルダーは:',
'Check path' => 'パスの確認',
'Create folder now' => 'フォルダを作成',
'The path is valid.' => 'パスは有効です。',
'Please specify a path!' => 'パスを設定してください。',
'Invalid folder!' => '無効なフォルダーです。',
'The folder "%1" does not exists or it is not accessible by PHP.' => 'フォルダー"%1"は存在しないかアクセスできません。',
'Failed to create folder.' => 'フォルダーの作成に失敗しました。',
'Folder successfuly created.' => 'フォルダーを作成しました。',
'Permissions' => '権限',
'User can upload files' => 'アップロード可能',
'User can download files' => 'ダウンロード可能',
'User can share via web links' => 'ウェブリンクの共有可能',
'User can share via e-mail' => 'E-メールでの共有可能',
'User can share with other users' => '他のユーザーとの共有可能',
'User can access tags, ratings and other metadata' => 'タグ、評価、メタデータが利用可能',
'User can change the password' => 'パスワード変更可能',
'User can download folders and collections' => 'フォルダーとコレクションのダウンロードが可能',
'User can read comments and view labels' => 'コメントとラベルの表示が可能',
'User can write comments and set labels' => 'コメントのラベルの設定が可能',
'Space quota' => '容量',
'User can share with guest users' => 'ゲストユーザーとの共有が可能',
'Phone' => '電話番号',
'User group(s)' => 'グループ',
'Home folder<br>template path' => 'ホームフォルダー<br>テンプレートパス',
'This folder will be automatically created in your home folder, if it doesn\'t exists already.' => 'このフォルダーは自動的に作成されました。',
'Admin' => '管理者',
'Yes' => 'はい',
'User can create new user accounts.' => '新規ユーザーの作成が可能',
'User can manage groups.' => 'グループの管理が可能',
'User can manage roles.' => 'ロールの管理が可能',
'User can access the activity logs.' => 'アクティビティログにアクセス可能',
'User can change the metadata settings.' => 'メタデータの設定が可能',
'Can manage' => '管理者',
'[All groups]' => '[全てのグループ]',
'Max users' => '最大ユーザ数',
'Example: /home/users/{USERNAME}' => '例:/home/users/{USERNAME}',
'{USERNAME} will be automatically replaced with each user\'s login name.' => '{USERNAME}は自動的にユーザのログイン名に置換されます。',
'{NAME} will be automatically replaced with this user\'s name.' => '{NAME}は自動的にユーザの氏名に置換されます。',
'{EMAIL} will be automatically replaced with this user\'s e-mail.' => '{EMAIL}は自動的にユーザのE-メールアドレスに置換されます。',
'{COMPANY} will be automatically replaced with this user\'s company name.' => '{COMPANY}は自動的にユーザの会社名に置換されます。',
'Note' => 'メモ',
'Send a notification now' => 'すぐに通知を送る',
'An e-mail message with the login information will be sent to the user\'s address.' => 'ログイン情報をユーザー宛に送信',
'Submit' => '送信',
'Cancel' => 'キャンセル',
'This is the "superuser" account, and it cannot be deleted.' => '管理者アカウントは削除できません。',
'Please confirm the deletion of the user' => '本当にユーザーを削除しますか?',
'Delete' => '削除',
'You can add %1 more users.' => 'あと%1人のユーザを追加できます。',
'You have reached the maximum number of user account allowed.' => 'ユーザアカウント数が許可されている最大数に達しました。',
'Showing only users created by' => '作成者のみを表示',
'Show only deactivated users' => '無効なユーザーのみ表示',
'Filter users by group:' => 'グループで絞り込み:',
'- All -' => '- 全て -',
'Users created:' => 'ユーザーを削除しました:',
'There is no user account created by this user.' => 'このユーザーが作成したユーザーはありません。',
'Loading...' => 'ロード中…',
'Free space available:' => '空き容量:',
'Edit User' => 'ユーザ編集',
'Search users by name:' => '氏名で検索:',
'Search by company name:' => '会社名で検索:',
'Toggle filtering options' => 'フィルターオプションを切り替える。',
'Page:' => 'ページ:',
'Search' => '検索',
'This is the "superuser" account, and it cannot be deactivated.' => '管理者アカウントは無効化できません。',
'Browse users' => 'ユーザーを閲覧',
'Space quota info' => 'ディスク容量情報',
'View space quota information with breakdown by users.' => 'ユーザごとのディスク容量を表示',
'Delete user.' => 'ユーザー削除',
'No' => 'いいえ',
'Total' => '合計',
'{ADMUSERNAME} will be automatically replaced with this user\'s login name.' => '{ADMUSERNAME} は、自動的にユーザーのログイン名に置き換えられます。',
'Last login' => '最終ログイン',
'User "%1" successfully deleted!' => 'ユーザー"%1"を削除しました。',
'Require user to change the password' => 'パスワード変更を要求',
'Registration date' => '登録日',
'The user\'s home folder cannot be deleted as other users have home folders located inside!' => 'このユーザのホームフォルダーは他のユーザのフォルダーの中にあるため、削除できません。',
'Add User' => 'ユーザー追加',
'Basic Information' => '基本情報',
'Login Info' => 'ログイン情報',
'E-mail Options' => 'E-メールオプション',
'Details' => '詳細',
'Expiration date' => '有効期限',
'The user account will be automatically deactivated at the specified date.' => 'ユーザーアカウントは指定した日付で自動的に無効になります。',
'Please replace the back slashes (\\) with forward slashes (/)!' => 'バックスラッシュ(\\)はスラッシュ(/)に変更してください。',
'The path should start with a drive letter! Example: C:/files/' => 'フォルダーのパスはドライブレターから開始してください。例:C:/files/',
'The path should start with a forward slash! Example: /files/' => 'フォルダーのパスはスラッシュ(/)から開始してください。例:/files/',
'User can access the files\' activity logs' => 'ファイルのアクティビティログにアクセス可能',
'Quotas' => '容量',
'The values are in megabytes. The value of 0 disables the limitation.' => 'メガバイトで記入してください。0を指定すると無制限となります。',
'Permanently delete the user\'s home folder.' => 'ユーザーのホームフォルダーを完全に削除します。',
'Delete User Account' => 'ユーザーアカウントを削除',
'The account is deactivated' => 'アカウントは無効です。',
'Enable 2-step verification' => '2段階認証を有効化',
'Expires' => '有効期限',
'User can change personal information' => '自分の個人情報を編集可能',
'Upload max file size' => '最大アップロードサイズ',
'Admin permissions' => '管理者権限',
'First name' => '名',
'Last name' => '姓',
'Disabled' => '無効',
'Please confirm the user deactivation' => 'ユーザーを無効化しますか?',
'User "%1" successfully deactivated!' => 'ユーザー"%1"が無効化されました。',
'Failed to deactivated user "%1"!' => 'ユーザー"%1"の無効化に失敗しました。',
'Folder already exists.' => 'フォルダーはすでに存在します。',
'The URL has been copied to clipboard.' => 'URLがクリップボードにコピーされました。',
'User can make changes to files and folders' => 'ファイルとフォルダーの変更が可能',
'User can upload files and folders' => 'ファイルとフォルダーのアップロードが可能',
'Path' => 'パス',
'Access' => 'アクセス',
'Share' => 'シェア',
'Change' => '変更',
'Allowed file types' => '許可されたファイルタイプ',
'Example list:' => '例:',
'- no change -' => '- 変更なし -',
'Leave field empty to keep the old password.' => '空白にしておくとパスワードは変更されません。',
'Reset now' => 'リセット',
'A file has been downloaded by another user.' => '別のユーザーによってダウンロードされました。',
),
'Admin: Groups' =>
array (
'You are not allowed to delete groups.' => 'グループ削除の権限がありません。',
'You are not allowed to manage user groups.' => 'グループ管理の権限がありません。',
'You are not allowed to manage this group.' => 'このグループを管理する権限がありません。',
'(%1 users)' => '(%1人のユーザー)',
'Group successfully created!' => 'グループを作成しました。',
'Add a new user groups.' => '新規グループ追加',
'Please type a name for the group!' => 'グループ名を入力してください。',
'Please don\'t use special characters for the group\'s name!' => 'グループ名に特殊文字は使えません。',
'Group name already used. Please choose another one.' => 'すでに使用されているグループ名です。他の名称を指定してください。',
'Failed to create group!' => 'グループの作成に失敗しました。',
'Groups' => 'グループ',
'Create group' => 'グループ作成',
'Group name' => 'グループ名',
'Description' => '説明',
'Failed to edit group!' => 'グループの編集に失敗しました。',
'Edit group' => 'グループ編集',
'Delete group' => 'グループ削除',
'Failed to delete group!' => 'グループの削除に失敗しました。',
'Please confirm group deletion.' => '本当にグループを削除しますか?',
'Delete' => '削除',
'Edit group.' => 'グループ編集',
'Delete group.' => 'グループ削除',
'Group successfully deleted!' => 'グループを削除しました。',
'Name' => '名称',
'Created by' => '作成者',
'Users' => 'ユーザー',
'Add Group' => 'グループ追加',
'Group successfully updated!' => 'グループを更新しました。',
),
'Admin: Notifications' =>
array (
'Notifications' => '通知',
'Notification rule added.' => '通知ルールが追加されました。',
'Failed to add notification!' => '通知の追加に失敗しました。',
'Please type an email address.' => 'E-メールアドレスを入力してください。',
'Please select at least one action.' => '最低一つのアクションを選択してください。',
'Notification rule removed.' => '通知ルールが削除されました。',
'Failed to remove notification!' => '通知の削除に失敗しました。',
'Action' => 'アクション',
'E-mail address' => 'E-メールアドレス',
'Ungrouped users' => 'グループに含まれないユーザー',
'File previewed' => 'ファイルのプレビュー',
'File uploaded' => 'ファイルのアップロード',
'File received (via upload)' => 'ファイルの受信(アップロード)',
'File received (via copy)' => 'ファイルの受信(コピー)',
'File received (via move)' => 'ファイルの受信(移動)',
'Upload failed' => 'アップロード失敗',
'File downloaded' => 'ファイルのダウンロード',
'WebLink download' => 'ウェブリンクのダウンロード',
'File received (via WebLink)' => 'ファイルの受信(ウェブリンク)',
'Folder shared' => 'フォルダーのシェア',
'Folder unshared' => 'フォルダーのシェア解除',
'Login' => 'ログイン',
'Logout' => 'ログアウト',
'File moved' => 'ファイルの移動',
'Folder moved' => 'フォルダーの移動',
'Folder copied' => 'フォルダーのコピー',
'Failed to copy folder' => 'フォルダーのコピーに失敗',
'File copied' => 'ファイルのコピー',
'File deleted' => 'ファイルの削除',
'Folder deleted' => 'フォルダーの削除',
'File renamed' => 'ファイル名の変更',
'Failed to rename file' => 'ファイル名の変更に失敗',
'Folder renamed' => 'フォルダー名の変更',
'New folder created' => 'フォルダーの新規作成',
'WebLink upload failed' => 'ウェブリンクのアップロードに失敗',
'Failed to move file' => 'ファイルの移動に失敗',
'Failed to copy file' => 'ファイルのコピーに失敗',
'Failed to move folder' => 'フォルダーの移動に失敗',
'Failed to delete file' => 'ファイルの削除に失敗',
'Failed to delete folder' => 'フォルダーの削除に失敗',
'Failed to rename folder' => 'フォルダー名の変更に失敗',
'Failed to create new folder' => '新規フォルダーの作成に失敗',
'File version restored' => 'ファイルバージョンをレストア',
'Failed to restore file version' => 'ファイルバージョンのレストアに失敗',
'File version deleted' => 'ファイルバージョンを削除',
'Failed to delete file version' => 'ファイルバージョンの削除に失敗',
'New user registration' => '新規ユーザーの登録',
'Folder zipped' => 'フォルダーの圧縮',
'Failed to zip folder' => 'フォルダーの圧縮に失敗',
'Files zipped' => 'ファイルの圧縮',
'Failed to zip files' => 'ファイルの圧縮に失敗',
'Restored deleted file' => '削除されたファイルをレストア',
'Restored deleted folder' => '削除されたフォルダーをレストア',
'File permanently deleted' => 'ファイルを完全に削除',
'Folder permanently deleted' => 'フォルダーを完全に削除',
'File locked' => 'ファイルのロック',
'Failed to lock file' => 'ファイルのロックに失敗',
'File unlocked' => 'ファイルのアンロック',
'Failed to unlock file' => 'ファイルのアンロックに失敗',
'File comment added' => 'ファイルへのコメント追加',
'Failed to add comment to file' => 'ファイルへのコメント追加に失敗',
'File comment removed' => 'ファイルのコメントを削除',
'Failed to remove comment from file' => 'ファイルのコメント削除に失敗',
'Files sent by email' => 'ファイルのE-メール送信',
'Failed to send files by email' => 'ファイルのE-メール送信に失敗',
'You are not allowed to manage e-mail notifications.' => 'E-メール通知の管理権限がありません。',
'User added' => 'ユーザー追加',