philipsoeberg / vsce-i18n-json-editor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

i18n-l10n-editor

Logo

i18n-l10n-editor is a Visual Studio Code extension to easily edit your i18n and l10n translations files. This extensions is built on the work by Thibault Vanderseypen, Innwin and Isaudon.

Usage

i18n-l10n-editor can be used in two ways :

  • Click the i18n/l10n Editor Button on the status bar. This will search for any l10n.yaml file and then open the translations from these files. You do not have to set i18n-l10n-editor.workspaceFolders for this to work. But you should set a list of supported folders in i18n-l10n-editor.supportedFolders so the editor can search for translation files in your project.

    Open with Statusbar
  • Right click on a folder that contains translations, such as i18n or l10n and select i18n/l10n Editor from the context menu.

    Open with Context Menu
  • In any .dart file select any text including the quotes the from the light bulb on the left choose Add text to i18n/l10n Editor. This show some dialog boxed to confirm vales and then add the values to the translations.

    Add select text to the editor

Buttons

Save Translations

  • This will save all opened translations.

Add Key

  • This will add a new key to the selected folder, or all folders.

New Translation

  • This will create a new translation file. if i18n-l10n-editor.autoTranslateNewLanguage is enabled the it will translate the new file from the default translation file. This will save all translations before creating the new file.

Tree ViewTabel View

  • Switch between table and tree views.

Copy Key

  • This will copy the selected key to other translation folders. If the key doesn't exist in the folder then it will add it and set it to the default translation text. If the key does exist and is empty, it will not overwrite it.

Translate All

  • This will translate the default translation text to all translations within the folder.

Translation Only selected Translation

  • This will translate the default language to the select language.

Copy default translation

  • This will copy the default translation text to all translations within the folder without translating the text. This is good to copy your descriptions across.

NOTE for translations to work your require i18n-l10n-editor.translationService, i18n-l10n-editor.translationServiceApiKey and i18n-l10n-editor.translationServiceApiRegion to be set. Currently the only translation service is the Microsoft Translation API.

Settings

To access the settings click Code -> Settings on a Mac or File Preference on Windows. In the setting click Extensions and the scroll down to Localization Internationalization Editor

  • i18n-l10n-editor.forceKeyUPPERCASE
    • Forces the keys to UPPERCASE (deprecated). If true this will force the keys to UPPERCASE. The default value is false
      • i18n-l10n-editor.forceKeyUPPERCASE: false
  • i18n-l10n-editor.keyCaseStyle
    • This sets how to write keys to the files valid methods are no change, camelCase, Capalize, lowercase, UPPERCASE. Both camelCase and Capalize requires spaces when typing the key. The default value is no change.
      • i18n-l10n-editor.keyCaseStyle: "no change"
  • i18n-l10n-editor.sortKeyTogether
    • Sort files and the editor so that key and @key will be kept together. The default value is true.
      • i18n-l10n-editor.sortKeyTogether: true
  • i18n-l10n-editor.autoTranslateNewLanguage
    • This will auto translate any new translations files added to the editor. It requires the translations to be added. The default value is false.
      • i18n-l10n-editor.autoTranslateNewLanguage: false
  • i18n-l10n-editor.defaultLanguage
    • Used when no default language is specified in translation files otherwise the first file found is used. The default vale is en.
      • i18n-l10n-editor.defaultLanguage: false
  • i18n-l10n-editor.translationService
    • Specified which translation service to use (Only Microsoft translator is currently available). The default value is blank.
      • i18n-l10n-editor.translationService: ""
  • i18n-l10n-editor.translationServiceApiKey
    • Api key used by the translation service. Copy this from the Key Generation page. The default value is blank.
      • i18n-l10n-editor.translationServiceApiKey: ""
  • i18n-l10n-editor.translationServiceApiRegion
    • Api region used by the translation service. Copy this from the Key Generation page. The default value is blank.
      • i18n-l10n-editor.translationServiceApiRegion: ""
  • 18n-l10n-editor.jsonSpace
    • A String or Number that's used to insert white space into the output JSON. The default value is 2.
      • 18n-l10n-editor.jsonSpace: 2
  • i18n-l10n-editor.keySeparator
    • String to separate keys, or false if no separator is preferred. The default value is ".".
    • i18n-l10n-editor.keySeparator: "."
  • i18n-l10n-editor.lineEnding
    • String used to signify the end of a line. The default value is \n.
      • i18n-l10n-editor.lineEnding: "\\n"
  • i18n-l10n-editor.supportedFolders
    • An array of folder names that's used to open the extension through the right click (restart required after changing the value). The default values are l10n and l18n.
      • i18n-l10n-editor.supportedFolders: ["l10n","i18n"]
  • i18n-l10n-editor.supportedExtensions
    • An array of file extension to check when loading the editor. If no file exists then the first one is used by default (restart required after changing the value). The default values are arb and json.
      • i18n-l10n-editor.supportedExtensions: ["arb","json"]
  • i18n-l10n-editor.workspaceFolders
    • An array of objects to specify which folders are used to manage your translations (deprecated). This is only used if the editor can not find any translation folders. The default value is blank.
      • i18n-l10n-editor.workspaceFolders: []

Future Development

As I now have this editor work the way I wanted it to, I will be slowing down on changes. You are welcome to submit feature request to my GitHub

  • Add translations services for Google Translate and Amazon Translate
  • Add translations to the Editor

Commercial Usage

i18n/l10n Editor is free for non-commercial usage. If you wish to use it for commercial purposes then I would appreciate a donation of $US5/user PayPal.Me. This extension can save you hours doing translations manual and a small donation would be welcomed.

Author

Previous authors include Thibault Vanderseypen, Innwin and Isaudon

About

License:MIT License


Languages

Language:TypeScript 87.9%Language:HTML 7.2%Language:JavaScript 2.8%Language:CSS 2.1%