Version Description
- Improved user interface design on the widget admin form.
- Added iTunes icon.
Download this release
Release Info
Developer | lucymtc |
Plugin | Simple Follow Me Social Buttons Widget |
Version | 1.5 |
Comparing to | |
See all releases |
Code changes from version 1.4 to 1.5
- assets/css/admin.css +53 -2
- assets/css/icons.css +126 -0
- assets/css/style.css +0 -124
- assets/fonts/social_buttons.eot +0 -0
- assets/fonts/social_buttons.svg +2 -5
- assets/fonts/social_buttons.ttf +0 -0
- assets/fonts/social_buttons.woff +0 -0
- assets/js/widget.js +51 -0
- includes/widget.php +109 -85
- languages/sfmsb_domain-en_EN.mo +0 -0
- languages/sfmsb_domain-en_EN.po +23 -17
- languages/sfmsb_domain-es_ES.mo +0 -0
- languages/sfmsb_domain-es_ES.po +25 -17
- readme.txt +8 -3
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- simple-follow-me-social-buttons-widget.php +11 -9
assets/css/admin.css
CHANGED
@@ -15,18 +15,69 @@
|
|
15 |
|
16 |
/* @group widget */
|
17 |
|
18 |
-
div.widget[id*=_sfmsb] input[type=checkbox],
|
19 |
div.widget[id*=_sfmsb] input[type=radio],
|
20 |
div.widget[id*=_sfmsb] select,
|
21 |
div.widget[id*=_sfmsb] input.s{
|
22 |
margin-top: -15px;
|
23 |
-
}
|
24 |
|
25 |
div.widget[id*=_sfmsb] input.s{
|
26 |
width:100px;
|
27 |
}
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
/* @end */
|
32 |
|
15 |
|
16 |
/* @group widget */
|
17 |
|
18 |
+
/*div.widget[id*=_sfmsb] input[type=checkbox],
|
19 |
div.widget[id*=_sfmsb] input[type=radio],
|
20 |
div.widget[id*=_sfmsb] select,
|
21 |
div.widget[id*=_sfmsb] input.s{
|
22 |
margin-top: -15px;
|
23 |
+
}*/
|
24 |
|
25 |
div.widget[id*=_sfmsb] input.s{
|
26 |
width:100px;
|
27 |
}
|
28 |
|
29 |
+
div.sfmsb-icons-container a{
|
30 |
+
text-decoration:none;
|
31 |
+
margin:0px 8px 10px 8px;
|
32 |
+
display:block;
|
33 |
+
float:left;
|
34 |
+
}
|
35 |
+
|
36 |
+
div.sfmsb-icons-container{
|
37 |
+
position:relative;
|
38 |
+
margin-bottom:30px;
|
39 |
+
border:2px solid #e4e3e3;
|
40 |
+
padding:10px 10px 70px 10px;
|
41 |
+
-webkit-border-radius: 10px 10px 10px 10px;
|
42 |
+
border-radius: 10px 10px 10px 10px;
|
43 |
+
}
|
44 |
+
|
45 |
+
div.sfmsb-icons-container span{
|
46 |
+
font-size:35px;
|
47 |
+
}
|
48 |
+
|
49 |
+
div.sfmsb-input-block,
|
50 |
+
div.sfmsb-initial-message{
|
51 |
+
position:absolute;
|
52 |
+
width: 93%;
|
53 |
+
}
|
54 |
+
|
55 |
+
div.sfmsb-input-block{
|
56 |
+
display:none;
|
57 |
+
bottom:10px;
|
58 |
+
}
|
59 |
|
60 |
+
div.sfmsb-initial-message{
|
61 |
+
bottom:20px;
|
62 |
+
}
|
63 |
+
|
64 |
+
div.sfmsb-input-block input[type=text]{
|
65 |
+
margin-top:5px;
|
66 |
+
}
|
67 |
+
|
68 |
+
a.sfmsb-disable{
|
69 |
+
opacity: 0.2;
|
70 |
+
}
|
71 |
+
|
72 |
+
a.sfmsb-disable:hover{
|
73 |
+
opacity: 0.5;
|
74 |
+
}
|
75 |
+
|
76 |
+
a.sfmsb-pending{
|
77 |
+
opacity: 0.5;
|
78 |
+
-webkit-box-shadow: 0 0 0 3px #E8ED45;
|
79 |
+
box-shadow: 0 0 0 3px #E8ED45;
|
80 |
+
}
|
81 |
|
82 |
/* @end */
|
83 |
|
assets/css/icons.css
ADDED
@@ -0,0 +1,126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@font-face {
|
2 |
+
font-family: 'social_buttons';
|
3 |
+
src:url('../fonts/social_buttons.eot?6rn0ly2');
|
4 |
+
src:url('../fonts/social_buttons.eot?#iefix6rn0ly2') format('embedded-opentype'),
|
5 |
+
url('../fonts/social_buttons.woff?6rn0ly2') format('woff'),
|
6 |
+
url('../fonts/social_buttons.ttf?6rn0ly2') format('truetype'),
|
7 |
+
url('../fonts/social_buttons.svg?6rn0ly2#social_buttons') format('svg');
|
8 |
+
font-weight: normal;
|
9 |
+
font-style: normal;
|
10 |
+
}
|
11 |
+
|
12 |
+
[class^="sfmsb-icon-"], [class*=" sfmsb-icon-"] {
|
13 |
+
font-family: 'social_buttons';
|
14 |
+
speak: none;
|
15 |
+
font-style: normal;
|
16 |
+
font-weight: normal;
|
17 |
+
font-variant: normal;
|
18 |
+
text-transform: none;
|
19 |
+
line-height: 1;
|
20 |
+
|
21 |
+
/* Better Font Rendering =========== */
|
22 |
+
-webkit-font-smoothing: antialiased;
|
23 |
+
-moz-osx-font-smoothing: grayscale;
|
24 |
+
}
|
25 |
+
|
26 |
+
/* V2 */
|
27 |
+
|
28 |
+
.sfmsb-icon-googleplus.square:before {
|
29 |
+
content: "\e60e";
|
30 |
+
}
|
31 |
+
.sfmsb-icon-googleplus.circle:before {
|
32 |
+
content: "\e617";
|
33 |
+
}
|
34 |
+
|
35 |
+
.sfmsb-icon-facebook.square:before {
|
36 |
+
content: "\e610";
|
37 |
+
}
|
38 |
+
.sfmsb-icon-facebook.circle:before {
|
39 |
+
content: "\e601";
|
40 |
+
}
|
41 |
+
|
42 |
+
.sfmsb-icon-twitter.square:before {
|
43 |
+
content: "\e612";
|
44 |
+
}
|
45 |
+
.sfmsb-icon-twitter.circle:before {
|
46 |
+
content: "\e615";
|
47 |
+
}
|
48 |
+
|
49 |
+
.sfmsb-icon-feed.square:before {
|
50 |
+
content: "\e613";
|
51 |
+
}
|
52 |
+
.sfmsb-icon-feed.circle:before {
|
53 |
+
content: "\e614";
|
54 |
+
}
|
55 |
+
|
56 |
+
.sfmsb-icon-vimeo.square:before {
|
57 |
+
content: "\e61b";
|
58 |
+
}
|
59 |
+
.sfmsb-icon-vimeo.circle:before {
|
60 |
+
content: "\e616";
|
61 |
+
}
|
62 |
+
|
63 |
+
.sfmsb-icon-github.circle:before {
|
64 |
+
content: "\e602";
|
65 |
+
}
|
66 |
+
|
67 |
+
.sfmsb-icon-github.square:before {
|
68 |
+
content: "\e603";
|
69 |
+
}
|
70 |
+
|
71 |
+
.sfmsb-icon-wordpress.circle:before {
|
72 |
+
content: "\e61d";
|
73 |
+
}
|
74 |
+
.sfmsb-icon-wordpress.square:before {
|
75 |
+
content: "\e61c";
|
76 |
+
}
|
77 |
+
|
78 |
+
.sfmsb-icon-pinterest.square:before {
|
79 |
+
content: "\e60b";
|
80 |
+
}
|
81 |
+
|
82 |
+
.sfmsb-icon-pinterest.circle:before {
|
83 |
+
content: "\e60a";
|
84 |
+
}
|
85 |
+
|
86 |
+
.sfmsb-icon-linkedin.square:before {
|
87 |
+
content: "\e611";
|
88 |
+
}
|
89 |
+
.sfmsb-icon-linkedin.circle:before {
|
90 |
+
content: "\e606";
|
91 |
+
}
|
92 |
+
|
93 |
+
.sfmsb-icon-youtube.square:before {
|
94 |
+
content: "\e61e";
|
95 |
+
}
|
96 |
+
.sfmsb-icon-youtube.circle:before {
|
97 |
+
content: "\e60f";
|
98 |
+
}
|
99 |
+
|
100 |
+
.sfmsb-icon-instagram.square:before {
|
101 |
+
content: "\e604";
|
102 |
+
}
|
103 |
+
.sfmsb-icon-instagram.circle:before {
|
104 |
+
content: "\e605";
|
105 |
+
}
|
106 |
+
|
107 |
+
.sfmsb-icon-email.square:before {
|
108 |
+
content: "\e608";
|
109 |
+
}
|
110 |
+
.sfmsb-icon-email.circle:before {
|
111 |
+
content: "\e621";
|
112 |
+
}
|
113 |
+
|
114 |
+
.sfmsb-icon-soundcloud.square:before {
|
115 |
+
content: "\e61a";
|
116 |
+
}
|
117 |
+
.sfmsb-icon-soundcloud.circle:before {
|
118 |
+
content: "\e619";
|
119 |
+
}
|
120 |
+
|
121 |
+
.sfmsb-icon-itunes.square:before {
|
122 |
+
content: "\e607";
|
123 |
+
}
|
124 |
+
.sfmsb-icon-itunes.circle:before {
|
125 |
+
content: "\e600";
|
126 |
+
}
|
assets/css/style.css
CHANGED
@@ -43,130 +43,6 @@
|
|
43 |
text-decoration:none !important;
|
44 |
}
|
45 |
|
46 |
-
|
47 |
-
@font-face {
|
48 |
-
font-family: 'social_buttons';
|
49 |
-
src:url('../fonts/social_buttons.eot?6rn0ly');
|
50 |
-
src:url('../fonts/social_buttons.eot?#iefix6rn0ly') format('embedded-opentype'),
|
51 |
-
url('../fonts/social_buttons.woff?6rn0ly') format('woff'),
|
52 |
-
url('../fonts/social_buttons.ttf?6rn0ly') format('truetype'),
|
53 |
-
url('../fonts/social_buttons.svg?6rn0ly#social_buttons') format('svg');
|
54 |
-
font-weight: normal;
|
55 |
-
font-style: normal;
|
56 |
-
}
|
57 |
-
|
58 |
-
[class^="sfmsb-icon-"], [class*=" sfmsb-icon-"] {
|
59 |
-
font-family: 'social_buttons';
|
60 |
-
speak: none;
|
61 |
-
font-style: normal;
|
62 |
-
font-weight: normal;
|
63 |
-
font-variant: normal;
|
64 |
-
text-transform: none;
|
65 |
-
line-height: 1;
|
66 |
-
|
67 |
-
/* Better Font Rendering =========== */
|
68 |
-
-webkit-font-smoothing: antialiased;
|
69 |
-
-moz-osx-font-smoothing: grayscale;
|
70 |
-
}
|
71 |
-
|
72 |
-
/* V2 */
|
73 |
-
|
74 |
-
.sfmsb-icon-googleplus-square:before {
|
75 |
-
content: "\e60e";
|
76 |
-
}
|
77 |
-
.sfmsb-icon-googleplus-circle:before {
|
78 |
-
content: "\e617";
|
79 |
-
}
|
80 |
-
|
81 |
-
.sfmsb-icon-facebook-square:before {
|
82 |
-
content: "\e610";
|
83 |
-
}
|
84 |
-
.sfmsb-icon-facebook-circle:before {
|
85 |
-
content: "\e601";
|
86 |
-
}
|
87 |
-
|
88 |
-
.sfmsb-icon-twitter-square:before {
|
89 |
-
content: "\e612";
|
90 |
-
}
|
91 |
-
.sfmsb-icon-twitter-circle:before {
|
92 |
-
content: "\e615";
|
93 |
-
}
|
94 |
-
|
95 |
-
.sfmsb-icon-feed-square:before {
|
96 |
-
content: "\e613";
|
97 |
-
}
|
98 |
-
.sfmsb-icon-feed-circle:before {
|
99 |
-
content: "\e614";
|
100 |
-
}
|
101 |
-
|
102 |
-
.sfmsb-icon-vimeo-square:before {
|
103 |
-
content: "\e61b";
|
104 |
-
}
|
105 |
-
.sfmsb-icon-vimeo-circle:before {
|
106 |
-
content: "\e616";
|
107 |
-
}
|
108 |
-
|
109 |
-
.sfmsb-icon-github-circle:before {
|
110 |
-
content: "\e602";
|
111 |
-
}
|
112 |
-
|
113 |
-
.sfmsb-icon-github-square:before {
|
114 |
-
content: "\e603";
|
115 |
-
}
|
116 |
-
|
117 |
-
.sfmsb-icon-wordpress-circle:before {
|
118 |
-
content: "\e61d";
|
119 |
-
}
|
120 |
-
.sfmsb-icon-wordpress-square:before {
|
121 |
-
content: "\e61c";
|
122 |
-
}
|
123 |
-
|
124 |
-
.sfmsb-icon-pinterest-square:before {
|
125 |
-
content: "\e60b";
|
126 |
-
}
|
127 |
-
|
128 |
-
.sfmsb-icon-pinterest-circle:before {
|
129 |
-
content: "\e60a";
|
130 |
-
}
|
131 |
-
|
132 |
-
.sfmsb-icon-linkedin-square:before {
|
133 |
-
content: "\e611";
|
134 |
-
}
|
135 |
-
.sfmsb-icon-linkedin-circle:before {
|
136 |
-
content: "\e606";
|
137 |
-
}
|
138 |
-
|
139 |
-
.sfmsb-icon-youtube-square:before {
|
140 |
-
content: "\e61e";
|
141 |
-
}
|
142 |
-
.sfmsb-icon-youtube-circle:before {
|
143 |
-
content: "\e60f";
|
144 |
-
}
|
145 |
-
|
146 |
-
.sfmsb-icon-instagram-square:before {
|
147 |
-
content: "\e604";
|
148 |
-
}
|
149 |
-
.sfmsb-icon-instagram-circle:before {
|
150 |
-
content: "\e605";
|
151 |
-
}
|
152 |
-
|
153 |
-
.sfmsb-icon-email-square:before {
|
154 |
-
content: "\e608";
|
155 |
-
}
|
156 |
-
.sfmsb-icon-email-circle:before {
|
157 |
-
content: "\e621";
|
158 |
-
}
|
159 |
-
|
160 |
-
.sfmsb-icon-soundcloud-square:before {
|
161 |
-
content: "\e61a";
|
162 |
-
}
|
163 |
-
.sfmsb-icon-soundcloud-circle:before {
|
164 |
-
content: "\e619";
|
165 |
-
}
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
/* @end */
|
171 |
|
172 |
|
43 |
text-decoration:none !important;
|
44 |
}
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
/* @end */
|
47 |
|
48 |
|
assets/fonts/social_buttons.eot
CHANGED
Binary file
|
assets/fonts/social_buttons.svg
CHANGED
@@ -7,14 +7,14 @@
|
|
7 |
<font-face units-per-em="512" ascent="480" descent="-32" />
|
8 |
<missing-glyph horiz-adv-x="512" />
|
9 |
<glyph unicode=" " d="" horiz-adv-x="256" />
|
10 |
-
<glyph unicode="" d="
|
11 |
<glyph unicode="" d="M256 480c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.408-114.624 256-256 256zM322.176 224.032l-41.952-0.032-0.032-153.6h-57.568v153.6h-38.4v52.928l38.4 0.032-0.064 31.168c0 43.2 11.712 69.472 62.56 69.472h42.368v-52.96h-26.496c-19.808 0-20.768-7.392-20.768-21.184l-0.064-26.496h47.616l-5.6-52.928z" />
|
12 |
<glyph unicode="" d="M256 480c-141.385 0-256-114.615-256-256s114.615-256 256-256 256 114.615 256 256-114.615 256-256 256zM408.028 71.972c-19.76-19.758-42.756-35.266-68.354-46.093-6.503-2.75-13.106-5.164-19.8-7.246v38.367c0 20.167-6.917 35-20.75 44.5 8.667 0.833 16.625 2 23.875 3.5s14.917 3.667 23 6.5 15.333 6.208 21.75 10.125 12.583 9 18.5 15.25 10.875 13.333 14.875 21.25 7.167 17.417 9.5 28.5 3.5 23.292 3.5 36.625c0 25.833-8.417 47.833-25.25 66 7.667 20 6.833 41.75-2.5 65.25l-6.25 0.75c-4.333 0.5-12.125-1.333-23.375-5.5s-23.875-11-37.875-20.5c-19.833 5.5-40.417 8.25-61.75 8.25-21.5 0-42-2.75-61.5-8.25-8.833 6-17.208 10.958-25.125 14.875s-14.25 6.583-19 8-9.167 2.292-13.25 2.625-6.708 0.417-7.875 0.25-2-0.333-2.5-0.5c-9.333-23.667-10.167-45.417-2.5-65.25-16.833-18.167-25.25-40.167-25.25-66 0-13.333 1.167-25.542 3.5-36.625s5.5-20.583 9.5-28.5 8.958-15 14.875-21.25 12.083-11.333 18.5-15.25 13.667-7.292 21.75-10.125 15.75-5 23-6.5 15.208-2.667 23.875-3.5c-13.667-9.333-20.5-24.167-20.5-44.5v-39.115c-7.549 2.247-14.99 4.902-22.3 7.994-25.597 10.827-48.594 26.335-68.353 46.093-19.758 19.759-35.267 42.757-46.093 68.354-11.199 26.479-16.878 54.631-16.878 83.674s5.679 57.195 16.879 83.675c10.827 25.597 26.335 48.594 46.093 68.353s42.756 35.267 68.353 46.093c26.48 11.2 54.632 16.879 83.675 16.879s57.195-5.679 83.675-16.879c25.599-10.827 48.595-26.335 68.354-46.093 19.758-19.758 35.266-42.756 46.093-68.353 11.199-26.48 16.878-54.632 16.878-83.675s-5.679-57.195-16.879-83.675c-10.827-25.596-26.335-48.595-46.093-68.353z" />
|
13 |
<glyph unicode="" d="M131.736 100.316c0-13.526 11.447-20.291 34.334-20.291 20.032 0 30.044 7.021 30.044 21.066 0 13.27-10.923 19.898-32.772 19.898-21.073 0.003-31.606-6.887-31.606-20.673zM426.674 480h-341.33c-46.938 0-85.344-38.405-85.344-85.344v-341.313c0-46.968 38.406-85.343 85.344-85.343h341.33c46.934 0 85.326 38.375 85.326 85.344v341.312c0 46.939-38.391 85.344-85.326 85.344zM237.864 275.506c-3.642-1.302-8.844-2.729-15.606-4.293 2.080-5.983 3.123-11.576 3.123-16.777 0-16.646-5.009-31.149-15.022-43.506-10.015-12.354-22.956-19.703-38.823-22.043-10.402-1.562-15.604-7.156-15.604-16.779 0-3.381 1.689-6.765 5.072-10.145 4.422-4.943 10.924-8.066 19.509-9.367 37.195-5.721 55.793-21.197 55.793-46.427 0-40.321-24.062-60.48-72.181-60.48-19.771 0-36.028 3.513-48.772 10.534-16.129 8.845-24.188 22.761-24.188 41.75 0 21.853 12.096 36.809 36.282 44.869v0.78c-8.842 5.462-13.263 13.785-13.263 24.972 0 14.566 4.162 23.672 12.484 27.311v0.781c-8.323 2.862-15.737 9.366-22.24 19.513-7.282 10.926-10.925 22.63-10.925 35.115 0 18.729 6.635 34.335 19.896 46.82 12.748 11.707 27.964 17.558 45.653 17.558 12.747 0 24.579-3.119 35.505-9.361 12.485 0 26.921 3.12 43.313 9.361l-0.006-40.186zM301.089 140.503h-44.093c0.521 5.201 0.779 14.042 0.779 26.532v121.346c0 12.227-0.262 20.682-0.779 25.359h44.093c-0.521-4.942-0.78-13.135-0.78-24.582v-119.782c0-13.267 0.259-22.892 0.78-28.873zM298.159 352.759c-5.332-5.722-11.642-8.581-18.923-8.581-7.543 0-13.979 2.859-19.313 8.581-5.333 5.726-8.001 12.486-8.001 20.289 0 8.067 2.668 14.956 8.001 20.683 5.333 5.721 11.771 8.584 19.313 8.584 7.281 0 13.592-2.863 18.923-8.584 5.333-5.728 7.999-12.615 7.999-20.683 0-7.803-2.666-14.564-7.999-20.289zM420.845 145.576c-9.627-5.205-21.203-7.803-34.729-7.803-18.985 0-32.124 6.76-39.405 20.287-5.465 10.145-8.193 26.14-8.193 47.989v69.842h0.39v0.781l-5.854 0.391c-3.382 0-7.806-0.391-13.267-1.171v37.848h19.117v15.216c0 7.285-0.39 13.14-1.17 17.56h45.259c-0.775-4.94-1.168-10.533-1.168-16.776v-15.999h33.942v-37.846c-1.299 0-3.705 0.129-7.218 0.389-3.512 0.261-6.828 0.393-9.949 0.393h-16.776v-72.572c0-17.433 5.725-26.146 17.167-26.146 8.062 0 15.348 2.209 21.854 6.632v-39.015zM160.608 279.797c-16.388 0-24.582-9.627-24.582-28.873 0-17.951 8.194-26.924 24.582-26.924 15.868 0 23.801 9.104 23.801 27.313 0 7.545-1.82 14.047-5.461 19.511-4.423 5.981-10.537 8.973-18.34 8.973z" />
|
14 |
<glyph unicode="" d="M70.677 473.329h370.652c35.2 0 64-26.061 64-64v-370.658c0-37.945-28.8-64-64-64h-370.652c-35.21 0-64.005 26.061-64.005 64v370.658c0 37.939 28.795 64 64.005 64v0zM369.925 417.925c-12.349 0-22.446-10.097-22.446-22.451v-53.734c0-12.35 10.096-22.451 22.446-22.451h56.361c12.344 0 22.446 10.102 22.446 22.451v53.734c0 12.354-10.102 22.451-22.446 22.451h-56.361zM448.973 262.451h-43.894c4.152-13.558 6.4-27.92 6.4-42.783 0-82.944-69.401-150.18-155.003-150.18-85.596 0-154.993 67.236-154.993 150.18 0 14.869 2.243 29.225 6.4 42.783h-45.798v-210.642c0-10.901 8.919-19.825 19.825-19.825h347.249c10.901 0 19.825 8.919 19.825 19.825v210.642h-0.010zM256.471 322.12c-55.306 0-100.147-43.443-100.147-97.040s44.841-97.040 100.147-97.040c55.312 0 100.158 43.443 100.158 97.040s-44.841 97.040-100.158 97.040z" />
|
15 |
<glyph unicode="" d="M330.414 224.798c0-39.636-33.158-71.767-74.061-71.767s-74.061 32.131-74.061 71.767c0 39.636 33.158 71.767 74.061 71.767s74.061-32.131 74.061-71.767zM370.985 220.795c0-61.343-51.323-111.068-114.632-111.068s-114.632 49.726-114.632 111.068c0 10.993 1.659 21.612 4.731 31.642h-33.874v-155.786c0-8.069 6.594-14.663 14.659-14.663h256.814c8.069 0 14.669 6.594 14.669 14.663v155.786h-32.466c3.067-10.030 4.731-20.649 4.731-31.642zM340.26 294.477h41.682c9.134 0 16.599 7.465 16.599 16.599v39.741c0 9.139-7.465 16.604-16.599 16.604h-41.682c-9.139 0-16.604-7.465-16.604-16.604v-39.741c-0.005-9.129 7.465-16.599 16.604-16.599zM256 474.24c-138.204 0-250.24-112.036-250.24-250.24s112.036-250.24 250.24-250.24 250.24 112.036 250.24 250.24-112.036 250.24-250.24 250.24zM393.058 39.603h-274.115c-26.046 0-47.34 19.272-47.34 47.329v274.13c0 28.063 21.294 47.334 47.34 47.334h274.115c26.041 0 47.339-19.272 47.339-47.334v-274.13c0-28.058-21.299-47.329-47.339-47.329z" />
|
16 |
<glyph unicode="" d="M256 480c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.408-114.624 256-256 256zM192 100h-64v224h64v-224zM161.984 337.728c-16.576 0-29.984 13.44-29.984 30.016s13.44 30.016 29.984 30.016c16.576-0.032 30.016-13.472 30.016-30.016 0-16.576-13.44-30.016-30.016-30.016zM416 100h-64v138.496c0 16.224-4.64 27.584-24.576 27.584-33.056 0-39.424-27.584-39.424-27.584v-138.496h-64v224h64v-21.408c9.152 7.008 32 21.376 64 21.376 20.736 0 64-12.416 64-87.424v-136.544z" />
|
17 |
-
<glyph unicode="" d="
|
18 |
<glyph unicode="" d="M426.655 480h-341.31c-46.94 0-85.345-38.392-85.345-85.329v-341.328c0-46.938 38.405-85.343 85.345-85.343h341.311c46.969 0 85.344 38.405 85.344 85.343v341.328c0 46.937-38.375 85.329-85.345 85.329zM128 352h256c4.569 0 9.002-0.981 13.072-2.831l-141.072-164.584-141.072 164.585c4.070 1.848 8.503 2.83 13.072 2.83zM96 128v192c0 0.67 0.028 1.336 0.070 2l93.832-109.471-92.799-92.799c-0.722 2.668-1.103 5.443-1.103 8.27zM384 96h-256c-2.827 0-5.601 0.381-8.27 1.104l91.059 91.059 45.211-52.749 45.212 52.747 91.058-91.060c-2.67-0.72-5.443-1.101-8.27-1.101zM416 128c0-2.827-0.381-5.6-1.103-8.27l-92.8 92.799 93.833 109.471c0.042-0.664 0.070-1.33 0.070-2v-192z" />
|
19 |
<glyph unicode="" d="M256 480c-141.398 0-256-114.613-256-256 0-141.392 114.603-256 256-256 141.387 0 256 114.608 256 256 0 141.387-114.613 256-256 256zM273.51 163.291c-16.416 1.269-23.302 9.397-36.154 17.211-7.072-37.094-15.718-72.661-41.322-91.238-7.904 56.075 11.606 98.182 20.656 142.891-15.44 25.994 1.867 78.32 34.438 65.424 40.075-15.856-34.709-96.646 15.488-106.742 52.426-10.534 73.824 90.954 41.322 123.957-46.971 47.648-136.709 1.082-125.674-67.147 2.688-16.683 19.915-21.738 6.886-44.762-30.064 6.666-39.029 30.363-37.877 61.978 1.856 51.728 46.49 87.952 91.238 92.966 56.603 6.336 109.738-20.779 117.072-74.026 8.267-60.106-25.546-125.2-86.070-120.512z" />
|
20 |
<glyph unicode="" d="M256 480c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.408-114.624 256-256 256zM275.968 154.784c-18.72 1.44-26.56 10.72-41.216 19.648-8.064-42.304-17.92-82.88-47.104-104.032-9.024 63.904 13.216 111.904 23.552 162.88-17.6 29.664 2.112 89.28 39.232 74.592 45.664-18.080-39.584-110.176 17.664-121.696 59.744-12 84.16 103.712 47.104 141.344-53.568 54.336-155.84 1.248-143.264-76.544 3.072-19.008 22.688-24.768 7.84-51.040-34.272 7.552-44.512 34.624-43.2 70.656 2.112 58.976 52.992 100.256 104.032 105.984 64.544 7.232 125.088-23.68 133.44-84.384 9.44-68.512-29.12-142.752-98.080-137.408z" />
|
@@ -31,14 +31,11 @@
|
|
31 |
<glyph unicode="" d="M256 480c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.408-114.624 256-256 256zM383.36 281.472l0.192-8.16c0-83.328-63.392-179.328-179.328-179.328-35.584 0-68.704 10.432-96.608 28.32 4.928-0.576 9.952-0.896 15.040-0.896 29.536 0 56.704 10.080 78.272 26.976-27.584 0.512-50.848 18.752-58.88 43.776 3.872-0.736 7.776-1.088 11.872-1.088 5.76 0 11.328 0.736 16.608 2.176-28.832 5.824-50.56 31.264-50.56 61.792v0.8c8.512-4.736 18.208-7.552 28.544-7.904-16.896 11.296-28.032 30.592-28.032 52.448 0 11.552 3.104 22.368 8.512 31.68 31.072-38.144 77.536-63.232 129.92-65.856-1.088 4.608-1.632 9.44-1.632 14.368 0 34.784 28.224 63.008 63.040 63.008 18.112 0 34.496-7.648 46.016-19.904 14.336 2.848 27.84 8.096 40.032 15.296-4.704-14.72-14.688-27.072-27.712-34.88 12.704 1.504 24.896 4.928 36.192 9.92-8.448-12.608-19.168-23.712-31.488-32.544z" />
|
32 |
<glyph unicode="" d="M256 480c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.408-114.624 256-256 256zM408.064 293.664c-17.184-96.704-113.088-178.592-141.92-197.28-28.864-18.688-55.168 7.488-64.736 27.328-10.912 22.528-43.648 145.024-52.224 155.168s-34.304-10.144-34.304-10.144l-12.48 16.352c0 0 52.256 62.368 92 70.208 42.144 8.288 42.080-64.736 52.224-105.248 9.824-39.2 16.384-61.6 24.96-61.6s24.992 21.824 42.88 55.328c17.984 33.536-0.768 63.168-35.872 42.112 14.080 84.192 146.624 104.448 129.472 7.776z" />
|
33 |
<glyph unicode="" d="M256 480c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.408-114.624 256-256 256zM184.576 51.744c-56.672 0-104.48 23.072-104.48 59.936 0 37.408 43.616 73.536 100.288 73.504l17.696 0.16c-7.744 7.52-13.888 16.768-13.888 28.192 0 6.784 2.176 13.28 5.184 19.072l-9.44-0.32c-46.56 0-77.728 33.12-77.728 74.176 0 40.16 43.040 74.816 88.8 74.816h102.080l-22.912-16.512h-32.352c21.472-8.256 32.896-33.28 32.896-58.944 0-21.536-11.936-40.096-28.8-53.28-16.48-12.896-19.584-18.272-19.584-29.216 0-9.344 17.664-25.216 26.88-31.776 26.976-19.072 35.648-36.768 35.648-66.304 0-36.864-35.68-73.504-100.288-73.504zM384 255.392v-63.904h-31.968v63.904h-64.032v32.608h64.032v64h31.968v-64h64v-32.608h-64zM216.608 171.552c-7.744 2.496-16.288 4-25.408 4.096-39.168 0.416-74.24-23.872-74.24-53.088 0-29.824 28.288-54.592 67.456-54.592 55.072 0 74.24 23.296 74.24 53.056 0 3.584-0.448 7.104-1.248 10.528-4.288 16.896-19.552 25.248-40.8 40zM234.048 303.84c-4.544 34.496-29.536 62.208-55.808 63.008-26.272 0.768-43.904-25.632-39.36-60.192 4.544-34.528 29.536-63.168 55.84-63.936 26.24-0.8 43.904 26.56 39.328 61.12z" />
|
34 |
-
<glyph unicode="" d="M426.671 480h-341.328c-46.937 0-85.343-38.405-85.343-85.345v-341.311c0-46.969 38.406-85.344 85.343-85.344h341.328c46.938 0 85.329 38.375 85.329 85.345v341.31c0 46.94-38.391 85.345-85.329 85.345zM426.671 416c3.994 0 7.773-1.167 11.010-3.171l-181.681-150.202-181.677 150.2c3.239 2.005 7.022 3.173 11.020 3.173h341.328zM85.343 32c-0.962 0-1.91 0.073-2.842 0.204l112.813 156.483-14.628 14.627-116.686-116.685v305.569l192-232.198 192 232.197v-305.568l-116.686 116.685-14.628-14.627 112.814-156.484c-0.929-0.13-1.873-0.203-2.831-0.203h-341.326z" />
|
35 |
<glyph unicode="" d="M256 474.24c-138.199 0-250.24-112.036-250.24-250.24s112.041-250.24 250.24-250.24 250.24 112.036 250.24 250.24-112.041 250.24-250.24 250.24zM45.383 155.925c-0.138-0.988-0.85-1.685-1.741-1.685-0.896 0-1.613 0.697-1.736 1.695l-3.179 23.721 3.179 24.13c0.118 1.003 0.84 1.705 1.736 1.705 0.891 0 1.602-0.697 1.741-1.695l3.769-24.146-3.769-23.726zM61.532 141.486c-0.154-1.029-0.901-1.751-1.813-1.751-0.922 0-1.679 0.738-1.807 1.756l-4.27 38.164 4.27 39.024c0.123 1.019 0.886 1.756 1.807 1.756 0.916 0 1.659-0.717 1.813-1.756l4.854-39.024-4.854-38.169zM78.966 135.030c-0.133-1.234-1.049-2.125-2.181-2.125-1.147 0-2.058 0.891-2.176 2.135l-4.055 44.606c0 0 4.055 46.3 4.055 46.305 0.112 1.234 1.029 2.13 2.176 2.13 1.132 0 2.043-0.896 2.181-2.13l4.603-46.305-4.603-44.615zM96.548 133.611c-0.123-1.418-1.219-2.498-2.544-2.498-1.352 0-2.453 1.080-2.56 2.498l-3.83 46.024 3.83 47.575c0.108 1.434 1.209 2.509 2.56 2.509 1.326 0 2.422-1.075 2.544-2.494l4.352-47.586-4.352-46.029zM114.268 133.233c-0.108-1.634-1.372-2.877-2.918-2.877-1.561 0-2.821 1.244-2.924 2.877l-3.615 46.402 3.615 44.13c0.108 1.643 1.367 2.882 2.924 2.882 1.552 0 2.811-1.239 2.918-2.862l4.101-44.15-4.101-46.403zM132.132 133.212v0.021c-0.107-1.822-1.546-3.257-3.292-3.257-1.761 0-3.2 1.433-3.297 3.246l-3.385 46.397 3.385 71.803c0.097 1.828 1.536 3.256 3.297 3.256 1.746 0 3.184-1.429 3.292-3.251l3.84-71.808-3.84-46.407zM149.863 133.248v0.026c-0.092-2.038-1.705-3.625-3.666-3.625-1.966 0-3.574 1.587-3.65 3.615l-3.184 46.111c0 0 3.169 88.212 3.169 88.217 0.092 2.033 1.7 3.625 3.666 3.625 1.961 0 3.574-1.592 3.666-3.625l3.589-88.217-3.589-46.126zM168.269 133.954v0.026c-0.092-2.243-1.853-3.993-4.024-3.993-2.186 0-3.958 1.751-4.035 3.973l-2.954 45.639c0 0 2.954 95.575 2.954 95.586 0.077 2.242 1.849 3.998 4.035 3.998 2.171 0 3.938-1.756 4.024-3.998l3.338-95.586-3.338-45.645zM186.553 134.262c-0.071-2.447-2.012-4.368-4.398-4.368-2.406 0-4.332 1.92-4.393 4.347l-2.744 45.353 2.734 98.8c0.077 2.452 2.002 4.377 4.403 4.377 2.391 0 4.332-1.92 4.398-4.377l3.088-98.806-3.088-45.327zM204.969 134.656v0.036c-0.071-2.658-2.166-4.757-4.772-4.757-2.617 0-4.71 2.099-4.767 4.731l-2.524 44.918 2.509 96.281c0.071 2.663 2.166 4.746 4.782 4.746 2.606 0 4.7-2.078 4.772-4.736l2.841-96.292-2.841-44.928zM223.534 134.938v0.036c-0.056-2.873-2.32-5.12-5.145-5.12-2.821 0-5.089 2.248-5.145 5.084l-2.299 44.642 2.299 92.769c0.056 2.873 2.325 5.12 5.145 5.12 2.826 0 5.089-2.253 5.145-5.12l2.576-92.779-2.576-44.631zM242.468 139.632l-0.231-4.377c-0.025-1.51-0.666-2.887-1.659-3.881-0.999-0.988-2.361-1.608-3.856-1.608-1.685 0-3.2 0.778-4.219 1.997-0.748 0.896-1.224 2.043-1.28 3.277-0.010 0.062-0.016 0.123-0.016 0.19 0 0-2.089 44.308-2.089 44.375l2.069 109.322 0.020 1.039c0.025 1.93 1.034 3.625 2.544 4.603 0.855 0.563 1.869 0.896 2.97 0.896 1.116 0 2.171-0.348 3.047-0.942 1.459-0.988 2.437-2.658 2.468-4.552l2.314-110.402-2.084-39.936zM260.864 135.849v0.051c-0.062-3.231-2.688-5.868-5.888-5.868-3.21 0-5.852 2.632-5.893 5.822l-1.188 21.55-1.219 22.144 2.401 119.798 0.010 0.604c0.020 1.822 0.87 3.451 2.186 4.531 1.008 0.84 2.304 1.341 3.712 1.341 1.095 0 2.119-0.313 2.99-0.845 1.695-1.029 2.862-2.893 2.898-5.017l2.606-120.412-2.616-43.699zM419.825 129.92c0 0-148.014-0.015-148.157 0-3.2 0.322-5.735 2.862-5.77 6.134 0 0 0 169.631 0 169.636 0.036 3.118 1.106 4.72 5.14 6.282 10.373 4.019 22.134 6.39 34.186 6.39 49.285 0 89.671-37.786 93.931-85.95 6.359 2.662 13.348 4.147 20.669 4.147 29.522 0 53.442-23.931 53.442-53.447s-23.921-53.192-53.442-53.192z" />
|
36 |
<glyph unicode="" d="M426.686 480h-341.342c-46.937 0-85.343-38.403-85.343-85.34v-234.658l7.999 31.998h16l8-32-8-32h-16l-8 31.998v-106.652c0.001-46.969 38.407-85.346 85.344-85.346h341.341c46.94 0 85.315 38.377 85.315 85.346v106.101c0-35.039-29.541-63.447-65.993-63.447-1.177 0-182.776 0.088-182.944 0.105-3.941 0.381-7.062 3.615-7.062 7.498v201.357c0 3.697 1.309 5.606 6.289 7.458 12.818 4.767 27.268 7.582 42.159 7.582 60.854 0 110.746-44.851 115.999-102.029 7.857 3.168 16.488 4.928 25.531 4.928 36.453 0 66.021-28.412 66.021-63.45v235.21c0 46.938-38.379 85.341-85.314 85.341zM88 96h-16l-8 64 8 64h16l8-64-8-64zM152 96h-16l-8 81.375 8 78.625h16l8-80-8-80zM216 96h-16l-8 112.109 8 111.891h16l8-111.891-8-112.109z" />
|
37 |
<glyph unicode="" d="M416 480h-320c-53.024 0-96-42.976-96-96v-320c0-53.024 42.976-96 96-96h320c53.024 0 96 42.976 96 96v320c0 53.024-42.976 96-96 96zM408.064 293.664c-17.184-96.704-113.088-178.592-141.92-197.28-28.864-18.688-55.168 7.488-64.736 27.328-10.912 22.528-43.648 145.024-52.224 155.168s-34.304-10.144-34.304-10.144l-12.48 16.352c0 0 52.256 62.368 92 70.208 42.144 8.288 42.080-64.736 52.224-105.248 9.824-39.2 16.384-61.6 24.96-61.6s24.992 21.824 42.88 55.328c17.984 33.536-0.768 63.168-35.872 42.112 14.080 84.192 146.624 104.448 129.472 7.776z" />
|
38 |
<glyph unicode="" d="M259.371 207.648l59.015-157.472c0.39-0.925 0.866-1.774 1.375-2.577-19.956-6.841-41.401-10.6-63.759-10.6-18.847 0-37.036 2.69-54.244 7.619l57.613 163.030zM448 224.003c0-68.985-38.388-129.215-95.47-161.629l58.643 165.136c10.956 26.677 14.603 48.010 14.603 66.975 0 6.886-0.47 13.274-1.294 19.229 14.988-26.631 23.518-57.196 23.518-89.711zM64 224.004c0 27.112 5.972 52.849 16.626 76.103l91.589-244.392c-64.054 30.305-108.215 94.276-108.215 168.289zM95.582 326.716c34.329 50.761 93.342 84.284 160.422 84.284 49.984 0 95.496-18.613 129.654-49.098-0.828 0.049-1.635 0.151-2.488 0.151-18.86 0-32.243-16.001-32.243-33.188 0-15.411 9.131-28.448 18.86-43.858 7.3-12.453 15.827-28.454 15.827-51.571 0-16-6.318-34.575-14.608-60.45l-19.156-62.316-69.39 201.009c11.558 0.589 21.974 1.775 21.974 1.775 10.348 1.194 9.129 16.002-1.223 15.411 0 0-31.102-2.376-51.175-2.376-18.867 0-50.567 2.376-50.567 2.376-10.355 0.59-11.57-14.815-1.219-15.411 0 0 9.795-1.183 20.139-1.775l29.911-79.825-42.022-122.728-69.917 202.553c11.571 0.591 21.976 1.775 21.976 1.775 10.337 1.194 9.116 16.002-1.229 15.411 0 0-31.093-2.376-51.17-2.376-3.603 0-7.851 0.086-12.356 0.227zM426 480h-340c-47.3 0-86-38.7-86-86v-340c0-47.3 38.7-86 86-86h340c47.3 0 86 38.7 86 86v340c0 47.3-38.7 86-86 86zM480 224c0-123.712-100.288-224-224-224s-224 100.288-224 224 100.288 224 224 224 224-100.288 224-224z" />
|
39 |
<glyph unicode="" d="M362.532 231.966c0 19.507-6.999 33.009-13.005 43.525-8.002 13-15.503 24.003-15.503 37.008 0 14.51 11.003 28.011 26.506 28.011 0.697 0 1.367-0.087 2.043-0.123-28.078 25.718-65.48 41.426-106.563 41.426-55.137 0-103.634-28.283-131.856-71.132 3.702-0.107 7.194-0.19 10.158-0.19 16.507 0 42.055 2.007 42.055 2.007 8.505 0.507 9.508-11.996 1.014-13 0 0-8.55-1.004-18.058-1.5l57.457-170.947 34.54 103.572-24.591 67.364c-8.494 0.496-16.548 1.5-16.548 1.5-8.499 0.502-7.506 13.501 0.999 13 0 0 26.061-2.002 41.559-2.002 16.507 0 42.066 2.002 42.066 2.002 8.514 0.502 9.508-11.991 1.009-13 0 0-8.571-1.004-18.063-1.5l57.031-169.641 15.739 52.598c6.825 21.837 12.012 37.514 12.012 51.021zM98.197 224.005c0-62.464 36.306-116.444 88.945-142.024l-75.284 206.244c-8.755-19.62-13.66-41.344-13.66-64.22zM258.775 210.202l-47.355-137.579c14.142-4.163 29.092-6.436 44.585-6.436 18.375 0 35.998 3.18 52.403 8.95-0.43 0.676-0.809 1.387-1.127 2.176l-48.507 132.889zM335.334 87.598c46.92 27.356 78.474 78.188 78.474 136.402 0.005 27.438-7.004 53.233-19.333 75.714 0.681-5.022 1.065-10.425 1.065-16.226 0-16.016-2.985-34.017-12.002-56.525l-48.205-139.367zM256 474.24c-138.204 0-250.24-112.036-250.24-250.24s112.036-250.24 250.24-250.24 250.24 112.036 250.24 250.24-112.036 250.24-250.24 250.24zM256.005 48.481c-96.778 0-175.518 78.74-175.518 175.524 0 96.778 78.736 175.514 175.518 175.514 96.773 0 175.504-78.736 175.504-175.514 0.005-96.784-78.725-175.524-175.504-175.524z" />
|
40 |
<glyph unicode="" d="M416 480h-320c-53.024 0-96-42.976-96-96v-320c0-53.024 42.976-96 96-96h320c53.024 0 96 42.976 96 96v320c0 53.024-42.976 96-96 96zM413.28 166.688c-1.728-21.312-17.92-48.512-40.544-52.448-72.448-5.632-158.368-4.928-233.44 0-23.424 2.944-38.816 31.168-40.544 52.448-3.648 44.736-3.648 70.208 0 114.944 1.728 21.28 17.504 49.344 40.544 51.904 74.208 6.24 160.576 4.896 233.44 0 26.080-0.96 38.816-27.808 40.544-49.12 3.584-44.736 3.584-72.992 0-117.728zM224 160l96 64-96 64z" />
|
41 |
-
<glyph unicode="" d="M459.682 480h-407.308c-28.912 0-52.374-23.406-52.374-52.346v-407.308c0-28.94 23.462-52.346 52.374-52.346h407.308c28.912 0 52.375 23.378 52.375 52.346v407.308c0 28.94-23.435 52.346-52.375 52.346zM294.964 393.546h24.931v-78.632c0-15.106 0.48-14.654 0.988-16.546 0.536-2.005 2.344-6.72 8.188-6.72 6.212 0 7.934 4.969 8.414 7.087 0.396 1.835 0.847 1.468 0.847 17.223v77.587h24.902v-118.019h-25.241l0.31 5.958-7.68 3.19c-1.948-3.953-4.207-6.776-6.974-8.752-2.795-1.948-5.929-2.936-9.656-2.936-4.291 0-7.793 0.931-10.447 2.767-2.598 1.779-4.404 3.981-5.591 6.776-1.299 3.106-2.118 6.465-2.428 9.769-0.367 3.811-0.565 11.689-0.565 23.434v77.813c0 0 0 0 0 0zM208.34 344.476c0 12.31 1.044 21.825 3.021 28.573 1.863 6.24 5.167 11.153 10.108 14.936 5.025 3.924 11.661 5.873 19.736 5.873 6.889 0 12.79-1.355 17.618-3.897 4.687-2.485 8.301-5.731 10.757-9.543 2.513-4.010 4.264-8.103 5.195-12.226 0.96-4.291 1.44-11.237 1.44-20.611v-20.78c0-12.197-0.48-21.091-1.355-26.569-0.847-5.026-2.711-9.825-5.505-14.23-2.795-4.32-6.268-7.538-10.701-9.628-4.574-2.174-9.966-3.303-16.009-3.303-6.889 0-12.733 0.96-17.421 2.936-4.348 1.75-7.679 4.291-9.995 7.708-2.371 3.558-4.122 7.934-5.167 13.016-1.13 5.477-1.694 14.004-1.694 25.382 0 0-0.028 22.362-0.028 22.362zM150.037 435.587l20.272-65.25c3.53 17.054 10.362 40.658 15.783 65.25h18.381l-23.66-93.088-0.169-0.734v-66.181h-21.542v66.181l-0.169 0.706-27.274 93.116c0 0 18.381 0 18.381 0zM443.503 70.603c-3.219-29.363-29.279-53.419-58.502-55.396-86.058-3.699-171.862-3.699-257.892 0-29.251 1.976-55.282 26.032-58.529 55.395-3.191 46.474-3.191 92.129 0 138.546 3.219 29.363 29.279 53.363 58.529 55.424 86.030 3.67 171.834 3.67 257.892 0 29.25-2.061 55.283-26.060 58.502-55.424 3.219-46.417 3.219-92.072 0-138.546zM242.278 287.188c3.614 0 6.438 2.174 7.708 5.929 0.593 1.723 1.299 4.998 1.299 13.92v51.132c0 10.334-0.593 13.666-1.214 15.557-1.27 3.84-4.066 6.071-7.708 6.071-3.586 0-6.409-2.146-7.736-5.958-0.678-1.835-1.355-5.252-1.355-15.67v-49.72c0-9.769 0.706-13.129 1.327-15.021 1.299-3.953 4.094-6.24 7.679-6.24zM102.124 200.227h24.366v-136.964h25.524v136.964h24.423v25.976h-74.313v-25.976zM222.825 110.019c0-14.71-0.423-18.353-0.762-19.905-0.875-3.812-3.924-6.127-8.216-6.127-4.094 0-7.059 2.202-8.018 5.844-0.423 1.553-0.875 5.195-0.875 19.2v77.842h-24.168v-84.815c0-11.181 0.169-18.635 0.508-22.305 0.339-3.36 1.214-6.692 2.57-9.825 1.214-2.824 3.049-4.998 5.619-6.663 2.484-1.723 5.788-2.541 9.769-2.541 3.417 0 6.381 0.875 8.978 2.654 2.683 1.807 5.025 4.687 6.946 8.498l7.651-1.863-0.339-6.889h24.507v123.75h-24.141l-0.028-76.853zM329.719 180.604c-1.327 2.626-3.247 4.574-5.788 6.070-2.626 1.497-5.844 2.202-9.543 2.202-3.106 0-5.901-0.762-8.583-2.428-2.738-1.75-5.308-4.32-7.623-7.934l-7.369-11.378v59.038h-24.168v-162.94h22.813l1.411 7.256 1.976 10.108 5.365-8.696c2.372-3.897 4.998-6.748 7.764-8.639 2.626-1.75 5.365-2.654 8.358-2.654 4.235 0 7.793 1.497 10.899 4.404 3.247 3.162 5.252 6.692 6.127 10.983 0.96 4.743 1.44 12.253 1.44 11.745v64.685c0-0.283 0.96 6.438-0.48 19.792-0.254 2.795-1.13 5.534-2.598 8.385zM308.685 108.804c0-11.576-0.593-15.106-1.073-16.94-1.13-3.981-3.981-6.296-7.821-6.296-3.727 0-6.579 2.202-7.764 6.070-0.565 1.75-1.186 5.195-1.186 15.783v32.78c0 11.012 0.565 14.315 1.073 15.896 1.101 3.642 3.981 5.844 7.68 5.844 3.812 0 6.692-2.315 7.906-6.24 0.536-1.723 1.243-5.167 1.243-15.557v-31.368l-0.057 0.028zM374.725 121.397h41.73v13.44c0 12.169-1.13 26.116-3.36 32.639-2.118 6.296-5.704 11.152-10.983 14.908-5.111 3.614-11.83 5.505-19.933 5.505-6.579 0-12.452-1.524-17.449-4.602s-8.471-7.397-10.673-13.242c-2.315-6.070-3.529-14.71-3.529-30.041v-37.975c0-4.885 0.565-12.113 1.581-16.856 1.017-4.574 2.851-8.809 5.449-12.62 2.457-3.586 6.042-6.494 10.56-8.611 4.63-2.146 10.108-3.247 16.263-3.247 6.296 0 11.548 1.101 15.557 3.19 4.010 2.118 7.341 5.365 9.995 9.656 2.767 4.461 4.546 8.724 5.28 12.564 0.791 4.038 1.186 10.023 1.186 17.816v5.788h-22.474v-13.327c0-7.058-0.48-11.661-1.468-14.428-1.384-3.755-4.574-5.957-8.724-5.957-3.642 0-6.466 1.807-7.736 5.054-0.621 1.524-1.327 4.264-1.327 12.762v27.557h0.057v0.028zM374.725 138.761v13.976c0 10.277 0.536 8.724 0.988 10.108 1.073 3.303 3.981 5.252 8.019 5.252 3.614 0 6.381-2.118 7.482-5.731 0.452-1.468 1.017-0.057 1.017-9.628v-17.901h-17.477c0 0-0.028 3.925-0.028 3.925z" />
|
42 |
-
<glyph unicode="" d="M137.221 205.532h19.84v-107.382h18.77v107.382h20.209v17.587h-58.819zM295.931 192.404c-6.205 0-11.996-3.389-17.438-10.096v40.817h-16.87v-124.974h16.87v9.022c5.642-6.969 11.433-10.307 17.438-10.307 6.712 0 11.228 3.538 13.481 10.466 1.127 3.947 1.71 10.153 1.71 18.765v37.079c0 8.817-0.579 14.971-1.71 18.719-2.248 6.978-6.769 10.512-13.481 10.512zM294.241 124.774c0-8.412-2.468-12.565-7.342-12.565-2.77 0-5.591 1.326-8.412 4.152v56.75c2.821 2.786 5.642 4.106 8.412 4.106 4.869 0 7.342-4.306 7.342-12.708v-39.736zM230.139 120.105c-3.743-5.289-7.28-7.895-10.67-7.895-2.253 0-3.538 1.326-3.947 3.947-0.154 0.548-0.154 2.606-0.154 6.558v68.557h-16.875v-73.625c0-6.574 0.569-11.024 1.49-13.849 1.695-4.716 5.442-6.928 10.87-6.928 6.21 0 12.58 3.748 19.287 11.438v-10.158h16.886v93.118h-16.886v-71.163zM244.624 277.294c5.494 0 8.131 4.357 8.131 13.061v39.582c0 8.709-2.637 13.046-8.131 13.046-5.499 0-8.141-4.342-8.141-13.046v-39.582c0-8.709 2.642-13.061 8.141-13.061zM256 474.24c-138.204 0-250.24-112.036-250.24-250.24s112.036-250.24 250.24-250.24 250.24 112.036 250.24 250.24-112.036 250.24-250.24 250.24zM283.832 357.197h17.003v-69.284c0-3.999 0-6.072 0.205-6.63 0.374-2.642 1.715-3.994 3.998-3.994 3.41 0 6.989 2.642 10.767 7.982v71.926h17.055v-94.101h-17.055v10.26c-6.789-7.782-13.255-11.556-19.476-11.556-5.494 0-9.283 2.227-10.988 6.989-0.942 2.852-1.515 7.353-1.515 13.993v74.414zM219.433 326.512c0 10.061 1.71 17.413 5.335 22.17 4.715 6.436 11.356 9.651 19.856 9.651 8.54 0 15.175-3.216 19.891-9.651 3.579-4.752 5.289-12.109 5.289-22.17v-32.952c0-10.005-1.71-17.423-5.289-22.128-4.716-6.421-11.351-9.631-19.891-9.631-8.499 0-15.14 3.21-19.856 9.631-3.625 4.705-5.335 12.13-5.335 22.128v32.952zM173.834 389.371l13.424-49.587 12.898 49.587h19.123l-22.748-75.136v-51.144h-18.903v51.144c-1.715 9.063-5.499 22.339-11.566 39.952-3.983 11.719-8.136 23.475-12.119 35.185h19.891zM390.712 89.928c-3.42-14.843-15.565-25.8-30.178-27.433-34.621-3.865-69.653-3.886-104.55-3.865-34.882-0.021-69.929 0-104.546 3.865-14.618 1.634-26.762 12.585-30.172 27.433-4.869 21.145-4.869 44.226-4.869 65.997s0.061 44.851 4.925 65.997c3.415 14.848 15.549 25.805 30.167 27.433 34.621 3.865 69.662 3.886 104.555 3.865 34.882 0.020 69.924 0 104.546-3.865 14.618-1.633 26.762-12.585 30.183-27.433 4.859-21.145 4.823-44.226 4.823-65.997s-0.021-44.851-4.885-65.997zM349.671 192.404c-8.627 0-15.334-3.17-20.209-9.543-3.584-4.711-5.212-11.991-5.212-21.945v-32.615c0-9.897 1.828-17.234 5.417-21.898 4.874-6.359 11.597-9.538 20.423-9.538 8.812 0 15.728 3.333 20.398 10.096 2.048 2.985 3.379 6.375 3.942 10.107 0.159 1.69 0.358 5.433 0.358 10.875v2.457h-17.209c0-6.764-0.22-10.512-0.374-11.428-0.962-4.51-3.385-6.769-7.536-6.769-5.796 0-8.627 4.301-8.627 12.918v16.512h33.746v19.282c0 9.954-1.685 17.234-5.223 21.945-4.716 6.37-11.428 9.543-19.897 9.543zM357.924 155.684h-16.875v8.617c0 8.612 2.832 12.918 8.469 12.918 5.586 0 8.407-4.306 8.407-12.918v-8.617z" />
|
43 |
<glyph unicode="" d="M267.8 186.784c-6.248-6.248-16.376-6.248-22.624 0l-12.64 12.64-48.656-47.424h144.816l-48.64 47.032-12.256-12.248zM353.648 296h-194.52l96.872-96 97.648 96zM144 287.952v-135.952h16.488l60.224 59.24-76.712 76.712zM352.488 152h15.512v134.976l-75.744-75.736 60.232-59.24zM256 480c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.616 256-256 256zM384 152c0-8.832-7.168-16-16-16h-224c-8.832 0-16 7.168-16 16v144c0 8.832 7.168 16 16 16h224c8.832 0 16-7.168 16-16v-144z" />
|
44 |
</font></defs></svg>
|
7 |
<font-face units-per-em="512" ascent="480" descent="-32" />
|
8 |
<missing-glyph horiz-adv-x="512" />
|
9 |
<glyph unicode=" " d="" horiz-adv-x="256" />
|
10 |
+
<glyph unicode="" d="M343.62 372.461l-154.633-23.79 0.040-173.344c0 0-26.939-1.538-32.179-3.164-22.878-7.107-36.696-28.092-30.862-46.871 5.833-18.777 29.11-28.24 51.988-21.134 18.829 5.849 37.016 21.768 37.982 37.455 0.017-0.009 0.025-0.011 0.025-0.011v0.504c0.040 0.903 0.045 1.806 0 2.709v146.502l108.186 14.349-0.002-116.563-17.129 0.769c-1.626 0.081-3.27 0.087-4.928 0.011l-0.516 0.002 0.035-0.027c-4.208-0.229-8.484-0.968-12.704-2.28-22.879-7.106-36.695-28.091-30.863-46.868 5.834-18.779 29.111-28.24 51.989-21.134 19.034 5.912 32.87 21.442 33.565 37.309l0.006 215.576zM256 452.595c30.869 0 60.805-6.041 88.974-17.956 27.219-11.512 51.668-27.998 72.668-48.998s37.485-45.449 48.998-72.667c11.915-28.169 17.956-58.104 17.956-88.974s-6.041-60.805-17.956-88.974c-11.513-27.219-27.998-51.668-48.998-72.668s-45.449-37.485-72.668-48.998c-28.169-11.915-58.104-17.956-88.974-17.956s-60.804 6.041-88.974 17.956c-27.218 11.513-51.667 27.998-72.667 48.998s-37.486 45.449-48.998 72.668c-11.915 28.169-17.956 58.105-17.956 88.974s6.041 60.804 17.956 88.974c11.512 27.218 27.998 51.667 48.998 72.667s45.449 37.486 72.667 48.998c28.17 11.915 58.105 17.956 88.974 17.956zM256 472.595c-137.295 0-248.595-111.3-248.595-248.595s111.3-248.596 248.595-248.596c137.296 0 248.596 111.3 248.596 248.596 0 137.295-111.3 248.595-248.596 248.595v0z" />
|
11 |
<glyph unicode="" d="M256 480c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.408-114.624 256-256 256zM322.176 224.032l-41.952-0.032-0.032-153.6h-57.568v153.6h-38.4v52.928l38.4 0.032-0.064 31.168c0 43.2 11.712 69.472 62.56 69.472h42.368v-52.96h-26.496c-19.808 0-20.768-7.392-20.768-21.184l-0.064-26.496h47.616l-5.6-52.928z" />
|
12 |
<glyph unicode="" d="M256 480c-141.385 0-256-114.615-256-256s114.615-256 256-256 256 114.615 256 256-114.615 256-256 256zM408.028 71.972c-19.76-19.758-42.756-35.266-68.354-46.093-6.503-2.75-13.106-5.164-19.8-7.246v38.367c0 20.167-6.917 35-20.75 44.5 8.667 0.833 16.625 2 23.875 3.5s14.917 3.667 23 6.5 15.333 6.208 21.75 10.125 12.583 9 18.5 15.25 10.875 13.333 14.875 21.25 7.167 17.417 9.5 28.5 3.5 23.292 3.5 36.625c0 25.833-8.417 47.833-25.25 66 7.667 20 6.833 41.75-2.5 65.25l-6.25 0.75c-4.333 0.5-12.125-1.333-23.375-5.5s-23.875-11-37.875-20.5c-19.833 5.5-40.417 8.25-61.75 8.25-21.5 0-42-2.75-61.5-8.25-8.833 6-17.208 10.958-25.125 14.875s-14.25 6.583-19 8-9.167 2.292-13.25 2.625-6.708 0.417-7.875 0.25-2-0.333-2.5-0.5c-9.333-23.667-10.167-45.417-2.5-65.25-16.833-18.167-25.25-40.167-25.25-66 0-13.333 1.167-25.542 3.5-36.625s5.5-20.583 9.5-28.5 8.958-15 14.875-21.25 12.083-11.333 18.5-15.25 13.667-7.292 21.75-10.125 15.75-5 23-6.5 15.208-2.667 23.875-3.5c-13.667-9.333-20.5-24.167-20.5-44.5v-39.115c-7.549 2.247-14.99 4.902-22.3 7.994-25.597 10.827-48.594 26.335-68.353 46.093-19.758 19.759-35.267 42.757-46.093 68.354-11.199 26.479-16.878 54.631-16.878 83.674s5.679 57.195 16.879 83.675c10.827 25.597 26.335 48.594 46.093 68.353s42.756 35.267 68.353 46.093c26.48 11.2 54.632 16.879 83.675 16.879s57.195-5.679 83.675-16.879c25.599-10.827 48.595-26.335 68.354-46.093 19.758-19.758 35.266-42.756 46.093-68.353 11.199-26.48 16.878-54.632 16.878-83.675s-5.679-57.195-16.879-83.675c-10.827-25.596-26.335-48.595-46.093-68.353z" />
|
13 |
<glyph unicode="" d="M131.736 100.316c0-13.526 11.447-20.291 34.334-20.291 20.032 0 30.044 7.021 30.044 21.066 0 13.27-10.923 19.898-32.772 19.898-21.073 0.003-31.606-6.887-31.606-20.673zM426.674 480h-341.33c-46.938 0-85.344-38.405-85.344-85.344v-341.313c0-46.968 38.406-85.343 85.344-85.343h341.33c46.934 0 85.326 38.375 85.326 85.344v341.312c0 46.939-38.391 85.344-85.326 85.344zM237.864 275.506c-3.642-1.302-8.844-2.729-15.606-4.293 2.080-5.983 3.123-11.576 3.123-16.777 0-16.646-5.009-31.149-15.022-43.506-10.015-12.354-22.956-19.703-38.823-22.043-10.402-1.562-15.604-7.156-15.604-16.779 0-3.381 1.689-6.765 5.072-10.145 4.422-4.943 10.924-8.066 19.509-9.367 37.195-5.721 55.793-21.197 55.793-46.427 0-40.321-24.062-60.48-72.181-60.48-19.771 0-36.028 3.513-48.772 10.534-16.129 8.845-24.188 22.761-24.188 41.75 0 21.853 12.096 36.809 36.282 44.869v0.78c-8.842 5.462-13.263 13.785-13.263 24.972 0 14.566 4.162 23.672 12.484 27.311v0.781c-8.323 2.862-15.737 9.366-22.24 19.513-7.282 10.926-10.925 22.63-10.925 35.115 0 18.729 6.635 34.335 19.896 46.82 12.748 11.707 27.964 17.558 45.653 17.558 12.747 0 24.579-3.119 35.505-9.361 12.485 0 26.921 3.12 43.313 9.361l-0.006-40.186zM301.089 140.503h-44.093c0.521 5.201 0.779 14.042 0.779 26.532v121.346c0 12.227-0.262 20.682-0.779 25.359h44.093c-0.521-4.942-0.78-13.135-0.78-24.582v-119.782c0-13.267 0.259-22.892 0.78-28.873zM298.159 352.759c-5.332-5.722-11.642-8.581-18.923-8.581-7.543 0-13.979 2.859-19.313 8.581-5.333 5.726-8.001 12.486-8.001 20.289 0 8.067 2.668 14.956 8.001 20.683 5.333 5.721 11.771 8.584 19.313 8.584 7.281 0 13.592-2.863 18.923-8.584 5.333-5.728 7.999-12.615 7.999-20.683 0-7.803-2.666-14.564-7.999-20.289zM420.845 145.576c-9.627-5.205-21.203-7.803-34.729-7.803-18.985 0-32.124 6.76-39.405 20.287-5.465 10.145-8.193 26.14-8.193 47.989v69.842h0.39v0.781l-5.854 0.391c-3.382 0-7.806-0.391-13.267-1.171v37.848h19.117v15.216c0 7.285-0.39 13.14-1.17 17.56h45.259c-0.775-4.94-1.168-10.533-1.168-16.776v-15.999h33.942v-37.846c-1.299 0-3.705 0.129-7.218 0.389-3.512 0.261-6.828 0.393-9.949 0.393h-16.776v-72.572c0-17.433 5.725-26.146 17.167-26.146 8.062 0 15.348 2.209 21.854 6.632v-39.015zM160.608 279.797c-16.388 0-24.582-9.627-24.582-28.873 0-17.951 8.194-26.924 24.582-26.924 15.868 0 23.801 9.104 23.801 27.313 0 7.545-1.82 14.047-5.461 19.511-4.423 5.981-10.537 8.973-18.34 8.973z" />
|
14 |
<glyph unicode="" d="M70.677 473.329h370.652c35.2 0 64-26.061 64-64v-370.658c0-37.945-28.8-64-64-64h-370.652c-35.21 0-64.005 26.061-64.005 64v370.658c0 37.939 28.795 64 64.005 64v0zM369.925 417.925c-12.349 0-22.446-10.097-22.446-22.451v-53.734c0-12.35 10.096-22.451 22.446-22.451h56.361c12.344 0 22.446 10.102 22.446 22.451v53.734c0 12.354-10.102 22.451-22.446 22.451h-56.361zM448.973 262.451h-43.894c4.152-13.558 6.4-27.92 6.4-42.783 0-82.944-69.401-150.18-155.003-150.18-85.596 0-154.993 67.236-154.993 150.18 0 14.869 2.243 29.225 6.4 42.783h-45.798v-210.642c0-10.901 8.919-19.825 19.825-19.825h347.249c10.901 0 19.825 8.919 19.825 19.825v210.642h-0.010zM256.471 322.12c-55.306 0-100.147-43.443-100.147-97.040s44.841-97.040 100.147-97.040c55.312 0 100.158 43.443 100.158 97.040s-44.841 97.040-100.158 97.040z" />
|
15 |
<glyph unicode="" d="M330.414 224.798c0-39.636-33.158-71.767-74.061-71.767s-74.061 32.131-74.061 71.767c0 39.636 33.158 71.767 74.061 71.767s74.061-32.131 74.061-71.767zM370.985 220.795c0-61.343-51.323-111.068-114.632-111.068s-114.632 49.726-114.632 111.068c0 10.993 1.659 21.612 4.731 31.642h-33.874v-155.786c0-8.069 6.594-14.663 14.659-14.663h256.814c8.069 0 14.669 6.594 14.669 14.663v155.786h-32.466c3.067-10.030 4.731-20.649 4.731-31.642zM340.26 294.477h41.682c9.134 0 16.599 7.465 16.599 16.599v39.741c0 9.139-7.465 16.604-16.599 16.604h-41.682c-9.139 0-16.604-7.465-16.604-16.604v-39.741c-0.005-9.129 7.465-16.599 16.604-16.599zM256 474.24c-138.204 0-250.24-112.036-250.24-250.24s112.036-250.24 250.24-250.24 250.24 112.036 250.24 250.24-112.036 250.24-250.24 250.24zM393.058 39.603h-274.115c-26.046 0-47.34 19.272-47.34 47.329v274.13c0 28.063 21.294 47.334 47.34 47.334h274.115c26.041 0 47.339-19.272 47.339-47.334v-274.13c0-28.058-21.299-47.329-47.339-47.329z" />
|
16 |
<glyph unicode="" d="M256 480c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.408-114.624 256-256 256zM192 100h-64v224h64v-224zM161.984 337.728c-16.576 0-29.984 13.44-29.984 30.016s13.44 30.016 29.984 30.016c16.576-0.032 30.016-13.472 30.016-30.016 0-16.576-13.44-30.016-30.016-30.016zM416 100h-64v138.496c0 16.224-4.64 27.584-24.576 27.584-33.056 0-39.424-27.584-39.424-27.584v-138.496h-64v224h64v-21.408c9.152 7.008 32 21.376 64 21.376 20.736 0 64-12.416 64-87.424v-136.544z" />
|
17 |
+
<glyph unicode="" d="M117.951 479.149h276.098c64.874 0 117.1-52.226 117.1-117.1v-276.099c0-64.874-52.226-117.1-117.1-117.1h-276.099c-64.874 0-117.1 52.226-117.1 117.1v276.099c0 64.873 52.227 117.1 117.1 117.1zM255.542 448.31c-121.077 0-219.224-98.147-219.224-219.224s98.147-219.224 219.224-219.224c121.077 0 219.223 98.147 219.223 219.224s-98.147 219.224-219.224 219.224zM255.542 424.114c107.698 0 195.028-87.33 195.028-195.028s-87.33-195.028-195.028-195.028c-107.698 0-194.845 87.33-194.845 195.028s87.147 195.028 194.845 195.028zM346.897 375.318l-152.204-41.107v-61.839h0.177v-110.565c-6.652 4.001-14.806 6.378-23.566 6.378-22.565 0-40.753-15.67-40.753-34.906s18.188-34.728 40.753-34.728c22.565 0 41.734 15.51 40.93 34.728l-0.413 9.864-1.005 133.657 120.133 32.425v-122.082c-7.015 4.834-15.969 7.796-25.692 7.796-22.565 0-40.753-15.67-40.753-34.906s18.188-34.728 40.753-34.728c22.565 0 41.533 15.493 41.533 34.728 0 0.18 0.003 0.352 0 0.531l0.106 152.913v61.838z" />
|
18 |
<glyph unicode="" d="M426.655 480h-341.31c-46.94 0-85.345-38.392-85.345-85.329v-341.328c0-46.938 38.405-85.343 85.345-85.343h341.311c46.969 0 85.344 38.405 85.344 85.343v341.328c0 46.937-38.375 85.329-85.345 85.329zM128 352h256c4.569 0 9.002-0.981 13.072-2.831l-141.072-164.584-141.072 164.585c4.070 1.848 8.503 2.83 13.072 2.83zM96 128v192c0 0.67 0.028 1.336 0.070 2l93.832-109.471-92.799-92.799c-0.722 2.668-1.103 5.443-1.103 8.27zM384 96h-256c-2.827 0-5.601 0.381-8.27 1.104l91.059 91.059 45.211-52.749 45.212 52.747 91.058-91.060c-2.67-0.72-5.443-1.101-8.27-1.101zM416 128c0-2.827-0.381-5.6-1.103-8.27l-92.8 92.799 93.833 109.471c0.042-0.664 0.070-1.33 0.070-2v-192z" />
|
19 |
<glyph unicode="" d="M256 480c-141.398 0-256-114.613-256-256 0-141.392 114.603-256 256-256 141.387 0 256 114.608 256 256 0 141.387-114.613 256-256 256zM273.51 163.291c-16.416 1.269-23.302 9.397-36.154 17.211-7.072-37.094-15.718-72.661-41.322-91.238-7.904 56.075 11.606 98.182 20.656 142.891-15.44 25.994 1.867 78.32 34.438 65.424 40.075-15.856-34.709-96.646 15.488-106.742 52.426-10.534 73.824 90.954 41.322 123.957-46.971 47.648-136.709 1.082-125.674-67.147 2.688-16.683 19.915-21.738 6.886-44.762-30.064 6.666-39.029 30.363-37.877 61.978 1.856 51.728 46.49 87.952 91.238 92.966 56.603 6.336 109.738-20.779 117.072-74.026 8.267-60.106-25.546-125.2-86.070-120.512z" />
|
20 |
<glyph unicode="" d="M256 480c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.408-114.624 256-256 256zM275.968 154.784c-18.72 1.44-26.56 10.72-41.216 19.648-8.064-42.304-17.92-82.88-47.104-104.032-9.024 63.904 13.216 111.904 23.552 162.88-17.6 29.664 2.112 89.28 39.232 74.592 45.664-18.080-39.584-110.176 17.664-121.696 59.744-12 84.16 103.712 47.104 141.344-53.568 54.336-155.84 1.248-143.264-76.544 3.072-19.008 22.688-24.768 7.84-51.040-34.272 7.552-44.512 34.624-43.2 70.656 2.112 58.976 52.992 100.256 104.032 105.984 64.544 7.232 125.088-23.68 133.44-84.384 9.44-68.512-29.12-142.752-98.080-137.408z" />
|
31 |
<glyph unicode="" d="M256 480c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.408-114.624 256-256 256zM383.36 281.472l0.192-8.16c0-83.328-63.392-179.328-179.328-179.328-35.584 0-68.704 10.432-96.608 28.32 4.928-0.576 9.952-0.896 15.040-0.896 29.536 0 56.704 10.080 78.272 26.976-27.584 0.512-50.848 18.752-58.88 43.776 3.872-0.736 7.776-1.088 11.872-1.088 5.76 0 11.328 0.736 16.608 2.176-28.832 5.824-50.56 31.264-50.56 61.792v0.8c8.512-4.736 18.208-7.552 28.544-7.904-16.896 11.296-28.032 30.592-28.032 52.448 0 11.552 3.104 22.368 8.512 31.68 31.072-38.144 77.536-63.232 129.92-65.856-1.088 4.608-1.632 9.44-1.632 14.368 0 34.784 28.224 63.008 63.040 63.008 18.112 0 34.496-7.648 46.016-19.904 14.336 2.848 27.84 8.096 40.032 15.296-4.704-14.72-14.688-27.072-27.712-34.88 12.704 1.504 24.896 4.928 36.192 9.92-8.448-12.608-19.168-23.712-31.488-32.544z" />
|
32 |
<glyph unicode="" d="M256 480c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.408-114.624 256-256 256zM408.064 293.664c-17.184-96.704-113.088-178.592-141.92-197.28-28.864-18.688-55.168 7.488-64.736 27.328-10.912 22.528-43.648 145.024-52.224 155.168s-34.304-10.144-34.304-10.144l-12.48 16.352c0 0 52.256 62.368 92 70.208 42.144 8.288 42.080-64.736 52.224-105.248 9.824-39.2 16.384-61.6 24.96-61.6s24.992 21.824 42.88 55.328c17.984 33.536-0.768 63.168-35.872 42.112 14.080 84.192 146.624 104.448 129.472 7.776z" />
|
33 |
<glyph unicode="" d="M256 480c-141.376 0-256-114.624-256-256s114.624-256 256-256 256 114.624 256 256c0 141.408-114.624 256-256 256zM184.576 51.744c-56.672 0-104.48 23.072-104.48 59.936 0 37.408 43.616 73.536 100.288 73.504l17.696 0.16c-7.744 7.52-13.888 16.768-13.888 28.192 0 6.784 2.176 13.28 5.184 19.072l-9.44-0.32c-46.56 0-77.728 33.12-77.728 74.176 0 40.16 43.040 74.816 88.8 74.816h102.080l-22.912-16.512h-32.352c21.472-8.256 32.896-33.28 32.896-58.944 0-21.536-11.936-40.096-28.8-53.28-16.48-12.896-19.584-18.272-19.584-29.216 0-9.344 17.664-25.216 26.88-31.776 26.976-19.072 35.648-36.768 35.648-66.304 0-36.864-35.68-73.504-100.288-73.504zM384 255.392v-63.904h-31.968v63.904h-64.032v32.608h64.032v64h31.968v-64h64v-32.608h-64zM216.608 171.552c-7.744 2.496-16.288 4-25.408 4.096-39.168 0.416-74.24-23.872-74.24-53.088 0-29.824 28.288-54.592 67.456-54.592 55.072 0 74.24 23.296 74.24 53.056 0 3.584-0.448 7.104-1.248 10.528-4.288 16.896-19.552 25.248-40.8 40zM234.048 303.84c-4.544 34.496-29.536 62.208-55.808 63.008-26.272 0.768-43.904-25.632-39.36-60.192 4.544-34.528 29.536-63.168 55.84-63.936 26.24-0.8 43.904 26.56 39.328 61.12z" />
|
|
|
34 |
<glyph unicode="" d="M256 474.24c-138.199 0-250.24-112.036-250.24-250.24s112.041-250.24 250.24-250.24 250.24 112.036 250.24 250.24-112.041 250.24-250.24 250.24zM45.383 155.925c-0.138-0.988-0.85-1.685-1.741-1.685-0.896 0-1.613 0.697-1.736 1.695l-3.179 23.721 3.179 24.13c0.118 1.003 0.84 1.705 1.736 1.705 0.891 0 1.602-0.697 1.741-1.695l3.769-24.146-3.769-23.726zM61.532 141.486c-0.154-1.029-0.901-1.751-1.813-1.751-0.922 0-1.679 0.738-1.807 1.756l-4.27 38.164 4.27 39.024c0.123 1.019 0.886 1.756 1.807 1.756 0.916 0 1.659-0.717 1.813-1.756l4.854-39.024-4.854-38.169zM78.966 135.030c-0.133-1.234-1.049-2.125-2.181-2.125-1.147 0-2.058 0.891-2.176 2.135l-4.055 44.606c0 0 4.055 46.3 4.055 46.305 0.112 1.234 1.029 2.13 2.176 2.13 1.132 0 2.043-0.896 2.181-2.13l4.603-46.305-4.603-44.615zM96.548 133.611c-0.123-1.418-1.219-2.498-2.544-2.498-1.352 0-2.453 1.080-2.56 2.498l-3.83 46.024 3.83 47.575c0.108 1.434 1.209 2.509 2.56 2.509 1.326 0 2.422-1.075 2.544-2.494l4.352-47.586-4.352-46.029zM114.268 133.233c-0.108-1.634-1.372-2.877-2.918-2.877-1.561 0-2.821 1.244-2.924 2.877l-3.615 46.402 3.615 44.13c0.108 1.643 1.367 2.882 2.924 2.882 1.552 0 2.811-1.239 2.918-2.862l4.101-44.15-4.101-46.403zM132.132 133.212v0.021c-0.107-1.822-1.546-3.257-3.292-3.257-1.761 0-3.2 1.433-3.297 3.246l-3.385 46.397 3.385 71.803c0.097 1.828 1.536 3.256 3.297 3.256 1.746 0 3.184-1.429 3.292-3.251l3.84-71.808-3.84-46.407zM149.863 133.248v0.026c-0.092-2.038-1.705-3.625-3.666-3.625-1.966 0-3.574 1.587-3.65 3.615l-3.184 46.111c0 0 3.169 88.212 3.169 88.217 0.092 2.033 1.7 3.625 3.666 3.625 1.961 0 3.574-1.592 3.666-3.625l3.589-88.217-3.589-46.126zM168.269 133.954v0.026c-0.092-2.243-1.853-3.993-4.024-3.993-2.186 0-3.958 1.751-4.035 3.973l-2.954 45.639c0 0 2.954 95.575 2.954 95.586 0.077 2.242 1.849 3.998 4.035 3.998 2.171 0 3.938-1.756 4.024-3.998l3.338-95.586-3.338-45.645zM186.553 134.262c-0.071-2.447-2.012-4.368-4.398-4.368-2.406 0-4.332 1.92-4.393 4.347l-2.744 45.353 2.734 98.8c0.077 2.452 2.002 4.377 4.403 4.377 2.391 0 4.332-1.92 4.398-4.377l3.088-98.806-3.088-45.327zM204.969 134.656v0.036c-0.071-2.658-2.166-4.757-4.772-4.757-2.617 0-4.71 2.099-4.767 4.731l-2.524 44.918 2.509 96.281c0.071 2.663 2.166 4.746 4.782 4.746 2.606 0 4.7-2.078 4.772-4.736l2.841-96.292-2.841-44.928zM223.534 134.938v0.036c-0.056-2.873-2.32-5.12-5.145-5.12-2.821 0-5.089 2.248-5.145 5.084l-2.299 44.642 2.299 92.769c0.056 2.873 2.325 5.12 5.145 5.12 2.826 0 5.089-2.253 5.145-5.12l2.576-92.779-2.576-44.631zM242.468 139.632l-0.231-4.377c-0.025-1.51-0.666-2.887-1.659-3.881-0.999-0.988-2.361-1.608-3.856-1.608-1.685 0-3.2 0.778-4.219 1.997-0.748 0.896-1.224 2.043-1.28 3.277-0.010 0.062-0.016 0.123-0.016 0.19 0 0-2.089 44.308-2.089 44.375l2.069 109.322 0.020 1.039c0.025 1.93 1.034 3.625 2.544 4.603 0.855 0.563 1.869 0.896 2.97 0.896 1.116 0 2.171-0.348 3.047-0.942 1.459-0.988 2.437-2.658 2.468-4.552l2.314-110.402-2.084-39.936zM260.864 135.849v0.051c-0.062-3.231-2.688-5.868-5.888-5.868-3.21 0-5.852 2.632-5.893 5.822l-1.188 21.55-1.219 22.144 2.401 119.798 0.010 0.604c0.020 1.822 0.87 3.451 2.186 4.531 1.008 0.84 2.304 1.341 3.712 1.341 1.095 0 2.119-0.313 2.99-0.845 1.695-1.029 2.862-2.893 2.898-5.017l2.606-120.412-2.616-43.699zM419.825 129.92c0 0-148.014-0.015-148.157 0-3.2 0.322-5.735 2.862-5.77 6.134 0 0 0 169.631 0 169.636 0.036 3.118 1.106 4.72 5.14 6.282 10.373 4.019 22.134 6.39 34.186 6.39 49.285 0 89.671-37.786 93.931-85.95 6.359 2.662 13.348 4.147 20.669 4.147 29.522 0 53.442-23.931 53.442-53.447s-23.921-53.192-53.442-53.192z" />
|
35 |
<glyph unicode="" d="M426.686 480h-341.342c-46.937 0-85.343-38.403-85.343-85.34v-234.658l7.999 31.998h16l8-32-8-32h-16l-8 31.998v-106.652c0.001-46.969 38.407-85.346 85.344-85.346h341.341c46.94 0 85.315 38.377 85.315 85.346v106.101c0-35.039-29.541-63.447-65.993-63.447-1.177 0-182.776 0.088-182.944 0.105-3.941 0.381-7.062 3.615-7.062 7.498v201.357c0 3.697 1.309 5.606 6.289 7.458 12.818 4.767 27.268 7.582 42.159 7.582 60.854 0 110.746-44.851 115.999-102.029 7.857 3.168 16.488 4.928 25.531 4.928 36.453 0 66.021-28.412 66.021-63.45v235.21c0 46.938-38.379 85.341-85.314 85.341zM88 96h-16l-8 64 8 64h16l8-64-8-64zM152 96h-16l-8 81.375 8 78.625h16l8-80-8-80zM216 96h-16l-8 112.109 8 111.891h16l8-111.891-8-112.109z" />
|
36 |
<glyph unicode="" d="M416 480h-320c-53.024 0-96-42.976-96-96v-320c0-53.024 42.976-96 96-96h320c53.024 0 96 42.976 96 96v320c0 53.024-42.976 96-96 96zM408.064 293.664c-17.184-96.704-113.088-178.592-141.92-197.28-28.864-18.688-55.168 7.488-64.736 27.328-10.912 22.528-43.648 145.024-52.224 155.168s-34.304-10.144-34.304-10.144l-12.48 16.352c0 0 52.256 62.368 92 70.208 42.144 8.288 42.080-64.736 52.224-105.248 9.824-39.2 16.384-61.6 24.96-61.6s24.992 21.824 42.88 55.328c17.984 33.536-0.768 63.168-35.872 42.112 14.080 84.192 146.624 104.448 129.472 7.776z" />
|
37 |
<glyph unicode="" d="M259.371 207.648l59.015-157.472c0.39-0.925 0.866-1.774 1.375-2.577-19.956-6.841-41.401-10.6-63.759-10.6-18.847 0-37.036 2.69-54.244 7.619l57.613 163.030zM448 224.003c0-68.985-38.388-129.215-95.47-161.629l58.643 165.136c10.956 26.677 14.603 48.010 14.603 66.975 0 6.886-0.47 13.274-1.294 19.229 14.988-26.631 23.518-57.196 23.518-89.711zM64 224.004c0 27.112 5.972 52.849 16.626 76.103l91.589-244.392c-64.054 30.305-108.215 94.276-108.215 168.289zM95.582 326.716c34.329 50.761 93.342 84.284 160.422 84.284 49.984 0 95.496-18.613 129.654-49.098-0.828 0.049-1.635 0.151-2.488 0.151-18.86 0-32.243-16.001-32.243-33.188 0-15.411 9.131-28.448 18.86-43.858 7.3-12.453 15.827-28.454 15.827-51.571 0-16-6.318-34.575-14.608-60.45l-19.156-62.316-69.39 201.009c11.558 0.589 21.974 1.775 21.974 1.775 10.348 1.194 9.129 16.002-1.223 15.411 0 0-31.102-2.376-51.175-2.376-18.867 0-50.567 2.376-50.567 2.376-10.355 0.59-11.57-14.815-1.219-15.411 0 0 9.795-1.183 20.139-1.775l29.911-79.825-42.022-122.728-69.917 202.553c11.571 0.591 21.976 1.775 21.976 1.775 10.337 1.194 9.116 16.002-1.229 15.411 0 0-31.093-2.376-51.17-2.376-3.603 0-7.851 0.086-12.356 0.227zM426 480h-340c-47.3 0-86-38.7-86-86v-340c0-47.3 38.7-86 86-86h340c47.3 0 86 38.7 86 86v340c0 47.3-38.7 86-86 86zM480 224c0-123.712-100.288-224-224-224s-224 100.288-224 224 100.288 224 224 224 224-100.288 224-224z" />
|
38 |
<glyph unicode="" d="M362.532 231.966c0 19.507-6.999 33.009-13.005 43.525-8.002 13-15.503 24.003-15.503 37.008 0 14.51 11.003 28.011 26.506 28.011 0.697 0 1.367-0.087 2.043-0.123-28.078 25.718-65.48 41.426-106.563 41.426-55.137 0-103.634-28.283-131.856-71.132 3.702-0.107 7.194-0.19 10.158-0.19 16.507 0 42.055 2.007 42.055 2.007 8.505 0.507 9.508-11.996 1.014-13 0 0-8.55-1.004-18.058-1.5l57.457-170.947 34.54 103.572-24.591 67.364c-8.494 0.496-16.548 1.5-16.548 1.5-8.499 0.502-7.506 13.501 0.999 13 0 0 26.061-2.002 41.559-2.002 16.507 0 42.066 2.002 42.066 2.002 8.514 0.502 9.508-11.991 1.009-13 0 0-8.571-1.004-18.063-1.5l57.031-169.641 15.739 52.598c6.825 21.837 12.012 37.514 12.012 51.021zM98.197 224.005c0-62.464 36.306-116.444 88.945-142.024l-75.284 206.244c-8.755-19.62-13.66-41.344-13.66-64.22zM258.775 210.202l-47.355-137.579c14.142-4.163 29.092-6.436 44.585-6.436 18.375 0 35.998 3.18 52.403 8.95-0.43 0.676-0.809 1.387-1.127 2.176l-48.507 132.889zM335.334 87.598c46.92 27.356 78.474 78.188 78.474 136.402 0.005 27.438-7.004 53.233-19.333 75.714 0.681-5.022 1.065-10.425 1.065-16.226 0-16.016-2.985-34.017-12.002-56.525l-48.205-139.367zM256 474.24c-138.204 0-250.24-112.036-250.24-250.24s112.036-250.24 250.24-250.24 250.24 112.036 250.24 250.24-112.036 250.24-250.24 250.24zM256.005 48.481c-96.778 0-175.518 78.74-175.518 175.524 0 96.778 78.736 175.514 175.518 175.514 96.773 0 175.504-78.736 175.504-175.514 0.005-96.784-78.725-175.524-175.504-175.524z" />
|
39 |
<glyph unicode="" d="M416 480h-320c-53.024 0-96-42.976-96-96v-320c0-53.024 42.976-96 96-96h320c53.024 0 96 42.976 96 96v320c0 53.024-42.976 96-96 96zM413.28 166.688c-1.728-21.312-17.92-48.512-40.544-52.448-72.448-5.632-158.368-4.928-233.44 0-23.424 2.944-38.816 31.168-40.544 52.448-3.648 44.736-3.648 70.208 0 114.944 1.728 21.28 17.504 49.344 40.544 51.904 74.208 6.24 160.576 4.896 233.44 0 26.080-0.96 38.816-27.808 40.544-49.12 3.584-44.736 3.584-72.992 0-117.728zM224 160l96 64-96 64z" />
|
|
|
|
|
40 |
<glyph unicode="" d="M267.8 186.784c-6.248-6.248-16.376-6.248-22.624 0l-12.64 12.64-48.656-47.424h144.816l-48.64 47.032-12.256-12.248zM353.648 296h-194.52l96.872-96 97.648 96zM144 287.952v-135.952h16.488l60.224 59.24-76.712 76.712zM352.488 152h15.512v134.976l-75.744-75.736 60.232-59.24zM256 480c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.616 256-256 256zM384 152c0-8.832-7.168-16-16-16h-224c-8.832 0-16 7.168-16 16v144c0 8.832 7.168 16 16 16h224c8.832 0 16-7.168 16-16v-144z" />
|
41 |
</font></defs></svg>
|
assets/fonts/social_buttons.ttf
CHANGED
Binary file
|
assets/fonts/social_buttons.woff
CHANGED
Binary file
|
assets/js/widget.js
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery(document).ajaxSuccess(function(e, xhr, settings) {
|
2 |
+
|
3 |
+
init();
|
4 |
+
|
5 |
+
});
|
6 |
+
|
7 |
+
jQuery(document).ready(function() {
|
8 |
+
init();
|
9 |
+
});
|
10 |
+
|
11 |
+
|
12 |
+
function init (){
|
13 |
+
|
14 |
+
jQuery('.sfmsb-color-picker').wpColorPicker();
|
15 |
+
|
16 |
+
//** Icon events
|
17 |
+
jQuery('.sfmsb-icons-container a').on('click', function(event, ui){
|
18 |
+
|
19 |
+
var tmp = jQuery(this).find('span').attr('class').split(' ');
|
20 |
+
tmp = tmp[0].split('-');
|
21 |
+
|
22 |
+
var icon_name = tmp[2];
|
23 |
+
var widget = '#' + jQuery(this).closest('.widget').attr('id');
|
24 |
+
|
25 |
+
jQuery(widget + ' .sfmsb-initial-message').css('display', 'none');
|
26 |
+
jQuery(widget + ' .sfmsb-input-block').css('display', 'none');
|
27 |
+
jQuery(widget + ' .sfmsb-input-block.sfmsb-' + icon_name).css('display', 'block');
|
28 |
+
|
29 |
+
});
|
30 |
+
|
31 |
+
//** Input events
|
32 |
+
jQuery('.sfmsb-icons-container input[type=text]').keyup(function() {
|
33 |
+
|
34 |
+
var tmp = jQuery(this).attr('id').split('-');
|
35 |
+
tmp = tmp[3].split('_');
|
36 |
+
|
37 |
+
var icon_name = tmp[1];
|
38 |
+
|
39 |
+
var widget = '#' + jQuery(this).closest('.widget').attr('id');
|
40 |
+
|
41 |
+
var aTag = jQuery(widget + ' .sfmsb-icon-' + icon_name).closest('a');
|
42 |
+
|
43 |
+
if(jQuery(this).val() == ''){
|
44 |
+
aTag.attr('class', 'sfmsb-disable');
|
45 |
+
}else{
|
46 |
+
aTag.attr('class', 'sfmsb-pending');
|
47 |
+
}
|
48 |
+
});
|
49 |
+
|
50 |
+
}
|
51 |
+
|
includes/widget.php
CHANGED
@@ -43,14 +43,15 @@ class Sfmsb_Widget extends WP_Widget {
|
|
43 |
'description' => 'Display follow me social buttons'
|
44 |
);
|
45 |
|
46 |
-
|
47 |
-
$this->styles = SFMSB::instance()->buttons_styles;
|
48 |
-
$this->sizes = SFMSB::instance()->buttons_sizes;
|
49 |
$this->available_buttons = SFMSB::instance()->available_buttons;
|
50 |
|
51 |
|
52 |
parent::__construct( 'sfmsb_settings', __( 'Simple follow me social buttons', 'sfmsb_domain' ), $widget_ops );
|
53 |
-
|
|
|
|
|
|
|
|
|
54 |
}
|
55 |
|
56 |
/**
|
@@ -70,7 +71,7 @@ class Sfmsb_Widget extends WP_Widget {
|
|
70 |
<!-- *** TITLE text ***-->
|
71 |
|
72 |
<p>
|
73 |
-
<label
|
74 |
|
75 |
<input class="widefat"
|
76 |
name="<?php echo $this->get_field_name( 'title' ); ?>"
|
@@ -81,7 +82,7 @@ class Sfmsb_Widget extends WP_Widget {
|
|
81 |
<!-- *** TEXT extra ***-->
|
82 |
|
83 |
<p>
|
84 |
-
<label
|
85 |
|
86 |
<input class="widefat"
|
87 |
name="<?php echo $this->get_field_name( 'text' ); ?>"
|
@@ -91,110 +92,115 @@ class Sfmsb_Widget extends WP_Widget {
|
|
91 |
|
92 |
<!-- *** ENABLE checkbox & URL text ***-->
|
93 |
|
|
|
94 |
|
95 |
-
<?
|
96 |
|
97 |
-
|
|
|
|
|
98 |
|
99 |
-
<input id="<?php echo $this->get_field_name( 'enable_' . $key ) ?>"
|
100 |
-
name="<?php echo $this->get_field_name( 'enable_' . $key ) ?>"
|
101 |
-
type="checkbox"
|
102 |
-
value="1" <?php checked(1, $instance[ 'enable_' . $key ] ) ?> />
|
103 |
-
|
104 |
-
<?php
|
105 |
|
106 |
-
|
107 |
|
108 |
$label = __( 'Your Email address or other contact URL', 'sfmsb_domain');
|
109 |
|
110 |
$instance['url_' . $key] = str_replace('mailto:', '', $instance['url_' . $key]);
|
111 |
-
if( filter_var( $instance['url_' . $key], FILTER_VALIDATE_EMAIL ) ){
|
112 |
|
|
|
|
|
113 |
$value = esc_attr( $instance['url_' . $key] );
|
114 |
-
|
115 |
} else {
|
116 |
-
|
117 |
-
$value = esc_url( $instance['url_' . $key] );
|
118 |
|
119 |
-
|
|
|
120 |
|
121 |
|
122 |
} else {
|
123 |
-
|
124 |
$label = __( $item['name'] . ' URL', 'sfmsb_domain');
|
125 |
$value = esc_url( $instance['url_' . $key] );
|
126 |
}
|
|
|
|
|
|
|
|
|
|
|
127 |
|
128 |
-
?>
|
129 |
-
|
130 |
-
|
131 |
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
<? } // foreach available buttons ?>
|
141 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
|
143 |
<!-- *** STYLE select ***-->
|
144 |
<p>
|
145 |
-
<label
|
146 |
<select id="<?php echo $this->get_field_id( 'style' ); ?>" name="<?php echo $this->get_field_name( 'style' ); ?>">
|
147 |
<option value="circle" <?php selected($instance[ 'style' ], 'circle') ?>><?php _e('Rounded', 'sfmsb_domain') ?></option>
|
148 |
<option value="square" <?php selected($instance[ 'style' ], 'square') ?>><?php _e('Squared', 'sfmsb_domain') ?></option>
|
149 |
</select>
|
150 |
</p>
|
151 |
-
|
152 |
-
<script type='text/javascript'>
|
153 |
-
jQuery(document).ready(function($) {
|
154 |
-
$('.sfmsb-color-picker').wpColorPicker();
|
155 |
-
});
|
156 |
-
</script>
|
157 |
-
|
158 |
<p>
|
159 |
-
<label
|
160 |
<input class="sfmsb-color-picker" type="text" id="<?php echo $this->get_field_id( 'color' ); ?>" name="<?php echo $this->get_field_name( 'color' ); ?>" value="<?php echo esc_attr( $instance['color'] ); ?>" />
|
161 |
</p>
|
162 |
|
163 |
<!-- *** SIZES radios ***-->
|
164 |
<p>
|
165 |
-
<label
|
166 |
-
|
167 |
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
|
173 |
</p>
|
174 |
|
175 |
<!-- *** POSITIONS radios ***-->
|
176 |
<p>
|
177 |
-
<label
|
178 |
-
|
179 |
|
180 |
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
value="float" <?php checked('float', $instance['position']) ?> />
|
193 |
|
194 |
-
|
195 |
-
|
196 |
</p>
|
197 |
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
|
199 |
<?
|
200 |
|
@@ -219,20 +225,19 @@ class Sfmsb_Widget extends WP_Widget {
|
|
219 |
foreach( $this->available_buttons as $key => $item ){
|
220 |
|
221 |
if( $key == 'email' ) {
|
|
|
222 |
$new_instance['url_' . $key] = str_replace('mailto:', '', $new_instance['url_' . $key]);
|
223 |
|
224 |
if( filter_var( $new_instance['url_' . $key], FILTER_VALIDATE_EMAIL ) ){
|
225 |
-
|
226 |
$value = esc_attr( $new_instance['url_' . $key] );
|
227 |
-
|
228 |
} else {
|
229 |
-
|
230 |
$value = esc_url( $new_instance['url_' . $key] );
|
231 |
-
|
232 |
-
} // if valid email
|
233 |
-
|
234 |
|
235 |
} else {
|
|
|
236 |
$value = esc_url( $new_instance['url_' . $key] );
|
237 |
}
|
238 |
|
@@ -288,34 +293,37 @@ class Sfmsb_Widget extends WP_Widget {
|
|
288 |
break;
|
289 |
}
|
290 |
|
291 |
-
if ( !empty( $instance['text'] ) ) {
|
|
|
|
|
292 |
|
293 |
// ** do_action
|
294 |
do_action('sfmsb_widget_before_links');
|
295 |
|
296 |
foreach ( SFMSB::instance()->available_buttons as $key => $item ) {
|
297 |
|
298 |
-
if( isset( $instance['
|
|
|
|
|
299 |
|
300 |
-
|
301 |
-
|
302 |
-
}else{
|
303 |
-
$color = $instance['color'];
|
304 |
-
}
|
305 |
|
306 |
-
|
307 |
-
|
|
|
|
|
308 |
$href = 'mailto:' . esc_attr($instance['url_' . $key]);
|
309 |
-
|
310 |
} else {
|
311 |
-
|
312 |
$href = esc_url($instance['url_' . $key]);
|
313 |
}
|
314 |
|
315 |
echo '<a target="_blank" href="' . $href . '">';
|
316 |
-
|
317 |
echo '</a>';
|
318 |
-
|
|
|
|
|
319 |
} // foreach
|
320 |
|
321 |
// ** do_action
|
@@ -346,16 +354,32 @@ class Sfmsb_Widget extends WP_Widget {
|
|
346 |
*/
|
347 |
public static function add_style() {
|
348 |
wp_enqueue_style('sfmsb-style', SFMSB_PLUGIN_URL . 'assets/css/style.css', array(), SFMSB_PLUGIN_VERSION);
|
|
|
349 |
}
|
350 |
|
351 |
/**
|
352 |
-
*
|
353 |
* @since 1.0.0
|
354 |
*/
|
355 |
public static function add_admin_scripts() {
|
356 |
-
|
357 |
wp_enqueue_style( 'wp-color-picker' );
|
358 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
}
|
360 |
|
361 |
|
43 |
'description' => 'Display follow me social buttons'
|
44 |
);
|
45 |
|
|
|
|
|
|
|
46 |
$this->available_buttons = SFMSB::instance()->available_buttons;
|
47 |
|
48 |
|
49 |
parent::__construct( 'sfmsb_settings', __( 'Simple follow me social buttons', 'sfmsb_domain' ), $widget_ops );
|
50 |
+
|
51 |
+
wp_enqueue_script( 'wp-color-picker' );
|
52 |
+
wp_register_script( 'sfmsb-admin-widget-script', SFMSB_PLUGIN_URL . 'assets/js/widget.js', array('jquery'), SFMSB_PLUGIN_VERSION );
|
53 |
+
|
54 |
+
add_action( "admin_print_scripts-widgets.php", array('Sfmsb_Widget', 'admin_widget_scripts') );
|
55 |
}
|
56 |
|
57 |
/**
|
71 |
<!-- *** TITLE text ***-->
|
72 |
|
73 |
<p>
|
74 |
+
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e('Title', 'sfmsb_domain'); ?></label>
|
75 |
|
76 |
<input class="widefat"
|
77 |
name="<?php echo $this->get_field_name( 'title' ); ?>"
|
82 |
<!-- *** TEXT extra ***-->
|
83 |
|
84 |
<p>
|
85 |
+
<label for="<?php echo $this->get_field_id( 'text' ); ?>"><?php _e('Text', 'sfmsb_domain'); ?></label>
|
86 |
|
87 |
<input class="widefat"
|
88 |
name="<?php echo $this->get_field_name( 'text' ); ?>"
|
92 |
|
93 |
<!-- *** ENABLE checkbox & URL text ***-->
|
94 |
|
95 |
+
<div class="sfmsb-icons-container">
|
96 |
|
97 |
+
<?php
|
98 |
|
99 |
+
foreach ( $this->available_buttons as $key => $item ) {
|
100 |
+
|
101 |
+
( $instance['color'] == '') ? $color = '#' . $item['color'] : $color = $instance['color'];
|
102 |
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
+
if( $key == 'email' ) {
|
105 |
|
106 |
$label = __( 'Your Email address or other contact URL', 'sfmsb_domain');
|
107 |
|
108 |
$instance['url_' . $key] = str_replace('mailto:', '', $instance['url_' . $key]);
|
|
|
109 |
|
110 |
+
if( filter_var( $instance['url_' . $key], FILTER_VALIDATE_EMAIL ) ){
|
111 |
+
|
112 |
$value = esc_attr( $instance['url_' . $key] );
|
|
|
113 |
} else {
|
|
|
|
|
114 |
|
115 |
+
$value = esc_url( $instance['url_' . $key] );
|
116 |
+
} // if
|
117 |
|
118 |
|
119 |
} else {
|
120 |
+
|
121 |
$label = __( $item['name'] . ' URL', 'sfmsb_domain');
|
122 |
$value = esc_url( $instance['url_' . $key] );
|
123 |
}
|
124 |
+
?>
|
125 |
+
|
126 |
+
<a href="javascript:void(0);" <?php echo ( $value == '' ) ? 'class="sfmsb-disable"' : 'class="sfmsb-enable"'; ?>>
|
127 |
+
<span class="sfmsb-icon-<?php echo $key .' '. $instance['style'] ?>" style="color: <?php echo $color ?>"></span>
|
128 |
+
</a>
|
129 |
|
130 |
+
<div class="sfmsb-input-block sfmsb-<?php echo $key ?>">
|
131 |
+
|
132 |
+
<label for="<?php echo $this->get_field_id( 'url_' . $key ); ?>"><?php echo $label; ?></label>
|
133 |
|
134 |
+
<input id="<?php echo $this->get_field_id( 'url_' . $key ) ?>"
|
135 |
+
class="widefat"
|
136 |
+
name="<?php echo $this->get_field_name( 'url_' . $key ); ?>"
|
137 |
+
type="text"
|
138 |
+
class=""
|
139 |
+
value="<?php echo $value ?>"/>
|
140 |
+
</div>
|
|
|
|
|
141 |
|
142 |
+
<?php } // foreach ?>
|
143 |
+
<div class="clearfix"></div>
|
144 |
+
|
145 |
+
<div class="sfmsb-initial-message">
|
146 |
+
<?php _e('Click on any icon to input the url and enable it. Leave the input blank to disable the icon.', 'sfmsb_domain');?>
|
147 |
+
</div>
|
148 |
+
|
149 |
+
</div>
|
150 |
|
151 |
<!-- *** STYLE select ***-->
|
152 |
<p>
|
153 |
+
<label for="<?php echo $this->get_field_id( 'style' ); ?>"><b><?php _e('Style', 'sfmsb_domain'); ?></b></label>
|
154 |
<select id="<?php echo $this->get_field_id( 'style' ); ?>" name="<?php echo $this->get_field_name( 'style' ); ?>">
|
155 |
<option value="circle" <?php selected($instance[ 'style' ], 'circle') ?>><?php _e('Rounded', 'sfmsb_domain') ?></option>
|
156 |
<option value="square" <?php selected($instance[ 'style' ], 'square') ?>><?php _e('Squared', 'sfmsb_domain') ?></option>
|
157 |
</select>
|
158 |
</p>
|
159 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
<p>
|
161 |
+
<label for="<?php echo $this->get_field_id( 'color' ); ?>"><b><?php _e( 'Color', 'sfmsb_domain' ); ?></b></label>
|
162 |
<input class="sfmsb-color-picker" type="text" id="<?php echo $this->get_field_id( 'color' ); ?>" name="<?php echo $this->get_field_name( 'color' ); ?>" value="<?php echo esc_attr( $instance['color'] ); ?>" />
|
163 |
</p>
|
164 |
|
165 |
<!-- *** SIZES radios ***-->
|
166 |
<p>
|
167 |
+
<label for="<?php echo $this->get_field_id( 'size' ); ?>"><b><?php _e('Size', 'sfmsb_domain'); ?></b></label>
|
|
|
168 |
|
169 |
+
<input class="s"
|
170 |
+
name="<?php echo $this->get_field_name( 'size' ); ?>"
|
171 |
+
type="text"
|
172 |
+
value="<?php echo esc_attr( $instance['size'] ); ?>" /> px
|
173 |
|
174 |
</p>
|
175 |
|
176 |
<!-- *** POSITIONS radios ***-->
|
177 |
<p>
|
178 |
+
<label for="<?php echo $this->get_field_id( 'position' ); ?>"><b><?php _e('Position', 'sfmsb_domain'); ?></b></label>
|
179 |
+
<br/>
|
180 |
|
181 |
|
182 |
+
<input id="<?php echo $this->get_field_id( 'position' ); ?>"
|
183 |
+
name="<?php echo $this->get_field_name( 'position' ); ?>"
|
184 |
+
type="radio"
|
185 |
+
value="under" <?php checked('under', $instance['position']) ?> />
|
186 |
|
187 |
+
<label><?php _e('Icons under text', 'sfmsb_domain'); ?></label>
|
188 |
+
|
189 |
+
<input id="<?php echo $this->get_field_id( 'position' ); ?>"
|
190 |
+
name="<?php echo $this->get_field_name( 'position' ); ?>"
|
191 |
+
type="radio"
|
192 |
+
value="float" <?php checked('float', $instance['position']) ?> />
|
|
|
193 |
|
194 |
+
<label><?php _e('Icons next to text', 'sfmsb_domain'); ?></label>
|
195 |
+
|
196 |
</p>
|
197 |
|
198 |
+
<script>
|
199 |
+
|
200 |
+
jQuery('#widgets-right').on('click','.icon_buttons input',function(){
|
201 |
+
openPanel(jQuery(this),jQuery(this).index());
|
202 |
+
});
|
203 |
+
</script>
|
204 |
|
205 |
<?
|
206 |
|
225 |
foreach( $this->available_buttons as $key => $item ){
|
226 |
|
227 |
if( $key == 'email' ) {
|
228 |
+
|
229 |
$new_instance['url_' . $key] = str_replace('mailto:', '', $new_instance['url_' . $key]);
|
230 |
|
231 |
if( filter_var( $new_instance['url_' . $key], FILTER_VALIDATE_EMAIL ) ){
|
232 |
+
|
233 |
$value = esc_attr( $new_instance['url_' . $key] );
|
|
|
234 |
} else {
|
235 |
+
|
236 |
$value = esc_url( $new_instance['url_' . $key] );
|
237 |
+
} // if
|
|
|
|
|
238 |
|
239 |
} else {
|
240 |
+
|
241 |
$value = esc_url( $new_instance['url_' . $key] );
|
242 |
}
|
243 |
|
293 |
break;
|
294 |
}
|
295 |
|
296 |
+
if ( !empty( $instance['text'] ) ) {
|
297 |
+
echo '<span class="sfmsb-text" style="font-size:'. $text_size .'px;">' . $instance['text'] . '</span>';
|
298 |
+
}
|
299 |
|
300 |
// ** do_action
|
301 |
do_action('sfmsb_widget_before_links');
|
302 |
|
303 |
foreach ( SFMSB::instance()->available_buttons as $key => $item ) {
|
304 |
|
305 |
+
if( isset( $instance['url_' . $key] ) &&
|
306 |
+
$instance['url_' . $key] != ''
|
307 |
+
) {
|
308 |
|
309 |
+
// color (default or custom)
|
310 |
+
( $instance['color'] == '') ? $color = '#' . $item['color'] : $color = $instance['color'];
|
|
|
|
|
|
|
311 |
|
312 |
+
//url (default or email)
|
313 |
+
if( $key == 'email' &&
|
314 |
+
filter_var( $instance['url_' . $key], FILTER_VALIDATE_EMAIL )
|
315 |
+
) {
|
316 |
$href = 'mailto:' . esc_attr($instance['url_' . $key]);
|
|
|
317 |
} else {
|
|
|
318 |
$href = esc_url($instance['url_' . $key]);
|
319 |
}
|
320 |
|
321 |
echo '<a target="_blank" href="' . $href . '">';
|
322 |
+
echo '<span class="sfmsb-icon-'. $key .' '. $instance['style'] .'" style="color:' . $color . ';font-size:'. $instance['size'] .'px;"></span>';
|
323 |
echo '</a>';
|
324 |
+
|
325 |
+
}// if enabled
|
326 |
+
|
327 |
} // foreach
|
328 |
|
329 |
// ** do_action
|
354 |
*/
|
355 |
public static function add_style() {
|
356 |
wp_enqueue_style('sfmsb-style', SFMSB_PLUGIN_URL . 'assets/css/style.css', array(), SFMSB_PLUGIN_VERSION);
|
357 |
+
wp_enqueue_style('sfmsb-icons', SFMSB_PLUGIN_URL . 'assets/css/icons.css', array(), SFMSB_PLUGIN_VERSION);
|
358 |
}
|
359 |
|
360 |
/**
|
361 |
+
* add_admin_scripts
|
362 |
* @since 1.0.0
|
363 |
*/
|
364 |
public static function add_admin_scripts() {
|
365 |
+
|
366 |
wp_enqueue_style( 'wp-color-picker' );
|
367 |
+
wp_enqueue_style('sfmsb-admin-style', SFMSB_PLUGIN_URL . 'assets/css/admin.css', array(), SFMSB_PLUGIN_VERSION);
|
368 |
+
wp_enqueue_style('sfmsb-icons', SFMSB_PLUGIN_URL . 'assets/css/icons.css', array(), SFMSB_PLUGIN_VERSION);
|
369 |
+
|
370 |
+
/* wp_enqueue_script( 'wp-color-picker' );
|
371 |
+
wp_register_script( 'sfmsb-admin-widget-script', SFMSB_PLUGIN_URL . 'assets/js/widget.js', array('jquery'), SFMSB_PLUGIN_VERSION );
|
372 |
+
|
373 |
+
add_action( "admin_print_scripts-widgets.php", array('Sfmsb_Widget', 'admin_widget_scripts') );*/
|
374 |
+
}
|
375 |
+
|
376 |
+
/**
|
377 |
+
* admin_widget_scripts
|
378 |
+
* @since 2.0
|
379 |
+
*/
|
380 |
+
|
381 |
+
public static function admin_widget_scripts(){
|
382 |
+
wp_enqueue_script('sfmsb-admin-widget-script');
|
383 |
}
|
384 |
|
385 |
|
languages/sfmsb_domain-en_EN.mo
CHANGED
Binary file
|
languages/sfmsb_domain-en_EN.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Simple Follow Me Social Buttons Widget\n"
|
4 |
-
"POT-Creation-Date: 2014-08-
|
5 |
-
"PO-Revision-Date: 2014-08-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en\n"
|
@@ -18,62 +18,68 @@ msgstr ""
|
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: includes/widget.php:25
|
22 |
msgid "Social"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: includes/widget.php:28
|
26 |
msgid "Follow me on:"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: includes/widget.php:
|
30 |
msgid "Simple follow me social buttons"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: includes/widget.php:
|
34 |
msgid "Title"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: includes/widget.php:
|
38 |
msgid "Text"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: includes/widget.php:
|
42 |
msgid "Your Email address or other contact URL"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: includes/widget.php:
|
46 |
msgid " URL"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: includes/widget.php:
|
50 |
msgid "Style"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: includes/widget.php:
|
54 |
msgid "Rounded"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: includes/widget.php:
|
58 |
msgid "Squared"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: includes/widget.php:
|
62 |
msgid "Color"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: includes/widget.php:
|
66 |
msgid "Size"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: includes/widget.php:
|
70 |
msgid "Position"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: includes/widget.php:
|
74 |
msgid "Icons under text"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: includes/widget.php:194
|
78 |
msgid "Icons next to text"
|
79 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Simple Follow Me Social Buttons Widget\n"
|
4 |
+
"POT-Creation-Date: 2014-08-25 16:29+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-08-25 16:29+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: includes/_widget.php:25 includes/widget.php:25
|
22 |
msgid "Social"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: includes/_widget.php:28 includes/widget.php:28
|
26 |
msgid "Follow me on:"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: includes/_widget.php:52 includes/widget.php:49
|
30 |
msgid "Simple follow me social buttons"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: includes/_widget.php:73 includes/widget.php:74
|
34 |
msgid "Title"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: includes/_widget.php:84 includes/widget.php:85
|
38 |
msgid "Text"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: includes/_widget.php:108 includes/widget.php:106
|
42 |
msgid "Your Email address or other contact URL"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: includes/_widget.php:124 includes/widget.php:121
|
46 |
msgid " URL"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: includes/_widget.php:145 includes/widget.php:153
|
50 |
msgid "Style"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: includes/_widget.php:147 includes/widget.php:155
|
54 |
msgid "Rounded"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: includes/_widget.php:148 includes/widget.php:156
|
58 |
msgid "Squared"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: includes/_widget.php:159 includes/widget.php:161
|
62 |
msgid "Color"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: includes/_widget.php:165 includes/widget.php:167
|
66 |
msgid "Size"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: includes/_widget.php:177 includes/widget.php:178
|
70 |
msgid "Position"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: includes/_widget.php:186 includes/widget.php:187
|
74 |
msgid "Icons under text"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: includes/_widget.php:194 includes/widget.php:194
|
78 |
msgid "Icons next to text"
|
79 |
msgstr ""
|
80 |
+
|
81 |
+
#: includes/widget.php:146
|
82 |
+
msgid ""
|
83 |
+
"Click on any icon to input the url and enable it. Leave the input blank to "
|
84 |
+
"disable the icon."
|
85 |
+
msgstr ""
|
languages/sfmsb_domain-es_ES.mo
CHANGED
Binary file
|
languages/sfmsb_domain-es_ES.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Simple Follow Me Social Buttons Widget\n"
|
4 |
-
"POT-Creation-Date: 2014-08-
|
5 |
-
"PO-Revision-Date: 2014-08-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: es\n"
|
@@ -18,65 +18,73 @@ msgstr ""
|
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: includes/widget.php:25
|
22 |
msgid "Social"
|
23 |
msgstr "Social"
|
24 |
|
25 |
-
#: includes/widget.php:28
|
26 |
msgid "Follow me on:"
|
27 |
msgstr "Sígueme en:"
|
28 |
|
29 |
-
#: includes/widget.php:
|
30 |
msgid "Simple follow me social buttons"
|
31 |
msgstr "Simple follow me social buttons"
|
32 |
|
33 |
-
#: includes/widget.php:
|
34 |
msgid "Title"
|
35 |
msgstr "Título"
|
36 |
|
37 |
-
#: includes/widget.php:
|
38 |
msgid "Text"
|
39 |
msgstr "Texto"
|
40 |
|
41 |
-
#: includes/widget.php:
|
42 |
msgid "Your Email address or other contact URL"
|
43 |
msgstr "Tu dirección email u otra URL de contacto"
|
44 |
|
45 |
-
#: includes/widget.php:
|
46 |
msgid " URL"
|
47 |
msgstr "URL"
|
48 |
|
49 |
-
#: includes/widget.php:
|
50 |
msgid "Style"
|
51 |
msgstr "Estilo"
|
52 |
|
53 |
-
#: includes/widget.php:
|
54 |
msgid "Rounded"
|
55 |
msgstr "Redondo"
|
56 |
|
57 |
-
#: includes/widget.php:
|
58 |
msgid "Squared"
|
59 |
msgstr "Cuadrado"
|
60 |
|
61 |
-
#: includes/widget.php:
|
62 |
msgid "Color"
|
63 |
msgstr "Color"
|
64 |
|
65 |
-
#: includes/widget.php:
|
66 |
msgid "Size"
|
67 |
msgstr "Tamaño"
|
68 |
|
69 |
-
#: includes/widget.php:
|
70 |
msgid "Position"
|
71 |
msgstr "Posición"
|
72 |
|
73 |
-
#: includes/widget.php:
|
74 |
msgid "Icons under text"
|
75 |
msgstr "Iconos bajo texto"
|
76 |
|
77 |
-
#: includes/widget.php:194
|
78 |
msgid "Icons next to text"
|
79 |
msgstr "Iconos junto texto"
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
#~ msgid "Your "
|
82 |
#~ msgstr "Tu "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Simple Follow Me Social Buttons Widget\n"
|
4 |
+
"POT-Creation-Date: 2014-08-25 16:28+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-08-25 16:30+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: es\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: includes/_widget.php:25 includes/widget.php:25
|
22 |
msgid "Social"
|
23 |
msgstr "Social"
|
24 |
|
25 |
+
#: includes/_widget.php:28 includes/widget.php:28
|
26 |
msgid "Follow me on:"
|
27 |
msgstr "Sígueme en:"
|
28 |
|
29 |
+
#: includes/_widget.php:52 includes/widget.php:49
|
30 |
msgid "Simple follow me social buttons"
|
31 |
msgstr "Simple follow me social buttons"
|
32 |
|
33 |
+
#: includes/_widget.php:73 includes/widget.php:74
|
34 |
msgid "Title"
|
35 |
msgstr "Título"
|
36 |
|
37 |
+
#: includes/_widget.php:84 includes/widget.php:85
|
38 |
msgid "Text"
|
39 |
msgstr "Texto"
|
40 |
|
41 |
+
#: includes/_widget.php:108 includes/widget.php:106
|
42 |
msgid "Your Email address or other contact URL"
|
43 |
msgstr "Tu dirección email u otra URL de contacto"
|
44 |
|
45 |
+
#: includes/_widget.php:124 includes/widget.php:121
|
46 |
msgid " URL"
|
47 |
msgstr "URL"
|
48 |
|
49 |
+
#: includes/_widget.php:145 includes/widget.php:153
|
50 |
msgid "Style"
|
51 |
msgstr "Estilo"
|
52 |
|
53 |
+
#: includes/_widget.php:147 includes/widget.php:155
|
54 |
msgid "Rounded"
|
55 |
msgstr "Redondo"
|
56 |
|
57 |
+
#: includes/_widget.php:148 includes/widget.php:156
|
58 |
msgid "Squared"
|
59 |
msgstr "Cuadrado"
|
60 |
|
61 |
+
#: includes/_widget.php:159 includes/widget.php:161
|
62 |
msgid "Color"
|
63 |
msgstr "Color"
|
64 |
|
65 |
+
#: includes/_widget.php:165 includes/widget.php:167
|
66 |
msgid "Size"
|
67 |
msgstr "Tamaño"
|
68 |
|
69 |
+
#: includes/_widget.php:177 includes/widget.php:178
|
70 |
msgid "Position"
|
71 |
msgstr "Posición"
|
72 |
|
73 |
+
#: includes/_widget.php:186 includes/widget.php:187
|
74 |
msgid "Icons under text"
|
75 |
msgstr "Iconos bajo texto"
|
76 |
|
77 |
+
#: includes/_widget.php:194 includes/widget.php:194
|
78 |
msgid "Icons next to text"
|
79 |
msgstr "Iconos junto texto"
|
80 |
|
81 |
+
#: includes/widget.php:146
|
82 |
+
msgid ""
|
83 |
+
"Click on any icon to input the url and enable it. Leave the input blank to "
|
84 |
+
"disable the icon."
|
85 |
+
msgstr ""
|
86 |
+
"Pincha en un icono para introducir su enlace y activarlo. Deja el campo de "
|
87 |
+
"texto en blanco para desactivarlo."
|
88 |
+
|
89 |
#~ msgid "Your "
|
90 |
#~ msgstr "Tu "
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Simple Follow Me Social Buttons Widget ===
|
2 |
Contributors: lucymtc
|
3 |
-
Tags: social,follow me,buttons,twitter,facebook,pinterest,google plus,linkedin,wordpress,rss,github,youtube,vimeo,instagram,font icons,retina ready
|
4 |
Requires at least: 3.8
|
5 |
-
Tested up to:
|
6 |
-
Stable tag: 1.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -33,6 +33,7 @@ Availbale Icons:
|
|
33 |
* Instagram
|
34 |
* Email
|
35 |
* SoundCloud
|
|
|
36 |
|
37 |
Icons from www.flaticon.com
|
38 |
|
@@ -49,6 +50,10 @@ Icons from www.flaticon.com
|
|
49 |
|
50 |
== Changelog ==
|
51 |
|
|
|
|
|
|
|
|
|
52 |
= 1.4 =
|
53 |
* Added option to enter email address or url to any contact page for the email icon
|
54 |
|
1 |
=== Simple Follow Me Social Buttons Widget ===
|
2 |
Contributors: lucymtc
|
3 |
+
Tags: social,follow me,buttons,twitter,facebook,pinterest,google plus,linkedin,wordpress,rss,github,youtube,vimeo,instagram,email,sound cloud,itunes,font icons,retina ready
|
4 |
Requires at least: 3.8
|
5 |
+
Tested up to: 4.0
|
6 |
+
Stable tag: 1.5
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
33 |
* Instagram
|
34 |
* Email
|
35 |
* SoundCloud
|
36 |
+
* iTunes
|
37 |
|
38 |
Icons from www.flaticon.com
|
39 |
|
50 |
|
51 |
== Changelog ==
|
52 |
|
53 |
+
= 1.5 =
|
54 |
+
* Improved user interface design on the widget admin form.
|
55 |
+
* Added iTunes icon.
|
56 |
+
|
57 |
= 1.4 =
|
58 |
* Added option to enter email address or url to any contact page for the email icon
|
59 |
|
screenshot-1.png
DELETED
Binary file
|
screenshot-2.png
DELETED
Binary file
|
simple-follow-me-social-buttons-widget.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
Plugin Name: Simple Follow Me Social Buttons Widget
|
4 |
Description: Widget to add some of the most popular follow me social buttons. Retina ready.
|
5 |
-
Version: 1.
|
6 |
Author: Lucy Tomás
|
7 |
Author URI: https://wordpress.org/support/profile/lucymtc
|
8 |
License: GPLv2
|
@@ -107,7 +107,7 @@ final class SFMSB {
|
|
107 |
if( !defined('SFMSB_PLUGIN_DIR') ) { define('SFMSB_PLUGIN_DIR', plugin_dir_path( __FILE__ )); }
|
108 |
if( !defined('SFMSB_PLUGIN_URL') ) { define('SFMSB_PLUGIN_URL', plugin_dir_url( __FILE__ )); }
|
109 |
if( !defined('SFMSB_PLUGIN_FILE') ) { define('SFMSB_PLUGIN_FILE', __FILE__ ); }
|
110 |
-
if( !defined('SFMSB_PLUGIN_VERSION') ) { define('SFMSB_PLUGIN_VERSION', '1.
|
111 |
|
112 |
}
|
113 |
|
@@ -127,11 +127,11 @@ final class SFMSB {
|
|
127 |
'color' => 'd68778'),
|
128 |
'feed' => array('name' => 'Rss Feed',
|
129 |
'color' => 'e1b96a'),
|
130 |
-
'linkedin'
|
131 |
'color' => '6c97bf'),
|
132 |
-
'pinterest'
|
133 |
'color' => 'd68678'),
|
134 |
-
'wordpress'
|
135 |
'color' => '6b96be'),
|
136 |
'github' => array('name' => 'Github',
|
137 |
'color' => '717272'),
|
@@ -139,12 +139,14 @@ final class SFMSB {
|
|
139 |
'color' => 'b9a38c'),
|
140 |
'youtube' => array('name' => 'Youtube',
|
141 |
'color' => 'd68778'),
|
142 |
-
'vimeo'
|
143 |
'color' => '4b6079'),
|
144 |
-
'email'
|
145 |
'color' => '84b3dc'),
|
146 |
-
'soundcloud'
|
147 |
-
'color' => 'f6a46a')
|
|
|
|
|
148 |
);
|
149 |
|
150 |
}
|
2 |
/**
|
3 |
Plugin Name: Simple Follow Me Social Buttons Widget
|
4 |
Description: Widget to add some of the most popular follow me social buttons. Retina ready.
|
5 |
+
Version: 1.5
|
6 |
Author: Lucy Tomás
|
7 |
Author URI: https://wordpress.org/support/profile/lucymtc
|
8 |
License: GPLv2
|
107 |
if( !defined('SFMSB_PLUGIN_DIR') ) { define('SFMSB_PLUGIN_DIR', plugin_dir_path( __FILE__ )); }
|
108 |
if( !defined('SFMSB_PLUGIN_URL') ) { define('SFMSB_PLUGIN_URL', plugin_dir_url( __FILE__ )); }
|
109 |
if( !defined('SFMSB_PLUGIN_FILE') ) { define('SFMSB_PLUGIN_FILE', __FILE__ ); }
|
110 |
+
if( !defined('SFMSB_PLUGIN_VERSION') ) { define('SFMSB_PLUGIN_VERSION', '1.5'); }
|
111 |
|
112 |
}
|
113 |
|
127 |
'color' => 'd68778'),
|
128 |
'feed' => array('name' => 'Rss Feed',
|
129 |
'color' => 'e1b96a'),
|
130 |
+
'linkedin' => array('name' => 'Linkedin',
|
131 |
'color' => '6c97bf'),
|
132 |
+
'pinterest' => array('name' => 'Pinterest',
|
133 |
'color' => 'd68678'),
|
134 |
+
'wordpress' => array('name' => 'WordPress',
|
135 |
'color' => '6b96be'),
|
136 |
'github' => array('name' => 'Github',
|
137 |
'color' => '717272'),
|
139 |
'color' => 'b9a38c'),
|
140 |
'youtube' => array('name' => 'Youtube',
|
141 |
'color' => 'd68778'),
|
142 |
+
'vimeo' => array('name' => 'Vimeo',
|
143 |
'color' => '4b6079'),
|
144 |
+
'email' => array('name' => 'Email',
|
145 |
'color' => '84b3dc'),
|
146 |
+
'soundcloud' => array('name' => 'SoundCloud',
|
147 |
+
'color' => 'f6a46a'),
|
148 |
+
'itunes' => array('name' => 'iTunes',
|
149 |
+
'color' => 'cf95f5')
|
150 |
);
|
151 |
|
152 |
}
|