Skip to content

Commit 990a8bd

Browse files
committed
Package name fluent.bundle -> fluent.runtime
1 parent 756a713 commit 990a8bd

28 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ python:
99
- "nightly"
1010
env:
1111
- PACKAGE=fluent.syntax
12-
- PACKAGE=fluent.bundle
12+
- PACKAGE=fluent.runtime
1313
install: pip install tox-travis
1414
script: cd $PACKAGE; tox
1515
notifications:

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ you're a tool author you may be interested in the formal [EBNF grammar][].
3333
Installation
3434
------------
3535

36-
python-fluent consists of two namepsace packages:
36+
python-fluent consists of two packages:
3737

3838
* `fluent.syntax` - includes AST classes and parser. Most end users will not
3939
need this directly. Documentation coming soon!
@@ -43,12 +43,12 @@ python-fluent consists of two namepsace packages:
4343
pip install fluent.syntax
4444

4545

46-
* `fluent.bundle` - methods for generating translations from FTL files.
46+
* `fluent.runtime` - methods for generating translations from FTL files.
4747
Documentation below.
4848

4949
To install:
5050

51-
pip install fluent.bundle
51+
pip install fluent.runtime
5252

5353
(The correct version of ``fluent.syntax`` will be installed automatically)
5454

@@ -59,8 +59,8 @@ PyPI also contains an old `fluent` package which is an older version of just
5959
Usage
6060
-----
6161

62-
To generate translations using ``fluent.bundle``, you start with the
63-
`FluentBundle` class:
62+
To generate translations using the ``fluent.runtime`` package, you start with
63+
the `FluentBundle` class:
6464

6565
>>> from fluent.bundle import FluentBundle
6666

0 commit comments

Comments
 (0)