Skip to content

Commit 613f9e1

Browse files
committed
BOARD IS THE BAN IN KANBAN YOU NOOB
1 parent 8c1e5cb commit 613f9e1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/_translations/en.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@
469469
"checklistType": "Checklist Type",
470470
"simpleChecklist": "Simple Checklist",
471471
"taskProject": "Task Project",
472-
"kanbanBoard": "Kanban Board",
472+
"kanbanBoard": "Kanban",
473473
"basicTodoItems": "Basic todo items",
474474
"withTimeTracking": "With time tracking",
475475
"noDescription": "No description",
@@ -513,7 +513,7 @@
513513
"convert": "Convert",
514514
"convertToSimpleChecklist": "Convert to simple checklist",
515515
"convertToTaskProject": "Convert to task project",
516-
"convertToKanbanBoard": "Convert to Kanban Board",
516+
"convertToKanbanBoard": "Convert to Kanban",
517517
"pasteYourList": "Paste your list (one item per line)",
518518
"addItems": "Add {count} Items",
519519
"itemsWillBeAdded": "{count} items will be added",

app/api/kanban/[boardId]/calendar/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function GET(
3131
const accept = request.headers.get("accept") || "";
3232

3333
if (accept.includes("text/calendar")) {
34-
const ics = generateICS(board.items, board.title || "Kanban Board");
34+
const ics = generateICS(board.items, board.title || "Kanban");
3535
return new NextResponse(ics, {
3636
headers: {
3737
"Content-Type": "text/calendar; charset=utf-8",

0 commit comments

Comments
 (0)