Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/flutter-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ on:
branches: [main]

jobs:
writerside-conformance:
runs-on: ubuntu-24.04

steps:
- name: Check out repository
uses: actions/checkout@v7

- name: Validate the pinned Writerside compatibility fixture
run: tools/validate_writerside_conformance.sh

verify:
runs-on: ubuntu-24.04

Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,19 +241,26 @@ flutter test
BusyMark has ARB localization files for:

- Arabic (ar)
- Dutch (nl)
- English (en)
- Estonian (et)
- French (fr)
- German (de)
- Hindi (hi)
- Indonesian (id)
- Italian (it)
- Japanese (ja)
- Korean (ko)
- Norwegian Bokmål (nb)
- Persian (fa)
- Polish (pl)
- Portuguese (pt)
- Russian (ru)
- Simplified Chinese (zh-CN)
- Spanish (es)
- Turkish (tr)
- Ukrainian (uk)
- Vietnamese (vi)

English in `lib/l10n/app_en.arb` is the source of truth for app strings.

Expand Down
15 changes: 13 additions & 2 deletions assets/export/markdown.typ
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@
}

#let render-list(block-data, render) = {
let list-type = value-or(block-data, "listType", "bullet")
let items = value-or(block-data, "children", ()).map(item => {
let task = value-or(item, "task", none)
if task != none {
Expand All @@ -207,8 +208,18 @@
for nested-block in nested { render(nested-block) }
}
})
if value-or(block-data, "ordered", false) {
enum(start: value-or(block-data, "start", 1), ..items)
if list-type == "none" {
for item in items { block(item) }
} else if value-or(block-data, "ordered", false) {
if list-type == "alpha-lower" {
enum(
start: value-or(block-data, "start", 1),
numbering: "a.",
..items,
)
} else {
enum(start: value-or(block-data, "start", 1), ..items)
}
} else {
list(..items)
}
Expand Down
899 changes: 635 additions & 264 deletions lib/l10n/app_ar.arb

Large diffs are not rendered by default.

696 changes: 523 additions & 173 deletions lib/l10n/app_de.arb

Large diffs are not rendered by default.

260 changes: 179 additions & 81 deletions lib/l10n/app_en.arb

Large diffs are not rendered by default.

698 changes: 524 additions & 174 deletions lib/l10n/app_es.arb

Large diffs are not rendered by default.

Loading
Loading