1.1.4 • Published 5 years ago

gulp-ziey-i18n v1.1.4

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

gulp-ziey-i18n

NPM version

NPM

usage

    // gulp config
    // options
    //      .template
    //          .options       : template 设置
    //              .openTag   : '{{', 默认值
    //              .closeTag  : '}}', 默认值
    //      .po                : po 文件内容
    //      .lang              : po 文件的语言标识
    //      .path              : po 文件路径,设置了路径会覆盖 po 的设置
    //      .keep_no_reference : 是否保留不再引用的词条,默认为 false
    //      .disableShowError  : 是否不显示错误信息
    //      .encodeSlash       : 编码分隔符如 ##
    //      .cleanCache        : 是否清理缓存,默认为 true
    //      .encodeCustom      : 自定义编码输出方式

    //  * 1.先尝试读取 path 的文件内容
    //  * 2.不存在 path 则使用 po 的文本内容
    //  * 3 po 为空使用空字符串
    var gulp = require('gulp');
    var i18n = require('../gulp-ziey-i18n/index.js');

    gulp.task('default', function(cb){
        gulp.src( 'src/*' )
            .pipe(
                i18n({
                    lang : 'en_US',
                    path : 'en_US.po'
                })
            )
            .pipe(
                gulp.dest( 'dest' )
            );
    });

    // in src/a.js
    console.log('{{ a }}');             // ==> console.log('a');

    // use encodeSlash 特殊编码分隔符
    console.log("{{ json ## "hey!"}}"); // ==> console.log("\"hey!\"");

    // use encodeCustom 自定义编码方式
    // 配置时:
        // ...
            .pipe(
                i18n({
                    lang : 'en_US',
                    path : 'en_US.po',
                    encodeCustom: {
                        wrap : str => `wrap(${str})`,
                    }
                })
            )
        // ...

    // 效果:
    console.log("{{ wrap ## "hey!"}}"); // ==> console.log(wrap("hey!"));

dependencies

1.1.4

5 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.1.0-1

6 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.1

11 years ago

0.1.0

11 years ago

0.0.7

11 years ago

0.0.6

11 years ago

0.0.5

11 years ago

0.0.0

11 years ago