npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@wakeapp/bbt-tools

v1.1.4

Published

用来维护多语言信息的工具

Downloads

1

Readme

BBT-tools

BBT -> 巴别塔

bbt-tools

多语言提取/维护工具


初衷

在多语言的开发中,维护各个语言环境下的翻译内容是一件比较繁琐的事

  • 如何知道指定 key 是否存在语言缺失的情况
  • key 是否会存在冲突
  • 语言环境的维护
  • 翻译内容迁移问题
  • 如何将原始文本提取出来交给翻译人员翻译
  • 使用免费的翻译 API 翻译内容
  • 多人员开发导致的冲突

bbt-tools就是用来处理以上问题的

  • 如何知道指定 key 是否存在语言缺失的情况

  • 如何将原始文本提取出来交给翻译人员翻译

    bbt-tools会收集指定目录下符合规则的所有文件,并根据文件名判断该文件是属于哪种语言环境下的内容(xxx/zh.tr即为zh下的内容), 最后整理到一个excel文件里, 用户可以通过excel自带的筛选可以很直观的知道对应的缺失内容,以及,如果需要交给翻译人员翻译,那么也只需要将该表发送给对应的人员翻译即可,翻译完之后,可以通过bbt-tools buildexcel的内容更新到对应的文件里

  • 语言环境的维护

    假设我们现在有zh,en,jp三个语言环境,现在需要新增一个th的语言环境,可以直接在bbt.config.jsonlangs里添加th即可,bbt-tools在运行时,会自动的生成th环境下的翻译内容(虽然会生成,但是每一个 key 所对应的内容为'');

  • key 是否会存在冲突

    我们可以通过协商/命名空间/局部作用域来一定程度上的规避此问题,但是难免会出现key重复的情况, bbt-tools在运行时会检测key是否存在重复的情况

  • 翻译内容迁移问题

    默认情况下,如果我们要移动翻译内容,那么需要修改多个文件,bbt-tools会在运行时检测对应的key的文件路径跟之前的是否一致,不一致的话,那么会更新对应的路径,因此我们只需要更改一个文件即可。

  • 使用免费的翻译 API 翻译内容

    内置地表**最强(**的google翻译 API, 可以直接开箱即用(请自行解决连不上google服务器的问题), 也可以自行扩展翻译接口,使用自己喜欢的翻译 API 进行翻译,不需要考虑如果收集信息、还原翻译内容的问题;

  • 多人员开发导致的冲突

    多人员同时处理一个文本的时候,因为编码习惯、插入/修改位置不一致,会导致git难以准确追踪每一个key的变更记录。 bbt-tools在生成文件的时候,会对key做一次排序,从而可以使得git可以精准的追踪每一个key的变化,方便我们更加轻松的处理冲突

设计

如何使用