Skip to content

svenfuchs/ruby-i18n.tmbundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rails I18n Textmate bundle

Commands

Extract Translation (cmd-shift-e)

  • prompts you for a dot-separated key
  • adds the translation (mapping the dot-separated key to nested yaml keys)
  • replaces the selected string in your source-code with the dot-separated key wrapped into a call to t(your.key), if interpolations are detected within translation, the replacement text will prompt for them.

Look up Translation (cmd-shift-i)

  • Looks up the currently selected key if text is selected
  • If nothing is selected, it will look up all the keys in the currently selected file.

Tab triggers

tr

  • Inserts I18n.translate("") or translate("") based on your context

The following properties are editable

  • default locale
  • translation file path
  • whether extract inserts the long syntax (I18n.translate) or short syntax (I18n.t)
  • where and if translation changes are logged

Note that Textmate, while active, won’t reload the translations.yml for you if it’s already open. When you give the focus to another application and then go back to Textmate (e.g. with cmd-tab, cmd-tab) it will reload the file. I found it useful to have translations.yml open on a second monitor while extracting translations from my application.

I still have to figure out how to automatically select the next string after this command has run. It works well to just use Textmate’s “Find Next” though:

  • hit cmd-f and give it ("|').*(\1) as a search expression, tell it to use this as a “Regular expression”
  • hit return and it will select the next string
  • use shift-cmd-e to extract that string
  • hit cmd-g to select the next string

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages