summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-10-16 19:09:25 -0700
committerFrederic Guillot <fred@kanboard.net>2017-10-16 19:09:25 -0700
commit41c2ab0c2451ea00d1236bc31f13ee7c2da97c3a (patch)
treefa1dda191117d08b4196138248eb5ed97cbdc14b
parent914b40b4afcfd309eed4044ea93a52ba636e90e7 (diff)
Add tooltip to subtask icons
-rw-r--r--app/Helper/SubtaskHelper.php19
-rw-r--r--app/Locale/bs_BA/translations.php3
-rw-r--r--app/Locale/ca_ES/translations.php3
-rw-r--r--app/Locale/cs_CZ/translations.php3
-rw-r--r--app/Locale/da_DK/translations.php3
-rw-r--r--app/Locale/de_DE/translations.php3
-rw-r--r--app/Locale/el_GR/translations.php3
-rw-r--r--app/Locale/es_ES/translations.php3
-rw-r--r--app/Locale/fi_FI/translations.php3
-rw-r--r--app/Locale/fr_FR/translations.php3
-rw-r--r--app/Locale/hr_HR/translations.php3
-rw-r--r--app/Locale/hu_HU/translations.php3
-rw-r--r--app/Locale/id_ID/translations.php3
-rw-r--r--app/Locale/it_IT/translations.php3
-rw-r--r--app/Locale/ja_JP/translations.php1549
-rw-r--r--app/Locale/ko_KR/translations.php3
-rw-r--r--app/Locale/my_MY/translations.php3
-rw-r--r--app/Locale/nb_NO/translations.php3
-rw-r--r--app/Locale/nl_NL/translations.php3
-rw-r--r--app/Locale/pl_PL/translations.php3
-rw-r--r--app/Locale/pt_BR/translations.php3
-rw-r--r--app/Locale/pt_PT/translations.php3
-rw-r--r--app/Locale/ru_RU/translations.php3
-rw-r--r--app/Locale/sr_Latn_RS/translations.php3
-rw-r--r--app/Locale/sv_SE/translations.php3
-rw-r--r--app/Locale/th_TH/translations.php3
-rw-r--r--app/Locale/tr_TR/translations.php3
-rw-r--r--app/Locale/vi_VN/translations.php3
-rw-r--r--app/Locale/zh_CN/translations.php7
29 files changed, 877 insertions, 776 deletions
diff --git a/app/Helper/SubtaskHelper.php b/app/Helper/SubtaskHelper.php
index 3a853238..b11e3b04 100644
--- a/app/Helper/SubtaskHelper.php
+++ b/app/Helper/SubtaskHelper.php
@@ -3,6 +3,7 @@
namespace Kanboard\Helper;
use Kanboard\Core\Base;
+use Kanboard\Model\SubtaskModel;
/**
* Subtask helpers
@@ -66,9 +67,9 @@ class SubtaskHelper extends Base
);
if ($subtask['status'] == 0 && $this->hasSubtaskInProgress()) {
- $html = $this->helper->url->link($title, 'SubtaskRestrictionController', 'show', $params, false, 'js-modal-confirm');
+ $html = $this->helper->url->link($title, 'SubtaskRestrictionController', 'show', $params, false, 'js-modal-confirm', $this->getSubtaskTooltip($subtask));
} else {
- $html = $this->helper->url->link($title, 'SubtaskStatusController', 'change', $params, false, 'js-subtask-toggle-status');
+ $html = $this->helper->url->link($title, 'SubtaskStatusController', 'change', $params, false, 'js-subtask-toggle-status', $this->getSubtaskTooltip($subtask));
}
}
@@ -136,4 +137,18 @@ class SubtaskHelper extends Base
return $html;
}
+
+ public function getSubtaskTooltip(array $subtask)
+ {
+ switch ($subtask['status']) {
+ case SubtaskModel::STATUS_TODO:
+ return t('Subtask not started');
+ case SubtaskModel::STATUS_INPROGRESS:
+ return t('Subtask currently in progress');
+ case SubtaskModel::STATUS_DONE:
+ return t('Subtask completed');
+ }
+
+ return '';
+ }
}
diff --git a/app/Locale/bs_BA/translations.php b/app/Locale/bs_BA/translations.php
index 5d9757fb..f16d2f2b 100644
--- a/app/Locale/bs_BA/translations.php
+++ b/app/Locale/bs_BA/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/ca_ES/translations.php b/app/Locale/ca_ES/translations.php
index 5c39c926..ad3c7ccb 100644
--- a/app/Locale/ca_ES/translations.php
+++ b/app/Locale/ca_ES/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/cs_CZ/translations.php b/app/Locale/cs_CZ/translations.php
index 178ce0e2..45d6d621 100644
--- a/app/Locale/cs_CZ/translations.php
+++ b/app/Locale/cs_CZ/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/da_DK/translations.php b/app/Locale/da_DK/translations.php
index 277efcee..83d81455 100644
--- a/app/Locale/da_DK/translations.php
+++ b/app/Locale/da_DK/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/de_DE/translations.php b/app/Locale/de_DE/translations.php
index 496a11f2..b93e706b 100644
--- a/app/Locale/de_DE/translations.php
+++ b/app/Locale/de_DE/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/el_GR/translations.php b/app/Locale/el_GR/translations.php
index 2ce91756..2351a506 100644
--- a/app/Locale/el_GR/translations.php
+++ b/app/Locale/el_GR/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/es_ES/translations.php b/app/Locale/es_ES/translations.php
index 65424fd2..10364e6b 100644
--- a/app/Locale/es_ES/translations.php
+++ b/app/Locale/es_ES/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/fi_FI/translations.php b/app/Locale/fi_FI/translations.php
index 98f5e216..c7abdfd4 100644
--- a/app/Locale/fi_FI/translations.php
+++ b/app/Locale/fi_FI/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/fr_FR/translations.php b/app/Locale/fr_FR/translations.php
index 11f7773a..30d3aa49 100644
--- a/app/Locale/fr_FR/translations.php
+++ b/app/Locale/fr_FR/translations.php
@@ -1341,4 +1341,7 @@ return array(
'Create another link' => 'Créer un autre lien',
'BRL - Brazilian Real' => 'BRL - Real brésilien',
'Add a new Kanboard task' => 'Ajouter une nouvelle tâche Kanboard',
+ 'Subtask not started' => 'Sous-tâche pas encore commencé',
+ 'Subtask currently in progress' => 'Sous-tâche actuellement en progrès',
+ 'Subtask completed' => 'Sous-tâche terminée',
);
diff --git a/app/Locale/hr_HR/translations.php b/app/Locale/hr_HR/translations.php
index f0cf0ae1..60cde5ac 100644
--- a/app/Locale/hr_HR/translations.php
+++ b/app/Locale/hr_HR/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/hu_HU/translations.php b/app/Locale/hu_HU/translations.php
index 7e4809f5..050bb043 100644
--- a/app/Locale/hu_HU/translations.php
+++ b/app/Locale/hu_HU/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/id_ID/translations.php b/app/Locale/id_ID/translations.php
index 5a3ea6a1..a0473eb6 100644
--- a/app/Locale/id_ID/translations.php
+++ b/app/Locale/id_ID/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/it_IT/translations.php b/app/Locale/it_IT/translations.php
index 8252c3d0..a8eaad96 100644
--- a/app/Locale/it_IT/translations.php
+++ b/app/Locale/it_IT/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/ja_JP/translations.php b/app/Locale/ja_JP/translations.php
index e865f1c3..8d85fa1d 100644
--- a/app/Locale/ja_JP/translations.php
+++ b/app/Locale/ja_JP/translations.php
@@ -532,7 +532,7 @@ return array(
'JPY - Japanese Yen' => 'JPY - 日本円',
'NZD - New Zealand Dollar' => 'NZD - NZ ドル',
'RSD - Serbian dinar' => 'RSD - セルビアデナール',
- 'CNY - Chinese Yuan' => 'CNY - 中国元',
+ 'CNY - Chinese Yuan' => 'CNY - 中国元',
'USD - US Dollar' => 'USD - 米ドル',
'Destination column' => '移動先のカラム',
'Move the task to another column when assigned to a user' => 'ユーザーの割当てをしたらタスクを他のカラムに移動',
@@ -548,7 +548,7 @@ return array(
'Rate' => 'レート',
'Change reference currency' => '現在の基軸通貨',
'Reference currency' => '基軸通貨',
- 'The currency rate have been added successfully.' => '通貨レートが正常に追加されました',
+ '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」の担当を解除しました',
@@ -562,783 +562,786 @@ return array(
'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' => '自分が作成した自分のタスクのみ',
+ '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.' => 'カスタムフィルタを更新できません',
+ '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' => 'リンクに基づいてカテゴリを自動的に割当てる',
+ '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' => '見積時間と実際の時間',
+ '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...' => 'リンクをここにコピー&ペースト...',
+ '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バージョン:',
+ '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' => 'キーボードショートカットのリストを表示',
+ '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行ずつ入力します',
- '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で入力',
- 'New External Task: %s' => '新しい外部タスク:%s',
- '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?' => 'パスワードをリセットできません。有効なユーザー名を入力しましたか?または、あなたのプロフィールにメールアドレスを登録していますか?',
+ '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行ずつ入力します',
+ '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で入力',
+ 'New External Task: %s' => '新しい外部タスク:%s',
+ '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' => 'このカラムのすべてのスイムレーンで合計得点',
- '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 タスクを追加',
-
+ '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' => '',
);
diff --git a/app/Locale/ko_KR/translations.php b/app/Locale/ko_KR/translations.php
index c85e3469..082deba5 100644
--- a/app/Locale/ko_KR/translations.php
+++ b/app/Locale/ko_KR/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/my_MY/translations.php b/app/Locale/my_MY/translations.php
index 86e92360..e275d15c 100644
--- a/app/Locale/my_MY/translations.php
+++ b/app/Locale/my_MY/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/nb_NO/translations.php b/app/Locale/nb_NO/translations.php
index 56b58eec..46ac4787 100644
--- a/app/Locale/nb_NO/translations.php
+++ b/app/Locale/nb_NO/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/nl_NL/translations.php b/app/Locale/nl_NL/translations.php
index cb588a66..bade288f 100644
--- a/app/Locale/nl_NL/translations.php
+++ b/app/Locale/nl_NL/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/pl_PL/translations.php b/app/Locale/pl_PL/translations.php
index 662bcd96..5993bc19 100644
--- a/app/Locale/pl_PL/translations.php
+++ b/app/Locale/pl_PL/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/pt_BR/translations.php b/app/Locale/pt_BR/translations.php
index 38e9a072..2d482325 100644
--- a/app/Locale/pt_BR/translations.php
+++ b/app/Locale/pt_BR/translations.php
@@ -1341,4 +1341,7 @@ return array(
'Create another link' => 'Criar outro link',
'BRL - Brazilian Real' => 'BRL - Real Brasileiro',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/pt_PT/translations.php b/app/Locale/pt_PT/translations.php
index d0cf5d70..a12aa9a2 100644
--- a/app/Locale/pt_PT/translations.php
+++ b/app/Locale/pt_PT/translations.php
@@ -1341,4 +1341,7 @@ return array(
'Create another link' => 'Criar outro link',
'BRL - Brazilian Real' => 'BRL - Real Brasileiro',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/ru_RU/translations.php b/app/Locale/ru_RU/translations.php
index 90bac3f6..15385dd2 100644
--- a/app/Locale/ru_RU/translations.php
+++ b/app/Locale/ru_RU/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/sr_Latn_RS/translations.php b/app/Locale/sr_Latn_RS/translations.php
index aa4d29e7..64c8551e 100644
--- a/app/Locale/sr_Latn_RS/translations.php
+++ b/app/Locale/sr_Latn_RS/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/sv_SE/translations.php b/app/Locale/sv_SE/translations.php
index 882ccce5..b585b09d 100644
--- a/app/Locale/sv_SE/translations.php
+++ b/app/Locale/sv_SE/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/th_TH/translations.php b/app/Locale/th_TH/translations.php
index d5f49540..a87c1cb6 100644
--- a/app/Locale/th_TH/translations.php
+++ b/app/Locale/th_TH/translations.php
@@ -1341,4 +1341,7 @@ return array(
// 'Create another link' => '',
// 'BRL - Brazilian Real' => '',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/tr_TR/translations.php b/app/Locale/tr_TR/translations.php
index efcbbbd7..fca0d0c0 100644
--- a/app/Locale/tr_TR/translations.php
+++ b/app/Locale/tr_TR/translations.php
@@ -1341,4 +1341,7 @@ return array(
'Create another link' => 'Başka bağlantı oluştur',
'BRL - Brazilian Real' => 'BRL - Brezilya Reali',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/vi_VN/translations.php b/app/Locale/vi_VN/translations.php
index 7fa77c9f..3749a288 100644
--- a/app/Locale/vi_VN/translations.php
+++ b/app/Locale/vi_VN/translations.php
@@ -1347,4 +1347,7 @@ return array(
'Create another link' => 'Tạo liên kết khác',
'BRL - Brazilian Real' => 'BRL - Brazilian Real',
// 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);
diff --git a/app/Locale/zh_CN/translations.php b/app/Locale/zh_CN/translations.php
index 94a9b2ba..0c9e0356 100644
--- a/app/Locale/zh_CN/translations.php
+++ b/app/Locale/zh_CN/translations.php
@@ -1338,5 +1338,10 @@ return array(
// 'This task was sent by email to "%s" with subject "%s".' => '',
'Predefined Email Subjects' => '预定义的邮件主题',
// 'Write one subject by line.' => '',
- '%a days, %h hours, %i minutes and %s seconds' => '%a 天, %h 小时, %i 分, %s 秒',
+ // 'Create another link' => '',
+ // 'BRL - Brazilian Real' => '',
+ // 'Add a new Kanboard task' => '',
+ // 'Subtask not started' => '',
+ // 'Subtask currently in progress' => '',
+ // 'Subtask completed' => '',
);