-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include i18n and i10n tags and filters
- Loading branch information
Showing
23 changed files
with
3,354 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,33 @@ | ||
from ._json import JSON # noqa: D104 | ||
from .array import index | ||
from .array import sort_numeric | ||
from .babel import Currency | ||
from .babel import DateTime | ||
from .babel import Number | ||
from .babel import Unit | ||
from .html import script_tag | ||
from .html import stylesheet_tag | ||
from .translate import BaseTranslateFilter | ||
from .translate import GetText | ||
from .translate import NGetText | ||
from .translate import NPGetText | ||
from .translate import PGetText | ||
from .translate import Translate | ||
|
||
__all__ = ( | ||
"index", | ||
"JSON", | ||
"script_tag", | ||
"sort_numeric", | ||
"stylesheet_tag", | ||
"Currency", | ||
"DateTime", | ||
"Number", | ||
"Unit", | ||
"BaseTranslateFilter", | ||
"GetText", | ||
"NGetText", | ||
"NPGetText", | ||
"PGetText", | ||
"Translate", | ||
) |
Oops, something went wrong.