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

vue-webtext

v0.1.0

Published

Extract and compile translations with vue-gettext and vue-loader, i.e. for .vue files with <template lang='pug'></template>

Downloads

5

Readme

vue-webpack-gettext

Extract and compile translations with vue-gettext and vue-loader, i.e. for .vue files with <template lang='pug'></template>

Introduction

vue-gettext has an example of Makefile that demonstrates how to extract and compile translations.

However, it requires own modifications to fit different requirements and is hard to share between projects. Furthermore, it's unable to extract strings from templates if you're using custom template language in vue files.

<template lang='pug'>
h1.hero
  translate Please translate me
</template>

So, I created this helper library to:

1. Extract strings to be translated into a POT file

Since you're using custom template language, you should already have vue-loader and the corresponding compiler, i.e. pug in the project. By leveraging those, it will:

  1. Use vue-loader's component parser to extract the template content.
  2. Use consolidate.js to compile the content to HTML.
  3. Use easygettext to extract strings for translation.

2. Compile translated PO files into one or many translation JSON files

vue-gettext's Makefile will group all PO files' content into a single JSON file, which may not be ideal if you only want to load one language at a time (translated strings can be humongous in size).

So this helper will give you an option to split them into a JSON file per language.

Usage

  1. Install GNU gettext tools:
    • MacOS: brew install gettext && brew link --force gettext
    • Windows: need help
  2. npm install --save-dev vue-webpack-gettext
  3. Ensure that template language engines (that you're using) are installed, i.e. npm install --save-dev pug
  4. To extract: node node_modules/vue-webpack-gettext/extract --output static/template.pot --src src
  5. To compile: node node_modules/vue-webpack-gettext/compile --output static/locale --src static/translated --multiple
  6. You can add npm scripts to your project's package.json to ease the tasks execution