@coffer-org/plugin-transit 3.1.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,33 @@
1
+ {
2
+ "transit": {
3
+ "plugin": {
4
+ "label": "Transit",
5
+ "description": "Public transport routes and schedules."
6
+ },
7
+ "library": {
8
+ "label": "Transit"
9
+ },
10
+ "settings": {
11
+ "label": "Transit sync",
12
+ "caldav_calendar": "Calendar URL",
13
+ "caldav_url": "CalDAV server URL",
14
+ "caldav_username": "Username",
15
+ "caldav_password": "Password"
16
+ },
17
+ "bus_route": {
18
+ "label": "Route",
19
+ "fields": {
20
+ "description": "Description",
21
+ "route_number": "Route No.",
22
+ "from": "From",
23
+ "to": "To",
24
+ "stop": "Stop",
25
+ "weekday_times": "Weekdays",
26
+ "saturday_times": "Saturday",
27
+ "sunday_times": "Sunday",
28
+ "notes": "Notes",
29
+ "tags": "Tags"
30
+ }
31
+ }
32
+ }
33
+ }
@@ -0,0 +1,33 @@
1
+ {
2
+ "transit": {
3
+ "plugin": {
4
+ "label": "Транспорт",
5
+ "description": "Маршруты общественного транспорта и расписания."
6
+ },
7
+ "library": {
8
+ "label": "Транспорт"
9
+ },
10
+ "settings": {
11
+ "label": "Синхронизация транспорта",
12
+ "caldav_calendar": "URL календаря",
13
+ "caldav_url": "URL CalDAV-сервера",
14
+ "caldav_username": "Имя пользователя",
15
+ "caldav_password": "Пароль"
16
+ },
17
+ "bus_route": {
18
+ "label": "Маршрут",
19
+ "fields": {
20
+ "description": "Описание",
21
+ "route_number": "Маршрут №",
22
+ "from": "Откуда",
23
+ "to": "Куда",
24
+ "stop": "Остановка",
25
+ "weekday_times": "Будни",
26
+ "saturday_times": "Суббота",
27
+ "sunday_times": "Воскресенье",
28
+ "notes": "Заметки",
29
+ "tags": "Теги"
30
+ }
31
+ }
32
+ }
33
+ }
@@ -0,0 +1,33 @@
1
+ {
2
+ "transit": {
3
+ "plugin": {
4
+ "label": "Транспорт",
5
+ "description": "Маршрути громадського транспорту та розклади."
6
+ },
7
+ "library": {
8
+ "label": "Транспорт"
9
+ },
10
+ "settings": {
11
+ "label": "Синхронізація транспорту",
12
+ "caldav_calendar": "URL календаря",
13
+ "caldav_url": "URL CalDAV-сервера",
14
+ "caldav_username": "Ім'я користувача",
15
+ "caldav_password": "Пароль"
16
+ },
17
+ "bus_route": {
18
+ "label": "Маршрут",
19
+ "fields": {
20
+ "description": "Опис",
21
+ "route_number": "Маршрут №",
22
+ "from": "Звідки",
23
+ "to": "Куди",
24
+ "stop": "Зупинка",
25
+ "weekday_times": "Будні",
26
+ "saturday_times": "Субота",
27
+ "sunday_times": "Неділя",
28
+ "notes": "Нотатки",
29
+ "tags": "Теги"
30
+ }
31
+ }
32
+ }
33
+ }
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@coffer-org/plugin-transit",
3
- "version": "3.1.0",
3
+ "version": "4.0.0",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=24"
7
7
  },
8
8
  "files": [
9
- "dist"
9
+ "dist",
10
+ "locales"
10
11
  ],
11
12
  "exports": {
12
13
  ".": {
@@ -25,11 +26,12 @@
25
26
  "test": "node --import tsx/esm --test 'src/runtime/*.test.ts'"
26
27
  },
27
28
  "dependencies": {
28
- "@coffer-org/sdk": "^3.0.0",
29
- "@coffer-org/server": "^3.0.0",
30
- "@coffer-org/dav": "^3.0.0"
29
+ "@coffer-org/sdk": "^4.0.0",
30
+ "@coffer-org/server": "^4.0.0",
31
+ "@coffer-org/helper-dav": "^4.0.0"
31
32
  },
32
33
  "coffer": {
34
+ "runtime": "node",
33
35
  "schema": "dist/schema.js"
34
36
  }
35
37
  }