Skip to content

Commit 14361e2

Browse files
committed
docs: Ditch extended ecosystem boilerplate in specific crates
1 parent b68962b commit 14361e2

File tree

7 files changed

+4
-130
lines changed

7 files changed

+4
-130
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
The `fluent-rs` workspace is a collection of Rust crates implementing [Project Fluent][],
44
a localization system designed to unleash the entire expressive power of natural language translations.
55

6+
Project Fluent keeps simple things simple and makes complex things possible.
7+
The syntax used for describing translations is easy to read and understand.
8+
At the same time it allows, when necessary, to represent complex concepts from natural languages like gender, plurals, conjugations, and others.
9+
610
## Packages
711

812
This workspace contains the following crates:

fluent-bundle/README.md

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,7 @@ This crate exposes a low level implementation of a collection of localization me
1010
[![Build](https://github.com/projectfluent/fluent-rs/actions/workflows/test.yaml/badge.svg)](https://github.com/projectfluent/fluent-rs/actions/workflows/test.yaml)
1111
[![Coverage Status](https://coveralls.io/repos/github/projectfluent/fluent-rs/badge.svg?branch=main)](https://coveralls.io/github/projectfluent/fluent-rs?branch=main)
1212

13-
Project Fluent keeps simple things simple and makes complex things possible.
14-
The syntax used for describing translations is easy to read and understand. At
15-
the same time it allows, when necessary, to represent complex concepts from
16-
natural languages like gender, plurals, conjugations, and others.
17-
18-
[Documentation][]
19-
2013
[Project Fluent]: https://projectfluent.org
21-
[Documentation]: https://docs.rs/fluent/
2214

2315
Usage
2416
-----
@@ -49,26 +41,6 @@ fn main() {
4941
}
5042
```
5143

52-
53-
Learn the FTL syntax
54-
--------------------
55-
56-
FTL is a localization file format used for describing translation resources.
57-
FTL stands for _Fluent Translation List_.
58-
59-
FTL is designed to be simple to read, but at the same time allows to represent
60-
complex concepts from natural languages like gender, plurals, conjugations, and
61-
others.
62-
63-
hello-user = Hello, { $username }!
64-
65-
[Read the Fluent Syntax Guide][] in order to learn more about the syntax. If
66-
you're a tool author you may be interested in the formal [EBNF grammar][].
67-
68-
[Read the Fluent Syntax Guide]: http://projectfluent.org/fluent/guide/
69-
[EBNF grammar]: https://github.com/projectfluent/fluent/tree/master/spec
70-
71-
7244
Get Involved
7345
------------
7446

fluent-fallback/README.md

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,7 @@ This crate exposes a high-level implementation of a collection of locale bundles
1010
[![Build](https://github.com/projectfluent/fluent-rs/actions/workflows/test.yaml/badge.svg)](https://github.com/projectfluent/fluent-rs/actions/workflows/test.yaml)
1111
[![Coverage Status](https://coveralls.io/repos/github/projectfluent/fluent-rs/badge.svg?branch=main)](https://coveralls.io/github/projectfluent/fluent-rs?branch=main)
1212

13-
Project Fluent keeps simple things simple and makes complex things possible.
14-
The syntax used for describing translations is easy to read and understand. At
15-
the same time it allows, when necessary, to represent complex concepts from
16-
natural languages like gender, plurals, conjugations, and others.
17-
18-
[Documentation][]
19-
2013
[Project Fluent]: https://projectfluent.org
21-
[Documentation]: https://docs.rs/fluent/
2214

2315
Usage
2416
-----
@@ -43,26 +35,6 @@ fn main() {
4335
}
4436
```
4537

46-
47-
Learn the FTL syntax
48-
--------------------
49-
50-
FTL is a localization file format used for describing translation resources.
51-
FTL stands for _Fluent Translation List_.
52-
53-
FTL is designed to be simple to read, but at the same time allows to represent
54-
complex concepts from natural languages like gender, plurals, conjugations, and
55-
others.
56-
57-
hello-user = Hello, { $username }!
58-
59-
[Read the Fluent Syntax Guide][] in order to learn more about the syntax. If
60-
you're a tool author you may be interested in the formal [EBNF grammar][].
61-
62-
[Read the Fluent Syntax Guide]: http://projectfluent.org/fluent/guide/
63-
[EBNF grammar]: https://github.com/projectfluent/fluent/tree/master/spec
64-
65-
6638
Get Involved
6739
------------
6840

fluent-resmgr/README.md

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,7 @@ This crate provides a standalone solution for managing localization resource fil
1010
[![Build](https://github.com/projectfluent/fluent-rs/actions/workflows/test.yaml/badge.svg)](https://github.com/projectfluent/fluent-rs/actions/workflows/test.yaml)
1111
[![Coverage Status](https://coveralls.io/repos/github/projectfluent/fluent-rs/badge.svg?branch=main)](https://coveralls.io/github/projectfluent/fluent-rs?branch=main)
1212

13-
Project Fluent keeps simple things simple and makes complex things possible.
14-
The syntax used for describing translations is easy to read and understand. At
15-
the same time it allows, when necessary, to represent complex concepts from
16-
natural languages like gender, plurals, conjugations, and others.
17-
18-
[Documentation][]
19-
2013
[Project Fluent]: https://projectfluent.org
21-
[Documentation]: https://docs.rs/fluent/
2214

2315
Usage
2416
-----
@@ -37,26 +29,6 @@ fn main() {
3729
}
3830
```
3931

40-
41-
Learn the FTL syntax
42-
--------------------
43-
44-
FTL is a localization file format used for describing translation resources.
45-
FTL stands for _Fluent Translation List_.
46-
47-
FTL is designed to be simple to read, but at the same time allows to represent
48-
complex concepts from natural languages like gender, plurals, conjugations, and
49-
others.
50-
51-
hello-user = Hello, { $username }!
52-
53-
[Read the Fluent Syntax Guide][] in order to learn more about the syntax. If
54-
you're a tool author you may be interested in the formal [EBNF grammar][].
55-
56-
[Read the Fluent Syntax Guide]: http://projectfluent.org/fluent/guide/
57-
[EBNF grammar]: https://github.com/projectfluent/fluent/tree/master/spec
58-
59-
6032
Get Involved
6133
------------
6234

fluent-syntax/README.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,6 @@ This crate exposes the low level parser, AST, and serializer APIs for the Fluent
1212

1313
[Project Fluent]: https://projectfluent.org
1414

15-
Learn the FTL syntax
16-
--------------------
17-
18-
FTL is a localization file format used for describing translation resources.
19-
FTL stands for _Fluent Translation List_.
20-
21-
FTL is designed to be simple to read, but at the same time allows to represent
22-
complex concepts from natural languages like gender, plurals, conjugations, and
23-
others.
24-
25-
hello-user = Hello, { $username }!
26-
27-
[Read the Fluent Syntax Guide][] in order to learn more about the syntax. If
28-
you're a tool author you may be interested in the formal [EBNF grammar][].
29-
30-
[Read the Fluent Syntax Guide]: http://projectfluent.org/fluent/guide/
31-
[EBNF grammar]: https://github.com/projectfluent/fluent/tree/master/spec
32-
33-
3415
Get Involved
3516
------------
3617

fluent-testing/README.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,6 @@ natural languages like gender, plurals, conjugations, and others.
1717

1818
[Project Fluent]: https://projectfluent.org
1919

20-
Learn the FTL syntax
21-
--------------------
22-
23-
FTL is a localization file format used for describing translation resources.
24-
FTL stands for _Fluent Translation List_.
25-
26-
FTL is designed to be simple to read, but at the same time allows to represent
27-
complex concepts from natural languages like gender, plurals, conjugations, and
28-
others.
29-
30-
hello-user = Hello, { $username }!
31-
32-
[Read the Fluent Syntax Guide][] in order to learn more about the syntax. If
33-
you're a tool author you may be interested in the formal [EBNF grammar][].
34-
35-
[Read the Fluent Syntax Guide]: https://projectfluent.org/fluent/guide/
36-
[EBNF grammar]: https://github.com/projectfluent/fluent/tree/master/spec
37-
38-
3920
Get Involved
4021
------------
4122

fluent/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,7 @@ This crate is an umbrella that exposes the combined features of other `fluent-rs
1010
[![Build](https://github.com/projectfluent/fluent-rs/actions/workflows/test.yaml/badge.svg)](https://github.com/projectfluent/fluent-rs/actions/workflows/test.yaml)
1111
[![Coverage Status](https://coveralls.io/repos/github/projectfluent/fluent-rs/badge.svg?branch=main)](https://coveralls.io/github/projectfluent/fluent-rs?branch=main)
1212

13-
Project Fluent keeps simple things simple and makes complex things possible.
14-
The syntax used for describing translations is easy to read and understand. At
15-
the same time it allows, when necessary, to represent complex concepts from
16-
natural languages like gender, plurals, conjugations, and others.
17-
18-
[Documentation][]
19-
2013
[Project Fluent]: https://projectfluent.org
21-
[Documentation]: https://docs.rs/fluent/
2214

2315
Usage
2416
-----

0 commit comments

Comments
 (0)