@molecule/app-locales-class-schedule 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +63 -0
  2. package/package.json +9 -3
package/README.md ADDED
@@ -0,0 +1,63 @@
1
+ <!--
2
+ AUTO-GENERATED — DO NOT EDIT THIS FILE.
3
+ Generated by `mlcl sync-docs` from the package's src/index.ts JSDoc + mlcl/registry.json.
4
+ Edits here are overwritten on the next commit (molecule's pre-commit hook regenerates).
5
+ To change this document, edit the module-level JSDoc in src/index.ts.
6
+ Generated: 2026-08-04T00:39:48.330Z
7
+ -->
8
+
9
+ # @molecule/app-locales-class-schedule
10
+
11
+ > **Auto-generated, AI-first package reference** for the [molecule.dev](https://molecule.dev) ecosystem.
12
+ > It is written to be read by coding agents as much as by people, and is generated from this
13
+ > package's source — edit `src/index.ts` JSDoc, not this file.
14
+
15
+ Translations for @molecule/app-class-schedule-react in 79 languages
16
+
17
+ ## Purpose
18
+
19
+ Provides translations for the `@molecule/app-class-schedule-react` package which has 3 translation keys.
20
+
21
+ ## Languages
22
+
23
+ 79 languages supported: af, am, ar, az, be, bg, bn, bs, ca, cs, cy, da, de, el, en, es, et, eu, fa, fi, fil, fr, ga, gl, gu, ha, he, hi, hr, hu, hy, id, ig, is, it, ja, ka, kk, km, kn, ko, ky, lo, lt, lv, mk, ml, mn, mr, ms, mt, my, nb, ne, nl, pa, pl, pt, ro, ru, si, sk, sl, sq, sr, sv, sw, ta, te, th, tr, uk, ur, uz, vi, yo, zh, zh-TW, zu.
24
+
25
+ ## Quick Start
26
+
27
+ ```typescript
28
+ import { af, am, ar } from '@molecule/app-locales-class-schedule'
29
+ import type {
30
+ ClassScheduleTranslationKey,
31
+ ClassScheduleTranslations,
32
+ } from '@molecule/app-locales-class-schedule'
33
+ ```
34
+
35
+ ## Registration
36
+
37
+ In an mlcl-scaffolded app, installed locale bonds are registered automatically by the app's i18n setup at startup — installing this package is normally all you need. To register manually (or in a custom app), pass the whole module to `registerLocaleModule` from `@molecule/app-i18n` at startup:
38
+
39
+ ```typescript
40
+ import { registerLocaleModule } from '@molecule/app-i18n'
41
+ import * as locales from '@molecule/app-locales-class-schedule'
42
+
43
+ registerLocaleModule(locales)
44
+ ```
45
+
46
+ ## Editing translations
47
+
48
+ `en.ts` is the canonical key set — every other language file mirrors its keys. To change or add strings, edit the locale files in this package (add new keys to `en.ts` first) or merge overrides at runtime with `addTranslations(locale, map)`. Never hand-write translations inline in feature code: features call `t(key, values, { defaultValue })` and THIS bond supplies the translations — inline strings bypass every other language.
49
+
50
+ ## Translation Keys
51
+
52
+ | Key | English |
53
+ | --------------------------- | -------------------------------- |
54
+ | `classSchedule.aria.region` | Weekly class schedule |
55
+ | `classSchedule.aria.event` | {{weekday}} {{start}} – {{end}} |
56
+ | `classSchedule.aria.slot` | Empty slot, {{weekday}} {{time}} |
57
+
58
+ ## Metadata
59
+
60
+ - **Type:** locales
61
+ - **Category:** i18n
62
+ - **Stack:** app
63
+ - **Translates:** `@molecule/app-class-schedule-react`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@molecule/app-locales-class-schedule",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Translations for @molecule/app-class-schedule-react in 79 languages",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -12,15 +12,21 @@
12
12
  }
13
13
  },
14
14
  "files": [
15
- "dist"
15
+ "dist",
16
+ "README.md"
16
17
  ],
17
18
  "scripts": {
18
19
  "build": "tsc",
19
20
  "test": "vitest run"
20
21
  },
21
22
  "license": "Apache-2.0",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/molecule-dev/molecule.git",
26
+ "directory": "packages/app/locales/class-schedule"
27
+ },
22
28
  "peerDependencies": {
23
- "@molecule/app-i18n": "^1.0.0"
29
+ "@molecule/app-i18n": "^1.0.1"
24
30
  },
25
31
  "devDependencies": {
26
32
  "typescript": "6.0.3",