Version Description
- Bug fixes.
- Hungarian translation.
Download this release
Release Info
Developer | syammohanm |
Plugin | WPFront Notification Bar |
Version | 1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.4 to 1.4.1
- classes/base/class-wpfront-base.php +1 -1
- classes/class-wpfront-notification-bar.php +8 -4
- languages/wpfront-notification-bar-hu_HU.mo +0 -0
- languages/wpfront-notification-bar-hu_HU/readme.txt +1 -0
- languages/wpfront-notification-bar-hu_HU/wpfront-notification-bar-hu_HU.mo +0 -0
- languages/wpfront-notification-bar-hu_HU/wpfront-notification-bar-hu_HU.po +503 -0
- readme.txt +10 -2
- templates/options-template.php +2 -2
- wpfront-notification-bar.php +1 -1
classes/base/class-wpfront-base.php
CHANGED
@@ -175,7 +175,7 @@ if (!class_exists('WPFront_Base')) {
|
|
175 |
|
|
176 |
<a href="http://wordpress.org/support/view/plugin-reviews/' . $this->plugin_slug . '" target="_blank">' . $this->__('Write Review') . '</a>
|
177 |
|
|
178 |
-
<a href="
|
179 |
|
|
180 |
<a href="http://wpfront.com/donate/" target="_blank">' . $this->__('Buy me a Beer or Coffee') . '</a>
|
181 |
';
|
175 |
|
|
176 |
<a href="http://wordpress.org/support/view/plugin-reviews/' . $this->plugin_slug . '" target="_blank">' . $this->__('Write Review') . '</a>
|
177 |
|
|
178 |
+
<a href="http://wpfront.com/contact/" target="_blank">' . $this->__('Contact Me') . '</a>
|
179 |
|
|
180 |
<a href="http://wpfront.com/donate/" target="_blank">' . $this->__('Buy me a Beer or Coffee') . '</a>
|
181 |
';
|
classes/class-wpfront-notification-bar.php
CHANGED
@@ -36,7 +36,7 @@ if (!class_exists('WPFront_Notification_Bar')) {
|
|
36 |
class WPFront_Notification_Bar extends WPFront_Base {
|
37 |
|
38 |
//Constants
|
39 |
-
const VERSION = '1.4';
|
40 |
const OPTIONS_GROUP_NAME = 'wpfront-notification-bar-options-group';
|
41 |
const OPTION_NAME = 'wpfront-notification-bar-options';
|
42 |
const PLUGIN_SLUG = 'wpfront-notification-bar';
|
@@ -116,7 +116,7 @@ if (!class_exists('WPFront_Notification_Bar')) {
|
|
116 |
//options page styles
|
117 |
public function enqueue_options_styles() {
|
118 |
$this->enqueue_styles();
|
119 |
-
|
120 |
$styleRoot = $this->pluginURLRoot . 'jquery-plugins/jquery-ui/smoothness/';
|
121 |
wp_enqueue_style('jquery.ui.smoothness.datepicker', $styleRoot . 'jquery-ui-1.10.4.custom.min.css', array(), self::VERSION);
|
122 |
|
@@ -284,7 +284,7 @@ if (!class_exists('WPFront_Notification_Bar')) {
|
|
284 |
}
|
285 |
if ($this->options->display_pages() == 3) {
|
286 |
if ($ID !== FALSE && $type !== FALSE) {
|
287 |
-
if (
|
288 |
return FALSE;
|
289 |
else
|
290 |
return TRUE;
|
@@ -293,7 +293,7 @@ if (!class_exists('WPFront_Notification_Bar')) {
|
|
293 |
}
|
294 |
if ($this->options->display_pages() == 4) {
|
295 |
if ($ID !== FALSE && $type !== FALSE) {
|
296 |
-
if (
|
297 |
return TRUE;
|
298 |
else
|
299 |
return FALSE;
|
@@ -305,6 +305,10 @@ if (!class_exists('WPFront_Notification_Bar')) {
|
|
305 |
return TRUE;
|
306 |
}
|
307 |
|
|
|
|
|
|
|
|
|
308 |
protected function enabled() {
|
309 |
if ($this->options->enabled()) {
|
310 |
return $this->filter();
|
36 |
class WPFront_Notification_Bar extends WPFront_Base {
|
37 |
|
38 |
//Constants
|
39 |
+
const VERSION = '1.4.1';
|
40 |
const OPTIONS_GROUP_NAME = 'wpfront-notification-bar-options-group';
|
41 |
const OPTION_NAME = 'wpfront-notification-bar-options';
|
42 |
const PLUGIN_SLUG = 'wpfront-notification-bar';
|
116 |
//options page styles
|
117 |
public function enqueue_options_styles() {
|
118 |
$this->enqueue_styles();
|
119 |
+
|
120 |
$styleRoot = $this->pluginURLRoot . 'jquery-plugins/jquery-ui/smoothness/';
|
121 |
wp_enqueue_style('jquery.ui.smoothness.datepicker', $styleRoot . 'jquery-ui-1.10.4.custom.min.css', array(), self::VERSION);
|
122 |
|
284 |
}
|
285 |
if ($this->options->display_pages() == 3) {
|
286 |
if ($ID !== FALSE && $type !== FALSE) {
|
287 |
+
if ($this->filter_pages_contains($this->options->include_pages(), $type . '.' . $ID) === FALSE)
|
288 |
return FALSE;
|
289 |
else
|
290 |
return TRUE;
|
293 |
}
|
294 |
if ($this->options->display_pages() == 4) {
|
295 |
if ($ID !== FALSE && $type !== FALSE) {
|
296 |
+
if ($this->filter_pages_contains($this->options->exclude_pages(), $type . '.' . $ID) === FALSE)
|
297 |
return TRUE;
|
298 |
else
|
299 |
return FALSE;
|
305 |
return TRUE;
|
306 |
}
|
307 |
|
308 |
+
public function filter_pages_contains($list, $key) {
|
309 |
+
return strpos(',' . $list . ',', ',' . $key . ',');
|
310 |
+
}
|
311 |
+
|
312 |
protected function enabled() {
|
313 |
if ($this->options->enabled()) {
|
314 |
return $this->filter();
|
languages/wpfront-notification-bar-hu_HU.mo
ADDED
Binary file
|
languages/wpfront-notification-bar-hu_HU/readme.txt
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
Contributor: Botfai Tibor <gidano.hu>
|
languages/wpfront-notification-bar-hu_HU/wpfront-notification-bar-hu_HU.mo
ADDED
Binary file
|
languages/wpfront-notification-bar-hu_HU/wpfront-notification-bar-hu_HU.po
ADDED
@@ -0,0 +1,503 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WPFront Notification Bar\n"
|
4 |
+
"POT-Creation-Date: 2014-03-12 17:05-0700\n"
|
5 |
+
"PO-Revision-Date: 2014-06-09 11:12+0100\n"
|
6 |
+
"Last-Translator: gidano <gidano@gmail.com>\n"
|
7 |
+
"Language-Team: WPFront <contact@wpfront.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.6.5\n"
|
12 |
+
"X-Poedit-Basepath: .\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
+
"Language: hu_HU\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
|
19 |
+
#: ../classes/base/class-wpfront-base-menu.php:52
|
20 |
+
msgid "Name"
|
21 |
+
msgstr "Név"
|
22 |
+
|
23 |
+
#: ../classes/base/class-wpfront-base-menu.php:53
|
24 |
+
msgid "Version"
|
25 |
+
msgstr "Verzió"
|
26 |
+
|
27 |
+
#: ../classes/base/class-wpfront-base-menu.php:54
|
28 |
+
msgid "Rating"
|
29 |
+
msgstr "Értékelés"
|
30 |
+
|
31 |
+
#: ../classes/base/class-wpfront-base-menu.php:55
|
32 |
+
msgid "Description"
|
33 |
+
msgstr "Leírás"
|
34 |
+
|
35 |
+
#: ../classes/base/class-wpfront-base-menu.php:69
|
36 |
+
#, php-format
|
37 |
+
msgid "based on %s rating(s)"
|
38 |
+
msgstr "%s értékelés alapján"
|
39 |
+
|
40 |
+
#: ../classes/base/class-wpfront-base-menu.php:105
|
41 |
+
msgid "Unable to communicate with WordPress.org"
|
42 |
+
msgstr "Nem lehet kommunikálni a WordPress.org-al"
|
43 |
+
|
44 |
+
#: ../classes/base/class-wpfront-base-menu.php:123
|
45 |
+
#: ../classes/base/class-wpfront-base-menu.php:217
|
46 |
+
msgid "WPFront Plugins"
|
47 |
+
msgstr "WPFront Plugins"
|
48 |
+
|
49 |
+
#: ../classes/base/class-wpfront-base-menu.php:147
|
50 |
+
#, php-format
|
51 |
+
msgid "By %s"
|
52 |
+
msgstr "Szerző %s"
|
53 |
+
|
54 |
+
#: ../classes/base/class-wpfront-base-menu.php:154
|
55 |
+
#, php-format
|
56 |
+
msgid "More information about %s"
|
57 |
+
msgstr "További információ: %s"
|
58 |
+
|
59 |
+
#: ../classes/base/class-wpfront-base-menu.php:154
|
60 |
+
msgid "Details"
|
61 |
+
msgstr "Részletek"
|
62 |
+
|
63 |
+
#: ../classes/base/class-wpfront-base-menu.php:163
|
64 |
+
#, php-format
|
65 |
+
msgid "Install %s"
|
66 |
+
msgstr "%s telepítése"
|
67 |
+
|
68 |
+
#: ../classes/base/class-wpfront-base-menu.php:163
|
69 |
+
msgid "Install Now"
|
70 |
+
msgstr "Telepítés most"
|
71 |
+
|
72 |
+
#: ../classes/base/class-wpfront-base-menu.php:168
|
73 |
+
#, php-format
|
74 |
+
msgid "Update to version %s"
|
75 |
+
msgstr "Frissítés %s verzióra"
|
76 |
+
|
77 |
+
#: ../classes/base/class-wpfront-base-menu.php:168
|
78 |
+
msgid "Update Now"
|
79 |
+
msgstr "Frissítés most"
|
80 |
+
|
81 |
+
#: ../classes/base/class-wpfront-base-menu.php:173
|
82 |
+
msgid "This plugin is already installed and is up to date"
|
83 |
+
msgstr "Ez a plugin már telepítve van, és naprakész"
|
84 |
+
|
85 |
+
#: ../classes/base/class-wpfront-base-menu.php:173
|
86 |
+
msgid "Installed"
|
87 |
+
msgstr "Telepítve"
|
88 |
+
|
89 |
+
#: ../classes/base/class-wpfront-base-menu.php:175
|
90 |
+
#: ../classes/base/class-wpfront-base.php:105
|
91 |
+
msgid "Settings"
|
92 |
+
msgstr "Beállítások"
|
93 |
+
|
94 |
+
#: ../classes/base/class-wpfront-base-menu.php:177
|
95 |
+
msgid "Activate"
|
96 |
+
msgstr "Aktiválás"
|
97 |
+
|
98 |
+
#: ../classes/base/class-wpfront-base-menu.php:199
|
99 |
+
msgid "Feedback"
|
100 |
+
msgstr "Visszajelzés"
|
101 |
+
|
102 |
+
#: ../classes/base/class-wpfront-base-menu.php:216
|
103 |
+
msgid "WPFront"
|
104 |
+
msgstr "WPFront"
|
105 |
+
|
106 |
+
#: ../classes/base/class-wpfront-base-menu.php:217
|
107 |
+
msgid "All Plugins"
|
108 |
+
msgstr "Összes Plugin"
|
109 |
+
|
110 |
+
#: ../classes/base/class-wpfront-base.php:130
|
111 |
+
msgid "You do not have sufficient permissions to access this page."
|
112 |
+
msgstr "Nem megfelelő a jogosultsága az oldal megtekintéséhez."
|
113 |
+
|
114 |
+
#: ../classes/base/class-wpfront-base.php:150
|
115 |
+
msgid ""
|
116 |
+
"If you have a caching plugin, clear the cache for the new settings to take "
|
117 |
+
"effect."
|
118 |
+
msgstr ""
|
119 |
+
"Ha van egy gyorsítótárazási pluginod, töröld a gyorsítótárat az új "
|
120 |
+
"beállítások életbe léptetéséhez."
|
121 |
+
|
122 |
+
#: ../classes/base/class-wpfront-base.php:168
|
123 |
+
msgid "Settings Description"
|
124 |
+
msgstr "Beállítások ismertetése"
|
125 |
+
|
126 |
+
#: ../classes/base/class-wpfront-base.php:170
|
127 |
+
msgid "Plugin FAQ"
|
128 |
+
msgstr "Plugin GyIK"
|
129 |
+
|
130 |
+
#: ../classes/base/class-wpfront-base.php:172
|
131 |
+
msgid "Feature Request"
|
132 |
+
msgstr "Szolgáltatás kérése"
|
133 |
+
|
134 |
+
#: ../classes/base/class-wpfront-base.php:174
|
135 |
+
msgid "Report Bug"
|
136 |
+
msgstr "Hibajelentés"
|
137 |
+
|
138 |
+
#: ../classes/base/class-wpfront-base.php:176
|
139 |
+
msgid "Write Review"
|
140 |
+
msgstr "Írja meg véleményét!"
|
141 |
+
|
142 |
+
#: ../classes/base/class-wpfront-base.php:178
|
143 |
+
msgid "Contact Me (syam@wpfront.com)"
|
144 |
+
msgstr "Elérésem, (syam@wpfront.com)"
|
145 |
+
|
146 |
+
#: ../classes/base/class-wpfront-base.php:180
|
147 |
+
msgid "Buy me a Beer or Coffee"
|
148 |
+
msgstr "Hívj meg egy kv-ra vagy sörre!"
|
149 |
+
|
150 |
+
#: ../classes/base/class-wpfront-base.php:197
|
151 |
+
msgid "Save Changes"
|
152 |
+
msgstr "Változások mentése"
|
153 |
+
|
154 |
+
#: ../classes/class-wpfront-notification-bar-options.php:41
|
155 |
+
msgid "Enabled"
|
156 |
+
msgstr "Engedélyezve"
|
157 |
+
|
158 |
+
#: ../classes/class-wpfront-notification-bar-options.php:42
|
159 |
+
msgid "Position"
|
160 |
+
msgstr "Elhelyezkedés"
|
161 |
+
|
162 |
+
#: ../classes/class-wpfront-notification-bar-options.php:43
|
163 |
+
msgid "Bar Height"
|
164 |
+
msgstr "Sáv magassága"
|
165 |
+
|
166 |
+
#: ../classes/class-wpfront-notification-bar-options.php:44
|
167 |
+
msgid "Message Text"
|
168 |
+
msgstr "Üzenet szövege"
|
169 |
+
|
170 |
+
#: ../classes/class-wpfront-notification-bar-options.php:45
|
171 |
+
msgid "Display After"
|
172 |
+
msgstr "Megjelenés"
|
173 |
+
|
174 |
+
#: ../classes/class-wpfront-notification-bar-options.php:46
|
175 |
+
msgid "Animation Duration"
|
176 |
+
msgstr "Animáció időtartama"
|
177 |
+
|
178 |
+
#: ../classes/class-wpfront-notification-bar-options.php:47
|
179 |
+
msgid "Display Close Button"
|
180 |
+
msgstr "Bezárés gomb jelenjen meg"
|
181 |
+
|
182 |
+
#: ../classes/class-wpfront-notification-bar-options.php:48
|
183 |
+
msgid "Auto Close After"
|
184 |
+
msgstr "Auto bezárás"
|
185 |
+
|
186 |
+
#: ../classes/class-wpfront-notification-bar-options.php:49
|
187 |
+
msgid "Display Button"
|
188 |
+
msgstr "Gomb megjelenítés"
|
189 |
+
|
190 |
+
#: ../classes/class-wpfront-notification-bar-options.php:50
|
191 |
+
msgid "Button Text"
|
192 |
+
msgstr "Gomb szöveg"
|
193 |
+
|
194 |
+
#: ../classes/class-wpfront-notification-bar-options.php:51
|
195 |
+
msgid "Button Action"
|
196 |
+
msgstr "Gomb művelet"
|
197 |
+
|
198 |
+
#: ../classes/class-wpfront-notification-bar-options.php:52
|
199 |
+
msgid "Open URL:"
|
200 |
+
msgstr "URL megnyitás"
|
201 |
+
|
202 |
+
#: ../classes/class-wpfront-notification-bar-options.php:53
|
203 |
+
msgid "Open URL in new tab/window"
|
204 |
+
msgstr "URL megnyitás új fülön/ablakban"
|
205 |
+
|
206 |
+
#: ../classes/class-wpfront-notification-bar-options.php:54
|
207 |
+
msgid "Execute JavaScript"
|
208 |
+
msgstr "JavaScript végrehajtása"
|
209 |
+
|
210 |
+
#: ../classes/class-wpfront-notification-bar-options.php:55
|
211 |
+
msgid "Close Bar on Button Click"
|
212 |
+
msgstr "Sáv bezárása gombra kattintás"
|
213 |
+
|
214 |
+
#: ../classes/class-wpfront-notification-bar-options.php:56
|
215 |
+
msgid "Display Shadow"
|
216 |
+
msgstr "Árnyék megjelenés"
|
217 |
+
|
218 |
+
#: ../classes/class-wpfront-notification-bar-options.php:57
|
219 |
+
msgid "Fixed at Position"
|
220 |
+
msgstr "Rögzített pozíció"
|
221 |
+
|
222 |
+
#: ../classes/class-wpfront-notification-bar-options.php:58
|
223 |
+
msgid "Message Text Color"
|
224 |
+
msgstr "Üzenet szöveg szín"
|
225 |
+
|
226 |
+
#: ../classes/class-wpfront-notification-bar-options.php:59
|
227 |
+
#: ../classes/class-wpfront-notification-bar-options.php:61
|
228 |
+
msgid "From Color"
|
229 |
+
msgstr "Kezdő szín"
|
230 |
+
|
231 |
+
#: ../classes/class-wpfront-notification-bar-options.php:60
|
232 |
+
#: ../classes/class-wpfront-notification-bar-options.php:62
|
233 |
+
msgid "To Color"
|
234 |
+
msgstr "Befejező szín"
|
235 |
+
|
236 |
+
#: ../classes/class-wpfront-notification-bar-options.php:63
|
237 |
+
msgid "Button Text Color"
|
238 |
+
msgstr "Gomb szöveg szín"
|
239 |
+
|
240 |
+
#: ../classes/class-wpfront-notification-bar-options.php:64
|
241 |
+
msgid "Display on Pages"
|
242 |
+
msgstr "Hol jelenjen meg"
|
243 |
+
|
244 |
+
#: ../classes/class-wpfront-notification-bar-options.php:67
|
245 |
+
msgid "Display Reopen Button"
|
246 |
+
msgstr "Újranyitó gomb megjelenítése"
|
247 |
+
|
248 |
+
#: ../classes/class-wpfront-notification-bar-options.php:68
|
249 |
+
msgid "Reopen Button Color"
|
250 |
+
msgstr "Újranyitó gomb színe"
|
251 |
+
|
252 |
+
#: ../classes/class-wpfront-notification-bar-options.php:69
|
253 |
+
msgid "Keep Closed"
|
254 |
+
msgstr "Tartsa bezárva"
|
255 |
+
|
256 |
+
#: ../classes/class-wpfront-notification-bar-options.php:70
|
257 |
+
msgid "Keep Closed For"
|
258 |
+
msgstr "Bezárva tartás"
|
259 |
+
|
260 |
+
#: ../classes/class-wpfront-notification-bar-options.php:71
|
261 |
+
msgid "Position Offset"
|
262 |
+
msgstr "Pozíció eltolás"
|
263 |
+
|
264 |
+
#: ../classes/class-wpfront-notification-bar-options.php:72
|
265 |
+
msgid "Custom CSS"
|
266 |
+
msgstr "Egyedi CSS"
|
267 |
+
|
268 |
+
#: ../classes/class-wpfront-notification-bar-options.php:73
|
269 |
+
msgid "Close Button Color"
|
270 |
+
msgstr "Bezárás gomb színe"
|
271 |
+
|
272 |
+
#: ../classes/class-wpfront-notification-bar-options.php:76
|
273 |
+
msgid "Display for User Roles"
|
274 |
+
msgstr "Ki számára látható"
|
275 |
+
|
276 |
+
#: ../classes/class-wpfront-notification-bar-options.php:78
|
277 |
+
msgid "Display on Scroll"
|
278 |
+
msgstr "Megjelenés görgetéskor"
|
279 |
+
|
280 |
+
#: ../classes/class-wpfront-notification-bar-options.php:79
|
281 |
+
msgid "Scroll Offset"
|
282 |
+
msgstr "Görgetés eltolás"
|
283 |
+
|
284 |
+
#: ../classes/class-wpfront-notification-bar-options.php:80
|
285 |
+
msgid "Start Date"
|
286 |
+
msgstr "Indítás dátuma"
|
287 |
+
|
288 |
+
#: ../classes/class-wpfront-notification-bar-options.php:81
|
289 |
+
msgid "End Date"
|
290 |
+
msgstr "Leállás dátuma"
|
291 |
+
|
292 |
+
#: ../classes/class-wpfront-notification-bar.php:62
|
293 |
+
msgid "WPFront Notification Bar"
|
294 |
+
msgstr "WPFront Notification Bar"
|
295 |
+
|
296 |
+
#: ../classes/class-wpfront-notification-bar.php:62
|
297 |
+
msgid "Notification Bar"
|
298 |
+
msgstr "Értesítési sáv"
|
299 |
+
|
300 |
+
#: ../classes/class-wpfront-notification-bar.php:176
|
301 |
+
#: ../classes/class-wpfront-notification-bar.php:180
|
302 |
+
msgid "[Page]"
|
303 |
+
msgstr "[Oldal]"
|
304 |
+
|
305 |
+
#: ../classes/class-wpfront-notification-bar.php:176
|
306 |
+
msgid "Home"
|
307 |
+
msgstr "Kezdőlap"
|
308 |
+
|
309 |
+
#: ../classes/class-wpfront-notification-bar.php:185
|
310 |
+
msgid "[Post]"
|
311 |
+
msgstr "[Post]"
|
312 |
+
|
313 |
+
#: ../templates/options-template.php:32
|
314 |
+
msgid "WPFront Notification Bar Settings"
|
315 |
+
msgstr "WPFront Notification Bar Beállítások"
|
316 |
+
|
317 |
+
#: ../templates/options-template.php:34
|
318 |
+
msgid "Display"
|
319 |
+
msgstr "Megjelenés"
|
320 |
+
|
321 |
+
#: ../templates/options-template.php:50
|
322 |
+
msgid "Top"
|
323 |
+
msgstr "Felül"
|
324 |
+
|
325 |
+
#: ../templates/options-template.php:51
|
326 |
+
msgid "Bottom"
|
327 |
+
msgstr "Alul"
|
328 |
+
|
329 |
+
#: ../templates/options-template.php:60
|
330 |
+
msgid "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
331 |
+
msgstr "[Ragadós sáv, a sáv pozícióban marad a görgetéstől függetlenül.]"
|
332 |
+
|
333 |
+
#: ../templates/options-template.php:68
|
334 |
+
msgid "[Displays the bar on window scroll.]"
|
335 |
+
msgstr "[Megjeleníti a sávot az ablak görgetésekor.]"
|
336 |
+
|
337 |
+
#: ../templates/options-template.php:76 ../templates/options-template.php:84
|
338 |
+
#: ../templates/options-template.php:92
|
339 |
+
msgid "px"
|
340 |
+
msgstr "px"
|
341 |
+
|
342 |
+
#: ../templates/options-template.php:76
|
343 |
+
msgid "Number of pixels to be scrolled before the bar appears."
|
344 |
+
msgstr "Görgetett pixelek száma, mielőtt a sáv megjelenik."
|
345 |
+
|
346 |
+
#: ../templates/options-template.php:84
|
347 |
+
msgid "Set 0px to auto fit contents."
|
348 |
+
msgstr "0px-re állítva a tartalom auto méretezése"
|
349 |
+
|
350 |
+
#: ../templates/options-template.php:92
|
351 |
+
msgid ""
|
352 |
+
"(Top bar only) If you find the bar overlapping, try increasing this value. "
|
353 |
+
"(eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
354 |
+
msgstr ""
|
355 |
+
"(Top bar esetén) Ha úgy látja, a sávok egymást átfedik, próbálja meg növelni "
|
356 |
+
"ezt az értéket. (pl. WordPress 3.8: Twenty Fourteen téma, állítsa 48px-re)"
|
357 |
+
|
358 |
+
#: ../templates/options-template.php:100 ../templates/options-template.php:108
|
359 |
+
#: ../templates/options-template.php:124
|
360 |
+
msgid "second(s)"
|
361 |
+
msgstr "mp"
|
362 |
+
|
363 |
+
#: ../templates/options-template.php:100
|
364 |
+
msgid ""
|
365 |
+
"Set 0 second(s) to display immediately. Do not work in \"Display on Scroll\" "
|
366 |
+
"mode."
|
367 |
+
msgstr ""
|
368 |
+
"0 mp-re állítva azonnal megjelenik. Nem működik \"Megjelenés görgetéskor\" "
|
369 |
+
"módban."
|
370 |
+
|
371 |
+
#: ../templates/options-template.php:108
|
372 |
+
msgid "Set 0 second(s) for no animation."
|
373 |
+
msgstr "Állítsa 0 mp-re és nincs animálás"
|
374 |
+
|
375 |
+
#: ../templates/options-template.php:116
|
376 |
+
msgid "[Displays a close button at the top right corner of the bar.]"
|
377 |
+
msgstr "[Megjelenít egy bezárás gombot a sáv jobb felső sarkában]"
|
378 |
+
|
379 |
+
#: ../templates/options-template.php:124
|
380 |
+
msgid ""
|
381 |
+
"Set 0 second(s) to disable auto close. Do not work in \"Display on Scroll\" "
|
382 |
+
"mode."
|
383 |
+
msgstr ""
|
384 |
+
"0 mp-re állítva letiltja az automatikus bezárást. Ne működik \"Megjelenés "
|
385 |
+
"görgetéskor\" módban."
|
386 |
+
|
387 |
+
#: ../templates/options-template.php:140
|
388 |
+
msgid "A reopen button will be displayed after the bar is closed."
|
389 |
+
msgstr "Az újranyitás gomb megjelenítése miután a sáv bezárul."
|
390 |
+
|
391 |
+
#: ../templates/options-template.php:148
|
392 |
+
msgid "Once closed, bar will display closed on other pages."
|
393 |
+
msgstr "Ha bezárja, a sáv más oldalakon is zártan jelenik meg."
|
394 |
+
|
395 |
+
#: ../templates/options-template.php:156
|
396 |
+
msgid "day(s)"
|
397 |
+
msgstr "nap"
|
398 |
+
|
399 |
+
#: ../templates/options-template.php:156
|
400 |
+
msgid ""
|
401 |
+
"Bar will be kept closed for the number of days specified from last closed "
|
402 |
+
"date."
|
403 |
+
msgstr ""
|
404 |
+
"A sávot bezárva tarja meghatározott számú napig az autolsó bezárás "
|
405 |
+
"időpontjától."
|
406 |
+
|
407 |
+
#: ../templates/options-template.php:161
|
408 |
+
msgid "Content"
|
409 |
+
msgstr "Tartalom"
|
410 |
+
|
411 |
+
#: ../templates/options-template.php:170
|
412 |
+
msgid "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
413 |
+
msgstr "[HTML tagek használata megengedett. például <br /> a sortöréshez.]"
|
414 |
+
|
415 |
+
#: ../templates/options-template.php:178
|
416 |
+
msgid "[Displays a button next to the message.]"
|
417 |
+
msgstr "[Gomb megjelenés a következő szöveggel.]"
|
418 |
+
|
419 |
+
#: ../templates/options-template.php:223
|
420 |
+
msgid "Filter"
|
421 |
+
msgstr "Szűrés"
|
422 |
+
|
423 |
+
#: ../templates/options-template.php:230 ../templates/options-template.php:238
|
424 |
+
msgid "[YYYY-MM-DD]"
|
425 |
+
msgstr "[YYYY-MM-DD]"
|
426 |
+
|
427 |
+
#: ../templates/options-template.php:248
|
428 |
+
msgid "All pages."
|
429 |
+
msgstr "Összes oldal."
|
430 |
+
|
431 |
+
#: ../templates/options-template.php:253
|
432 |
+
msgid "Only in landing page."
|
433 |
+
msgstr "Csak nyitóoldal."
|
434 |
+
|
435 |
+
#: ../templates/options-template.php:253
|
436 |
+
msgid "[The first page they visit on your website.]"
|
437 |
+
msgstr "[Csak a honlap első meglátogatott oldalán.]"
|
438 |
+
|
439 |
+
#: ../templates/options-template.php:258
|
440 |
+
msgid "Include in following pages"
|
441 |
+
msgstr "Beleértve a következő oldalakat"
|
442 |
+
|
443 |
+
#: ../templates/options-template.php:278
|
444 |
+
msgid "Exclude in following pages"
|
445 |
+
msgstr "Kivéve a következő oldalakon"
|
446 |
+
|
447 |
+
#: ../templates/options-template.php:305
|
448 |
+
msgid "All users."
|
449 |
+
msgstr "Minden felhasználó."
|
450 |
+
|
451 |
+
#: ../templates/options-template.php:310
|
452 |
+
msgid "All logged in users."
|
453 |
+
msgstr "Minden bejelentkezett felhasználó."
|
454 |
+
|
455 |
+
#: ../templates/options-template.php:315
|
456 |
+
msgid "Guest users. [Non-logged in users]"
|
457 |
+
msgstr "Vendég [Nem bejelentkezett] felhasználók."
|
458 |
+
|
459 |
+
#: ../templates/options-template.php:320
|
460 |
+
msgid "For following user roles"
|
461 |
+
msgstr "A következő felhasználói körök"
|
462 |
+
|
463 |
+
#: ../templates/options-template.php:340
|
464 |
+
msgid "[No Role]"
|
465 |
+
msgstr "[Szerep nélküli]"
|
466 |
+
|
467 |
+
#: ../templates/options-template.php:346
|
468 |
+
msgid "[Guest]"
|
469 |
+
msgstr "[Vendég]"
|
470 |
+
|
471 |
+
#: ../templates/options-template.php:354
|
472 |
+
msgid "Color"
|
473 |
+
msgstr "Szín"
|
474 |
+
|
475 |
+
#: ../templates/options-template.php:358
|
476 |
+
msgid "Bar Color"
|
477 |
+
msgstr "Sáv színe"
|
478 |
+
|
479 |
+
#: ../templates/options-template.php:369 ../templates/options-template.php:394
|
480 |
+
msgid "[Select two different colors to create a gradient.]"
|
481 |
+
msgstr "[Válasszon ki két eltérő színt színátmenet létrehozásához.]"
|
482 |
+
|
483 |
+
#: ../templates/options-template.php:383
|
484 |
+
msgid "Button Color"
|
485 |
+
msgstr "Gomb szín"
|
486 |
+
|
487 |
+
#: ../templates/options-template.php:432
|
488 |
+
msgid "[Normal, Hover, X]"
|
489 |
+
msgstr "[Normal, Hover, X]"
|
490 |
+
|
491 |
+
#: ../templates/options-template.php:437
|
492 |
+
msgid "CSS"
|
493 |
+
msgstr "CSS"
|
494 |
+
|
495 |
+
#: ../templates/options-template.php:453
|
496 |
+
msgid "Plugin Ideas"
|
497 |
+
msgstr "Plugin ötletek"
|
498 |
+
|
499 |
+
msgid "Animate Display"
|
500 |
+
msgstr "Animate Display"
|
501 |
+
|
502 |
+
msgid "Animate Display Delay"
|
503 |
+
msgstr "Animate Display Delay"
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: syammohanm
|
|
3 |
Donate link: http://wpfront.com/donate/
|
4 |
Tags: notification bar, wordpress notification bar, top bar, bottom bar, notification, bar, quick bar, fixed bar, sticky bar, message bar, message, floating bar, notice, sticky header, special offer, discount offer, offer, important, attention bar, highlight bar, popup bar, hellobar, heads up, heads up bar, headsup, headsupbar, popup, Toolbar
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 1.4
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -35,6 +35,7 @@ Visit [WPFront Notification Bar Settings](http://wpfront.com/notification-bar-pl
|
|
35 |
|
36 |
Localization Contributors:
|
37 |
<li>[Anders Lind](http://erding-mallards.de) (German) </li>
|
|
|
38 |
|
39 |
== Installation ==
|
40 |
|
@@ -67,6 +68,10 @@ The new version(1.3) allows you to filter the bar based on user roles. In this c
|
|
67 |
|
68 |
== Changelog ==
|
69 |
|
|
|
|
|
|
|
|
|
70 |
= 1.4 =
|
71 |
* Display on Scroll option added.
|
72 |
* Date filters added.
|
@@ -99,6 +104,9 @@ The new version(1.3) allows you to filter the bar based on user roles. In this c
|
|
99 |
|
100 |
== Upgrade Notice ==
|
101 |
|
|
|
|
|
|
|
102 |
= 1.4 =
|
103 |
* Now you can set it to display on scroll.
|
104 |
* Date filters available now.
|
3 |
Donate link: http://wpfront.com/donate/
|
4 |
Tags: notification bar, wordpress notification bar, top bar, bottom bar, notification, bar, quick bar, fixed bar, sticky bar, message bar, message, floating bar, notice, sticky header, special offer, discount offer, offer, important, attention bar, highlight bar, popup bar, hellobar, heads up, heads up bar, headsup, headsupbar, popup, Toolbar
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 4.0
|
7 |
+
Stable tag: 1.4.1
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
35 |
|
36 |
Localization Contributors:
|
37 |
<li>[Anders Lind](http://erding-mallards.de) (German) </li>
|
38 |
+
<li>[Botfai Tibor](http://gidano.hu) (Hungarian) </li>
|
39 |
|
40 |
== Installation ==
|
41 |
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 1.4.1 =
|
72 |
+
* Bug fixes.
|
73 |
+
* Hungarian translation.
|
74 |
+
|
75 |
= 1.4 =
|
76 |
* Display on Scroll option added.
|
77 |
* Date filters added.
|
104 |
|
105 |
== Upgrade Notice ==
|
106 |
|
107 |
+
= 1.4.1 =
|
108 |
+
* A couple of bug fixes.
|
109 |
+
|
110 |
= 1.4 =
|
111 |
* Now you can set it to display on scroll.
|
112 |
* Date filters available now.
|
templates/options-template.php
CHANGED
@@ -265,7 +265,7 @@
|
|
265 |
?>
|
266 |
<div class="page-div">
|
267 |
<label>
|
268 |
-
<input type="checkbox" value="<?php echo $key; ?>" <?php echo
|
269 |
<?php echo $value; ?>
|
270 |
</label>
|
271 |
</div>
|
@@ -285,7 +285,7 @@
|
|
285 |
?>
|
286 |
<div class="page-div">
|
287 |
<label>
|
288 |
-
<input type="checkbox" value="<?php echo $key; ?>" <?php echo
|
289 |
<?php echo $value; ?>
|
290 |
</label>
|
291 |
</div>
|
265 |
?>
|
266 |
<div class="page-div">
|
267 |
<label>
|
268 |
+
<input type="checkbox" value="<?php echo $key; ?>" <?php echo $this->filter_pages_contains($this->options->include_pages(), $key) === FALSE ? '' : 'checked'; ?> />
|
269 |
<?php echo $value; ?>
|
270 |
</label>
|
271 |
</div>
|
285 |
?>
|
286 |
<div class="page-div">
|
287 |
<label>
|
288 |
+
<input type="checkbox" value="<?php echo $key; ?>" <?php echo $this->filter_pages_contains($this->options->exclude_pages(), $key) === FALSE ? '' : 'checked'; ?> />
|
289 |
<?php echo $value; ?>
|
290 |
</label>
|
291 |
</div>
|
wpfront-notification-bar.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WPFront Notification Bar
|
4 |
* Plugin URI: http://wpfront.com/notification-bar-plugin/
|
5 |
* Description: Easily lets you create a bar on top or bottom to display a notification.
|
6 |
-
* Version: 1.4
|
7 |
* Author: Syam Mohan
|
8 |
* Author URI: http://wpfront.com
|
9 |
* License: GPL v3
|
3 |
* Plugin Name: WPFront Notification Bar
|
4 |
* Plugin URI: http://wpfront.com/notification-bar-plugin/
|
5 |
* Description: Easily lets you create a bar on top or bottom to display a notification.
|
6 |
+
* Version: 1.4.1
|
7 |
* Author: Syam Mohan
|
8 |
* Author URI: http://wpfront.com
|
9 |
* License: GPL v3
|