JSPM

@kimnagui/ckeditor5-translation-ko

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 54
  • Score
    100M100P100Q66749F
  • License GPL-2.0-or-later

Korean translation file for ckeditor5

Package Exports

  • @kimnagui/ckeditor5-translation-ko

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@kimnagui/ckeditor5-translation-ko) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ckeditor5 korean translation

Korean translation file for ckeditor5

Usage

// react example
import React, { Component } from "react";
import CKEditor from "@ckeditor/ckeditor5-react";
import ClassicEditor from "@ckeditor/ckeditor5-editor-classic/src/classiceditor";
import "@kimnagui/ckeditor5-translation-ko"; // <-- 1. Add
...

export default class Editor extends Component {
    <CKEditor
        ...
        editor={ClassicEditor}
        config={{
            ...
            language: "ko", // <-- 2. Config
        }}
    />