crowdin-cli 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db3457e8bf2d5e010be9b8245bdcb9ad639147c5
4
- data.tar.gz: 66abe1df295d6edfa31c234811e6ac4c250db8c8
3
+ metadata.gz: 167ef12c5091fa606c78a514bb4ba5eca0f1edf4
4
+ data.tar.gz: f2e3308d437fcac56099fb9ca118619508c703b5
5
5
  SHA512:
6
- metadata.gz: 949d59fc3963fca75ba3a88673ac44794b1b28e31967dedb3014ccd035fb1428c7b18489d62dc498b638737180e4eb3aeb22472fe72416904434b3279e95813a
7
- data.tar.gz: 6fd92ccf59aa5a3796809dc5b2f60023462ecba82fa9b5bd7d23cda0cc004f368d01d36016456147d0051afe6b39af314afc0ef802795e8823030237336e9e5e
6
+ metadata.gz: 731742a0475fe5070dda8bad25d7b6afbac5fc86ed2b8fe6f051d9b6127d0604085d13a63cf163824c45a4f18a9c1ab8a86921d948bb6eeaeb5a4146cd8e0bbd
7
+ data.tar.gz: 1e50b3cb3bf5d5b7f148a6c905d1fd8c1e6f289d59a92f01f32eacce9f366355fbfe0ca178d2dbaef49a67af169aa6654f53795c58ebf80f274d8bf5352e8efa
data/LICENSE CHANGED
@@ -1,22 +1,21 @@
1
- Copyright (c) 2012 Anton Maminov
1
+ The MIT License (MIT)
2
2
 
3
- MIT License
3
+ Copyright (c) 2012-2014 Anton Maminov
4
4
 
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
12
11
 
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
15
14
 
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -192,6 +192,31 @@ base_path: /path/to/your/project
192
192
  preserve_hierarchy: true
193
193
  ```
194
194
 
195
+ ### Escape quotes for `.properties` file format
196
+
197
+ Defines whether single quote should be escaped by another single quote or backslash in exported translations.
198
+ You can add `escape_quote: <value>` per-file option.
199
+ Acceptable values are: 0, 1, 2, 3. Default is 3.
200
+
201
+ * 0 — Do not escape single quote;
202
+ * 1 — Escape single quote by another single quote;
203
+ * 2 — Escape single quote by backslash;
204
+ * 3 — Escape single quote by another single quote only in strings containing variables ( {0} )
205
+
206
+ ```
207
+ ---
208
+ project_identifier: test
209
+ api_key: KeepTheAPIkeySecret
210
+ base_url: https://api.crowdin.com
211
+ base_path: /path/to/your/project
212
+
213
+ files:
214
+ -
215
+ source: '/en/strings.properties'
216
+ translation: '/%two_letters_code%/%original_file_name%'
217
+ escape_quotes: 1
218
+ ```
219
+
195
220
  ### Uploading CSV files via API
196
221
 
197
222
  ```
data/bin/crowdin-cli CHANGED
@@ -919,7 +919,10 @@ pre do |globals ,command, options, args|
919
919
  # Use skips_pre before a command to skip this block
920
920
  # on that command only
921
921
 
922
+ # TODO: check for validity options
922
923
  @allowed_options = [
924
+ # *.properties files only
925
+ 'escape_quotes',
923
926
  # CSV files only
924
927
  'scheme',
925
928
  'first_line_contains_header',
@@ -939,7 +942,16 @@ Type `crowdin-cli help` to know how to specify custom configuration file
939
942
  See http://crowdin.com/page/cli-tool#configuration-file for more details
940
943
  EOS
941
944
  else
942
- @config = YAML.load_file(globals[:config]) || {}
945
+ begin
946
+ @config = YAML.load_file(globals[:config]) || {}
947
+ rescue Psych::SyntaxError => err
948
+ exit_now! <<EOS
949
+ Could not parse YAML: #{err.message}
950
+
951
+ We were unable to successfully parse the crowdin.yaml file that you provided - it most likely is not well-formed YAML.
952
+ Please check whether your crowdin.yaml is valid YAML - you can use the http://yamllint.com/ validator to do this - and make any necessary changes to fix it.
953
+ EOS
954
+ end
943
955
 
944
956
  if File.exists?(globals[:identity])
945
957
  identity = YAML.load_file(globals[:identity]) || {}
@@ -1,5 +1,5 @@
1
1
  module Crowdin
2
2
  module CLI
3
- VERSION = '0.4.0'
3
+ VERSION = '0.4.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crowdin-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Crowdin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-27 00:00:00.000000000 Z
11
+ date: 2014-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake