Version Description
- New: Bulk watermark - Apply watermark in Media Library actions
- New: Watermark images already uploaded to Media Library
Download this release
Release Info
Developer | dfactory |
Plugin | Image Watermark |
Version | 1.1.0 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.1.0
- image-watermark.php +132 -44
- languages/image-watermark-pl_PL.mo +0 -0
- languages/image-watermark-pl_PL.po +103 -75
- languages/image-watermark.pot +97 -71
- readme.txt +14 -7
image-watermark.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Image Watermark
|
4 |
Description: Image Watermark allows you to automatically watermark images uploaded to the WordPress Media Library.
|
5 |
-
Version: 1.0
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/image-watermark/
|
@@ -74,6 +74,8 @@ class ImageWatermark
|
|
74 |
add_action('admin_enqueue_scripts', array(&$this, 'admin_watermark_scripts_styles'));
|
75 |
add_action('wp_enqueue_scripts', array(&$this, 'front_watermark_scripts_styles'));
|
76 |
add_action('admin_menu', array(&$this, 'watermark_admin_menu'));
|
|
|
|
|
77 |
|
78 |
//filters
|
79 |
add_filter('plugin_row_meta', array(&$this, 'plugin_extend_links'), 10, 2);
|
@@ -82,6 +84,71 @@ class ImageWatermark
|
|
82 |
}
|
83 |
|
84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
/**
|
86 |
* Loads available image sizes
|
87 |
*/
|
@@ -105,9 +172,10 @@ class ImageWatermark
|
|
105 |
if($option_wi['plugin_off'] === 0 && $option_wi['url'] !== 0 && isset($_REQUEST['post_id']) && in_array($file['type'], $this->_allowed_mime_types))
|
106 |
{
|
107 |
$option = get_option('df_watermark_cpt_on');
|
|
|
108 |
|
109 |
//when apply watermark? everywhere or specific custom post types
|
110 |
-
if((isset($option[0]) && $option[0] === 'everywhere') || in_array(get_post_type($_REQUEST['post_id']), array_keys($option)) === TRUE)
|
111 |
{
|
112 |
add_filter('wp_generate_attachment_metadata', array(&$this, 'apply_watermark'));
|
113 |
}
|
@@ -131,12 +199,12 @@ class ImageWatermark
|
|
131 |
*/
|
132 |
public function plugin_extend_links($links, $file)
|
133 |
{
|
134 |
-
if
|
135 |
return $links;
|
136 |
|
137 |
$plugin = plugin_basename(__FILE__);
|
138 |
-
|
139 |
-
if
|
140 |
{
|
141 |
return array_merge(
|
142 |
$links,
|
@@ -153,14 +221,14 @@ class ImageWatermark
|
|
153 |
*/
|
154 |
function plugin_settings_link($links, $file)
|
155 |
{
|
156 |
-
if
|
157 |
return $links;
|
158 |
|
159 |
static $plugin;
|
160 |
|
161 |
$plugin = plugin_basename(__FILE__);
|
162 |
|
163 |
-
if
|
164 |
{
|
165 |
$settings_link = sprintf('<a href="%s">%s</a>', admin_url('options-general.php').'?page=watermark-options', __('Settings', 'image-watermark'));
|
166 |
array_unshift($links, $settings_link);
|
@@ -175,44 +243,64 @@ class ImageWatermark
|
|
175 |
*/
|
176 |
public function admin_watermark_scripts_styles($page)
|
177 |
{
|
178 |
-
if($page
|
179 |
-
|
|
|
180 |
|
181 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
|
213 |
-
|
214 |
-
|
215 |
-
|
|
|
216 |
}
|
217 |
|
218 |
|
@@ -560,7 +648,7 @@ class ImageWatermark
|
|
560 |
{
|
561 |
$imageFullSize = wp_get_attachment_image_src($watermark_image['url'], 'full', FALSE);
|
562 |
$imgSelectedInfo = getimagesize($imageFullSize[0]);
|
563 |
-
echo __('Original size', 'image-watermark').':
|
564 |
}
|
565 |
?>
|
566 |
</p>
|
@@ -643,12 +731,12 @@ class ImageWatermark
|
|
643 |
<h3 class="metabox-title"><?php _e('Image Watermark','image-watermark'); ?></h3>
|
644 |
<div class="inner">
|
645 |
<h3><?php _e('Need support?','image-watermark'); ?></h3>
|
646 |
-
<p><?php _e('If you are having problems with this plugin, please talk about them in the','image-watermark'); ?> <a href="http://dfactory.eu/support/" target="_blank" title="<?php _e('Support forum','image-watermark'); ?>"><?php _e('Support forum','image-watermark'); ?></a
|
647 |
<hr />
|
648 |
<h3><?php _e('Do you like this plugin?','image-watermark'); ?></h3>
|
649 |
-
<p><?php _e('Rate it 5 on WordPress.org','image-watermark'); ?><br />
|
650 |
-
<?php _e('Blog about it & link to the','image-watermark'); ?> <a href="http://dfactory.eu/plugins/image-watermark/" target="_blank" title="<?php _e('plugin page','image-watermark'); ?>"><?php _e('plugin page','image-watermark'); ?></a
|
651 |
-
<?php _e('Check out our other','image-watermark'); ?> <a href="http://dfactory.eu/plugins/" target="_blank" title="<?php _e('WordPress plugins','image-watermark'); ?>"><?php _e('WordPress plugins','image-watermark'); ?></a
|
652 |
</p>
|
653 |
|
654 |
<hr />
|
2 |
/*
|
3 |
Plugin Name: Image Watermark
|
4 |
Description: Image Watermark allows you to automatically watermark images uploaded to the WordPress Media Library.
|
5 |
+
Version: 1.1.0
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/image-watermark/
|
74 |
add_action('admin_enqueue_scripts', array(&$this, 'admin_watermark_scripts_styles'));
|
75 |
add_action('wp_enqueue_scripts', array(&$this, 'front_watermark_scripts_styles'));
|
76 |
add_action('admin_menu', array(&$this, 'watermark_admin_menu'));
|
77 |
+
add_action('load-upload.php', array(&$this, 'apply_watermark_bulk_action'));
|
78 |
+
add_action('admin_notices', array(&$this, 'bulk_admin_notices'));
|
79 |
|
80 |
//filters
|
81 |
add_filter('plugin_row_meta', array(&$this, 'plugin_extend_links'), 10, 2);
|
84 |
}
|
85 |
|
86 |
|
87 |
+
/**
|
88 |
+
* Applies watermark for selected images on media page
|
89 |
+
*/
|
90 |
+
public function apply_watermark_bulk_action()
|
91 |
+
{
|
92 |
+
global $pagenow;
|
93 |
+
|
94 |
+
if($pagenow == 'upload.php')
|
95 |
+
{
|
96 |
+
$opt = get_option('df_watermark_image');
|
97 |
+
$wp_list_table = _get_list_table('WP_Media_List_Table');
|
98 |
+
|
99 |
+
//only if image watermark is turned on
|
100 |
+
if($wp_list_table->current_action() === 'applywatermark' && $opt['plugin_off'] === 0 && $opt['url'] !== 0)
|
101 |
+
{
|
102 |
+
//security check
|
103 |
+
check_admin_referer('bulk-media');
|
104 |
+
|
105 |
+
//do we have selected attachments?
|
106 |
+
if(isset($_REQUEST['media']) && !empty($_REQUEST['media']))
|
107 |
+
{
|
108 |
+
$watermarked = 0;
|
109 |
+
|
110 |
+
foreach($_REQUEST['media'] as $media_id)
|
111 |
+
{
|
112 |
+
$upload_dir = wp_upload_dir();
|
113 |
+
$data = wp_get_attachment_metadata($media_id, FALSE);
|
114 |
+
|
115 |
+
//is this really an image?
|
116 |
+
if(in_array(get_post_mime_type($media_id), $this->_allowed_mime_types) && is_array($data) && getimagesize($upload_dir['basedir'].DIRECTORY_SEPARATOR.$data['file']) !== FALSE)
|
117 |
+
{
|
118 |
+
$this->apply_watermark($data);
|
119 |
+
$watermarked++;
|
120 |
+
}
|
121 |
+
}
|
122 |
+
|
123 |
+
wp_redirect(add_query_arg(array('watermarked' => $watermarked), wp_get_referer()));
|
124 |
+
exit();
|
125 |
+
}
|
126 |
+
}
|
127 |
+
else return;
|
128 |
+
}
|
129 |
+
}
|
130 |
+
|
131 |
+
|
132 |
+
/**
|
133 |
+
* Shows admin notices
|
134 |
+
*/
|
135 |
+
public function bulk_admin_notices()
|
136 |
+
{
|
137 |
+
global $post_type, $pagenow;
|
138 |
+
|
139 |
+
if($pagenow === 'upload.php' && $post_type === 'attachment' && isset($_REQUEST['watermarked']))
|
140 |
+
{
|
141 |
+
if ($_REQUEST['watermarked'] == 0)
|
142 |
+
{
|
143 |
+
echo '<div class="error"><p>'.__('Watermark couldn\'t be applied to selected images or no images were selected.', 'image-watermark').'</p></div>';
|
144 |
+
} elseif ($_REQUEST['watermarked'] > 0)
|
145 |
+
{
|
146 |
+
echo '<div class="updated"><p>'.sprintf(_n('Watermark was succesfully applied to 1 image.', 'Watermark was succesfully applied to %s images.', (int)$_REQUEST['watermarked'], 'image-watermark'), number_format_i18n((int)$_REQUEST['watermarked'])).'</p></div>';
|
147 |
+
}
|
148 |
+
}
|
149 |
+
}
|
150 |
+
|
151 |
+
|
152 |
/**
|
153 |
* Loads available image sizes
|
154 |
*/
|
172 |
if($option_wi['plugin_off'] === 0 && $option_wi['url'] !== 0 && isset($_REQUEST['post_id']) && in_array($file['type'], $this->_allowed_mime_types))
|
173 |
{
|
174 |
$option = get_option('df_watermark_cpt_on');
|
175 |
+
$upload_dir = wp_upload_dir();
|
176 |
|
177 |
//when apply watermark? everywhere or specific custom post types
|
178 |
+
if(((isset($option[0], $_REQUEST['name']) && $option[0] === 'everywhere') || in_array(get_post_type($_REQUEST['post_id']), array_keys($option)) === TRUE) && getimagesize($upload_dir['path'].DIRECTORY_SEPARATOR.$_REQUEST['name']) !== FALSE)
|
179 |
{
|
180 |
add_filter('wp_generate_attachment_metadata', array(&$this, 'apply_watermark'));
|
181 |
}
|
199 |
*/
|
200 |
public function plugin_extend_links($links, $file)
|
201 |
{
|
202 |
+
if(!current_user_can('install_plugins'))
|
203 |
return $links;
|
204 |
|
205 |
$plugin = plugin_basename(__FILE__);
|
206 |
+
|
207 |
+
if($file == $plugin)
|
208 |
{
|
209 |
return array_merge(
|
210 |
$links,
|
221 |
*/
|
222 |
function plugin_settings_link($links, $file)
|
223 |
{
|
224 |
+
if(!is_admin() || !current_user_can('manage_options'))
|
225 |
return $links;
|
226 |
|
227 |
static $plugin;
|
228 |
|
229 |
$plugin = plugin_basename(__FILE__);
|
230 |
|
231 |
+
if($file == $plugin)
|
232 |
{
|
233 |
$settings_link = sprintf('<a href="%s">%s</a>', admin_url('options-general.php').'?page=watermark-options', __('Settings', 'image-watermark'));
|
234 |
array_unshift($links, $settings_link);
|
243 |
*/
|
244 |
public function admin_watermark_scripts_styles($page)
|
245 |
{
|
246 |
+
if($page === 'upload.php')
|
247 |
+
{
|
248 |
+
$opt = get_option('df_watermark_image');
|
249 |
|
250 |
+
if($opt['plugin_off'] === 0 && $opt['url'] !== 0)
|
251 |
+
{
|
252 |
+
wp_enqueue_script(
|
253 |
+
'apply-watermark',
|
254 |
+
plugins_url('/js/apply-watermark.js', __FILE__)
|
255 |
+
);
|
256 |
+
|
257 |
+
wp_localize_script(
|
258 |
+
'apply-watermark',
|
259 |
+
'watermark_args',
|
260 |
+
array(
|
261 |
+
'apply_watermark' => __('Apply watermark', 'image-watermark')
|
262 |
+
)
|
263 |
+
);
|
264 |
+
}
|
265 |
+
}
|
266 |
+
elseif($page === 'settings_page_watermark-options')
|
267 |
+
{
|
268 |
+
wp_enqueue_media();
|
269 |
|
270 |
+
wp_enqueue_script(
|
271 |
+
'upload-manager',
|
272 |
+
plugins_url('/js/upload-manager.js', __FILE__)
|
273 |
+
);
|
274 |
|
275 |
+
wp_enqueue_script(
|
276 |
+
'wp-like',
|
277 |
+
plugins_url('js/wp-like.js', __FILE__),
|
278 |
+
array('jquery', 'jquery-ui-core', 'jquery-ui-button')
|
279 |
+
);
|
280 |
|
281 |
+
wp_enqueue_script(
|
282 |
+
'watermark-admin-script',
|
283 |
+
plugins_url('js/admin.js', __FILE__),
|
284 |
+
array('jquery', 'wp-like')
|
285 |
+
);
|
286 |
|
287 |
+
wp_localize_script(
|
288 |
+
'upload-manager',
|
289 |
+
'upload_manager_args',
|
290 |
+
array(
|
291 |
+
'title' => __('Select watermark', 'image-watermark'),
|
292 |
+
'originalSize' => __('Original size', 'image-watermark'),
|
293 |
+
'noSelectedImg' => __('Watermak has not been selected yet.', 'image-watermark'),
|
294 |
+
'frame' => 'select',
|
295 |
+
'button' => array('text' => __('Add watermark', 'image-watermark')),
|
296 |
+
'multiple' => FALSE,
|
297 |
+
)
|
298 |
+
);
|
299 |
|
300 |
+
wp_enqueue_style('thickbox');
|
301 |
+
wp_enqueue_style('watermark-style', plugins_url('css/style.css', __FILE__));
|
302 |
+
wp_enqueue_style('wp-like-ui-theme', plugins_url('css/wp-like-ui-theme.css', __FILE__));
|
303 |
+
}
|
304 |
}
|
305 |
|
306 |
|
648 |
{
|
649 |
$imageFullSize = wp_get_attachment_image_src($watermark_image['url'], 'full', FALSE);
|
650 |
$imgSelectedInfo = getimagesize($imageFullSize[0]);
|
651 |
+
echo __('Original size', 'image-watermark').': '.$imgSelectedInfo[0].' px / '.$imgSelectedInfo[1].' px';
|
652 |
}
|
653 |
?>
|
654 |
</p>
|
731 |
<h3 class="metabox-title"><?php _e('Image Watermark','image-watermark'); ?></h3>
|
732 |
<div class="inner">
|
733 |
<h3><?php _e('Need support?','image-watermark'); ?></h3>
|
734 |
+
<p><?php _e('If you are having problems with this plugin, please talk about them in the','image-watermark'); ?> <a href="http://dfactory.eu/support/" target="_blank" title="<?php _e('Support forum','image-watermark'); ?>"><?php _e('Support forum','image-watermark'); ?></a></p>
|
735 |
<hr />
|
736 |
<h3><?php _e('Do you like this plugin?','image-watermark'); ?></h3>
|
737 |
+
<p><a href="http://wordpress.org/support/view/plugin-reviews/image-watermark?filter=5" target="_blank" title="<?php _e('Rate it 5','image-watermark'); ?>"><?php _e('Rate it 5','image-watermark'); ?></a> <?php _e('on WordPress.org','image-watermark'); ?><br />
|
738 |
+
<?php _e('Blog about it & link to the','image-watermark'); ?> <a href="http://dfactory.eu/plugins/image-watermark/" target="_blank" title="<?php _e('plugin page','image-watermark'); ?>"><?php _e('plugin page','image-watermark'); ?></a><br />
|
739 |
+
<?php _e('Check out our other','image-watermark'); ?> <a href="http://dfactory.eu/plugins/" target="_blank" title="<?php _e('WordPress plugins','image-watermark'); ?>"><?php _e('WordPress plugins','image-watermark'); ?></a>
|
740 |
</p>
|
741 |
|
742 |
<hr />
|
languages/image-watermark-pl_PL.mo
CHANGED
Binary file
|
languages/image-watermark-pl_PL.po
CHANGED
@@ -2,18 +2,20 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WordPress Watermark\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
|
8 |
"Language-Team: Digital Factory <info@digitalfactory.pl>\n"
|
9 |
"Language: pl_PL\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
|
|
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
-
"X-Poedit-SourceCharset:
|
16 |
"X-Generator: Poedit 1.5.5\n"
|
|
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
#: ../image-watermark.php:27
|
@@ -23,96 +25,118 @@ msgstr ""
|
|
23 |
"Przykro nam, ale ta wtyczka wymaga PHP w wersji co najmniej 5.0 WordPressa w "
|
24 |
"wersji 3.5 lub wyższej.."
|
25 |
|
26 |
-
#: ../image-watermark.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
msgid "Support"
|
28 |
msgstr "Forum pomocy"
|
29 |
|
30 |
-
#: ../image-watermark.php:
|
31 |
msgid "Settings"
|
32 |
msgstr "Ustawienia"
|
33 |
|
34 |
-
#: ../image-watermark.php:
|
|
|
|
|
|
|
|
|
35 |
msgid "Select watermark"
|
36 |
msgstr "Wybierz znak wodny"
|
37 |
|
38 |
-
#: ../image-watermark.php:
|
39 |
msgid "Original size"
|
40 |
msgstr "Rozmiar oryginalny"
|
41 |
|
42 |
-
#: ../image-watermark.php:
|
43 |
msgid "Watermak has not been selected yet."
|
44 |
msgstr "Znak wodny nie został jeszcze wybrany."
|
45 |
|
46 |
-
#: ../image-watermark.php:
|
47 |
msgid "Add watermark"
|
48 |
msgstr "Dodaj znak wodny"
|
49 |
|
50 |
-
#: ../image-watermark.php:
|
51 |
msgid "Image Watermark Options"
|
52 |
msgstr "Ustawienia znaku wodnego"
|
53 |
|
54 |
-
#: ../image-watermark.php:
|
55 |
msgid "Watermark"
|
56 |
msgstr "Znak wodny"
|
57 |
|
58 |
-
#: ../image-watermark.php:
|
59 |
msgid "Image Watermark will not work properly without GD PHP extension."
|
60 |
msgstr ""
|
61 |
"Znak wodny nie może funkcjonować bez zainstalowanego rozszerzenia GD PHP."
|
62 |
|
63 |
-
#: ../image-watermark.php:
|
|
|
|
|
|
|
|
|
64 |
msgid "Watermarks will not be applied when <b>watermark image is not set</b>."
|
65 |
msgstr ""
|
66 |
"Znak wodny nie zostanie dodany ponieważ <b>nie wybrano obrazka dla znaku "
|
67 |
"wodnego</b>."
|
68 |
|
69 |
-
#: ../image-watermark.php:
|
70 |
msgid "Image Watermark Settings"
|
71 |
msgstr "Ustawienia znaku wodnego"
|
72 |
|
73 |
-
#: ../image-watermark.php:
|
74 |
msgid "General settings"
|
75 |
msgstr "Ustawienia ogólne"
|
76 |
|
77 |
-
#: ../image-watermark.php:
|
78 |
msgid "Enable watermark"
|
79 |
msgstr "Włącz znak wodny"
|
80 |
|
81 |
-
#: ../image-watermark.php:
|
82 |
-
#: ../image-watermark.php:
|
83 |
msgid "Width"
|
84 |
msgstr "Szerokość"
|
85 |
|
86 |
-
#: ../image-watermark.php:
|
87 |
msgid "on"
|
88 |
msgstr "włączony"
|
89 |
|
90 |
-
#: ../image-watermark.php:
|
91 |
msgid "off"
|
92 |
msgstr "wyłączony"
|
93 |
|
94 |
-
#: ../image-watermark.php:
|
95 |
msgid "Enable or disable watermark for uploaded images."
|
96 |
msgstr "Włącz lub wyłącz dodawanie znaku wodnego do wgrywanych obrazków."
|
97 |
|
98 |
-
#: ../image-watermark.php:
|
99 |
-
#: ../image-watermark.php:
|
100 |
msgid "Enable watermark for"
|
101 |
msgstr "Dodawaj znak wodny do"
|
102 |
|
103 |
-
#: ../image-watermark.php:
|
104 |
msgid "Check image sizes on which watermark should appear."
|
105 |
msgstr "Zaznacz wielkości obrazków dla których ma być dodawany znak wodny."
|
106 |
|
107 |
-
#: ../image-watermark.php:
|
108 |
msgid "everywhere"
|
109 |
msgstr "wszędzie"
|
110 |
|
111 |
-
#: ../image-watermark.php:
|
112 |
msgid "on selected post types only"
|
113 |
msgstr "na wybranych typach wpisów"
|
114 |
|
115 |
-
#: ../image-watermark.php:
|
116 |
msgid ""
|
117 |
"Check custom post types on which watermark should be applied to uploaded "
|
118 |
"images."
|
@@ -120,101 +144,101 @@ msgstr ""
|
|
120 |
"Zaznacz własne typy wpisów w których znak wodny będzie dodawany do "
|
121 |
"wgrywanych obrazków."
|
122 |
|
123 |
-
#: ../image-watermark.php:
|
124 |
msgid "Watermark position"
|
125 |
msgstr "Pozycja znaku wodnego"
|
126 |
|
127 |
-
#: ../image-watermark.php:
|
128 |
msgid "Watermark alignment"
|
129 |
msgstr "Wyrównanie znaku wodnego"
|
130 |
|
131 |
-
#: ../image-watermark.php:
|
132 |
msgid "Choose the position of watermark image."
|
133 |
msgstr "Wybierz pozycję znaku wodnego na obrazkach"
|
134 |
|
135 |
-
#: ../image-watermark.php:
|
136 |
msgid "Watermark offset"
|
137 |
msgstr "Korekcja pozycji"
|
138 |
|
139 |
-
#: ../image-watermark.php:
|
140 |
msgid "x:"
|
141 |
msgstr "x:"
|
142 |
|
143 |
-
#: ../image-watermark.php:
|
144 |
-
#: ../image-watermark.php:
|
145 |
msgid "px"
|
146 |
msgstr "pikseli"
|
147 |
|
148 |
-
#: ../image-watermark.php:
|
149 |
msgid "y:"
|
150 |
msgstr "y:"
|
151 |
|
152 |
-
#: ../image-watermark.php:
|
153 |
msgid "Watermark image"
|
154 |
msgstr "Obrazek znaku wodnego"
|
155 |
|
156 |
-
#: ../image-watermark.php:
|
157 |
msgid ""
|
158 |
-
"Configure your watermark image. Allowed file formats are:
|
159 |
msgstr ""
|
160 |
-
"Skonfiguruj obrazek znaku wodnego. Dozwolone formaty plików to:
|
161 |
-
"
|
162 |
|
163 |
-
#: ../image-watermark.php:
|
164 |
msgid "Select image"
|
165 |
msgstr "Wybierz obrazek"
|
166 |
|
167 |
-
#: ../image-watermark.php:
|
168 |
msgid "Turn off image"
|
169 |
msgstr "Wyłącz obrazek"
|
170 |
|
171 |
-
#: ../image-watermark.php:
|
172 |
msgid "You have to save changes after the selection or removal of the image."
|
173 |
msgstr "Po zapisaniu zmian lub wybraniu obrazka powienieneś zapisać zmiany."
|
174 |
|
175 |
-
#: ../image-watermark.php:
|
176 |
msgid "Watermark preview"
|
177 |
msgstr "Podgląd obrazka"
|
178 |
|
179 |
-
#: ../image-watermark.php:
|
180 |
msgid "Watermark Preview"
|
181 |
msgstr "Podgląd obrazka"
|
182 |
|
183 |
-
#: ../image-watermark.php:
|
184 |
msgid "Watermark size"
|
185 |
msgstr "Wielkość znaku wodnego"
|
186 |
|
187 |
-
#: ../image-watermark.php:
|
188 |
msgid "original"
|
189 |
msgstr "oryginalna"
|
190 |
|
191 |
-
#: ../image-watermark.php:
|
192 |
msgid "custom"
|
193 |
msgstr "własna"
|
194 |
|
195 |
-
#: ../image-watermark.php:
|
196 |
msgid "scaled"
|
197 |
msgstr "skalowana"
|
198 |
|
199 |
-
#: ../image-watermark.php:
|
200 |
msgid "Select method of aplying watermark size."
|
201 |
msgstr "Wybierz sposób określania wielkości znaku wodnego."
|
202 |
|
203 |
-
#: ../image-watermark.php:
|
204 |
msgid "Watermark custom size"
|
205 |
msgstr "Własna wielkość"
|
206 |
|
207 |
-
#: ../image-watermark.php:
|
208 |
msgid "Those dimensions will be used if \"custom\" method is selected above."
|
209 |
msgstr ""
|
210 |
"Te wymiary zostaną zastosowane, jeśli wybrałeś \"własną\" wielkość znaku "
|
211 |
"wodnego. "
|
212 |
|
213 |
-
#: ../image-watermark.php:
|
214 |
msgid "Scale of watermark in relation to image width"
|
215 |
msgstr "Wielkość znaku wodnego w stosunku do szerokości obrazków"
|
216 |
|
217 |
-
#: ../image-watermark.php:
|
218 |
msgid ""
|
219 |
"This value will be used if \"scaled\" method if selected above. <br />Enter "
|
220 |
"a number ranging from 0 to 100. 100 makes width of watermark image equal to "
|
@@ -225,11 +249,11 @@ msgstr ""
|
|
225 |
"że wielkość znaku wodnego będzie równa wielkości obrazka, do którego jest "
|
226 |
"dodawany."
|
227 |
|
228 |
-
#: ../image-watermark.php:
|
229 |
msgid "Watermark transparency / opacity"
|
230 |
msgstr "Przezroczystość znaku wodnego"
|
231 |
|
232 |
-
#: ../image-watermark.php:
|
233 |
msgid ""
|
234 |
"Enter a number ranging from 0 to 100. 0 makes watermark image completely "
|
235 |
"transparent, 100 shows it as is."
|
@@ -237,68 +261,72 @@ msgstr ""
|
|
237 |
"Wpisz liczbę z zakresu od 0 do 100. Wpisanie 0 spowoduje, że znak wodny "
|
238 |
"będzie całkowicie przezroczysty, 100 że widoczny taki jak jest."
|
239 |
|
240 |
-
#: ../image-watermark.php:
|
241 |
msgid "Image protection"
|
242 |
msgstr "Ochrona obrazków"
|
243 |
|
244 |
-
#: ../image-watermark.php:
|
245 |
msgid "Disable right mouse click on images"
|
246 |
msgstr "Wyłącz możliwość kliknięcia prawym przyciskiem myszy na obrazku"
|
247 |
|
248 |
-
#: ../image-watermark.php:
|
249 |
msgid "Prevent drag and drop"
|
250 |
msgstr "Wyłącz możliwość przeciągania i upuszczania obrazków"
|
251 |
|
252 |
-
#: ../image-watermark.php:
|
253 |
msgid "Enable image protection for logged-in users also"
|
254 |
msgstr "Włącz ochronę zdjęć także dla zalogowanych użytkowników"
|
255 |
|
256 |
-
#: ../image-watermark.php:
|
257 |
msgid "Save Changes"
|
258 |
msgstr "Zapisz zmiany"
|
259 |
|
260 |
-
#: ../image-watermark.php:
|
261 |
msgid "Image Watermark"
|
262 |
msgstr "Znak wodny"
|
263 |
|
264 |
-
#: ../image-watermark.php:
|
265 |
msgid "Need support?"
|
266 |
msgstr "Potrzebujesz pomocy?"
|
267 |
|
268 |
-
#: ../image-watermark.php:
|
269 |
msgid ""
|
270 |
"If you are having problems with this plugin, please talk about them in the"
|
271 |
msgstr "Jeśli masz jakiekolwiek problemy z tą wtyczką, powiedz o tym na"
|
272 |
|
273 |
-
#: ../image-watermark.php:
|
274 |
msgid "Support forum"
|
275 |
msgstr "Forum pomocy"
|
276 |
|
277 |
-
#: ../image-watermark.php:
|
278 |
msgid "Do you like this plugin?"
|
279 |
msgstr "Lubisz tę wtyczkę?"
|
280 |
|
281 |
-
#: ../image-watermark.php:
|
282 |
-
msgid "Rate it 5
|
283 |
-
msgstr "Oceń ją na 5
|
|
|
|
|
|
|
|
|
284 |
|
285 |
-
#: ../image-watermark.php:
|
286 |
msgid "Blog about it & link to the"
|
287 |
msgstr "Napisz o niej i dodaj link do"
|
288 |
|
289 |
-
#: ../image-watermark.php:
|
290 |
msgid "plugin page"
|
291 |
msgstr "strony wtyczki"
|
292 |
|
293 |
-
#: ../image-watermark.php:
|
294 |
msgid "Check out our other"
|
295 |
msgstr "Sprawdź inne"
|
296 |
|
297 |
-
#: ../image-watermark.php:
|
298 |
msgid "WordPress plugins"
|
299 |
msgstr "wtyczki do WordPressa"
|
300 |
|
301 |
-
#: ../image-watermark.php:
|
302 |
msgid "Created by"
|
303 |
msgstr "Stworzone przez"
|
304 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WordPress Watermark\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-05-07 14:37+0100\n"
|
6 |
+
"PO-Revision-Date: 2013-05-07 14:38+0100\n"
|
7 |
"Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
|
8 |
"Language-Team: Digital Factory <info@digitalfactory.pl>\n"
|
9 |
"Language: pl_PL\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;esc_attr__;"
|
14 |
+
"esc_attr_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Generator: Poedit 1.5.5\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
#: ../image-watermark.php:27
|
25 |
"Przykro nam, ale ta wtyczka wymaga PHP w wersji co najmniej 5.0 WordPressa w "
|
26 |
"wersji 3.5 lub wyższej.."
|
27 |
|
28 |
+
#: ../image-watermark.php:143
|
29 |
+
msgid ""
|
30 |
+
"Watermark couldn't be applied to selected images or no images were selected."
|
31 |
+
msgstr ""
|
32 |
+
"Znak wodny nie został został dodany do wybranych obrazków lub żaden obrazek "
|
33 |
+
"nie został wybrany."
|
34 |
+
|
35 |
+
#: ../image-watermark.php:146
|
36 |
+
#, php-format
|
37 |
+
msgid "Watermark was succesfully applied to 1 image."
|
38 |
+
msgid_plural "Watermark was succesfully applied to %s images."
|
39 |
+
msgstr[0] "Znak wodny został dodany do 1 obrazka."
|
40 |
+
msgstr[1] "Znak wodny został dodany do %s obrazków."
|
41 |
+
|
42 |
+
#: ../image-watermark.php:211
|
43 |
msgid "Support"
|
44 |
msgstr "Forum pomocy"
|
45 |
|
46 |
+
#: ../image-watermark.php:233
|
47 |
msgid "Settings"
|
48 |
msgstr "Ustawienia"
|
49 |
|
50 |
+
#: ../image-watermark.php:261
|
51 |
+
msgid "Apply watermark"
|
52 |
+
msgstr "Dodaj znak wodny"
|
53 |
+
|
54 |
+
#: ../image-watermark.php:291
|
55 |
msgid "Select watermark"
|
56 |
msgstr "Wybierz znak wodny"
|
57 |
|
58 |
+
#: ../image-watermark.php:292 ../image-watermark.php:651
|
59 |
msgid "Original size"
|
60 |
msgstr "Rozmiar oryginalny"
|
61 |
|
62 |
+
#: ../image-watermark.php:293 ../image-watermark.php:645
|
63 |
msgid "Watermak has not been selected yet."
|
64 |
msgstr "Znak wodny nie został jeszcze wybrany."
|
65 |
|
66 |
+
#: ../image-watermark.php:295
|
67 |
msgid "Add watermark"
|
68 |
msgstr "Dodaj znak wodny"
|
69 |
|
70 |
+
#: ../image-watermark.php:337
|
71 |
msgid "Image Watermark Options"
|
72 |
msgstr "Ustawienia znaku wodnego"
|
73 |
|
74 |
+
#: ../image-watermark.php:338
|
75 |
msgid "Watermark"
|
76 |
msgstr "Znak wodny"
|
77 |
|
78 |
+
#: ../image-watermark.php:364
|
79 |
msgid "Image Watermark will not work properly without GD PHP extension."
|
80 |
msgstr ""
|
81 |
"Znak wodny nie może funkcjonować bez zainstalowanego rozszerzenia GD PHP."
|
82 |
|
83 |
+
#: ../image-watermark.php:495
|
84 |
+
msgid "Settings saved."
|
85 |
+
msgstr "Ustawienia zostały zapisane."
|
86 |
+
|
87 |
+
#: ../image-watermark.php:506
|
88 |
msgid "Watermarks will not be applied when <b>watermark image is not set</b>."
|
89 |
msgstr ""
|
90 |
"Znak wodny nie zostanie dodany ponieważ <b>nie wybrano obrazka dla znaku "
|
91 |
"wodnego</b>."
|
92 |
|
93 |
+
#: ../image-watermark.php:512
|
94 |
msgid "Image Watermark Settings"
|
95 |
msgstr "Ustawienia znaku wodnego"
|
96 |
|
97 |
+
#: ../image-watermark.php:516
|
98 |
msgid "General settings"
|
99 |
msgstr "Ustawienia ogólne"
|
100 |
|
101 |
+
#: ../image-watermark.php:519
|
102 |
msgid "Enable watermark"
|
103 |
msgstr "Włącz znak wodny"
|
104 |
|
105 |
+
#: ../image-watermark.php:522 ../image-watermark.php:662
|
106 |
+
#: ../image-watermark.php:679 ../image-watermark.php:691
|
107 |
msgid "Width"
|
108 |
msgstr "Szerokość"
|
109 |
|
110 |
+
#: ../image-watermark.php:524
|
111 |
msgid "on"
|
112 |
msgstr "włączony"
|
113 |
|
114 |
+
#: ../image-watermark.php:526
|
115 |
msgid "off"
|
116 |
msgstr "wyłączony"
|
117 |
|
118 |
+
#: ../image-watermark.php:529
|
119 |
msgid "Enable or disable watermark for uploaded images."
|
120 |
msgstr "Włącz lub wyłącz dodawanie znaku wodnego do wgrywanych obrazków."
|
121 |
|
122 |
+
#: ../image-watermark.php:536 ../image-watermark.php:539
|
123 |
+
#: ../image-watermark.php:548
|
124 |
msgid "Enable watermark for"
|
125 |
msgstr "Dodawaj znak wodny do"
|
126 |
|
127 |
+
#: ../image-watermark.php:547
|
128 |
msgid "Check image sizes on which watermark should appear."
|
129 |
msgstr "Zaznacz wielkości obrazków dla których ma być dodawany znak wodny."
|
130 |
|
131 |
+
#: ../image-watermark.php:554
|
132 |
msgid "everywhere"
|
133 |
msgstr "wszędzie"
|
134 |
|
135 |
+
#: ../image-watermark.php:555
|
136 |
msgid "on selected post types only"
|
137 |
msgstr "na wybranych typach wpisów"
|
138 |
|
139 |
+
#: ../image-watermark.php:563
|
140 |
msgid ""
|
141 |
"Check custom post types on which watermark should be applied to uploaded "
|
142 |
"images."
|
144 |
"Zaznacz własne typy wpisów w których znak wodny będzie dodawany do "
|
145 |
"wgrywanych obrazków."
|
146 |
|
147 |
+
#: ../image-watermark.php:569
|
148 |
msgid "Watermark position"
|
149 |
msgstr "Pozycja znaku wodnego"
|
150 |
|
151 |
+
#: ../image-watermark.php:572 ../image-watermark.php:575
|
152 |
msgid "Watermark alignment"
|
153 |
msgstr "Wyrównanie znaku wodnego"
|
154 |
|
155 |
+
#: ../image-watermark.php:588
|
156 |
msgid "Choose the position of watermark image."
|
157 |
msgstr "Wybierz pozycję znaku wodnego na obrazkach"
|
158 |
|
159 |
+
#: ../image-watermark.php:593 ../image-watermark.php:596
|
160 |
msgid "Watermark offset"
|
161 |
msgstr "Korekcja pozycji"
|
162 |
|
163 |
+
#: ../image-watermark.php:597 ../image-watermark.php:680
|
164 |
msgid "x:"
|
165 |
msgstr "x:"
|
166 |
|
167 |
+
#: ../image-watermark.php:597 ../image-watermark.php:599
|
168 |
+
#: ../image-watermark.php:680 ../image-watermark.php:682
|
169 |
msgid "px"
|
170 |
msgstr "pikseli"
|
171 |
|
172 |
+
#: ../image-watermark.php:599 ../image-watermark.php:682
|
173 |
msgid "y:"
|
174 |
msgstr "y:"
|
175 |
|
176 |
+
#: ../image-watermark.php:615 ../image-watermark.php:619
|
177 |
msgid "Watermark image"
|
178 |
msgstr "Obrazek znaku wodnego"
|
179 |
|
180 |
+
#: ../image-watermark.php:616
|
181 |
msgid ""
|
182 |
+
"Configure your watermark image. Allowed file formats are: JPEG, PNG, GIF."
|
183 |
msgstr ""
|
184 |
+
"Skonfiguruj obrazek znaku wodnego. Dozwolone formaty plików to: JPEG, PNG, "
|
185 |
+
"GIF."
|
186 |
|
187 |
+
#: ../image-watermark.php:622
|
188 |
msgid "Select image"
|
189 |
msgstr "Wybierz obrazek"
|
190 |
|
191 |
+
#: ../image-watermark.php:623
|
192 |
msgid "Turn off image"
|
193 |
msgstr "Wyłącz obrazek"
|
194 |
|
195 |
+
#: ../image-watermark.php:624
|
196 |
msgid "You have to save changes after the selection or removal of the image."
|
197 |
msgstr "Po zapisaniu zmian lub wybraniu obrazka powienieneś zapisać zmiany."
|
198 |
|
199 |
+
#: ../image-watermark.php:628
|
200 |
msgid "Watermark preview"
|
201 |
msgstr "Podgląd obrazka"
|
202 |
|
203 |
+
#: ../image-watermark.php:631
|
204 |
msgid "Watermark Preview"
|
205 |
msgstr "Podgląd obrazka"
|
206 |
|
207 |
+
#: ../image-watermark.php:659
|
208 |
msgid "Watermark size"
|
209 |
msgstr "Wielkość znaku wodnego"
|
210 |
|
211 |
+
#: ../image-watermark.php:664
|
212 |
msgid "original"
|
213 |
msgstr "oryginalna"
|
214 |
|
215 |
+
#: ../image-watermark.php:666
|
216 |
msgid "custom"
|
217 |
msgstr "własna"
|
218 |
|
219 |
+
#: ../image-watermark.php:668
|
220 |
msgid "scaled"
|
221 |
msgstr "skalowana"
|
222 |
|
223 |
+
#: ../image-watermark.php:671
|
224 |
msgid "Select method of aplying watermark size."
|
225 |
msgstr "Wybierz sposób określania wielkości znaku wodnego."
|
226 |
|
227 |
+
#: ../image-watermark.php:676
|
228 |
msgid "Watermark custom size"
|
229 |
msgstr "Własna wielkość"
|
230 |
|
231 |
+
#: ../image-watermark.php:684
|
232 |
msgid "Those dimensions will be used if \"custom\" method is selected above."
|
233 |
msgstr ""
|
234 |
"Te wymiary zostaną zastosowane, jeśli wybrałeś \"własną\" wielkość znaku "
|
235 |
"wodnego. "
|
236 |
|
237 |
+
#: ../image-watermark.php:688
|
238 |
msgid "Scale of watermark in relation to image width"
|
239 |
msgstr "Wielkość znaku wodnego w stosunku do szerokości obrazków"
|
240 |
|
241 |
+
#: ../image-watermark.php:694
|
242 |
msgid ""
|
243 |
"This value will be used if \"scaled\" method if selected above. <br />Enter "
|
244 |
"a number ranging from 0 to 100. 100 makes width of watermark image equal to "
|
249 |
"że wielkość znaku wodnego będzie równa wielkości obrazka, do którego jest "
|
250 |
"dodawany."
|
251 |
|
252 |
+
#: ../image-watermark.php:698
|
253 |
msgid "Watermark transparency / opacity"
|
254 |
msgstr "Przezroczystość znaku wodnego"
|
255 |
|
256 |
+
#: ../image-watermark.php:703
|
257 |
msgid ""
|
258 |
"Enter a number ranging from 0 to 100. 0 makes watermark image completely "
|
259 |
"transparent, 100 shows it as is."
|
261 |
"Wpisz liczbę z zakresu od 0 do 100. Wpisanie 0 spowoduje, że znak wodny "
|
262 |
"będzie całkowicie przezroczysty, 100 że widoczny taki jak jest."
|
263 |
|
264 |
+
#: ../image-watermark.php:709
|
265 |
msgid "Image protection"
|
266 |
msgstr "Ochrona obrazków"
|
267 |
|
268 |
+
#: ../image-watermark.php:712
|
269 |
msgid "Disable right mouse click on images"
|
270 |
msgstr "Wyłącz możliwość kliknięcia prawym przyciskiem myszy na obrazku"
|
271 |
|
272 |
+
#: ../image-watermark.php:716
|
273 |
msgid "Prevent drag and drop"
|
274 |
msgstr "Wyłącz możliwość przeciągania i upuszczania obrazków"
|
275 |
|
276 |
+
#: ../image-watermark.php:720
|
277 |
msgid "Enable image protection for logged-in users also"
|
278 |
msgstr "Włącz ochronę zdjęć także dla zalogowanych użytkowników"
|
279 |
|
280 |
+
#: ../image-watermark.php:725
|
281 |
msgid "Save Changes"
|
282 |
msgstr "Zapisz zmiany"
|
283 |
|
284 |
+
#: ../image-watermark.php:731
|
285 |
msgid "Image Watermark"
|
286 |
msgstr "Znak wodny"
|
287 |
|
288 |
+
#: ../image-watermark.php:733
|
289 |
msgid "Need support?"
|
290 |
msgstr "Potrzebujesz pomocy?"
|
291 |
|
292 |
+
#: ../image-watermark.php:734
|
293 |
msgid ""
|
294 |
"If you are having problems with this plugin, please talk about them in the"
|
295 |
msgstr "Jeśli masz jakiekolwiek problemy z tą wtyczką, powiedz o tym na"
|
296 |
|
297 |
+
#: ../image-watermark.php:734
|
298 |
msgid "Support forum"
|
299 |
msgstr "Forum pomocy"
|
300 |
|
301 |
+
#: ../image-watermark.php:736
|
302 |
msgid "Do you like this plugin?"
|
303 |
msgstr "Lubisz tę wtyczkę?"
|
304 |
|
305 |
+
#: ../image-watermark.php:737
|
306 |
+
msgid "Rate it 5"
|
307 |
+
msgstr "Oceń ją na 5"
|
308 |
+
|
309 |
+
#: ../image-watermark.php:737
|
310 |
+
msgid "on WordPress.org"
|
311 |
+
msgstr "na WordPress.org"
|
312 |
|
313 |
+
#: ../image-watermark.php:738
|
314 |
msgid "Blog about it & link to the"
|
315 |
msgstr "Napisz o niej i dodaj link do"
|
316 |
|
317 |
+
#: ../image-watermark.php:738
|
318 |
msgid "plugin page"
|
319 |
msgstr "strony wtyczki"
|
320 |
|
321 |
+
#: ../image-watermark.php:739
|
322 |
msgid "Check out our other"
|
323 |
msgstr "Sprawdź inne"
|
324 |
|
325 |
+
#: ../image-watermark.php:739
|
326 |
msgid "WordPress plugins"
|
327 |
msgstr "wtyczki do WordPressa"
|
328 |
|
329 |
+
#: ../image-watermark.php:743
|
330 |
msgid "Created by"
|
331 |
msgstr "Stworzone przez"
|
332 |
|
languages/image-watermark.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WordPress Watermark\n"
|
4 |
-
"POT-Creation-Date: 2013-
|
5 |
-
"PO-Revision-Date: 2013-
|
6 |
"Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
|
7 |
"Language-Team: dFactory <info@dfactory.pl>\n"
|
8 |
"Language: English\n"
|
@@ -10,9 +10,11 @@ msgstr ""
|
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Generator: Poedit 1.5.5\n"
|
13 |
-
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e;esc_attr__;esc_attr_e
|
|
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
|
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
#: ../image-watermark.php:27
|
@@ -20,266 +22,290 @@ msgid ""
|
|
20 |
"Sorry, Image Watermark plugin requires at least PHP 5.0 and WP 3.5 or higher."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: ../image-watermark.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "Support"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: ../image-watermark.php:
|
28 |
msgid "Settings"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../image-watermark.php:
|
|
|
|
|
|
|
|
|
32 |
msgid "Select watermark"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../image-watermark.php:
|
36 |
msgid "Original size"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../image-watermark.php:
|
40 |
msgid "Watermak has not been selected yet."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../image-watermark.php:
|
44 |
msgid "Add watermark"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: ../image-watermark.php:
|
48 |
msgid "Image Watermark Options"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../image-watermark.php:
|
52 |
msgid "Watermark"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: ../image-watermark.php:
|
56 |
msgid "Image Watermark will not work properly without GD PHP extension."
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../image-watermark.php:
|
|
|
|
|
|
|
|
|
60 |
msgid "Watermarks will not be applied when <b>watermark image is not set</b>."
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../image-watermark.php:
|
64 |
msgid "Image Watermark Settings"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: ../image-watermark.php:
|
68 |
msgid "General settings"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: ../image-watermark.php:
|
72 |
msgid "Enable watermark"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../image-watermark.php:
|
76 |
-
#: ../image-watermark.php:
|
77 |
msgid "Width"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: ../image-watermark.php:
|
81 |
msgid "on"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../image-watermark.php:
|
85 |
msgid "off"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../image-watermark.php:
|
89 |
msgid "Enable or disable watermark for uploaded images."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: ../image-watermark.php:
|
93 |
-
#: ../image-watermark.php:
|
94 |
msgid "Enable watermark for"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: ../image-watermark.php:
|
98 |
msgid "Check image sizes on which watermark should appear."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: ../image-watermark.php:
|
102 |
msgid "everywhere"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: ../image-watermark.php:
|
106 |
msgid "on selected post types only"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: ../image-watermark.php:
|
110 |
msgid ""
|
111 |
"Check custom post types on which watermark should be applied to uploaded "
|
112 |
"images."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: ../image-watermark.php:
|
116 |
msgid "Watermark position"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../image-watermark.php:
|
120 |
msgid "Watermark alignment"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../image-watermark.php:
|
124 |
msgid "Choose the position of watermark image."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: ../image-watermark.php:
|
128 |
msgid "Watermark offset"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: ../image-watermark.php:
|
132 |
msgid "x:"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: ../image-watermark.php:
|
136 |
-
#: ../image-watermark.php:
|
137 |
msgid "px"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../image-watermark.php:
|
141 |
msgid "y:"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: ../image-watermark.php:
|
145 |
msgid "Watermark image"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: ../image-watermark.php:
|
149 |
msgid ""
|
150 |
-
"Configure your watermark image. Allowed file formats are:
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../image-watermark.php:
|
154 |
msgid "Select image"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../image-watermark.php:
|
158 |
msgid "Turn off image"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../image-watermark.php:
|
162 |
msgid "You have to save changes after the selection or removal of the image."
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../image-watermark.php:
|
166 |
msgid "Watermark preview"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../image-watermark.php:
|
170 |
msgid "Watermark Preview"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../image-watermark.php:
|
174 |
msgid "Watermark size"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../image-watermark.php:
|
178 |
msgid "original"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../image-watermark.php:
|
182 |
msgid "custom"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../image-watermark.php:
|
186 |
msgid "scaled"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ../image-watermark.php:
|
190 |
msgid "Select method of aplying watermark size."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../image-watermark.php:
|
194 |
msgid "Watermark custom size"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../image-watermark.php:
|
198 |
msgid "Those dimensions will be used if \"custom\" method is selected above."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../image-watermark.php:
|
202 |
msgid "Scale of watermark in relation to image width"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../image-watermark.php:
|
206 |
msgid ""
|
207 |
"This value will be used if \"scaled\" method if selected above. <br />Enter "
|
208 |
"a number ranging from 0 to 100. 100 makes width of watermark image equal to "
|
209 |
"width of the image it is applied to."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../image-watermark.php:
|
213 |
msgid "Watermark transparency / opacity"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: ../image-watermark.php:
|
217 |
msgid ""
|
218 |
"Enter a number ranging from 0 to 100. 0 makes watermark image completely "
|
219 |
"transparent, 100 shows it as is."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../image-watermark.php:
|
223 |
msgid "Image protection"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../image-watermark.php:
|
227 |
msgid "Disable right mouse click on images"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../image-watermark.php:
|
231 |
msgid "Prevent drag and drop"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../image-watermark.php:
|
235 |
msgid "Enable image protection for logged-in users also"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../image-watermark.php:
|
239 |
msgid "Save Changes"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../image-watermark.php:
|
243 |
msgid "Image Watermark"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../image-watermark.php:
|
247 |
msgid "Need support?"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../image-watermark.php:
|
251 |
msgid ""
|
252 |
"If you are having problems with this plugin, please talk about them in the"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../image-watermark.php:
|
256 |
msgid "Support forum"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../image-watermark.php:
|
260 |
msgid "Do you like this plugin?"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../image-watermark.php:
|
264 |
-
msgid "Rate it 5
|
|
|
|
|
|
|
|
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../image-watermark.php:
|
268 |
msgid "Blog about it & link to the"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../image-watermark.php:
|
272 |
msgid "plugin page"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../image-watermark.php:
|
276 |
msgid "Check out our other"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../image-watermark.php:
|
280 |
msgid "WordPress plugins"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../image-watermark.php:
|
284 |
msgid "Created by"
|
285 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WordPress Watermark\n"
|
4 |
+
"POT-Creation-Date: 2013-05-07 14:37+0100\n"
|
5 |
+
"PO-Revision-Date: 2013-05-07 14:37+0100\n"
|
6 |
"Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
|
7 |
"Language-Team: dFactory <info@dfactory.pl>\n"
|
8 |
"Language: English\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Generator: Poedit 1.5.5\n"
|
13 |
+
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e;esc_attr__;esc_attr_e;"
|
14 |
+
"_n:1,2\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
18 |
"X-Poedit-SearchPath-0: ..\n"
|
19 |
|
20 |
#: ../image-watermark.php:27
|
22 |
"Sorry, Image Watermark plugin requires at least PHP 5.0 and WP 3.5 or higher."
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ../image-watermark.php:143
|
26 |
+
msgid ""
|
27 |
+
"Watermark couldn't be applied to selected images or no images were selected."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../image-watermark.php:146
|
31 |
+
#, php-format
|
32 |
+
msgid "Watermark was succesfully applied to 1 image."
|
33 |
+
msgid_plural "Watermark was succesfully applied to %s images."
|
34 |
+
msgstr[0] ""
|
35 |
+
msgstr[1] ""
|
36 |
+
|
37 |
+
#: ../image-watermark.php:211
|
38 |
msgid "Support"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../image-watermark.php:233
|
42 |
msgid "Settings"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../image-watermark.php:261
|
46 |
+
msgid "Apply watermark"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: ../image-watermark.php:291
|
50 |
msgid "Select watermark"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../image-watermark.php:292 ../image-watermark.php:651
|
54 |
msgid "Original size"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../image-watermark.php:293 ../image-watermark.php:645
|
58 |
msgid "Watermak has not been selected yet."
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../image-watermark.php:295
|
62 |
msgid "Add watermark"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../image-watermark.php:337
|
66 |
msgid "Image Watermark Options"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../image-watermark.php:338
|
70 |
msgid "Watermark"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../image-watermark.php:364
|
74 |
msgid "Image Watermark will not work properly without GD PHP extension."
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../image-watermark.php:495
|
78 |
+
msgid "Settings saved."
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: ../image-watermark.php:506
|
82 |
msgid "Watermarks will not be applied when <b>watermark image is not set</b>."
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../image-watermark.php:512
|
86 |
msgid "Image Watermark Settings"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: ../image-watermark.php:516
|
90 |
msgid "General settings"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../image-watermark.php:519
|
94 |
msgid "Enable watermark"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ../image-watermark.php:522 ../image-watermark.php:662
|
98 |
+
#: ../image-watermark.php:679 ../image-watermark.php:691
|
99 |
msgid "Width"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ../image-watermark.php:524
|
103 |
msgid "on"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: ../image-watermark.php:526
|
107 |
msgid "off"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: ../image-watermark.php:529
|
111 |
msgid "Enable or disable watermark for uploaded images."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: ../image-watermark.php:536 ../image-watermark.php:539
|
115 |
+
#: ../image-watermark.php:548
|
116 |
msgid "Enable watermark for"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../image-watermark.php:547
|
120 |
msgid "Check image sizes on which watermark should appear."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: ../image-watermark.php:554
|
124 |
msgid "everywhere"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../image-watermark.php:555
|
128 |
msgid "on selected post types only"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: ../image-watermark.php:563
|
132 |
msgid ""
|
133 |
"Check custom post types on which watermark should be applied to uploaded "
|
134 |
"images."
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ../image-watermark.php:569
|
138 |
msgid "Watermark position"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: ../image-watermark.php:572 ../image-watermark.php:575
|
142 |
msgid "Watermark alignment"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: ../image-watermark.php:588
|
146 |
msgid "Choose the position of watermark image."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: ../image-watermark.php:593 ../image-watermark.php:596
|
150 |
msgid "Watermark offset"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../image-watermark.php:597 ../image-watermark.php:680
|
154 |
msgid "x:"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../image-watermark.php:597 ../image-watermark.php:599
|
158 |
+
#: ../image-watermark.php:680 ../image-watermark.php:682
|
159 |
msgid "px"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: ../image-watermark.php:599 ../image-watermark.php:682
|
163 |
msgid "y:"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: ../image-watermark.php:615 ../image-watermark.php:619
|
167 |
msgid "Watermark image"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: ../image-watermark.php:616
|
171 |
msgid ""
|
172 |
+
"Configure your watermark image. Allowed file formats are: JPEG, PNG, GIF."
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: ../image-watermark.php:622
|
176 |
msgid "Select image"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: ../image-watermark.php:623
|
180 |
msgid "Turn off image"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: ../image-watermark.php:624
|
184 |
msgid "You have to save changes after the selection or removal of the image."
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../image-watermark.php:628
|
188 |
msgid "Watermark preview"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: ../image-watermark.php:631
|
192 |
msgid "Watermark Preview"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../image-watermark.php:659
|
196 |
msgid "Watermark size"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ../image-watermark.php:664
|
200 |
msgid "original"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ../image-watermark.php:666
|
204 |
msgid "custom"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: ../image-watermark.php:668
|
208 |
msgid "scaled"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../image-watermark.php:671
|
212 |
msgid "Select method of aplying watermark size."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../image-watermark.php:676
|
216 |
msgid "Watermark custom size"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../image-watermark.php:684
|
220 |
msgid "Those dimensions will be used if \"custom\" method is selected above."
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ../image-watermark.php:688
|
224 |
msgid "Scale of watermark in relation to image width"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: ../image-watermark.php:694
|
228 |
msgid ""
|
229 |
"This value will be used if \"scaled\" method if selected above. <br />Enter "
|
230 |
"a number ranging from 0 to 100. 100 makes width of watermark image equal to "
|
231 |
"width of the image it is applied to."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../image-watermark.php:698
|
235 |
msgid "Watermark transparency / opacity"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../image-watermark.php:703
|
239 |
msgid ""
|
240 |
"Enter a number ranging from 0 to 100. 0 makes watermark image completely "
|
241 |
"transparent, 100 shows it as is."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../image-watermark.php:709
|
245 |
msgid "Image protection"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: ../image-watermark.php:712
|
249 |
msgid "Disable right mouse click on images"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: ../image-watermark.php:716
|
253 |
msgid "Prevent drag and drop"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../image-watermark.php:720
|
257 |
msgid "Enable image protection for logged-in users also"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ../image-watermark.php:725
|
261 |
msgid "Save Changes"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../image-watermark.php:731
|
265 |
msgid "Image Watermark"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: ../image-watermark.php:733
|
269 |
msgid "Need support?"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: ../image-watermark.php:734
|
273 |
msgid ""
|
274 |
"If you are having problems with this plugin, please talk about them in the"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../image-watermark.php:734
|
278 |
msgid "Support forum"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../image-watermark.php:736
|
282 |
msgid "Do you like this plugin?"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: ../image-watermark.php:737
|
286 |
+
msgid "Rate it 5"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: ../image-watermark.php:737
|
290 |
+
msgid "on WordPress.org"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../image-watermark.php:738
|
294 |
msgid "Blog about it & link to the"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../image-watermark.php:738
|
298 |
msgid "plugin page"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: ../image-watermark.php:739
|
302 |
msgid "Check out our other"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ../image-watermark.php:739
|
306 |
msgid "WordPress plugins"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: ../image-watermark.php:743
|
310 |
msgid "Created by"
|
311 |
msgstr ""
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Image Watermark ===
|
2 |
Contributors: dfactory
|
3 |
Donate link: http://www.dfactory.eu/
|
4 |
-
Tags: image, images, picture, watermark, watermarking, protection, image protection, image security
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 3.5.1
|
7 |
-
Stable tag: 1.0
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
@@ -12,12 +12,14 @@ Image Watermark allows you to automatically watermark images uploaded to the Wor
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
[Image Watermark](http://www.dfactory.eu/plugins/image-watermark/) allows you to automatically watermark images uploaded to the WordPress Media Library.
|
16 |
|
17 |
For more information, check out plugin page at [dFactory](http://www.dfactory.eu/) or plugin [support forum](http://www.dfactory.eu/support/forum/image-watermark/).
|
18 |
|
19 |
= Features include: =
|
20 |
|
|
|
|
|
21 |
* Choose the position of watermark image
|
22 |
* Upload custom watermark image
|
23 |
* Watermark image preview
|
@@ -33,9 +35,10 @@ For more information, check out plugin page at [dFactory](http://www.dfactory.eu
|
|
33 |
|
34 |
== Installation ==
|
35 |
|
36 |
-
1. Install Image Watermark either via the WordPress.org plugin directory, or by uploading the files to your server
|
37 |
-
1. Activate the plugin through the 'Plugins' menu in WordPress
|
38 |
-
1. Go to the Watermark menu in Settings and set your watermarking options
|
|
|
39 |
|
40 |
== Frequently Asked Questions ==
|
41 |
|
@@ -48,6 +51,10 @@ No questions yet.
|
|
48 |
|
49 |
== Changelog ==
|
50 |
|
|
|
|
|
|
|
|
|
51 |
= 1.0.3 =
|
52 |
* Fix: Error during upload of file types other than images (png, jpg)
|
53 |
* Fix: Limit watermark file types to png, gif, jpg
|
@@ -72,4 +79,4 @@ Initial release
|
|
72 |
|
73 |
== Upgrade Notice ==
|
74 |
|
75 |
-
|
1 |
=== Image Watermark ===
|
2 |
Contributors: dfactory
|
3 |
Donate link: http://www.dfactory.eu/
|
4 |
+
Tags: image, images, picture, photo, watermark, watermarking, protection, image protection, image security, plugin
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 3.5.1
|
7 |
+
Stable tag: 1.1.0
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
[Image Watermark](http://www.dfactory.eu/plugins/image-watermark/) allows you to automatically watermark images uploaded to the WordPress Media Library and bulk watermark previously imported images.
|
16 |
|
17 |
For more information, check out plugin page at [dFactory](http://www.dfactory.eu/) or plugin [support forum](http://www.dfactory.eu/support/forum/image-watermark/).
|
18 |
|
19 |
= Features include: =
|
20 |
|
21 |
+
* Bulk watermark - Apply watermark in Media Library actions
|
22 |
+
* Watermark images already uploaded to Media Library
|
23 |
* Choose the position of watermark image
|
24 |
* Upload custom watermark image
|
25 |
* Watermark image preview
|
35 |
|
36 |
== Installation ==
|
37 |
|
38 |
+
1. Install Image Watermark either via the WordPress.org plugin directory, or by uploading the files to your server
|
39 |
+
1. Activate the plugin through the 'Plugins' menu in WordPress
|
40 |
+
1. Go to the Watermark menu in Settings and set your watermarking options.
|
41 |
+
1. Enable watermark to apply watermark to uploaded images or go to Media Library to apply watermark to previously uploaded images
|
42 |
|
43 |
== Frequently Asked Questions ==
|
44 |
|
51 |
|
52 |
== Changelog ==
|
53 |
|
54 |
+
= 1.1.0 =
|
55 |
+
* New: Bulk watermark - Apply watermark in Media Library actions
|
56 |
+
* New: Watermark images already uploaded to Media Library
|
57 |
+
|
58 |
= 1.0.3 =
|
59 |
* Fix: Error during upload of file types other than images (png, jpg)
|
60 |
* Fix: Limit watermark file types to png, gif, jpg
|
79 |
|
80 |
== Upgrade Notice ==
|
81 |
|
82 |
+
New: Watermark images already uploaded to Media Library
|