same_table_translation 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in same_table_translation.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 antho1404
2
+
3
+ MIT License
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:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
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.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # SameTableTranslation
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'same_table_translation'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install same_table_translation
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,42 @@
1
+ require "same_table_translation/version"
2
+
3
+ module SameTableTranslation
4
+ def translatable(*attributes)
5
+ locales = I18n.available_locales
6
+ attributes.each do |attribute|
7
+ locales.each do |locale|
8
+ name = "#{attribute.to_s}_#{locale.to_s}"
9
+ attr_accessible name.to_sym if self.attribute_names.include?(name)
10
+ end
11
+ end
12
+
13
+ attributes.each do |attribute|
14
+ getter = (attribute.to_s).to_sym
15
+ setter = ("#{attribute.to_s}=").to_sym
16
+
17
+ send :define_method, getter do
18
+ begin
19
+ self.attributes["#{attribute.to_s}_#{I18n.locale.to_s}"]
20
+ rescue e
21
+ end
22
+ end
23
+
24
+ send :define_method, setter do |value|
25
+ begin
26
+ self.attributes = { "#{attribute}_#{I18n.locale.to_s}" => value }
27
+ rescue
28
+ end
29
+ end
30
+ end
31
+
32
+ scope :translated, lambda { |attribute|
33
+ where(arel_table["#{attribute.to_s}_#{I18n.locale.to_s}".to_sym].not_eq(nil))
34
+ }
35
+
36
+ scope :untranslated, lambda { |attribute|
37
+ where(arel_table["#{attribute.to_s}_#{I18n.locale.to_s}".to_sym].eq(nil))
38
+ }
39
+ end
40
+ end
41
+
42
+ ActiveRecord::Base.extend Translatable
@@ -0,0 +1,3 @@
1
+ module SameTableTranslation
2
+ VERSION = "0.0.2"
3
+ end
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'same_table_translation/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "same_table_translation"
8
+ gem.version = SameTableTranslation::VERSION
9
+ gem.authors = ["antho1404"]
10
+ gem.email = ["anthony.estebe@gmail.com"]
11
+ gem.description = %q{Translate a simple attribute in all your locales }
12
+ gem.summary = %q{This is similar to most of other translation plugin in rails but usefull if you want to translate in few language because we don't need any join like others plugins. }
13
+ gem.homepage = "https://github.com/antho1404/translatable"
14
+
15
+ gem.files = `git ls-files`.split($/)
16
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
+ gem.require_paths = ["lib"]
19
+ end
@@ -0,0 +1,8 @@
1
+ {
2
+ "folders":
3
+ [
4
+ {
5
+ "path": "/home/antho/prog/same_table_translation"
6
+ }
7
+ ]
8
+ }
@@ -0,0 +1,2126 @@
1
+ {
2
+ "auto_complete":
3
+ {
4
+ "selected_items":
5
+ [
6
+ [
7
+ "poi",
8
+ "pointsToRemove"
9
+ ],
10
+ [
11
+ "to",
12
+ "to_date"
13
+ ],
14
+ [
15
+ "da",
16
+ "DATABASES"
17
+ ],
18
+ [
19
+ "OPT",
20
+ "OPTARG"
21
+ ],
22
+ [
23
+ "Di",
24
+ "Digup"
25
+ ],
26
+ [
27
+ "user",
28
+ "user"
29
+ ],
30
+ [
31
+ "comm",
32
+ "comment"
33
+ ],
34
+ [
35
+ "ans",
36
+ "answer"
37
+ ],
38
+ [
39
+ "int",
40
+ "icon-star"
41
+ ],
42
+ [
43
+ "col",
44
+ "column"
45
+ ],
46
+ [
47
+ "dig",
48
+ "digup"
49
+ ],
50
+ [
51
+ "arel",
52
+ "arel_table"
53
+ ],
54
+ [
55
+ "cate",
56
+ "category"
57
+ ],
58
+ [
59
+ "sc",
60
+ "scope"
61
+ ],
62
+ [
63
+ "skil",
64
+ "skill_answer"
65
+ ],
66
+ [
67
+ "new",
68
+ "new_object"
69
+ ],
70
+ [
71
+ "ob",
72
+ "object_id"
73
+ ],
74
+ [
75
+ "sub",
76
+ "subject"
77
+ ],
78
+ [
79
+ "web",
80
+ "webnoser"
81
+ ],
82
+ [
83
+ "di",
84
+ "DigUp"
85
+ ],
86
+ [
87
+ "comme",
88
+ "comments"
89
+ ],
90
+ [
91
+ "sor",
92
+ "sortable"
93
+ ],
94
+ [
95
+ "adm",
96
+ "admin_user_path"
97
+ ],
98
+ [
99
+ "do",
100
+ "dob Insert do |variable| … end"
101
+ ],
102
+ [
103
+ "curre",
104
+ "current_user"
105
+ ],
106
+ [
107
+ "pro",
108
+ "provider"
109
+ ],
110
+ [
111
+ "access",
112
+ "access_token"
113
+ ],
114
+ [
115
+ "se",
116
+ "self"
117
+ ],
118
+ [
119
+ "digu",
120
+ "digup"
121
+ ],
122
+ [
123
+ "evalua",
124
+ "evaluation"
125
+ ],
126
+ [
127
+ "Ac",
128
+ "ActiveRecord"
129
+ ],
130
+ [
131
+ "prop",
132
+ "proposition_id"
133
+ ],
134
+ [
135
+ "eva",
136
+ "evaluation_id"
137
+ ],
138
+ [
139
+ "btn",
140
+ "btn"
141
+ ],
142
+ [
143
+ "par",
144
+ "params"
145
+ ],
146
+ [
147
+ "tex",
148
+ "text-decoration"
149
+ ],
150
+ [
151
+ "pre",
152
+ "prev_elems"
153
+ ],
154
+ [
155
+ "pr",
156
+ "prev_elems"
157
+ ],
158
+ [
159
+ "sw",
160
+ "switch_star"
161
+ ],
162
+ [
163
+ "ic",
164
+ "icon-star-empty"
165
+ ],
166
+ [
167
+ "Prop",
168
+ "Proposition"
169
+ ],
170
+ [
171
+ "propo",
172
+ "proposition"
173
+ ],
174
+ [
175
+ "Sél",
176
+ "sélectionner"
177
+ ],
178
+ [
179
+ "po",
180
+ "proposition"
181
+ ],
182
+ [
183
+ "simpl",
184
+ "simple_form_for"
185
+ ],
186
+ [
187
+ "Propos",
188
+ "proposition"
189
+ ],
190
+ [
191
+ "poin",
192
+ "points_to_remove"
193
+ ],
194
+ [
195
+ "bt",
196
+ "btn-mini"
197
+ ],
198
+ [
199
+ "upda",
200
+ "update_attribute"
201
+ ],
202
+ [
203
+ "attr",
204
+ "attr_accessible"
205
+ ],
206
+ [
207
+ "sec",
208
+ "selected_digup"
209
+ ],
210
+ [
211
+ "sele",
212
+ "selected_digup"
213
+ ],
214
+ [
215
+ "DI",
216
+ "Digup"
217
+ ],
218
+ [
219
+ "selec",
220
+ "selected_digup"
221
+ ],
222
+ [
223
+ "sel",
224
+ "selectedDigup"
225
+ ],
226
+ [
227
+ "DIG",
228
+ "DigUp"
229
+ ],
230
+ [
231
+ "que",
232
+ "question_number"
233
+ ],
234
+ [
235
+ "Ski",
236
+ "SkillQuestion"
237
+ ],
238
+ [
239
+ "Skil",
240
+ "SkillAnswer"
241
+ ],
242
+ [
243
+ "curr",
244
+ "current_topic"
245
+ ],
246
+ [
247
+ "can",
248
+ "cannot"
249
+ ],
250
+ [
251
+ "app",
252
+ "application"
253
+ ],
254
+ [
255
+ "def",
256
+ "def def … end"
257
+ ],
258
+ [
259
+ "pric",
260
+ "price_limit"
261
+ ],
262
+ [
263
+ "Cate",
264
+ "category_answer_digups"
265
+ ],
266
+ [
267
+ "ty",
268
+ "type"
269
+ ],
270
+ [
271
+ "object",
272
+ "object_name"
273
+ ],
274
+ [
275
+ "obj",
276
+ "object"
277
+ ],
278
+ [
279
+ "ass",
280
+ "association"
281
+ ],
282
+ [
283
+ "type",
284
+ "type_sing"
285
+ ],
286
+ [
287
+ "chec",
288
+ "checked"
289
+ ],
290
+ [
291
+ "opti",
292
+ "options"
293
+ ],
294
+ [
295
+ "option",
296
+ "optional"
297
+ ],
298
+ [
299
+ "optio",
300
+ "options"
301
+ ],
302
+ [
303
+ "ca",
304
+ "category_id"
305
+ ],
306
+ [
307
+ "answ",
308
+ "answer"
309
+ ],
310
+ [
311
+ "impo",
312
+ "importe"
313
+ ],
314
+ [
315
+ "share",
316
+ "share_type"
317
+ ],
318
+ [
319
+ "cre",
320
+ "created_at"
321
+ ],
322
+ [
323
+ "sha",
324
+ "share_count"
325
+ ],
326
+ [
327
+ "arra",
328
+ "array"
329
+ ],
330
+ [
331
+ "the",
332
+ "themeTbl"
333
+ ],
334
+ [
335
+ "them",
336
+ "theme_id"
337
+ ],
338
+ [
339
+ "dum",
340
+ "var_dump"
341
+ ],
342
+ [
343
+ "cat",
344
+ "categoryTbl"
345
+ ],
346
+ [
347
+ "De",
348
+ "Default_Model_DbTable_User"
349
+ ],
350
+ [
351
+ "tr",
352
+ "try Wrap in try { … } catch (…) { … }"
353
+ ],
354
+ [
355
+ "a",
356
+ "a <a>"
357
+ ],
358
+ [
359
+ "define",
360
+ "defined"
361
+ ],
362
+ [
363
+ "res",
364
+ "respond_to"
365
+ ],
366
+ [
367
+ "in",
368
+ "informations"
369
+ ],
370
+ [
371
+ "check",
372
+ "checkbox"
373
+ ],
374
+ [
375
+ "fontsize",
376
+ "font-size zen:css_properties"
377
+ ],
378
+ [
379
+ "be",
380
+ "before_filter"
381
+ ],
382
+ [
383
+ "addre",
384
+ "addresses"
385
+ ],
386
+ [
387
+ "margin",
388
+ "margin-top zen:css_properties"
389
+ ],
390
+ [
391
+ "trans",
392
+ "translateY"
393
+ ],
394
+ [
395
+ "bac",
396
+ "background-color zen:css_properties"
397
+ ],
398
+ [
399
+ "back",
400
+ "background-color zen:css_properties"
401
+ ],
402
+ [
403
+ "opt",
404
+ "option"
405
+ ],
406
+ [
407
+ "bord",
408
+ "border zen:css_properties"
409
+ ],
410
+ [
411
+ "marg",
412
+ "margin zen:css_properties"
413
+ ],
414
+ [
415
+ "padd",
416
+ "padding zen:css_properties"
417
+ ],
418
+ [
419
+ "ame",
420
+ "amenity"
421
+ ],
422
+ [
423
+ "attri",
424
+ "attribute"
425
+ ],
426
+ [
427
+ "amen",
428
+ "amenity"
429
+ ],
430
+ [
431
+ "mar",
432
+ "margin zen:css_properties"
433
+ ],
434
+ [
435
+ "che",
436
+ "check_boxes"
437
+ ],
438
+ [
439
+ "cont",
440
+ "control-label"
441
+ ],
442
+ [
443
+ "remo",
444
+ "remove_empty_array_from_hash"
445
+ ],
446
+ [
447
+ "acc",
448
+ "acceptable_options"
449
+ ],
450
+ [
451
+ "inpu",
452
+ "input_upload_class"
453
+ ],
454
+ [
455
+ "coverflow",
456
+ "coverflow_id"
457
+ ],
458
+ [
459
+ "data",
460
+ "data-index"
461
+ ],
462
+ [
463
+ "left",
464
+ "left-side"
465
+ ],
466
+ [
467
+ "lef",
468
+ "left-side"
469
+ ],
470
+ [
471
+ "zi",
472
+ "zip_code"
473
+ ],
474
+ [
475
+ "lat",
476
+ "latLng"
477
+ ],
478
+ [
479
+ "pos",
480
+ "position"
481
+ ],
482
+ [
483
+ "geo",
484
+ "geocodeAddress"
485
+ ],
486
+ [
487
+ "city",
488
+ "city_zip"
489
+ ],
490
+ [
491
+ "address",
492
+ "address"
493
+ ],
494
+ [
495
+ "padding",
496
+ "padding-top zen:css_properties"
497
+ ],
498
+ [
499
+ "backl",
500
+ "background-color zen:css_properties"
501
+ ],
502
+ [
503
+ "z",
504
+ "z-index: ${1001};"
505
+ ],
506
+ [
507
+ "textdecoration",
508
+ "text-decoration zen:css_properties"
509
+ ],
510
+ [
511
+ "disp",
512
+ "displayQuizz"
513
+ ],
514
+ [
515
+ "border",
516
+ "border-bottom zen:css_properties"
517
+ ]
518
+ ]
519
+ },
520
+ "buffers":
521
+ [
522
+ {
523
+ "file": "same_table_translation.gemspec",
524
+ "settings":
525
+ {
526
+ "buffer_size": 953,
527
+ "line_ending": "Unix"
528
+ }
529
+ },
530
+ {
531
+ "file": "lib/same_table_translation.rb",
532
+ "settings":
533
+ {
534
+ "buffer_size": 1135,
535
+ "line_ending": "Unix"
536
+ }
537
+ }
538
+ ],
539
+ "build_system": "",
540
+ "command_palette":
541
+ {
542
+ "height": 392.0,
543
+ "selected_items":
544
+ [
545
+ [
546
+ "dif",
547
+ "Git: Diff Current File"
548
+ ],
549
+ [
550
+ "inst",
551
+ "Package Control: Install Package"
552
+ ],
553
+ [
554
+ "remo",
555
+ "Package Control: Remove Package"
556
+ ],
557
+ [
558
+ "ins",
559
+ "Package Control: Install Package"
560
+ ],
561
+ [
562
+ "in",
563
+ "Package Control: Install Package"
564
+ ],
565
+ [
566
+ "install",
567
+ "Package Control: Install Package"
568
+ ],
569
+ [
570
+ "qui",
571
+ "Git: Quick Commit"
572
+ ],
573
+ [
574
+ "ad",
575
+ "Git: Add..."
576
+ ],
577
+ [
578
+ "gitstat",
579
+ "Git: Status"
580
+ ],
581
+ [
582
+ "qu",
583
+ "Git: Quick Commit"
584
+ ],
585
+ [
586
+ "q",
587
+ "Git: Quick Commit"
588
+ ],
589
+ [
590
+ "chec",
591
+ "Git: Checkout Current File"
592
+ ],
593
+ [
594
+ "di",
595
+ "Git: Diff Current File"
596
+ ],
597
+ [
598
+ "insta",
599
+ "Package Control: Install Package"
600
+ ],
601
+ [
602
+ "remove",
603
+ "Package Control: Remove Package"
604
+ ],
605
+ [
606
+ "rails",
607
+ "Simple Rails Navigator: List javascript files"
608
+ ],
609
+ [
610
+ "rem",
611
+ "Package Control: Remove Package"
612
+ ],
613
+ [
614
+ "instal ",
615
+ "Package Control: Install Package"
616
+ ],
617
+ [
618
+ "push",
619
+ "Git: Push"
620
+ ],
621
+ [
622
+ "dig",
623
+ "Snippet: Dir.glob(\"..\") { |file| .. }"
624
+ ],
625
+ [
626
+ "TODO",
627
+ "Package Control: Discover Packages"
628
+ ],
629
+ [
630
+ "ssra",
631
+ "Set Syntax: Ruby on Rails"
632
+ ],
633
+ [
634
+ "add",
635
+ "Git: Add..."
636
+ ],
637
+ [
638
+ "com",
639
+ "Git: Quick Commit"
640
+ ],
641
+ [
642
+ "ssjson",
643
+ "Set Syntax: JSON"
644
+ ],
645
+ [
646
+ "ssphp",
647
+ "Set Syntax: PHP"
648
+ ],
649
+ [
650
+ "sscss",
651
+ "Set Syntax: SCSS"
652
+ ],
653
+ [
654
+ "sscs",
655
+ "Set Syntax: SCSS"
656
+ ],
657
+ [
658
+ "sssql",
659
+ "Set Syntax: SQL"
660
+ ],
661
+ [
662
+ "sssass",
663
+ "Set Syntax: Sass"
664
+ ],
665
+ [
666
+ "sssa",
667
+ "Set Syntax: Sass"
668
+ ],
669
+ [
670
+ "ssscss",
671
+ "Set Syntax: SCSS"
672
+ ],
673
+ [
674
+ "ssrail",
675
+ "Set Syntax: Ruby on Rails"
676
+ ],
677
+ [
678
+ "stat",
679
+ "Git: Status"
680
+ ],
681
+ [
682
+ "gitco",
683
+ "Git: Commit"
684
+ ],
685
+ [
686
+ "ssrails",
687
+ "Set Syntax: Ruby on Rails"
688
+ ],
689
+ [
690
+ "json",
691
+ "Set Syntax: JSON"
692
+ ],
693
+ [
694
+ "pack",
695
+ "Package Control: Remove Package"
696
+ ],
697
+ [
698
+ "pac",
699
+ "Package Control: Remove Package"
700
+ ],
701
+ [
702
+ "pa",
703
+ "Package Control: Install Package"
704
+ ],
705
+ [
706
+ "instal",
707
+ "Package Control: Install Package"
708
+ ],
709
+ [
710
+ "Dif",
711
+ "Git: Diff All"
712
+ ],
713
+ [
714
+ "pus",
715
+ "Git: Push"
716
+ ],
717
+ [
718
+ " d",
719
+ "Git: Diff All"
720
+ ],
721
+ [
722
+ "sshtml",
723
+ "Set Syntax: HTML (Rails)"
724
+ ],
725
+ [
726
+ "sta",
727
+ "Git: Status"
728
+ ],
729
+ [
730
+ "packin",
731
+ "Package Control: Install Package"
732
+ ],
733
+ [
734
+ "packre",
735
+ "Package Control: Remove Package"
736
+ ],
737
+ [
738
+ "pul",
739
+ "Git: Pull"
740
+ ],
741
+ [
742
+ "ssjs",
743
+ "Set Syntax: JavaScript"
744
+ ],
745
+ [
746
+ "ssjsr",
747
+ "Set Syntax: JavaScript (Rails)"
748
+ ],
749
+ [
750
+ "sssq",
751
+ "Set Syntax: SQL"
752
+ ],
753
+ [
754
+ "log",
755
+ "Git: Log All"
756
+ ],
757
+ [
758
+ "w",
759
+ "HTML: Wrap Selection With Tag"
760
+ ],
761
+ [
762
+ "wra",
763
+ "HTML: Wrap Selection With Tag"
764
+ ],
765
+ [
766
+ "lower",
767
+ "Convert Case: Lower Case"
768
+ ],
769
+ [
770
+ "down",
771
+ "Snippet: downto(0) { |n| .. }"
772
+ ],
773
+ [
774
+ "up",
775
+ "Convert Case: Upper Case"
776
+ ],
777
+ [
778
+ "statu",
779
+ "Git: Status"
780
+ ],
781
+ [
782
+ "diff",
783
+ "Git: Diff All"
784
+ ],
785
+ [
786
+ "git di",
787
+ "Git: Diff All"
788
+ ],
789
+ [
790
+ "sshaml",
791
+ "Set Syntax: Ruby Haml"
792
+ ],
793
+ [
794
+ "ssht",
795
+ "Set Syntax: HTML (Rails)"
796
+ ],
797
+ [
798
+ "ssrub",
799
+ "Set Syntax: Ruby"
800
+ ],
801
+ [
802
+ "ssru",
803
+ "Set Syntax: Ruby"
804
+ ],
805
+ [
806
+ "bla",
807
+ "Git: Blame"
808
+ ],
809
+ [
810
+ "git ",
811
+ "Git: Blame"
812
+ ],
813
+ [
814
+ "ssh",
815
+ "Set Syntax: HTML (Rails)"
816
+ ],
817
+ [
818
+ "ss",
819
+ "Set Syntax: HTML"
820
+ ],
821
+ [
822
+ "sslo",
823
+ "Set Syntax: LaTeX Log"
824
+ ],
825
+ [
826
+ "ssr",
827
+ "Set Syntax: Ruby"
828
+ ],
829
+ [
830
+ "ssc",
831
+ "Set Syntax: CSS"
832
+ ],
833
+ [
834
+ "sste",
835
+ "Set Syntax: TeX"
836
+ ],
837
+ [
838
+ "a",
839
+ "Git: Add..."
840
+ ],
841
+ [
842
+ "ssjavas",
843
+ "Set Syntax: JavaScript (Rails)"
844
+ ],
845
+ [
846
+ "ssjscr",
847
+ "Set Syntax: JavaScript"
848
+ ],
849
+ [
850
+ "pull",
851
+ "Git: Pull"
852
+ ],
853
+ [
854
+ "status",
855
+ "Git: Status"
856
+ ],
857
+ [
858
+ "scss",
859
+ "Set Syntax: CSS"
860
+ ],
861
+ [
862
+ "sshm",
863
+ "Set Syntax: HTML"
864
+ ],
865
+ [
866
+ "sshtm",
867
+ "Set Syntax: HTML (Rails)"
868
+ ],
869
+ [
870
+ "dof",
871
+ "Code Folding: Fold Tag Attributes"
872
+ ],
873
+ [
874
+ "DIF",
875
+ "Git: Diff All"
876
+ ],
877
+ [
878
+ "get",
879
+ "Preferences: Default Global Settings"
880
+ ],
881
+ [
882
+ "pu",
883
+ "Git: Push"
884
+ ],
885
+ [
886
+ "ssha",
887
+ "Set Syntax: Ruby Haml"
888
+ ],
889
+ [
890
+ "add ",
891
+ "Git: Add..."
892
+ ],
893
+ [
894
+ "git lo",
895
+ "Git: Log All"
896
+ ],
897
+ [
898
+ "git",
899
+ "Git: Diff All"
900
+ ],
901
+ [
902
+ "sslate",
903
+ "Set Syntax: LaTeX"
904
+ ],
905
+ [
906
+ "ss jso",
907
+ "Set Syntax: JSON"
908
+ ],
909
+ [
910
+ "lo",
911
+ "Git: Log Current File"
912
+ ],
913
+ [
914
+ "git add",
915
+ "Git: Add..."
916
+ ],
917
+ [
918
+ "git pu",
919
+ "Git: Pull"
920
+ ],
921
+ [
922
+ "gimm",
923
+ "Git: Commit"
924
+ ],
925
+ [
926
+ "git com",
927
+ "Git: Commit"
928
+ ],
929
+ [
930
+ "git ad",
931
+ "Git: Add..."
932
+ ],
933
+ [
934
+ "gitdi",
935
+ "Git: Diff All"
936
+ ],
937
+ [
938
+ "gid",
939
+ "Git: Diff All"
940
+ ],
941
+ [
942
+ "Package Control: inst",
943
+ "Package Control: Install Package"
944
+ ]
945
+ ],
946
+ "width": 593.0
947
+ },
948
+ "console":
949
+ {
950
+ "height": 129.0
951
+ },
952
+ "distraction_free":
953
+ {
954
+ "menu_visible": true,
955
+ "show_minimap": false,
956
+ "show_open_files": false,
957
+ "show_tabs": false,
958
+ "side_bar_visible": false,
959
+ "status_bar_visible": false
960
+ },
961
+ "file_history":
962
+ [
963
+ "/home/antho/prog/same_table_translation/lib/same_table_translation/version.rb",
964
+ "/home/antho/prog/same_table_translation/.gitignore",
965
+ "/home/antho/prog/same_table_translation/README.md",
966
+ "/home/antho/prog/same_table_translation/lib/translatable.rb",
967
+ "/home/antho/prog/same_table_translation/Gemfile",
968
+ "/home/antho/prog/same_table_translation/same_table_translation.gemspec",
969
+ "/home/antho/prog/chat.js/.gitignore",
970
+ "/home/antho/prog/worms-like/app/assets/javascripts/physicEngine/shapes/circle.js.coffee",
971
+ "/home/antho/prog/worms-like/app/assets/javascripts/physicEngine/shapes/objectWithCollision.js.coffee",
972
+ "/home/antho/prog/towerjs.org/app/controllers/applicationController.coffee",
973
+ "/home/antho/prog/towerjs.org/app/models/post.coffee",
974
+ "/home/antho/prog/callmenow/app/views/layouts/application.html.haml",
975
+ "/home/antho/prog/callmenow/app/views/escorts/index.html.haml",
976
+ "/home/antho/prog/cv/app/views/pages/_contact.html.haml",
977
+ "/home/antho/prog/cv/app/views/pages/_skills.html.haml",
978
+ "/home/antho/prog/cv/app/views/pages/_me.html.haml",
979
+ "/home/antho/prog/cv/app/assets/stylesheets/skill.css.scss",
980
+ "/home/antho/prog/cv/public/sitemap.xml",
981
+ "/home/antho/prog/cv/app/views/application/sitemap.xml",
982
+ "/home/antho/prog/cv/app/controllers/application_controller.rb",
983
+ "/home/antho/prog/cv/config/routes.rb",
984
+ "/home/antho/prog/wedigup/db/seeds.rb",
985
+ "/home/antho/prog/wedigup/app/views/propositions/_show.html.haml",
986
+ "/home/antho/prog/wedigup/app/views/digups/show.html.haml",
987
+ "/home/antho/prog/wedigup/app/controllers/skills_controller.rb",
988
+ "/home/antho/prog/LinuxRubyInstaller/install.sh",
989
+ "/home/antho/prog/LinuxRubyInstaller/README.md",
990
+ "/home/antho/prog/LinuxRubyInstaller/databaseInstaller/mongodb.sh",
991
+ "/home/antho/prog/LinuxRubyInstaller/databaseInstaller/mysql.sh",
992
+ "/home/antho/prog/LinuxRubyInstaller/databaseInstaller/postgresql.sh",
993
+ "/home/antho/prog/LinuxRubyInstaller/databaseInstaller/sqlite3.sh",
994
+ "/home/antho/prog/LinuxRubyInstaller/install",
995
+ "/home/antho/prog/LinuxRubyInstaller/install_rails.sh",
996
+ "/home/antho/prog/wedigup/app/models/user.rb",
997
+ "/home/antho/prog/wedigup/app/models/category.rb",
998
+ "/var/log/jockey.log",
999
+ "/home/antho/.config/sublime-text-2/Packages/User/Preferences.sublime-settings",
1000
+ "/home/antho/.config/sublime-text-2/Packages/Default/Preferences.sublime-settings",
1001
+ "/home/antho/.config/sublime-text-2/Packages/CoffeeCompile/CoffeeCompile.sublime-settings",
1002
+ "/home/antho/.config/sublime-text-2/Packages/User/Default (Linux).sublime-keymap",
1003
+ "/home/antho/.config/sublime-text-2/Packages/User/CoffeeCompile.sublime-settings",
1004
+ "/home/antho/.config/sublime-text-2/Packages/CoffeeCompile/Keymaps/Default (Linux).sublime-keymap",
1005
+ "/home/antho/.config/sublime-text-2/Packages/Auto Encoding for Ruby/Auto Encoding for Ruby.sublime-settings",
1006
+ "/home/antho/.config/sublime-text-2/Packages/User/Auto Encoding for Ruby.sublime-settings",
1007
+ "/home/antho/.config/sublime-text-2/Packages/User/JSON.sublime-settings",
1008
+ "/home/antho/prog/wedigup/app/admin/digups.rb",
1009
+ "/home/antho/prog/wedigup/app/controllers/digups_controller.rb",
1010
+ "/home/antho/prog/wedigup/config/locales/fr.yml",
1011
+ "/home/antho/prog/wedigup/app/models/digup.rb",
1012
+ "/home/antho/prog/wedigup/Gemfile",
1013
+ "/home/antho/prog/wedigup/app/views/orders/index.html.haml",
1014
+ "/home/antho/prog/wedigup/app/models/commission.rb",
1015
+ "/home/antho/prog/wedigup/app/models/skill.rb",
1016
+ "/home/antho/prog/wedigup/app/models/digup_observer.rb",
1017
+ "/home/antho/prog/wedigup/app/views/digup_mailer/proposition_selected.html.haml",
1018
+ "/home/antho/prog/wedigup/app/models/selected_digup_observer.rb",
1019
+ "/home/antho/prog/wedigup/app/views/digup_mailer/new_digup.html.haml",
1020
+ "/home/antho/prog/wedigup/app/mailers/digup_mailer.rb",
1021
+ "/home/antho/prog/wedigup/app/controllers/application_controller.rb",
1022
+ "/home/antho/prog/wedigup/app/controllers/users_controller.rb",
1023
+ "/home/antho/prog/wedigup/app/controllers/orders_controller.rb",
1024
+ "/home/antho/prog/wedigup/app/views/users/show.html.haml",
1025
+ "/home/antho/Bureau/bla",
1026
+ "/home/antho/prog/cv/Gemfile",
1027
+ "/home/antho/prog/wedigup/app/views/digups/index.html.haml",
1028
+ "/home/antho/prog/wedigup/app/views/layouts/_usermenu.html.erb",
1029
+ "/home/antho/prog/cv/config/environments/production.rb",
1030
+ "/home/antho/prog/wedigup/config/environments/production.rb",
1031
+ "/home/antho/prog/wedigup/app/admin/propositions.rb",
1032
+ "/home/antho/prog/wedigup/config/routes.rb",
1033
+ "/home/antho/prog/wedigup/config/payment.yml",
1034
+ "/home/antho/prog/wedigup/tmp/cache/sass/3b58d094b5403264f006dc24e324880dfa4ee386/_typography.scssc",
1035
+ "/home/antho/prog/wedigup/app/models/comment.rb",
1036
+ "/home/antho/prog/wedigup/app/assets/stylesheets/bootstrap-responsive.css",
1037
+ "/home/antho/prog/wedigup/app/views/layouts/application.html.erb",
1038
+ "/home/antho/prog/wedigup/app/assets/stylesheets/bootstrap.min.css",
1039
+ "/home/antho/prog/wedigup/app/assets/javascripts/bootstrap.min.js",
1040
+ "/home/antho/prog/wedigup/app/assets/javascripts/order.js.coffee",
1041
+ "/home/antho/prog/wedigup/app/views/admin/category_questions/_form.html.haml",
1042
+ "/home/antho/prog/wedigup/app/controllers/propositions_controller.rb",
1043
+ "/home/antho/prog/wedigup/app/admin/dashboards.rb",
1044
+ "/home/antho/prog/wedigup/app/assets/javascripts/application.js.coffee",
1045
+ "/home/antho/prog/wedigup/app/assets/stylesheets/application.css",
1046
+ "/home/antho/prog/wedigup/app/views/admin/skill_questions/_form.html.haml",
1047
+ "/home/antho/prog/wedigup/app/views/application/index.html.haml",
1048
+ "/home/antho/prog/wedigup/app/views/devise/confirmations/new.html.erb",
1049
+ "/home/antho/prog/wedigup/app/views/devise/passwords/edit.html.erb",
1050
+ "/home/antho/prog/wedigup/app/views/devise/passwords/new.html.erb",
1051
+ "/home/antho/prog/wedigup/app/views/devise/registrations/edit.html.erb",
1052
+ "/home/antho/prog/wedigup/app/views/devise/registrations/new.html.erb",
1053
+ "/home/antho/prog/wedigup/app/views/devise/sessions/new.html.erb",
1054
+ "/home/antho/prog/wedigup/app/views/digup_mailer/new_proposition.html.haml",
1055
+ "/home/antho/prog/wedigup/app/views/skills/index.html.haml",
1056
+ "/home/antho/prog/wedigup/config/initializers/devise.rb",
1057
+ "/home/antho/prog/wedigup/config/initializers/numeric_humanize.rb",
1058
+ "/home/antho/prog/wedigup/app/controllers/selected_digups_controller.rb",
1059
+ "/home/antho/prog/wedigup/app/helpers/digups_helper.rb",
1060
+ "/home/antho/prog/wedigup/app/models/ability.rb",
1061
+ "/home/antho/prog/wedigup/app/models/admin_user.rb",
1062
+ "/home/antho/prog/wedigup/app/views/application/contact.html.haml",
1063
+ "/home/antho/prog/wedigup/app/views/application/legal.html.haml",
1064
+ "/home/antho/prog/wedigup/app/views/digup_mailer/comment_mail_to_digup_owner.html.haml",
1065
+ "/home/antho/prog/wedigup/app/views/digup_mailer/comment_mail_to_webnoser.html.haml",
1066
+ "/home/antho/prog/wedigup/app/views/digup_mailer/new_webnoser_mail.html.haml",
1067
+ "/home/antho/prog/wedigup/app/views/selected_digups/index.html.haml",
1068
+ "/home/antho/prog/wedigup/config/locales/devise.fr.yml",
1069
+ "/home/antho/prog/wedigup/config/locales/log/from_en_to_fr.yml",
1070
+ "/home/antho/prog/wedigup/db/migrate/20120914145500_create_comments.rb",
1071
+ "/home/antho/prog/wedigup/test/fixtures/categories.yml",
1072
+ "/home/antho/prog/wedigup/test/fixtures/category_answer_digups.yml",
1073
+ "/home/antho/prog/wedigup/test/fixtures/category_answers.yml",
1074
+ "/home/antho/prog/wedigup/test/fixtures/category_questions.yml",
1075
+ "/home/antho/prog/wedigup/test/fixtures/commissions.yml",
1076
+ "/home/antho/prog/wedigup/test/fixtures/digups.yml",
1077
+ "/home/antho/prog/wedigup/test/fixtures/evaluation_propositions.yml",
1078
+ "/home/antho/prog/wedigup/test/fixtures/links.yml",
1079
+ "/home/antho/prog/wedigup/test/fixtures/orders.yml",
1080
+ "/home/antho/prog/wedigup/test/fixtures/posts.yml",
1081
+ "/home/antho/prog/wedigup/test/fixtures/propositions.yml",
1082
+ "/home/antho/prog/wedigup/test/fixtures/providers.yml",
1083
+ "/home/antho/prog/wedigup/test/fixtures/selected_digups.yml",
1084
+ "/home/antho/prog/wedigup/test/fixtures/skill_answers.yml",
1085
+ "/home/antho/prog/wedigup/test/fixtures/skill_questions.yml",
1086
+ "/home/antho/prog/wedigup/test/fixtures/skills.yml",
1087
+ "/home/antho/prog/wedigup/app/models/selected_digup.rb",
1088
+ "/home/antho/prog/wedigup/app/views/digups/edit.html.haml",
1089
+ "/home/antho/prog/wedigup/app/views/skills/_form.html.haml",
1090
+ "/home/antho/prog/wedigup/app/views/skills/edit.html.haml"
1091
+ ],
1092
+ "find":
1093
+ {
1094
+ "height": 33.0
1095
+ },
1096
+ "find_in_files":
1097
+ {
1098
+ "height": 93.0,
1099
+ "where_history":
1100
+ [
1101
+ "<open folders>",
1102
+ "/var/www/application",
1103
+ "<open folders>",
1104
+ "/var/www/wedigup/application",
1105
+ "<open folders>",
1106
+ "/home/antho/quidizz/",
1107
+ "/home/antho/bla/quidizz/",
1108
+ "/home/antho/bla/quidizz/app/controllers",
1109
+ "/home/antho/bla/quidizz/app/controller",
1110
+ "/home/antho/bla/quidizz/",
1111
+ "/home/antho/bla/quidizz/app/assets/javascripts",
1112
+ "/home/antho/bla/quidizz/",
1113
+ "/home/antho/bla/quidizz/app/assets/stylesheets/",
1114
+ "/home/antho/bla/quidizz/",
1115
+ "/home/antho/quidizz/",
1116
+ "/home/antho/quidizz/app/",
1117
+ "/home/antho/quidizz/app/assets",
1118
+ "/home/antho/quidizz/app/controllers",
1119
+ "/home/antho/quidizz/app/models",
1120
+ "/home/antho/quidizz/app/assets/",
1121
+ "/home/antho/quidizz/app/assets/javascripts/backbone/",
1122
+ "/home/antho/quidizz/app/assets",
1123
+ "/home/antho/quidizz/",
1124
+ "/home/antho/quidizz/app",
1125
+ "/home/antho/quidizz/",
1126
+ "/home/antho/quidizz/app/models",
1127
+ "/home/antho/quidizz/app/model",
1128
+ "/home/antho/quidizz/",
1129
+ "/home/antho/quidizz/app/assets/",
1130
+ "/home/antho/quidizz/app/assets/javascripts/backbone",
1131
+ "/home/antho/quidizz/app/assets/javascript",
1132
+ "/home/antho/quidizz/",
1133
+ "/home/antho/quidizz/db",
1134
+ "/home/antho/quidizz/app/assets",
1135
+ "/home/antho/quidizz/",
1136
+ "/home/antho/quidizz/app/assets",
1137
+ "/home/antho/quidizz/app/assets/javascripts/backbone/",
1138
+ "/home/antho/quidizz/app/assets/javascript/backbone/",
1139
+ "/home/antho/quidizz/app/assets/backbone/",
1140
+ "/home/antho/quidizz/app/assets/backbone",
1141
+ "/home/antho/quidizz/",
1142
+ "/home/antho/quidizz/app",
1143
+ "/home/antho/quidizz/",
1144
+ "/home/antho/quidizz/app/",
1145
+ "/home/antho/quidizz/app/assets/javascripts",
1146
+ "/home/antho/quidizz",
1147
+ "/home/antho/quidizz/app/",
1148
+ "/home/antho/quidizz/app/assets",
1149
+ "/home/antho/quidizz/app/",
1150
+ "/home/antho/quidizz/app/assets/",
1151
+ "/home/antho/quidizz/app/assets/javascripts/backbone"
1152
+ ]
1153
+ },
1154
+ "find_state":
1155
+ {
1156
+ "case_sensitive": true,
1157
+ "find_history":
1158
+ [
1159
+ "translatable",
1160
+ "Translatable",
1161
+ "translatable",
1162
+ "antho",
1163
+ "topic",
1164
+ "maine de compétence ",
1165
+ "fragment",
1166
+ "vous n'avez",
1167
+ "vous n'evez",
1168
+ "new_webnoser_mail",
1169
+ "TODO",
1170
+ "orders_path",
1171
+ "paypal_cert_id",
1172
+ "paypal_secret",
1173
+ "paypal_cert_id",
1174
+ "Commission.price",
1175
+ "price",
1176
+ "purcent",
1177
+ "radius",
1178
+ "-webkit-border-radius.*border-radius:",
1179
+ "-webkit-border-radius",
1180
+ "border-radius",
1181
+ "-webkit-border-radius:.*;-moz-border-radius:.*;border-radius:*;",
1182
+ "-webkit-border-radius:.*;-moz-border-radius:.*;border-radius:[.;]*;",
1183
+ "-webkit-border-radius:.*;-moz-border-radius:.*;border-radius:[.\\;]*;",
1184
+ "-webkit-border-radius:.*;-moz-border-radius:.*;border-radius:.*;",
1185
+ "radius",
1186
+ " +\\n",
1187
+ " \\n",
1188
+ "form",
1189
+ "propositions/show",
1190
+ "proposition/show",
1191
+ "categories",
1192
+ "TODO",
1193
+ "enought_points_for",
1194
+ "span",
1195
+ "price",
1196
+ ".fadeIn",
1197
+ "price",
1198
+ ".pricehover",
1199
+ "escort",
1200
+ "date",
1201
+ "digup_accessible",
1202
+ "skills",
1203
+ "Quelqu'un a demandé un lien pour changer votre",
1204
+ "SkillQuestion",
1205
+ "is_valid",
1206
+ "Faq",
1207
+ "is_valid",
1208
+ "topic",
1209
+ "category",
1210
+ "Category",
1211
+ "Topic",
1212
+ "phone_fix",
1213
+ "country",
1214
+ "city",
1215
+ "Gagnez des points Wedigup en partageant sur vos réseaux sociaux",
1216
+ "postal_code",
1217
+ "address2",
1218
+ "address1",
1219
+ "user",
1220
+ "Mentions légales",
1221
+ "legal",
1222
+ "comment_digup_path",
1223
+ "note_proposition_path",
1224
+ "note",
1225
+ "celà",
1226
+ "budjet",
1227
+ "voir le produit",
1228
+ "ne peux",
1229
+ "aucune proposition",
1230
+ "skill",
1231
+ "skill_answers",
1232
+ "skill_question",
1233
+ "skill_answers",
1234
+ "skill_question",
1235
+ "dashboard",
1236
+ "ign",
1237
+ "dashboard",
1238
+ "klass",
1239
+ "batch",
1240
+ "can_follow",
1241
+ "only_path",
1242
+ "player",
1243
+ "Comment",
1244
+ "user",
1245
+ "player",
1246
+ "Player",
1247
+ "player",
1248
+ "arel_table",
1249
+ "twitter",
1250
+ "puts",
1251
+ "twitter",
1252
+ "puts",
1253
+ "Authentifié avec succès",
1254
+ "Player",
1255
+ "player",
1256
+ "Player",
1257
+ "player",
1258
+ "@player",
1259
+ "Player",
1260
+ "confirmation",
1261
+ "layouts/note",
1262
+ "Aucun DigUps sélectionnés avec ce statut pour le moment",
1263
+ "propositions/evaluation",
1264
+ "digup",
1265
+ "TODO",
1266
+ "aucuns digup",
1267
+ "WN",
1268
+ "throu",
1269
+ "as: :date",
1270
+ "right",
1271
+ "\n ",
1272
+ "arel",
1273
+ "todo",
1274
+ "digup_comment_path",
1275
+ "created_at",
1276
+ "otre notation a bien étée prise en compte",
1277
+ "console.log",
1278
+ "puts",
1279
+ "//=",
1280
+ "categorie_id",
1281
+ "wcarousel",
1282
+ "btn-danger",
1283
+ "COMPLETE",
1284
+ "have_full_access",
1285
+ "can_create_proposition",
1286
+ "skill"
1287
+ ],
1288
+ "highlight": true,
1289
+ "in_selection": false,
1290
+ "preserve_case": false,
1291
+ "regex": false,
1292
+ "replace_history":
1293
+ [
1294
+ "SameTableTranslation",
1295
+ "same_table_translation",
1296
+ "",
1297
+ "\\n",
1298
+ "User",
1299
+ "user",
1300
+ "User",
1301
+ "Webnoser",
1302
+ "#=",
1303
+ "have_full_access?(digup)",
1304
+ "\"Aspirateur\"",
1305
+ "\"Home cinéma\"",
1306
+ "\"Lave linge\"",
1307
+ "category: \"Réfrigérateur / Congélateur\"",
1308
+ "category: \"Lave vaisselle\"",
1309
+ "category: \"Télévision\"",
1310
+ "category: \"Rétro projecteur\"",
1311
+ "category: \"Tablette tactile\"",
1312
+ "category: \"Appareil photo numérique\"",
1313
+ "category: \"Chaîne hifi\"",
1314
+ "category: \"Ordinateur\"",
1315
+ "category: \"Imprimante multifonction\"",
1316
+ "category: \"Téléphonie\"",
1317
+ "]",
1318
+ "}",
1319
+ "",
1320
+ " answers: [",
1321
+ "'",
1322
+ "label:",
1323
+ "",
1324
+ "},\n{",
1325
+ ":",
1326
+ " category:",
1327
+ "good",
1328
+ "",
1329
+ "},\n{",
1330
+ "elem",
1331
+ "hide",
1332
+ "hide-block",
1333
+ "\n<keybind",
1334
+ "\n<action",
1335
+ "span",
1336
+ "li",
1337
+ "%td= @location.information.",
1338
+ "td",
1339
+ "tr",
1340
+ "t(:",
1341
+ "%li\n %strong\n ",
1342
+ " \n ",
1343
+ "strong",
1344
+ ",",
1345
+ "name_en",
1346
+ "category_en",
1347
+ "clean_hash",
1348
+ ":",
1349
+ ": ",
1350
+ "",
1351
+ "point",
1352
+ "f",
1353
+ "amenities",
1354
+ ":",
1355
+ "add",
1356
+ "_",
1357
+ "'",
1358
+ "/assets/",
1359
+ "{\n/assets/",
1360
+ "{\n",
1361
+ ";\n",
1362
+ "\n",
1363
+ "",
1364
+ "/assets/",
1365
+ "",
1366
+ "assets",
1367
+ "assets/",
1368
+ "",
1369
+ "@",
1370
+ ":",
1371
+ ",",
1372
+ "/",
1373
+ ":",
1374
+ "user",
1375
+ "announcement",
1376
+ "",
1377
+ ".label",
1378
+ "user",
1379
+ "User",
1380
+ "user",
1381
+ "users",
1382
+ "user",
1383
+ "\"User\"",
1384
+ "\"Escort\"",
1385
+ "\"User\"",
1386
+ "\"users\"",
1387
+ "\"escorts\"",
1388
+ "\"user\"",
1389
+ "\"escort\"",
1390
+ "\"user\"",
1391
+ "\"escort\"",
1392
+ "escort",
1393
+ "rails_root",
1394
+ "to",
1395
+ "from",
1396
+ "unless ",
1397
+ "",
1398
+ ",",
1399
+ ":",
1400
+ "/",
1401
+ "@options.view",
1402
+ "product",
1403
+ "address",
1404
+ "bold",
1405
+ "",
1406
+ "h5",
1407
+ " ",
1408
+ "config",
1409
+ "_",
1410
+ "",
1411
+ "<label class=\"pretty\"",
1412
+ "(100 / 3).to_f",
1413
+ "(100 / 6).to_f",
1414
+ ":valid",
1415
+ " ",
1416
+ "keywords_for_question",
1417
+ "150px",
1418
+ "\n\n\n\n\n\n\n\n\n\n\n\n\nf\n\n",
1419
+ "\n\n\n",
1420
+ "\n\n",
1421
+ "\"color: #333; font-size: 18px; font-family: Georgia, 'Times New Roman', Times, serif;\""
1422
+ ],
1423
+ "reverse": false,
1424
+ "show_context": true,
1425
+ "use_buffer2": true,
1426
+ "whole_word": true,
1427
+ "wrap": true
1428
+ },
1429
+ "groups":
1430
+ [
1431
+ {
1432
+ "selected": 1,
1433
+ "sheets":
1434
+ [
1435
+ {
1436
+ "buffer": 0,
1437
+ "file": "same_table_translation.gemspec",
1438
+ "settings":
1439
+ {
1440
+ "buffer_size": 953,
1441
+ "regions":
1442
+ {
1443
+ },
1444
+ "selection":
1445
+ [
1446
+ [
1447
+ 729,
1448
+ 729
1449
+ ]
1450
+ ],
1451
+ "settings":
1452
+ {
1453
+ "syntax": "Packages/Ruby/Ruby.tmLanguage",
1454
+ "tab_size": 2,
1455
+ "translate_tabs_to_spaces": true
1456
+ },
1457
+ "translation.x": 14.0,
1458
+ "translation.y": 0.0,
1459
+ "zoom_level": 1.0
1460
+ },
1461
+ "type": "text"
1462
+ },
1463
+ {
1464
+ "buffer": 1,
1465
+ "file": "lib/same_table_translation.rb",
1466
+ "settings":
1467
+ {
1468
+ "buffer_size": 1135,
1469
+ "regions":
1470
+ {
1471
+ },
1472
+ "selection":
1473
+ [
1474
+ [
1475
+ 688,
1476
+ 688
1477
+ ]
1478
+ ],
1479
+ "settings":
1480
+ {
1481
+ "syntax": "Packages/Ruby/Ruby.tmLanguage"
1482
+ },
1483
+ "translation.x": 0.0,
1484
+ "translation.y": 0.0,
1485
+ "zoom_level": 1.0
1486
+ },
1487
+ "type": "text"
1488
+ }
1489
+ ]
1490
+ }
1491
+ ],
1492
+ "incremental_find":
1493
+ {
1494
+ "height": 34.0
1495
+ },
1496
+ "input":
1497
+ {
1498
+ "height": 29.0
1499
+ },
1500
+ "layout":
1501
+ {
1502
+ "cells":
1503
+ [
1504
+ [
1505
+ 0,
1506
+ 0,
1507
+ 1,
1508
+ 1
1509
+ ]
1510
+ ],
1511
+ "cols":
1512
+ [
1513
+ 0.0,
1514
+ 1.0
1515
+ ],
1516
+ "rows":
1517
+ [
1518
+ 0.0,
1519
+ 1.0
1520
+ ]
1521
+ },
1522
+ "menu_visible": true,
1523
+ "output.coffeecompile_output":
1524
+ {
1525
+ "height": 100.0
1526
+ },
1527
+ "output.git":
1528
+ {
1529
+ "height": 100.0
1530
+ },
1531
+ "replace":
1532
+ {
1533
+ "height": 62.0
1534
+ },
1535
+ "save_all_on_build": true,
1536
+ "select_file":
1537
+ {
1538
+ "height": 0.0,
1539
+ "selected_items":
1540
+ [
1541
+ [
1542
+ "cir",
1543
+ "app/assets/javascripts/physicEngine/shapes/circle.js.coffee"
1544
+ ],
1545
+ [
1546
+ "phy",
1547
+ "app/assets/javascripts/physicEngine/physicEngine.js.coffee"
1548
+ ],
1549
+ [
1550
+ "object",
1551
+ "app/assets/javascripts/physicEngine/shapes/objectWithCollision.js.coffee"
1552
+ ],
1553
+ [
1554
+ "index",
1555
+ "app/views/escorts/index.html.haml"
1556
+ ],
1557
+ [
1558
+ "apphtml",
1559
+ "app/views/layouts/application.html.haml"
1560
+ ],
1561
+ [
1562
+ "ski",
1563
+ "app/views/pages/_skills.html.haml"
1564
+ ],
1565
+ [
1566
+ "con",
1567
+ "app/views/pages/_contact.html.haml"
1568
+ ],
1569
+ [
1570
+ "me",
1571
+ "app/views/pages/_me.html.haml"
1572
+ ],
1573
+ [
1574
+ "cont",
1575
+ "app/views/pages/_contact.html.haml"
1576
+ ],
1577
+ [
1578
+ "skilcs",
1579
+ "app/assets/stylesheets/skill.css.scss"
1580
+ ],
1581
+ [
1582
+ "skil",
1583
+ "app/views/pages/_skills.html.haml"
1584
+ ],
1585
+ [
1586
+ "rout",
1587
+ "config/routes.rb"
1588
+ ],
1589
+ [
1590
+ "dig",
1591
+ "app/models/digup.rb"
1592
+ ],
1593
+ [
1594
+ "cate",
1595
+ "app/models/category.rb"
1596
+ ],
1597
+ [
1598
+ "user",
1599
+ "app/models/user.rb"
1600
+ ],
1601
+ [
1602
+ "proposh",
1603
+ "app/views/propositions/_show.html.haml"
1604
+ ],
1605
+ [
1606
+ "digsh",
1607
+ "app/views/digups/show.html.haml"
1608
+ ],
1609
+ [
1610
+ "gem",
1611
+ "Gemfile"
1612
+ ],
1613
+ [
1614
+ "admidig",
1615
+ "app/admin/digups.rb"
1616
+ ],
1617
+ [
1618
+ "digcon",
1619
+ "app/controllers/digups_controller.rb"
1620
+ ],
1621
+ [
1622
+ "fr",
1623
+ "config/locales/fr.yml"
1624
+ ],
1625
+ [
1626
+ "seed",
1627
+ "db/seeds.rb"
1628
+ ],
1629
+ [
1630
+ "com",
1631
+ "app/models/commission.rb"
1632
+ ],
1633
+ [
1634
+ "digup",
1635
+ "app/models/digup.rb"
1636
+ ],
1637
+ [
1638
+ "comm",
1639
+ "app/models/commission.rb"
1640
+ ],
1641
+ [
1642
+ "ordersh",
1643
+ "app/views/orders/index.html.haml"
1644
+ ],
1645
+ [
1646
+ "production",
1647
+ "config/environments/production.rb"
1648
+ ],
1649
+ [
1650
+ "prorb",
1651
+ "app/admin/propositions.rb"
1652
+ ],
1653
+ [
1654
+ "show",
1655
+ "app/views/digups/show.html.haml"
1656
+ ],
1657
+ [
1658
+ "menu",
1659
+ "app/views/layouts/_usermenu.html.erb"
1660
+ ],
1661
+ [
1662
+ "route",
1663
+ "config/routes.rb"
1664
+ ],
1665
+ [
1666
+ "paye",
1667
+ "config/payment.yml"
1668
+ ],
1669
+ [
1670
+ "payp",
1671
+ "tmp/cache/sass/3b58d094b5403264f006dc24e324880dfa4ee386/_typography.scssc"
1672
+ ],
1673
+ [
1674
+ "commiss",
1675
+ "app/models/commission.rb"
1676
+ ],
1677
+ [
1678
+ "digsho",
1679
+ "app/views/digups/show.html.haml"
1680
+ ],
1681
+ [
1682
+ "bootst",
1683
+ "app/assets/javascripts/bootstrap.min.js"
1684
+ ],
1685
+ [
1686
+ "apph",
1687
+ "app/views/layouts/application.html.erb"
1688
+ ],
1689
+ [
1690
+ "appcon",
1691
+ "app/controllers/application_controller.rb"
1692
+ ],
1693
+ [
1694
+ "propocon",
1695
+ "app/controllers/propositions_controller.rb"
1696
+ ],
1697
+ [
1698
+ "skilcon",
1699
+ "app/controllers/skills_controller.rb"
1700
+ ],
1701
+ [
1702
+ "usercon",
1703
+ "app/controllers/users_controller.rb"
1704
+ ],
1705
+ [
1706
+ "selecteddigcon",
1707
+ "app/controllers/selected_digups_controller.rb"
1708
+ ],
1709
+ [
1710
+ "selecd",
1711
+ "app/models/selected_digup.rb"
1712
+ ],
1713
+ [
1714
+ "digucon",
1715
+ "app/controllers/digups_controller.rb"
1716
+ ],
1717
+ [
1718
+ "skillcon",
1719
+ "app/controllers/skills_controller.rb"
1720
+ ],
1721
+ [
1722
+ "skillform",
1723
+ "app/views/skills/_form.html.haml"
1724
+ ],
1725
+ [
1726
+ "topi",
1727
+ "app/models/topic.rb"
1728
+ ],
1729
+ [
1730
+ "apphe",
1731
+ "app/helpers/application_helper.rb"
1732
+ ],
1733
+ [
1734
+ "propo",
1735
+ "app/models/proposition.rb"
1736
+ ],
1737
+ [
1738
+ "skillrb",
1739
+ "app/models/skill.rb"
1740
+ ],
1741
+ [
1742
+ "order",
1743
+ "app/models/order.rb"
1744
+ ],
1745
+ [
1746
+ "ordercon",
1747
+ "app/controllers/orders_controller.rb"
1748
+ ],
1749
+ [
1750
+ "createadmin",
1751
+ "db/migrate/20120912182336_devise_create_admin_users.rb"
1752
+ ],
1753
+ [
1754
+ "ordecs",
1755
+ "app/assets/stylesheets/order.css.scss"
1756
+ ],
1757
+ [
1758
+ "ordercss",
1759
+ "app/assets/stylesheets/order.css.scss"
1760
+ ],
1761
+ [
1762
+ "offer",
1763
+ "app/models/offer.rb"
1764
+ ],
1765
+ [
1766
+ "orderindex",
1767
+ "app/views/orders/index.html.haml"
1768
+ ],
1769
+ [
1770
+ "appcs",
1771
+ "app/assets/stylesheets/application.css"
1772
+ ],
1773
+ [
1774
+ "orderinde",
1775
+ "app/views/orders/index.html.haml"
1776
+ ],
1777
+ [
1778
+ "abi",
1779
+ "app/models/ability.rb"
1780
+ ],
1781
+ [
1782
+ "anal",
1783
+ "app/views/layouts/_analytics.html.erb"
1784
+ ],
1785
+ [
1786
+ "categ",
1787
+ "app/admin/categories.rb"
1788
+ ],
1789
+ [
1790
+ "commen",
1791
+ "app/models/comment.rb"
1792
+ ],
1793
+ [
1794
+ "footer",
1795
+ "app/views/layouts/_footer.html.erb"
1796
+ ],
1797
+ [
1798
+ "devrb",
1799
+ "config/environments/development.rb"
1800
+ ],
1801
+ [
1802
+ "topba",
1803
+ "app/views/layouts/_topbar.html.erb"
1804
+ ],
1805
+ [
1806
+ "appht",
1807
+ "app/views/layouts/application.html.erb"
1808
+ ],
1809
+ [
1810
+ "selec",
1811
+ "app/controllers/selected_digups_controller.rb"
1812
+ ],
1813
+ [
1814
+ "abil",
1815
+ "app/models/ability.rb"
1816
+ ],
1817
+ [
1818
+ "skilin",
1819
+ "app/views/skills/index.html.haml"
1820
+ ],
1821
+ [
1822
+ "appjs",
1823
+ "app/assets/javascripts/application.js.coffee"
1824
+ ],
1825
+ [
1826
+ "skilinde",
1827
+ "app/views/skills/index.html.haml"
1828
+ ],
1829
+ [
1830
+ "skillqu",
1831
+ "app/models/skill_question.rb"
1832
+ ],
1833
+ [
1834
+ "skillques",
1835
+ "app/admin/skill_questions.rb"
1836
+ ],
1837
+ [
1838
+ "digma",
1839
+ "app/mailers/digup_mailer.rb"
1840
+ ],
1841
+ [
1842
+ "devi",
1843
+ "config/initializers/devise.rb"
1844
+ ],
1845
+ [
1846
+ "mailer",
1847
+ "app/mailers/digup_mailer.rb"
1848
+ ],
1849
+ [
1850
+ "dash",
1851
+ "app/admin/dashboards.rb"
1852
+ ],
1853
+ [
1854
+ "faq",
1855
+ "app/models/faq.rb"
1856
+ ],
1857
+ [
1858
+ "sch",
1859
+ "db/schema.rb"
1860
+ ],
1861
+ [
1862
+ "top",
1863
+ "app/models/topic.rb"
1864
+ ],
1865
+ [
1866
+ "dignew",
1867
+ "app/views/digups/new.html.haml"
1868
+ ],
1869
+ [
1870
+ "topic",
1871
+ "app/models/topic.rb"
1872
+ ],
1873
+ [
1874
+ "commi",
1875
+ "app/models/commission.rb"
1876
+ ],
1877
+ [
1878
+ "mess",
1879
+ "app/views/layouts/_messages.html.erb"
1880
+ ],
1881
+ [
1882
+ "digu",
1883
+ "app/models/digup.rb"
1884
+ ],
1885
+ [
1886
+ "skilqu",
1887
+ "app/models/skill_question.rb"
1888
+ ],
1889
+ [
1890
+ "skillque",
1891
+ "app/models/skill_question.rb"
1892
+ ],
1893
+ [
1894
+ "catque",
1895
+ "app/models/category_question.rb"
1896
+ ],
1897
+ [
1898
+ "cateque",
1899
+ "app/admin/category_questions.rb"
1900
+ ],
1901
+ [
1902
+ "cateans",
1903
+ "app/models/category_answer.rb"
1904
+ ],
1905
+ [
1906
+ "catequ",
1907
+ "app/models/category_question.rb"
1908
+ ],
1909
+ [
1910
+ "categorq",
1911
+ "app/models/category_question.rb"
1912
+ ],
1913
+ [
1914
+ "admiform",
1915
+ "app/views/admin/skill_questions/_form.html.haml"
1916
+ ],
1917
+ [
1918
+ "answer",
1919
+ "app/models/skill_answer.rb"
1920
+ ],
1921
+ [
1922
+ "apphel",
1923
+ "app/helpers/application_helper.rb"
1924
+ ],
1925
+ [
1926
+ "skillq",
1927
+ "app/models/skill_question.rb"
1928
+ ],
1929
+ [
1930
+ "skian",
1931
+ "app/models/skill_answer.rb"
1932
+ ],
1933
+ [
1934
+ "ques",
1935
+ "app/models/skill_question.rb"
1936
+ ],
1937
+ [
1938
+ "admin",
1939
+ "config/initializers/active_admin.rb"
1940
+ ],
1941
+ [
1942
+ "socia",
1943
+ "app/views/layouts/_social.html.erb"
1944
+ ],
1945
+ [
1946
+ "commis",
1947
+ "app/models/commission.rb"
1948
+ ],
1949
+ [
1950
+ "digob",
1951
+ "app/models/digup_observer.rb"
1952
+ ],
1953
+ [
1954
+ "apprb",
1955
+ "config/application.rb"
1956
+ ],
1957
+ [
1958
+ "digumail",
1959
+ "app/mailers/digup_mailer.rb"
1960
+ ],
1961
+ [
1962
+ "mail",
1963
+ "app/mailers/digup_mailer.rb"
1964
+ ],
1965
+ [
1966
+ "comme",
1967
+ "app/models/comment.rb"
1968
+ ],
1969
+ [
1970
+ "prop",
1971
+ "app/admin/propositions.rb"
1972
+ ],
1973
+ [
1974
+ "appco",
1975
+ "app/controllers/application_controller.rb"
1976
+ ],
1977
+ [
1978
+ "post",
1979
+ "app/models/post.rb"
1980
+ ],
1981
+ [
1982
+ "usersh",
1983
+ "app/views/users/show.html.haml"
1984
+ ],
1985
+ [
1986
+ "digupshow",
1987
+ "app/views/digups/show.html.haml"
1988
+ ],
1989
+ [
1990
+ "geml",
1991
+ "Gemfile.lock"
1992
+ ],
1993
+ [
1994
+ "app",
1995
+ "app/controllers/application_controller.rb"
1996
+ ],
1997
+ [
1998
+ "om",
1999
+ "app/controllers/users/omniauth_callbacks_controller.rb"
2000
+ ],
2001
+ [
2002
+ "sess",
2003
+ "app/views/devise/sessions/new.html.erb"
2004
+ ],
2005
+ [
2006
+ "soci",
2007
+ "config/social_networks.yml"
2008
+ ],
2009
+ [
2010
+ "session",
2011
+ "app/views/devise/sessions/new.html.erb"
2012
+ ],
2013
+ [
2014
+ "link",
2015
+ "app/views/devise/shared/_links.erb"
2016
+ ],
2017
+ [
2018
+ "dev",
2019
+ "config/initializers/devise.rb"
2020
+ ],
2021
+ [
2022
+ "devise",
2023
+ "config/initializers/devise.rb"
2024
+ ],
2025
+ [
2026
+ "_lin",
2027
+ "app/views/devise/shared/_links.erb"
2028
+ ],
2029
+ [
2030
+ "apphelp",
2031
+ "app/helpers/application_helper.rb"
2032
+ ],
2033
+ [
2034
+ "prodrb",
2035
+ "config/environments/production.rb"
2036
+ ],
2037
+ [
2038
+ "usersho",
2039
+ "app/views/users/show.html.haml"
2040
+ ],
2041
+ [
2042
+ "usesho",
2043
+ "app/views/users/show.html.haml"
2044
+ ],
2045
+ [
2046
+ "note",
2047
+ "app/views/layouts/_note.html.haml"
2048
+ ],
2049
+ [
2050
+ "skillinde",
2051
+ "app/views/skills/index.html.haml"
2052
+ ]
2053
+ ],
2054
+ "width": 0.0
2055
+ },
2056
+ "select_project":
2057
+ {
2058
+ "height": 500.0,
2059
+ "selected_items":
2060
+ [
2061
+ [
2062
+ "",
2063
+ "/home/antho/prog/wedigup/untitled.sublime-project"
2064
+ ],
2065
+ [
2066
+ "quid",
2067
+ "/home/antho/prog/quidizz/untitled.sublime-project"
2068
+ ],
2069
+ [
2070
+ " ca",
2071
+ "/home/antho/prog/callmenow/untitled.sublime-project"
2072
+ ],
2073
+ [
2074
+ "cv",
2075
+ "/home/antho/prog/cv/untitled.sublime-project"
2076
+ ],
2077
+ [
2078
+ "wor",
2079
+ "/home/antho/prog/worms-like/untitled.sublime-project"
2080
+ ],
2081
+ [
2082
+ "worm",
2083
+ "/home/antho/prog/worms-like/untitled.sublime-project"
2084
+ ],
2085
+ [
2086
+ "wo",
2087
+ "/home/antho/prog/wedigup/untitled.sublime-project"
2088
+ ],
2089
+ [
2090
+ "qui",
2091
+ "/home/antho/prog/quidizz/untitled.sublime-project"
2092
+ ],
2093
+ [
2094
+ "cal",
2095
+ "/home/antho/prog/callmenow/untitled.sublime-project"
2096
+ ],
2097
+ [
2098
+ "call",
2099
+ "/home/antho/prog/callmenow/untitled.sublime-project"
2100
+ ],
2101
+ [
2102
+ "howm",
2103
+ "/home/antho/prog/howManyTimeBefore/untitled.sublime-project"
2104
+ ],
2105
+ [
2106
+ "callme",
2107
+ "/home/antho/prog/callmenow/untitled.sublime-project"
2108
+ ],
2109
+ [
2110
+ "bonj",
2111
+ "/home/antho/prog/bonjourMontpellierParis/untitled.sublime-project"
2112
+ ],
2113
+ [
2114
+ "cl",
2115
+ "/home/antho/prog/callmenow/untitled.sublime-project"
2116
+ ]
2117
+ ],
2118
+ "width": 380.0
2119
+ },
2120
+ "show_minimap": true,
2121
+ "show_open_files": true,
2122
+ "show_tabs": true,
2123
+ "side_bar_visible": true,
2124
+ "side_bar_width": 298.0,
2125
+ "status_bar_visible": true
2126
+ }