Skip to content

juliandavidmr/i18n-editor

Repository files navigation

Translation editor

Translation editor for (web) apps. Edit your json properties translation files with ease.

Features

  • Add translations to multiple languages.
  • Support multiple language files in parallel.
  • Live HTML rendering.
  • Export resource to ngx-translate format.
  • Delete translation resources.
  • Support for nested keys.
  • Differentiator of incomplete location resources.
  • Parameter extractor (Angular, ie: {{ idParam }} => parameter = idParam).

JSON examples

en.json:

{
  "login_sign_in": "Sign in",
  "login_sign_in_here": "Sign In here",
  "login_sign_up_now": "Sign up now",
  "login_subtitle": "Bizagi Community",
  "login_title": "Welcome to the",
  "login_welcome_to": "Welcome to",
  "register_have_bizagi_account": "Do you have a Bizagi account?",
  "register_terms_use_required": "Please select terms and conditions"
}

ja.json:

{
  "login_sign_in": "ログイン",
  "login_sign_in_here": "ここでサインイン",
  "login_sign_up_now": "今すぐ登録",
  "login_subtitle": "Bizagiコミュニティ",
  "login_title": "へようこそ",
  "login_welcome_to": "へようこそ!",
  "register_have_bizagi_account": "Bizagiアカウントをお持ちですか?",
  "register_terms_use_required": "契約条件を選択してください"
}