web_translate_it 1.7.3.1 → 1.8.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/examples/en.yml +19 -14
- data/history.md +10 -0
- data/lib/web_translate_it/cacert.pem +3987 -0
- data/lib/web_translate_it/command_line.rb +22 -12
- data/lib/web_translate_it/project.rb +8 -1
- data/lib/web_translate_it/translation_file.rb +15 -22
- data/lib/web_translate_it/util.rb +4 -3
- data/lib/web_translate_it.rb +0 -1
- data/version.yml +3 -3
- metadata +9 -17
- data/lib/web_translate_it/tasks.rb +0 -40
data/examples/en.yml
CHANGED
@@ -1,10 +1,18 @@
|
|
1
|
-
|
1
|
+
fr:
|
2
2
|
activerecord:
|
3
3
|
errors:
|
4
|
+
models:
|
5
|
+
invitation:
|
6
|
+
attributes:
|
7
|
+
email:
|
8
|
+
user_already_invited: "This user has already been invited"
|
9
|
+
user_already_member: "This user is already a member"
|
10
|
+
project_file:
|
11
|
+
attributes:
|
12
|
+
file:
|
13
|
+
file_format_not_supported: "Sorry, we currenly support only Gettext .pot/.po, .yml/.yaml and .strings"
|
4
14
|
templates:
|
5
15
|
header:
|
6
|
-
one: "1 error prohibited this {{model}} from being saved"
|
7
|
-
other: "{{count}} errors prohibited this {{model}} from being saved"
|
8
16
|
body: "there were problems with the following fields:"
|
9
17
|
messages:
|
10
18
|
accepted: "must be accepted"
|
@@ -25,14 +33,11 @@ en:
|
|
25
33
|
taken: "is already taken"
|
26
34
|
too_long: "is too long (maximum is {{count}} characters)"
|
27
35
|
too_short: "is too short (minimum is {{count}} characters)"
|
28
|
-
wrong_length: "is the wrong length (should be {{count}} characters)"
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
attributes:
|
37
|
-
file:
|
38
|
-
file_format_not_supported: "Sorry, we currenly support only Gettext .pot/.po, .yml/.yaml and .strings"
|
36
|
+
wrong_length: "is the wrong length (should be {{count}} characters)"
|
37
|
+
one: "1 error prohibited this {{model}} from being saved"
|
38
|
+
other: "{{count}} errors prohibited this {{model}} from being saved"
|
39
|
+
another_one: dskjdks
|
40
|
+
another_string: "this is another string"
|
41
|
+
hello: "Hello world!!"
|
42
|
+
new_string: hehe
|
43
|
+
test: " & & "
|
data/history.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## Version 1.8.0.0 / 2011-05-31
|
2
|
+
|
3
|
+
* New: Faster file transfers using KeepAlive’d connection.
|
4
|
+
* New: Verify SSL certificate on connection.
|
5
|
+
* Fix: Display more detailed error messages on unconfigured projects. Ticket #56
|
6
|
+
* Fix: `wti init` now checks if configuration file is writable. Ticket #35
|
7
|
+
* Remove rake tasks. Rake tasks are much slower than the `wti executable` and were removed.
|
8
|
+
Should you want the rake tasks back, see how to add them in your project
|
9
|
+
[on the wiki](https://github.com/AtelierConvivialite/webtranslateit/wiki/Rake-tasks).
|
10
|
+
|
1
11
|
## Version 1.7.3.1 / 2011-05-06
|
2
12
|
|
3
13
|
* Fix: Broken links on `wti server`.
|