File: PKG-INFO

package info (click to toggle)
mozjs78 78.15.0-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 739,892 kB
  • sloc: javascript: 1,344,214; cpp: 1,215,708; python: 526,544; ansic: 433,835; xml: 118,736; sh: 26,176; asm: 16,664; makefile: 11,537; yacc: 4,486; perl: 2,564; ada: 1,681; lex: 1,414; pascal: 1,139; cs: 879; exp: 499; java: 164; ruby: 68; sql: 45; csh: 35; sed: 18; lisp: 2
file content (62 lines) | stat: -rw-r--r-- 2,787 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Metadata-Version: 2.1
Name: fluent.migrate
Version: 0.9
Summary: Toolchain to migrate legacy translation to Fluent.
Home-page: https://hg.mozilla.org/l10n/fluent-migration/
Author: Mozilla
Author-email: l10n-drivers@mozilla.org
License: APL 2
Description: Fluent Migration Tools
        ======================
        
        Programmatically create Fluent files from existing content in both legacy
        and Fluent formats. Use recipes written in Python to migrate content for each
        of your localizations.
        
        `migrate-l10n` is a CLI script which uses the `fluent.migrate` module under
        the hood to run migrations on existing translations.
        
        `validate-l10n-recipe` is a CLI script to test a migration recipe for common
        errors, without trying to apply it.
        
        Installation
        ------------
        
        Install from PyPI:
        
            pip install fluent.migrate[hg]
        
        If you only want to use the `MigrationContext` API, you can drop the
        requirement on `python-hglib`:
        
            pip install fluent.migrate
        
        Usage
        -----
        
        Migrations consist of _recipes_, which are applied to a _localization repository_, based on _template files_.
        You can find recipes for Firefox in `mozilla-central/python/l10n/fluent_migrations/`,
        the reference repository is [gecko-strings](https://hg.mozilla.org/l10n/gecko-strings/) or _quarantine_.
        You apply those migrations to l10n repositories in [l10n-central](https://hg.mozilla.org/l10n-central/), or to `gecko-strings` for testing.
        
        The migrations are run as python modules, so you need to have their file location in `PYTHONPATH`.
        
        An example would look like
        
            $ migrate-l10n --lang it --reference-dir gecko-strings --localization-dir l10n-central/it bug_1451992_preferences_sitedata bug_1451992_preferences_translation
        
        Contact
        -------
        
         - mailing list: https://lists.mozilla.org/listinfo/tools-l10n
         - bugzilla: [Open Bugs](https://bugzilla.mozilla.org/buglist.cgi?component=Fluent%20Migration&product=Localization%20Infrastructure%20and%20Tools&bug_status=__open__) - [New Bug](https://bugzilla.mozilla.org/enter_bug.cgi?product=Localization%20Infrastructure%20and%20Tools&component=Fluent%20Migration)
        
Keywords: fluent,localization,l10n
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Provides-Extra: hg