social_share_privacy 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/generators/social_share_privacy/install_generator.rb +12 -0
- data/lib/generators/templates/de_social_share_privacy.yml +23 -0
- data/lib/generators/templates/en_social_share_privacy.yml +23 -0
- data/lib/social_share_privacy/version.rb +1 -1
- data/vendor/assets/javascripts/jquery.socialshareprivacy.js.erb +19 -20
- data/vendor/assets/stylesheets/socialshareprivacy.css.erb +7 -7
- metadata +4 -2
- data/lib/generators/install_generator.rb +0 -0
@@ -0,0 +1,12 @@
|
|
1
|
+
module SocialSharePrivacy
|
2
|
+
module Generators
|
3
|
+
class InstallGenerator < Rails::Generators::Base
|
4
|
+
source_root File.expand_path("../../templates", __FILE__)
|
5
|
+
|
6
|
+
def copy_locales
|
7
|
+
copy_file "en_social_share_privacy.yml", "config/locales/#{file_name}"
|
8
|
+
copy_file "de_social_share_privacy.yml", "config/locales/#{file_name}"
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
de:
|
2
|
+
social_share_privacy:
|
3
|
+
facebook:
|
4
|
+
txt_info: |
|
5
|
+
2 Klicks für mehr Datenschutz: Erst wenn Sie hier klicken, wird der Button aktiv und Sie können Ihre Empfehlung an Facebook senden. Schon beim Aktivieren werden Daten an Dritte übertragen -> siehe i.
|
6
|
+
txt_off: nicht mit Facebook verbunden
|
7
|
+
txt_on: mit Facebook verbunden
|
8
|
+
display_name: Facebook
|
9
|
+
twitter:
|
10
|
+
txt_info: |
|
11
|
+
2 Klicks für mehr Datenschutz: Erst wenn Sie hier klicken, wird der Button aktiv und Sie können Ihre Empfehlung an Facebook senden. Schon beim Aktivieren werden Daten an Dritte übertragen -> siehe i.
|
12
|
+
txt_off: nicht mit Twitter verbunden
|
13
|
+
txt_on: mit Twitter verbunden
|
14
|
+
display_name: Twitter
|
15
|
+
gplus:
|
16
|
+
txt_info: |
|
17
|
+
2 Klicks für mehr Datenschutz: Erst wenn Sie hier klicken, wird der Button aktiv und Sie können Ihre Empfehlung an Facebook senden. Schon beim Aktivieren werden Daten an Dritte übertragen -> siehe i.
|
18
|
+
txt_off: nicht mit Google+ verbunden
|
19
|
+
txt_on: mit Google+ verbunden
|
20
|
+
display_name: Google+
|
21
|
+
txt_help: |
|
22
|
+
Wenn Sie diese Felder durch einen Klick aktivieren, werden Informationen an Facebook, Twitter oder Google in die USA übertragen und unter Umständen auch dort gespeichert. Näheres erfahren Sie durch einen Klick auf das i.
|
23
|
+
settings_perma: Dauerhaft aktivieren und Datenübertragung zustimmen:
|
@@ -0,0 +1,23 @@
|
|
1
|
+
en:
|
2
|
+
social_share_privacy:
|
3
|
+
facebook:
|
4
|
+
txt_info: |
|
5
|
+
2 Klicks für mehr Datenschutz: Erst wenn Sie hier klicken, wird der Button aktiv und Sie können Ihre Empfehlung an Facebook senden. Schon beim Aktivieren werden Daten an Dritte übertragen -> siehe i.
|
6
|
+
txt_off: nicht mit Facebook verbunden
|
7
|
+
txt_on: mit Facebook verbunden
|
8
|
+
display_name: Facebook
|
9
|
+
twitter:
|
10
|
+
txt_info: |
|
11
|
+
2 Klicks für mehr Datenschutz: Erst wenn Sie hier klicken, wird der Button aktiv und Sie können Ihre Empfehlung an Facebook senden. Schon beim Aktivieren werden Daten an Dritte übertragen -> siehe i.
|
12
|
+
txt_off: nicht mit Twitter verbunden
|
13
|
+
txt_on: mit Twitter verbunden
|
14
|
+
display_name: Twitter
|
15
|
+
gplus:
|
16
|
+
txt_info: |
|
17
|
+
2 Klicks für mehr Datenschutz: Erst wenn Sie hier klicken, wird der Button aktiv und Sie können Ihre Empfehlung an Facebook senden. Schon beim Aktivieren werden Daten an Dritte übertragen -> siehe i.
|
18
|
+
txt_off: nicht mit Google+ verbunden
|
19
|
+
txt_on: mit Google+ verbunden
|
20
|
+
display_name: Google+
|
21
|
+
txt_help: |
|
22
|
+
Wenn Sie diese Felder durch einen Klick aktivieren, werden Informationen an Facebook, Twitter oder Google in die USA übertragen und unter Umständen auch dort gespeichert. Näheres erfahren Sie durch einen Klick auf das i.
|
23
|
+
settings_perma: Dauerhaft aktivieren und Datenübertragung zustimmen:
|
@@ -85,44 +85,43 @@
|
|
85
85
|
'services' : {
|
86
86
|
'facebook' : {
|
87
87
|
'status' : 'on',
|
88
|
-
'txt_info' : '
|
89
|
-
'txt_fb_off' : '
|
90
|
-
'txt_fb_on' : '
|
88
|
+
'txt_info' : '<%= t('social_share_privacy.facebook.txt_info') %>',
|
89
|
+
'txt_fb_off' : '<%= t('social_share_privacy.facebook.txt_off') %>',
|
90
|
+
'txt_fb_on' : '<%= t('social_share_privacy.facebook.txt_on') %>',
|
91
91
|
'perma_option' : 'on',
|
92
|
-
'display_name' : '
|
92
|
+
'display_name' : '<%= t('social_share_privacy.facebook.display_name') %>',
|
93
93
|
'referrer_track' : '',
|
94
|
-
'language' : '
|
94
|
+
'language' : '<%= I18n.locale.to_s %>',
|
95
95
|
'action' : 'recommend'
|
96
96
|
},
|
97
97
|
'twitter' : {
|
98
98
|
'status' : 'on',
|
99
|
-
'txt_info' : '
|
100
|
-
'txt_twitter_off' : '
|
101
|
-
'txt_twitter_on' : '
|
99
|
+
'txt_info' : '<%= t('social_share_privacy.twitter.txt_info') %>',
|
100
|
+
'txt_twitter_off' : '<%= t('social_share_privacy.twitter.txt_off') %>',
|
101
|
+
'txt_twitter_on' : '<%= t('social_share_privacy.twitter.txt_on') %>',
|
102
102
|
'perma_option' : 'on',
|
103
|
-
'display_name' : '
|
103
|
+
'display_name' : '<%= t('social_share_privacy.twitter.display_name') %>',
|
104
104
|
'referrer_track' : '',
|
105
105
|
'tweet_text' : getTweetText,
|
106
|
-
'language' : '
|
106
|
+
'language' : '<%= I18n.locale.to_s %>'
|
107
107
|
},
|
108
108
|
'gplus' : {
|
109
109
|
'status' : 'on',
|
110
|
-
'txt_info' : '
|
111
|
-
'txt_gplus_off' : '
|
112
|
-
'txt_gplus_on' : '
|
110
|
+
'txt_info' : '<%= t('social_share_privacy.gplus.txt_info') %>',
|
111
|
+
'txt_gplus_off' : '<%= t('social_share_privacy.gplus.txt_off') %>',
|
112
|
+
'txt_gplus_on' : '<%= t('social_share_privacy.gplus.txt_on') %>',
|
113
113
|
'perma_option' : 'on',
|
114
|
-
'display_name' : '
|
114
|
+
'display_name' : '<%= t('social_share_privacy.gplus.display_name') %>,
|
115
115
|
'referrer_track' : '',
|
116
|
-
'language' : '
|
116
|
+
'language' : '<%= I18n.locale.to_s %>'
|
117
117
|
}
|
118
118
|
},
|
119
119
|
'info_link' : 'http://www.heise.de/ct/artikel/2-Klicks-fuer-mehr-Datenschutz-1333879.html',
|
120
|
-
'txt_help' : '
|
121
|
-
'settings_perma' : '
|
120
|
+
'txt_help' : '<%= t('social_share_privacy.txt_help') %>',
|
121
|
+
'settings_perma' : '<%= t('social_share_privacy.settings_perma') %>'
|
122
122
|
'cookie_path' : '/',
|
123
123
|
'cookie_domain' : document.location.host,
|
124
124
|
'cookie_expires' : '365',
|
125
|
-
'css_path' : 'socialshareprivacy/socialshareprivacy.css',
|
126
125
|
'uri' : getURI
|
127
126
|
};
|
128
127
|
|
@@ -155,7 +154,7 @@
|
|
155
154
|
if (facebook_on) {
|
156
155
|
var fb_enc_uri = encodeURIComponent(uri + options.services.facebook.referrer_track);
|
157
156
|
var fb_code = '<iframe src="http://www.facebook.com/plugins/like.php?locale=' + options.services.facebook.language + '&href=' + fb_enc_uri + '&send=false&layout=button_count&width=120&show_faces=false&action=' + options.services.facebook.action + '&colorscheme=light&font&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:145px; height:21px;" allowTransparency="true"></iframe>';
|
158
|
-
var fb_dummy_btn = '<img src="<%= image_path 'social_share_privacy/dummy_facebook.png' %>" alt="Facebook "Like"-Dummy" class="fb_like_privacy_dummy" />';
|
157
|
+
var fb_dummy_btn = '<img src="<%= if I18n.locale == :de; image_path 'social_share_privacy/dummy_facebook_de.png'; else; image_path 'social_share_privacy/dummy_facebook.png'; end %>" alt="Facebook "Like"-Dummy" class="fb_like_privacy_dummy" />';
|
159
158
|
|
160
159
|
context.append('<li class="facebook help_info"><span class="info">' + options.services.facebook.txt_info + '</span><span class="switch off">' + options.services.facebook.txt_fb_off + '</span><div class="fb_like dummy_btn">' + fb_dummy_btn + '</div></li>');
|
161
160
|
|
@@ -263,7 +262,7 @@
|
|
263
262
|
if (((facebook_on && facebook_perma)
|
264
263
|
|| (twitter_on && twitter_perma)
|
265
264
|
|| (gplus_on && gplus_perma))
|
266
|
-
|
265
|
+
{
|
267
266
|
|
268
267
|
// Cookies abrufen
|
269
268
|
var cookie_list = document.cookie.split(';');
|
@@ -27,27 +27,27 @@
|
|
27
27
|
}
|
28
28
|
/* Facebook begin */
|
29
29
|
.social_share_privacy_area .facebook {
|
30
|
-
width:
|
30
|
+
width: 180px;
|
31
31
|
display: inline-block;
|
32
32
|
}
|
33
33
|
.social_share_privacy_area .facebook .fb_like iframe {
|
34
|
-
width:
|
34
|
+
width: 145px;
|
35
35
|
}
|
36
36
|
/* Facebook end */
|
37
37
|
/* Twitter begin */
|
38
38
|
.social_share_privacy_area .twitter {
|
39
|
-
width:
|
39
|
+
width: 148px;
|
40
40
|
}
|
41
41
|
.social_share_privacy_area li div.tweet {
|
42
|
-
width:
|
42
|
+
width: 115px;
|
43
43
|
}
|
44
44
|
/* Twitter end */
|
45
45
|
/* Google+ begin */
|
46
46
|
.social_share_privacy_area .gplus {
|
47
|
-
width:
|
47
|
+
width: 123px;
|
48
48
|
}
|
49
49
|
.social_share_privacy_area li div.gplusone {
|
50
|
-
width:
|
50
|
+
width: 90px;
|
51
51
|
}
|
52
52
|
/* Google+ end */
|
53
53
|
/* Switch begin */
|
@@ -55,7 +55,7 @@
|
|
55
55
|
display: inline-block;
|
56
56
|
text-indent: -9999em;
|
57
57
|
background: transparent url(social_share_privacy/socialshareprivacy_on_off.png) no-repeat 0 0 scroll;
|
58
|
-
width:
|
58
|
+
width: 43px;
|
59
59
|
height: 12px;
|
60
60
|
overflow: hidden;
|
61
61
|
float: left;
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: social_share_privacy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -55,7 +55,9 @@ files:
|
|
55
55
|
- lib/tasks/social_share_privacy_tasks.rake
|
56
56
|
- lib/social_share_privacy.rb
|
57
57
|
- lib/social_share_privacy/version.rb
|
58
|
-
- lib/generators/
|
58
|
+
- lib/generators/templates/en_social_share_privacy.yml
|
59
|
+
- lib/generators/templates/de_social_share_privacy.yml
|
60
|
+
- lib/generators/social_share_privacy/install_generator.rb
|
59
61
|
- vendor/assets/images/social_share_privacy/settings.png
|
60
62
|
- vendor/assets/images/social_share_privacy/dummy_twitter.png
|
61
63
|
- vendor/assets/images/social_share_privacy/socialshareprivacy_on_off.png
|
File without changes
|