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

ilib-loctool-webos-ts-resource

v1.5.4

Published

A loctool plugin that knows how to process ts resource files

Downloads

1,559

Readme

ilib-loctool-webos-ts-resource

ilib-loctool-webos-ts-resource is a plugin for the loctool that allows it to read and localize TS resource files. This plugin is optimized for the webOS platform.

TSResource FileType

This plugin is for generating TS type of resource file from the QML application.
The TS file format used by Qt Linguist. The TS file is an intermediate output for QML localization. *.qm files are required for the application. Converting ts file to qm file work happens during a webOS build. Here's a simple ts file example.

   <?xml version="1.0" encoding="utf-8"?>
   <!DOCTYPE TS>
   <TS version="2.1" language="ko-KR" sourcelanguage="en-US">
   <context>
    <name>Intro</name>
       <message>
           <location filename="Intro.qml"></location>
           <source>Hello</source>
           <translation>안녕하세요</translation>
       </message>
   </context>
   </TS

Sample

The simple sample is provided in ilib-loctool-samples repository. Please check the webos-qml sample to see what TS file looks like.

License

Copyright (c) 2019-2024, JEDLSoft

This plugin is license under Apache2. See the LICENSE file for more details.

Release Notes

v1.5.4

  • Updated dependencies. (loctool: 2.24.0)
  • Converted all the unit tests from nodeunit to jest.

v1.5.3

  • Removed npm-shrinkwrap.json. It takes a bigger memory size than I expected on webOS. so I decided not to maintain the file here.
  • Updated to use the path's basename() to get filename from the path.

v1.5.2

  • Added loctool package to peerDependencies in package.json.

v1.5.1

  • Updated dependencies. (loctool: 2.23.1)
  • Updated to be included npm-shrinkwrap.json in the published files.

v1.5.0

  • Updated dependencies. (loctool: 2.22.0)
  • Updated to set context name value properly which is not always a file name.

v1.4.2

  • Updated dependencies. (loctool: 2.21.0)
  • Fixed not to have file extension in name element with js file.

v1.4.1

  • Updated dependencies. (loctool: 2.20.2)

v1.4.0

  • Replaced dependent xml2json package to xml-js

v1.3.1

  • Updated dependencies. (loctool: 2.20.0)

v1.3.0

  • Updated dependencies. (loctool: 2.18.0)
  • Added ability to override language default locale.
       "settings": {
            "localeMap": {
                "es-CO": "es"
            }
        }

v1.2.10

  • Updated dependencies. (loctool: 2.17.0)

v1.2.9

  • Updated dependencies. (loctool: 2.16.3)
  • Used the logger provided by the loctool instead of using log4js directly.
  • Added node 16 version testing for circleCI. (minimum version of node is v10)

v1.2.8

  • Updated dependent module version to have the latest one. (loctool: 2.16.2)

v1.2.7

  • Updated dependent module version to have the latest one. (loctool: 2.14.1)

v1.2.6

  • Updated dependent module version to have the latest one. (loctool: 2.13.0)

v1.2.5

  • Fixed newFile() to get locale parameter for convert feature
  • Updated dependent module version to have the latest one. (loctool: 2.12.0)

v1.2.4

  • Updated dependent module version to have the latest one. (loctool: 2.10.3)

v1.2.3

  • Updated dependent module version to have the latest one.

v1.2.2

  • Updated code to generate resource even though source and target are the same.

v1.2.1

  • Fixed resource target path
  • Updated code to print log with log4js.

v1.2.0

  • Changed default sourcelanguage to en-KR.

v1.1.0

  • Fixed an issue case which a key value is not written to TS file.

v1.0.0

  • Implemented to generate TS style resource file. Here's simple output example.
    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE TS>
    <TS version="2.1" language="ko-KR" sourcelanguage="en-US">
    <context>
     <name>Intro</name>
        <message>
            <location filename="Intro.qml"></location>
            <source>Hello!</source>
            <translation>안녕</translation>
        </message>
    </context>
    </TS