Version Description
- Added apsi_image_url filter
- Added relative URL fetch for the icon image
- Added Swedish Language
Download this release
Release Info
Developer | Access Keys |
Plugin | Social Icons WordPress Plugin – AccessPress Social Icons |
Version | 1.5.3 |
Comparing to | |
See all releases |
Code changes from version 1.5.2 to 1.5.3
accesspress-social-icons.php
CHANGED
@@ -4,7 +4,7 @@ defined('ABSPATH') or die("No script kiddies please!");
|
|
4 |
* Plugin Name:AccessPress Social Icons
|
5 |
* Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons/
|
6 |
* Description: A plugin to add social icons in your site wherever you want dynamically with handful of configurable settings.
|
7 |
-
* Version:1.5.
|
8 |
* Author:AccessPress Themes
|
9 |
* Author URI:http://accesspressthemes.com/
|
10 |
* Text Domain: accesspress-social-icons
|
@@ -23,6 +23,13 @@ if (!defined('APS_JS_DIR')) {
|
|
23 |
if (!defined('APS_CSS_DIR')) {
|
24 |
define('APS_CSS_DIR', plugin_dir_url(__FILE__) . 'css');
|
25 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
if (!defined('APS_ICONS_DIR')) {
|
27 |
/**
|
28 |
* apsi_icons_sets_directory filter
|
@@ -39,7 +46,7 @@ if (!defined('APS_LANG_DIR')) {
|
|
39 |
}
|
40 |
if(!defined('APS_VERSION'))
|
41 |
{
|
42 |
-
define('APS_VERSION','1.5.
|
43 |
}
|
44 |
/**
|
45 |
* Register of widgets
|
@@ -68,6 +75,7 @@ if (!class_exists('APS_Class')) {
|
|
68 |
add_action('wp_ajax_get_theme_icons', array($this, 'get_theme_icons')); //admin ajax for getting theme icons
|
69 |
add_action('wp_ajax_nopriv_get_theme_icons', array($this, 'no_permission')); //ajax action for unathenticate admin ajax call
|
70 |
add_action('widgets_init', array($this, 'register_aps_widget')); //register aps widget
|
|
|
71 |
|
72 |
}
|
73 |
|
@@ -127,7 +135,6 @@ if (!class_exists('APS_Class')) {
|
|
127 |
/**
|
128 |
* Backend JS
|
129 |
* */
|
130 |
-
wp_enqueue_script('jquery-ui-sortable');
|
131 |
wp_enqueue_script('media-upload'); //for uploading image using wp native uploader
|
132 |
wp_enqueue_script('thickbox'); //for uploading image using wp native uploader + thickbox
|
133 |
wp_enqueue_script('aps-admin-js', APS_JS_DIR . '/backend.js', array('jquery', 'jquery-ui-sortable', 'wp-color-picker'),APS_VERSION);//registering plugin's admin js
|
@@ -366,6 +373,27 @@ if (!class_exists('APS_Class')) {
|
|
366 |
{
|
367 |
include('inc/backend/how-to-use.php');
|
368 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
369 |
|
370 |
}
|
371 |
|
4 |
* Plugin Name:AccessPress Social Icons
|
5 |
* Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons/
|
6 |
* Description: A plugin to add social icons in your site wherever you want dynamically with handful of configurable settings.
|
7 |
+
* Version:1.5.3
|
8 |
* Author:AccessPress Themes
|
9 |
* Author URI:http://accesspressthemes.com/
|
10 |
* Text Domain: accesspress-social-icons
|
23 |
if (!defined('APS_CSS_DIR')) {
|
24 |
define('APS_CSS_DIR', plugin_dir_url(__FILE__) . 'css');
|
25 |
}
|
26 |
+
|
27 |
+
/**
|
28 |
+
* @since 1.5.3
|
29 |
+
*
|
30 |
+
* */
|
31 |
+
defined('APSI_PLUGIN_URL') or define('APSI_PLUGIN_URL',plugin_dir_url(__FILE__));
|
32 |
+
|
33 |
if (!defined('APS_ICONS_DIR')) {
|
34 |
/**
|
35 |
* apsi_icons_sets_directory filter
|
46 |
}
|
47 |
if(!defined('APS_VERSION'))
|
48 |
{
|
49 |
+
define('APS_VERSION','1.5.3');
|
50 |
}
|
51 |
/**
|
52 |
* Register of widgets
|
75 |
add_action('wp_ajax_get_theme_icons', array($this, 'get_theme_icons')); //admin ajax for getting theme icons
|
76 |
add_action('wp_ajax_nopriv_get_theme_icons', array($this, 'no_permission')); //ajax action for unathenticate admin ajax call
|
77 |
add_action('widgets_init', array($this, 'register_aps_widget')); //register aps widget
|
78 |
+
add_filter('apsi_image_url',array($this,'check_url'));
|
79 |
|
80 |
}
|
81 |
|
135 |
/**
|
136 |
* Backend JS
|
137 |
* */
|
|
|
138 |
wp_enqueue_script('media-upload'); //for uploading image using wp native uploader
|
139 |
wp_enqueue_script('thickbox'); //for uploading image using wp native uploader + thickbox
|
140 |
wp_enqueue_script('aps-admin-js', APS_JS_DIR . '/backend.js', array('jquery', 'jquery-ui-sortable', 'wp-color-picker'),APS_VERSION);//registering plugin's admin js
|
373 |
{
|
374 |
include('inc/backend/how-to-use.php');
|
375 |
}
|
376 |
+
|
377 |
+
/**
|
378 |
+
* @since 1.5.3
|
379 |
+
*
|
380 |
+
* Checks the URL of the image and matches with current site URL
|
381 |
+
*
|
382 |
+
* */
|
383 |
+
function check_url($image_url){
|
384 |
+
if (strpos($image_url, '/icon-sets/') !== false){
|
385 |
+
$image_url_array = explode('/icon-sets/',$image_url);
|
386 |
+
$plugin_icon_url = APS_ICONS_DIR;
|
387 |
+
//echo $image_url_array[1];
|
388 |
+
$actual_image_url = $plugin_icon_url.'/'.$image_url_array[1];
|
389 |
+
return $actual_image_url;
|
390 |
+
|
391 |
+
}else{
|
392 |
+
return $image_url;
|
393 |
+
}
|
394 |
+
|
395 |
+
|
396 |
+
}
|
397 |
|
398 |
}
|
399 |
|
inc/frontend/icon-group-list.php
CHANGED
@@ -63,7 +63,7 @@
|
|
63 |
|
64 |
$border = ($icon['border_type'] == 'none') ? '' : "border:{$border_thickness}px $border_type $border_color;";
|
65 |
?>
|
66 |
-
<img src="<?php echo
|
67 |
<?php
|
68 |
$icon_height = str_replace('px', '', $icon['icon_height']);
|
69 |
$icon_width = str_replace('px', '', $icon['icon_width']);
|
63 |
|
64 |
$border = ($icon['border_type'] == 'none') ? '' : "border:{$border_thickness}px $border_type $border_color;";
|
65 |
?>
|
66 |
+
<img src="<?php echo apply_filters('apsi_image_url',$icon['image']); ?>" alt="<?php echo esc_attr($title);?>"/>
|
67 |
<?php
|
68 |
$icon_height = str_replace('px', '', $icon['icon_height']);
|
69 |
$icon_width = str_replace('px', '', $icon['icon_width']);
|
languages/accesspress-social-icons-sv_SE.mo
ADDED
Binary file
|
languages/{ultimate-form-builder-lite.po → accesspress-social-icons-sv_SE.po}
RENAMED
@@ -1,367 +1,370 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Access Keys <support@accesspressthemes.com>\n"
|
8 |
-
"Language: English\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
|
|
|
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: ..\n"
|
18 |
|
19 |
#: ../accesspress-social-icons.php:79
|
20 |
msgid "Social Icons"
|
21 |
-
msgstr "
|
22 |
|
23 |
#: ../accesspress-social-icons.php:80
|
24 |
msgid "Add New Set"
|
25 |
-
msgstr "
|
26 |
|
27 |
#: ../accesspress-social-icons.php:81 ../inc/backend/how-to-use.php:7
|
28 |
msgid "How to use"
|
29 |
-
msgstr ""
|
30 |
|
31 |
#: ../accesspress-social-icons.php:82
|
32 |
msgid "About"
|
33 |
-
msgstr ""
|
34 |
|
35 |
#: ../accesspress-social-icons.php:99 ../inc/backend/add-new-set.php:184
|
36 |
#: ../inc/backend/edit-icon-set.php:211 ../inc/backend/edit-icon-set.php:251
|
37 |
#: ../inc/backend/theme-icon-set.php:16
|
38 |
msgid "Icon Preview"
|
39 |
-
msgstr ""
|
40 |
|
41 |
#: ../accesspress-social-icons.php:100 ../inc/backend/edit-icon-set.php:284
|
42 |
#: ../inc/backend/icon-adder.php:147 ../inc/backend/theme-icon-set.php:57
|
43 |
msgid "Icon Link"
|
44 |
-
msgstr ""
|
45 |
|
46 |
#: ../accesspress-social-icons.php:101 ../inc/backend/edit-icon-set.php:301
|
47 |
#: ../inc/backend/icon-adder.php:164 ../inc/backend/theme-icon-set.php:73
|
48 |
msgid "Icon Link Target"
|
49 |
-
msgstr ""
|
50 |
|
51 |
#: ../accesspress-social-icons.php:102
|
52 |
msgid "Are you sure you want to delete this icon from this list?"
|
53 |
-
msgstr ""
|
54 |
|
55 |
#: ../accesspress-social-icons.php:103
|
56 |
msgid "Please enter the name for the set"
|
57 |
-
msgstr ""
|
58 |
|
59 |
#: ../accesspress-social-icons.php:104
|
60 |
msgid "Please add at least one icon in the set"
|
61 |
-
msgstr ""
|
62 |
|
63 |
#: ../accesspress-social-icons.php:107
|
64 |
msgid "Are you sure you want to discard the icons added previously?"
|
65 |
-
msgstr ""
|
66 |
|
67 |
#: ../accesspress-social-icons.php:108
|
68 |
msgid "Collapse All"
|
69 |
-
msgstr ""
|
70 |
|
71 |
#: ../accesspress-social-icons.php:109 ../inc/backend/add-new-set.php:191
|
72 |
#: ../inc/backend/edit-icon-set.php:218
|
73 |
msgid "Expand All"
|
74 |
-
msgstr ""
|
75 |
|
76 |
#: ../inc/backend/about.php:8
|
77 |
msgid "About Us"
|
78 |
-
msgstr ""
|
79 |
|
80 |
#: ../inc/backend/add-new-set.php:7
|
81 |
msgid "Add New Social Icons Set"
|
82 |
-
msgstr ""
|
83 |
|
84 |
#: ../inc/backend/add-new-set.php:16 ../inc/backend/edit-icon-set.php:38
|
85 |
msgid "Name of Set"
|
86 |
-
msgstr ""
|
87 |
|
88 |
#: ../inc/backend/add-new-set.php:26 ../inc/backend/edit-icon-set.php:48
|
89 |
msgid "Choose Icon Set type"
|
90 |
-
msgstr ""
|
91 |
|
92 |
#: ../inc/backend/add-new-set.php:28 ../inc/backend/edit-icon-set.php:50
|
93 |
msgid "Choose icon indiviually"
|
94 |
-
msgstr ""
|
95 |
|
96 |
#: ../inc/backend/add-new-set.php:29 ../inc/backend/edit-icon-set.php:51
|
97 |
msgid "Choose from available themes"
|
98 |
-
msgstr ""
|
99 |
|
100 |
#: ../inc/backend/add-new-set.php:41 ../inc/backend/edit-icon-set.php:63
|
101 |
msgid "Display"
|
102 |
-
msgstr ""
|
103 |
|
104 |
#: ../inc/backend/add-new-set.php:43 ../inc/backend/edit-icon-set.php:65
|
105 |
msgid "Horizontal"
|
106 |
-
msgstr ""
|
107 |
|
108 |
#: ../inc/backend/add-new-set.php:44 ../inc/backend/edit-icon-set.php:66
|
109 |
msgid "Vertical"
|
110 |
-
msgstr ""
|
111 |
|
112 |
#: ../inc/backend/add-new-set.php:52 ../inc/backend/edit-icon-set.php:74
|
113 |
msgid "Number of Rows"
|
114 |
-
msgstr ""
|
115 |
|
116 |
#: ../inc/backend/add-new-set.php:57 ../inc/backend/edit-icon-set.php:79
|
117 |
msgid "Please enter the number of rows in number.Default is 1."
|
118 |
-
msgstr ""
|
119 |
|
120 |
#: ../inc/backend/add-new-set.php:63 ../inc/backend/edit-icon-set.php:85
|
121 |
msgid "Number of Columns"
|
122 |
-
msgstr ""
|
123 |
|
124 |
#: ../inc/backend/add-new-set.php:68 ../inc/backend/edit-icon-set.php:94
|
125 |
msgid "Please enter the number of columns in number.Default is 1."
|
126 |
-
msgstr ""
|
127 |
|
128 |
#: ../inc/backend/add-new-set.php:74 ../inc/backend/edit-icon-set.php:100
|
129 |
msgid "Margin Between Each Icon"
|
130 |
-
msgstr ""
|
131 |
|
132 |
#: ../inc/backend/add-new-set.php:79 ../inc/backend/edit-icon-set.php:106
|
133 |
msgid "Please enter the margin for each icon in px."
|
134 |
-
msgstr ""
|
135 |
|
136 |
#: ../inc/backend/add-new-set.php:86 ../inc/backend/edit-icon-set.php:114
|
137 |
msgid "Tooltip"
|
138 |
-
msgstr ""
|
139 |
|
140 |
#: ../inc/backend/add-new-set.php:88 ../inc/backend/edit-icon-set.php:116
|
141 |
msgid "Show"
|
142 |
-
msgstr ""
|
143 |
|
144 |
#: ../inc/backend/add-new-set.php:89 ../inc/backend/edit-icon-set.php:117
|
145 |
msgid "Don't show"
|
146 |
-
msgstr ""
|
147 |
|
148 |
#: ../inc/backend/add-new-set.php:97 ../inc/backend/edit-icon-set.php:125
|
149 |
msgid "Tooltip Bg Color"
|
150 |
-
msgstr ""
|
151 |
|
152 |
#: ../inc/backend/add-new-set.php:105 ../inc/backend/edit-icon-set.php:133
|
153 |
msgid "Tooltip Text Color"
|
154 |
-
msgstr ""
|
155 |
|
156 |
#: ../inc/backend/add-new-set.php:113 ../inc/backend/edit-icon-set.php:141
|
157 |
msgid "Tooltip Position"
|
158 |
-
msgstr ""
|
159 |
|
160 |
#: ../inc/backend/add-new-set.php:116 ../inc/backend/edit-icon-set.php:144
|
161 |
msgid "Top"
|
162 |
-
msgstr ""
|
163 |
|
164 |
#: ../inc/backend/add-new-set.php:117 ../inc/backend/edit-icon-set.php:145
|
165 |
msgid "Right"
|
166 |
-
msgstr ""
|
167 |
|
168 |
#: ../inc/backend/add-new-set.php:118 ../inc/backend/edit-icon-set.php:146
|
169 |
msgid "Bottom"
|
170 |
-
msgstr ""
|
171 |
|
172 |
#: ../inc/backend/add-new-set.php:119 ../inc/backend/edit-icon-set.php:147
|
173 |
msgid "Left"
|
174 |
-
msgstr ""
|
175 |
|
176 |
#: ../inc/backend/add-new-set.php:128
|
177 |
msgid "Icons Hover Animation"
|
178 |
-
msgstr ""
|
179 |
|
180 |
#: ../inc/backend/add-new-set.php:131 ../inc/backend/edit-icon-set.php:159
|
181 |
msgid "No Animation"
|
182 |
-
msgstr ""
|
183 |
|
184 |
#: ../inc/backend/add-new-set.php:162 ../inc/backend/edit-icon-set.php:190
|
185 |
msgid "Opacity on Non Hover"
|
186 |
-
msgstr ""
|
187 |
|
188 |
#: ../inc/backend/add-new-set.php:189 ../inc/backend/edit-icon-set.php:216
|
189 |
msgid "Icon Lists"
|
190 |
-
msgstr ""
|
191 |
|
192 |
#: ../inc/backend/add-new-set.php:194 ../inc/backend/edit-icon-set.php:221
|
193 |
msgid "Empty List"
|
194 |
-
msgstr ""
|
195 |
|
196 |
#: ../inc/backend/add-new-set.php:195 ../inc/backend/edit-icon-set.php:222
|
197 |
msgid "Each Icon will only show up in the frontend if icon link is not empty"
|
198 |
-
msgstr ""
|
199 |
|
200 |
-
#: ../inc/backend/add-new-set.php:207 ../inc/backend/edit-icon-set.php:
|
201 |
msgid "Save icon set"
|
202 |
-
msgstr ""
|
203 |
|
204 |
#: ../inc/backend/copy-icon-set.php:60
|
205 |
msgid "Icon Set Copied Successfully"
|
206 |
-
msgstr ""
|
207 |
|
208 |
#: ../inc/backend/delete-icon-set.php:7
|
209 |
msgid "Icon set deleted successfully."
|
210 |
-
msgstr ""
|
211 |
|
212 |
#: ../inc/backend/edit-icon-set.php:28
|
213 |
msgid "Edit Social Icons Set"
|
214 |
-
msgstr ""
|
215 |
|
216 |
#: ../inc/backend/edit-icon-set.php:156
|
217 |
msgid "Icons Animation"
|
218 |
-
msgstr ""
|
219 |
|
220 |
#: ../inc/backend/edit-icon-set.php:256 ../inc/backend/icon-adder.php:6
|
221 |
#: ../inc/backend/theme-icon-set.php:21
|
222 |
msgid "Icon Title"
|
223 |
-
msgstr ""
|
224 |
|
225 |
#: ../inc/backend/edit-icon-set.php:264 ../inc/backend/icon-adder.php:30
|
226 |
#: ../inc/backend/theme-icon-set.php:37
|
227 |
msgid "Icon Width"
|
228 |
-
msgstr ""
|
229 |
|
230 |
#: ../inc/backend/edit-icon-set.php:269 ../inc/backend/theme-icon-set.php:42
|
231 |
msgid "Please enter the width for the icon in px."
|
232 |
-
msgstr ""
|
233 |
|
234 |
#: ../inc/backend/edit-icon-set.php:275 ../inc/backend/icon-adder.php:38
|
235 |
#: ../inc/backend/theme-icon-set.php:48
|
236 |
msgid "Icon Height"
|
237 |
-
msgstr ""
|
238 |
|
239 |
#: ../inc/backend/edit-icon-set.php:279 ../inc/backend/theme-icon-set.php:52
|
240 |
msgid "Please enter the height for the icon in px."
|
241 |
-
msgstr ""
|
242 |
|
243 |
#: ../inc/backend/edit-icon-set.php:293 ../inc/backend/icon-adder.php:156
|
244 |
#: ../inc/backend/theme-icon-set.php:65
|
245 |
msgid "Tooltip Text"
|
246 |
-
msgstr ""
|
247 |
|
248 |
#: ../inc/backend/icon-adder.php:8
|
249 |
msgid "Please enter the icon title"
|
250 |
-
msgstr ""
|
251 |
|
252 |
#: ../inc/backend/icon-adder.php:17
|
253 |
msgid "Icon Image"
|
254 |
-
msgstr ""
|
255 |
|
256 |
#: ../inc/backend/icon-adder.php:19
|
257 |
msgid "Please upload the icon image"
|
258 |
-
msgstr ""
|
259 |
|
260 |
#: ../inc/backend/icon-adder.php:20
|
261 |
msgid "Pre available icons"
|
262 |
-
msgstr ""
|
263 |
|
264 |
#: ../inc/backend/icon-adder.php:53
|
265 |
msgid "Border Style"
|
266 |
-
msgstr ""
|
267 |
|
268 |
#: ../inc/backend/icon-adder.php:72
|
269 |
msgid "Border Spacing"
|
270 |
-
msgstr ""
|
271 |
|
272 |
#: ../inc/backend/icon-adder.php:74 ../inc/backend/icon-adder.php:82
|
273 |
msgid "eg. 2px"
|
274 |
-
msgstr ""
|
275 |
|
276 |
#: ../inc/backend/icon-adder.php:80
|
277 |
msgid "Border Thickness"
|
278 |
-
msgstr ""
|
279 |
|
280 |
#: ../inc/backend/icon-adder.php:88
|
281 |
msgid "Border Color"
|
282 |
-
msgstr ""
|
283 |
|
284 |
#: ../inc/backend/icon-adder.php:99
|
285 |
msgid "Shadow"
|
286 |
-
msgstr ""
|
287 |
|
|
|
288 |
#: ../inc/backend/icon-adder.php:110
|
289 |
msgid "Offset X"
|
290 |
-
msgstr ""
|
291 |
|
|
|
292 |
#: ../inc/backend/icon-adder.php:118
|
293 |
msgid "Offset Y"
|
294 |
-
msgstr ""
|
295 |
|
296 |
#: ../inc/backend/icon-adder.php:126
|
297 |
msgid "Blur"
|
298 |
-
msgstr ""
|
299 |
|
300 |
#: ../inc/backend/icon-adder.php:134
|
301 |
msgid "Shadow Color"
|
302 |
-
msgstr ""
|
303 |
|
304 |
#: ../inc/backend/icon-adder.php:149
|
305 |
msgid "Please enter the icon link"
|
306 |
-
msgstr ""
|
307 |
|
308 |
#: ../inc/backend/icon-themes.php:5
|
309 |
msgid "Available Icon Themes"
|
310 |
-
msgstr ""
|
311 |
|
312 |
#: ../inc/backend/main-page.php:31 ../inc/backend/main-page.php:43
|
313 |
msgid "Title"
|
314 |
-
msgstr ""
|
315 |
|
316 |
#: ../inc/backend/main-page.php:34 ../inc/backend/main-page.php:44
|
317 |
msgid "Shortcode"
|
318 |
-
msgstr ""
|
319 |
|
320 |
#: ../inc/backend/main-page.php:37 ../inc/backend/main-page.php:46
|
321 |
msgid "Template Shortcode"
|
322 |
-
msgstr ""
|
323 |
|
324 |
#: ../inc/backend/main-page.php:74
|
325 |
msgid "Are you sure you want to copy this icon set?"
|
326 |
-
msgstr ""
|
327 |
|
328 |
#: ../inc/backend/main-page.php:75
|
329 |
msgid "Are you sure you want to delete this icon set?"
|
330 |
-
msgstr ""
|
331 |
|
332 |
#: ../inc/backend/main-page.php:86
|
333 |
msgid "Icon sets not added yet"
|
334 |
-
msgstr ""
|
335 |
|
336 |
#: ../inc/backend/panel-head.php:5 ../inc/backend/panel-head.php:29
|
337 |
#: ../inc/backend/widgets.php:14
|
338 |
msgid "AccessPress Social Icons"
|
339 |
-
msgstr ""
|
340 |
|
341 |
#: ../inc/backend/save-set.php:167
|
342 |
msgid "Icon Set Updated Successfully"
|
343 |
-
msgstr ""
|
344 |
|
345 |
#: ../inc/backend/save-set.php:200
|
346 |
msgid "Icon Set Saved Successfully"
|
347 |
-
msgstr ""
|
348 |
|
349 |
#: ../inc/backend/theme-icon-set.php:28
|
350 |
msgid "Icon Background Color"
|
351 |
-
msgstr ""
|
352 |
|
353 |
#: ../inc/backend/widgets.php:15
|
354 |
msgid "AccessPress Social Icon Widget"
|
355 |
-
msgstr ""
|
356 |
|
357 |
#: ../inc/backend/widgets.php:69
|
358 |
msgid "Title:"
|
359 |
-
msgstr ""
|
360 |
|
361 |
#: ../inc/backend/widgets.php:73
|
362 |
msgid "Icon set"
|
363 |
-
msgstr ""
|
364 |
|
365 |
#: ../inc/backend/widgets.php:75
|
366 |
msgid "Choose Icon Set"
|
367 |
-
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: AccessPress Social Icons\n"
|
4 |
+
"POT-Creation-Date: 2015-07-12 11:28+0545\n"
|
5 |
+
"PO-Revision-Date: 2016-04-05 16:29+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Access Keys <support@accesspressthemes.com>\n"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Generator: Poedit 1.7.7\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"Language: sv_SE\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
"X-Poedit-SearchPath-1: ..\n"
|
19 |
|
20 |
#: ../accesspress-social-icons.php:79
|
21 |
msgid "Social Icons"
|
22 |
+
msgstr "Sociala Ikoner"
|
23 |
|
24 |
#: ../accesspress-social-icons.php:80
|
25 |
msgid "Add New Set"
|
26 |
+
msgstr "Lägg Till En Ny Uppsättning"
|
27 |
|
28 |
#: ../accesspress-social-icons.php:81 ../inc/backend/how-to-use.php:7
|
29 |
msgid "How to use"
|
30 |
+
msgstr "Hur man använder "
|
31 |
|
32 |
#: ../accesspress-social-icons.php:82
|
33 |
msgid "About"
|
34 |
+
msgstr "Om"
|
35 |
|
36 |
#: ../accesspress-social-icons.php:99 ../inc/backend/add-new-set.php:184
|
37 |
#: ../inc/backend/edit-icon-set.php:211 ../inc/backend/edit-icon-set.php:251
|
38 |
#: ../inc/backend/theme-icon-set.php:16
|
39 |
msgid "Icon Preview"
|
40 |
+
msgstr "Ikon Förhandsvisning"
|
41 |
|
42 |
#: ../accesspress-social-icons.php:100 ../inc/backend/edit-icon-set.php:284
|
43 |
#: ../inc/backend/icon-adder.php:147 ../inc/backend/theme-icon-set.php:57
|
44 |
msgid "Icon Link"
|
45 |
+
msgstr "Ikonlänk"
|
46 |
|
47 |
#: ../accesspress-social-icons.php:101 ../inc/backend/edit-icon-set.php:301
|
48 |
#: ../inc/backend/icon-adder.php:164 ../inc/backend/theme-icon-set.php:73
|
49 |
msgid "Icon Link Target"
|
50 |
+
msgstr "Ikonlänk-mål"
|
51 |
|
52 |
#: ../accesspress-social-icons.php:102
|
53 |
msgid "Are you sure you want to delete this icon from this list?"
|
54 |
+
msgstr "Är du säker på att du vill radera den här ikonen from listan?"
|
55 |
|
56 |
#: ../accesspress-social-icons.php:103
|
57 |
msgid "Please enter the name for the set"
|
58 |
+
msgstr "Var snäll och ange ett namn för uppsättningen"
|
59 |
|
60 |
#: ../accesspress-social-icons.php:104
|
61 |
msgid "Please add at least one icon in the set"
|
62 |
+
msgstr "Var snäll och lägg till minst en ikon i uppsättningen"
|
63 |
|
64 |
#: ../accesspress-social-icons.php:107
|
65 |
msgid "Are you sure you want to discard the icons added previously?"
|
66 |
+
msgstr "Är du säker på att du vill kassera ikonen som laddes upp tidigare? "
|
67 |
|
68 |
#: ../accesspress-social-icons.php:108
|
69 |
msgid "Collapse All"
|
70 |
+
msgstr "Minska Allt"
|
71 |
|
72 |
#: ../accesspress-social-icons.php:109 ../inc/backend/add-new-set.php:191
|
73 |
#: ../inc/backend/edit-icon-set.php:218
|
74 |
msgid "Expand All"
|
75 |
+
msgstr "Öka Allt"
|
76 |
|
77 |
#: ../inc/backend/about.php:8
|
78 |
msgid "About Us"
|
79 |
+
msgstr "Om Oss"
|
80 |
|
81 |
#: ../inc/backend/add-new-set.php:7
|
82 |
msgid "Add New Social Icons Set"
|
83 |
+
msgstr "Lägg till ett nytt Sociala Ikon uppsättning"
|
84 |
|
85 |
#: ../inc/backend/add-new-set.php:16 ../inc/backend/edit-icon-set.php:38
|
86 |
msgid "Name of Set"
|
87 |
+
msgstr "Namnet på Uppsättningen"
|
88 |
|
89 |
#: ../inc/backend/add-new-set.php:26 ../inc/backend/edit-icon-set.php:48
|
90 |
msgid "Choose Icon Set type"
|
91 |
+
msgstr "Välj Ikonuppsättningstyp"
|
92 |
|
93 |
#: ../inc/backend/add-new-set.php:28 ../inc/backend/edit-icon-set.php:50
|
94 |
msgid "Choose icon indiviually"
|
95 |
+
msgstr "Välj ikon individuellt"
|
96 |
|
97 |
#: ../inc/backend/add-new-set.php:29 ../inc/backend/edit-icon-set.php:51
|
98 |
msgid "Choose from available themes"
|
99 |
+
msgstr "Välj från tillgängliga teman"
|
100 |
|
101 |
#: ../inc/backend/add-new-set.php:41 ../inc/backend/edit-icon-set.php:63
|
102 |
msgid "Display"
|
103 |
+
msgstr "Visa"
|
104 |
|
105 |
#: ../inc/backend/add-new-set.php:43 ../inc/backend/edit-icon-set.php:65
|
106 |
msgid "Horizontal"
|
107 |
+
msgstr "Horisontell"
|
108 |
|
109 |
#: ../inc/backend/add-new-set.php:44 ../inc/backend/edit-icon-set.php:66
|
110 |
msgid "Vertical"
|
111 |
+
msgstr "Vertikal"
|
112 |
|
113 |
#: ../inc/backend/add-new-set.php:52 ../inc/backend/edit-icon-set.php:74
|
114 |
msgid "Number of Rows"
|
115 |
+
msgstr "Antal rader"
|
116 |
|
117 |
#: ../inc/backend/add-new-set.php:57 ../inc/backend/edit-icon-set.php:79
|
118 |
msgid "Please enter the number of rows in number.Default is 1."
|
119 |
+
msgstr "Var snäll att ange antal rader i numer.Standardvärdet är 1."
|
120 |
|
121 |
#: ../inc/backend/add-new-set.php:63 ../inc/backend/edit-icon-set.php:85
|
122 |
msgid "Number of Columns"
|
123 |
+
msgstr "Antal kolumner"
|
124 |
|
125 |
#: ../inc/backend/add-new-set.php:68 ../inc/backend/edit-icon-set.php:94
|
126 |
msgid "Please enter the number of columns in number.Default is 1."
|
127 |
+
msgstr "Var snäöö att ange antal kolumer i numer.Standardvärdet är 1."
|
128 |
|
129 |
#: ../inc/backend/add-new-set.php:74 ../inc/backend/edit-icon-set.php:100
|
130 |
msgid "Margin Between Each Icon"
|
131 |
+
msgstr "Marginalen Mellan Varje Ikon"
|
132 |
|
133 |
#: ../inc/backend/add-new-set.php:79 ../inc/backend/edit-icon-set.php:106
|
134 |
msgid "Please enter the margin for each icon in px."
|
135 |
+
msgstr "Skriv in marginalen för varje ikon i px."
|
136 |
|
137 |
#: ../inc/backend/add-new-set.php:86 ../inc/backend/edit-icon-set.php:114
|
138 |
msgid "Tooltip"
|
139 |
+
msgstr "Verktygstips"
|
140 |
|
141 |
#: ../inc/backend/add-new-set.php:88 ../inc/backend/edit-icon-set.php:116
|
142 |
msgid "Show"
|
143 |
+
msgstr "Visa"
|
144 |
|
145 |
#: ../inc/backend/add-new-set.php:89 ../inc/backend/edit-icon-set.php:117
|
146 |
msgid "Don't show"
|
147 |
+
msgstr "Visa inte"
|
148 |
|
149 |
#: ../inc/backend/add-new-set.php:97 ../inc/backend/edit-icon-set.php:125
|
150 |
msgid "Tooltip Bg Color"
|
151 |
+
msgstr "Vertygstips Bg Färg"
|
152 |
|
153 |
#: ../inc/backend/add-new-set.php:105 ../inc/backend/edit-icon-set.php:133
|
154 |
msgid "Tooltip Text Color"
|
155 |
+
msgstr "Textfärg För Verktygstips"
|
156 |
|
157 |
#: ../inc/backend/add-new-set.php:113 ../inc/backend/edit-icon-set.php:141
|
158 |
msgid "Tooltip Position"
|
159 |
+
msgstr "Placering Av Verktygstips:"
|
160 |
|
161 |
#: ../inc/backend/add-new-set.php:116 ../inc/backend/edit-icon-set.php:144
|
162 |
msgid "Top"
|
163 |
+
msgstr "Överst"
|
164 |
|
165 |
#: ../inc/backend/add-new-set.php:117 ../inc/backend/edit-icon-set.php:145
|
166 |
msgid "Right"
|
167 |
+
msgstr "Höger"
|
168 |
|
169 |
#: ../inc/backend/add-new-set.php:118 ../inc/backend/edit-icon-set.php:146
|
170 |
msgid "Bottom"
|
171 |
+
msgstr "Botten"
|
172 |
|
173 |
#: ../inc/backend/add-new-set.php:119 ../inc/backend/edit-icon-set.php:147
|
174 |
msgid "Left"
|
175 |
+
msgstr "Vänster"
|
176 |
|
177 |
#: ../inc/backend/add-new-set.php:128
|
178 |
msgid "Icons Hover Animation"
|
179 |
+
msgstr "Ikonsvävande Animation"
|
180 |
|
181 |
#: ../inc/backend/add-new-set.php:131 ../inc/backend/edit-icon-set.php:159
|
182 |
msgid "No Animation"
|
183 |
+
msgstr "Ingen Animation"
|
184 |
|
185 |
#: ../inc/backend/add-new-set.php:162 ../inc/backend/edit-icon-set.php:190
|
186 |
msgid "Opacity on Non Hover"
|
187 |
+
msgstr "Opacitiet på Icke Svävande"
|
188 |
|
189 |
#: ../inc/backend/add-new-set.php:189 ../inc/backend/edit-icon-set.php:216
|
190 |
msgid "Icon Lists"
|
191 |
+
msgstr "Ikon Listor"
|
192 |
|
193 |
#: ../inc/backend/add-new-set.php:194 ../inc/backend/edit-icon-set.php:221
|
194 |
msgid "Empty List"
|
195 |
+
msgstr "Tom Lista"
|
196 |
|
197 |
#: ../inc/backend/add-new-set.php:195 ../inc/backend/edit-icon-set.php:222
|
198 |
msgid "Each Icon will only show up in the frontend if icon link is not empty"
|
199 |
+
msgstr "Varje ikon kommer bara dyka upp i frontend om ikonens länk inte är tom"
|
200 |
|
201 |
+
#: ../inc/backend/add-new-set.php:207 ../inc/backend/edit-icon-set.php:368
|
202 |
msgid "Save icon set"
|
203 |
+
msgstr "Spara Ikonuppsättning"
|
204 |
|
205 |
#: ../inc/backend/copy-icon-set.php:60
|
206 |
msgid "Icon Set Copied Successfully"
|
207 |
+
msgstr "Ikonuppsättning Har Kopierats Framgångsrikt"
|
208 |
|
209 |
#: ../inc/backend/delete-icon-set.php:7
|
210 |
msgid "Icon set deleted successfully."
|
211 |
+
msgstr "Ikonuppsättningen Har Raderats Framgångsrikt "
|
212 |
|
213 |
#: ../inc/backend/edit-icon-set.php:28
|
214 |
msgid "Edit Social Icons Set"
|
215 |
+
msgstr "Redigera Sociala ikonenuppsättnigen"
|
216 |
|
217 |
#: ../inc/backend/edit-icon-set.php:156
|
218 |
msgid "Icons Animation"
|
219 |
+
msgstr "Ikon Animation"
|
220 |
|
221 |
#: ../inc/backend/edit-icon-set.php:256 ../inc/backend/icon-adder.php:6
|
222 |
#: ../inc/backend/theme-icon-set.php:21
|
223 |
msgid "Icon Title"
|
224 |
+
msgstr "Ikon Titel"
|
225 |
|
226 |
#: ../inc/backend/edit-icon-set.php:264 ../inc/backend/icon-adder.php:30
|
227 |
#: ../inc/backend/theme-icon-set.php:37
|
228 |
msgid "Icon Width"
|
229 |
+
msgstr "Ikon Bredd"
|
230 |
|
231 |
#: ../inc/backend/edit-icon-set.php:269 ../inc/backend/theme-icon-set.php:42
|
232 |
msgid "Please enter the width for the icon in px."
|
233 |
+
msgstr "Var snäll att ange bredden för ikonen i px."
|
234 |
|
235 |
#: ../inc/backend/edit-icon-set.php:275 ../inc/backend/icon-adder.php:38
|
236 |
#: ../inc/backend/theme-icon-set.php:48
|
237 |
msgid "Icon Height"
|
238 |
+
msgstr "Ikon Höjd"
|
239 |
|
240 |
#: ../inc/backend/edit-icon-set.php:279 ../inc/backend/theme-icon-set.php:52
|
241 |
msgid "Please enter the height for the icon in px."
|
242 |
+
msgstr "Var snäll att ange höjden på ikonen i px."
|
243 |
|
244 |
#: ../inc/backend/edit-icon-set.php:293 ../inc/backend/icon-adder.php:156
|
245 |
#: ../inc/backend/theme-icon-set.php:65
|
246 |
msgid "Tooltip Text"
|
247 |
+
msgstr "Verktygstipstext"
|
248 |
|
249 |
#: ../inc/backend/icon-adder.php:8
|
250 |
msgid "Please enter the icon title"
|
251 |
+
msgstr "Var snäll att ange en ikonen en titel"
|
252 |
|
253 |
#: ../inc/backend/icon-adder.php:17
|
254 |
msgid "Icon Image"
|
255 |
+
msgstr "Ikon Bild"
|
256 |
|
257 |
#: ../inc/backend/icon-adder.php:19
|
258 |
msgid "Please upload the icon image"
|
259 |
+
msgstr "Var snäll att ladda upp en ikon bild"
|
260 |
|
261 |
#: ../inc/backend/icon-adder.php:20
|
262 |
msgid "Pre available icons"
|
263 |
+
msgstr "Tillgängliga Ikoner"
|
264 |
|
265 |
#: ../inc/backend/icon-adder.php:53
|
266 |
msgid "Border Style"
|
267 |
+
msgstr "Ramstil"
|
268 |
|
269 |
#: ../inc/backend/icon-adder.php:72
|
270 |
msgid "Border Spacing"
|
271 |
+
msgstr "Ramavstånd"
|
272 |
|
273 |
#: ../inc/backend/icon-adder.php:74 ../inc/backend/icon-adder.php:82
|
274 |
msgid "eg. 2px"
|
275 |
+
msgstr "t.ex. 2px"
|
276 |
|
277 |
#: ../inc/backend/icon-adder.php:80
|
278 |
msgid "Border Thickness"
|
279 |
+
msgstr "Ramtjocklek"
|
280 |
|
281 |
#: ../inc/backend/icon-adder.php:88
|
282 |
msgid "Border Color"
|
283 |
+
msgstr "Ramfärg"
|
284 |
|
285 |
#: ../inc/backend/icon-adder.php:99
|
286 |
msgid "Shadow"
|
287 |
+
msgstr "Skugga"
|
288 |
|
289 |
+
# No translation, if translated litterally no one will understand
|
290 |
#: ../inc/backend/icon-adder.php:110
|
291 |
msgid "Offset X"
|
292 |
+
msgstr "Offset X"
|
293 |
|
294 |
+
# No translation, if translated litterally no one will understand
|
295 |
#: ../inc/backend/icon-adder.php:118
|
296 |
msgid "Offset Y"
|
297 |
+
msgstr "Offset Y"
|
298 |
|
299 |
#: ../inc/backend/icon-adder.php:126
|
300 |
msgid "Blur"
|
301 |
+
msgstr "Oskärpa"
|
302 |
|
303 |
#: ../inc/backend/icon-adder.php:134
|
304 |
msgid "Shadow Color"
|
305 |
+
msgstr "Skuggans färg"
|
306 |
|
307 |
#: ../inc/backend/icon-adder.php:149
|
308 |
msgid "Please enter the icon link"
|
309 |
+
msgstr "Var snäll att ange ikonlänken"
|
310 |
|
311 |
#: ../inc/backend/icon-themes.php:5
|
312 |
msgid "Available Icon Themes"
|
313 |
+
msgstr "Tillgängliga Ikon Teman"
|
314 |
|
315 |
#: ../inc/backend/main-page.php:31 ../inc/backend/main-page.php:43
|
316 |
msgid "Title"
|
317 |
+
msgstr "Titel"
|
318 |
|
319 |
#: ../inc/backend/main-page.php:34 ../inc/backend/main-page.php:44
|
320 |
msgid "Shortcode"
|
321 |
+
msgstr "Shortcode"
|
322 |
|
323 |
#: ../inc/backend/main-page.php:37 ../inc/backend/main-page.php:46
|
324 |
msgid "Template Shortcode"
|
325 |
+
msgstr "Mallen kortkod"
|
326 |
|
327 |
#: ../inc/backend/main-page.php:74
|
328 |
msgid "Are you sure you want to copy this icon set?"
|
329 |
+
msgstr "Är du säker på att du vill copier den här ikonuppsättningnen?"
|
330 |
|
331 |
#: ../inc/backend/main-page.php:75
|
332 |
msgid "Are you sure you want to delete this icon set?"
|
333 |
+
msgstr "Är du säker på att du vill radera den här ikonuppsättningnen?"
|
334 |
|
335 |
#: ../inc/backend/main-page.php:86
|
336 |
msgid "Icon sets not added yet"
|
337 |
+
msgstr "Ikonuppsättningar har inte lagt till ännu"
|
338 |
|
339 |
#: ../inc/backend/panel-head.php:5 ../inc/backend/panel-head.php:29
|
340 |
#: ../inc/backend/widgets.php:14
|
341 |
msgid "AccessPress Social Icons"
|
342 |
+
msgstr "AccessPress Social Icons"
|
343 |
|
344 |
#: ../inc/backend/save-set.php:167
|
345 |
msgid "Icon Set Updated Successfully"
|
346 |
+
msgstr "Ikonuppsättning Har Uppdaterats Framgångsrikt"
|
347 |
|
348 |
#: ../inc/backend/save-set.php:200
|
349 |
msgid "Icon Set Saved Successfully"
|
350 |
+
msgstr "Ikonuppsättning Har Sparats Framgångsrikt"
|
351 |
|
352 |
#: ../inc/backend/theme-icon-set.php:28
|
353 |
msgid "Icon Background Color"
|
354 |
+
msgstr "Ikonens Backgrundsfärg"
|
355 |
|
356 |
#: ../inc/backend/widgets.php:15
|
357 |
msgid "AccessPress Social Icon Widget"
|
358 |
+
msgstr "AccessPress Social Ikons Widget"
|
359 |
|
360 |
#: ../inc/backend/widgets.php:69
|
361 |
msgid "Title:"
|
362 |
+
msgstr "Titel:"
|
363 |
|
364 |
#: ../inc/backend/widgets.php:73
|
365 |
msgid "Icon set"
|
366 |
+
msgstr "Ikonuppsättning:"
|
367 |
|
368 |
#: ../inc/backend/widgets.php:75
|
369 |
msgid "Choose Icon Set"
|
370 |
+
msgstr "Välj Ikonuppsättning. "
|
languages/ultimate-form-builder-lite.mo
DELETED
Binary file
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: social icon, social icons, social media, social icon widget, social icons
|
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -90,7 +90,12 @@ You can have more than one icon sets created and used on the site. A large icon
|
|
90 |
* <strong>Youtube channel link</strong>: https://www.youtube.com/watch?v=TjZNcVG3fDE
|
91 |
* <strong>Facebook link</strong>: https://www.facebook.com/AccessPressThemes
|
92 |
|
|
|
|
|
|
|
93 |
|
|
|
|
|
94 |
|
95 |
For a easy installation guide checkout the Installation tab above.
|
96 |
|
@@ -124,6 +129,11 @@ Once you install the plugin , you can check some general documentation about how
|
|
124 |
4. Backend Lcon Sets Listing
|
125 |
|
126 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
127 |
= 1.5.2 =
|
128 |
* Added apsi_icon_sets_directory filter for icons sets directory so that it can be changed as required
|
129 |
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 1.5.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
90 |
* <strong>Youtube channel link</strong>: https://www.youtube.com/watch?v=TjZNcVG3fDE
|
91 |
* <strong>Facebook link</strong>: https://www.facebook.com/AccessPressThemes
|
92 |
|
93 |
+
= Available Languages =
|
94 |
+
* English
|
95 |
+
* Swedish
|
96 |
|
97 |
+
= Translators =
|
98 |
+
* Swedish - Elias Vahman
|
99 |
|
100 |
For a easy installation guide checkout the Installation tab above.
|
101 |
|
129 |
4. Backend Lcon Sets Listing
|
130 |
|
131 |
== Changelog ==
|
132 |
+
= 1.5.3 =
|
133 |
+
* Added apsi_image_url filter
|
134 |
+
* Added relative URL fetch for the icon image
|
135 |
+
* Added Swedish Language
|
136 |
+
|
137 |
= 1.5.2 =
|
138 |
* Added apsi_icon_sets_directory filter for icons sets directory so that it can be changed as required
|
139 |
|