translate-rails3 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/{README → README.md} +6 -6
- data/VERSION +1 -1
- data/translate-rails3.gemspec +3 -3
- metadata +4 -4
data/{README → README.md}
RENAMED
@@ -11,11 +11,11 @@ To get the translation UI to write the YAML files in UTF8 you need to install th
|
|
11
11
|
|
12
12
|
The translation UI finds all I18n keys by extracting them from I18n lookups in your application source code. In addition it adds all :en and default locale keys from the I18n backend.
|
13
13
|
|
14
|
-
|
14
|
+
Each string in the UI has an "Auto Translate" link which will send the original text to Google Translate and will input the returned translation into the form field for further clean up and review prior to saving.
|
15
15
|
|
16
16
|
|
17
17
|
Rake Tasks
|
18
|
-
|
18
|
+
----------
|
19
19
|
|
20
20
|
In addition to the web UI this plugin adds the following rake tasks:
|
21
21
|
|
@@ -35,7 +35,7 @@ The google task is used for auto translating from one locale to another using Go
|
|
35
35
|
The changed rake task can show you between one YAML file to another which keys have had their texts changed.
|
36
36
|
|
37
37
|
Installation
|
38
|
-
|
38
|
+
------------
|
39
39
|
|
40
40
|
Add to your Gemfile:
|
41
41
|
|
@@ -44,13 +44,13 @@ Add to your Gemfile:
|
|
44
44
|
Now visit /translate in your web browser to start translating.
|
45
45
|
|
46
46
|
Dependencies
|
47
|
-
|
47
|
+
------------
|
48
48
|
|
49
|
-
- Rails
|
49
|
+
- Rails 3.0 or higher
|
50
50
|
- The ya2yaml gem if you want your YAML files written in UTF8 encoding.
|
51
51
|
|
52
52
|
Authors
|
53
|
-
|
53
|
+
-------
|
54
54
|
|
55
55
|
- Peter Marklund (programming)
|
56
56
|
- Joakim Westerlund (web design)
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/translate-rails3.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{translate-rails3}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Peter Marklund", "Milan Novota", "Roman Shterenzon"]
|
@@ -21,11 +21,11 @@ and also includes work from this fork: https://github.com/milann/translate
|
|
21
21
|
}
|
22
22
|
s.email = %q{romanbsd@yahoo.com}
|
23
23
|
s.extra_rdoc_files = [
|
24
|
-
"README"
|
24
|
+
"README.md"
|
25
25
|
]
|
26
26
|
s.files = [
|
27
27
|
"MIT-LICENSE",
|
28
|
-
"README",
|
28
|
+
"README.md",
|
29
29
|
"Rakefile",
|
30
30
|
"VERSION",
|
31
31
|
"app/controllers/translate_controller.rb",
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Peter Marklund
|
@@ -49,10 +49,10 @@ executables: []
|
|
49
49
|
extensions: []
|
50
50
|
|
51
51
|
extra_rdoc_files:
|
52
|
-
- README
|
52
|
+
- README.md
|
53
53
|
files:
|
54
54
|
- MIT-LICENSE
|
55
|
-
- README
|
55
|
+
- README.md
|
56
56
|
- Rakefile
|
57
57
|
- VERSION
|
58
58
|
- app/controllers/translate_controller.rb
|