string_literal_finder 1.3.0+1 copy "string_literal_finder: ^1.3.0+1" to clipboard
string_literal_finder: ^1.3.0+1 copied to clipboard

Find non translated strings: Searches all dart files for string literals, excluding non translatable strings. Useful for i18n/l10n.

Pub Version Dart SDK Version Pub popularity codecov

string_literal_finder #

Simple command line application and analyzer plugin to find non translated string literals in dart code. Makes sure when localizing your app that you externalized all strings.

Tries to be smart about ignoring specific strings.

Installation & Usage #

$ pub global activate string_literal_finder
$ pub global run string_literal_finder --path=example
2020-08-08 15:11:31.273227 INFO string_literal_finder - Found 1 literals:
2020-08-08 15:11:31.274592 INFO string_literal_finder - lib/example.dart:17:30 'not translated'
Found 1 literals in 1 files.

Integration with IDE analyzer #

It is possible to get the warnings directly in your IDE by configuring string_literal_finder as a analyyer plugin.

IDE Warnings

  1. Install dev dependency

    flutter pub add --dev string_literal_finder
    
    # The above will add the following to your pubspec.yaml
    dev_dependencies:
      string_literal_finder: ^1.0.0 # Make sure to use the latest version.
    
  2. Configure analysis_options.yaml

    analyzer:
      plugins:
        - string_literal_finder
    
    

    optionally add additional exclude globs to analysis_options.yaml:

    string_literal_finder:
      exclude_globs:
        - '**/*.g.dart'
        - '**/*.freezed.dart'
    
  3. Restart your analyser.

    Restart analyzer

Example #

The following dart file:

import 'package:string_literal_finder_annotations/string_literal_finder_annotations.dart';
import 'package:logging/logging.dart';

final _logger = Logger('example');

void exampleFunc(@NonNls String ignored, String warning) {}

void main() {
  exampleFunc('Hello world', 'not translated');
  _logger.finer('Lorem ipsum');

  final testMap = nonNls({
    'key': 'value',
  });
}

@NonNls
String ignoreFunction() {
  // all strings in this function will be ignored.
  return 'foo';
}

will result in those warnings:

$ dart bin/string_literal_finder.dart --path=example
2020-08-08 14:38:47.800339 INFO string_literal_finder - Found 1 literals:
2020-08-08 14:38:47.801934 INFO string_literal_finder - lib/example.dart:17:30 'not translated'
Found 1 literals in 1 files.
$ 

Ignored literal strings #

  • Any argument annotated with @NonNls or @NonNlsArg()
  • Anything which is parsed into the nonNls function.
  • Anything passed to logging library Logger class.
  • Any line with a line end comment // NON-NLS
11
likes
120
pub points
85%
popularity

Publisher

verified publishercodeux.design

Find non translated strings: Searches all dart files for string literals, excluding non translatable strings. Useful for i18n/l10n.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

analyzer, analyzer_plugin, args, glob, logging, logging_appenders, path, recase, source_gen, string_literal_finder_annotations, yaml

More

Packages that depend on string_literal_finder