summaryrefslogtreecommitdiff
path: root/app/Locale/ja_JP/translations.php
blob: 69162e2aa5ca2c52a2f03726ab412d2eef656aa4 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
<?php

return array(
    'number.decimals_separator' => '小数点の区切り記号',
    'number.thousands_separator' => '桁の区切り記号',
    'None' => 'なし',
    'Edit' => '編集',
    'Remove' => '削除',
    'Yes' => 'はい',
    'No' => 'いいえ',
    'cancel' => 'キャンセル',
    'or' => 'または',
    'Yellow' => 'イエロー',
    'Blue' => 'ブルー',
    'Green' => 'グリーン',
    'Purple' => 'パープル',
    'Red' => 'レッド',
    'Orange' => 'オレンジ',
    'Grey' => 'グレー',
    'Brown' => 'ブラウン',
    'Deep Orange' => 'ディープオレンジ',
    'Dark Grey' => 'ダークグレー',
    'Pink' => 'ピンク',
    'Teal' => 'ティール',
    'Cyan' => 'シアン',
    'Lime' => 'ライム',
    'Light Green' => 'ライトグリーン',
    'Amber' => 'アンバー',
    'Save' => '保存',
    'Login' => 'ログイン',
    'Official website:' => '公式 Webサイト:',
    'Unassigned' => '担当なし',
    'View this task' => 'このタクスを見る',
    'Remove user' => 'ユーザーの削除',
    'Do you really want to remove this user: "%s"?' => 'ユーザー「%s」を削除しますか?',
    'All users' => 'すべてのユーザー',
    'Username' => 'ユーザー名',
    'Password' => 'パスワード',
    'Administrator' => 'システム管理者',
    'Sign in' => 'ログイン',
    'Users' => 'ユーザー',
    'Forbidden' => 'アクセス拒否',
    'Access Forbidden' => 'アクセスが拒否されました',
    'Edit user' => 'ユーザーを編集する',
    'Logout' => 'ログアウト',
    'Bad username or password' => 'ユーザー名またはパスワードが違います',
    'Edit project' => 'プロジェクトを編集',
    'Name' => '名前',
    'Projects' => 'プロジェクト',
    'No project' => 'プロジェクトがありません',
    'Project' => 'プロジェクト',
    'Status' => 'ステータス',
    'Tasks' => 'タスク',
    'Board' => 'ボード',
    'Actions' => 'アクション',
    'Inactive' => '無効',
    'Active' => '有効',
    'Unable to update this board.' => 'ボードを更新できませんでした',
    'Disable' => '無効にする',
    'Enable' => '有効にする',
    'New project' => 'プロジェクト作成',
    'Do you really want to remove this project: "%s"?' => 'プロジェクト「%s」を削除しますか?',
    'Remove project' => 'プロジェクトの削除',
    'Edit the board for "%s"' => 'ボード「%s」を編集',
    'Add a new column' => 'カラムの追加',
    'Title' => 'タイトル',
    'Assigned to %s' => '%sが担当',
    'Remove a column' => 'カラムの削除',
    'Unable to remove this column.' => 'カラムを削除できませんでした',
    'Do you really want to remove this column: "%s"?' => 'カラム「%s」を削除しますか?',
    'Settings' => '設定',
    'Application settings' => 'アプリケーション設定',
    'Language' => '言語',
    'Webhook token:' => 'Webhook トークン:',
    'API token:' => 'API トークン:',
    'Database size:' => 'データベースのサイズ:',
    'Download the database' => 'データベースのダウンロード',
    'Optimize the database' => 'データベースの最適化',
    '(VACUUM command)' => '(VACUUM コマンド)',
    '(Gzip compressed Sqlite file)' => '(GZip コマンドで圧縮された Sqlite ファイル)',
    'Close a task' => 'タスクを完了',
    'Column' => 'カラム',
    'Color' => '色',
    'Assignee' => '担当',
    'Create another task' => '続けて別のタスクを追加',
    'New task' => 'タスクを追加',
    'Open a task' => 'タスクを開く',
    'Do you really want to open this task: "%s"?' => 'タスク「%s」を作成しますか?',
    'Back to the board' => 'ボードに戻る',
    'There is nobody assigned' => '担当者がいません',
    'Column on the board:' => 'カラム:',
    'Close this task' => 'タスクを完了',
    'Open this task' => 'このタスクを開く',
    'There is no description.' => '説明がありません',
    'Add a new task' => 'タスクを追加',
    'The username is required' => 'ユーザー名が必要です',
    'The maximum length is %d characters' => '最大 %d 文字です',
    'The minimum length is %d characters' => '最小 %d 文字必要です',
    'The password is required' => 'パスワードが必要です',
    'This value must be an integer' => '整数で入力してください',
    'The username must be unique' => 'ユーザー名がすでに使用されています',
    'The user id is required' => 'ユーザー ID が必要です',
    'Passwords don\'t match' => 'パスワードが一致しません',
    'The confirmation is required' => '確認用のパスワードを入力してください',
    'The project is required' => 'プロジェクトが必要です',
    'The id is required' => 'ID が必要です',
    'The project id is required' => 'プロジェクト ID が必要です',
    'The project name is required' => 'プロジェクト名が必要です',
    'The title is required' => 'タイトルが必要です',
    'Settings saved successfully.' => '設定を保存しました',
    'Unable to save your settings.' => '設定の保存に失敗しました',
    'Database optimization done.' => 'データベースの最適化が終わりました',
    'Your project have been created successfully.' => 'プロジェクトを作成しました',
    'Unable to create your project.' => 'プロジェクトの作成に失敗しました',
    'Project updated successfully.' => 'プロジェクトを更新しました',
    'Unable to update this project.' => 'プロジェクトの更新に失敗しました',
    'Unable to remove this project.' => 'プロジェクトの削除に失敗しました',
    'Project removed successfully.' => 'プロジェクトを削除しました',
    'Project activated successfully.' => 'プロジェクトを有効にしました',
    'Unable to activate this project.' => 'プロジェクトの有効にできませんでした',
    'Project disabled successfully.' => 'プロジェクトを無効にしました',
    'Unable to disable this project.' => 'プロジェクトの無効にできませんでした',
    'Unable to open this task.' => 'タスクの作成に失敗しました',
    'Task opened successfully.' => 'タスクを作成しました',
    'Unable to close this task.' => 'タスクの完了に失敗しました',
    'Task closed successfully.' => 'タスクを完了しました',
    'Unable to update your task.' => 'タスクの更新に失敗しました',
    'Task updated successfully.' => 'タスクを更新しました',
    'Unable to create your task.' => 'タスクの追加に失敗しました',
    'Task created successfully.' => 'タスクを追加しました',
    'User created successfully.' => 'ユーザーを追加しました',
    'Unable to create your user.' => 'ユーザーの追加に失敗しました',
    'User updated successfully.' => 'ユーザーを更新しました',
    'User removed successfully.' => 'ユーザーを削除しました',
    'Unable to remove this user.' => 'ユーザーの削除に失敗しました',
    'Board updated successfully.' => 'ボードを更新しました',
    'Ready' => 'Ready',
    'Backlog' => 'Backlog',
    'Work in progress' => 'Work in progress',
    'Done' => 'Done',
    'Application version:' => 'アプリケーションのバージョン:',
    'Id' => 'ID',
    'Public link' => '公開アクセス用リンク',
    'Timezone' => 'タイムゾーン',
    'Sorry, I didn\'t find this information in my database!' => 'データベース上で情報が見つかりませんでした!',
    'Page not found' => 'ページが見つかりません',
    'Complexity' => '複雑さ',
    'Task limit' => 'タスク数制限',
    'Task count' => 'タスク数',
    'User' => 'ユーザー',
    'Comments' => 'コメント',
    'Comment is required' => 'コメントを入力してください',
    'Comment added successfully.' => 'コメントを追加しました',
    'Unable to create your comment.' => 'コメントの追加に失敗しました',
    'Due Date' => '期限',
    'Invalid date' => '日付が無効です',
    'Automatic actions' => '自動アクションの管理',
    'Your automatic action have been created successfully.' => '自動アクションを作成しました',
    'Unable to create your automatic action.' => '自動アクションの作成に失敗しました',
    'Remove an action' => '自動アクションの削除',
    'Unable to remove this action.' => '自動アクションの削除に失敗しました',
    'Action removed successfully.' => '自動アクションの削除に成功しました',
    'Automatic actions for the project "%s"' => 'プロジェクト「%s」の自動アクション',
    'Add an action' => '自動アクションの追加',
    'Event name' => 'イベント名',
    'Action' => 'アクション',
    'Event' => 'イベント',
    'When the selected event occurs execute the corresponding action.' => '選択されたイベントが発生した時、対応するアクションを実行',
    'Next step' => '次のステップ',
    'Define action parameters' => 'アクションのパラメーター',
    'Do you really want to remove this action: "%s"?' => '自動アクション「%s」を削除しますか?',
    'Remove an automatic action' => '自動アクションの削除',
    'Assign the task to a specific user' => 'タスクの担当者を割当てる',
    'Assign the task to the person who does the action' => 'アクションを起こしたユーザーを担当者にする',
    'Duplicate the task to another project' => '別のプロジェクトにタスクを複製',
    'Move a task to another column' => 'タスクを別のカラムに移動',
    'Task modification' => 'タスクの変更',
    'Task creation' => 'タスクを作る',
    'Closing a task' => 'タスクを完了',
    'Assign a color to a specific user' => '色をユーザーに割当てる',
    'Position' => '位置',
    'Duplicate to another project' => '別プロジェクトに複製',
    'Duplicate' => '複製',
    'Link' => 'リンク',
    'Comment updated successfully.' => 'コメントを更新しました',
    'Unable to update your comment.' => 'コメントの更新に失敗しました',
    'Remove a comment' => 'コメントを削除',
    'Comment removed successfully.' => 'コメントを削除しました',
    'Unable to remove this comment.' => 'コメントの削除に失敗しました',
    'Do you really want to remove this comment?' => 'コメントを削除しますか?',
    'Current password for the user "%s"' => 'ユーザー「%s」の現在のパスワード',
    'The current password is required' => '現在のパスワードを入力してください',
    'Wrong password' => 'パスワードが違います',
    'Unknown' => '不明',
    'Last logins' => 'ログインの一覧',
    'Login date' => 'ログイン日時',
    'Authentication method' => '認証方法',
    'IP address' => 'IP アドレス',
    'User agent' => 'ユーザーエージェント',
    'Persistent connections' => '既存のコネクション',
    'No session.' => 'セッションなし',
    'Expiration date' => '有効期限',
    'Remember Me' => '次回から自動的にログイン',
    'Creation date' => '作成日',
    'Everybody' => '全員',
    'Open' => '作成',
    'Closed' => '完了',
    'Search' => '検索',
    'Nothing found.' => '結果なし',
    'Due date' => '期限',
    'Description' => '説明',
    '%d comments' => '%d 個のコメント',
    '%d comment' => '%d 個のコメント',
    'Email address invalid' => 'メールアドレスが正しくありません',
    'Your external account is not linked anymore to your profile.' => 'あなたの外部アカウントはプロフィールにリンクされていません',
    'Unable to unlink your external account.' => '外部アカウントのリンクを解除できません',
    'External authentication failed' => '外部認証に失敗しました',
    'Your external account is linked to your profile successfully.' => 'あなたの外部アカウントはプロフィールに正常にリンクしています',
    'Email' => 'Email',
    'Task removed successfully.' => 'タスクを削除しました',
    'Unable to remove this task.' => 'タスクの削除に失敗しました',
    'Remove a task' => 'タスクの削除',
    'Do you really want to remove this task: "%s"?' => 'タスク「%s」を削除しますか?',
    'Assign automatically a color based on a category' => 'カテゴリに基いて色を変える',
    'Assign automatically a category based on a color' => '色に基いてカテゴリを変える',
    'Task creation or modification' => 'タスクの作成または変更',
    'Category' => 'カテゴリ',
    'Category:' => 'カテゴリ:',
    'Categories' => 'カテゴリ',
    'Your category have been created successfully.' => 'カテゴリを作成しました',
    'This category has been updated successfully.' => 'カテゴリを更新しました',
    'Unable to update this category.' => 'カテゴリの更新に失敗しました',
    'Remove a category' => 'カテゴリの削除',
    'Category removed successfully.' => 'カテゴリを削除しました',
    'Unable to remove this category.' => 'カテゴリを削除できませんでした',
    'Category modification for the project "%s"' => 'プロジェクト「%s」のカテゴリの編集',
    'Category Name' => 'カテゴリ名',
    'Add a new category' => 'カテゴリの追加',
    'Do you really want to remove this category: "%s"?' => 'カテゴリ「%s」を削除しますか?',
    'All categories' => 'すべてのカテゴリ',
    'No category' => 'カテゴリなし',
    'The name is required' => '名前を入力してください',
    'Remove a file' => 'ファイルの削除',
    'Unable to remove this file.' => 'ファイルの削除に失敗しました',
    'File removed successfully.' => 'ファイルを削除しました',
    'Attach a document' => 'ドキュメントを添付',
    'Do you really want to remove this file: "%s"?' => 'ファイル「%s」を削除しますか?',
    'Attachments' => '添付',
    'Edit the task' => 'タスクを編集',
    'Add a comment' => 'コメントを追加',
    'Edit a comment' => 'コメントを編集',
    'Summary' => '要約',
    'Time tracking' => '時間の追跡',
    'Estimate:' => '見積:',
    'Spent:' => '経過:',
    'Do you really want to remove this sub-task?' => 'サブタスクを削除しますか?',
    'Remaining:' => '残:',
    'hours' => '時間',
    'spent' => '経過',
    'estimated' => '見積',
    'Sub-Tasks' => 'サブタスク',
    'Add a sub-task' => 'サブタスクを追加',
    'Original estimate' => '初期の見積',
    'Create another sub-task' => '続けて別のサブタスクを追加',
    'Time spent' => '経過時間',
    'Edit a sub-task' => 'サブタスクを編集',
    'Remove a sub-task' => 'サブタスクを削除',
    'The time must be a numeric value' => '時間は数字で入力してください',
    'Todo' => '作業予定',
    'In progress' => '作業中',
    'Sub-task removed successfully.' => 'サブタスクを削除しました',
    'Unable to remove this sub-task.' => 'サブタスクの削除に失敗しました',
    'Sub-task updated successfully.' => 'サブタスクを更新しました',
    'Unable to update your sub-task.' => 'サブタスクの更新に失敗しました',
    'Unable to create your sub-task.' => 'サブタスクの追加に失敗しました',
    'Maximum size: ' => '最大:',
    'Display another project' => '別のプロジェクトを表示',
    'Created by %s' => '%s が作成',
    'Tasks Export' => 'タスクの出力',
    'Start Date' => '開始日',
    'Execute' => '実行',
    'Task Id' => 'タスク ID',
    'Creator' => '作成者',
    'Modification date' => '更新日',
    'Completion date' => '完了日',
    'Clone' => '複製',
    'Project cloned successfully.' => 'プロジェクトを複製しました',
    'Unable to clone this project.' => 'プロジェクトの複製に失敗しました',
    'Enable email notifications' => 'メール通知を設定',
    'Task position:' => 'タスクの位置:',
    'The task #%d have been opened.' => 'タスク #%d を作成しました',
    'The task #%d have been closed.' => 'タスク #%d を完了しました',
    'Sub-task updated' => 'サブタスクの更新',
    'Title:' => 'タイトル:',
    'Status:' => 'ステータス:',
    'Assignee:' => '担当:',
    'Time tracking:' => '時間計測:',
    'New sub-task' => '新しいサブタスク',
    'New attachment added "%s"' => '添付ファイル「%s」が追加されました',
    'New comment posted by %s' => '「%s」の新しいコメントが追加されました',
    'New comment' => '新しいコメント',
    'Comment updated' => 'コメントが更新されました',
    'New subtask' => '新しいサブタスク',
    'I want to receive notifications only for those projects:' => '以下のプロジェクトにのみ通知を受け取る:',
    'view the task on Kanboard' => 'Kanboard でタスクを見る',
    'Public access' => '公開アクセス',
    'Disable public access' => '公開アクセスを無効にする',
    'Enable public access' => '公開アクセスを有効にする',
    'Public access disabled' => '公開アクセスは無効化されています',
    'Move the task to another project' => 'タスクを別プロジェクトに移動',
    'Move to another project' => '別プロジェクトに移動',
    'Do you really want to duplicate this task?' => 'タスクを複製しますか?',
    'Duplicate a task' => 'タスクの複製',
    'External accounts' => '外部アカウント',
    'Account type' => 'アカウントの種類',
    'Local' => 'ローカル',
    'Remote' => 'リモート',
    'Enabled' => '有効',
    'Disabled' => '無効',
    'Login:' => 'ユーザー名:',
    'Full Name:' => '名前:',
    'Email:' => 'Email:',
    'Notifications:' => '通知:',
    'Notifications' => '通知',
    'Account type:' => 'アカウントの種類:',
    'Edit profile' => 'プロフィールの編集',
    'Change password' => 'パスワードの変更',
    'Password modification' => 'パスワードの変更',
    'External authentications' => '外部認証',
    'Never connected.' => '未接続',
    'No external authentication enabled.' => '外部認証が設定されていません',
    'Password modified successfully.' => 'パスワードを変更しました',
    'Unable to change the password.' => 'パスワードを変更できませんでした',
    'Change category' => 'カテゴリの変更',
    '%s updated the task %s' => '%s がタスク %s を更新しました',
    '%s opened the task %s' => '%s がタスク %s を作成しました',
    '%s moved the task %s to the position #%d in the column "%s"' => '%s がタスク %s をポジション #%d カラム %s に移動しました',
    '%s moved the task %s to the column "%s"' => '%s がタスク %s をカラム「%s」に移動しました',
    '%s created the task %s' => '%s がタスク %s を作成しました',
    '%s closed the task %s' => '%s がタスク %s を完了しました',
    '%s created a subtask for the task %s' => '%s がタスク %s のサブタスクを追加しました',
    '%s updated a subtask for the task %s' => '%s がタスク %s のサブタスクを更新しました',
    'Assigned to %s with an estimate of %s/%sh' => '担当者 %s は見積を %s/%s時間 に変更しました',
    'Not assigned, estimate of %sh' => '担当者無しで見積を %s時間 に変更しました',
    '%s updated a comment on the task %s' => '%s がタスク %s のコメントを更新しました',
    '%s commented the task %s' => '%s がタスク %s にコメントしました',
    '%s\'s activity' => '%s の活動状況',
    'RSS feed' => 'RSS フィード',
    '%s updated a comment on the task #%d' => '%s がタスク #%d のコメントを更新しました',
    '%s commented on the task #%d' => '%s がタスク #%d にコメントしました',
    '%s updated a subtask for the task #%d' => '%s がタスク #%d のサブタスクを更新しました',
    '%s created a subtask for the task #%d' => '%s がタスク #%d のサブタスクを追加しました',
    '%s updated the task #%d' => '%s がタスク #%d を更新しました',
    '%s created the task #%d' => '%s がタスク #%d を追加しました',
    '%s closed the task #%d' => '%s がタスク #%d を完了しました',
    '%s opened the task #%d' => '%s がタスク #%d を作成しました',
    'Activity' => '活動状況',
    'Default values are "%s"' => '既定値は「%s」',
    'Default columns for new projects (Comma-separated)' => '新規プロジェクトの既定カラム (コンマで区切って入力)',
    'Task assignee change' => '担当者の変更',
    '%s changed the assignee of the task #%d to %s' => '%s がタスク #%d の担当を %s に変更しました',
    '%s changed the assignee of the task %s to %s' => '%s がタスク %s の担当を %s に変更しました',
    'New password for the user "%s"' => 'ユーザー「%s」の新しいパスワード',
    'Choose an event' => 'イベントの選択',
    'Create a task from an external provider' => 'タスクを外部サービスから作成',
    'Change the assignee based on an external username' => '担当者を外部サービスに基いて変更',
    'Change the category based on an external label' => 'カテゴリを外部サービスに基いて変更',
    'Reference' => '参照',
    'Label' => 'ラベル',
    'Database' => 'データベース',
    'About' => '情報',
    'Database driver:' => 'データベースドライバ:',
    'Board settings' => '基本設定',
    'Webhook settings' => 'Webhook の設定',
    'Reset token' => 'トークンのリセット',
    'API endpoint:' => 'API エンドポイント:',
    'Refresh interval for private board' => '非公開ボードの更新頻度',
    'Refresh interval for public board' => '公開ボードの更新頻度',
    'Task highlight period' => 'タスクのハイライト期間',
    'Period (in second) to consider a task was modified recently (0 to disable, 2 days by default)' => 'タスクが最近更新されたとみなす期間(0 はハイライト無効、既定 2 日)',
    'Frequency in second (60 seconds by default)' => '秒数 (既定 60 秒)',
    'Frequency in second (0 to disable this feature, 10 seconds by default)' => '秒数 (0 は機能を無効化、既定 10 秒)',
    'Application URL' => 'アプリケーションの URL',
    'Token regenerated.' => 'トークンが再生成されました',
    'Date format' => 'データのフォーマット',
    'ISO format is always accepted, example: "%s" and "%s"' => 'ISO フォーマットが入力できます(例: %s または %s)',
    'New private project' => '非公開プロジェクト作成',
    'This project is private' => 'このプロジェクトは非公開です',
    'Add' => '追加',
    'Start date' => '開始時間',
    'Time estimated' => '見積時間',
    'There is nothing assigned to you.' => '何もアサインされていません',
    'My tasks' => '自分のタスク',
    'Activity stream' => '活動状況',
    'Dashboard' => 'ダッシュボード',
    'Confirmation' => '確認',
    'Webhooks' => 'Webhook',
    'API' => 'API',
    'Create a comment from an external provider' => '外部サービスからコメントを作成',
    'Project management' => 'プロジェクト管理',
    'Columns' => 'カラム',
    'Task' => 'タスク',
    'Percentage' => '割合',
    'Number of tasks' => 'タスク数',
    'Task distribution' => 'タスク分布',
    'Analytics' => '分析',
    'Subtask' => 'サブタスク',
    'User repartition' => '担当者分布',
    'Clone this project' => 'このプロジェクトを複製',
    'Column removed successfully.' => 'カラムを削除しました',
    'Not enough data to show the graph.' => 'グラフを描画するためのデータが不足しています',
    'Previous' => '戻る',
    'The id must be an integer' => 'id は数字でなければなりません',
    'The project id must be an integer' => 'project id は数字でなければなりません',
    'The status must be an integer' => 'status は数字でなければなりません',
    'The subtask id is required' => 'subtask id が必要です',
    'The subtask id must be an integer' => 'subtask id は数字でなければなりません',
    'The task id is required' => 'task id が必要です',
    'The task id must be an integer' => 'task id は数字でなければなりません',
    'The user id must be an integer' => 'user id は数字でなければなりません',
    'This value is required' => 'この値が必要です',
    'This value must be numeric' => 'この値は数字でなければなりません',
    'Unable to create this task.' => 'このタスクを作成できませんでした',
    'Cumulative flow diagram' => '蓄積フロー図',
    'Daily project summary' => '日時プロジェクトサマリー',
    'Daily project summary export' => '日時プロジェクトサマリーの出力',
    'Exports' => '出力',
    'This export contains the number of tasks per column grouped per day.' => 'この出力は日時のカラムごとのタスク数を集計したものです',
    'Active swimlanes' => 'アクティブなスイムレーン',
    'Add a new swimlane' => '新しいスイムレーン',
    'Default swimlane' => '既定スイムレーン',
    'Do you really want to remove this swimlane: "%s"?' => 'スイムレーン「%s」を削除しますか?',
    'Inactive swimlanes' => 'インタラクティブなスイムレーン',
    'Remove a swimlane' => 'スイムレーンの削除',
    'Swimlane modification for the project "%s"' => '「%s」に対するスイムレーン変更',
    'Swimlane removed successfully.' => 'スイムレーンを削除しました',
    'Swimlanes' => 'スイムレーン',
    'Swimlane updated successfully.' => 'スイムレーンを更新しました',
    'Unable to remove this swimlane.' => 'スイムレーンを削除できませんでした',
    'Unable to update this swimlane.' => 'スイムレーンを更新できませんでした',
    'Your swimlane have been created successfully.' => 'スイムレーンが作成されました',
    'Example: "Bug, Feature Request, Improvement"' => '例: バグ, 機能, 改善',
    'Default categories for new projects (Comma-separated)' => '新しいプロジェクトの既定カテゴリー (コンマ区切り)',
    'Integrations' => '連携',
    'Integration with third-party services' => 'サードパーティサービスとの連携',
    'Subtask Id' => 'サブタスク Id',
    'Subtasks' => 'サブタスク',
    'Subtasks Export' => 'サブタスクの出力',
    'Task Title' => 'タスクタイトル',
    'Untitled' => 'タイトル無し',
    'Application default' => 'アプリケーションの既定値',
    'Language:' => '言語:',
    'Timezone:' => 'タイムゾーン:',
    'All columns' => '全てのカラム',
    'Next' => '次へ',
    '#%d' => '#%d',
    'All swimlanes' => '全てのスイムレーン',
    'All colors' => '全ての色',
    'Moved to column %s' => 'カラム %s へ移動しました',
    'User dashboard' => 'ユーザーダッシュボード',
    'Allow only one subtask in progress at the same time for a user' => '1ユーザーにつき1件のタスクのみを進行中にできるよう制限',
    'Edit column "%s"' => 'カラム「%s」の編集',
    'Select the new status of the subtask: "%s"' => 'サブタスク「%s」のステータスを選択',
    'Subtask timesheet' => 'サブタスクタイムシート',
    'There is nothing to show.' => '何も表示するものがありません',
    'Time Tracking' => 'タイムトラッキング',
    'You already have one subtask in progress' => 'すでに進行中のサブタスクがあります',
    'Which parts of the project do you want to duplicate?' => 'プロジェクトの何を複製しますか?',
    'Disallow login form' => 'ログインフォームからのログインを許可しない',
    'Start' => '開始',
    'End' => '終了',
    'Task age in days' => 'タスクの経過日数',
    'Days in this column' => 'カラムでの経過日数',
    '%dd' => '%d 日',
    'Add a new link' => '新しいリンクの追加',
    'Do you really want to remove this link: "%s"?' => 'リンク「%s」を削除しますか?',
    'Do you really want to remove this link with task #%d?' => 'このリンクとタスク#%dを削除しますか?',
    'Field required' => 'フィールドが必要です',
    'Link added successfully.' => 'リンクを追加しました',
    'Link updated successfully.' => 'リンクを更新しました',
    'Link removed successfully.' => 'リンクを削除しました',
    'Link labels' => 'リンクラベル',
    'Link modification' => 'リンクの変更',
    'Links' => 'リンク',
    'Opposite label' => '反対のラベル',
    'Remove a link' => 'ラベルの削除',
    'The labels must be different' => '異なるラベルを指定してください',
    'There is no link.' => 'リンクがありません',
    'This label must be unique' => 'ラベルはユニークである必要があります',
    'Unable to create your link.' => 'リンクを作成できませんでした',
    'Unable to update your link.' => 'リンクを更新できませんでした',
    'Unable to remove this link.' => 'リンクを削除できませんでした',
    'relates to' => '次に関連します',
    'blocks' => '次をブロックしています',
    'is blocked by' => '次にブロックされています',
    'duplicates' => '次に重複しています',
    'is duplicated by' => '次に重複しています',
    'is a child of' => '次の子タスクです ',
    'is a parent of' => '次の親タスクです',
    'targets milestone' => '次のマイルストーンを目標とします',
    'is a milestone of' => '次のタスクのマイルストーンです',
    'fixes' => '次を修正します',
    'is fixed by' => '次に修正されます',
    'This task' => 'このタスクは',
    '<1h' => '<1時間',
    '%dh' => '%d 時間',
    'Expand tasks' => 'タスクを詳細表示',
    'Collapse tasks' => 'タスクを簡略表示',
    'Expand/collapse tasks' => 'タスクの展開/閉じる',
    'Close dialog box' => 'ダイアログボックスを閉じる',
    'Submit a form' => 'フォームを送信',
    'Board view' => 'ボードビュー',
    'Keyboard shortcuts' => 'キーボードショートカット',
    'Open board switcher' => 'ボード切り替えを開く',
    'Application' => 'アプリケーション',
    'Compact view' => 'コンパクトビュー',
    'Horizontal scrolling' => '縦スクロール',
    'Compact/wide view' => 'コンパクト/ワイドビュー',
    'Currency' => '通貨',
    'Private project' => 'プライベートプロジェクト',
    'AUD - Australian Dollar' => 'AUD - 豪ドル',
    'CAD - Canadian Dollar' => 'CAD - 加ドル',
    'CHF - Swiss Francs' => 'CHF - スイスフラン',
    'Custom Stylesheet' => 'カスタムスタイルシート',
    'download' => 'ダウンロード',
    'EUR - Euro' => 'EUR - ユーロ',
    'GBP - British Pound' => 'GBP - 独ポンド',
    'INR - Indian Rupee' => 'INR - 伊ルピー',
    'JPY - Japanese Yen' => 'JPY - 日本円',
    'NZD - New Zealand Dollar' => 'NZD - NZ ドル',
    'RSD - Serbian dinar' => 'RSD - セルビアデナール',
    'CNY - Chinese Yuan' => 'CNY - 中国元',
    'USD - US Dollar' => 'USD - 米ドル',
    'Destination column' => '移動先のカラム',
    'Move the task to another column when assigned to a user' => 'ユーザーの割当てをしたらタスクを他のカラムに移動',
    'Move the task to another column when assignee is cleared' => 'ユーザーの割当てがなくなったらタスクを他のカラムに移動',
    'Source column' => '移動元のカラム',
    'Transitions' => '履歴',
    'Executer' => '実行者',
    'Time spent in the column' => 'カラムでの経過時間',
    'Task transitions' => 'タスクの遷移',
    'Task transitions export' => 'タスクの遷移を出力',
    'This report contains all column moves for each task with the date, the user and the time spent for each transition.' => 'このレポートはタスクのカラム間における移動を時間、ユーザー、経過時間と共に記録した物です',
    'Currency rates' => '為替レート',
    'Rate' => 'レート',
    'Change reference currency' => '現在の基軸通貨',
    'Reference currency' => '基軸通貨',
    'The currency rate have been added successfully.' => '通貨レートが正常に追加されました',
    'Unable to add this currency rate.' => 'この通貨レートを追加できません',
    'Webhook URL' => 'Webhook URL',
    '%s removed the assignee of the task %s' => '%s がタスク「%s」の担当を解除しました',
    'Information' => '情報 ',
    'Check two factor authentication code' => '二要素認証を確認',
    'The two factor authentication code is not valid.' => '二要素認証コードは無効です',
    'The two factor authentication code is valid.' => '二要素認証コードは有効です',
    'Code' => 'コード',
    'Two factor authentication' => '二要素認証',
    'This QR code contains the key URI: ' => 'この QR コードが URI キーを含んでいます:',
    'Check my code' => '自分のコードをチェック',
    'Secret key: ' => '秘密鍵:',
    'Test your device' => 'あなたのデバイスをテスト',
    'Assign a color when the task is moved to a specific column' => 'タスクが特定のカラムに移動した時の色を設定',
    '%s via Kanboard' => '%s by Kanboard',
    'Burndown chart' => 'バウンダリーチャート',
    'This chart show the task complexity over the time (Work Remaining).' => 'グラフは、時間の経過とともにタスクの複雑さを示しています(残っている作業)',
    'Screenshot taken %s' => 'スクリーンショット %s',
    'Add a screenshot' => 'スクリーンショットを追加',
    'Take a screenshot and press CTRL+V or ⌘+V to paste here.' => 'スクリーンショットを撮りCTRL + Vまたは⌘+ Vを押してここに貼り付けてください',
    'Screenshot uploaded successfully.' => 'スクリーンショットが正常にアップロードされました',
    'SEK - Swedish Krona' => 'SEK - スウェーデン クローナ',
    'Identifier' => '識別子',
    'Disable two factor authentication' => '二要素認証を無効にする',
    'Do you really want to disable the two factor authentication for this user: "%s"?' => '本当にユーザー「%s」の二要素認証を無効にしますか?',
    'Edit link' => 'リンクを編集',
    'Start to type task title...' => 'タスクタイトルを入力...',
    'A task cannot be linked to itself' => 'タスクをタスク自身にはリンクできません',
    'The exact same link already exists' => '同じリンクが既に存在しています',
    'Recurrent task is scheduled to be generated' => '反復タスクが生成されるようにスケジュールされています',
    'Score' => 'スコア',
    'The identifier must be unique' => '識別子はユニークでなければなりません',
    'This linked task id doesn\'t exists' => 'リンクされたタスクIDは存在しません',
    'This value must be alphanumeric' => '英数字で入力ください',
    'Edit recurrence' => '反復タスクの編集',
    'Generate recurrent task' => '反復タスクを生成',
    'Trigger to generate recurrent task' => '反復タスクを生成するためのトリガ',
    'Factor to calculate new due date' => '新しい期限を計算する要素',
    'Timeframe to calculate new due date' => '新しい期限を計算するための時間枠',
    'Base date to calculate new due date' => '新しい期限を計算するための基準日',
    'Action date' => '実行日',
    'Base date to calculate new due date: ' => '新しい期限を計算するための基準日:',
    'This task has created this child task: ' => 'このタスクはこの子タスクを作成しました:',
    'Day(s)' => '日',
    'Existing due date' => '既存の予定日',
    'Factor to calculate new due date: ' => '新しい支払期限を計算する要素:',
    'Month(s)' => 'ヶ月',
    'Recurrence' => '反復タスク',
    'This task has been created by: ' => 'タスク作成者',
    'Recurrent task has been generated:' => '反復タスクが生成されました:',
    'Timeframe to calculate new due date: ' => '新しい期限を計算する時間枠:',
    'Trigger to generate recurrent task: ' => '反復タスクを生成するためのトリガー:',
    'When task is closed' => 'タスクが完了したとき',
    'When task is moved from first column' => 'タスクが最初のカラムから移動されたとき',
    'When task is moved to last column' => 'タスクが最後のカラムに移動したとき',
    'Year(s)' => '年',
    'Project settings' => 'プロジェクト設定',
    'Automatically update the start date' => '開始日を自動的に更新',
    'iCal feed' => 'iCal 配信',
    'Preferences' => 'プリファレンス',
    'Security' => 'セキュリティ',
    'Two factor authentication disabled' => '二要素認証は無効です',
    'Two factor authentication enabled' => '二要素認証は有効です',
    'Unable to update this user.' => 'このユーザーを更新できません',
    'There is no user management for private projects.' => 'プライベート・プロジェクトのためのユーザー管理はありません',
    'User that will receive the email' => 'メールを受信するユーザー',
    'Email subject' => 'メールの件名',
    'Date' => '日付',
    'Add a comment log when moving the task between columns' => 'カラム間でタスクを移動するときにコメントログを追加',
    'Move the task to another column when the category is changed' => 'カテゴリが変更されたときにタスクを別のカラムに移動',
    'Send a task by email to someone' => 'タスクをメールで送信',
    'Reopen a task' => 'タスクを再開',
    'Notification' => '通知',
    '%s moved the task #%d to the first swimlane' => '%sはタスク#%dを最初のスイムレーンに移動しました',
    'Swimlane' => 'スイムレーン',
    '%s moved the task %s to the first swimlane' => '%sはタスク%sを最初のスイムレーンに移動しました',
    '%s moved the task %s to the swimlane "%s"' => '%sはタスク%sをスイムレーン "%s"に移動しました',
    'This report contains all subtasks information for the given date range.' => 'このレポートには、指定した期間のすべてのサブタスク情報が含まれています',
    'This report contains all tasks information for the given date range.' => 'このレポートには、指定した期間のすべてのタスク情報が含まれます',
    'Project activities for %s' => '%sのプロジェクトの活動状況',
    'view the board on Kanboard' => 'Kanboard上のボードを見る',
    'The task have been moved to the first swimlane' => 'タスクは最初のスイムレーンに移動されました',
    'The task have been moved to another swimlane:' => 'タスクは次のスイムレーンに移動しました:',
    'New title: %s' => '新しいタイトル:%s',
    'The task is not assigned anymore' => 'タスクはもう割当てられません',
    'New assignee: %s' => '新しい担当者:%s',
    'There is no category now' => 'カテゴリはありません',
    'New category: %s' => '新しいカテゴリ:%s',
    'New color: %s' => '新しい色:%s',
    'New complexity: %d' => '新しい複雑さ:%d',
    'The due date have been removed' => '期限が削除されました',
    'There is no description anymore' => '説明はありません',
    'Recurrence settings have been modified' => '反復設定が変更されました',
    'Time spent changed: %sh' => '経過時間が変更されました:%sh',
    'Time estimated changed: %sh' => '見積時間が変更されました:%sh',
    'The field "%s" have been updated' => 'フィールド "%s"は更新されました',
    'The description has been modified:' => '説明が変更されました:',
    'Do you really want to close the task "%s" as well as all subtasks?' => 'すべてのサブタスクを含むタスク"%s"を完了しますか?',
    'I want to receive notifications for:' => '次の通知を受信します:',
    'All tasks' => 'すべてのタスク',
    'Only for tasks assigned to me' => '自分のタスクのみ',
    'Only for tasks created by me' => '自分が作成したタスクのみ',
    'Only for tasks created by me and assigned to me' => '自分が作成した自分のタスクのみ',
    // '%%Y-%%m-%%d' => '',
    'Total for all columns' => 'すべてのカラムの合計',
    'You need at least 2 days of data to show the chart.' => 'グラフを表示するには最低2日間のデータが必要です',
    '<15m' => '15分未満',
    '<30m' => '30分未満',
    'Stop timer' => 'タイマー停止',
    'Start timer' => 'タイマー開始',
    'My activity stream' => '自分の活動状況',
    'Search tasks' => 'タスクを検索',
    'Reset filters' => 'フィルターをリセット',
    'My tasks due tomorrow' => '明日の自分のタスク',
    'Tasks due today' => '今日のタスク',
    'Tasks due tomorrow' => '明日のタスク',
    'Tasks due yesterday' => '昨日のタスク',
    'Closed tasks' => '完了タスク',
    'Open tasks' => '未完了タスク',
    'Not assigned' => '未割当',
    'View advanced search syntax' => '詳細検索の構文を見る',
    'Overview' => '概要',
    'Board/Calendar/List view' => 'ボード/カレンダー/リストビュー',
    'Switch to the board view' => 'ボードビューに切替',
    'Switch to the list view' => 'リストビューに切替',
    'Go to the search/filter box' => '検索/フィルタボックスに移動',
    'There is no activity yet.' => 'まだ活動状況はありません',
    'No tasks found.' => 'タスクが見つかりません',
    'Keyboard shortcut: "%s"' => 'キーボード・ショートカット: "%s"',
    'List' => 'リスト',
    'Filter' => 'フィルター',
    'Advanced search' => '詳細検索',
    'Example of query: ' => 'クエリの例:',
    'Search by project: ' => 'プロジェクトで検索:',
    'Search by column: ' => 'カラムで検索:',
    'Search by assignee: ' => '担当者で検索:',
    'Search by color: ' => '色で検索:',
    'Search by category: ' => 'カテゴリで検索:',
    'Search by description: ' => '説明で検索:',
    'Search by due date: ' => '期限で検索:',
    'Average time spent into each column' => '各カラムで経過した時間の平均',
    'Average time spent' => '平均経過時間',
    'This chart show the average time spent into each column for the last %d tasks.' => 'このグラフは最後の%d個のタスクに対して各カラムで経過した平均時間を示しています',
    'Average Lead and Cycle time' => '平均リードタイム・平均サイクルタイム',
    'Average lead time: ' => '平均リードタイム:',
    'Average cycle time: ' => '平均サイクルタイム:',
    'Cycle Time' => 'サイクルタイム',
    'Lead Time' => 'リードタイム',
    'This chart show the average lead and cycle time for the last %d tasks over the time.' => 'このグラフは時間の経過に伴う最後の%d個のタスクの平均リードタイムとサイクルタイムを示します',
    'Average time into each column' => '各カラムの平均時間',
    'Lead and cycle time' => 'リード/サイクルタイム',
    'Lead time: ' => 'リードタイム:',
    'Cycle time: ' => 'サイクルタイム:',
    'Time spent into each column' => '各カラムの経過時間',
    'The lead time is the duration between the task creation and the completion.' => 'リードタイムはタスクの作成〜完了まで時間です',
    'The cycle time is the duration between the start date and the completion.' => 'サイクルタイムは着手〜完了までの期間です',
    'If the task is not closed the current time is used instead of the completion date.' => 'タスクが終了していない場合は完了日の代わりに現在時刻を使用します',
    'Set automatically the start date' => '開始日を自動的に設定',
    'Edit Authentication' => '認証の編集',
    'Remote user' => 'リモートユーザー',
    'Remote users do not store their password in Kanboard database, examples: LDAP, Google and Github accounts.' => 'リモートユーザーはパスワードをKanboardデータベースに保存しません(例:LDAP、Google、Githubのアカウント)',
    'If you check the box "Disallow login form", credentials entered in the login form will be ignored.' => '「ログインフォームを許可しない」チェックボックスをオンにすると、ログインフォームに入力された認証情報は無視されます',
    'Default task color' => '規定のタスクカラー',
    'This feature does not work with all browsers.' => 'この機能は一部のブラウザで動作しません',
    'There is no destination project available.' => '利用可能なプロジェクトはありません',
    'Trigger automatically subtask time tracking' => '自動的にサブタスク時間トラッキングを作動させる',
    'Include closed tasks in the cumulative flow diagram' => '累積フロー図に完了したタスクを含める',
    'Current swimlane: %s' => '現在のスイムレーン:%s',
    'Current column: %s' => '現在のカラム:%s',
    'Current category: %s' => '現在のカテゴリ:%s',
    'no category' => 'カテゴリなし',
    'Current assignee: %s' => '現在の担当者:%s',
    'not assigned' => '未割当',
    'Author:' => '著者:',
    'contributors' => '協力者',
    'License:' => 'ライセンス:',
    'License' => 'ライセンス',
    'Enter the text below' => 'テキストを入力',
    'Start date:' => '開始日:',
    'Due date:' => '期限:',
    'People who are project managers' => 'プロジェクト管理者',
    'People who are project members' => 'プロジェクトメンバー',
    'NOK - Norwegian Krone' => 'NOK - ノルウェークローネ',
    'Show this column' => 'このカラムを表示',
    'Hide this column' => 'このカラムを隠す',
    'open file' => 'ファイルを開く',
    'End date' => '終了日',
    'Users overview' => 'ユーザー概要',
    'Members' => 'メンバー',
    'Shared project' => '共有プロジェクト',
    'Project managers' => 'プロジェクト管理者',
    'Projects list' => 'プロジェクトリスト',
    'End date:' => '終了日:',
    'Change task color when using a specific task link' => '特定のタスクリンクを使用するとタスクの色を変更',
    'Task link creation or modification' => 'タスクリンクの作成または変更',
    'Milestone' => 'マイルストーン',
    'Documentation: %s' => 'ドキュメント:%s',
    'Reset the search/filter box' => '検索/フィルタをリセット',
    'Documentation' => 'ドキュメント',
    'Table of contents' => '目次',
    'Author' => '著者',
    'Version' => 'バージョン',
    'Plugins' => 'プラグイン',
    'There is no plugin loaded.' => 'プラグインがロードされていません',
    'My notifications' => '自分の通知',
    'Custom filters' => 'カスタムフィルタ',
    'Your custom filter have been created successfully.' => 'カスタムフィルタを作成しました',
    'Unable to create your custom filter.' => 'カスタムフィルタを作成できません',
    'Custom filter removed successfully.' => 'カスタムフィルタを削除しました',
    'Unable to remove this custom filter.' => 'このカスタムフィルタは削除できません',
    'Edit custom filter' => 'カスタムフィルタを編集',
    'Your custom filter have been updated successfully.' => 'カスタムフィルタを更新しました',
    'Unable to update custom filter.' => 'カスタムフィルタを更新できません',
    // 'Web' => '',
    'New attachment on task #%d: %s' => 'タスク#%dの新しい添付ファイル:%s',
    'New comment on task #%d' => 'タスク#%dの新しいコメント',
    'Comment updated on task #%d' => 'タスク#%dで更新されたコメント',
    'New subtask on task #%d' => 'タスク#%dの新しいサブタスク',
    'Subtask updated on task #%d' => 'タスク#%dで更新されたサブタスク',
    'New task #%d: %s' => '新しいタスク#%d:%s',
    'Task updated #%d' => 'タスクが更新されました#%d',
    'Task #%d closed' => 'タスク#%dは完了しました',
    'Task #%d opened' => 'タスク#%dを作成しました',
    'Column changed for task #%d' => 'タスク#%dのカラムが変更されました',
    'New position for task #%d' => 'タスク#%dの新しい位置',
    'Swimlane changed for task #%d' => 'タスク#%dのスイムレーンが変更されました',
    'Assignee changed on task #%d' => 'タスク#%dの担当者が変更されました',
    '%d overdue tasks' => '%d 件の期限切れタスク',
    'Task #%d is overdue' => 'タスク#%dは期限切れです',
    'No notification.' => '通知なし',
    'Mark all as read' => 'すべてを既読にする',
    'Mark as read' => '既読にする',
    'Total number of tasks in this column across all swimlanes' => 'すべてのスイムレーンでこのカラムのタスクの合計',
    'Collapse swimlane' => 'スイムレーンをたたむ',
    'Expand swimlane' => 'スイムレーンを展開',
    'Add a new filter' => 'フィルターを追加',
    'Share with all project members' => 'プロジェクトメンバーと共有',
    'Shared' => '共有済み',
    'Owner' => '所有者',
    'Unread notifications' => '未読通知',
    'Notification methods:' => '通知方法:',
    'Unable to read your file' => 'あなたのファイルを読むことができません',
    '%d task(s) have been imported successfully.' => '%d件のタスクが正常にインポートされました',
    'Nothing have been imported!' => '何もインポートされていません!',
    'Import users from CSV file' => 'CSVファイルからユーザーをインポート',
    '%d user(s) have been imported successfully.' => '%d人のユーザーが正常にインポートされました',
    'Comma' => 'カンマ',
    'Semi-colon' => 'セミコロン',
    'Tab' => 'タブ',
    'Vertical bar' => '縦棒',
    'Double Quote' => '二重引用符',
    'Single Quote' => '一重引用符',
    '%s attached a file to the task #%d' => '%sさんがタスクにファイルを添付しました#%d',
    'There is no column or swimlane activated in your project!' => 'あなたのプロジェクトではカラムやスイムレーンが有効になっていません!',
    'Append filter (instead of replacement)' => '置換の代わりにフィルターを追加',
    'Append/Replace' => '追加/置換',
    'Append' => '追加',
    'Replace' => '置換',
    'Import' => 'インポート',
    'Change sorting' => 'ソートの変更',
    'Tasks Importation' => 'タスクのインポート',
    'Delimiter' => '区切り',
    'Enclosure' => 'エンクロージャ',
    'CSV File' => 'CSVファイル',
    'Instructions' => '指示',
    'Your file must use the predefined CSV format' => 'ファイルは定義済みのCSV形式である必要があります',
    'Your file must be encoded in UTF-8' => 'ファイルはUTF-8でエンコードする必要があります',
    'The first row must be the header' => '最初の行は見出しでなければなりません',
    'Duplicates are not verified for you' => '重複は検証されません',
    'The due date must use the ISO format: YYYY-MM-DD' => '期限はISO形式である必要があります:YYYY-MM-DD',
    'Download CSV template' => 'CSVテンプレートをダウンロード',
    'No external integration registered.' => '外部統合が登録されていません',
    'Duplicates are not imported' => '重複はインポートされません',
    'Usernames must be lowercase and unique' => 'ユーザー名は小文字でユニークでなければなりません',
    'Passwords will be encrypted if present' => 'パスワードがあれば暗号化されます',
    '%s attached a new file to the task %s' => '%sタスクに新しいファイルを添付しました%s',
    'Link type' => 'リンクタイプ',
    'Assign automatically a category based on a link' => 'リンクに基づいてカテゴリを自動的に割当てる',
    // 'BAM - Konvertible Mark' => '',
    'Assignee Username' => '担当者のユーザー名',
    'Assignee Name' => '担当者名',
    'Groups' => 'グループ',
    'Members of %s' => '%sのメンバー',
    'New group' => '新しいグループ',
    'Group created successfully.' => 'グループは正常に作成されました',
    'Unable to create your group.' => 'あなたのグループを作成できません',
    'Edit group' => 'グループを編集',
    'Group updated successfully.' => 'グループは正常に更新されました',
    'Unable to update your group.' => 'あなたのグループを更新できません',
    'Add group member to "%s"' => '「%s」にグループメンバーを追加',
    'Group member added successfully.' => 'グループメンバーが正常に追加されました',
    'Unable to add group member.' => 'グループメンバーを追加できません',
    'Remove user from group "%s"' => 'グループ「%s」からユーザーを削除',
    'User removed successfully from this group.' => 'このグループからユーザーが正常に削除されました',
    'Unable to remove this user from the group.' => 'このユーザーをグループから削除できません',
    'Remove group' => 'グループを削除',
    'Group removed successfully.' => 'グループは正常に削除されました',
    'Unable to remove this group.' => 'このグループを削除できません',
    'Project Permissions' => 'プロジェクトの権限',
    'Manager' => '組織の管理者',
    'Project Manager' => 'プロジェクト管理者',
    'Project Member' => 'プロジェクトメンバー',
    'Project Viewer' => 'プロジェクトビューアー',
    'Your account is locked for %d minutes' => 'あなたのアカウントは%d分間ロックされています',
    'Invalid captcha' => '無効なcaptcha',
    'The name must be unique' => '名前はユニークである必要があります',
    'View all groups' => 'すべてのグループを表示',
    'There is no user available.' => '利用可能なユーザーはありません',
    'Do you really want to remove the user "%s" from the group "%s"?' => 'ユーザー「%s」をグループ「%s」から削除しますか?',
    'There is no group.' => 'グループはありません',
    'Add group member' => 'グループメンバーを追加',
    'Do you really want to remove this group: "%s"?' => 'グループ「%s」を削除しますか?',
    'There is no user in this group.' => 'このグループにはユーザーがいません',
    'Permissions' => '権限',
    'Allowed Users' => '許可されたユーザー',
    'No user have been allowed specifically.' => '許可されたユーザーはありません',
    'Role' => '役割',
    'Enter user name...' => 'ユーザー名を入力...',
    'Allowed Groups' => '許可されたグループ',
    'No group have been allowed specifically.' => '許可されたグループはありません',
    'Group' => 'グループ',
    'Group Name' => 'グループ名',
    'Enter group name...' => 'グループ名を入力...',
    'Role:' => '役割:',
    'Project members' => 'プロジェクトメンバー',
    '%s mentioned you in the task #%d' => '%sはタスク#%dであなたのことに言及しました',
    '%s mentioned you in a comment on the task #%d' => '%sはタスク#%dのコメントであなたのことに言及しました',
    'You were mentioned in the task #%d' => 'タスク#%dであなたのことが言及されました',
    'You were mentioned in a comment on the task #%d' => 'タスク#%dのコメントであなたのことが言及されました',
    'Estimated hours: ' => '見積時間:',
    'Actual hours: ' => '実際の時間:',
    'Hours Spent' => '時間(経過)',
    'Hours Estimated' => '時間(見積)',
    'Estimated Time' => '見積時間',
    'Actual Time' => '実際の時間',
    'Estimated vs actual time' => '見積時間と実際の時間',
    // 'RUB - Russian Ruble' => '',
    'Assign the task to the person who does the action when the column is changed' => 'カラムが変更されたときにアクションを実行する人にタスクを割当てる',
    'Close a task in a specific column' => '特定のカラムのタスクを完了させる',
    'Time-based One-time Password Algorithm' => '時間基準のワンタイム・パスワード・アルゴリズム',
    'Two-Factor Provider: ' => '二要素認証の提供元:',
    'Disable two-factor authentication' => '二要素認証を無効にする',
    'Enable two-factor authentication' => '二要素認証を有効にする',
    'There is no integration registered at the moment.' => '現在登録されている統合はありません',
    'Password Reset for Kanboard' => 'Kanboardのパスワードリセット',
    'Forgot password?' => 'パスワードをお忘れですか?',
    'Enable "Forget Password"' => '「パスワードをお忘れですか?」を有効にする',
    'Password Reset' => 'パスワードリセット',
    'New password' => '新しいパスワード',
    'Change Password' => 'パスワードを変更',
    'To reset your password click on this link:' => 'このリンクをクリックするとパスワードをリセットします:',
    'Last Password Reset' => '最後のパスワードリセット',
    'The password has never been reinitialized.' => 'パスワードが再設定されていません',
    'Creation' => '作成',
    'Expiration' => '失効',
    'Password reset history' => 'パスワードリセット履歴',
    'All tasks of the column "%s" and the swimlane "%s" have been closed successfully.' => 'すべてのタスク「%s」とスイムレーン「%s」は正常に終了しました',
    'Do you really want to close all tasks of this column?' => 'このカラムのすべてのタスクを終了しますか?',
    '%d task(s) in the column "%s" and the swimlane "%s" will be closed.' => 'カラム「%s」とスイムレーン 「%s」にある%d件のタスクを終了します',
    'Close all tasks of this column' => 'このカラムのすべてのタスクを終了',
    'No plugin has registered a project notification method. You can still configure individual notifications in your user profile.' => 'プラグインはプロジェクト通知メソッドを登録していません。ユーザープロフィールで個別に通知を設定することができます',
    'My dashboard' => 'ダッシュボード',
    'My profile' => 'プロフィール',
    'Project owner: ' => 'プロジェクト責任者:',
    'The project identifier is optional and must be alphanumeric, example: MYPROJECT.' => 'プロジェクト識別子はオプションです。設定する場合は英数字にしてください。 例:MYPROJECT',
    'Project owner' => 'プロジェクト責任者',
    'Private projects do not have users and groups management.' => 'プライベートプロジェクトにはユーザーとグループの管理はありません',
    'There is no project member.' => 'プロジェクトメンバーはありません',
    'Priority' => '優先度',
    'Task priority' => 'タスクの優先度',
    'General' => '一般',
    'Dates' => '日付',
    'Default priority' => '既定の優先度',
    'Lowest priority' => '最低優先度',
    'Highest priority' => '最高優先度',
    'Close a task when there is no activity' => '活動がないときはタスクを終了',
    'Duration in days' => '期間(日)',
    'Send email when there is no activity on a task' => 'タスクに活動がないときにメールを送信',
    'Unable to fetch link information.' => 'リンク情報を取得できません',
    'Daily background job for tasks' => 'タスクのためのバックグラウンドジョブ(毎日)',
    'Auto' => '自動',
    'Related' => '関連',
    'Attachment' => '添付',
    'Title not found' => 'タイトルが見つかりません',
    'Web Link' => 'Webリンク',
    'External links' => '外部リンク',
    'Add external link' => '外部リンクを追加',
    'Type' => 'タイプ',
    'Dependency' => '依存',
    'Add internal link' => '内部リンクを追加',
    'Add a new external link' => '新しい外部リンクを追加',
    'Edit external link' => '外部リンクを編集',
    'External link' => '外部リンク',
    'Copy and paste your link here...' => 'リンクをここにコピー&ペースト...',
    // 'URL' => '',
    'Internal links' => '内部リンク',
    'Assign to me' => '自分が担当する',
    'Me' => '自分',
    'Do not duplicate anything' => '何も複製しない',
    'Projects management' => 'プロジェクト管理',
    'Users management' => 'ユーザー管理',
    'Groups management' => 'グループ管理',
    'Create from another project' => '別のプロジェクトから作成',
    'open' => '開始',
    'closed' => '終了',
    'Priority:' => '優先度:',
    'Reference:' => '参照:',
    'Complexity:' => '複雑さ:',
    'Swimlane:' => 'スイムレーン:',
    'Column:' => 'カラム:',
    'Position:' => '位置:',
    'Creator:' => '作成者:',
    'Time estimated:' => '見積時間:',
    '%s hours' => '%s時間',
    'Time spent:' => '経過時間:',
    'Created:' => '作成:',
    'Modified:' => '更新:',
    'Completed:' => '完了:',
    'Started:' => '開始:',
    'Moved:' => '移動:',
    'Task #%d' => 'タスク #%d',
    'Time format' => '時刻形式',
    'Start date: ' => '開始日:',
    'End date: ' => '完了日:',
    'New due date: ' => '新しい期限:',
    'Start date changed: ' => '開始日が変更されました:',
    'Disable private projects' => '非公開プロジェクトを無効にする',
    'Do you really want to remove this custom filter: "%s"?' => 'このカスタムフィルタ「%s」を削除しますか?',
    'Remove a custom filter' => 'カスタムフィルタを削除',
    'User activated successfully.' => 'ユーザーは有効になりました',
    'Unable to enable this user.' => 'このユーザーを有効にできません',
    'User disabled successfully.' => 'ユーザーが無効になりました',
    'Unable to disable this user.' => 'このユーザーを無効にできません',
    'All files have been uploaded successfully.' => 'すべてのファイルが正常にアップロードされました',
    'The maximum allowed file size is %sB.' => '最大許容ファイルサイズ:%sB',
    'Drag and drop your files here' => 'ファイルをドラッグアンドドロップ',
    'choose files' => 'ファイルを選択',
    'View profile' => 'プロフィールを見る',
    'Two Factor' => '二要素認証',
    'Disable user' => 'ユーザーを無効にする',
    'Do you really want to disable this user: "%s"?' => 'ユーザー「%s」を無効にしますか?',
    'Enable user' => 'ユーザーを有効にする',
    'Do you really want to enable this user: "%s"?' => 'ユーザー「%s」を有効にしますか?',
    'Download' => 'ダンウロード',
    'Uploaded: %s' => 'アップロード完了:%s',
    'Size: %s' => 'サイズ:%s',
    'Uploaded by %s' => '%sによってアップロードされました',
    'Filename' => 'ファイル名',
    'Size' => 'サイズ',
    'Column created successfully.' => 'カラムが正常に作成されました',
    'Another column with the same name exists in the project' => '同じ名前の別のカラムがプロジェクトにあります',
    'Default filters' => '既定フィルタ',
    'Your board doesn\'t have any columns!' => 'あなたのボードにはカラムがありません!',
    'Change column position' => 'カラムの位置を変更',
    'Switch to the project overview' => 'プロジェクト概要に切替',
    'User filters' => 'ユーザーフィルタ',
    'Category filters' => 'カテゴリフィルタ',
    'Upload a file' => 'ファイルをアップロード',
    'View file' => 'ファイルを見る',
    'Last activity' => '最新の活動状況',
    'Change subtask position' => 'サブタスクの位置を変更',
    'This value must be greater than %d' => '%dより大きくなければなりません',
    'Another swimlane with the same name exists in the project' => '同じ名前の別のスイムレーンがプロジェクトにあります',
    'Example: http://example.kanboard.net/ (used to generate absolute URLs)' => '例:http://example.kanboard.net/(絶対URLの生成に使用)',
    'Actions duplicated successfully.' => 'アクションを複製しました',
    'Unable to duplicate actions.' => 'アクションを複製できません',
    'Add a new action' => '新しいアクションを追加',
    'Import from another project' => '別のプロジェクトからインポート',
    'There is no action at the moment.' => 'アクションはありません',
    'Import actions from another project' => '別のプロジェクトからアクションをインポート',
    'There is no available project.' => '利用可能なプロジェクトはありません',
    'Local File' => 'ローカルファイル',
    'Configuration' => '構成',
    'PHP version:' => 'PHPバージョン:',
    // 'PHP SAPI:' => '',
    'OS version:' => 'OSバージョン:',
    'Database version:' => 'データベース・バージョン:',
    'Browser:' => 'ブラウザー:',
    'Task view' => 'タスクビュー',
    'Edit task' => 'タスクを編集',
    'Edit description' => '説明を編集',
    'New internal link' => '新しい内部リンク',
    'Display list of keyboard shortcuts' => 'キーボードショートカットのリストを表示',
    // 'Menu' => '',
    'Set start date' => '開始する',
    'Avatar' => 'アバター',
    'Upload my avatar image' => '自分のアバター画像をアップロード',
    'Remove my image' => '画像を削除',
    'The OAuth2 state parameter is invalid' => 'OAuth2ステートパラメータは無効です',
    'User not found.' => 'ユーザーが見つかりません',
    'Search in activity stream' => '活動状況で検索',
    'My activities' => '自分の活動状況',
    'Activity until yesterday' => '昨日までの活動状況',
    'Activity until today' => '今までの活動状況',
    'Search by creator: ' => '作成者で検索:',
    'Search by creation date: ' => '作成日で検索:',
    'Search by task status: ' => 'タスクステータスで検索:',
    'Search by task title: ' => 'タスク名で検索:',
    'Activity stream search' => '活動状況を検索',
    'Projects where "%s" is manager' => '「%s」が管理者のプロジェクト',
    'Projects where "%s" is member' => '「%s」がメンバーのプロジェクト',
    'Open tasks assigned to "%s"' => '「%s」が担当のタスクを開く',
    'Closed tasks assigned to "%s"' => '「%s」が担当した終了したタスク',
    'Assign automatically a color based on a priority' => '優先度に基づいて自動的に色を割当て',
    'Overdue tasks for the project(s) "%s"' => '期限を超過したタスク「%s」',
    'Upload files' => 'ファイルをアップロード',
    'Installed Plugins' => '使用中のプラグイン',
    'Plugin Directory' => 'プラグインディレクトリ',
    'Plugin installed successfully.' => 'プラグインがインストールされました',
    'Plugin updated successfully.' => 'プラグインが更新されました',
    'Plugin removed successfully.' => 'プラグインを削除しました',
    'Subtask converted to task successfully.' => 'サブタスクをタスクに変換しました',
    'Unable to convert the subtask.' => 'サブタスクを変換できません',
    'Unable to extract plugin archive.' => 'プラグインアーカイブを解凍できません',
    'Plugin not found.' => 'プラグインが見つかりません',
    'You don\'t have the permission to remove this plugin.' => 'このプラグインを削除する権限がありません',
    'Unable to download plugin archive.' => 'プラグインアーカイブをダウンロードできません',
    'Unable to write temporary file for plugin.' => 'プラグインの一時ファイルを書き込めません',
    'Unable to open plugin archive.' => 'プラグインアーカイブを開くことができません',
    'There is no file in the plugin archive.' => 'プラグインアーカイブにファイルがありません',
    'Create tasks in bulk' => 'タスクを一括作成',
    'Your Kanboard instance is not configured to install plugins from the user interface.' => 'あなたのKanboardインスタンスは、ユーザーインターフェースからプラグインをインストールするように設定されていません',
    'There is no plugin available.' => '利用可能なプラグインはありません',
    'Install' => 'インストール',
    'Update' => '更新',
    'Up to date' => '最新の日付',
    'Not available' => '利用できません',
    'Remove plugin' => 'プラグインを削除',
    'Do you really want to remove this plugin: "%s"?' => 'このプラグインを削除しますか?: %s',
    'Uninstall' => 'アンインストール',
    'Listing' => 'リスト',
    'Metadata' => 'メタデータ',
    'Manage projects' => 'プロジェクトを管理',
    'Convert to task' => 'タスクに変換',
    'Convert sub-task to task' => 'サブタスクをタスクに変換',
    'Do you really want to convert this sub-task to a task?' => 'このサブタスクをタスクに変換しますか?',
    'My task title' => '自分のタスク名',
    'Enter one task by line.' => '1行に1件のタスクを入力',
    'Number of failed login:' => 'ログイン失敗回数:',
    'Account locked until:' => 'ロックされたアカウント:',
    'Email settings' => 'メール設定',
    'Email sender address' => '送信者のメールアドレス',
    'Email transport' => 'メールの送信',
    'Webhook token' => 'Webhookトークン',
    'Project tags management' => 'プロジェクトタグ管理',
    'Tag created successfully.' => 'タグを作成しました',
    'Unable to create this tag.' => 'タグを作成できません',
    'Tag updated successfully.' => 'タグを更新しました',
    'Unable to update this tag.' => 'タグを更新できません',
    'Tag removed successfully.' => 'タグを削除しました',
    'Unable to remove this tag.' => 'タグを削除できません',
    'Global tags management' => 'グローバルタグ管理',
    'Tags' => 'タグ',
    'Tags management' => 'タグ管理',
    'Add new tag' => '新しいタグを追加',
    'Edit a tag' => 'タグを編集',
    'Project tags' => 'プロジェクトタグ',
    'There is no specific tag for this project at the moment.' => 'このプロジェクトにはタグはありません',
    'Tag' => 'タグ',
    'Remove a tag' => 'タグを削除',
    'Do you really want to remove this tag: "%s"?' => 'タグ「%s」を削除しますか?',
    'Global tags' => 'グローバルタグ',
    'There is no global tag at the moment.' => 'グローバルタグはありません',
    'This field cannot be empty' => 'このフィールドは必須です',
    'Close a task when there is no activity in an specific column' => '特定のカラムに活動がない場合にタスクを終了',
    '%s removed a subtask for the task #%d' => 'タスク#%dからサブタスク%s件を削除しました',
    '%s removed a comment on the task #%d' => 'タスク#%dからコメント%s件を削除しました',
    'Comment removed on task #%d' => 'タスク#%dからコメントを削除しました',
    'Subtask removed on task #%d' => 'タスク#%dからサブタスクを削除しました',
    'Hide tasks in this column in the dashboard' => 'ダッシュボードでこのカラムのタスクは表示しない',
    '%s removed a comment on the task %s' => '%sはタスク「%s」からコメントを削除しました',
    '%s removed a subtask for the task %s' => '%sはタスク「%s」からサブタスクを削除しました',
    'Comment removed' => 'コメントを削除しました',
    'Subtask removed' => 'サブタスクを削除しました',
    '%s set a new internal link for the task #%d' => '%sはタスク#%dの新しい内部リンクを設定しました',
    '%s removed an internal link for the task #%d' => '%sはタスク#%dの内部リンクを削除しました',
    'A new internal link for the task #%d have been defined' => 'タスク#%dの新しい内部リンクが定義されています',
    'Internal link removed for the task #%d' => 'タスク#%dの内部リンクが削除されました',
    '%s set a new internal link for the task %s' => '%sはタスク「%s」の新しい内部リンクを設定しました',
    '%s removed an internal link for the task %s' => '%sはタスク「%s」の内部リンクを削除しました',
    'Automatically set the due date on task creation' => 'タスク作成時に自動的に期限を設定',
    'Move the task to another column when closed' => '閉じたときにタスクを別のカラムに移動',
    'Move the task to another column when not moved during a given period' => '指定された期間中に移動しなかった場合、タスクを別のカラムに移動',
    'Dashboard for %s' => '%sのダッシュボード',
    'Tasks overview for %s' => '%sのタスク概要',
    'Subtasks overview for %s' => '%sのサブタスク概要',
    'Projects overview for %s' => '%sのプロジェクト概要',
    'Activity stream for %s' => '%sの活動状況',
    'Assign a color when the task is moved to a specific swimlane' => 'タスクが特定のスイムレーンに移動したときに色を割当てる',
    'Assign a priority when the task is moved to a specific swimlane' => 'タスクが特定のスイムレーンに移動したときに優先度を割当てる',
    'User unlocked successfully.' => 'ユーザーのロックを解除しました',
    'Unable to unlock the user.' => 'ユーザーのロックを解除できません',
    'Move a task to another swimlane' => '別のスイムレーンにタスクを移動',
    'Creator Name' => '作成者',
    'Time spent and estimated' => '経過/見積時間',
    'Move position' => '移動',
    'Move task to another position on the board' => 'ボード上の別の位置にタスクを移動',
    'Insert before this task' => 'このタスクの前に挿入',
    'Insert after this task' => 'このタスクの後に挿入',
    'Unlock this user' => 'このユーザーをロック解除',
    'Custom Project Roles' => 'プロジェクト独自の役割',
    'Add a new custom role' => '新しい役割を追加',
    'Restrictions for the role "%s"' => '役割「%s」の制限',
    'Add a new project restriction' => 'プロジェクト制約を追加',
    'Add a new drag and drop restriction' => 'ドラッグアンドドロップの制限を追加',
    'Add a new column restriction' => 'カラムに制限を追加',
    'Edit this role' => '役割を編集',
    'Remove this role' => '役割を削除',
    'There is no restriction for this role.' => 'この役割には制限はありません',
    'Only moving task between those columns is permitted' => 'これらのカラム間はタスクの移動のみが許可されています',
    'Close a task in a specific column when not moved during a given period' => '指定された期間中に移動しなかった場合、特定のカラムのタスクを終了',
    'Edit columns' => 'カラムを編集',
    'The column restriction has been created successfully.' => 'カラムの制限を作成しました',
    'Unable to create this column restriction.' => 'このカラムの制限を作成できません',
    'Column restriction removed successfully.' => 'カラムの制限を削除しました',
    'Unable to remove this restriction.' => 'この制限を削除できません',
    'Your custom project role has been created successfully.' => 'あなたのプロジェクトで独自の役割を作成しました',
    'Unable to create custom project role.' => 'プロジェクト独自の役割を作成できません',
    'Your custom project role has been updated successfully.' => 'プロジェクト独自の役割を更新しました',
    'Unable to update custom project role.' => 'プロジェクト独自の役割を更新できません',
    'Custom project role removed successfully.' => 'プロジェクト独自の役割を削除しました',
    'Unable to remove this project role.' => 'プロジェクトから役割を削除できません',
    'The project restriction has been created successfully.' => 'プロジェクトの制限が作成しました',
    'Unable to create this project restriction.' => 'プロジェクトの制限を作成できません',
    'Project restriction removed successfully.' => 'プロジェクトの制限を削除しました',
    'You cannot create tasks in this column.' => 'このカラムにタスクは作成できません',
    'Task creation is permitted for this column' => 'このカラムではタスクの作成が許可されています',
    'Closing or opening a task is permitted for this column' => 'このカラムではタスクを作成/完了が許可されています',
    'Task creation is blocked for this column' => 'このカラムでのタスク作成はブロックされています',
    'Closing or opening a task is blocked for this column' => 'このカラムでのタスクの作成/完了はブロックされています',
    'Task creation is not permitted' => 'タスクの作成は許可されていません',
    'Closing or opening a task is not permitted' => 'タスクの作成/完了は許可されていません',
    'New drag and drop restriction for the role "%s"' => '役割「%s」の新しいドラッグアンドドロップ制限',
    'People belonging to this role will be able to move tasks only between the source and the destination column.' => 'この役割に属するユーザーは、起点カラムと宛先カラムの間でのみタスクを移動できます',
    'Remove a column restriction' => 'カラムの制限を解除',
    'Do you really want to remove this column restriction: "%s" to "%s"?' => 'このカラムの制限を解除しますか?: 「%s」→「%s」',
    'New column restriction for the role "%s"' => '役割「%s」のカラムでの新しい制限',
    'Rule' => '役割',
    'Do you really want to remove this column restriction?' => 'この列の制限を解除しますか?',
    'Custom roles' => '独自の役割',
    'New custom project role' => 'プロジェクトでの新しい独自の役割',
    'Edit custom project role' => 'プロジェクトでの独自の役割を編集',
    'Remove a custom role' => 'プロジェクトでの独自の役割を削除',
    'Do you really want to remove this custom role: "%s"? All people assigned to this role will become project member.' => '役割「%s」を削除しますか?この役割に割当てられたすべてのユーザーがプロジェクトメンバーになります',
    'There is no custom role for this project.' => 'プロジェクトでの独自の役割はありません',
    'New project restriction for the role "%s"' => '役割「%s」の新しいプロジェクト制限',
    'Restriction' => '制限',
    'Remove a project restriction' => 'プロジェクトの制限を解除',
    'Do you really want to remove this project restriction: "%s"?' => 'プロジェクトの制限「%s」を解除しますか?',
    'Duplicate to multiple projects' => '複数プロジェクトに複製',
    'This field is required' => 'このフィールドは必須です',
    'Moving a task is not permitted' => 'タスクを移動できません',
    'This value must be in the range %d to %d' => 'この値は%d〜%dの範囲になければなりません',
    'You are not allowed to move this task.' => 'このタスクを移動する権限がありません',
    'API User Access' => 'API ユーザーアクセス',
    'Preview' => 'プレビュー',
    'Write' => '書込み',
    'Write your text in Markdown' => 'Markdownで入力',
    'No personal API access token registered.' => '個人APIアクセストークンは登録されていません',
    'Your personal API access token is "%s"' => 'あなたのパーソナルAPIアクセストークン "%s"',
    'Remove your token' => 'あなたのトークンを削除',
    'Generate a new token' => '新しいトークンを生成',
    'Showing %d-%d of %d' => '%d〜%d/%dを表示',
    'Outgoing Emails' => '送信メール',
    'Add or change currency rate' => '通貨レートを追加または変更',
    'Reference currency: %s' => '参照通貨:%s',
    'Add custom filters' => 'カスタムフィルタを追加',
    'Export' => 'エクスポート',
    'Add link label' => 'リンクラベルを追加',
    'Incompatible Plugins' => '互換性のないプラグイン',
    'Compatibility' => '互換性',
    'Permissions and ownership' => 'アクセス権と所有権',
    'Priorities' => 'プロパティ',
    'Close this window' => 'ウィンドウを閉じる',
    'Unable to upload this file.' => 'ファイルをアップロードできません',
    'Import tasks' => 'タスクのインポート',
    'Choose a project' => 'プロジェクトを選択',
    'Profile' => 'プロフィール',
    'Application role' => 'アプリケーションでの役割',
    '%d invitations were sent.' => '%d通の招待状を送信しました',
    '%d invitation was sent.' => '%dに招待状を送信しました',
    'Unable to create this user.' => 'ユーザーを作成できません',
    'Kanboard Invitation' => 'Kanboardへの招待',
    'Visible on dashboard' => 'ダッシュボード表示',
    'Created at:' => '作成日時:',
    'Updated at:' => '更新日時:',
    'There is no custom filter.' => 'カスタムフィルタはありません',
    'New User' => '新規ユーザー',
    'Authentication' => '認証',
    'If checked, this user will use a third-party system for authentication.' => 'チェックすると、このユーザーは認証に第三者システムを使用します',
    'The password is necessary only for local users.' => 'パスワードはローカルユーザーにのみ必要です',
    'You have been invited to register on Kanboard.' => 'あなたはKanboardに登録されました',
    'Click here to join your team' => 'クリックしてあなたのチームに参加',
    'Invite people' => '招待',
    'Emails' => 'Eメール',
    'Enter one email address by line.' => '行ごとに1つのメールアドレスを入力してください',
    'Add these people to this project' => 'これらの人々をプロジェクトに追加',
    'Add this person to this project' => 'この人をプロジェクトに追加',
    'Sign-up' => 'サインアップ',
    'Credentials' => '資格情報',
    'New user' => '新規ユーザー',
    'This username is already taken' => 'このユーザー名はすでに使用されています',
    'A link to reset your password has been sent by email.' => 'パスワードをリセットするリンクをメールで送信しました',
    'Your profile must have a valid email address.' => 'プロフィールには有効なメールアドレスが必要です',
    'Unfortunately, we are unable to reset your password. Did you entered a valid username? Do you have an email address in your profile?' => 'パスワードをリセットできません。有効なユーザー名を入力しましたか?または、あなたのプロフィールにメールアドレスを登録していますか?',
    // 'TRL - Turkish Lira' => '',
    'The project email is optional and could be used by several plugins.' => 'プロジェクトのEメールはオプション/複数のプラグインで使用可能',
    'The project email must be unique across all projects' => 'プロジェクトのEメールはすべてのプロジェクトでユ一意である必要があります',
    'The email configuration has been disabled by the administrator.' => '管理者がEメールの設定を無効にしました',
    'Close this project' => 'プロジェクトを終了',
    'Open this project' => 'このプロジェクトを開く',
    'Close a project' => 'プロジェクトを終了',
    'Do you really want to close this project: "%s"?' => 'このプロジェクトを本当に終了しますか?: %s',
    'Reopen a project' => 'プロジェクトを開く',
    'Do you really want to reopen this project: "%s"?' => 'このプロジェクトを開きますか?: %s',
    'This project is open' => 'このプロジェクトは進行中',
    'This project is closed' => 'このプロジェクトは終了しました',
    'Unable to upload files, check the permissions of your data folder.' => 'ファイルをアップロードできません。データフォルダのアクセス権を確認してください。',
    'Another category with the same name exists in this project' => '同じ名前の別のカテゴリがプロジェクトに存在します',
    'Comment sent by email successfully.' => 'メールでコメントを送信しました',
    'Sent by email to [%s](mailto:%s) (%s)' => '%s をメールで送信しました(mailto:%s) (%s)',
    'Unable to read uploaded file.' => 'アップロードされたファイルを読み込めません',
    'Database uploaded successfully.' => 'データベースをアップロードしました',
    'Task sent by email successfully.' => 'タスクをメールで送信しました',
    'There is no category in this project.' => 'このプロジェクトにカテゴリはありません',
    'Send by email' => 'メールで送る',
    'Create and send a comment by email' => 'Eメールでコメントを送信',
    'Subject' => '件名',
    'Upload the database' => 'データベースをアップロード',
    'You could upload the previously downloaded Sqlite database (Gzip format).' => '以前にダウンロードしたSqliteデータベース(Gzip形式)をアップロードできます',
    'Database file' => 'データベースファイル',
    'Upload' => 'アップロード',
    'Your project must have at least one active swimlane.' => 'プロジェクトには少なくとも1つのアクティブなスイムレーンが必要です',
    'Project: %s' => 'プロジェクト:%s',
    'Automatic action not found: "%s"' => '自動アクションが見つかりません: %s',
    '%d projects' => '%d 件のプロジェクト',
    '%d project' => '%d プロジェクト',
    'There is no project.' => 'プロジェクトはありません',
    'Sort' => 'ソート',
    'Project ID' => 'プロジェクトID',
    'Project name' => 'プロジェクト名',
    'Public' => '公開',
    'Private' => 'プライベート',
    '%d tasks' => '%d 件のタスク',
    '%d task' => '%d タスク',
    'Task ID' => 'タスクID',
    'Assign automatically a color when due date is expired' => '期限が切れたら自動的に色を割当て',
    'Total score in this column across all swimlanes' => 'このカラムのすべてのスイムレーンで合計得点',
    // 'HRK - Kuna' => '',
    'ARS - Argentine Peso' => 'ARS - アルゼンチンペソ',
    'COP - Colombian Peso' => 'COP - コロンビアペソ',
    '%d groups' => '%d個のグループ',
    '%d group' => '%d グループ',
    'Group ID' => 'グループID',
    'External ID' => '外部ID',
    '%d users' => '%d 人のユーザー',
    '%d user' => '%d ユーザー',
    'Hide subtasks' => 'サブタスクを隠す',
    'Show subtasks' => 'サブタスクを表示',
    'Authentication Parameters' => '認証パラメータ',
    'API Access' => 'APIアクセス',
    'No users found.' => 'ユーザーが見つかりません',
    'User ID' => 'ユーザーID',
    'Notifications are activated' => '通知は有効',
    'Notifications are disabled' => '通知は無効',
    'User disabled' => 'ユーザーを無効にしました',
    '%d notifications' => '%d 件の通知',
    '%d notification' => '%d 通知',
    'There is no external integration installed.' => '外部インテグレーションはインストールされていません',
    'You are not allowed to update tasks assigned to someone else.' => '他の人に割当てられたタスクを更新する権限がありません',
    'You are not allowed to change the assignee.' => '担当者を変更する権限はありません',
    'Task suppression is not permitted' => 'タスクの抑制は許可されていません',
    'Changing assignee is not permitted' => '担当者は変更できません',
    'Update only assigned tasks is permitted' => '割当てられたタスクのみ更新できます',
    'Only for tasks assigned to the current user' => '現在のユーザーに割当てられたタスクのみ',
    'My projects' => '自分のプロジェクト',
    'Your are not member of any project.' => 'あなたが所属しているプロジェクトにはありません',
    'My subtasks' => '自分のサブタスク',
    '%d subtasks' => '%d 件のサブタスク',
    '%d subtask' => '%d サブタスク',
    'Only moving task between those columns is permitted for tasks assigned to the current user' => '現在のユーザーに割当てられたタスクは、これらのカラム間の移動のみが許可されます',
    '[DUPLICATE]' => '[コピー]',
    'DKK - Danish Krona' => 'DKK - デンマーククローナ',
    'Remove user from group' => 'ユーザーをグループから削除',
    'Assign the task to its creator' => '作成者にタスクを割当て',
    'This task was sent by email to "%s" with subject "%s".' => 'このタスクをメールで 「%s」 に送信しました(件名 "%s")',
    'Predefined Email Subjects' => '既定のメールの件名',
    'Write one subject by line.' => '行ごとに1つずつ件名を書く',
    'Create another link' => '別のリンクを作成',
    'BRL - Brazilian Real' => 'BRL - ブラジルレアル',
    'Add a new Kanboard task' => 'Kanboard タスクを追加',
    'Subtask not started' => 'サブタスクは開始されていません',
    'Subtask currently in progress' => 'サブタスクは進行中',
    'Subtask completed' => 'サブタスクは完了',
    'Subtask added successfully.' => 'サブタスクを追加しました',
    '%d subtasks added successfully.' => '%d 件のサブタスクを追加しました',
    'Enter one subtask by line.' => '1行に1件のサブタスクを入力',
    'Predefined Contents' => '定義済みコンテンツ',
    'Predefined contents' => '定義済みコンテンツ',
    'Predefined Task Description' => '定義済みタスクの説明',
    'Do you really want to remove this template? "%s"' => 'このテンプレートを削除しますか?: %s',
    'Add predefined task description' => '定義済みのタスクの説明を追加',
    'Predefined Task Descriptions' => '定義済みタスクの説明',
    'Template created successfully.' => 'テンプレートを作成しました',
    'Unable to create this template.' => 'テンプレートを作成できません',
    'Template updated successfully.' => 'テンプレートを更新しました',
    'Unable to update this template.' => 'テンプレートを更新できません',
    'Template removed successfully.' => 'テンプレートを削除しました',
    'Unable to remove this template.' => 'テンプレートを削除できません',
    'Template for the task description' => 'タスク説明のテンプレート',
    'The start date is greater than the end date' => '開始日が終了日を超えています',
    // 'Tags must be separated by a comma' => '',
    // 'Only the task title is required' => '',
    // 'Creator Username' => '',
    // 'Color Name' => '',
    // 'Column Name' => '',
    // 'Swimlane Name' => '',
    // 'Time Estimated' => '',
    // 'Time Spent' => '',
    // 'External Link' => '',
);