~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

s/i18n/l10n/

Show diffs side-by-side

added added

removed removed

Lines of Context:
1056
1056
    trace.mutter("bzr arguments: %r", argv)
1057
1057
 
1058
1058
    opt_lsprof = opt_profile = opt_no_plugins = opt_builtin = \
1059
 
            opt_no_i18n = opt_no_aliases = False
 
1059
            opt_no_l10n = opt_no_aliases = False
1060
1060
    opt_lsprof_file = opt_coverage_dir = None
1061
1061
 
1062
1062
    # --no-plugins is handled specially at a very early stage. We need
1079
1079
            opt_no_plugins = True
1080
1080
        elif a == '--no-aliases':
1081
1081
            opt_no_aliases = True
1082
 
        elif a == '--no-i18n':
1083
 
            opt_no_i18n = True
 
1082
        elif a == '--no-l10n':
 
1083
            opt_no_l10n = True
1084
1084
        elif a == '--builtin':
1085
1085
            opt_builtin = True
1086
1086
        elif a == '--concurrency':
1098
1098
        i += 1
1099
1099
 
1100
1100
    debug.set_debug_flags_from_config()
1101
 
    if not opt_no_i18n:
 
1101
    if not opt_no_l10n:
1102
1102
        # selftest uninstalls i18n later.
1103
1103
        i18n_install()
1104
1104