ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

Rails I18n Helper

作者: Adeptus ST2

未提供描述

详细信息

  • 2013.10.03.21.58.40
  • github.com
  • github.com
  • 11年前
  • 52分钟前
  • 11年前

安装

  • 总数 343
  • Win 57
  • Mac 171
  • Linux 115
8月6日 8月5日 8月4日 8月3日 8月2日 8月1日 7月31日 7月30日 7月29日 7月28日 7月27日 7月26日 7月25日 7月24日 7月23日 7月22日 7月21日 7月20日 7月19日 7月18日 7月17日 7月16日 7月15日 7月14日 7月13日 7月12日 7月11日 7月10日 7月9日 7月8日 7月7日 7月6日 7月5日 7月4日 7月3日 7月2日 7月1日 6月30日 6月29日 6月28日 6月27日 6月26日 6月25日 6月24日 6月23日
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

README

源代码
raw.githubusercontent.com

Sublime Text 2 插件:Rails I18n Helper

简化 Rails 国际化(I18n)的创建。选择文字并在 en.yml 中创建键,并输入翻译

快捷键

Windows / OSX / Linux

  • ctrl+alt+x

使用方法

您需要为 Python 安装 yaml 库。在 Linux 下

sudo apt-get install python-yaml

以下说明是在您的 Rails 应用程序的视图 (.erb, .haml) 文件中完成的。

选择要放入国际化 yml 文件的文本并按快捷键

示例

文件路径:rails_root/app/views/users/show.html.haml

= link_to new_user_path do
  %i{class: 'icon-plus'}
  Add user

您必须选择“添加用户”并点击快捷键。接收

= link_to new_user_path do
  %i{class: 'icon-plus'}
  =t(".add_user")

并在 rails_root/config/locales/en.yml 中“ bash en: users: show: add_user: 添加用户

## Limitations

This plugin has support for the following file types:
 * .erb
 * .html

This list will possibly be expanded in the future. If you would like support for other files, please submit an issue or an pull request.


## Installation

You have two options, we'll start with the preferred installation method, Package Control.


### Package Control

The easiest and preferred way to of installing this plugin is with [Package Control](http://wbond.net/sublime\_packages/package\_control).

 * Ensure Package Control is installed and Sublime Text 2 has been restarted.
 * Open the Command Palette (Command+Shift+P on OS X, Control+Shift+P on Linux/Windows).
 * Select "Package Control: Install Package"
 * Select Rails I18n Helper when the list appears.

Package Control will automatically keep Rails I18n Helper up to date with the latest version.


### Git

This method required a little more work, but simply clone this repo into your Sublime Text 2 Package directory.

``` bash
$ git clone git://github.com/adeptus/rails-i18n-helper.git "Rails I18n Helper"

以下有进一步指导。

Windows XP、7 和 8

在您的命令提示符中逐个执行以下命令。

$ cd "%APPDATA%\Sublime Text 2\Packages"
$ git clone git://github.com/adeptus/rails-i18n-helper.git "Rails I18n Helper"

Linux

在您的终端中逐个执行以下命令。

$ cd ~/.config/sublime-text-2/Packages/
$ git clone git://github.com/adeptus/rails-i18n-helper.git "Rails I18n Helper"