Version Description
- New: Hungarian translation, thanks to Meszaros Tamas
Download this release
Release Info
Developer | dfactory |
Plugin | Image Watermark |
Version | 1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.3 to 1.4.1
- css/image-watermark.css +2 -0
- image-watermark.php +10 -4
- languages/image-watermark-hu_HU.mo +0 -0
- languages/image-watermark-hu_HU.po +403 -0
- readme.txt +11 -4
css/image-watermark.css
CHANGED
@@ -4,6 +4,8 @@
|
|
4 |
.df-credits h3 { font-size: 14px; line-height: 1.4; margin: 0; padding: 8px 12px; border-bottom: 1px solid #eee; }
|
5 |
.df-credits .df-link { font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; font-style:italic; padding-bottom: 10px; margin: 0; }
|
6 |
.df-credits .df-link a { vertical-align: middle; padding: 5px 0 0 4px; }
|
|
|
|
|
7 |
.image-watermark-settings { margin-right: 300px; }
|
8 |
.image-watermark-settings hr, .df-credits hr { border: solid #eee; border-width: 1px 0 0; clear: both; height: 0; }
|
9 |
.image-watermark-settings form { float: left; min-width: 463px; width: auto; }
|
4 |
.df-credits h3 { font-size: 14px; line-height: 1.4; margin: 0; padding: 8px 12px; border-bottom: 1px solid #eee; }
|
5 |
.df-credits .df-link { font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; font-style:italic; padding-bottom: 10px; margin: 0; }
|
6 |
.df-credits .df-link a { vertical-align: middle; padding: 5px 0 0 4px; }
|
7 |
+
.image-watermark-settings .df-credits form { min-width: 260px; margin-bottom: 1em; }
|
8 |
+
.image-watermark-settings .df-credits form input { margin: 0; padding: 0; }
|
9 |
.image-watermark-settings { margin-right: 300px; }
|
10 |
.image-watermark-settings hr, .df-credits hr { border: solid #eee; border-width: 1px 0 0; clear: both; height: 0; }
|
11 |
.image-watermark-settings form { float: left; min-width: 463px; width: auto; }
|
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 and bulk watermark previously uploaded images.
|
5 |
-
Version: 1.
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/image-watermark/
|
@@ -69,7 +69,7 @@ class Image_Watermark
|
|
69 |
'draganddrop' => 0,
|
70 |
'forlogged' => 0,
|
71 |
),
|
72 |
-
'version' => '1.
|
73 |
);
|
74 |
|
75 |
|
@@ -640,12 +640,18 @@ class Image_Watermark
|
|
640 |
|
641 |
<div class="image-watermark-settings">
|
642 |
<div class="df-credits">
|
643 |
-
<h3 class="hndle"><?php
|
644 |
<div class="inside">
|
645 |
<h4 class="inner"><?php _e('Need support?', 'image-watermark'); ?></h4>
|
646 |
<p class="inner"><?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>
|
647 |
<hr />
|
648 |
<h4 class="inner"><?php _e('Do you like this plugin?', 'image-watermark'); ?></h4>
|
|
|
|
|
|
|
|
|
|
|
|
|
649 |
<p class="inner"><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 />
|
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><br />
|
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>
|
@@ -1221,7 +1227,7 @@ class Image_Watermark
|
|
1221 |
private function imagecopymerge_alpha($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h, $pct)
|
1222 |
{
|
1223 |
//creating a cut resource
|
1224 |
-
$cut =
|
1225 |
|
1226 |
//copying relevant section from background to the cut resource
|
1227 |
imagecopy($cut, $dst_im, 0, 0, $dst_x, $dst_y, $src_w, $src_h);
|
2 |
/*
|
3 |
Plugin Name: Image Watermark
|
4 |
Description: Image Watermark allows you to automatically watermark images uploaded to the WordPress Media Library and bulk watermark previously uploaded images.
|
5 |
+
Version: 1.4.1
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/image-watermark/
|
69 |
'draganddrop' => 0,
|
70 |
'forlogged' => 0,
|
71 |
),
|
72 |
+
'version' => '1.4.1'
|
73 |
);
|
74 |
|
75 |
|
640 |
|
641 |
<div class="image-watermark-settings">
|
642 |
<div class="df-credits">
|
643 |
+
<h3 class="hndle"><?php echo __('Image Watermark', 'image-watermark') .' '.$this->_options['version']; ?></h3>
|
644 |
<div class="inside">
|
645 |
<h4 class="inner"><?php _e('Need support?', 'image-watermark'); ?></h4>
|
646 |
<p class="inner"><?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>
|
647 |
<hr />
|
648 |
<h4 class="inner"><?php _e('Do you like this plugin?', 'image-watermark'); ?></h4>
|
649 |
+
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank" class="inner">
|
650 |
+
<input type="hidden" name="cmd" value="_s-xclick">
|
651 |
+
<input type="hidden" name="hosted_button_id" value="DCF3AXC9A5A88">
|
652 |
+
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
|
653 |
+
<img alt="" border="0" src="https://www.paypalobjects.com/pl_PL/i/scr/pixel.gif" width="1" height="1">
|
654 |
+
</form>
|
655 |
<p class="inner"><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 />
|
656 |
<?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 />
|
657 |
<?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>
|
1227 |
private function imagecopymerge_alpha($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h, $pct)
|
1228 |
{
|
1229 |
//creating a cut resource
|
1230 |
+
$cut = imagecreatetruecolor($src_w, $src_h);
|
1231 |
|
1232 |
//copying relevant section from background to the cut resource
|
1233 |
imagecopy($cut, $dst_im, 0, 0, $dst_x, $dst_y, $src_w, $src_h);
|
languages/image-watermark-hu_HU.mo
ADDED
Binary file
|
languages/image-watermark-hu_HU.po
ADDED
@@ -0,0 +1,403 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WordPress Watermark\n"
|
4 |
+
"POT-Creation-Date: 2015-02-03 11:40+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-02-05 00:04+0100\n"
|
6 |
+
"Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
|
7 |
+
"Language-Team: dFactory <info@dfactory.pl>\n"
|
8 |
+
"Language: hu_HU\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.7.4\n"
|
13 |
+
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e;esc_attr__;esc_attr_e;_n:1,2\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
|
19 |
+
#: ../image-watermark.php:29
|
20 |
+
msgid "Sorry, Image Watermark plugin requires at least PHP 5.0 and WP 3.5 or higher."
|
21 |
+
msgstr "Kép Vízjel bővítményhez szükséges PHP 5.0 és WP 3.5 vagy magyasabb verzió"
|
22 |
+
|
23 |
+
#: ../image-watermark.php:218
|
24 |
+
msgid ""
|
25 |
+
"Watermark could not be applied to selected files or no valid images (JPEG, PNG) were selected."
|
26 |
+
msgstr ""
|
27 |
+
"Vízjelnél nem lehetett alkalmazni a kijelölt fájlokat, vagy nincsenek érvényes képek (JPEG,PNG) "
|
28 |
+
"kiválasztásnál."
|
29 |
+
|
30 |
+
#: ../image-watermark.php:218 ../image-watermark.php:222
|
31 |
+
msgid "Skipped files"
|
32 |
+
msgstr "Kihagyott fájlok"
|
33 |
+
|
34 |
+
#: ../image-watermark.php:222
|
35 |
+
#, php-format
|
36 |
+
msgid "Watermark was succesfully applied to 1 image."
|
37 |
+
msgid_plural "Watermark was succesfully applied to %s images."
|
38 |
+
msgstr[0] "Vízjelet sikeresen alkalmaztunk 1 képnél."
|
39 |
+
msgstr[1] "Vízjelet sikeresen alkalmaztunk %s képeknél."
|
40 |
+
|
41 |
+
#: ../image-watermark.php:265
|
42 |
+
msgid "Support"
|
43 |
+
msgstr "Támogatás"
|
44 |
+
|
45 |
+
#: ../image-watermark.php:287
|
46 |
+
msgid "Settings"
|
47 |
+
msgstr "Beállítások"
|
48 |
+
|
49 |
+
#: ../image-watermark.php:318
|
50 |
+
msgid "Apply watermark"
|
51 |
+
msgstr "Vízjel alkalmazása"
|
52 |
+
|
53 |
+
#: ../image-watermark.php:338
|
54 |
+
msgid "Select watermark"
|
55 |
+
msgstr "Vízjel kiválasztása"
|
56 |
+
|
57 |
+
#: ../image-watermark.php:339 ../image-watermark.php:834
|
58 |
+
msgid "Original size"
|
59 |
+
msgstr "Eredeti méret"
|
60 |
+
|
61 |
+
#: ../image-watermark.php:340 ../image-watermark.php:828
|
62 |
+
msgid "Watermak has not been selected yet."
|
63 |
+
msgstr "Vízjelnek még semmi nem lett kiválasztva."
|
64 |
+
|
65 |
+
#: ../image-watermark.php:341
|
66 |
+
msgid "This image is not supported as watermark. Use JPEG, PNG or GIF."
|
67 |
+
msgstr "Ez a kép nem támogatott vízjelre. Használj JPEG, PNG vagy GIF formátumot."
|
68 |
+
|
69 |
+
#: ../image-watermark.php:343
|
70 |
+
msgid "Add watermark"
|
71 |
+
msgstr "Vízjel hozzáadása"
|
72 |
+
|
73 |
+
#: ../image-watermark.php:360
|
74 |
+
msgid "Are you sure you want to reset settings to defaults?"
|
75 |
+
msgstr "Biztos újra akarod indítani az alapértékeket?"
|
76 |
+
|
77 |
+
#: ../image-watermark.php:417
|
78 |
+
msgid "Image Watermark Options"
|
79 |
+
msgstr "Vízjel kép opciók"
|
80 |
+
|
81 |
+
#: ../image-watermark.php:418
|
82 |
+
msgid "Watermark"
|
83 |
+
msgstr "Vízjel"
|
84 |
+
|
85 |
+
#: ../image-watermark.php:444
|
86 |
+
msgid "Image Watermark will not work properly without GD PHP extension."
|
87 |
+
msgstr "A kép Vízjel nem fog megfelelően működni anélkül, GD PHP kiterjesztéssel."
|
88 |
+
|
89 |
+
#: ../image-watermark.php:586
|
90 |
+
msgid "Settings saved."
|
91 |
+
msgstr "Beállítások mentve."
|
92 |
+
|
93 |
+
#: ../image-watermark.php:599
|
94 |
+
msgid "Settings restored to defaults."
|
95 |
+
msgstr "Beállítások helyreállítva az alapértékekre."
|
96 |
+
|
97 |
+
#: ../image-watermark.php:619
|
98 |
+
msgid "Watermark will not be applied when <b>watermark image is not set</b>."
|
99 |
+
msgstr "Vízjel nem alkalmazható, ha a <b> vízjel képe nincs beállítva </ b>."
|
100 |
+
|
101 |
+
#: ../image-watermark.php:622
|
102 |
+
msgid "Watermark will not be applied when <b>no image sizes are selected</b>."
|
103 |
+
msgstr "Vízjel nem alkalmazható, ha a <b> nem választottál ki képméretet</ b>."
|
104 |
+
|
105 |
+
#: ../image-watermark.php:628
|
106 |
+
msgid ""
|
107 |
+
"Watermark will not be applied while frontend image upload if <b>watermark image is not set</b>."
|
108 |
+
msgstr ""
|
109 |
+
"Vízjelet nem alkalmazható, míg frontend kép feltöltés esetén <b> vízjel képnél nincs beállítás</ "
|
110 |
+
"b>."
|
111 |
+
|
112 |
+
#: ../image-watermark.php:631
|
113 |
+
msgid ""
|
114 |
+
"Watermark will not be applied while frontend image upload if <b>no image sizes are selected</b>."
|
115 |
+
msgstr ""
|
116 |
+
"Vízjelet nem alkalmazható, míg frontend kép feltöltés esetén <b> vízjel képnél nincs "
|
117 |
+
"kiválasztás</ b>."
|
118 |
+
|
119 |
+
#: ../image-watermark.php:638
|
120 |
+
msgid "Image Watermark Settings"
|
121 |
+
msgstr "Kép vízjel beállítás"
|
122 |
+
|
123 |
+
#: ../image-watermark.php:642
|
124 |
+
msgid "Image Watermark"
|
125 |
+
msgstr "Kép vízjel"
|
126 |
+
|
127 |
+
#: ../image-watermark.php:644
|
128 |
+
msgid "Need support?"
|
129 |
+
msgstr "Támogatás szükséges?"
|
130 |
+
|
131 |
+
#: ../image-watermark.php:645
|
132 |
+
msgid "If you are having problems with this plugin, please talk about them in the"
|
133 |
+
msgstr "Ha problémái vannak a plugint, kérjük, beszéljen róluk a"
|
134 |
+
|
135 |
+
#: ../image-watermark.php:645
|
136 |
+
msgid "Support forum"
|
137 |
+
msgstr "Fórum támogatás"
|
138 |
+
|
139 |
+
#: ../image-watermark.php:647
|
140 |
+
msgid "Do you like this plugin?"
|
141 |
+
msgstr "Kedveled ezt a bővítményt?"
|
142 |
+
|
143 |
+
#: ../image-watermark.php:648
|
144 |
+
msgid "Rate it 5"
|
145 |
+
msgstr "Értékelje 5-ösre"
|
146 |
+
|
147 |
+
#: ../image-watermark.php:648
|
148 |
+
msgid "on WordPress.org"
|
149 |
+
msgstr "WordPress.org-on"
|
150 |
+
|
151 |
+
#: ../image-watermark.php:649
|
152 |
+
msgid "Blog about it & link to the"
|
153 |
+
msgstr "Blogról & link a"
|
154 |
+
|
155 |
+
#: ../image-watermark.php:649
|
156 |
+
msgid "plugin page"
|
157 |
+
msgstr "bővítmény oldal"
|
158 |
+
|
159 |
+
#: ../image-watermark.php:650
|
160 |
+
msgid "Check out our other"
|
161 |
+
msgstr "Nézd meg a többit"
|
162 |
+
|
163 |
+
#: ../image-watermark.php:650
|
164 |
+
msgid "WordPress plugins"
|
165 |
+
msgstr "WordPress bővítmény"
|
166 |
+
|
167 |
+
#: ../image-watermark.php:653
|
168 |
+
msgid "Created by"
|
169 |
+
msgstr "Készítette"
|
170 |
+
|
171 |
+
#: ../image-watermark.php:658
|
172 |
+
msgid "General settings"
|
173 |
+
msgstr "Általános beállítások"
|
174 |
+
|
175 |
+
#: ../image-watermark.php:661
|
176 |
+
msgid "Automatic watermarking"
|
177 |
+
msgstr "Automatikus vízjelzés"
|
178 |
+
|
179 |
+
#: ../image-watermark.php:665 ../image-watermark.php:681 ../image-watermark.php:728
|
180 |
+
#: ../image-watermark.php:744
|
181 |
+
msgid "on"
|
182 |
+
msgstr "be"
|
183 |
+
|
184 |
+
#: ../image-watermark.php:667 ../image-watermark.php:683 ../image-watermark.php:730
|
185 |
+
#: ../image-watermark.php:746
|
186 |
+
msgid "off"
|
187 |
+
msgstr "ki"
|
188 |
+
|
189 |
+
#: ../image-watermark.php:670
|
190 |
+
msgid "Enable or disable watermark for uploaded images."
|
191 |
+
msgstr "Vízjel engedélyezése vagy tiltása a feltöltött képeknél."
|
192 |
+
|
193 |
+
#: ../image-watermark.php:677
|
194 |
+
msgid "Manual watermarking"
|
195 |
+
msgstr "Kézi vízjelzés"
|
196 |
+
|
197 |
+
#: ../image-watermark.php:686
|
198 |
+
msgid "Enable or disable Apply Watermark option for images in Media Library."
|
199 |
+
msgstr "Vízjelzés alkalmazásának engedélyezése vagy tiltása a képeknél a Média Könyvtárban."
|
200 |
+
|
201 |
+
#: ../image-watermark.php:693
|
202 |
+
msgid "Enable watermark for"
|
203 |
+
msgstr "Engedélyezze a vízjelet"
|
204 |
+
|
205 |
+
#: ../image-watermark.php:702
|
206 |
+
msgid ""
|
207 |
+
"Check image sizes on which watermark should appear.<br /><strong>IMPORTANT:</strong> checking "
|
208 |
+
"full size is NOT recommended as it's the original image. You may need it later - for removing or "
|
209 |
+
"changing watermark, image sizes regeneration or any other image manipulations. Use it only if you "
|
210 |
+
"know what you are doing."
|
211 |
+
msgstr ""
|
212 |
+
"Betölti a képméretet, amelyen vízjel jelenik meg. <br /> <Strong> FONTOS: </strong> betöltése "
|
213 |
+
"teljes méretben nem ajánlott, mivel ez az eredeti kép. Szükséged lehet később - eltávolításra "
|
214 |
+
"vagy megváltoztatod a vízjel képméretet helyreállítod, vagy bármilyen más képet manipulálász. "
|
215 |
+
"Használd, de csak akkor, ha tudod, hogy mit csinálsz."
|
216 |
+
|
217 |
+
#: ../image-watermark.php:708
|
218 |
+
msgid "everywhere"
|
219 |
+
msgstr "mindenhol"
|
220 |
+
|
221 |
+
#: ../image-watermark.php:709
|
222 |
+
msgid "on selected post types only"
|
223 |
+
msgstr "a választott hozzászólás típusoknál"
|
224 |
+
|
225 |
+
#: ../image-watermark.php:717
|
226 |
+
msgid "Check custom post types on which watermark should be applied to uploaded images."
|
227 |
+
msgstr "Betöltés egyéni típusokhoz, amelyre vízjelet szeretnél alkalmazni - feltölthetsz képeket."
|
228 |
+
|
229 |
+
#: ../image-watermark.php:724
|
230 |
+
msgid "Automatic frontend watermarking"
|
231 |
+
msgstr "Automatikus frontend vízjel"
|
232 |
+
|
233 |
+
#: ../image-watermark.php:733
|
234 |
+
msgid ""
|
235 |
+
"Enable or disable watermark for frontend image uploading. (uploading script is not included, but "
|
236 |
+
"you may use a plugin or custom code). <strong>Notice:</strong> This functionality works only if "
|
237 |
+
"uploaded images are processed using WordPress native upload methods."
|
238 |
+
msgstr ""
|
239 |
+
"vízjel engedélyezése vagy tiltás frontend képfeltöltésnél. (Feltöltés script nem szerepel, de "
|
240 |
+
"lehet használni a plugint, vagy egyéni kód). <strong> Megjegyzés: </strong> Ez a funkció csak "
|
241 |
+
"akkor működik, ha a feltöltött képeket kerülnek feldolgozásra WordPress natív feltöltési "
|
242 |
+
"módszereknél."
|
243 |
+
|
244 |
+
#: ../image-watermark.php:740
|
245 |
+
msgid "Plugin deactivation"
|
246 |
+
msgstr "Bővítmény inaktíválása"
|
247 |
+
|
248 |
+
#: ../image-watermark.php:749
|
249 |
+
msgid "Delete all database settings on plugin deactivation."
|
250 |
+
msgstr "Törölje az összes adatbázis bővítmény beállításainak kikapcsolását."
|
251 |
+
|
252 |
+
#: ../image-watermark.php:755
|
253 |
+
msgid "Watermark position"
|
254 |
+
msgstr "Vízjel pozició"
|
255 |
+
|
256 |
+
#: ../image-watermark.php:758
|
257 |
+
msgid "Watermark alignment"
|
258 |
+
msgstr "Vízjel igazítás"
|
259 |
+
|
260 |
+
#: ../image-watermark.php:773
|
261 |
+
msgid "Choose the position of watermark image."
|
262 |
+
msgstr "Pozicíó kiválasztása a vízjel képnél."
|
263 |
+
|
264 |
+
#: ../image-watermark.php:778
|
265 |
+
msgid "Watermark offset"
|
266 |
+
msgstr "Vízjel kordináták"
|
267 |
+
|
268 |
+
#: ../image-watermark.php:781 ../image-watermark.php:861
|
269 |
+
msgid "x:"
|
270 |
+
msgstr "x:"
|
271 |
+
|
272 |
+
#: ../image-watermark.php:781 ../image-watermark.php:783 ../image-watermark.php:861
|
273 |
+
#: ../image-watermark.php:863
|
274 |
+
msgid "px"
|
275 |
+
msgstr "px"
|
276 |
+
|
277 |
+
#: ../image-watermark.php:783 ../image-watermark.php:863
|
278 |
+
msgid "y:"
|
279 |
+
msgstr "y:"
|
280 |
+
|
281 |
+
#: ../image-watermark.php:799 ../image-watermark.php:803
|
282 |
+
msgid "Watermark image"
|
283 |
+
msgstr "Vízjel kép"
|
284 |
+
|
285 |
+
#: ../image-watermark.php:800
|
286 |
+
msgid "Configure your watermark image. Allowed file formats are: JPEG, PNG, GIF."
|
287 |
+
msgstr "Állítsd be a vízjel képet. Engedélyezett fájl formátumok: JPEG, PNG, GIF."
|
288 |
+
|
289 |
+
#: ../image-watermark.php:806
|
290 |
+
msgid "Select image"
|
291 |
+
msgstr "Kép kiválasztás"
|
292 |
+
|
293 |
+
#: ../image-watermark.php:807
|
294 |
+
msgid "Turn off image"
|
295 |
+
msgstr "Kép kikapcsolása"
|
296 |
+
|
297 |
+
#: ../image-watermark.php:808
|
298 |
+
msgid "You have to save changes after the selection or removal of the image."
|
299 |
+
msgstr "El kell menteni változtatások után a kép kiválasztását vagy eltávolítását."
|
300 |
+
|
301 |
+
#: ../image-watermark.php:812
|
302 |
+
msgid "Watermark preview"
|
303 |
+
msgstr "Vízjel előnézet"
|
304 |
+
|
305 |
+
#: ../image-watermark.php:842
|
306 |
+
msgid "Watermark size"
|
307 |
+
msgstr "Vízjel méret"
|
308 |
+
|
309 |
+
#: ../image-watermark.php:846
|
310 |
+
msgid "original"
|
311 |
+
msgstr "eredeti"
|
312 |
+
|
313 |
+
#: ../image-watermark.php:848
|
314 |
+
msgid "custom"
|
315 |
+
msgstr "szokásos"
|
316 |
+
|
317 |
+
#: ../image-watermark.php:850
|
318 |
+
msgid "scaled"
|
319 |
+
msgstr "méretarányos"
|
320 |
+
|
321 |
+
#: ../image-watermark.php:853
|
322 |
+
msgid "Select method of aplying watermark size."
|
323 |
+
msgstr "Válassza ki a módszert alkalmazott vízjel mérethez."
|
324 |
+
|
325 |
+
#: ../image-watermark.php:858
|
326 |
+
msgid "Watermark custom size"
|
327 |
+
msgstr "Vízjel szokásos mérete"
|
328 |
+
|
329 |
+
#: ../image-watermark.php:865
|
330 |
+
msgid "Those dimensions will be used if \"custom\" method is selected above."
|
331 |
+
msgstr "E dimenziók fogják használni, ha \"egyedi\" módszert fent kiválasztottad."
|
332 |
+
|
333 |
+
#: ../image-watermark.php:869
|
334 |
+
msgid "Scale of watermark in relation to image width"
|
335 |
+
msgstr "Képarány a vízjelnél a kép szélességével kapcsolatban"
|
336 |
+
|
337 |
+
#: ../image-watermark.php:879
|
338 |
+
msgid ""
|
339 |
+
"This value will be used if \"scaled\" method if selected above. <br />Enter a number ranging from "
|
340 |
+
"0 to 100. 100 makes width of watermark image equal to width of the image it is applied to."
|
341 |
+
msgstr ""
|
342 |
+
"Ez az érték lesz, ha \"képarány\" módszer, ha a fentiekben kiválasztott. <br /> Enteregy szám 0-"
|
343 |
+
"tól 100 100 teszi szélességét vízjel kép egyenlő szélességű képnél ezt alkalmazzák."
|
344 |
+
|
345 |
+
#: ../image-watermark.php:883
|
346 |
+
msgid "Watermark transparency / opacity"
|
347 |
+
msgstr "Vízjel átlátszóság / homályosság"
|
348 |
+
|
349 |
+
#: ../image-watermark.php:893
|
350 |
+
msgid ""
|
351 |
+
"Enter a number ranging from 0 to 100. 0 makes watermark image completely transparent, 100 shows "
|
352 |
+
"it as is."
|
353 |
+
msgstr ""
|
354 |
+
"Adjon meg egy számot 0-tól 100 0 teszi vízjel képét teljesen átláthatóvá, 100 mutatja, úgy ahogy "
|
355 |
+
"van."
|
356 |
+
|
357 |
+
#: ../image-watermark.php:897
|
358 |
+
msgid "Image quality"
|
359 |
+
msgstr "Kép minősége"
|
360 |
+
|
361 |
+
#: ../image-watermark.php:907
|
362 |
+
msgid "Set output image quality."
|
363 |
+
msgstr "Képminőség kimenet beállítása."
|
364 |
+
|
365 |
+
#: ../image-watermark.php:911
|
366 |
+
msgid "Image format"
|
367 |
+
msgstr "Kép formátum"
|
368 |
+
|
369 |
+
#: ../image-watermark.php:915
|
370 |
+
msgid "baseline"
|
371 |
+
msgstr "kiindulás"
|
372 |
+
|
373 |
+
#: ../image-watermark.php:917
|
374 |
+
msgid "progressive"
|
375 |
+
msgstr "progresszív"
|
376 |
+
|
377 |
+
#: ../image-watermark.php:921
|
378 |
+
msgid "Select baseline or progressive image format."
|
379 |
+
msgstr "Kiindulási vagy progresszív kép formátum kiválasztása"
|
380 |
+
|
381 |
+
#: ../image-watermark.php:927
|
382 |
+
msgid "Image protection"
|
383 |
+
msgstr "Kép védelem"
|
384 |
+
|
385 |
+
#: ../image-watermark.php:930
|
386 |
+
msgid "Disable right mouse click on images"
|
387 |
+
msgstr "Kikapcsolja a jobb egér kattintást a képeknél"
|
388 |
+
|
389 |
+
#: ../image-watermark.php:934
|
390 |
+
msgid "Prevent drag and drop"
|
391 |
+
msgstr "Drag and drop megakadályozása"
|
392 |
+
|
393 |
+
#: ../image-watermark.php:938
|
394 |
+
msgid "Enable image protection for logged-in users also"
|
395 |
+
msgstr "Engedélyezze a kép védelemet a bejelentkezett felhasználóknál is"
|
396 |
+
|
397 |
+
#: ../image-watermark.php:943
|
398 |
+
msgid "Save Changes"
|
399 |
+
msgstr "Változatatások mentése"
|
400 |
+
|
401 |
+
#: ../image-watermark.php:944
|
402 |
+
msgid "Reset to defaults"
|
403 |
+
msgstr "Alapértékek újraindítása"
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ 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:
|
7 |
-
Stable tag: 1.
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
@@ -39,6 +39,7 @@ For more information, check out plugin page at [dFactory](http://www.dfactory.eu
|
|
39 |
* Arabic - by Hassan Hisham
|
40 |
* Chinese - by [xiaoyaole](http://www.luoxiao123.cn/)
|
41 |
* German - by Matthias Siebler
|
|
|
42 |
* Polish - by Bartosz Arendt
|
43 |
* Russian - by [Sly](http://wpguru.ru)
|
44 |
|
@@ -61,6 +62,12 @@ No questions yet.
|
|
61 |
|
62 |
== Changelog ==
|
63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
= 1.3.3 =
|
65 |
* New: RUssian translation, thanks to [Sly](http://wpguru.ru)
|
66 |
|
@@ -132,5 +139,5 @@ Initial release
|
|
132 |
|
133 |
== Upgrade Notice ==
|
134 |
|
135 |
-
= 1.
|
136 |
-
* New:
|
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: 4.1
|
7 |
+
Stable tag: 1.4.1
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
39 |
* Arabic - by Hassan Hisham
|
40 |
* Chinese - by [xiaoyaole](http://www.luoxiao123.cn/)
|
41 |
* German - by Matthias Siebler
|
42 |
+
* Hungarian - by Meszaros Tamas
|
43 |
* Polish - by Bartosz Arendt
|
44 |
* Russian - by [Sly](http://wpguru.ru)
|
45 |
|
62 |
|
63 |
== Changelog ==
|
64 |
|
65 |
+
= 1.4.1 =
|
66 |
+
* New: Hungarian translation, thanks to Meszaros Tamas
|
67 |
+
|
68 |
+
= 1.4.0 =
|
69 |
+
* New: Option to donate this plugin :)
|
70 |
+
|
71 |
= 1.3.3 =
|
72 |
* New: RUssian translation, thanks to [Sly](http://wpguru.ru)
|
73 |
|
139 |
|
140 |
== Upgrade Notice ==
|
141 |
|
142 |
+
= 1.4.1 =
|
143 |
+
* New: Hungarian translation, thanks to Meszaros Tamas
|