mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 06:11:45 +00:00
126f2df21b
* chore: move i18n to shared package * chore: move server translations to shared package and apply linter and prettier on entire shared package
41 lines
1.5 KiB
TypeScript
41 lines
1.5 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const todo: TranslationStrings = {
|
|
'todo.subtab.packing': '持ち物リスト',
|
|
'todo.subtab.todo': 'ToDo',
|
|
'todo.completed': '完了',
|
|
'todo.filter.all': 'すべて',
|
|
'todo.filter.open': '未完了',
|
|
'todo.filter.done': '完了',
|
|
'todo.uncategorized': '未分類',
|
|
'todo.namePlaceholder': 'タスク名',
|
|
'todo.descriptionPlaceholder': '説明(任意)',
|
|
'todo.unassigned': '未割り当て',
|
|
'todo.noCategory': 'カテゴリなし',
|
|
'todo.hasDescription': '説明あり',
|
|
'todo.addItem': '新しいタスクを追加...',
|
|
'todo.sidebar.sortBy': '並び替え',
|
|
'todo.priority': '優先度',
|
|
'todo.newCategoryLabel': '新規',
|
|
'todo.newCategory': 'カテゴリ名',
|
|
'todo.addCategory': 'カテゴリを追加',
|
|
'todo.newItem': '新しいタスク',
|
|
'todo.empty': 'タスクはまだありません。追加して始めましょう!',
|
|
'todo.filter.my': '自分のタスク',
|
|
'todo.filter.overdue': '期限切れ',
|
|
'todo.sidebar.tasks': 'タスク',
|
|
'todo.sidebar.categories': 'カテゴリ',
|
|
'todo.detail.title': 'タスク',
|
|
'todo.detail.description': '説明',
|
|
'todo.detail.category': 'カテゴリ',
|
|
'todo.detail.dueDate': '期限',
|
|
'todo.detail.assignedTo': '担当者',
|
|
'todo.detail.delete': '削除',
|
|
'todo.detail.save': '変更を保存',
|
|
'todo.sortByPrio': '優先度',
|
|
'todo.detail.priority': '優先度',
|
|
'todo.detail.noPriority': 'なし',
|
|
'todo.detail.create': 'タスクを作成',
|
|
};
|
|
export default todo;
|