├── .cargo └── config.toml ├── .gitattributes ├── .github └── workflows │ ├── clippy.yaml │ ├── format.yml │ └── test.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile.internal.toml ├── Makefile.toml ├── README.md ├── deny.toml ├── docs ├── local-testing-firefox.md └── release-process.md ├── fluent-bundle ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches │ ├── menubar.ftl │ ├── preferences.ftl │ ├── resolver.rs │ ├── resolver_iai.rs │ ├── simple.ftl │ └── unescape.ftl ├── examples │ ├── README.md │ ├── custom_formatter.rs │ ├── custom_type.rs │ ├── external_arguments.rs │ ├── functions.rs │ ├── hello.rs │ ├── message_reference.rs │ ├── resources │ │ ├── en-US │ │ │ └── simple.ftl │ │ ├── fr │ │ │ └── simple.ftl │ │ └── pl │ │ │ └── simple.ftl │ ├── selector.rs │ └── simple-app.rs ├── src │ ├── args.rs │ ├── builtins.rs │ ├── bundle.rs │ ├── concurrent.rs │ ├── entry.rs │ ├── errors.rs │ ├── lib.rs │ ├── memoizer.rs │ ├── message.rs │ ├── resolver │ │ ├── errors.rs │ │ ├── expression.rs │ │ ├── inline_expression.rs │ │ ├── mod.rs │ │ ├── pattern.rs │ │ └── scope.rs │ ├── resource.rs │ └── types │ │ ├── mod.rs │ │ ├── number.rs │ │ └── plural.rs └── tests │ ├── builtins.rs │ ├── bundle.rs │ ├── custom_types.rs │ ├── fixtures │ ├── arguments.yaml │ ├── attributes.yaml │ ├── bomb.yaml │ ├── context.yaml │ ├── defaults.yaml │ ├── errors.yaml │ ├── functions.yaml │ ├── functions_runtime.yaml │ ├── isolating.yaml │ ├── literals.yaml │ ├── macros.yaml │ ├── patterns.yaml │ ├── primitives.yaml │ ├── select_expression.yaml │ ├── transform.yaml │ ├── values_format.yaml │ └── values_ref.yaml │ ├── function.rs │ ├── helpers │ └── mod.rs │ ├── optional_value.rs │ ├── resolver_fixtures.rs │ └── types_test.rs ├── fluent-cli ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT └── src │ ├── lib.rs │ ├── main.rs │ └── resolver.rs ├── fluent-fallback ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples │ ├── resources │ │ ├── en-US │ │ │ └── simple.ftl │ │ └── pl │ │ │ └── simple.ftl │ └── simple-fallback.rs ├── src │ ├── bundles.rs │ ├── cache.rs │ ├── env.rs │ ├── errors.rs │ ├── generator.rs │ ├── lib.rs │ ├── localization.rs │ └── types.rs └── tests │ ├── localization_test.rs │ └── resources │ ├── en-US │ ├── test.ftl │ └── test2.ftl │ └── pl │ ├── test.ftl │ └── test2.ftl ├── fluent-pseudo ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src │ └── lib.rs ├── fluent-resmgr ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples │ ├── resources │ │ ├── en-US │ │ │ ├── common.ftl │ │ │ ├── errors.ftl │ │ │ └── simple.ftl │ │ └── pl │ │ │ ├── common.ftl │ │ │ ├── errors.ftl │ │ │ └── simple.ftl │ └── simple-resmgr.rs ├── src │ ├── lib.rs │ └── resource_manager.rs └── tests │ ├── localization_test.rs │ └── resources │ ├── en-US │ ├── invalid.ftl │ └── test.ftl │ └── pl │ └── test.ftl ├── fluent-syntax ├── .gitattributes ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches │ ├── contexts │ │ ├── README.md │ │ ├── browser │ │ │ ├── appmenu.ftl │ │ │ ├── brand.ftl │ │ │ ├── brandings.ftl │ │ │ ├── browser.ftl │ │ │ ├── browserContext.ftl │ │ │ ├── browserSets.ftl │ │ │ ├── interventions.ftl │ │ │ ├── menubar.ftl │ │ │ ├── protectionsPanel.ftl │ │ │ ├── sync-brand.ftl │ │ │ └── textActions.ftl │ │ └── preferences │ │ │ ├── aboutDialog.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── brand.ftl │ │ │ ├── brandings.ftl │ │ │ ├── certManager.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── deviceManager.ftl │ │ │ ├── fonts.ftl │ │ │ ├── history.ftl │ │ │ ├── languages.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── sanitize.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── sync-brand.ftl │ ├── menubar.ftl │ ├── parser.rs │ ├── parser_iai.rs │ ├── preferences.ftl │ └── simple.ftl ├── src │ ├── ast │ │ ├── helper.rs │ │ └── mod.rs │ ├── bin │ │ ├── parser.rs │ │ └── update_fixtures.rs │ ├── lib.rs │ ├── parser │ │ ├── comment.rs │ │ ├── core.rs │ │ ├── errors.rs │ │ ├── expression.rs │ │ ├── helper.rs │ │ ├── macros.rs │ │ ├── mod.rs │ │ ├── pattern.rs │ │ ├── runtime.rs │ │ └── slice.rs │ ├── serializer.rs │ └── unicode.rs └── tests │ ├── fixtures │ ├── any_char.ftl │ ├── any_char.json │ ├── astral.ftl │ ├── astral.json │ ├── benches │ │ ├── contexts │ │ │ ├── browser │ │ │ │ ├── appmenu.json │ │ │ │ ├── brand.json │ │ │ │ ├── brandings.json │ │ │ │ ├── browser.json │ │ │ │ ├── browserContext.json │ │ │ │ ├── browserSets.json │ │ │ │ ├── interventions.json │ │ │ │ ├── menubar.json │ │ │ │ ├── protectionsPanel.json │ │ │ │ ├── sync-brand.json │ │ │ │ └── textActions.json │ │ │ └── preferences │ │ │ │ ├── aboutDialog.json │ │ │ │ ├── blocklists.json │ │ │ │ ├── brand.json │ │ │ │ ├── brandings.json │ │ │ │ ├── certManager.json │ │ │ │ ├── clearSiteData.json │ │ │ │ ├── colors.json │ │ │ │ ├── connection.json │ │ │ │ ├── deviceManager.json │ │ │ │ ├── fonts.json │ │ │ │ ├── history.json │ │ │ │ ├── languages.json │ │ │ │ ├── permissions.json │ │ │ │ ├── preferences.json │ │ │ │ ├── sanitize.json │ │ │ │ ├── selectBookmark.json │ │ │ │ ├── siteDataSettings.json │ │ │ │ └── sync-brand.json │ │ ├── menubar.json │ │ ├── preferences.json │ │ └── simple.json │ ├── call_expressions.ftl │ ├── call_expressions.json │ ├── callee_expressions.ftl │ ├── callee_expressions.json │ ├── comments.ftl │ ├── comments.json │ ├── cr.ftl │ ├── cr.json │ ├── crlf.ftl │ ├── crlf.json │ ├── eof_comment.ftl │ ├── eof_comment.json │ ├── eof_empty.ftl │ ├── eof_empty.json │ ├── eof_id.ftl │ ├── eof_id.json │ ├── eof_id_equals.ftl │ ├── eof_id_equals.json │ ├── eof_junk.ftl │ ├── eof_junk.json │ ├── eof_value.ftl │ ├── eof_value.json │ ├── escaped_characters.ftl │ ├── escaped_characters.json │ ├── junk.ftl │ ├── junk.json │ ├── leading_dots.ftl │ ├── leading_dots.json │ ├── literal_expressions.ftl │ ├── literal_expressions.json │ ├── member_expressions.ftl │ ├── member_expressions.json │ ├── messages.ftl │ ├── messages.json │ ├── mixed_entries.ftl │ ├── mixed_entries.json │ ├── multiline_values.ftl │ ├── multiline_values.json │ ├── normalized │ │ ├── attributes.ftl │ │ ├── call_expressions.ftl │ │ ├── comments.ftl │ │ ├── escapes.ftl │ │ ├── inline_expressions.ftl │ │ ├── messages.ftl │ │ └── select_expression.ftl │ ├── numbers.ftl │ ├── numbers.json │ ├── obsolete.ftl │ ├── obsolete.json │ ├── placeables.ftl │ ├── placeables.json │ ├── reference_expressions.ftl │ ├── reference_expressions.json │ ├── select_expressions.ftl │ ├── select_expressions.json │ ├── select_indent.ftl │ ├── select_indent.json │ ├── sparse_entries.ftl │ ├── sparse_entries.json │ ├── special_chars.ftl │ ├── special_chars.json │ ├── tab.ftl │ ├── tab.json │ ├── term_parameters.ftl │ ├── term_parameters.json │ ├── terms.ftl │ ├── terms.json │ ├── variables.ftl │ ├── variables.json │ ├── variant_keys.ftl │ ├── variant_keys.json │ ├── whitespace_in_value.ftl │ ├── whitespace_in_value.json │ ├── zero_length.ftl │ └── zero_length.json │ ├── helper │ └── mod.rs │ ├── parser_fixtures.rs │ ├── serializer_fixtures.rs │ └── unicode.rs ├── fluent-testing ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples │ └── js.rs ├── resources │ ├── README.md │ ├── browser │ │ ├── en-US │ │ │ ├── branding │ │ │ │ └── brand.ftl │ │ │ ├── browser │ │ │ │ ├── aboutDialog.ftl │ │ │ │ ├── allTabsMenu.ftl │ │ │ │ ├── appmenu.ftl │ │ │ │ ├── branding │ │ │ │ │ ├── brandings.ftl │ │ │ │ │ └── sync-brand.ftl │ │ │ │ ├── browser.ftl │ │ │ │ ├── browserContext.ftl │ │ │ │ ├── browserSets.ftl │ │ │ │ ├── downloads.ftl │ │ │ │ ├── menubar.ftl │ │ │ │ ├── places.ftl │ │ │ │ ├── preferences │ │ │ │ │ ├── addEngine.ftl │ │ │ │ │ ├── blocklists.ftl │ │ │ │ │ ├── clearSiteData.ftl │ │ │ │ │ ├── colors.ftl │ │ │ │ │ ├── connection.ftl │ │ │ │ │ ├── fonts.ftl │ │ │ │ │ ├── languages.ftl │ │ │ │ │ ├── permissions.ftl │ │ │ │ │ ├── preferences.ftl │ │ │ │ │ ├── selectBookmark.ftl │ │ │ │ │ └── siteDataSettings.ftl │ │ │ │ ├── protectionsPanel.ftl │ │ │ │ ├── sanitize.ftl │ │ │ │ └── sidebarMenu.ftl │ │ │ └── preview │ │ │ │ └── interventions.ftl │ │ └── pl │ │ │ ├── branding │ │ │ └── brand.ftl │ │ │ └── browser │ │ │ ├── aboutDialog.ftl │ │ │ ├── allTabsMenu.ftl │ │ │ ├── appmenu.ftl │ │ │ ├── branding │ │ │ ├── brandings.ftl │ │ │ └── sync-brand.ftl │ │ │ ├── browser.ftl │ │ │ ├── browserContext.ftl │ │ │ ├── browserSets.ftl │ │ │ ├── downloads.ftl │ │ │ ├── menubar.ftl │ │ │ ├── places.ftl │ │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── fonts.ftl │ │ │ ├── languages.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ └── siteDataSettings.ftl │ │ │ ├── protectionsPanel.ftl │ │ │ ├── sanitize.ftl │ │ │ └── sidebarMenu.ftl │ ├── empty-resource │ │ ├── en-US │ │ │ └── empty │ │ │ │ ├── empty-all.ftl │ │ │ │ └── empty-one.ftl │ │ └── pl │ │ │ └── empty │ │ │ ├── empty-all.ftl │ │ │ └── empty-one.ftl │ ├── missing-resource │ │ └── pl │ │ │ └── missing │ │ │ └── missing-one.ftl │ └── toolkit │ │ ├── en-US │ │ ├── security │ │ │ └── certificates │ │ │ │ ├── certManager.ftl │ │ │ │ └── deviceManager.ftl │ │ └── toolkit │ │ │ ├── featuregates │ │ │ └── features.ftl │ │ │ ├── global │ │ │ └── textActions.ftl │ │ │ ├── printing │ │ │ └── printUI.ftl │ │ │ └── updates │ │ │ └── history.ftl │ │ └── pl │ │ ├── security │ │ └── certificates │ │ │ ├── certManager.ftl │ │ │ └── deviceManager.ftl │ │ └── toolkit │ │ ├── featuregates │ │ └── features.ftl │ │ ├── global │ │ └── textActions.ftl │ │ ├── printing │ │ └── printUI.ftl │ │ └── updates │ │ └── history.ftl └── src │ ├── fs.rs │ ├── lib.rs │ └── scenarios │ ├── browser.rs │ ├── empty_resource_all_locales.rs │ ├── empty_resource_one_locale.rs │ ├── missing_optional_all_locales.rs │ ├── missing_optional_one_locale.rs │ ├── missing_required_all_locales.rs │ ├── missing_required_one_locale.rs │ ├── mod.rs │ ├── preferences.rs │ ├── simple.rs │ └── structs.rs ├── fluent ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ └── lib.rs └── tests │ ├── macro.rs │ └── pseudo.rs └── intl-memoizer ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── numberformat.rs └── pluralrules.rs └── src ├── concurrent.rs └── lib.rs /.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [resolver] 2 | incompatible-rust-versions = "fallback" 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/clippy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/.github/workflows/clippy.yaml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile.internal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/Makefile.internal.toml -------------------------------------------------------------------------------- /Makefile.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/Makefile.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/README.md -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/deny.toml -------------------------------------------------------------------------------- /docs/local-testing-firefox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/docs/local-testing-firefox.md -------------------------------------------------------------------------------- /docs/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/docs/release-process.md -------------------------------------------------------------------------------- /fluent-bundle/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/CHANGELOG.md -------------------------------------------------------------------------------- /fluent-bundle/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/Cargo.toml -------------------------------------------------------------------------------- /fluent-bundle/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /fluent-bundle/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /fluent-bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/README.md -------------------------------------------------------------------------------- /fluent-bundle/benches/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/benches/menubar.ftl -------------------------------------------------------------------------------- /fluent-bundle/benches/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/benches/preferences.ftl -------------------------------------------------------------------------------- /fluent-bundle/benches/resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/benches/resolver.rs -------------------------------------------------------------------------------- /fluent-bundle/benches/resolver_iai.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/benches/resolver_iai.rs -------------------------------------------------------------------------------- /fluent-bundle/benches/simple.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/benches/simple.ftl -------------------------------------------------------------------------------- /fluent-bundle/benches/unescape.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/benches/unescape.ftl -------------------------------------------------------------------------------- /fluent-bundle/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/examples/README.md -------------------------------------------------------------------------------- /fluent-bundle/examples/custom_formatter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/examples/custom_formatter.rs -------------------------------------------------------------------------------- /fluent-bundle/examples/custom_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/examples/custom_type.rs -------------------------------------------------------------------------------- /fluent-bundle/examples/external_arguments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/examples/external_arguments.rs -------------------------------------------------------------------------------- /fluent-bundle/examples/functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/examples/functions.rs -------------------------------------------------------------------------------- /fluent-bundle/examples/hello.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/examples/hello.rs -------------------------------------------------------------------------------- /fluent-bundle/examples/message_reference.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/examples/message_reference.rs -------------------------------------------------------------------------------- /fluent-bundle/examples/resources/en-US/simple.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/examples/resources/en-US/simple.ftl -------------------------------------------------------------------------------- /fluent-bundle/examples/resources/fr/simple.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/examples/resources/fr/simple.ftl -------------------------------------------------------------------------------- /fluent-bundle/examples/resources/pl/simple.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/examples/resources/pl/simple.ftl -------------------------------------------------------------------------------- /fluent-bundle/examples/selector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/examples/selector.rs -------------------------------------------------------------------------------- /fluent-bundle/examples/simple-app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/examples/simple-app.rs -------------------------------------------------------------------------------- /fluent-bundle/src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/args.rs -------------------------------------------------------------------------------- /fluent-bundle/src/builtins.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/builtins.rs -------------------------------------------------------------------------------- /fluent-bundle/src/bundle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/bundle.rs -------------------------------------------------------------------------------- /fluent-bundle/src/concurrent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/concurrent.rs -------------------------------------------------------------------------------- /fluent-bundle/src/entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/entry.rs -------------------------------------------------------------------------------- /fluent-bundle/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/errors.rs -------------------------------------------------------------------------------- /fluent-bundle/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/lib.rs -------------------------------------------------------------------------------- /fluent-bundle/src/memoizer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/memoizer.rs -------------------------------------------------------------------------------- /fluent-bundle/src/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/message.rs -------------------------------------------------------------------------------- /fluent-bundle/src/resolver/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/resolver/errors.rs -------------------------------------------------------------------------------- /fluent-bundle/src/resolver/expression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/resolver/expression.rs -------------------------------------------------------------------------------- /fluent-bundle/src/resolver/inline_expression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/resolver/inline_expression.rs -------------------------------------------------------------------------------- /fluent-bundle/src/resolver/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/resolver/mod.rs -------------------------------------------------------------------------------- /fluent-bundle/src/resolver/pattern.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/resolver/pattern.rs -------------------------------------------------------------------------------- /fluent-bundle/src/resolver/scope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/resolver/scope.rs -------------------------------------------------------------------------------- /fluent-bundle/src/resource.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/resource.rs -------------------------------------------------------------------------------- /fluent-bundle/src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/types/mod.rs -------------------------------------------------------------------------------- /fluent-bundle/src/types/number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/types/number.rs -------------------------------------------------------------------------------- /fluent-bundle/src/types/plural.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/src/types/plural.rs -------------------------------------------------------------------------------- /fluent-bundle/tests/builtins.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/builtins.rs -------------------------------------------------------------------------------- /fluent-bundle/tests/bundle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/bundle.rs -------------------------------------------------------------------------------- /fluent-bundle/tests/custom_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/custom_types.rs -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/arguments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/arguments.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/attributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/attributes.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/bomb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/bomb.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/context.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/context.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/defaults.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/errors.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/functions.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/functions_runtime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/functions_runtime.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/isolating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/isolating.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/literals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/literals.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/macros.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/macros.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/patterns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/patterns.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/primitives.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/primitives.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/select_expression.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/select_expression.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/transform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/transform.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/values_format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/values_format.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/fixtures/values_ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/fixtures/values_ref.yaml -------------------------------------------------------------------------------- /fluent-bundle/tests/function.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/function.rs -------------------------------------------------------------------------------- /fluent-bundle/tests/helpers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/helpers/mod.rs -------------------------------------------------------------------------------- /fluent-bundle/tests/optional_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/optional_value.rs -------------------------------------------------------------------------------- /fluent-bundle/tests/resolver_fixtures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/resolver_fixtures.rs -------------------------------------------------------------------------------- /fluent-bundle/tests/types_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-bundle/tests/types_test.rs -------------------------------------------------------------------------------- /fluent-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-cli/Cargo.toml -------------------------------------------------------------------------------- /fluent-cli/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /fluent-cli/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /fluent-cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-cli/src/lib.rs -------------------------------------------------------------------------------- /fluent-cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-cli/src/main.rs -------------------------------------------------------------------------------- /fluent-cli/src/resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-cli/src/resolver.rs -------------------------------------------------------------------------------- /fluent-fallback/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/CHANGELOG.md -------------------------------------------------------------------------------- /fluent-fallback/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/Cargo.toml -------------------------------------------------------------------------------- /fluent-fallback/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /fluent-fallback/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /fluent-fallback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/README.md -------------------------------------------------------------------------------- /fluent-fallback/examples/resources/en-US/simple.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/examples/resources/en-US/simple.ftl -------------------------------------------------------------------------------- /fluent-fallback/examples/resources/pl/simple.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/examples/resources/pl/simple.ftl -------------------------------------------------------------------------------- /fluent-fallback/examples/simple-fallback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/examples/simple-fallback.rs -------------------------------------------------------------------------------- /fluent-fallback/src/bundles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/src/bundles.rs -------------------------------------------------------------------------------- /fluent-fallback/src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/src/cache.rs -------------------------------------------------------------------------------- /fluent-fallback/src/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/src/env.rs -------------------------------------------------------------------------------- /fluent-fallback/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/src/errors.rs -------------------------------------------------------------------------------- /fluent-fallback/src/generator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/src/generator.rs -------------------------------------------------------------------------------- /fluent-fallback/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/src/lib.rs -------------------------------------------------------------------------------- /fluent-fallback/src/localization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/src/localization.rs -------------------------------------------------------------------------------- /fluent-fallback/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/src/types.rs -------------------------------------------------------------------------------- /fluent-fallback/tests/localization_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/tests/localization_test.rs -------------------------------------------------------------------------------- /fluent-fallback/tests/resources/en-US/test.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/tests/resources/en-US/test.ftl -------------------------------------------------------------------------------- /fluent-fallback/tests/resources/en-US/test2.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/tests/resources/en-US/test2.ftl -------------------------------------------------------------------------------- /fluent-fallback/tests/resources/pl/test.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/tests/resources/pl/test.ftl -------------------------------------------------------------------------------- /fluent-fallback/tests/resources/pl/test2.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-fallback/tests/resources/pl/test2.ftl -------------------------------------------------------------------------------- /fluent-pseudo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-pseudo/CHANGELOG.md -------------------------------------------------------------------------------- /fluent-pseudo/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-pseudo/Cargo.toml -------------------------------------------------------------------------------- /fluent-pseudo/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /fluent-pseudo/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /fluent-pseudo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-pseudo/README.md -------------------------------------------------------------------------------- /fluent-pseudo/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-pseudo/src/lib.rs -------------------------------------------------------------------------------- /fluent-resmgr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/CHANGELOG.md -------------------------------------------------------------------------------- /fluent-resmgr/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/Cargo.toml -------------------------------------------------------------------------------- /fluent-resmgr/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /fluent-resmgr/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /fluent-resmgr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/README.md -------------------------------------------------------------------------------- /fluent-resmgr/examples/resources/en-US/common.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/examples/resources/en-US/common.ftl -------------------------------------------------------------------------------- /fluent-resmgr/examples/resources/en-US/errors.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/examples/resources/en-US/errors.ftl -------------------------------------------------------------------------------- /fluent-resmgr/examples/resources/en-US/simple.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/examples/resources/en-US/simple.ftl -------------------------------------------------------------------------------- /fluent-resmgr/examples/resources/pl/common.ftl: -------------------------------------------------------------------------------- 1 | hello-world = Witaj, Świecie! 2 | -------------------------------------------------------------------------------- /fluent-resmgr/examples/resources/pl/errors.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/examples/resources/pl/errors.ftl -------------------------------------------------------------------------------- /fluent-resmgr/examples/resources/pl/simple.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/examples/resources/pl/simple.ftl -------------------------------------------------------------------------------- /fluent-resmgr/examples/simple-resmgr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/examples/simple-resmgr.rs -------------------------------------------------------------------------------- /fluent-resmgr/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/src/lib.rs -------------------------------------------------------------------------------- /fluent-resmgr/src/resource_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/src/resource_manager.rs -------------------------------------------------------------------------------- /fluent-resmgr/tests/localization_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/tests/localization_test.rs -------------------------------------------------------------------------------- /fluent-resmgr/tests/resources/en-US/invalid.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/tests/resources/en-US/invalid.ftl -------------------------------------------------------------------------------- /fluent-resmgr/tests/resources/en-US/test.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-resmgr/tests/resources/en-US/test.ftl -------------------------------------------------------------------------------- /fluent-resmgr/tests/resources/pl/test.ftl: -------------------------------------------------------------------------------- 1 | hello-world = Witaj Świecie 2 | new-message = Nowa Wiadomość 3 | -------------------------------------------------------------------------------- /fluent-syntax/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/.gitattributes -------------------------------------------------------------------------------- /fluent-syntax/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/CHANGELOG.md -------------------------------------------------------------------------------- /fluent-syntax/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/Cargo.toml -------------------------------------------------------------------------------- /fluent-syntax/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /fluent-syntax/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /fluent-syntax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/README.md -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/README.md -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/browser/appmenu.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/browser/brand.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/browser/brand.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/browser/brandings.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/browser/brandings.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/browser/browser.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/browser/browserContext.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/browser/browserContext.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/browser/browserSets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/browser/browserSets.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/browser/interventions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/browser/interventions.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/browser/menubar.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/browser/protectionsPanel.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/browser/protectionsPanel.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/browser/sync-brand.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/browser/sync-brand.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/browser/textActions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/browser/textActions.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/aboutDialog.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/aboutDialog.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/blocklists.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/blocklists.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/brand.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/brand.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/brandings.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/brandings.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/certManager.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/certManager.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/clearSiteData.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/clearSiteData.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/colors.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/colors.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/connection.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/connection.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/deviceManager.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/deviceManager.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/fonts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/fonts.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/history.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/history.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/languages.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/languages.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/permissions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/permissions.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/preferences.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/sanitize.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/selectBookmark.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/selectBookmark.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/siteDataSettings.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/siteDataSettings.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/contexts/preferences/sync-brand.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/contexts/preferences/sync-brand.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/menubar.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/parser.rs -------------------------------------------------------------------------------- /fluent-syntax/benches/parser_iai.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/parser_iai.rs -------------------------------------------------------------------------------- /fluent-syntax/benches/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/preferences.ftl -------------------------------------------------------------------------------- /fluent-syntax/benches/simple.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/benches/simple.ftl -------------------------------------------------------------------------------- /fluent-syntax/src/ast/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/ast/helper.rs -------------------------------------------------------------------------------- /fluent-syntax/src/ast/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/ast/mod.rs -------------------------------------------------------------------------------- /fluent-syntax/src/bin/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/bin/parser.rs -------------------------------------------------------------------------------- /fluent-syntax/src/bin/update_fixtures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/bin/update_fixtures.rs -------------------------------------------------------------------------------- /fluent-syntax/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/lib.rs -------------------------------------------------------------------------------- /fluent-syntax/src/parser/comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/parser/comment.rs -------------------------------------------------------------------------------- /fluent-syntax/src/parser/core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/parser/core.rs -------------------------------------------------------------------------------- /fluent-syntax/src/parser/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/parser/errors.rs -------------------------------------------------------------------------------- /fluent-syntax/src/parser/expression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/parser/expression.rs -------------------------------------------------------------------------------- /fluent-syntax/src/parser/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/parser/helper.rs -------------------------------------------------------------------------------- /fluent-syntax/src/parser/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/parser/macros.rs -------------------------------------------------------------------------------- /fluent-syntax/src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/parser/mod.rs -------------------------------------------------------------------------------- /fluent-syntax/src/parser/pattern.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/parser/pattern.rs -------------------------------------------------------------------------------- /fluent-syntax/src/parser/runtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/parser/runtime.rs -------------------------------------------------------------------------------- /fluent-syntax/src/parser/slice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/parser/slice.rs -------------------------------------------------------------------------------- /fluent-syntax/src/serializer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/serializer.rs -------------------------------------------------------------------------------- /fluent-syntax/src/unicode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/src/unicode.rs -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/any_char.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/any_char.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/any_char.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/any_char.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/astral.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/astral.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/astral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/astral.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/browser/appmenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/browser/appmenu.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/browser/brand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/browser/brand.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/browser/brandings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/browser/brandings.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/browser/browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/browser/browser.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/browser/browserContext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/browser/browserContext.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/browser/browserSets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/browser/browserSets.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/browser/interventions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/browser/interventions.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/browser/menubar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/browser/menubar.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/browser/protectionsPanel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/browser/protectionsPanel.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/browser/sync-brand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/browser/sync-brand.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/browser/textActions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/browser/textActions.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/aboutDialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/aboutDialog.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/blocklists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/blocklists.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/brand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/brand.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/brandings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/brandings.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/certManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/certManager.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/clearSiteData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/clearSiteData.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/colors.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/connection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/connection.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/deviceManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/deviceManager.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/fonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/fonts.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/history.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/languages.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/permissions.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/preferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/preferences.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/sanitize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/sanitize.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/selectBookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/selectBookmark.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/siteDataSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/siteDataSettings.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/contexts/preferences/sync-brand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/contexts/preferences/sync-brand.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/menubar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/menubar.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/preferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/preferences.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/benches/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/benches/simple.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/call_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/call_expressions.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/call_expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/call_expressions.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/callee_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/callee_expressions.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/callee_expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/callee_expressions.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/comments.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/comments.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/comments.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/cr.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/cr.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/cr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/cr.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/crlf.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/crlf.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/crlf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/crlf.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/eof_comment.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/eof_comment.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/eof_comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/eof_comment.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/eof_empty.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/eof_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/eof_empty.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/eof_id.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/eof_id.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/eof_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/eof_id.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/eof_id_equals.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/eof_id_equals.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/eof_id_equals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/eof_id_equals.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/eof_junk.ftl: -------------------------------------------------------------------------------- 1 | ### NOTE: Disable final newline insertion when editing this file. 2 | 3 | 000 -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/eof_junk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/eof_junk.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/eof_value.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/eof_value.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/eof_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/eof_value.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/escaped_characters.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/escaped_characters.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/escaped_characters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/escaped_characters.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/junk.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/junk.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/junk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/junk.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/leading_dots.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/leading_dots.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/leading_dots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/leading_dots.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/literal_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/literal_expressions.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/literal_expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/literal_expressions.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/member_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/member_expressions.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/member_expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/member_expressions.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/messages.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/messages.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/messages.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/mixed_entries.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/mixed_entries.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/mixed_entries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/mixed_entries.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/multiline_values.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/multiline_values.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/multiline_values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/multiline_values.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/normalized/attributes.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/normalized/attributes.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/normalized/call_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/normalized/call_expressions.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/normalized/comments.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/normalized/comments.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/normalized/escapes.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/normalized/escapes.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/normalized/inline_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/normalized/inline_expressions.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/normalized/messages.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/normalized/messages.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/normalized/select_expression.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/normalized/select_expression.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/numbers.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/numbers.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/numbers.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/obsolete.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/obsolete.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/obsolete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/obsolete.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/placeables.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/placeables.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/placeables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/placeables.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/reference_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/reference_expressions.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/reference_expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/reference_expressions.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/select_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/select_expressions.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/select_expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/select_expressions.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/select_indent.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/select_indent.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/select_indent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/select_indent.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/sparse_entries.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/sparse_entries.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/sparse_entries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/sparse_entries.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/special_chars.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/special_chars.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/special_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/special_chars.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/tab.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/tab.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/tab.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/term_parameters.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/term_parameters.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/term_parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/term_parameters.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/terms.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/terms.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/terms.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/variables.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/variables.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/variables.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/variant_keys.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/variant_keys.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/variant_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/variant_keys.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/whitespace_in_value.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/whitespace_in_value.ftl -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/whitespace_in_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/whitespace_in_value.json -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/zero_length.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent-syntax/tests/fixtures/zero_length.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/fixtures/zero_length.json -------------------------------------------------------------------------------- /fluent-syntax/tests/helper/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/helper/mod.rs -------------------------------------------------------------------------------- /fluent-syntax/tests/parser_fixtures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/parser_fixtures.rs -------------------------------------------------------------------------------- /fluent-syntax/tests/serializer_fixtures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/serializer_fixtures.rs -------------------------------------------------------------------------------- /fluent-syntax/tests/unicode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-syntax/tests/unicode.rs -------------------------------------------------------------------------------- /fluent-testing/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/CHANGELOG.md -------------------------------------------------------------------------------- /fluent-testing/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/Cargo.toml -------------------------------------------------------------------------------- /fluent-testing/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /fluent-testing/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /fluent-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/README.md -------------------------------------------------------------------------------- /fluent-testing/examples/js.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/examples/js.rs -------------------------------------------------------------------------------- /fluent-testing/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/README.md -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/branding/brand.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/branding/brand.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/aboutDialog.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/aboutDialog.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/allTabsMenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/allTabsMenu.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/appmenu.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/branding/brandings.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/branding/brandings.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/branding/sync-brand.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/branding/sync-brand.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/browser.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/browserContext.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/browserContext.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/browserSets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/browserSets.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/downloads.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/menubar.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/places.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/preferences/addEngine.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/preferences/addEngine.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/preferences/blocklists.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/preferences/blocklists.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/preferences/clearSiteData.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/preferences/clearSiteData.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/preferences/colors.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/preferences/colors.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/preferences/connection.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/preferences/connection.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/preferences/fonts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/preferences/fonts.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/preferences/languages.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/preferences/languages.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/preferences/permissions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/preferences/permissions.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/preferences/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/preferences/preferences.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/preferences/selectBookmark.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/preferences/selectBookmark.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/preferences/siteDataSettings.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/preferences/siteDataSettings.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/protectionsPanel.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/protectionsPanel.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/sanitize.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/browser/sidebarMenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/browser/sidebarMenu.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/en-US/preview/interventions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/en-US/preview/interventions.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/branding/brand.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/branding/brand.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/aboutDialog.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/aboutDialog.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/allTabsMenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/allTabsMenu.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/appmenu.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/branding/brandings.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/branding/brandings.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/branding/sync-brand.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/branding/sync-brand.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/browser.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/browserContext.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/browserContext.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/browserSets.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/browserSets.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/downloads.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/menubar.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/places.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/preferences/addEngine.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/preferences/addEngine.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/preferences/blocklists.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/preferences/blocklists.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/preferences/clearSiteData.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/preferences/clearSiteData.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/preferences/colors.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/preferences/colors.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/preferences/connection.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/preferences/connection.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/preferences/fonts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/preferences/fonts.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/preferences/languages.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/preferences/languages.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/preferences/permissions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/preferences/permissions.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/preferences/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/preferences/preferences.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/preferences/selectBookmark.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/preferences/selectBookmark.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/preferences/siteDataSettings.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/preferences/siteDataSettings.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/protectionsPanel.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/protectionsPanel.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/sanitize.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/browser/pl/browser/sidebarMenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/browser/pl/browser/sidebarMenu.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/empty-resource/en-US/empty/empty-all.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent-testing/resources/empty-resource/en-US/empty/empty-one.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent-testing/resources/empty-resource/pl/empty/empty-all.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent-testing/resources/empty-resource/pl/empty/empty-one.ftl: -------------------------------------------------------------------------------- 1 | empty-one = pusty 2 | -------------------------------------------------------------------------------- /fluent-testing/resources/missing-resource/pl/missing/missing-one.ftl: -------------------------------------------------------------------------------- 1 | missing-one = zaginiony 2 | -------------------------------------------------------------------------------- /fluent-testing/resources/toolkit/en-US/security/certificates/certManager.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/toolkit/en-US/security/certificates/certManager.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/toolkit/en-US/security/certificates/deviceManager.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/toolkit/en-US/security/certificates/deviceManager.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/toolkit/en-US/toolkit/featuregates/features.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/toolkit/en-US/toolkit/featuregates/features.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/toolkit/en-US/toolkit/global/textActions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/toolkit/en-US/toolkit/global/textActions.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/toolkit/en-US/toolkit/printing/printUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/toolkit/en-US/toolkit/printing/printUI.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/toolkit/en-US/toolkit/updates/history.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/toolkit/en-US/toolkit/updates/history.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/toolkit/pl/security/certificates/certManager.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/toolkit/pl/security/certificates/certManager.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/toolkit/pl/security/certificates/deviceManager.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/toolkit/pl/security/certificates/deviceManager.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/toolkit/pl/toolkit/featuregates/features.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/toolkit/pl/toolkit/featuregates/features.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/toolkit/pl/toolkit/global/textActions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/toolkit/pl/toolkit/global/textActions.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/toolkit/pl/toolkit/printing/printUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/toolkit/pl/toolkit/printing/printUI.ftl -------------------------------------------------------------------------------- /fluent-testing/resources/toolkit/pl/toolkit/updates/history.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/resources/toolkit/pl/toolkit/updates/history.ftl -------------------------------------------------------------------------------- /fluent-testing/src/fs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/fs.rs -------------------------------------------------------------------------------- /fluent-testing/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/lib.rs -------------------------------------------------------------------------------- /fluent-testing/src/scenarios/browser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/scenarios/browser.rs -------------------------------------------------------------------------------- /fluent-testing/src/scenarios/empty_resource_all_locales.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/scenarios/empty_resource_all_locales.rs -------------------------------------------------------------------------------- /fluent-testing/src/scenarios/empty_resource_one_locale.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/scenarios/empty_resource_one_locale.rs -------------------------------------------------------------------------------- /fluent-testing/src/scenarios/missing_optional_all_locales.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/scenarios/missing_optional_all_locales.rs -------------------------------------------------------------------------------- /fluent-testing/src/scenarios/missing_optional_one_locale.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/scenarios/missing_optional_one_locale.rs -------------------------------------------------------------------------------- /fluent-testing/src/scenarios/missing_required_all_locales.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/scenarios/missing_required_all_locales.rs -------------------------------------------------------------------------------- /fluent-testing/src/scenarios/missing_required_one_locale.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/scenarios/missing_required_one_locale.rs -------------------------------------------------------------------------------- /fluent-testing/src/scenarios/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/scenarios/mod.rs -------------------------------------------------------------------------------- /fluent-testing/src/scenarios/preferences.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/scenarios/preferences.rs -------------------------------------------------------------------------------- /fluent-testing/src/scenarios/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/scenarios/simple.rs -------------------------------------------------------------------------------- /fluent-testing/src/scenarios/structs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent-testing/src/scenarios/structs.rs -------------------------------------------------------------------------------- /fluent/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent/CHANGELOG.md -------------------------------------------------------------------------------- /fluent/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent/Cargo.toml -------------------------------------------------------------------------------- /fluent/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /fluent/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /fluent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent/README.md -------------------------------------------------------------------------------- /fluent/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent/src/lib.rs -------------------------------------------------------------------------------- /fluent/tests/macro.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent/tests/macro.rs -------------------------------------------------------------------------------- /fluent/tests/pseudo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/fluent/tests/pseudo.rs -------------------------------------------------------------------------------- /intl-memoizer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/intl-memoizer/CHANGELOG.md -------------------------------------------------------------------------------- /intl-memoizer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/intl-memoizer/Cargo.toml -------------------------------------------------------------------------------- /intl-memoizer/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /intl-memoizer/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /intl-memoizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/intl-memoizer/README.md -------------------------------------------------------------------------------- /intl-memoizer/examples/numberformat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/intl-memoizer/examples/numberformat.rs -------------------------------------------------------------------------------- /intl-memoizer/examples/pluralrules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/intl-memoizer/examples/pluralrules.rs -------------------------------------------------------------------------------- /intl-memoizer/src/concurrent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/intl-memoizer/src/concurrent.rs -------------------------------------------------------------------------------- /intl-memoizer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent-rs/HEAD/intl-memoizer/src/lib.rs --------------------------------------------------------------------------------