Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ckeditor/ckeditor5-dev-translations

Package Overview
Dependencies
Maintainers
1
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-dev-translations

CKEditor 5 translations plugin for webpack.

  • 43.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
135K
decreased by-5.34%
Maintainers
1
Weekly downloads
 
Created

What is @ckeditor/ckeditor5-dev-translations?

@ckeditor/ckeditor5-dev-translations is a development tool for CKEditor 5 that helps in managing translations. It allows developers to extract, compile, and manage translation files for CKEditor 5 plugins and applications.

What are @ckeditor/ckeditor5-dev-translations's main functionalities?

Extracting Translations

This feature allows you to extract translation strings from your source files into a .pot file, which can then be used for translation purposes.

const { extract } = require('@ckeditor/ckeditor5-dev-translations');

extract({
  sourceFiles: 'src/**/*.js',
  translationsOutputFile: 'build/.transifex-messages.pot'
});

Compiling Translations

This feature compiles translation files from a specified directory into a format that can be used by CKEditor 5, supporting multiple languages.

const { compile } = require('@ckeditor/ckeditor5-dev-translations');

compile({
  translationsDirectory: 'translations',
  outputDirectory: 'build/translations',
  languages: ['en', 'es', 'fr']
});

Other packages similar to @ckeditor/ckeditor5-dev-translations

FAQs

Package last updated on 13 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc