WP-PageNavi - Version 2.72

Version Description

(2010-04-19) = * fix first link

Download this release

Release Info

Developer scribu
Plugin Icon WP-PageNavi
Version 2.72
Comparing to
See all releases

Code changes from version 2.61 to 2.72

admin.php ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class PageNavi_Options_Page extends scbAdminPage {
4
+
5
+ function setup() {
6
+ $this->textdomain = 'wp-pagenavi';
7
+
8
+ $this->args = array(
9
+ 'page_title' => __('PageNavi Settings', $this->textdomain),
10
+ 'menu_title' => __('PageNavi', $this->textdomain),
11
+ 'page_slug' => 'pagenavi',
12
+ );
13
+ }
14
+
15
+ function validate($options) {
16
+ foreach ( array('style', 'num_pages', 'num_larger_page_numbers', 'larger_page_numbers_multiple') as $key )
17
+ $options[$key] = absint(@$options[$key]);
18
+
19
+ foreach ( array('use_pagenavi_css', 'always_show') as $key )
20
+ $options[$key] = (bool) @$options[$key];
21
+
22
+ return $options;
23
+ }
24
+
25
+ function page_content() {
26
+ $rows = array(
27
+ array(
28
+ 'title' => __('Text For Number Of Pages', $this->textdomain),
29
+ 'type' => 'text',
30
+ 'name' => 'pages_text',
31
+ 'extra' => 'size="50"',
32
+ 'desc' => '<br />
33
+ %CURRENT_PAGE% - ' . __('The current page number.', $this->textdomain) . '<br />
34
+ %TOTAL_PAGES% - ' . __('The total number of pages.', $this->textdomain)
35
+ ),
36
+
37
+ array(
38
+ 'title' => __('Text For Current Page', $this->textdomain),
39
+ 'type' => 'text',
40
+ 'name' => 'current_text',
41
+ 'desc' => '<br />
42
+ %PAGE_NUMBER% - ' . __('The page number.', $this->textdomain)
43
+ ),
44
+
45
+ array(
46
+ 'title' => __('Text For Page', $this->textdomain),
47
+ 'type' => 'text',
48
+ 'name' => 'page_text',
49
+ 'desc' => '<br />
50
+ %PAGE_NUMBER% - ' . __('The page number.', $this->textdomain)
51
+ ),
52
+
53
+ array(
54
+ 'title' => __('Text For First Page', $this->textdomain),
55
+ 'type' => 'text',
56
+ 'name' => 'first_text',
57
+ 'desc' => '<br />
58
+ %TOTAL_PAGES% - ' . __('The total number of pages.', $this->textdomain)
59
+ ),
60
+
61
+ array(
62
+ 'title' => __('Text For Last Page', $this->textdomain),
63
+ 'type' => 'text',
64
+ 'name' => 'last_text',
65
+ 'desc' => '<br />
66
+ %TOTAL_PAGES% - ' . __('The total number of pages.', $this->textdomain)
67
+ ),
68
+
69
+ array(
70
+ 'title' => __('Text For Previous Page', $this->textdomain),
71
+ 'type' => 'text',
72
+ 'name' => 'prev_text',
73
+ ),
74
+
75
+ array(
76
+ 'title' => __('Text For Next Page', $this->textdomain),
77
+ 'type' => 'text',
78
+ 'name' => 'next_text',
79
+ ),
80
+
81
+ array(
82
+ 'title' => __('Text For Previous ...', $this->textdomain),
83
+ 'type' => 'text',
84
+ 'name' => 'dotleft_text',
85
+ ),
86
+
87
+ array(
88
+ 'title' => __('Text For Next ...', $this->textdomain),
89
+ 'type' => 'text',
90
+ 'name' => 'dotright_text',
91
+ ),
92
+ );
93
+
94
+ $out =
95
+ html('h3', __('Page Navigation Text', $this->textdomain))
96
+ .html('p', __('Leaving a field blank will hide that part of the navigation.', $this->textdomain))
97
+ .$this->table($rows);
98
+
99
+
100
+ $rows = array(
101
+ array(
102
+ 'title' => __('Use pagenavi-css.css', $this->textdomain),
103
+ 'type' => 'checkbox',
104
+ 'name' => 'use_pagenavi_css',
105
+ ),
106
+
107
+ array(
108
+ 'title' => __('Page Navigation Style', $this->textdomain),
109
+ 'type' => 'select',
110
+ 'name' => 'style',
111
+ 'values' => array(1 => __('Normal', $this->textdomain), 2 => __('Drop-down List', $this->textdomain)),
112
+ 'text' => false
113
+ ),
114
+
115
+ array(
116
+ 'title' => __('Always Show Page Navigation', $this->textdomain),
117
+ 'type' => 'checkbox',
118
+ 'name' => 'always_show',
119
+ 'desc' => __("Show navigation even if there's only one page.", $this->textdomain)
120
+ ),
121
+
122
+ array(
123
+ 'title' => __('Number Of Pages To Show', $this->textdomain),
124
+ 'type' => 'text',
125
+ 'name' => 'num_pages',
126
+ 'extra' => 'class="small-text"'
127
+ ),
128
+
129
+ array(
130
+ 'title' => __('Number Of Larger Page Numbers To Show', $this->textdomain),
131
+ 'type' => 'text',
132
+ 'name' => 'num_larger_page_numbers',
133
+ 'extra' => 'class="small-text"',
134
+ 'desc' =>
135
+ '<br />' . __('Larger page numbers are in addition to the normal page numbers. They are useful when there are many pages of posts.', $this->textdomain) .
136
+ '<br />' . __('For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50.', $this->textdomain) .
137
+ '<br />' . __('Enter 0 to disable.', $this->textdomain)
138
+ ),
139
+
140
+ array(
141
+ 'title' => __('Show Larger Page Numbers In Multiples Of', $this->textdomain),
142
+ 'type' => 'text',
143
+ 'name' => 'larger_page_numbers_multiple',
144
+ 'extra' => 'class="small-text"',
145
+ 'desc' =>
146
+ '<br />' . __('For example, if mutiple is 5, it will show: 5, 10, 15, 20, 25', $this->textdomain)
147
+ ),
148
+ );
149
+
150
+ $out .=
151
+ html('h3', __('Page Navigation Options', $this->textdomain))
152
+ .$this->table($rows);
153
+
154
+ echo $this->form_wrap($out);
155
+ }
156
+ }
157
+
lang/wp-pagenavi-be_BY.mo ADDED
Binary file
lang/wp-pagenavi-be_BY.po ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-PageNavi\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-07-04 01:44+0300\n"
6
+ "PO-Revision-Date: 2010-03-22 21:53+0300\n"
7
+ "Last-Translator: FatCow <zhr@tut.by>\n"
8
+ "Language-Team: Marcis G. <by.marcis@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Belarusian\n"
13
+ "X-Poedit-Country: BELARUS\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: pagenavi-options.php:48
20
+ #: pagenavi-options.php:110
21
+ #: pagenavi-options.php:174
22
+ msgid "Page Navigation Options"
23
+ msgstr "Налады спісу старонак"
24
+
25
+ #: pagenavi-options.php:53
26
+ msgid "Updated"
27
+ msgstr "&mdash; абноўлена"
28
+
29
+ #: pagenavi-options.php:58
30
+ msgid "No Page Navigation Option Updated"
31
+ msgstr "Налады спісу старонак не змяніліся"
32
+
33
+ #: pagenavi-options.php:64
34
+ #: pagenavi-options.php:265
35
+ msgid "UNINSTALL WP-PageNavi"
36
+ msgstr "ВЫДАЛІЦЬ WP-PageNavi"
37
+
38
+ #: pagenavi-options.php:72
39
+ #, php-format
40
+ msgid "Setting Key '%s' has been deleted."
41
+ msgstr "Налада &laquo;%s&raquo; выдалена."
42
+
43
+ #: pagenavi-options.php:76
44
+ #, php-format
45
+ msgid "Error deleting Setting Key '%s'."
46
+ msgstr "Памылка пры выдаленні налады &laquo;%s&raquo;."
47
+
48
+ #: pagenavi-options.php:98
49
+ #: pagenavi-options.php:233
50
+ msgid "Uninstall WP-PageNavi"
51
+ msgstr "Выдаліць спіс старонак"
52
+
53
+ #: pagenavi-options.php:99
54
+ #, php-format
55
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
56
+ msgstr "<a href=\"%s\">Націсніце тут</a> каб завяршыць выдаленне. WP-PageNavi будзе адключаны аўтаматычна."
57
+
58
+ #: pagenavi-options.php:111
59
+ msgid "Page Navigation Text"
60
+ msgstr "Шаблоны спісу старонак"
61
+
62
+ #: pagenavi-options.php:114
63
+ msgid "Text For Number Of Pages"
64
+ msgstr "Шаблон агульнага спісу старонак"
65
+
66
+ #: pagenavi-options.php:117
67
+ msgid "The current page number."
68
+ msgstr "Нумар бягучай старонкі."
69
+
70
+ #: pagenavi-options.php:118
71
+ #: pagenavi-options.php:139
72
+ #: pagenavi-options.php:146
73
+ msgid "The total number of pages."
74
+ msgstr "Агульная колькасць старонак."
75
+
76
+ #: pagenavi-options.php:122
77
+ msgid "Text For Current Page"
78
+ msgstr "Элемент &laquo;Бягучая старонка&raquo;"
79
+
80
+ #: pagenavi-options.php:125
81
+ #: pagenavi-options.php:132
82
+ msgid "The page number."
83
+ msgstr "Нумар старонкі."
84
+
85
+ #: pagenavi-options.php:129
86
+ msgid "Text For Page"
87
+ msgstr "Элемент &laquo;Старонка&raquo;"
88
+
89
+ #: pagenavi-options.php:136
90
+ msgid "Text For First Post"
91
+ msgstr "Элемент &laquo;Першы запіс&raquo;"
92
+
93
+ #: pagenavi-options.php:143
94
+ msgid "Text For Last Post"
95
+ msgstr "Элемент &laquo;Апошні запіс&raquo;"
96
+
97
+ #: pagenavi-options.php:150
98
+ msgid "Text For Next Post"
99
+ msgstr "Элемент &laquo;Наступны запіс&raquo;"
100
+
101
+ #: pagenavi-options.php:156
102
+ msgid "Text For Previous Post"
103
+ msgstr "Элемент &laquo;Папярэдні запіс&raquo;"
104
+
105
+ #: pagenavi-options.php:162
106
+ msgid "Text For Next ..."
107
+ msgstr "Элемент &laquo;Наступныя&hellip;&raquo;"
108
+
109
+ #: pagenavi-options.php:168
110
+ msgid "Text For Previous ..."
111
+ msgstr "Элемент &laquo;Папярэднія&hellip;&raquo;"
112
+
113
+ #: pagenavi-options.php:177
114
+ msgid "Page Navigation Style"
115
+ msgstr "Стыль спісу старонак"
116
+
117
+ #: pagenavi-options.php:180
118
+ msgid "Normal"
119
+ msgstr "Звычайны"
120
+
121
+ #: pagenavi-options.php:181
122
+ msgid "Drop Down List"
123
+ msgstr "Выпадальны спіс"
124
+
125
+ #: pagenavi-options.php:186
126
+ msgid "Number Of Pages To Show?"
127
+ msgstr "Колькі старонак паказваць?"
128
+
129
+ #: pagenavi-options.php:192
130
+ msgid "Always Show Page Navigation?"
131
+ msgstr "Заўсёды паказваць спіс старонак?"
132
+
133
+ #: pagenavi-options.php:195
134
+ #: pagenavi-options.php:264
135
+ msgid "Yes"
136
+ msgstr "Так"
137
+
138
+ #: pagenavi-options.php:196
139
+ msgid "No"
140
+ msgstr "Не"
141
+
142
+ #: pagenavi-options.php:201
143
+ msgid "Number Of Larger Page Numbers To Show?"
144
+ msgstr "Колькі старонак паказваць у выглядзе дыяпазонаў?"
145
+
146
+ #: pagenavi-options.php:205
147
+ msgid "Larger page numbers are in additional to the default page numbers. It is useful for authors who is paginating through many posts."
148
+ msgstr "Дыяпазоны старонак дапаўняюць звычайную нумарацыю і карысныя ў тых выпадках, калі на вашым сайце вельмі шмат запісаў."
149
+
150
+ #: pagenavi-options.php:207
151
+ msgid "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
152
+ msgstr "Напрыклад, спіс старонак будзе выглядаць так: Старонкі 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
153
+
154
+ #: pagenavi-options.php:209
155
+ msgid "Enter 0 to disable."
156
+ msgstr "Увядзіце 0 каб адключыць гэту функцыю."
157
+
158
+ #: pagenavi-options.php:213
159
+ msgid "Show Larger Page Numbers In Multiples Of:"
160
+ msgstr "Каэфіцыент для дыяпазонаў старонак:"
161
+
162
+ #: pagenavi-options.php:217
163
+ msgid "If mutiple is in 5, it will show: 5, 10, 15, 20, 25"
164
+ msgstr "Калі каэфіцыент роўны 5, то спіс старонак будзе выглядаць так: 5, 10, 15, 20, 25"
165
+
166
+ #: pagenavi-options.php:219
167
+ msgid "If mutiple is in 10, it will show: 10, 20, 30, 40, 50"
168
+ msgstr "А калі 10&nbsp;&mdash; так: 10, 20, 30, 40, 50"
169
+
170
+ #: pagenavi-options.php:224
171
+ msgid "Save Changes"
172
+ msgstr "Захаваць змены"
173
+
174
+ #: pagenavi-options.php:235
175
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
176
+ msgstr "Пры адключэнні ўбудовы адлюстравання спісу старонак створаныя дадзеныя, уключаючы налады, не выдаляюцца. Для таго, каб цалкам выдаліць убудову, адменіце тут яго ўсталёўку."
177
+
178
+ #: pagenavi-options.php:238
179
+ msgid "WARNING:"
180
+ msgstr "УВАГА:"
181
+
182
+ #: pagenavi-options.php:239
183
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
184
+ msgstr "Выдаленне ўбудовы незваротна. Для таго, каб стварыць рэзервовую копію БД WordPress і захаваць вашы дадзеныя, выкарыстоўвайце ўбудову &laquo;Database Backup&raquo;."
185
+
186
+ #: pagenavi-options.php:242
187
+ msgid "The following WordPress Options will be DELETED:"
188
+ msgstr "Будуць ВЫДАЛЕНЫ наступныя налады WordPress:"
189
+
190
+ #: pagenavi-options.php:247
191
+ msgid "WordPress Options"
192
+ msgstr "Налады WordPress"
193
+
194
+ #: pagenavi-options.php:265
195
+ msgid ""
196
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
197
+ "This Action Is Not Reversible.\\n"
198
+ "\\n"
199
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
200
+ msgstr ""
201
+ "Вы збіраецеся выдаліць убудову WP-PageNavi.\\n"
202
+ "Гэта дзеянне незваротна.\\n"
203
+ "\\n"
204
+ "Каб спыніць выдаленне, абярыце [Адмена]. Абярыце [OK], калі вы жадаеце яго працягнуць."
205
+
206
+ #: wp-pagenavi.php:42
207
+ msgid "PageNavi"
208
+ msgstr "Спіс старонак"
209
+
210
+ #: wp-pagenavi.php:201
211
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
212
+ msgstr "Старонка %CURRENT_PAGE% з %TOTAL_PAGES%"
213
+
214
+ #: wp-pagenavi.php:204
215
+ msgid "&laquo; First"
216
+ msgstr "&laquo; Першая"
217
+
218
+ #: wp-pagenavi.php:205
219
+ msgid "Last &raquo;"
220
+ msgstr "Апошняя &raquo;"
221
+
222
+ #: wp-pagenavi.php:206
223
+ msgid "&raquo;"
224
+ msgstr "&raquo;"
225
+
226
+ #: wp-pagenavi.php:207
227
+ msgid "&laquo;"
228
+ msgstr "&laquo;"
229
+
230
+ #: wp-pagenavi.php:208
231
+ #: wp-pagenavi.php:209
232
+ msgid "..."
233
+ msgstr "..."
234
+
lang/wp-pagenavi-bg_BG.mo ADDED
Binary file
lang/wp-pagenavi-bg_BG.po ADDED
@@ -0,0 +1,211 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-PageNavi 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-12 00:37+0800\n"
6
+ "PO-Revision-Date: 2008-12-12 00:37+0800\n"
7
+ "Last-Translator: Lester Chan <lesterchan@gmail.com>\n"
8
+ "Language-Team: Alexander Dichev <http://dichev.com/contact/english/>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Bulgarian\n"
13
+ "X-Poedit-Country: BULGARIA\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: pagenavi-options.php:46
19
+ #: pagenavi-options.php:108
20
+ #: pagenavi-options.php:172
21
+ msgid "Page Navigation Options"
22
+ msgstr "Настройки на навигацията"
23
+
24
+ #: pagenavi-options.php:51
25
+ msgid "Updated"
26
+ msgstr "Обновено"
27
+
28
+ #: pagenavi-options.php:56
29
+ msgid "No Page Navigation Option Updated"
30
+ msgstr "Няма промени в настройките на навигацията"
31
+
32
+ #: pagenavi-options.php:62
33
+ #: pagenavi-options.php:241
34
+ msgid "UNINSTALL WP-PageNavi"
35
+ msgstr "ДЕИНСТАЛИРАНЕ на WP-PageNavi"
36
+
37
+ #: pagenavi-options.php:70
38
+ #, php-format
39
+ msgid "Setting Key '%s' has been deleted."
40
+ msgstr "Настройка '%s' беше изтрита."
41
+
42
+ #: pagenavi-options.php:74
43
+ #, php-format
44
+ msgid "Error deleting Setting Key '%s'."
45
+ msgstr "Грешка при опит да бъде изтрита настройка '%s'."
46
+
47
+ #: pagenavi-options.php:96
48
+ #: pagenavi-options.php:209
49
+ msgid "Uninstall WP-PageNavi"
50
+ msgstr "Деинсталиране на WP-PageNavi"
51
+
52
+ #: pagenavi-options.php:97
53
+ #, php-format
54
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
55
+ msgstr "<a href=\"%s\">Натиснете тук</a> за да завършите деинсталацията и WP-PageNavi ще бъде деактивиран автоматично."
56
+
57
+ #: pagenavi-options.php:109
58
+ msgid "Page Navigation Text"
59
+ msgstr "Текст на навигацията"
60
+
61
+ #: pagenavi-options.php:112
62
+ msgid "Text For Number Of Pages"
63
+ msgstr "Текст за брой на страници"
64
+
65
+ #: pagenavi-options.php:115
66
+ msgid "The current page number."
67
+ msgstr "Номер на страницата в момента"
68
+
69
+ #: pagenavi-options.php:116
70
+ #: pagenavi-options.php:137
71
+ #: pagenavi-options.php:144
72
+ msgid "The total number of pages."
73
+ msgstr "Общ брой на страниците."
74
+
75
+ #: pagenavi-options.php:120
76
+ msgid "Text For Current Page"
77
+ msgstr "Текст за разглежданата страницата"
78
+
79
+ #: pagenavi-options.php:123
80
+ #: pagenavi-options.php:130
81
+ msgid "The page number."
82
+ msgstr "Номер на страницата."
83
+
84
+ #: pagenavi-options.php:127
85
+ msgid "Text For Page"
86
+ msgstr "Текст за страница"
87
+
88
+ #: pagenavi-options.php:134
89
+ msgid "Text For First Post"
90
+ msgstr "Текст за първи пост"
91
+
92
+ #: pagenavi-options.php:141
93
+ msgid "Text For Last Post"
94
+ msgstr "Текст за последен пост"
95
+
96
+ #: pagenavi-options.php:148
97
+ msgid "Text For Next Post"
98
+ msgstr "Текст за следващ пост"
99
+
100
+ #: pagenavi-options.php:154
101
+ msgid "Text For Previous Post"
102
+ msgstr "Текст за предишен пост"
103
+
104
+ #: pagenavi-options.php:160
105
+ msgid "Text For Next ..."
106
+ msgstr "Текст за следваща ..."
107
+
108
+ #: pagenavi-options.php:166
109
+ msgid "Text For Previous ..."
110
+ msgstr "Текст за предишна ..."
111
+
112
+ #: pagenavi-options.php:175
113
+ msgid "Page Navigation Style"
114
+ msgstr "Стил на навигацията на страниците"
115
+
116
+ #: pagenavi-options.php:178
117
+ msgid "Normal"
118
+ msgstr "Нормаен"
119
+
120
+ #: pagenavi-options.php:179
121
+ msgid "Drop Down List"
122
+ msgstr "Падащо меню"
123
+
124
+ #: pagenavi-options.php:184
125
+ #, fuzzy
126
+ msgid "Number Of Pages To Show?"
127
+ msgstr "Брой на страниците за показване?"
128
+
129
+ #: pagenavi-options.php:190
130
+ msgid "Always Show Page Navigation?"
131
+ msgstr "Показване на навигацията винаги?"
132
+
133
+ #: pagenavi-options.php:193
134
+ #: pagenavi-options.php:240
135
+ msgid "Yes"
136
+ msgstr "Да"
137
+
138
+ #: pagenavi-options.php:194
139
+ msgid "No"
140
+ msgstr "Не"
141
+
142
+ #: pagenavi-options.php:200
143
+ msgid "Save Changes"
144
+ msgstr ""
145
+
146
+ #: pagenavi-options.php:211
147
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
148
+ msgstr "Деактивирането на WP-PageNavi не изтрива създадените от плъгина данни, като настройките на навигацията на страниците. За да премахнете напълно плъгина, деинсталирайте го от тук."
149
+
150
+ #: pagenavi-options.php:214
151
+ msgid "WARNING:"
152
+ msgstr "ВНИМАНИЕ:"
153
+
154
+ #: pagenavi-options.php:215
155
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
156
+ msgstr "Деинсталирането е необратимо. Трябва да използвате резервно копие на базата данни за да можете да възстановите настройките на плъгина."
157
+
158
+ #: pagenavi-options.php:218
159
+ msgid "The following WordPress Options will be DELETED:"
160
+ msgstr "Следните настройки на WordPress ще бъдат ИЗТРИТИ:"
161
+
162
+ #: pagenavi-options.php:223
163
+ msgid "WordPress Options"
164
+ msgstr "WordPress настройки"
165
+
166
+ #: pagenavi-options.php:241
167
+ msgid ""
168
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
169
+ "This Action Is Not Reversible.\\n"
170
+ "\\n"
171
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
172
+ msgstr ""
173
+ "Вие сте на път да деинсталирате WP-PageNavi от WordPress.\\n"
174
+ "Това действие е необратимо.\\n"
175
+ "\\n"
176
+ " Изберете [Cancel] за да спрете или [OK] за деинсталиране."
177
+
178
+ #: wp-pagenavi.php:42
179
+ msgid "PageNavi"
180
+ msgstr "PageNavi"
181
+
182
+ #: wp-pagenavi.php:179
183
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
184
+ msgstr "Страница %CURRENT_PAGE% от %TOTAL_PAGES%"
185
+
186
+ #: wp-pagenavi.php:182
187
+ msgid "&laquo; First"
188
+ msgstr "&laquo; Първа"
189
+
190
+ #: wp-pagenavi.php:183
191
+ msgid "Last &raquo;"
192
+ msgstr "Последна &raquo;"
193
+
194
+ #: wp-pagenavi.php:184
195
+ msgid "&raquo;"
196
+ msgstr "&raquo;"
197
+
198
+ #: wp-pagenavi.php:185
199
+ msgid "&laquo;"
200
+ msgstr "&raquo;"
201
+
202
+ #: wp-pagenavi.php:186
203
+ #: wp-pagenavi.php:187
204
+ msgid "..."
205
+ msgstr "..."
206
+
207
+ #~ msgid "Update Options"
208
+ #~ msgstr "Обновяване на настройките"
209
+ #~ msgid "Cancel"
210
+ #~ msgstr "Отказ"
211
+
lang/wp-pagenavi-ca_ES.mo ADDED
Binary file
lang/wp-pagenavi-ca_ES.po ADDED
@@ -0,0 +1,211 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-PageNavi 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-12 00:38+0800\n"
6
+ "PO-Revision-Date: 2008-12-12 00:38+0800\n"
7
+ "Last-Translator: Lester Chan <lesterchan@gmail.com>\n"
8
+ "Language-Team: Lester Chan <lesterchan@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: English\n"
13
+ "X-Poedit-Country: SINGAPORE\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: pagenavi-options.php:46
19
+ #: pagenavi-options.php:108
20
+ #: pagenavi-options.php:172
21
+ msgid "Page Navigation Options"
22
+ msgstr "Opcions de navegaci&oacute; per p&agrave;gines"
23
+
24
+ #: pagenavi-options.php:51
25
+ msgid "Updated"
26
+ msgstr "Actualitzat"
27
+
28
+ #: pagenavi-options.php:56
29
+ msgid "No Page Navigation Option Updated"
30
+ msgstr "No hi ha opcions de la navegaci&oacute; per p&agrave;gines actualitzades"
31
+
32
+ #: pagenavi-options.php:62
33
+ #: pagenavi-options.php:241
34
+ msgid "UNINSTALL WP-PageNavi"
35
+ msgstr "DESINSTAL&middot;LAR WP-PageNavi"
36
+
37
+ #: pagenavi-options.php:70
38
+ #, php-format
39
+ msgid "Setting Key '%s' has been deleted."
40
+ msgstr "La clau d&rsquo;opcions '%s' ha estat eliminada"
41
+
42
+ #: pagenavi-options.php:74
43
+ #, php-format
44
+ msgid "Error deleting Setting Key '%s'."
45
+ msgstr "Error esborrant la clau d&rsquo;opcions '%s'"
46
+
47
+ #: pagenavi-options.php:96
48
+ #: pagenavi-options.php:209
49
+ msgid "Uninstall WP-PageNavi"
50
+ msgstr "Desinstal&middot;lar WP-PageNavi"
51
+
52
+ #: pagenavi-options.php:97
53
+ #, php-format
54
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
55
+ msgstr "<a href=\"%s\">Fes clic aqu&iacute;</a> per finalitzar la desinstal&middot;laci&oacute; i WP-PageNavi ser&agrave; desactivat autom&agrave;ticament."
56
+
57
+ #: pagenavi-options.php:109
58
+ msgid "Page Navigation Text"
59
+ msgstr "Text de Navegaci&oacute; per P&agrave;gines"
60
+
61
+ #: pagenavi-options.php:112
62
+ msgid "Text For Number Of Pages"
63
+ msgstr "Text per al n&uacute;mero de p&agrave;gines"
64
+
65
+ #: pagenavi-options.php:115
66
+ msgid "The current page number."
67
+ msgstr "El n&uacute;mero de la p&agrave;gina actual"
68
+
69
+ #: pagenavi-options.php:116
70
+ #: pagenavi-options.php:137
71
+ #: pagenavi-options.php:144
72
+ msgid "The total number of pages."
73
+ msgstr "El n&uacute;mero total de p&agrave;gines"
74
+
75
+ #: pagenavi-options.php:120
76
+ msgid "Text For Current Page"
77
+ msgstr "Text per a la p&agrave;gina actual"
78
+
79
+ #: pagenavi-options.php:123
80
+ #: pagenavi-options.php:130
81
+ msgid "The page number."
82
+ msgstr "El n&uacute;mero de p&agrave:gina."
83
+
84
+ #: pagenavi-options.php:127
85
+ msgid "Text For Page"
86
+ msgstr "Text per a la p&agrave;gina"
87
+
88
+ #: pagenavi-options.php:134
89
+ msgid "Text For First Post"
90
+ msgstr "Text per al primer article"
91
+
92
+ #: pagenavi-options.php:141
93
+ msgid "Text For Last Post"
94
+ msgstr "Text per al darrer article"
95
+
96
+ #: pagenavi-options.php:148
97
+ msgid "Text For Next Post"
98
+ msgstr "Text per a la p&agrave;gina seg&uuml;ent"
99
+
100
+ #: pagenavi-options.php:154
101
+ msgid "Text For Previous Post"
102
+ msgstr "Text per a la p&agrave;gina anterior"
103
+
104
+ #: pagenavi-options.php:160
105
+ msgid "Text For Next ..."
106
+ msgstr "Text per a la pr&ograve;xima ..."
107
+
108
+ #: pagenavi-options.php:166
109
+ msgid "Text For Previous ..."
110
+ msgstr "Text per a l&rsquo;anterior ..."
111
+
112
+ #: pagenavi-options.php:175
113
+ msgid "Page Navigation Style"
114
+ msgstr "Estil de la navegaci&oacute; per p&agrave;gines"
115
+
116
+ #: pagenavi-options.php:178
117
+ msgid "Normal"
118
+ msgstr "Normal"
119
+
120
+ #: pagenavi-options.php:179
121
+ msgid "Drop Down List"
122
+ msgstr "Llista desplegable"
123
+
124
+ #: pagenavi-options.php:184
125
+ #, fuzzy
126
+ msgid "Number Of Pages To Show?"
127
+ msgstr "P&agrave;gines a mostrar"
128
+
129
+ #: pagenavi-options.php:190
130
+ msgid "Always Show Page Navigation?"
131
+ msgstr "Mostrar sempre la navegaci&oacute; per p&agrave;gines?"
132
+
133
+ #: pagenavi-options.php:193
134
+ #: pagenavi-options.php:240
135
+ msgid "Yes"
136
+ msgstr "Sí"
137
+
138
+ #: pagenavi-options.php:194
139
+ msgid "No"
140
+ msgstr "No"
141
+
142
+ #: pagenavi-options.php:200
143
+ msgid "Save Changes"
144
+ msgstr ""
145
+
146
+ #: pagenavi-options.php:211
147
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
148
+ msgstr "Desactivar WP-PageNavi no elimina cap dada que s&rsquo;hagi creat, com les opcions de la navegaci&oacute; per p&agrave;gines. Per eliminar completament aquest plugin, pots desinstal&middot;lar-lo aqu&iacute;"
149
+
150
+ #: pagenavi-options.php:214
151
+ msgid "WARNING:"
152
+ msgstr "ALERTA:"
153
+
154
+ #: pagenavi-options.php:215
155
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
156
+ msgstr "Una cop desinstal&middot;lat, no es pot desfer. Haur&iacute;es de fer una c&ograve;pia de seguretat de totes les dades amb un plugin de Wordpress abans de res."
157
+
158
+ #: pagenavi-options.php:218
159
+ msgid "The following WordPress Options will be DELETED:"
160
+ msgstr "Las seg&uuml;ents opcions de Wordpress seran ELIMINADES:"
161
+
162
+ #: pagenavi-options.php:223
163
+ msgid "WordPress Options"
164
+ msgstr "Opcions de Wordpress"
165
+
166
+ #: pagenavi-options.php:241
167
+ msgid ""
168
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
169
+ "This Action Is Not Reversible.\\n"
170
+ "\\n"
171
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
172
+ msgstr ""
173
+ "Est&agrave;s a punt de desinstal&middot;lar WP-PageNavi de Wordpress.\\n"
174
+ "Aquesta acci&oacute; no es pot desfer.\\n"
175
+ "\\n"
176
+ " Tria [Cancel&middot;lar] per parar, [Acceptar] per desinstal&middot;lar."
177
+
178
+ #: wp-pagenavi.php:42
179
+ msgid "PageNavi"
180
+ msgstr "PageNavi"
181
+
182
+ #: wp-pagenavi.php:179
183
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
184
+ msgstr "P&agrave;gina %CURRENT_PAGE% de %TOTAL_PAGES%"
185
+
186
+ #: wp-pagenavi.php:182
187
+ msgid "&laquo; First"
188
+ msgstr "&laquo; Primera"
189
+
190
+ #: wp-pagenavi.php:183
191
+ msgid "Last &raquo;"
192
+ msgstr "&Uacute;ltima &raquo;"
193
+
194
+ #: wp-pagenavi.php:184
195
+ msgid "&raquo;"
196
+ msgstr "&raquo;"
197
+
198
+ #: wp-pagenavi.php:185
199
+ msgid "&laquo;"
200
+ msgstr "&raquo;"
201
+
202
+ #: wp-pagenavi.php:186
203
+ #: wp-pagenavi.php:187
204
+ msgid "..."
205
+ msgstr "..."
206
+
207
+ #~ msgid "Update Options"
208
+ #~ msgstr "Actualitzar opcions"
209
+ #~ msgid "Cancel"
210
+ #~ msgstr "Cancel&middot;lar"
211
+
lang/wp-pagenavi-de_DE.mo ADDED
Binary file
lang/wp-pagenavi-de_DE.po ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-PageNavi 2.50\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-08 18:58+0800\n"
6
+ "PO-Revision-Date: 2009-08-12 01:58+0100\n"
7
+ "Last-Translator: Alexander Zigelski <alizige@gmail.com>\n"
8
+ "Language-Team: Lester Chan <lesterchan@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: English\n"
13
+ "X-Poedit-Country: SINGAPORE\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: pagenavi-options.php:48
20
+ #: pagenavi-options.php:110
21
+ #: pagenavi-options.php:174
22
+ msgid "Page Navigation Options"
23
+ msgstr "Page Navigation Optionen"
24
+
25
+ #: pagenavi-options.php:53
26
+ msgid "Updated"
27
+ msgstr "aktualisiert"
28
+
29
+ #: pagenavi-options.php:58
30
+ msgid "No Page Navigation Option Updated"
31
+ msgstr "Keine Seitennavigations-Optionen wurden aktualisiert."
32
+
33
+ #: pagenavi-options.php:64
34
+ #: pagenavi-options.php:265
35
+ msgid "UNINSTALL WP-PageNavi"
36
+ msgstr "WP-PageNavi DEINSTALLIEREN!"
37
+
38
+ #: pagenavi-options.php:72
39
+ #, php-format
40
+ msgid "Setting Key '%s' has been deleted."
41
+ msgstr "Die Einstellung '%s' wurde gelöscht."
42
+
43
+ #: pagenavi-options.php:76
44
+ #, php-format
45
+ msgid "Error deleting Setting Key '%s'."
46
+ msgstr "Fehler beim Löschen der Einstellung '%s'."
47
+
48
+ #: pagenavi-options.php:98
49
+ #: pagenavi-options.php:233
50
+ msgid "Uninstall WP-PageNavi"
51
+ msgstr "Deinstalliere WP-PageNavi"
52
+
53
+ #: pagenavi-options.php:99
54
+ #, php-format
55
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
56
+ msgstr "<a href=\"%s\">Klicken Sie hier</a> um die Deinstallation zu beenden. WP-PageNavi wird automatisch deaktiviert."
57
+
58
+ #: pagenavi-options.php:111
59
+ msgid "Page Navigation Text"
60
+ msgstr "Seitennavigation Text"
61
+
62
+ #: pagenavi-options.php:114
63
+ msgid "Text For Number Of Pages"
64
+ msgstr "Text der Anzahl der Seiten"
65
+
66
+ #: pagenavi-options.php:117
67
+ msgid "The current page number."
68
+ msgstr "Die derzeitige Seitennummer."
69
+
70
+ #: pagenavi-options.php:118
71
+ #: pagenavi-options.php:139
72
+ #: pagenavi-options.php:146
73
+ msgid "The total number of pages."
74
+ msgstr "Die Gesamtanzahl der Seiten."
75
+
76
+ #: pagenavi-options.php:122
77
+ msgid "Text For Current Page"
78
+ msgstr "Text der aktuellen Seite"
79
+
80
+ #: pagenavi-options.php:125
81
+ #: pagenavi-options.php:132
82
+ msgid "The page number."
83
+ msgstr "Die Seitennummer."
84
+
85
+ #: pagenavi-options.php:129
86
+ msgid "Text For Page"
87
+ msgstr "Text auf Seite"
88
+
89
+ #: pagenavi-options.php:136
90
+ msgid "Text For First Post"
91
+ msgstr "Text der ersten Seite"
92
+
93
+ #: pagenavi-options.php:143
94
+ msgid "Text For Last Post"
95
+ msgstr "Text der letzten Seite"
96
+
97
+ #: pagenavi-options.php:150
98
+ msgid "Text For Next Post"
99
+ msgstr "Text der nächsten Seite"
100
+
101
+ #: pagenavi-options.php:156
102
+ msgid "Text For Previous Post"
103
+ msgstr "Text der vorherigen Seite"
104
+
105
+ #: pagenavi-options.php:162
106
+ msgid "Text For Next ..."
107
+ msgstr "Text für nächstes ..."
108
+
109
+ #: pagenavi-options.php:168
110
+ msgid "Text For Previous ..."
111
+ msgstr "Text für letztes ..."
112
+
113
+ #: pagenavi-options.php:177
114
+ msgid "Page Navigation Style"
115
+ msgstr "Seitennavigations-Stil"
116
+
117
+ #: pagenavi-options.php:180
118
+ msgid "Normal"
119
+ msgstr "Normal"
120
+
121
+ #: pagenavi-options.php:181
122
+ msgid "Drop Down List"
123
+ msgstr "Drop Down Liste"
124
+
125
+ #: pagenavi-options.php:186
126
+ msgid "Number Of Pages To Show?"
127
+ msgstr "Anzahl der Seite die angezeigt werden sollen?"
128
+
129
+ #: pagenavi-options.php:192
130
+ msgid "Always Show Page Navigation?"
131
+ msgstr "Seitennavigation immer anzeigen?"
132
+
133
+ #: pagenavi-options.php:195
134
+ #: pagenavi-options.php:264
135
+ msgid "Yes"
136
+ msgstr "Ja"
137
+
138
+ #: pagenavi-options.php:196
139
+ msgid "No"
140
+ msgstr "Nein"
141
+
142
+ #: pagenavi-options.php:201
143
+ msgid "Number Of Larger Page Numbers To Show?"
144
+ msgstr "Zahlen größerer Seitennummern anzeigen?"
145
+
146
+ #: pagenavi-options.php:205
147
+ msgid "Larger page numbers are in additional to the default page numbers. It is useful for authors who is paginating through many posts."
148
+ msgstr "Große Seitennumern sind optional zu den Standard-Seitenzahlen. Es ist sinnvoll für Authoren die über viele Seiten hinweg browsen."
149
+
150
+ #: pagenavi-options.php:207
151
+ msgid "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
152
+ msgstr "WP-PageNavi wird folgendes anzeigen: Seite 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
153
+
154
+ #: pagenavi-options.php:209
155
+ msgid "Enter 0 to disable."
156
+ msgstr "0 eingeben zum deaktivieren."
157
+
158
+ #: pagenavi-options.php:213
159
+ msgid "Show Larger Page Numbers In Multiples Of:"
160
+ msgstr "Zeige größere Seitenzahlen als Vielfache von folgender Zahl an:"
161
+
162
+ #: pagenavi-options.php:217
163
+ msgid "If mutiple is in 5, it will show: 5, 10, 15, 20, 25"
164
+ msgstr "Wenn das Vielfache 5 ist, werden: 5, 10, 15, 20, 25 angezeigt"
165
+
166
+ #: pagenavi-options.php:219
167
+ msgid "If mutiple is in 10, it will show: 10, 20, 30, 40, 50"
168
+ msgstr "Wenn das Vielfache 10 ist, werden: 10, 20, 30, 40, 50 angezeigt"
169
+
170
+ #: pagenavi-options.php:224
171
+ msgid "Save Changes"
172
+ msgstr "Einstellungen speichern."
173
+
174
+ #: pagenavi-options.php:235
175
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
176
+ msgstr "Durch das Deaktivieren von WP-PageNavi werden keine Daten, wie die Seitennavigations-Optionen, gelöscht. Um das Plugin komplett zu entfernen, können Sie es hier deinstallieren."
177
+
178
+ #: pagenavi-options.php:238
179
+ msgid "WARNING:"
180
+ msgstr "WARNUNG:"
181
+
182
+ #: pagenavi-options.php:239
183
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
184
+ msgstr "Wenn Sie es einmal deinstalliert haben, kann dies nicht rückgängig gemacht werden. Sie sollten das Datenbank Backup Plugin von WordPress benutzen um alle Daten vorher zu sichern."
185
+
186
+ #: pagenavi-options.php:242
187
+ msgid "The following WordPress Options will be DELETED:"
188
+ msgstr "Die folgenden WordPress Optionen werden GELÖSCHT:"
189
+
190
+ #: pagenavi-options.php:247
191
+ msgid "WordPress Options"
192
+ msgstr "WordPress Optionen"
193
+
194
+ #: pagenavi-options.php:265
195
+ msgid ""
196
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
197
+ "This Action Is Not Reversible.\\n"
198
+ "\\n"
199
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
200
+ msgstr ""
201
+ "Sie sind dabei WP-PageNavi zu deinstallieren.\\n"
202
+ "Diese Aktion kann nicht rückgängig gemacht werden.\\\\n"
203
+ "Wählen Sie [Cancel] um Abzubrechen oder [OK] zum deinstallieren"
204
+
205
+ #: wp-pagenavi.php:42
206
+ msgid "PageNavi"
207
+ msgstr "PageNavi"
208
+
209
+ #: wp-pagenavi.php:201
210
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
211
+ msgstr "Seite %CURRENT_PAGE% von %TOTAL_PAGES%"
212
+
213
+ #: wp-pagenavi.php:204
214
+ msgid "&laquo; First"
215
+ msgstr "&laquo; Erste"
216
+
217
+ #: wp-pagenavi.php:205
218
+ msgid "Last &raquo;"
219
+ msgstr "Letzte &raquo;"
220
+
221
+ #: wp-pagenavi.php:206
222
+ msgid "&raquo;"
223
+ msgstr "&raquo;"
224
+
225
+ #: wp-pagenavi.php:207
226
+ msgid "&laquo;"
227
+ msgstr "&laquo;"
228
+
229
+ #: wp-pagenavi.php:208
230
+ #: wp-pagenavi.php:209
231
+ msgid "..."
232
+ msgstr "..."
233
+
lang/wp-pagenavi-es_ES.mo ADDED
Binary file
lang/wp-pagenavi-es_ES.po ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-PageNavi 2.50\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-08 18:58+0800\n"
6
+ "PO-Revision-Date: 2009-11-01 09:38+0100\n"
7
+ "Last-Translator: Francisco Portero <fportero@gmail.com>\n"
8
+ "Language-Team: Francisco Portero <fportero@indalus.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Spanish\n"
13
+ "X-Poedit-Country: Spain\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: pagenavi-options.php:48
20
+ #: pagenavi-options.php:110
21
+ #: pagenavi-options.php:174
22
+ msgid "Page Navigation Options"
23
+ msgstr "Opciones de PageNavi"
24
+
25
+ #: pagenavi-options.php:53
26
+ msgid "Updated"
27
+ msgstr "Actualizado"
28
+
29
+ #: pagenavi-options.php:58
30
+ msgid "No Page Navigation Option Updated"
31
+ msgstr "Opciones de PageNavi sin actualizar"
32
+
33
+ #: pagenavi-options.php:64
34
+ #: pagenavi-options.php:265
35
+ msgid "UNINSTALL WP-PageNavi"
36
+ msgstr "DESINSTALAR PageNavi"
37
+
38
+ #: pagenavi-options.php:72
39
+ #, php-format
40
+ msgid "Setting Key '%s' has been deleted."
41
+ msgstr "La clave '%s' ha sido borrada correctamente"
42
+
43
+ #: pagenavi-options.php:76
44
+ #, php-format
45
+ msgid "Error deleting Setting Key '%s'."
46
+ msgstr "Error borrando la clave '%s'."
47
+
48
+ #: pagenavi-options.php:98
49
+ #: pagenavi-options.php:233
50
+ msgid "Uninstall WP-PageNavi"
51
+ msgstr "Desinstalar PageNavi"
52
+
53
+ #: pagenavi-options.php:99
54
+ #, php-format
55
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
56
+ msgstr "<a href=\"%s\">Pulsar aquí</a> Para finalizar la desinstalación de PageNavi, se desactivara automaticamente"
57
+
58
+ #: pagenavi-options.php:111
59
+ msgid "Page Navigation Text"
60
+ msgstr "Texto de PageNavi"
61
+
62
+ #: pagenavi-options.php:114
63
+ msgid "Text For Number Of Pages"
64
+ msgstr "Número de páginas"
65
+
66
+ #: pagenavi-options.php:117
67
+ msgid "The current page number."
68
+ msgstr "Número de la página actual."
69
+
70
+ #: pagenavi-options.php:118
71
+ #: pagenavi-options.php:139
72
+ #: pagenavi-options.php:146
73
+ msgid "The total number of pages."
74
+ msgstr "Número total de páginas."
75
+
76
+ #: pagenavi-options.php:122
77
+ msgid "Text For Current Page"
78
+ msgstr "Página actual"
79
+
80
+ #: pagenavi-options.php:125
81
+ #: pagenavi-options.php:132
82
+ msgid "The page number."
83
+ msgstr "Número de página"
84
+
85
+ #: pagenavi-options.php:129
86
+ msgid "Text For Page"
87
+ msgstr "Página"
88
+
89
+ #: pagenavi-options.php:136
90
+ msgid "Text For First Post"
91
+ msgstr "Primera página"
92
+
93
+ #: pagenavi-options.php:143
94
+ msgid "Text For Last Post"
95
+ msgstr "Última página"
96
+
97
+ #: pagenavi-options.php:150
98
+ msgid "Text For Next Post"
99
+ msgstr "Página siguinete"
100
+
101
+ #: pagenavi-options.php:156
102
+ msgid "Text For Previous Post"
103
+ msgstr "Página anterior"
104
+
105
+ #: pagenavi-options.php:162
106
+ msgid "Text For Next ..."
107
+ msgstr "Para siguiente ..."
108
+
109
+ #: pagenavi-options.php:168
110
+ msgid "Text For Previous ..."
111
+ msgstr "Para anterior ..."
112
+
113
+ #: pagenavi-options.php:177
114
+ msgid "Page Navigation Style"
115
+ msgstr "Estilo de navegación"
116
+
117
+ #: pagenavi-options.php:180
118
+ msgid "Normal"
119
+ msgstr "Normal"
120
+
121
+ #: pagenavi-options.php:181
122
+ msgid "Drop Down List"
123
+ msgstr "Lista desplegable"
124
+
125
+ #: pagenavi-options.php:186
126
+ msgid "Number Of Pages To Show?"
127
+ msgstr "Número de páginas a mostrar"
128
+
129
+ #: pagenavi-options.php:192
130
+ msgid "Always Show Page Navigation?"
131
+ msgstr "Mostrar siempre la navegación"
132
+
133
+ #: pagenavi-options.php:195
134
+ #: pagenavi-options.php:264
135
+ msgid "Yes"
136
+ msgstr "Si"
137
+
138
+ #: pagenavi-options.php:196
139
+ msgid "No"
140
+ msgstr "No"
141
+
142
+ #: pagenavi-options.php:201
143
+ msgid "Number Of Larger Page Numbers To Show?"
144
+ msgstr "Números Grandes en la navegación"
145
+
146
+ #: pagenavi-options.php:205
147
+ msgid "Larger page numbers are in additional to the default page numbers. It is useful for authors who is paginating through many posts."
148
+ msgstr "Los números grandes hacen que se muestren enlaces adicionales. Es útil para los autores que quieren paginar muchas entradas."
149
+
150
+ #: pagenavi-options.php:207
151
+ msgid "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
152
+ msgstr "Por ejemplo, PageNavi muestra: Páginas 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
153
+
154
+ #: pagenavi-options.php:209
155
+ msgid "Enter 0 to disable."
156
+ msgstr "Introducir 0 para desactivar"
157
+
158
+ #: pagenavi-options.php:213
159
+ msgid "Show Larger Page Numbers In Multiples Of:"
160
+ msgstr "Mostrar Numeros Grandes que sean multiplos de:"
161
+
162
+ #: pagenavi-options.php:217
163
+ msgid "If mutiple is in 5, it will show: 5, 10, 15, 20, 25"
164
+ msgstr "Si son múltiplos de 5, se muestran: 5, 10, 15, 20, 25"
165
+
166
+ #: pagenavi-options.php:219
167
+ msgid "If mutiple is in 10, it will show: 10, 20, 30, 40, 50"
168
+ msgstr "Si son múltiplos de 10, se muestran: 10, 20, 30, 40, 50"
169
+
170
+ #: pagenavi-options.php:224
171
+ msgid "Save Changes"
172
+ msgstr "Guardar"
173
+
174
+ #: pagenavi-options.php:235
175
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
176
+ msgstr "Desactivando el plugin PageNavi no se borran los datos almacenados. Para borrarlo todo, se debe desinstalar desde aquí."
177
+
178
+ #: pagenavi-options.php:238
179
+ msgid "WARNING:"
180
+ msgstr "ATENCIÓN:"
181
+
182
+ #: pagenavi-options.php:239
183
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
184
+ msgstr "Una vez desinstalado, no se puede deshacer. Guarda copias de seguridad de todos los datos primero si los vas a necesitar despues."
185
+
186
+ #: pagenavi-options.php:242
187
+ msgid "The following WordPress Options will be DELETED:"
188
+ msgstr "Las siguientes opciones de WordPress se ELIMINARÁN:"
189
+
190
+ #: pagenavi-options.php:247
191
+ msgid "WordPress Options"
192
+ msgstr "Opciones de Wordpress"
193
+
194
+ #: pagenavi-options.php:265
195
+ msgid ""
196
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
197
+ "This Action Is Not Reversible.\\n"
198
+ "\\n"
199
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
200
+ msgstr ""
201
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
202
+ "This Action Is Not Reversible.\\n"
203
+ "\\n"
204
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
205
+
206
+ #: wp-pagenavi.php:42
207
+ msgid "PageNavi"
208
+ msgstr "PageNavi"
209
+
210
+ #: wp-pagenavi.php:201
211
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
212
+ msgstr "Página %CURRENT_PAGE% de %TOTAL_PAGES%"
213
+
214
+ #: wp-pagenavi.php:204
215
+ msgid "&laquo; First"
216
+ msgstr "&laquo; Primera"
217
+
218
+ #: wp-pagenavi.php:205
219
+ msgid "Last &raquo;"
220
+ msgstr "Última &raquo;"
221
+
222
+ #: wp-pagenavi.php:206
223
+ msgid "&raquo;"
224
+ msgstr "&raquo;"
225
+
226
+ #: wp-pagenavi.php:207
227
+ msgid "&laquo;"
228
+ msgstr "&laquo;"
229
+
230
+ #: wp-pagenavi.php:208
231
+ #: wp-pagenavi.php:209
232
+ msgid "..."
233
+ msgstr "..."
234
+
lang/wp-pagenavi-fa_IR.mo ADDED
Binary file
lang/wp-pagenavi-fa_IR.po ADDED
@@ -0,0 +1,244 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Wp-Pagenavi_fa\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-04-01 12:14+0330\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: mostafa <mostafa.s1990@gmail.com>\n"
8
+ "Language-Team: Persian Wordpress <Mostafa.s1990@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Persian\n"
13
+ "X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e\n"
16
+ "X-Poedit-Basepath: F:\\Program Files\\apserv\\AppServ\\www\\wordpress\\wp-content\\plugins\\wp-pagenavi\n"
17
+ "X-Poedit-SearchPath-0: F:\\Program Files\\apserv\\AppServ\\www\\wordpress\\wp-content\\plugins\\wp-pagenavi\n"
18
+
19
+ #: F:\Program
20
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:46
21
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:107
22
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:171
23
+ msgid "Page Navigation Options"
24
+ msgstr "تنظیمات شماره بندی صفحات"
25
+
26
+ #: F:\Program
27
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:51
28
+ msgid "Updated"
29
+ msgstr "به روز رسانی"
30
+
31
+ #: F:\Program
32
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:56
33
+ msgid "No Page Navigation Option Updated"
34
+ msgstr "تنظیمات شماره بندی صفحان به روز رسانی نشد"
35
+
36
+ #: F:\Program
37
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:62
38
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:240
39
+ msgid "UNINSTALL WP-PageNavi"
40
+ msgstr "حذف این پلاگین"
41
+
42
+ #: F:\Program
43
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:70
44
+ #, php-format
45
+ msgid "Setting Key '%s' has been deleted."
46
+ msgstr ""
47
+
48
+ #: F:\Program
49
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:74
50
+ #, php-format
51
+ msgid "Error deleting Setting Key '%s'."
52
+ msgstr ""
53
+
54
+ #: F:\Program
55
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:96
56
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:208
57
+ msgid "Uninstall WP-PageNavi"
58
+ msgstr "حذف این پلاگین"
59
+
60
+ #: F:\Program
61
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:97
62
+ #, php-format
63
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
64
+ msgstr ""
65
+
66
+ #: F:\Program
67
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:108
68
+ msgid "Page Navigation Text"
69
+ msgstr "متن شماره بندی صفحات"
70
+
71
+ #: F:\Program
72
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:111
73
+ msgid "Text For Number Of Pages"
74
+ msgstr "متن برای شماره از صفحات"
75
+
76
+ #: F:\Program
77
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:114
78
+ msgid "The current page number."
79
+ msgstr "تعداد صفحات جاری."
80
+
81
+ #: F:\Program
82
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:115
83
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:136
84
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:143
85
+ msgid "The total number of pages."
86
+ msgstr "کل شماره از صفحات."
87
+
88
+ #: F:\Program
89
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:119
90
+ msgid "Text For Current Page"
91
+ msgstr "متن برای صفحه جاری"
92
+
93
+ #: F:\Program
94
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:122
95
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:129
96
+ msgid "The page number."
97
+ msgstr "شماره صفحه."
98
+
99
+ #: F:\Program
100
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:126
101
+ msgid "Text For Page"
102
+ msgstr "متن برای صفحات"
103
+
104
+ #: F:\Program
105
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:133
106
+ msgid "Text For First Post"
107
+ msgstr "متن برای نوشته بعدی"
108
+
109
+ #: F:\Program
110
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:140
111
+ msgid "Text For Last Post"
112
+ msgstr "متن برای صفحه قبلی"
113
+
114
+ #: F:\Program
115
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:147
116
+ msgid "Text For Next Post"
117
+ msgstr "متن بعد از نوشته بعدی"
118
+
119
+ #: F:\Program
120
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:153
121
+ msgid "Text For Previous Post"
122
+ msgstr "متن قبل از نوشته قبلی"
123
+
124
+ #: F:\Program
125
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:159
126
+ msgid "Text For Next ..."
127
+ msgstr "نوشته برای بعدی..."
128
+
129
+ #: F:\Program
130
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:165
131
+ msgid "Text For Previous ..."
132
+ msgstr "نوشته برای قبلی..."
133
+
134
+ #: F:\Program
135
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:174
136
+ msgid "Page Navigation Style"
137
+ msgstr "قالب شماره صفحات"
138
+
139
+ #: F:\Program
140
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:177
141
+ msgid "Normal"
142
+ msgstr "معمولی"
143
+
144
+ #: F:\Program
145
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:178
146
+ msgid "Drop Down List"
147
+ msgstr "به صورت فهرست"
148
+
149
+ #: F:\Program
150
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:183
151
+ msgid "Number Of Pages To Show?"
152
+ msgstr "تعداد شماره صفحه برای نمایش؟"
153
+
154
+ #: F:\Program
155
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:189
156
+ msgid "Always Show Page Navigation?"
157
+ msgstr "همیشه شماره صفحات نمایش داده شود؟"
158
+
159
+ #: F:\Program
160
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:192
161
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:239
162
+ msgid "Yes"
163
+ msgstr "بله"
164
+
165
+ #: F:\Program
166
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:193
167
+ msgid "No"
168
+ msgstr "خیر"
169
+
170
+ #: F:\Program
171
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:199
172
+ msgid "Save Changes"
173
+ msgstr "ذخیره تغییرات"
174
+
175
+ #: F:\Program
176
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:210
177
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
178
+ msgstr "برای حذف پلاگین, ابتدا WP-PageNavi را غیر فعال کنید, با حذف کامل این افزونه, تنظیمات آن از بین نمی رود."
179
+
180
+ #: F:\Program
181
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:213
182
+ msgid "WARNING:"
183
+ msgstr "اخطار:"
184
+
185
+ #: F:\Program
186
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:214
187
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
188
+ msgstr ""
189
+
190
+ #: F:\Program
191
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:217
192
+ msgid "The following WordPress Options will be DELETED:"
193
+ msgstr "شرح حذفیات در تنظیمات وردپرس:"
194
+
195
+ #: F:\Program
196
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:222
197
+ msgid "WordPress Options"
198
+ msgstr "تنظیمات وردپرس"
199
+
200
+ #: F:\Program
201
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/pagenavi-options.php:240
202
+ msgid ""
203
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
204
+ "This Action Is Not Reversible.\\n"
205
+ "\\n"
206
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
207
+ msgstr ""
208
+
209
+ #: F:\Program
210
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/wp-pagenavi.php:61
211
+ msgid "PageNavi"
212
+ msgstr "شماره صفحات"
213
+
214
+ #: F:\Program
215
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/wp-pagenavi.php:197
216
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
217
+ msgstr "صفحه %CURRENT_PAGE% از %TOTAL_PAGES%"
218
+
219
+ #: F:\Program
220
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/wp-pagenavi.php:200
221
+ msgid "&laquo; First"
222
+ msgstr "&laquo; بعدی"
223
+
224
+ #: F:\Program
225
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/wp-pagenavi.php:201
226
+ msgid "Last &raquo;"
227
+ msgstr "قبلی &raquo;"
228
+
229
+ #: F:\Program
230
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/wp-pagenavi.php:202
231
+ msgid "&raquo;"
232
+ msgstr "&raquo;"
233
+
234
+ #: F:\Program
235
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/wp-pagenavi.php:203
236
+ msgid "&laquo;"
237
+ msgstr "&laquo;"
238
+
239
+ #: F:\Program
240
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/wp-pagenavi.php:204
241
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-pagenavi/wp-pagenavi.php:205
242
+ msgid "..."
243
+ msgstr "..."
244
+
lang/wp-pagenavi-fr_FR.mo ADDED
Binary file
lang/wp-pagenavi-fr_FR.po ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of the WordPress plugin WP-PageNavi 2.70 by Lester 'GaMerZ' Chan.
2
+ # Copyright (C) 2010 Lester 'GaMerZ' Chan
3
+ # This file is distributed under the same license as the WP-PageNavi package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: WP-PageNavi 2.70\n"
9
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-pagenavi\n"
10
+ "POT-Creation-Date: 2010-04-11 15:18+0000\n"
11
+ "PO-Revision-Date: 2010-04-16 15:27+0100\n"
12
+ "Last-Translator: Lionel Chollet <lionel.chollet@gmail.com>\n"
13
+ "Language-Team: Lionel Chollet <lionel.chollet@gmail.com>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=utf-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Poedit-Language: French\n"
18
+ "X-Poedit-Country: FRANCE\n"
19
+ "X-Poedit-SourceCharset: utf-8\n"
20
+
21
+ #: admin.php:9
22
+ msgid "PageNavi Settings"
23
+ msgstr "Réglages WP-PageNavi"
24
+
25
+ #: admin.php:10
26
+ msgid "PageNavi"
27
+ msgstr "WP-PageNavi"
28
+
29
+ #: admin.php:27
30
+ msgid "Text For Number Of Pages"
31
+ msgstr "Texte pour le nombre de pages"
32
+
33
+ #: admin.php:32
34
+ msgid "The current page number."
35
+ msgstr "Le numéro de la page active."
36
+
37
+ #: admin.php:33
38
+ #: admin.php:57
39
+ #: admin.php:65
40
+ msgid "The total number of pages."
41
+ msgstr "Le nombre total de pages."
42
+
43
+ #: admin.php:37
44
+ msgid "Text For Current Page"
45
+ msgstr "Texte pour la page affichée"
46
+
47
+ #: admin.php:41
48
+ #: admin.php:49
49
+ msgid "The page number."
50
+ msgstr "Le numéro de page."
51
+
52
+ #: admin.php:45
53
+ msgid "Text For Page"
54
+ msgstr "Texte pour les pages"
55
+
56
+ #: admin.php:53
57
+ msgid "Text For First Page"
58
+ msgstr "Texte pour la première page"
59
+
60
+ #: admin.php:61
61
+ msgid "Text For Last Page"
62
+ msgstr "Texte pour la dernière page"
63
+
64
+ #: admin.php:69
65
+ msgid "Text For Previous Page"
66
+ msgstr "Texte pour la page précédente"
67
+
68
+ #: admin.php:75
69
+ msgid "Text For Next Page"
70
+ msgstr "Texte pour la page suivante"
71
+
72
+ #: admin.php:81
73
+ msgid "Text For Previous ..."
74
+ msgstr "Texte pour les pages intermédiaires précédentes"
75
+
76
+ #: admin.php:87
77
+ msgid "Text For Next ..."
78
+ msgstr "Texte pour les pages intermédiaires suivantes"
79
+
80
+ #: admin.php:94
81
+ msgid "Page Navigation Text"
82
+ msgstr "Textes pour les liens de navigation"
83
+
84
+ #: admin.php:95
85
+ msgid "Leaving a field blank will hide that part of the navigation."
86
+ msgstr "Laisser un champ vide masquera cet élément de la navigation."
87
+
88
+ #: admin.php:101
89
+ msgid "Use pagenavi.css"
90
+ msgstr "Utiliser la feuille de style pagenavi.css"
91
+
92
+ #: admin.php:107
93
+ msgid "Page Navigation Style"
94
+ msgstr "Style de présentation de la navigation"
95
+
96
+ #: admin.php:110
97
+ msgid "Normal"
98
+ msgstr "Normal"
99
+
100
+ #: admin.php:110
101
+ msgid "Drop Down List"
102
+ msgstr "Menu déroulant"
103
+
104
+ #: admin.php:115
105
+ msgid "Always Show Page Navigation"
106
+ msgstr "Toujours afficher la navigation WP-PageNavi"
107
+
108
+ #: admin.php:118
109
+ msgid "Show navigation even if there's only one page"
110
+ msgstr "La navigation WP-PageNavi sera affichée même s’il n’y a qu’une seule page."
111
+
112
+ #: admin.php:122
113
+ msgid "Number Of Pages To Show"
114
+ msgstr "Nombre de pages à afficher"
115
+
116
+ #: admin.php:129
117
+ msgid "Number Of Larger Page Numbers To Show"
118
+ msgstr "Nombre d’étapes intermédiaires de pagination à afficher"
119
+
120
+ #: admin.php:134
121
+ msgid "Larger page numbers are in addition to the normal page numbers. They are useful when there are many pages of posts."
122
+ msgstr "Les étapes intermédiaires de pagination sont utiles sur les sites comprenant un très grand nombre d’articles."
123
+
124
+ #: admin.php:135
125
+ msgid "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
126
+ msgstr "Par exemple, WP-PageNavi affichera les liens vers les pages&nbsp;: 1, 2, 3, 4, 5, 10, 20, 30, 40, 50…"
127
+
128
+ #: admin.php:136
129
+ msgid "Enter 0 to disable."
130
+ msgstr "Mettez 0 pour ne pas inclure d’étapes intermédiaires de pagination."
131
+
132
+ #: admin.php:140
133
+ msgid "Show Larger Page Numbers In Multiples Of"
134
+ msgstr "Afficher les étapes intermédiaires de pagination en multiples de"
135
+
136
+ #: admin.php:145
137
+ msgid "For example, if mutiple is 5, it will show: 5, 10, 15, 20, 25"
138
+ msgstr "Par exemple, si vous choisissez des étapes multiples de 5, WP-PageNavi affichera&nbsp;: 5, 10, 15, 20, 25…"
139
+
140
+ #: admin.php:150
141
+ msgid "Page Navigation Options"
142
+ msgstr "Options WP-PageNavi"
143
+
144
+ #: scb/AdminPage.php:165
145
+ #: scb/AdminPage.php:176
146
+ msgid "Save Changes"
147
+ msgstr "Enregistrer les réglages"
148
+
149
+ #: scb/AdminPage.php:279
150
+ msgid "Settings <strong>saved</strong>."
151
+ msgstr "Réglages <strong>enregistrés</strong>."
152
+
153
+ #: scb/AdminPage.php:337
154
+ msgid "Settings"
155
+ msgstr "Réglages"
156
+
157
+ #: wp-pagenavi.php:222
158
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
159
+ msgstr "Page %CURRENT_PAGE% sur %TOTAL_PAGES%"
160
+
161
+ #: wp-pagenavi.php:225
162
+ msgid "&laquo; First"
163
+ msgstr "&laquo; Première page"
164
+
165
+ #: wp-pagenavi.php:226
166
+ msgid "Last &raquo;"
167
+ msgstr "Dernière page &raquo;"
168
+
169
+ #: wp-pagenavi.php:227
170
+ msgid "&laquo;"
171
+ msgstr "&laquo;"
172
+
173
+ #: wp-pagenavi.php:228
174
+ msgid "&raquo;"
175
+ msgstr "&raquo;"
176
+
177
+ #: wp-pagenavi.php:229
178
+ #: wp-pagenavi.php:230
179
+ msgid "..."
180
+ msgstr "…"
181
+
182
+ #. Plugin Name of the plugin/theme
183
+ msgid "WP-PageNavi"
184
+ msgstr "WP-PageNavi"
185
+
186
+ #. Plugin URI of the plugin/theme
187
+ msgid "http://wordpress.org/extend/plugins/wp-pagenavi/"
188
+ msgstr "http://wordpress.org/extend/plugins/wp-pagenavi/"
189
+
190
+ #. Description of the plugin/theme
191
+ msgid "Adds a more advanced paging navigation to your WordPress blog."
192
+ msgstr "Permet à vos visiteurs une meilleure navigation dans les pages de votre site WordPress."
193
+
194
+ #. Author of the plugin/theme
195
+ msgid "Lester 'GaMerZ' Chan"
196
+ msgstr "Lester 'GaMerZ' Chan"
197
+
198
+ #. Author URI of the plugin/theme
199
+ msgid "http://lesterchan.net"
200
+ msgstr "http://lesterchan.net"
201
+
lang/wp-pagenavi-it_IT.mo ADDED
Binary file
lang/wp-pagenavi-it_IT.po ADDED
@@ -0,0 +1,257 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP PageNavi\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-pagenavi\n"
5
+ "POT-Creation-Date: 2010-04-18 11:47+0300\n"
6
+ "PO-Revision-Date: 2010-04-18 12:00+0100\n"
7
+ "Last-Translator: Aldo Latino <aldolat@gmail.com>\n"
8
+ "Language-Team: Aldo Latino <aldolat@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Italian\n"
13
+ "X-Poedit-Country: ITALY\n"
14
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+
16
+ #: admin.php:9
17
+ msgid "PageNavi Settings"
18
+ msgstr "Opzioni di PageNavi"
19
+
20
+ #: admin.php:10
21
+ msgid "PageNavi"
22
+ msgstr "PageNavi"
23
+
24
+ #: admin.php:27
25
+ msgid "Text For Number Of Pages"
26
+ msgstr "Testo per il numero di pagina"
27
+
28
+ #: admin.php:32
29
+ msgid "The current page number."
30
+ msgstr "Il numero di pagina corrente."
31
+
32
+ #: admin.php:33
33
+ #: admin.php:57
34
+ #: admin.php:65
35
+ msgid "The total number of pages."
36
+ msgstr "Il numero totale di pagine."
37
+
38
+ #: admin.php:37
39
+ msgid "Text For Current Page"
40
+ msgstr "Testo per la pagina corrente"
41
+
42
+ #: admin.php:41
43
+ #: admin.php:49
44
+ msgid "The page number."
45
+ msgstr "Il numero di pagina."
46
+
47
+ #: admin.php:45
48
+ msgid "Text For Page"
49
+ msgstr "Testo per la pagina"
50
+
51
+ #: admin.php:53
52
+ msgid "Text For First Page"
53
+ msgstr "Testo per la prima pagina"
54
+
55
+ #: admin.php:61
56
+ msgid "Text For Last Page"
57
+ msgstr "Testo per l'ultima pagina"
58
+
59
+ #: admin.php:69
60
+ msgid "Text For Previous Page"
61
+ msgstr "Testo per la pagina precedente"
62
+
63
+ #: admin.php:75
64
+ msgid "Text For Next Page"
65
+ msgstr "Testo per la pagina successiva"
66
+
67
+ #: admin.php:81
68
+ msgid "Text For Previous ..."
69
+ msgstr "Testo per Precedente ..."
70
+
71
+ #: admin.php:87
72
+ msgid "Text For Next ..."
73
+ msgstr "Testo per Successiva ..."
74
+
75
+ #: admin.php:94
76
+ msgid "Page Navigation Text"
77
+ msgstr "Testo per la navigazione delle pagine"
78
+
79
+ #: admin.php:95
80
+ msgid "Leaving a field blank will hide that part of the navigation."
81
+ msgstr "Se si lascia un campo bianco, quella parte della navigazione sarà nascosta."
82
+
83
+ #: admin.php:101
84
+ msgid "Use pagenavi-css.css"
85
+ msgstr "Usare pagenavi-css.css?"
86
+
87
+ #: admin.php:107
88
+ msgid "Page Navigation Style"
89
+ msgstr "Stile per la navigazione delle pagine"
90
+
91
+ #: admin.php:110
92
+ msgid "Normal"
93
+ msgstr "Normale"
94
+
95
+ #: admin.php:110
96
+ msgid "Drop-down List"
97
+ msgstr "Elenco con menu a discesa"
98
+
99
+ #: admin.php:115
100
+ msgid "Always Show Page Navigation"
101
+ msgstr "Mostrare sempre la navigazione delle pagine?"
102
+
103
+ #: admin.php:118
104
+ msgid "Show navigation even if there's only one page."
105
+ msgstr "Mostra la navigazione anche se esiste solo una pagina."
106
+
107
+ #: admin.php:122
108
+ msgid "Number Of Pages To Show"
109
+ msgstr "Numero di pagine da mostrare"
110
+
111
+ #: admin.php:129
112
+ msgid "Number Of Larger Page Numbers To Show"
113
+ msgstr "Quanti numeri di pagina raggruppati mostrare?"
114
+
115
+ #: admin.php:134
116
+ msgid "Larger page numbers are in addition to the normal page numbers. They are useful when there are many pages of posts."
117
+ msgstr "I numeri di pagina raggruppati vengono mostrati in aggiunta ai soliti numeri di pagina. Si rivelano utili quando le pagine di articoli sono molte."
118
+
119
+ #: admin.php:135
120
+ msgid "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50."
121
+ msgstr "Per esempio, WP-PageNavi mostrerà: Pagine 1, 2, 3, 4, 5, 10, 20, 30, 40, 50."
122
+
123
+ #: admin.php:136
124
+ msgid "Enter 0 to disable."
125
+ msgstr "Inserire 0 per disabilitare"
126
+
127
+ #: admin.php:140
128
+ msgid "Show Larger Page Numbers In Multiples Of"
129
+ msgstr "Mostra i numeri raggruppati di pagina in multipli di"
130
+
131
+ #: admin.php:145
132
+ msgid "For example, if mutiple is 5, it will show: 5, 10, 15, 20, 25"
133
+ msgstr "Per esempio, se il multiplo è 5, mostrerà: 5, 10, 15, 20, 25"
134
+
135
+ #: admin.php:150
136
+ msgid "Page Navigation Options"
137
+ msgstr "Opzioni per la navigazione delle pagine"
138
+
139
+ #: scb/AdminPage.php:165
140
+ #: scb/AdminPage.php:176
141
+ msgid "Save Changes"
142
+ msgstr "Salva i cambiamenti"
143
+
144
+ #: scb/AdminPage.php:279
145
+ msgid "Settings <strong>saved</strong>."
146
+ msgstr "Impostazioni <strong>salvate</strong>."
147
+
148
+ #: scb/AdminPage.php:337
149
+ msgid "Settings"
150
+ msgstr "Impostazioni"
151
+
152
+ #: wp-pagenavi.php:223
153
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
154
+ msgstr "Pagina %CURRENT_PAGE% di %TOTAL_PAGES%"
155
+
156
+ #: wp-pagenavi.php:226
157
+ msgid "&laquo; First"
158
+ msgstr "&laquo; Prima"
159
+
160
+ #: wp-pagenavi.php:227
161
+ msgid "Last &raquo;"
162
+ msgstr "Ultima &raquo;"
163
+
164
+ #: wp-pagenavi.php:228
165
+ msgid "&laquo;"
166
+ msgstr "&laquo;"
167
+
168
+ #: wp-pagenavi.php:229
169
+ msgid "&raquo;"
170
+ msgstr "&raquo;"
171
+
172
+ #: wp-pagenavi.php:230
173
+ #: wp-pagenavi.php:231
174
+ msgid "..."
175
+ msgstr "..."
176
+
177
+ #. Plugin Name of the plugin/theme
178
+ msgid "WP-PageNavi"
179
+ msgstr "WP-PageNavi"
180
+
181
+ #. Plugin URI of the plugin/theme
182
+ msgid "http://wordpress.org/extend/plugins/wp-pagenavi/"
183
+ msgstr "http://wordpress.org/extend/plugins/wp-pagenavi/"
184
+
185
+ #. Description of the plugin/theme
186
+ msgid "Adds a more advanced paging navigation to your WordPress blog"
187
+ msgstr "Aggiunge una navigazione più avanzata al tuo blog WordPress"
188
+
189
+ #. Author of the plugin/theme
190
+ msgid "Lester 'GaMerZ' Chan & scribu"
191
+ msgstr "Lester 'GaMerZ' Chan & scribu"
192
+
193
+ #~ msgid "http://lesterchan.net"
194
+ #~ msgstr "http://lesterchan.net"
195
+ #~ msgid "Updated"
196
+ #~ msgstr "Aggiornato"
197
+ #~ msgid "No Page Navigation Option Updated"
198
+ #~ msgstr "Le opzioni di Page Navigation non sono state aggiornate"
199
+ #~ msgid "UNINSTALL WP-PageNavi"
200
+ #~ msgstr "DISINSTALLA WP-PageNavi"
201
+ #~ msgid "Setting Key '%s' has been deleted."
202
+ #~ msgstr "La chiave di impostazione '%s' è stata cancellata."
203
+ #~ msgid "Error deleting Setting Key '%s'."
204
+ #~ msgstr "Errore nel cancellare la chiave di impostazione '%s'."
205
+ #~ msgid "Uninstall WP-PageNavi"
206
+ #~ msgstr "Disinstalla WP-PageNavi"
207
+ #~ msgid ""
208
+ #~ "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-"
209
+ #~ "PageNavi Will Be Deactivated Automatically."
210
+ #~ msgstr ""
211
+ #~ "<a href=\"%s\">Fare clic qui</a> per completare la disinstallazione e WP-"
212
+ #~ "PageNavi sarà disattivato automaticamente."
213
+ #~ msgid "If mutiple is in 10, it will show: 10, 20, 30, 40, 50"
214
+ #~ msgstr "Se il multiplo è in 10, mostrerà: 10, 20, 30, 40, 50"
215
+ #~ msgid ""
216
+ #~ "Deactivating WP-PageNavi plugin does not remove any data that may have "
217
+ #~ "been created, such as the page navigation options. To completely remove "
218
+ #~ "this plugin, you can uninstall it here."
219
+ #~ msgstr ""
220
+ #~ "La disattivazione del plugin WP-PageNavi non rimuove alcun dato che possa "
221
+ #~ "essere stato creato, come le opzioni di Page Navigation. Per rimuovere "
222
+ #~ "completamente questo plugin, lo si può disinstallare da qui."
223
+ #~ msgid "WARNING:"
224
+ #~ msgstr "ATTENZIONE:"
225
+ #~ msgid ""
226
+ #~ "Once uninstalled, this cannot be undone. You should use a Database Backup "
227
+ #~ "plugin of WordPress to back up all the data first."
228
+ #~ msgstr ""
229
+ #~ "La disinstallazione non può essere annullata. Si dovrebbe prima "
230
+ #~ "utilizzare un plugin di WordPress per il backup del database per fare il "
231
+ #~ "backup dei dati."
232
+ #~ msgid "The following WordPress Options will be DELETED:"
233
+ #~ msgstr "Le seguenti opzioni di WordPress saranno CANCELLATE:"
234
+ #~ msgid "WordPress Options"
235
+ #~ msgstr "Opzioni di WordPress"
236
+ #~ msgid ""
237
+ #~ "You Are About To Uninstall WP-PageNavi From WordPress.\\nThis Action Is "
238
+ #~ "Not Reversible.\\n\\n Choose [Cancel] To Stop, [OK] To Uninstall."
239
+ #~ msgstr ""
240
+ #~ "Si sta per disinstallare WP-PageNavi da WordPress.\\nQuesta azione non è "
241
+ #~ "annullabile.\\n\\n Scegliere [Annulla] per fermare l'operazione, [OK] per "
242
+ #~ "proseguire."
243
+ #~ msgid "http://lesterchan.net/portfolio/programming/php/"
244
+ #~ msgstr "http://lesterchan.net/portfolio/programming/php/"
245
+ #~ msgid "Text For Last Post"
246
+ #~ msgstr "Testo per l'ultimo post"
247
+ #~ msgid "Text For Next Post"
248
+ #~ msgstr "Testo per il post successivo"
249
+ #~ msgid "Yes"
250
+ #~ msgstr "Sì"
251
+ #~ msgid "No"
252
+ #~ msgstr "No"
253
+ #~ msgid "Update Options"
254
+ #~ msgstr "Aggiorna le opzioni"
255
+ #~ msgid "Cancel"
256
+ #~ msgstr "Annulla"
257
+
lang/wp-pagenavi-ko_KR.mo ADDED
Binary file
lang/wp-pagenavi-ko_KR.po ADDED
@@ -0,0 +1,206 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Korean by Soul\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-10 00:43+0800\n"
6
+ "PO-Revision-Date: 2009-02-19 03:51-0500\n"
7
+ "Last-Translator: Jong-In Kim <soulofpure@hotmail.com>\n"
8
+ "Language-Team: Jong-In Kim <soulofpure@hotmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Korean\n"
13
+ "X-Poedit-Country: KOREA, REPUBLIC OF\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: pagenavi-options.php:46
20
+ #: pagenavi-options.php:108
21
+ #: pagenavi-options.php:172
22
+ msgid "Page Navigation Options"
23
+ msgstr "페이지 네비게이션 옵션"
24
+
25
+ #: pagenavi-options.php:51
26
+ msgid "Updated"
27
+ msgstr "업데이트됨"
28
+
29
+ #: pagenavi-options.php:56
30
+ msgid "No Page Navigation Option Updated"
31
+ msgstr "페이지 네비게이션 옵션이 업데이트된 것이 없음"
32
+
33
+ #: pagenavi-options.php:62
34
+ #: pagenavi-options.php:241
35
+ msgid "UNINSTALL WP-PageNavi"
36
+ msgstr "WP-PageNavi 삭제"
37
+
38
+ #: pagenavi-options.php:70
39
+ #, php-format
40
+ msgid "Setting Key '%s' has been deleted."
41
+ msgstr "설정 Key '%s' 가 삭제되었음."
42
+
43
+ #: pagenavi-options.php:74
44
+ #, php-format
45
+ msgid "Error deleting Setting Key '%s'."
46
+ msgstr "설정 Key '%s' 를 삭제하는 중 에러."
47
+
48
+ #: pagenavi-options.php:96
49
+ #: pagenavi-options.php:209
50
+ msgid "Uninstall WP-PageNavi"
51
+ msgstr "WP-PageNavi 삭제"
52
+
53
+ #: pagenavi-options.php:97
54
+ #, php-format
55
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
56
+ msgstr "<a href=\"%s\">여기 클릭</a>제거를 끝내고 WP-PageNavi 는 자동으로 비활성화 될 것 입니다."
57
+
58
+ #: pagenavi-options.php:109
59
+ msgid "Page Navigation Text"
60
+ msgstr "페이지 네비게이션 텍스트"
61
+
62
+ #: pagenavi-options.php:112
63
+ msgid "Text For Number Of Pages"
64
+ msgstr "페이지의 번호를 위한 텍스트"
65
+
66
+ #: pagenavi-options.php:115
67
+ msgid "The current page number."
68
+ msgstr "현재 페이지 번호."
69
+
70
+ #: pagenavi-options.php:116
71
+ #: pagenavi-options.php:137
72
+ #: pagenavi-options.php:144
73
+ msgid "The total number of pages."
74
+ msgstr "페이지의 총 갯수."
75
+
76
+ #: pagenavi-options.php:120
77
+ msgid "Text For Current Page"
78
+ msgstr "현재 페이지를 위한 텍스트"
79
+
80
+ #: pagenavi-options.php:123
81
+ #: pagenavi-options.php:130
82
+ msgid "The page number."
83
+ msgstr "페이지 번호."
84
+
85
+ #: pagenavi-options.php:127
86
+ msgid "Text For Page"
87
+ msgstr "페이지를 위한 텍스트"
88
+
89
+ #: pagenavi-options.php:134
90
+ msgid "Text For First Post"
91
+ msgstr "처음 글을 위한 텍스트"
92
+
93
+ #: pagenavi-options.php:141
94
+ msgid "Text For Last Post"
95
+ msgstr "마지막 글을 위한 텍스트"
96
+
97
+ #: pagenavi-options.php:148
98
+ msgid "Text For Next Post"
99
+ msgstr "다음 글을 위한 텍스트"
100
+
101
+ #: pagenavi-options.php:154
102
+ msgid "Text For Previous Post"
103
+ msgstr "이전 글을 위한 텍스트"
104
+
105
+ #: pagenavi-options.php:160
106
+ msgid "Text For Next ..."
107
+ msgstr "다음을 위한 텍스트 ..."
108
+
109
+ #: pagenavi-options.php:166
110
+ msgid "Text For Previous ..."
111
+ msgstr "이전을 위한 텍스트 ..."
112
+
113
+ #: pagenavi-options.php:175
114
+ msgid "Page Navigation Style"
115
+ msgstr "페이지 네비게이션 스타일"
116
+
117
+ #: pagenavi-options.php:178
118
+ msgid "Normal"
119
+ msgstr "보통"
120
+
121
+ #: pagenavi-options.php:179
122
+ msgid "Drop Down List"
123
+ msgstr "드랍 다운 리스트"
124
+
125
+ #: pagenavi-options.php:184
126
+ msgid "Number Of Pages To Show?"
127
+ msgstr "보여줄 페이지의 수?"
128
+
129
+ #: pagenavi-options.php:190
130
+ msgid "Always Show Page Navigation?"
131
+ msgstr "항상 페이지 네비게이션을 보입니까?"
132
+
133
+ #: pagenavi-options.php:193
134
+ #: pagenavi-options.php:240
135
+ msgid "Yes"
136
+ msgstr "예"
137
+
138
+ #: pagenavi-options.php:194
139
+ msgid "No"
140
+ msgstr "아니오"
141
+
142
+ #: pagenavi-options.php:200
143
+ msgid "Save Changes"
144
+ msgstr "변경 저장"
145
+
146
+ #: pagenavi-options.php:211
147
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
148
+ msgstr "WP-PageNavi 플러그인의 비활성화는 생성되었던 데이터를 제거하지 않습니다(예를 들어 페이지 네비게이션 옵션). 이 플러그인을 완전히 제거하려면 여기서 삭제하세요."
149
+
150
+ #: pagenavi-options.php:214
151
+ msgid "WARNING:"
152
+ msgstr "경고:"
153
+
154
+ #: pagenavi-options.php:215
155
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
156
+ msgstr "제거 후에는 복구 할 수 없습니다. 워드프레스의 데이터베이스 백업 플러그인으로 모든 데이터를 백업부터 해야합니다."
157
+
158
+ #: pagenavi-options.php:218
159
+ msgid "The following WordPress Options will be DELETED:"
160
+ msgstr "다음의 워드프레스 옵션은 삭제됩니다:"
161
+
162
+ #: pagenavi-options.php:223
163
+ msgid "WordPress Options"
164
+ msgstr "워드프레스 옵션"
165
+
166
+ #: pagenavi-options.php:241
167
+ msgid ""
168
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
169
+ "This Action Is Not Reversible.\\n"
170
+ "\\n"
171
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
172
+ msgstr ""
173
+ "워드프레스에서 WP-PageNavi 를 삭제합니다.\\n"
174
+ "이 동작은 복구할 수 없습니다.\\n"
175
+ "\\n"
176
+ " 멈추려면 [취소] 를, [예] 를 누르면 삭제됩니다."
177
+
178
+ #: wp-pagenavi.php:42
179
+ msgid "PageNavi"
180
+ msgstr "페이지네비"
181
+
182
+ #: wp-pagenavi.php:179
183
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
184
+ msgstr "페이지 %CURRENT_PAGE% 의 %TOTAL_PAGES%"
185
+
186
+ #: wp-pagenavi.php:182
187
+ msgid "&laquo; First"
188
+ msgstr "&laquo; 처음"
189
+
190
+ #: wp-pagenavi.php:183
191
+ msgid "Last &raquo;"
192
+ msgstr "마지막 &raquo;"
193
+
194
+ #: wp-pagenavi.php:184
195
+ msgid "&raquo;"
196
+ msgstr "&raquo;"
197
+
198
+ #: wp-pagenavi.php:185
199
+ msgid "&laquo;"
200
+ msgstr "&laquo;"
201
+
202
+ #: wp-pagenavi.php:186
203
+ #: wp-pagenavi.php:187
204
+ msgid "..."
205
+ msgstr "..."
206
+
lang/wp-pagenavi-nl_NL.mo ADDED
Binary file
lang/wp-pagenavi-nl_NL.po ADDED
@@ -0,0 +1,211 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-PageNavi 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-12 00:39+0800\n"
6
+ "PO-Revision-Date: 2008-12-12 00:39+0800\n"
7
+ "Last-Translator: Lester Chan <lesterchan@gmail.com>\n"
8
+ "Language-Team: werkgroepen.net <team@werkgroepen.net>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Dutch\n"
13
+ "X-Poedit-Country: NETHERLANDS\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: pagenavi-options.php:46
19
+ #: pagenavi-options.php:108
20
+ #: pagenavi-options.php:172
21
+ msgid "Page Navigation Options"
22
+ msgstr "Pagina navigatie opties"
23
+
24
+ #: pagenavi-options.php:51
25
+ msgid "Updated"
26
+ msgstr "Bijgewerkt"
27
+
28
+ #: pagenavi-options.php:56
29
+ msgid "No Page Navigation Option Updated"
30
+ msgstr "Er is niets bijgewerkt"
31
+
32
+ #: pagenavi-options.php:62
33
+ #: pagenavi-options.php:241
34
+ msgid "UNINSTALL WP-PageNavi"
35
+ msgstr "D&#201;-INSTALLEER WP-PageNavi"
36
+
37
+ #: pagenavi-options.php:70
38
+ #, php-format
39
+ msgid "Setting Key '%s' has been deleted."
40
+ msgstr "Instellingssleutel '%s' is verwijderd."
41
+
42
+ #: pagenavi-options.php:74
43
+ #, php-format
44
+ msgid "Error deleting Setting Key '%s'."
45
+ msgstr "Fout bij verwijderen instellingssleutel '%s'."
46
+
47
+ #: pagenavi-options.php:96
48
+ #: pagenavi-options.php:209
49
+ msgid "Uninstall WP-PageNavi"
50
+ msgstr "D&#233;-installer WP-PageNavi"
51
+
52
+ #: pagenavi-options.php:97
53
+ #, php-format
54
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
55
+ msgstr "<a href=\"%s\">Klik hier</a> om het D&#233;-installatie proces af te ronden en WP-PageNavi zal automatisch gedeactiveerd worden."
56
+
57
+ #: pagenavi-options.php:109
58
+ msgid "Page Navigation Text"
59
+ msgstr "Pagina navigatie tekst"
60
+
61
+ #: pagenavi-options.php:112
62
+ msgid "Text For Number Of Pages"
63
+ msgstr "Tekst voor aantal pagina&#39;s"
64
+
65
+ #: pagenavi-options.php:115
66
+ msgid "The current page number."
67
+ msgstr "Het huidige pagina nummer."
68
+
69
+ #: pagenavi-options.php:116
70
+ #: pagenavi-options.php:137
71
+ #: pagenavi-options.php:144
72
+ msgid "The total number of pages."
73
+ msgstr "Het totaal aantal pagina&#39;s"
74
+
75
+ #: pagenavi-options.php:120
76
+ msgid "Text For Current Page"
77
+ msgstr "Tekst voor de huidige pagina"
78
+
79
+ #: pagenavi-options.php:123
80
+ #: pagenavi-options.php:130
81
+ msgid "The page number."
82
+ msgstr "Het pagina nummer"
83
+
84
+ #: pagenavi-options.php:127
85
+ msgid "Text For Page"
86
+ msgstr "Tekst voor pagina"
87
+
88
+ #: pagenavi-options.php:134
89
+ msgid "Text For First Post"
90
+ msgstr "Tekst voor de meest recente pagina"
91
+
92
+ #: pagenavi-options.php:141
93
+ msgid "Text For Last Post"
94
+ msgstr "Tekst voor de minst recente pagina"
95
+
96
+ #: pagenavi-options.php:148
97
+ msgid "Text For Next Post"
98
+ msgstr "Tekst voor het de volgende pagina"
99
+
100
+ #: pagenavi-options.php:154
101
+ msgid "Text For Previous Post"
102
+ msgstr "Tekst voor de vorige pagina"
103
+
104
+ #: pagenavi-options.php:160
105
+ msgid "Text For Next ..."
106
+ msgstr "Tekst voor volgende ..."
107
+
108
+ #: pagenavi-options.php:166
109
+ msgid "Text For Previous ..."
110
+ msgstr "Tekst voor vorige ..."
111
+
112
+ #: pagenavi-options.php:175
113
+ msgid "Page Navigation Style"
114
+ msgstr "Pagina navigatie style"
115
+
116
+ #: pagenavi-options.php:178
117
+ msgid "Normal"
118
+ msgstr "Normaal"
119
+
120
+ #: pagenavi-options.php:179
121
+ msgid "Drop Down List"
122
+ msgstr "Drop downlist (uitklapmenu)"
123
+
124
+ #: pagenavi-options.php:184
125
+ #, fuzzy
126
+ msgid "Number Of Pages To Show?"
127
+ msgstr "Hoeveel pagina&#39;s wil je tonen?"
128
+
129
+ #: pagenavi-options.php:190
130
+ msgid "Always Show Page Navigation?"
131
+ msgstr "Pagina navigatie altijd tonen?"
132
+
133
+ #: pagenavi-options.php:193
134
+ #: pagenavi-options.php:240
135
+ msgid "Yes"
136
+ msgstr "Ja"
137
+
138
+ #: pagenavi-options.php:194
139
+ msgid "No"
140
+ msgstr "Nee"
141
+
142
+ #: pagenavi-options.php:200
143
+ msgid "Save Changes"
144
+ msgstr ""
145
+
146
+ #: pagenavi-options.php:211
147
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
148
+ msgstr "Deactiveren van de WP-PageNavi plugin verwijdert geen data die je hebt aangemaakt, zoals de pagina navigatie opties. Om deze plugin compleet te verwijderen, kun je het hier d&#233;-installeren."
149
+
150
+ #: pagenavi-options.php:214
151
+ msgid "WARNING:"
152
+ msgstr "WAARSCHUWING:"
153
+
154
+ #: pagenavi-options.php:215
155
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
156
+ msgstr "Eenmaal ged&#233;-installeerd, kan dit niet ongedaan gemaakt worden. Gebruik een database backup plugin van Wordpress om eerst een backup te maken van alle data."
157
+
158
+ #: pagenavi-options.php:218
159
+ msgid "The following WordPress Options will be DELETED:"
160
+ msgstr "De volgende Wordpress opties zullen VERWIJDERD worden:"
161
+
162
+ #: pagenavi-options.php:223
163
+ msgid "WordPress Options"
164
+ msgstr "Wordpress opties"
165
+
166
+ #: pagenavi-options.php:241
167
+ msgid ""
168
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
169
+ "This Action Is Not Reversible.\\n"
170
+ "\\n"
171
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
172
+ msgstr ""
173
+ "Je staat op het punt om WP-PageNavi te d&#233;-installen van WordPress.\\n"
174
+ "Deze actie kan niet ongedaan gemaakt worden.\\n"
175
+ "\\n"
176
+ "Kies [Annulerenl] om te stoppen, [OK] om te d&#233;-installerenl."
177
+
178
+ #: wp-pagenavi.php:42
179
+ msgid "PageNavi"
180
+ msgstr "PagNavi"
181
+
182
+ #: wp-pagenavi.php:179
183
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
184
+ msgstr "Pagina %CURRENT_PAGE% van %TOTAL_PAGES%"
185
+
186
+ #: wp-pagenavi.php:182
187
+ msgid "&laquo; First"
188
+ msgstr "&laquo; Meest recente"
189
+
190
+ #: wp-pagenavi.php:183
191
+ msgid "Last &raquo;"
192
+ msgstr "Minst recente &raquo;"
193
+
194
+ #: wp-pagenavi.php:184
195
+ msgid "&raquo;"
196
+ msgstr "&raquo;"
197
+
198
+ #: wp-pagenavi.php:185
199
+ msgid "&laquo;"
200
+ msgstr "&laquo;"
201
+
202
+ #: wp-pagenavi.php:186
203
+ #: wp-pagenavi.php:187
204
+ msgid "..."
205
+ msgstr "..."
206
+
207
+ #~ msgid "Update Options"
208
+ #~ msgstr "Opties bijwerken"
209
+ #~ msgid "Cancel"
210
+ #~ msgstr "Annuleer"
211
+
lang/wp-pagenavi-ro_RO.mo ADDED
Binary file
lang/wp-pagenavi-ro_RO.po ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of the WordPress plugin WP-PageNavi 2.70 by Lester 'GaMerZ' Chan.
2
+ # Copyright (C) 2010 Lester 'GaMerZ' Chan
3
+ # This file is distributed under the same license as the WP-PageNavi package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: WP-PageNavi 2.70\n"
9
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-pagenavi\n"
10
+ "POT-Creation-Date: 2010-04-18 11:47+0300\n"
11
+ "PO-Revision-Date: 2010-04-18 11:53+0200\n"
12
+ "Last-Translator: scribu <scribu@gmail.com>\n"
13
+ "Language-Team: ro_RO <scribu@gmail.com>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Poedit-Language: Romanian\n"
18
+
19
+ #: admin.php:9
20
+ msgid "PageNavi Settings"
21
+ msgstr "Setări PageNavi"
22
+
23
+ #: admin.php:10
24
+ msgid "PageNavi"
25
+ msgstr "PageNavi"
26
+
27
+ #: admin.php:27
28
+ msgid "Text For Number Of Pages"
29
+ msgstr "Text pentru numărul de pagini"
30
+
31
+ #: admin.php:32
32
+ msgid "The current page number."
33
+ msgstr "Numărul paginii curente."
34
+
35
+ #: admin.php:33
36
+ #: admin.php:57
37
+ #: admin.php:65
38
+ msgid "The total number of pages."
39
+ msgstr "Numărul total de pagini."
40
+
41
+ #: admin.php:37
42
+ msgid "Text For Current Page"
43
+ msgstr "Text pentru pagina curentă"
44
+
45
+ #: admin.php:41
46
+ #: admin.php:49
47
+ msgid "The page number."
48
+ msgstr "Numărul paginii."
49
+
50
+ #: admin.php:45
51
+ msgid "Text For Page"
52
+ msgstr "Text pentru pagină"
53
+
54
+ #: admin.php:53
55
+ msgid "Text For First Page"
56
+ msgstr "Text pentru prima pagină"
57
+
58
+ #: admin.php:61
59
+ msgid "Text For Last Page"
60
+ msgstr "Text pentru ultima pagină"
61
+
62
+ #: admin.php:69
63
+ msgid "Text For Previous Page"
64
+ msgstr "Text pentru pagina anterioară"
65
+
66
+ #: admin.php:75
67
+ msgid "Text For Next Page"
68
+ msgstr "Text pentru pagina următoare"
69
+
70
+ #: admin.php:81
71
+ msgid "Text For Previous ..."
72
+ msgstr "Text pentru ... anterior"
73
+
74
+ #: admin.php:87
75
+ msgid "Text For Next ..."
76
+ msgstr "Text pentru ... următor"
77
+
78
+ #: admin.php:94
79
+ msgid "Page Navigation Text"
80
+ msgstr "Text pentru navigare în pagini"
81
+
82
+ #: admin.php:95
83
+ msgid "Leaving a field blank will hide that part of the navigation."
84
+ msgstr "Lăsând un câmp gol va ascunde acea parte din navigare."
85
+
86
+ #: admin.php:101
87
+ msgid "Use pagenavi-css.css"
88
+ msgstr "Folosește pagenavi-css.css"
89
+
90
+ #: admin.php:107
91
+ msgid "Page Navigation Style"
92
+ msgstr "Stil pentru navigare în pagini"
93
+
94
+ #: admin.php:110
95
+ msgid "Normal"
96
+ msgstr "Normal"
97
+
98
+ #: admin.php:110
99
+ msgid "Drop-down List"
100
+ msgstr "Listă drop-down"
101
+
102
+ #: admin.php:115
103
+ msgid "Always Show Page Navigation"
104
+ msgstr "Întotdeauna arată navigarea în pagini"
105
+
106
+ #: admin.php:118
107
+ msgid "Show navigation even if there's only one page."
108
+ msgstr "Arată navigarea chiar dacă există o singură pagină."
109
+
110
+ #: admin.php:122
111
+ msgid "Number Of Pages To Show"
112
+ msgstr "Numărul de pagini vizibile"
113
+
114
+ #: admin.php:129
115
+ msgid "Number Of Larger Page Numbers To Show"
116
+ msgstr "Numărul de numere mari de pagini vizibile"
117
+
118
+ #: admin.php:134
119
+ msgid "Larger page numbers are in addition to the normal page numbers. They are useful when there are many pages of posts."
120
+ msgstr "Numere mari de pagini sunt în completarea numerelor normale de pagini. Sunt utile"
121
+
122
+ #: admin.php:135
123
+ msgid "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50."
124
+ msgstr "De exemplu, WP-PageNavi va arăta: Pagini 1, 2, 3, 4, 5, 10, 20, 30, 40, 50."
125
+
126
+ #: admin.php:136
127
+ msgid "Enter 0 to disable."
128
+ msgstr "Introdu 0 pentru a dezactiva."
129
+
130
+ #: admin.php:140
131
+ msgid "Show Larger Page Numbers In Multiples Of"
132
+ msgstr "Arată numere mari de pagini în multipli de"
133
+
134
+ #: admin.php:145
135
+ msgid "For example, if mutiple is 5, it will show: 5, 10, 15, 20, 25"
136
+ msgstr "De exemplu, dacă multiplul este 5, va afișa: 5, 10, 15, 20, 25"
137
+
138
+ #: admin.php:150
139
+ msgid "Page Navigation Options"
140
+ msgstr "Opțiuni pentru navigare în pagini"
141
+
142
+ #: scb/AdminPage.php:165
143
+ #: scb/AdminPage.php:176
144
+ msgid "Save Changes"
145
+ msgstr "Salvează schimbările"
146
+
147
+ #: scb/AdminPage.php:279
148
+ msgid "Settings <strong>saved</strong>."
149
+ msgstr "Setări <strong>salvate</strong>."
150
+
151
+ #: scb/AdminPage.php:337
152
+ msgid "Settings"
153
+ msgstr "Setări"
154
+
155
+ #: wp-pagenavi.php:223
156
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
157
+ msgstr "Pagina %CURRENT_PAGE% din %TOTAL_PAGES%"
158
+
159
+ #: wp-pagenavi.php:226
160
+ msgid "&laquo; First"
161
+ msgstr "&laquo; Prima"
162
+
163
+ #: wp-pagenavi.php:227
164
+ msgid "Last &raquo;"
165
+ msgstr "Ultima &raquo;"
166
+
167
+ #: wp-pagenavi.php:228
168
+ msgid "&laquo;"
169
+ msgstr "&laquo;"
170
+
171
+ #: wp-pagenavi.php:229
172
+ msgid "&raquo;"
173
+ msgstr "&raquo;"
174
+
175
+ #: wp-pagenavi.php:230
176
+ #: wp-pagenavi.php:231
177
+ msgid "..."
178
+ msgstr "..."
179
+
180
+ #. Plugin Name of the plugin/theme
181
+ msgid "WP-PageNavi"
182
+ msgstr "WP-PageNavi"
183
+
184
+ #. Plugin URI of the plugin/theme
185
+ msgid "http://wordpress.org/extend/plugins/wp-pagenavi/"
186
+ msgstr "http://wordpress.org/extend/plugins/wp-pagenavi/"
187
+
188
+ #. Description of the plugin/theme
189
+ msgid "Adds a more advanced paging navigation to your WordPress blog"
190
+ msgstr "Adaugă o navigare mai avansată la blogul tău WordPress"
191
+
192
+ #. Author of the plugin/theme
193
+ msgid "Lester 'GaMerZ' Chan & scribu"
194
+ msgstr "Lester 'GaMerZ' Chan & scribu"
195
+
lang/wp-pagenavi-ru_RU.mo ADDED
Binary file
lang/wp-pagenavi-ru_RU.po ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-PageNavi 2.50\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-07-04 01:44+0300\n"
6
+ "PO-Revision-Date: 2009-07-04 12:02+0300\n"
7
+ "Last-Translator: Anna Ozeritskaya <anna.ozeritskaya@gmail.com>\n"
8
+ "Language-Team: Anna Ozeritskaya <anna.ozeritskaya@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Russian\n"
13
+ "X-Poedit-Country: RUSSIAN FEDERATION\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: pagenavi-options.php:48
19
+ #: pagenavi-options.php:110
20
+ #: pagenavi-options.php:174
21
+ msgid "Page Navigation Options"
22
+ msgstr "Настройки списка страниц"
23
+
24
+ #: pagenavi-options.php:53
25
+ msgid "Updated"
26
+ msgstr "&mdash; обновлено"
27
+
28
+ #: pagenavi-options.php:58
29
+ msgid "No Page Navigation Option Updated"
30
+ msgstr "Настройки списка страниц не изменились"
31
+
32
+ #: pagenavi-options.php:64
33
+ #: pagenavi-options.php:265
34
+ msgid "UNINSTALL WP-PageNavi"
35
+ msgstr "УДАЛИТЬ WP-PageNavi"
36
+
37
+ #: pagenavi-options.php:72
38
+ #, php-format
39
+ msgid "Setting Key '%s' has been deleted."
40
+ msgstr "Настройка &laquo;%s&raquo; удалена."
41
+
42
+ #: pagenavi-options.php:76
43
+ #, php-format
44
+ msgid "Error deleting Setting Key '%s'."
45
+ msgstr "Ошибка при удалении настройки &laquo;%s&raquo;."
46
+
47
+ #: pagenavi-options.php:98
48
+ #: pagenavi-options.php:233
49
+ msgid "Uninstall WP-PageNavi"
50
+ msgstr "Удалить список страниц"
51
+
52
+ #: pagenavi-options.php:99
53
+ #, php-format
54
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
55
+ msgstr "<a href=\"%s\">Нажмите здесь</a> чтобы завершить удаление. WP-PageNavi будет отключён автоматически."
56
+
57
+ #: pagenavi-options.php:111
58
+ msgid "Page Navigation Text"
59
+ msgstr "Шаблоны списка страниц"
60
+
61
+ #: pagenavi-options.php:114
62
+ msgid "Text For Number Of Pages"
63
+ msgstr "Шаблон общего списка страниц"
64
+
65
+ #: pagenavi-options.php:117
66
+ msgid "The current page number."
67
+ msgstr "Номер текущей страницы."
68
+
69
+ #: pagenavi-options.php:118
70
+ #: pagenavi-options.php:139
71
+ #: pagenavi-options.php:146
72
+ msgid "The total number of pages."
73
+ msgstr "Общее количество страниц."
74
+
75
+ #: pagenavi-options.php:122
76
+ msgid "Text For Current Page"
77
+ msgstr "Элемент &laquo;Текущая страница&raquo;"
78
+
79
+ #: pagenavi-options.php:125
80
+ #: pagenavi-options.php:132
81
+ msgid "The page number."
82
+ msgstr "Номер страницы."
83
+
84
+ #: pagenavi-options.php:129
85
+ msgid "Text For Page"
86
+ msgstr "Элемент &laquo;Страница&raquo;"
87
+
88
+ #: pagenavi-options.php:136
89
+ msgid "Text For First Post"
90
+ msgstr "Элемент &laquo;Первая запись&raquo;"
91
+
92
+ #: pagenavi-options.php:143
93
+ msgid "Text For Last Post"
94
+ msgstr "Элемент &laquo;Последняя запись&raquo;"
95
+
96
+ #: pagenavi-options.php:150
97
+ msgid "Text For Next Post"
98
+ msgstr "Элемент &laquo;Следующая запись&raquo;"
99
+
100
+ #: pagenavi-options.php:156
101
+ msgid "Text For Previous Post"
102
+ msgstr "Элемент &laquo;Предыдущая запись&raquo;"
103
+
104
+ #: pagenavi-options.php:162
105
+ msgid "Text For Next ..."
106
+ msgstr "Элемент &laquo;Следующие&hellip;&raquo;"
107
+
108
+ #: pagenavi-options.php:168
109
+ msgid "Text For Previous ..."
110
+ msgstr "Элемент &laquo;Предыдущие&hellip;&raquo;"
111
+
112
+ #: pagenavi-options.php:177
113
+ msgid "Page Navigation Style"
114
+ msgstr "Стиль списка страниц"
115
+
116
+ #: pagenavi-options.php:180
117
+ msgid "Normal"
118
+ msgstr "Обычный"
119
+
120
+ #: pagenavi-options.php:181
121
+ msgid "Drop Down List"
122
+ msgstr "Выпадающий список"
123
+
124
+ #: pagenavi-options.php:186
125
+ msgid "Number Of Pages To Show?"
126
+ msgstr "Сколько страниц показывать?"
127
+
128
+ #: pagenavi-options.php:192
129
+ msgid "Always Show Page Navigation?"
130
+ msgstr "Всегда показывать список страниц?"
131
+
132
+ #: pagenavi-options.php:195
133
+ #: pagenavi-options.php:264
134
+ msgid "Yes"
135
+ msgstr "Да"
136
+
137
+ #: pagenavi-options.php:196
138
+ msgid "No"
139
+ msgstr "Нет"
140
+
141
+ #: pagenavi-options.php:201
142
+ msgid "Number Of Larger Page Numbers To Show?"
143
+ msgstr "Сколько страниц показывать в виде диапазонов?"
144
+
145
+ #: pagenavi-options.php:205
146
+ msgid "Larger page numbers are in additional to the default page numbers. It is useful for authors who is paginating through many posts."
147
+ msgstr "Диапазоны страниц дополняют обычную нумерацию и полезны в тех случаях, когда на вашем сайте очень много записей."
148
+
149
+ #: pagenavi-options.php:207
150
+ msgid "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
151
+ msgstr "Например, список страниц будет выглядеть так: Страницы 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
152
+
153
+ #: pagenavi-options.php:209
154
+ msgid "Enter 0 to disable."
155
+ msgstr "Введите 0 чтобы отключить эту функцию."
156
+
157
+ #: pagenavi-options.php:213
158
+ msgid "Show Larger Page Numbers In Multiples Of:"
159
+ msgstr "Коэффициент для диапазонов страниц:"
160
+
161
+ #: pagenavi-options.php:217
162
+ msgid "If mutiple is in 5, it will show: 5, 10, 15, 20, 25"
163
+ msgstr "Если коэффициент равен 5, то список страниц будет выглядеть так: 5, 10, 15, 20, 25"
164
+
165
+ #: pagenavi-options.php:219
166
+ msgid "If mutiple is in 10, it will show: 10, 20, 30, 40, 50"
167
+ msgstr "А если 10&nbsp;&mdash; так: 10, 20, 30, 40, 50"
168
+
169
+ #: pagenavi-options.php:224
170
+ msgid "Save Changes"
171
+ msgstr "Сохранить изменения"
172
+
173
+ #: pagenavi-options.php:235
174
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
175
+ msgstr "При отключении плагина отображения списка страниц созданные данные, включая настройки, не удаляются. Для того, чтобы полностью удалить плагин, отмените здесь его установку."
176
+
177
+ #: pagenavi-options.php:238
178
+ msgid "WARNING:"
179
+ msgstr "ВНИМАНИЕ:"
180
+
181
+ #: pagenavi-options.php:239
182
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
183
+ msgstr "Удаление плагина необратимо. Для того, чтобы создать резервную копию БД WordPress и сохранить ваши данные, используйте плагин &laquo;Database Backup&raquo;."
184
+
185
+ #: pagenavi-options.php:242
186
+ msgid "The following WordPress Options will be DELETED:"
187
+ msgstr "Будут УДАЛЕНЫ следующие настройки WordPress:"
188
+
189
+ #: pagenavi-options.php:247
190
+ msgid "WordPress Options"
191
+ msgstr "Настройки WordPress"
192
+
193
+ #: pagenavi-options.php:265
194
+ msgid ""
195
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
196
+ "This Action Is Not Reversible.\\n"
197
+ "\\n"
198
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
199
+ msgstr ""
200
+ "Вы собираетесь удалить плагин WP-PageNavi.\\n"
201
+ "Это действие необратимо.\\n"
202
+ "\\n"
203
+ "Чтобы остановить удаление, выберите [Отмена]. Выберите [OK], если вы хотите его продолжить."
204
+
205
+ #: wp-pagenavi.php:42
206
+ msgid "PageNavi"
207
+ msgstr "Список страниц"
208
+
209
+ #: wp-pagenavi.php:201
210
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
211
+ msgstr "Страница %CURRENT_PAGE% из %TOTAL_PAGES%"
212
+
213
+ #: wp-pagenavi.php:204
214
+ msgid "&laquo; First"
215
+ msgstr "&laquo; Первая"
216
+
217
+ #: wp-pagenavi.php:205
218
+ msgid "Last &raquo;"
219
+ msgstr "Последняя &raquo;"
220
+
221
+ #: wp-pagenavi.php:206
222
+ msgid "&raquo;"
223
+ msgstr "&raquo;"
224
+
225
+ #: wp-pagenavi.php:207
226
+ msgid "&laquo;"
227
+ msgstr "&laquo;"
228
+
229
+ #: wp-pagenavi.php:208
230
+ #: wp-pagenavi.php:209
231
+ msgid "..."
232
+ msgstr "..."
233
+
lang/wp-pagenavi-sq_AL.mo ADDED
Binary file
lang/wp-pagenavi-sq_AL.po ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of the WordPress plugin WP-PageNavi 2.72 by Lester 'GaMerZ' Chan & scribu.
2
+ # Copyright (C) 2010 Lester 'GaMerZ' Chan & scribu
3
+ # This file is distributed under the same license as the WP-PageNavi package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: WP-PageNavi 2.72\n"
9
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-pagenavi\n"
10
+ "POT-Creation-Date: 2010-04-19 11:25+0300\n"
11
+ "PO-Revision-Date: 2010-07-23 11:46+0100\n"
12
+ "Last-Translator: Visar Uruqi <visar.uruqi@gmail.com>\n"
13
+ "Language-Team: Visar Uruqi <visar.uruqi@gmail.com>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=utf-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Poedit-Language: Albanian\n"
18
+ "X-Poedit-Country: ALBANIA\n"
19
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
20
+
21
+ #: admin.php:9
22
+ msgid "PageNavi Settings"
23
+ msgstr "PageNavi Settings"
24
+
25
+ #: admin.php:10
26
+ msgid "PageNavi"
27
+ msgstr "PageNavi"
28
+
29
+ #: admin.php:27
30
+ msgid "Text For Number Of Pages"
31
+ msgstr "Teksti për numrat e faqes"
32
+
33
+ #: admin.php:32
34
+ msgid "The current page number."
35
+ msgstr "Numri i faqes së tanishme."
36
+
37
+ #: admin.php:33
38
+ #: admin.php:57
39
+ #: admin.php:65
40
+ msgid "The total number of pages."
41
+ msgstr "Numri total i faqeve."
42
+
43
+ #: admin.php:37
44
+ msgid "Text For Current Page"
45
+ msgstr "Teksti për faqen e tanishme"
46
+
47
+ #: admin.php:41
48
+ #: admin.php:49
49
+ msgid "The page number."
50
+ msgstr "Numri i faqes."
51
+
52
+ #: admin.php:45
53
+ msgid "Text For Page"
54
+ msgstr "Teksti për faqe"
55
+
56
+ #: admin.php:53
57
+ msgid "Text For First Page"
58
+ msgstr "Teksti për faqe të parë"
59
+
60
+ #: admin.php:61
61
+ msgid "Text For Last Page"
62
+ msgstr "Teksti për faqen e fundit"
63
+
64
+ #: admin.php:69
65
+ msgid "Text For Previous Page"
66
+ msgstr "Teksti për faqen e kaluar"
67
+
68
+ #: admin.php:75
69
+ msgid "Text For Next Page"
70
+ msgstr "Teksti për faqen e ardhshme"
71
+
72
+ #: admin.php:81
73
+ msgid "Text For Previous ..."
74
+ msgstr "Teksti për të kaluarën ..."
75
+
76
+ #: admin.php:87
77
+ msgid "Text For Next ..."
78
+ msgstr "Teksti për të ardhmen ..."
79
+
80
+ #: admin.php:94
81
+ msgid "Page Navigation Text"
82
+ msgstr "Teksti për navigimin e faqes"
83
+
84
+ #: admin.php:95
85
+ msgid "Leaving a field blank will hide that part of the navigation."
86
+ msgstr "Duke e lënë një fushë si hapësirë do ta fsheh pjesën e navigimit."
87
+
88
+ #: admin.php:101
89
+ msgid "Use pagenavi-css.css"
90
+ msgstr "Përdore pagenavi-css.css"
91
+
92
+ #: admin.php:107
93
+ msgid "Page Navigation Style"
94
+ msgstr "Stili i navigimit të faqes"
95
+
96
+ #: admin.php:110
97
+ msgid "Normal"
98
+ msgstr "Normal"
99
+
100
+ #: admin.php:110
101
+ msgid "Drop-down List"
102
+ msgstr "Drop-down List"
103
+
104
+ #: admin.php:115
105
+ msgid "Always Show Page Navigation"
106
+ msgstr "Gjithmonë shfaq navigimin për faqe"
107
+
108
+ #: admin.php:118
109
+ msgid "Show navigation even if there's only one page."
110
+ msgstr "Shfaq navigimin edhe nëse ekziston vetëm një faqe."
111
+
112
+ #: admin.php:122
113
+ msgid "Number Of Pages To Show"
114
+ msgstr "Numri i faqeve për të shfaqur"
115
+
116
+ #: admin.php:129
117
+ msgid "Number Of Larger Page Numbers To Show"
118
+ msgstr "Numri i Numrave të faqeve të mëdhaja për ti shfaqur"
119
+
120
+ #: admin.php:134
121
+ msgid "Larger page numbers are in addition to the normal page numbers. They are useful when there are many pages of posts."
122
+ msgstr "Numrat e mëdha të faqeve janë si plotësim i numrave normal të faqeve .Ato janë të dobishme kur ka shumë faqe të artikujve."
123
+
124
+ #: admin.php:135
125
+ msgid "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50."
126
+ msgstr "Për shembull, wp-PageNavi do të shfaq: Faqet 1, 2, 3, 4, 5, 10, 20, 30, 40, 50."
127
+
128
+ #: admin.php:136
129
+ msgid "Enter 0 to disable."
130
+ msgstr "Vendos 0 për ta çaktivizuar."
131
+
132
+ #: admin.php:140
133
+ msgid "Show Larger Page Numbers In Multiples Of"
134
+ msgstr "Shfaq numra të mëdhenj të faqeve në shumfishat e "
135
+
136
+ #: admin.php:145
137
+ msgid "For example, if mutiple is 5, it will show: 5, 10, 15, 20, 25"
138
+ msgstr "Për shembull, nëse shumfishhi është 5, do të shfaq: 5, 10, 15, 20, 25"
139
+
140
+ #: admin.php:150
141
+ msgid "Page Navigation Options"
142
+ msgstr "Opcionet e Navigimit të faqeve"
143
+
144
+ #: scb/AdminPage.php:165
145
+ #: scb/AdminPage.php:176
146
+ msgid "Save Changes"
147
+ msgstr "Ruaj ndryshimet"
148
+
149
+ #: scb/AdminPage.php:279
150
+ msgid "Settings <strong>saved</strong>."
151
+ msgstr "Settings <strong>të ruajtura</strong>."
152
+
153
+ #: scb/AdminPage.php:337
154
+ msgid "Settings"
155
+ msgstr "Settings"
156
+
157
+ #: wp-pagenavi.php:224
158
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
159
+ msgstr "Faqja %CURRENT_PAGE% prej %TOTAL_PAGES%"
160
+
161
+ #: wp-pagenavi.php:227
162
+ msgid "&laquo; First"
163
+ msgstr "&laquo; E para"
164
+
165
+ #: wp-pagenavi.php:228
166
+ msgid "Last &raquo;"
167
+ msgstr "E fundit &raquo;"
168
+
169
+ #: wp-pagenavi.php:229
170
+ msgid "&laquo;"
171
+ msgstr "&laquo;"
172
+
173
+ #: wp-pagenavi.php:230
174
+ msgid "&raquo;"
175
+ msgstr "&raquo;"
176
+
177
+ #: wp-pagenavi.php:231
178
+ #: wp-pagenavi.php:232
179
+ msgid "..."
180
+ msgstr "..."
181
+
182
+ #. Plugin Name of the plugin/theme
183
+ msgid "WP-PageNavi"
184
+ msgstr "WP-PageNavi"
185
+
186
+ #. Plugin URI of the plugin/theme
187
+ msgid "http://wordpress.org/extend/plugins/wp-pagenavi/"
188
+ msgstr "http://wordpress.org/extend/plugins/wp-pagenavi/"
189
+
190
+ #. Description of the plugin/theme
191
+ msgid "Adds a more advanced paging navigation to your WordPress blog"
192
+ msgstr "Vendos një navigim të faqeve më të avancuar tek Wordpress blog-u juaj"
193
+
194
+ #. Author of the plugin/theme
195
+ msgid "Lester 'GaMerZ' Chan & scribu"
196
+ msgstr "Lester 'GaMerZ' Chan & scribu"
197
+
lang/wp-pagenavi-sv_SE.mo ADDED
Binary file
lang/wp-pagenavi-sv_SE.po ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-PageNavi 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-12 00:39+0800\n"
6
+ "PO-Revision-Date: 2008-12-12 00:39+0800\n"
7
+ "Last-Translator: Lester Chan <lesterchan@gmail.com>\n"
8
+ "Language-Team: mishkin.se <mikael@mishkin.se>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Swedish\n"
13
+ "X-Poedit-Country: Sweden\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: pagenavi-options.php:46
19
+ #: pagenavi-options.php:108
20
+ #: pagenavi-options.php:172
21
+ msgid "Page Navigation Options"
22
+ msgstr "Inställningar för sidnavigering"
23
+
24
+ #: pagenavi-options.php:51
25
+ msgid "Updated"
26
+ msgstr "Uppdaterad"
27
+
28
+ #: pagenavi-options.php:56
29
+ msgid "No Page Navigation Option Updated"
30
+ msgstr "Inga inställningar för sidnavigering uppdaterades"
31
+
32
+ #: pagenavi-options.php:62
33
+ #: pagenavi-options.php:241
34
+ msgid "UNINSTALL WP-PageNavi"
35
+ msgstr "Avinstallera WP-PageNavi"
36
+
37
+ #: pagenavi-options.php:70
38
+ #, php-format
39
+ msgid "Setting Key '%s' has been deleted."
40
+ msgstr "Inställnigsnyckeln '%s' har raderats."
41
+
42
+ #: pagenavi-options.php:74
43
+ #, php-format
44
+ msgid "Error deleting Setting Key '%s'."
45
+ msgstr "Ett fel uppstod då inställningsnyckel '%s' skulle raderas."
46
+
47
+ #: pagenavi-options.php:96
48
+ #: pagenavi-options.php:209
49
+ msgid "Uninstall WP-PageNavi"
50
+ msgstr "Avinstallera WP-PageNavi"
51
+
52
+ #: pagenavi-options.php:97
53
+ #, php-format
54
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
55
+ msgstr "<a href=\"%s\">Klicka här</a> för att avsluta installationen av WP-PageNavi som sedan avaktiveras automatiskt."
56
+
57
+ #: pagenavi-options.php:109
58
+ msgid "Page Navigation Text"
59
+ msgstr "Text för sidnavigering"
60
+
61
+ #: pagenavi-options.php:112
62
+ msgid "Text For Number Of Pages"
63
+ msgstr "Text för antal sidor"
64
+
65
+ #: pagenavi-options.php:115
66
+ msgid "The current page number."
67
+ msgstr "Det nuvarande antalet sidor."
68
+
69
+ #: pagenavi-options.php:116
70
+ #: pagenavi-options.php:137
71
+ #: pagenavi-options.php:144
72
+ msgid "The total number of pages."
73
+ msgstr "Det totala antalet sidor."
74
+
75
+ #: pagenavi-options.php:120
76
+ msgid "Text For Current Page"
77
+ msgstr "Text för nuvarande sida"
78
+
79
+ #: pagenavi-options.php:123
80
+ #: pagenavi-options.php:130
81
+ msgid "The page number."
82
+ msgstr "Sidnumret."
83
+
84
+ #: pagenavi-options.php:127
85
+ msgid "Text For Page"
86
+ msgstr "Text för sida"
87
+
88
+ #: pagenavi-options.php:134
89
+ msgid "Text For First Post"
90
+ msgstr "Text för Första inlägget"
91
+
92
+ #: pagenavi-options.php:141
93
+ msgid "Text For Last Post"
94
+ msgstr "Text för Sista inlägget"
95
+
96
+ #: pagenavi-options.php:148
97
+ msgid "Text For Next Post"
98
+ msgstr "Text för Nästa inlägg"
99
+
100
+ #: pagenavi-options.php:154
101
+ msgid "Text For Previous Post"
102
+ msgstr "Text för Föregående inlägg"
103
+
104
+ #: pagenavi-options.php:160
105
+ msgid "Text For Next ..."
106
+ msgstr "Text för Nästa..."
107
+
108
+ #: pagenavi-options.php:166
109
+ msgid "Text For Previous ..."
110
+ msgstr "Text för Föregående..."
111
+
112
+ #: pagenavi-options.php:175
113
+ msgid "Page Navigation Style"
114
+ msgstr "Stil för sidnavigering"
115
+
116
+ #: pagenavi-options.php:178
117
+ msgid "Normal"
118
+ msgstr "Normal"
119
+
120
+ #: pagenavi-options.php:179
121
+ msgid "Drop Down List"
122
+ msgstr "Dropdownmeny"
123
+
124
+ #: pagenavi-options.php:184
125
+ msgid "Number Of Pages To Show?"
126
+ msgstr "Hur många sidor som ska visas?"
127
+
128
+ #: pagenavi-options.php:190
129
+ msgid "Always Show Page Navigation?"
130
+ msgstr "Ska sidnavigeringen alltid visas?"
131
+
132
+ #: pagenavi-options.php:193
133
+ #: pagenavi-options.php:240
134
+ msgid "Yes"
135
+ msgstr "Ja"
136
+
137
+ #: pagenavi-options.php:194
138
+ msgid "No"
139
+ msgstr "Nej"
140
+
141
+ #: pagenavi-options.php:200
142
+ msgid "Save Changes"
143
+ msgstr "Spara ändringar"
144
+
145
+ #: pagenavi-options.php:211
146
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
147
+ msgstr "Att avaktivera WP-PageNavi tar inte bort någon av den data som skapats, till exempel inställningar. För att ta bort detta tillägg fullständigt kan du avinstallera det här."
148
+
149
+ #: pagenavi-options.php:214
150
+ msgid "WARNING:"
151
+ msgstr "VARNING:"
152
+
153
+ #: pagenavi-options.php:215
154
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
155
+ msgstr "När tillägget avinstallerats kan det inte återskapas. Du rekommenderas att ta backup på din WordPress-databas innan du fortsätter."
156
+
157
+ #: pagenavi-options.php:218
158
+ msgid "The following WordPress Options will be DELETED:"
159
+ msgstr "Följande WordPress-inställningar kommer att RADERAS:"
160
+
161
+ #: pagenavi-options.php:223
162
+ msgid "WordPress Options"
163
+ msgstr "Inställningar för WordPress"
164
+
165
+ #: pagenavi-options.php:241
166
+ msgid ""
167
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
168
+ "This Action Is Not Reversible.\\n"
169
+ "\\n"
170
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
171
+ msgstr ""
172
+ "Du kommer nu att avinstallera WP-PageNavi från WordPress.\\n"
173
+ "Denna åtgärd kan inte göras ogjord.\\n"
174
+ "\\n"
175
+ " Välj [Avbryt] för att stanna, [OK] för att avinstallera."
176
+
177
+ #: wp-pagenavi.php:42
178
+ msgid "PageNavi"
179
+ msgstr "PageNavi"
180
+
181
+ #: wp-pagenavi.php:179
182
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
183
+ msgstr "Sida %CURRENT_PAGE% av %TOTAL_PAGES%"
184
+
185
+ #: wp-pagenavi.php:182
186
+ msgid "&laquo; First"
187
+ msgstr "&laquo; Första"
188
+
189
+ #: wp-pagenavi.php:183
190
+ msgid "Last &raquo;"
191
+ msgstr "Sista &raquo;"
192
+
193
+ #: wp-pagenavi.php:184
194
+ msgid "&raquo;"
195
+ msgstr "&raquo;"
196
+
197
+ #: wp-pagenavi.php:185
198
+ msgid "&laquo;"
199
+ msgstr "&laquo;"
200
+
201
+ #: wp-pagenavi.php:186
202
+ #: wp-pagenavi.php:187
203
+ msgid "..."
204
+ msgstr "..."
205
+
lang/wp-pagenavi-tr_TR.mo ADDED
Binary file
lang/wp-pagenavi-tr_TR.po ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-PageNavi 2.50 Türkçe\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-08 18:58+0800\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: İzzet Emre Erkan <kara@karalamalar.net>\n"
8
+ "Language-Team: karalamalar.net <kara@karalamalar.net>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Turkish\n"
13
+ "X-Poedit-Country: TURKEY\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "Plural-Forms: nplurals=1; plural=0;\n"
16
+
17
+ #: pagenavi-options.php:48
18
+ #: pagenavi-options.php:110
19
+ #: pagenavi-options.php:174
20
+ msgid "Page Navigation Options"
21
+ msgstr "Sayfa sayfalama seçenekleri"
22
+
23
+ #: pagenavi-options.php:53
24
+ msgid "Updated"
25
+ msgstr "Güncellendi"
26
+
27
+ #: pagenavi-options.php:58
28
+ msgid "No Page Navigation Option Updated"
29
+ msgstr "Güncellenen sayfalama seçeneği yok"
30
+
31
+ #: pagenavi-options.php:64
32
+ #: pagenavi-options.php:265
33
+ msgid "UNINSTALL WP-PageNavi"
34
+ msgstr "WP-PageNavi eklentisini KALDIR"
35
+
36
+ #: pagenavi-options.php:72
37
+ #, php-format
38
+ msgid "Setting Key '%s' has been deleted."
39
+ msgstr "'%s' ayar anahtarı silindi."
40
+
41
+ #: pagenavi-options.php:76
42
+ #, php-format
43
+ msgid "Error deleting Setting Key '%s'."
44
+ msgstr "'%s' ayar anahtarını silerken hata oluştu."
45
+
46
+ #: pagenavi-options.php:98
47
+ #: pagenavi-options.php:233
48
+ msgid "Uninstall WP-PageNavi"
49
+ msgstr "WP-PageNavi eklentisini kaldır"
50
+
51
+ #: pagenavi-options.php:99
52
+ #, php-format
53
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
54
+ msgstr "Kaldırma işlemini bitirmek için <a href=\"%s\">buraya</a> tıklayın. WP-Print otomatik olarak pasif duruma geçecektir."
55
+
56
+ #: pagenavi-options.php:111
57
+ msgid "Page Navigation Text"
58
+ msgstr "Sayfalama metni"
59
+
60
+ #: pagenavi-options.php:114
61
+ msgid "Text For Number Of Pages"
62
+ msgstr "Sayfa sayısı için metin"
63
+
64
+ #: pagenavi-options.php:117
65
+ msgid "The current page number."
66
+ msgstr "Şu anki sayfa numarası"
67
+
68
+ #: pagenavi-options.php:118
69
+ #: pagenavi-options.php:139
70
+ #: pagenavi-options.php:146
71
+ msgid "The total number of pages."
72
+ msgstr "Toplam sayfa sayısı"
73
+
74
+ #: pagenavi-options.php:122
75
+ msgid "Text For Current Page"
76
+ msgstr "Şu anki sayfa için metin"
77
+
78
+ #: pagenavi-options.php:125
79
+ #: pagenavi-options.php:132
80
+ msgid "The page number."
81
+ msgstr "Sayfa numarası."
82
+
83
+ #: pagenavi-options.php:129
84
+ msgid "Text For Page"
85
+ msgstr "Sayfa için metin"
86
+
87
+ #: pagenavi-options.php:136
88
+ msgid "Text For First Post"
89
+ msgstr "İlk yazı için metin"
90
+
91
+ #: pagenavi-options.php:143
92
+ msgid "Text For Last Post"
93
+ msgstr "Son yazı için metin"
94
+
95
+ #: pagenavi-options.php:150
96
+ msgid "Text For Next Post"
97
+ msgstr "Sonraki yazı için metin"
98
+
99
+ #: pagenavi-options.php:156
100
+ msgid "Text For Previous Post"
101
+ msgstr "Önceli yazı için metin"
102
+
103
+ #: pagenavi-options.php:162
104
+ msgid "Text For Next ..."
105
+ msgstr "Sonraki... için metin"
106
+
107
+ #: pagenavi-options.php:168
108
+ msgid "Text For Previous ..."
109
+ msgstr "Önceki... için metin"
110
+
111
+ #: pagenavi-options.php:177
112
+ msgid "Page Navigation Style"
113
+ msgstr "Sayfa sayfalama stili"
114
+
115
+ #: pagenavi-options.php:180
116
+ msgid "Normal"
117
+ msgstr "Normal"
118
+
119
+ #: pagenavi-options.php:181
120
+ msgid "Drop Down List"
121
+ msgstr "Aşağı açılır liste"
122
+
123
+ #: pagenavi-options.php:186
124
+ msgid "Number Of Pages To Show?"
125
+ msgstr "Gösterilecek sayfa sayısı?"
126
+
127
+ #: pagenavi-options.php:192
128
+ msgid "Always Show Page Navigation?"
129
+ msgstr "Her zaman sayfalamayı göster?"
130
+
131
+ #: pagenavi-options.php:195
132
+ #: pagenavi-options.php:264
133
+ msgid "Yes"
134
+ msgstr "Evet"
135
+
136
+ #: pagenavi-options.php:196
137
+ msgid "No"
138
+ msgstr "Hayır"
139
+
140
+ #: pagenavi-options.php:201
141
+ msgid "Number Of Larger Page Numbers To Show?"
142
+ msgstr "Büyük sayfa numaraları için gösterilecek numara?"
143
+
144
+ #: pagenavi-options.php:205
145
+ msgid "Larger page numbers are in additional to the default page numbers. It is useful for authors who is paginating through many posts."
146
+ msgstr "Büyük sayfa numaraları, varsayılan sayfa numaralarına eklenir. Çok fazla yazısı olan yazarlar için kullanışlıdır."
147
+
148
+ #: pagenavi-options.php:207
149
+ msgid "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
150
+ msgstr "Örneğin, WP-PageNavi sayfaları şöyle gösterecektir: Sayfa 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
151
+
152
+ #: pagenavi-options.php:209
153
+ msgid "Enter 0 to disable."
154
+ msgstr "Pasifleştirmek için 0 girin"
155
+
156
+ #: pagenavi-options.php:213
157
+ msgid "Show Larger Page Numbers In Multiples Of:"
158
+ msgstr "Büyük sayfa numaraları çarpanı:"
159
+
160
+ #: pagenavi-options.php:217
161
+ msgid "If mutiple is in 5, it will show: 5, 10, 15, 20, 25"
162
+ msgstr "Eğer çarpan 5 ise şu şekilde görünür: 5, 10, 15, 20, 25"
163
+
164
+ #: pagenavi-options.php:219
165
+ msgid "If mutiple is in 10, it will show: 10, 20, 30, 40, 50"
166
+ msgstr "Eğer çarpan 10 ise şu şekilde görünür: 10, 20, 30, 40, 50"
167
+
168
+ #: pagenavi-options.php:224
169
+ msgid "Save Changes"
170
+ msgstr "Değişiklikleri kaydet"
171
+
172
+ #: pagenavi-options.php:235
173
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
174
+ msgstr "WP-PageNavi eklentisini pasifleştirmeniz eklenti tarafından yaratılan, yazdırma ayarları vb verileri kaldırmayacaktır. Eklentiyi tamamen kaldırmak için burayı kullanabilirsiniz."
175
+
176
+ #: pagenavi-options.php:238
177
+ msgid "WARNING:"
178
+ msgstr "UYARI:"
179
+
180
+ #: pagenavi-options.php:239
181
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
182
+ msgstr "Kaldırma işleminden geri dönülemez. İşleme başlamadan önce veritabanınızın yedeğini almanızı öneririz."
183
+
184
+ #: pagenavi-options.php:242
185
+ msgid "The following WordPress Options will be DELETED:"
186
+ msgstr "Belirtilen WordPress seçenekleri SİLİNECEKTİR:"
187
+
188
+ #: pagenavi-options.php:247
189
+ msgid "WordPress Options"
190
+ msgstr "WordPress seçenekleri"
191
+
192
+ #: pagenavi-options.php:265
193
+ msgid ""
194
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
195
+ "This Action Is Not Reversible.\\n"
196
+ "\\n"
197
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
198
+ msgstr ""
199
+ "WP-PageNavi eklentisini WordPress üzerinden kaldırmak üzeresiniz.\\n"
200
+ "Bu eylemin geri dönüşü yoktur.\\n"
201
+ "\\n"
202
+ " Durmak için [İptal], kaldırmak için [Tamam] tuşuna basın."
203
+
204
+ #: wp-pagenavi.php:42
205
+ msgid "PageNavi"
206
+ msgstr "PageNavi"
207
+
208
+ #: wp-pagenavi.php:201
209
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
210
+ msgstr "Toplam %TOTAL_PAGES% sayfa, %CURRENT_PAGE%. sayfa gösteriliyor."
211
+
212
+ #: wp-pagenavi.php:204
213
+ msgid "&laquo; First"
214
+ msgstr "&laquo; İlk"
215
+
216
+ #: wp-pagenavi.php:205
217
+ msgid "Last &raquo;"
218
+ msgstr "Son &raquo;"
219
+
220
+ #: wp-pagenavi.php:206
221
+ msgid "&raquo;"
222
+ msgstr "&raquo;"
223
+
224
+ #: wp-pagenavi.php:207
225
+ msgid "&laquo;"
226
+ msgstr "&laquo;"
227
+
228
+ #: wp-pagenavi.php:208
229
+ #: wp-pagenavi.php:209
230
+ msgid "..."
231
+ msgstr "..."
232
+
lang/wp-pagenavi-uk.mo ADDED
Binary file
lang/wp-pagenavi-uk.po ADDED
@@ -0,0 +1,206 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-PageNavi Uk 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-10 00:43+0800\n"
6
+ "PO-Revision-Date: 2009-02-14 22:52+0200\n"
7
+ "Last-Translator: Jurko Chervony <info@skinik.name>\n"
8
+ "Language-Team: pavonine.com.ua <info@skinik.name>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Ukrainian\n"
13
+ "X-Poedit-Country: UKRAINE\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: pagenavi-options.php:46
20
+ #: pagenavi-options.php:108
21
+ #: pagenavi-options.php:172
22
+ msgid "Page Navigation Options"
23
+ msgstr "Налаштунки вигляду Page Navigation"
24
+
25
+ #: pagenavi-options.php:51
26
+ msgid "Updated"
27
+ msgstr "оновлено"
28
+
29
+ #: pagenavi-options.php:56
30
+ msgid "No Page Navigation Option Updated"
31
+ msgstr "Жодних налаштунків не оновлено!"
32
+
33
+ #: pagenavi-options.php:62
34
+ #: pagenavi-options.php:241
35
+ msgid "UNINSTALL WP-PageNavi"
36
+ msgstr "ВИДАЛИТИ WP-PageNavi"
37
+
38
+ #: pagenavi-options.php:70
39
+ #, php-format
40
+ msgid "Setting Key '%s' has been deleted."
41
+ msgstr "Ключ налаштунків '%s' видалено."
42
+
43
+ #: pagenavi-options.php:74
44
+ #, php-format
45
+ msgid "Error deleting Setting Key '%s'."
46
+ msgstr "Помилка видалення ключа налаштувань '%s'."
47
+
48
+ #: pagenavi-options.php:96
49
+ #: pagenavi-options.php:209
50
+ msgid "Uninstall WP-PageNavi"
51
+ msgstr "Деінсталювати WP-PageNavi"
52
+
53
+ #: pagenavi-options.php:97
54
+ #, php-format
55
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
56
+ msgstr "<a href=\"%s\">Натисніть тут</a> Для завершення деінсталяції та деактивації WP-PageNavi."
57
+
58
+ #: pagenavi-options.php:109
59
+ msgid "Page Navigation Text"
60
+ msgstr "Текст навіґації сторінками"
61
+
62
+ #: pagenavi-options.php:112
63
+ msgid "Text For Number Of Pages"
64
+ msgstr "Текст номеру сторінки"
65
+
66
+ #: pagenavi-options.php:115
67
+ msgid "The current page number."
68
+ msgstr "Номер поточної сторінки."
69
+
70
+ #: pagenavi-options.php:116
71
+ #: pagenavi-options.php:137
72
+ #: pagenavi-options.php:144
73
+ msgid "The total number of pages."
74
+ msgstr "Загальна кількість сторінок."
75
+
76
+ #: pagenavi-options.php:120
77
+ msgid "Text For Current Page"
78
+ msgstr "Текст для поточної сторінки"
79
+
80
+ #: pagenavi-options.php:123
81
+ #: pagenavi-options.php:130
82
+ msgid "The page number."
83
+ msgstr "Номер сторінки."
84
+
85
+ #: pagenavi-options.php:127
86
+ msgid "Text For Page"
87
+ msgstr "Текст для сторінки"
88
+
89
+ #: pagenavi-options.php:134
90
+ msgid "Text For First Post"
91
+ msgstr "Текст для першої публікації"
92
+
93
+ #: pagenavi-options.php:141
94
+ msgid "Text For Last Post"
95
+ msgstr "Текст для останньої публікації"
96
+
97
+ #: pagenavi-options.php:148
98
+ msgid "Text For Next Post"
99
+ msgstr "Текст для наступної публікації"
100
+
101
+ #: pagenavi-options.php:154
102
+ msgid "Text For Previous Post"
103
+ msgstr "Текст для попередньої публікації"
104
+
105
+ #: pagenavi-options.php:160
106
+ msgid "Text For Next ..."
107
+ msgstr "Текст для наступної ..."
108
+
109
+ #: pagenavi-options.php:166
110
+ msgid "Text For Previous ..."
111
+ msgstr "Текст для попередньої ..."
112
+
113
+ #: pagenavi-options.php:175
114
+ msgid "Page Navigation Style"
115
+ msgstr "Стиль навіґації"
116
+
117
+ #: pagenavi-options.php:178
118
+ msgid "Normal"
119
+ msgstr "Звичайний"
120
+
121
+ #: pagenavi-options.php:179
122
+ msgid "Drop Down List"
123
+ msgstr "Випадаючий список"
124
+
125
+ #: pagenavi-options.php:184
126
+ msgid "Number Of Pages To Show?"
127
+ msgstr "Кількість сторінок для показу:"
128
+
129
+ #: pagenavi-options.php:190
130
+ msgid "Always Show Page Navigation?"
131
+ msgstr "Завжди показувати посторінкову навіґацію?"
132
+
133
+ #: pagenavi-options.php:193
134
+ #: pagenavi-options.php:240
135
+ msgid "Yes"
136
+ msgstr "Так"
137
+
138
+ #: pagenavi-options.php:194
139
+ msgid "No"
140
+ msgstr "Ні"
141
+
142
+ #: pagenavi-options.php:200
143
+ msgid "Save Changes"
144
+ msgstr "Зберегти зміни"
145
+
146
+ #: pagenavi-options.php:211
147
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
148
+ msgstr "Деактивація плаґіну WP-PageNav не видаляє жодних даних, тому Вам необхідно окрім деінсталяції плаґіну видалити усі дані, що було ним створено."
149
+
150
+ #: pagenavi-options.php:214
151
+ msgid "WARNING:"
152
+ msgstr "УВАГА:"
153
+
154
+ #: pagenavi-options.php:215
155
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
156
+ msgstr "Одного разу видаливши всі дані і налаштунки, вони будуть втрачені назавжди. Добре подумайте спершу ніж це робити!"
157
+
158
+ #: pagenavi-options.php:218
159
+ msgid "The following WordPress Options will be DELETED:"
160
+ msgstr "Наступні налаштунки WordPress буде ВИДАЛЕНО:"
161
+
162
+ #: pagenavi-options.php:223
163
+ msgid "WordPress Options"
164
+ msgstr "Налаштунки WordPress"
165
+
166
+ #: pagenavi-options.php:241
167
+ msgid ""
168
+ "You Are About To Uninstall WP-PageNavi From WordPress.\\n"
169
+ "This Action Is Not Reversible.\\n"
170
+ "\\n"
171
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
172
+ msgstr ""
173
+ "Ви збираєтеся деінсталюватиl WP-PageNavi з WordPress.\\n"
174
+ "Ця дія НЕЗВОРОТНЯ!.\\n"
175
+ "\\n"
176
+ " Оберіть [Cancel] щоб скасувати, [OK] для продовження."
177
+
178
+ #: wp-pagenavi.php:42
179
+ msgid "PageNavi"
180
+ msgstr "PageNavi"
181
+
182
+ #: wp-pagenavi.php:179
183
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
184
+ msgstr "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
185
+
186
+ #: wp-pagenavi.php:182
187
+ msgid "&laquo; First"
188
+ msgstr "&laquo; Перша"
189
+
190
+ #: wp-pagenavi.php:183
191
+ msgid "Last &raquo;"
192
+ msgstr "Остання &raquo;"
193
+
194
+ #: wp-pagenavi.php:184
195
+ msgid "&raquo;"
196
+ msgstr "&raquo;"
197
+
198
+ #: wp-pagenavi.php:185
199
+ msgid "&laquo;"
200
+ msgstr "&laquo;"
201
+
202
+ #: wp-pagenavi.php:186
203
+ #: wp-pagenavi.php:187
204
+ msgid "..."
205
+ msgstr "..."
206
+
lang/wp-pagenavi-zh_CN.mo ADDED
Binary file
lang/wp-pagenavi-zh_CN.po ADDED
@@ -0,0 +1,285 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-PageNavi v2.50\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2009-08-02 07:28+0800\n"
7
+ "Last-Translator: Sparanoid <info@sparanoid.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Chinese\n"
14
+ "X-Poedit-Country: PEOPLE'S REPUBLIC OF CHINA\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Textdomain-Support: yes\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #@ wp-pagenavi
21
+ #: pagenavi-options.php:48
22
+ #: pagenavi-options.php:110
23
+ #: pagenavi-options.php:174
24
+ msgid "Page Navigation Options"
25
+ msgstr "页面导航选项"
26
+
27
+ #@ wp-pagenavi
28
+ #: pagenavi-options.php:53
29
+ msgid "Updated"
30
+ msgstr "已更新"
31
+
32
+ #@ wp-pagenavi
33
+ #: pagenavi-options.php:58
34
+ msgid "No Page Navigation Option Updated"
35
+ msgstr "无选项更新"
36
+
37
+ #@ wp-pagenavi
38
+ #: pagenavi-options.php:64
39
+ #: pagenavi-options.php:265
40
+ msgid "UNINSTALL WP-PageNavi"
41
+ msgstr "删除 WP-PageNavi"
42
+
43
+ #@ wp-pagenavi
44
+ #: pagenavi-options.php:72
45
+ #, php-format
46
+ msgid "Setting Key '%s' has been deleted."
47
+ msgstr "设置键值“%s”已被删除。"
48
+
49
+ #@ wp-pagenavi
50
+ #: pagenavi-options.php:76
51
+ #, php-format
52
+ msgid "Error deleting Setting Key '%s'."
53
+ msgstr "无法删除设置键值“%s”。"
54
+
55
+ #@ wp-pagenavi
56
+ #: pagenavi-options.php:98
57
+ #: pagenavi-options.php:233
58
+ msgid "Uninstall WP-PageNavi"
59
+ msgstr "删除 WP-PageNavi"
60
+
61
+ #@ wp-pagenavi
62
+ #: pagenavi-options.php:99
63
+ #, php-format
64
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically."
65
+ msgstr "<a href=\"%s\">点击此处</a> 来完成卸载,稍后 WP-PageNavi 会自动禁用。"
66
+
67
+ #@ wp-pagenavi
68
+ #: pagenavi-options.php:111
69
+ msgid "Page Navigation Text"
70
+ msgstr "页面导航文字"
71
+
72
+ #@ wp-pagenavi
73
+ #: pagenavi-options.php:114
74
+ msgid "Text For Number Of Pages"
75
+ msgstr "“页数”文字设置"
76
+
77
+ #@ wp-pagenavi
78
+ #: pagenavi-options.php:117
79
+ msgid "The current page number."
80
+ msgstr "当前页数"
81
+
82
+ #@ wp-pagenavi
83
+ #: pagenavi-options.php:118
84
+ #: pagenavi-options.php:139
85
+ #: pagenavi-options.php:146
86
+ msgid "The total number of pages."
87
+ msgstr "所有页数"
88
+
89
+ #@ wp-pagenavi
90
+ #: pagenavi-options.php:122
91
+ msgid "Text For Current Page"
92
+ msgstr "“当前页数”文字设置"
93
+
94
+ #@ wp-pagenavi
95
+ #: pagenavi-options.php:125
96
+ #: pagenavi-options.php:132
97
+ msgid "The page number."
98
+ msgstr "页数"
99
+
100
+ #@ wp-pagenavi
101
+ #: pagenavi-options.php:129
102
+ msgid "Text For Page"
103
+ msgstr "“页数”文字设置"
104
+
105
+ #@ wp-pagenavi
106
+ #: pagenavi-options.php:136
107
+ msgid "Text For First Post"
108
+ msgstr "“首页”文字设置"
109
+
110
+ #@ wp-pagenavi
111
+ #: pagenavi-options.php:143
112
+ msgid "Text For Last Post"
113
+ msgstr "“最后一页”文字设置"
114
+
115
+ #@ wp-pagenavi
116
+ #: pagenavi-options.php:150
117
+ msgid "Text For Next Post"
118
+ msgstr "“上一页”文字设置"
119
+
120
+ #@ wp-pagenavi
121
+ #: pagenavi-options.php:156
122
+ msgid "Text For Previous Post"
123
+ msgstr "“下一页”文字设置"
124
+
125
+ #@ wp-pagenavi
126
+ #: pagenavi-options.php:162
127
+ msgid "Text For Next ..."
128
+ msgstr "“上一页”省略文字设置"
129
+
130
+ #@ wp-pagenavi
131
+ #: pagenavi-options.php:168
132
+ msgid "Text For Previous ..."
133
+ msgstr "“下一页”省略文字设置"
134
+
135
+ #@ wp-pagenavi
136
+ #: pagenavi-options.php:177
137
+ msgid "Page Navigation Style"
138
+ msgstr "页面导航选项"
139
+
140
+ #@ wp-pagenavi
141
+ #: pagenavi-options.php:180
142
+ msgid "Normal"
143
+ msgstr "正常"
144
+
145
+ #@ wp-pagenavi
146
+ #: pagenavi-options.php:181
147
+ msgid "Drop Down List"
148
+ msgstr "下拉列表"
149
+
150
+ #@ wp-pagenavi
151
+ #: pagenavi-options.php:186
152
+ msgid "Number Of Pages To Show?"
153
+ msgstr "显示多少页数?"
154
+
155
+ #@ wp-pagenavi
156
+ #: pagenavi-options.php:192
157
+ msgid "Always Show Page Navigation?"
158
+ msgstr "总是显示页面导航?"
159
+
160
+ #@ wp-pagenavi
161
+ #: pagenavi-options.php:195
162
+ #: pagenavi-options.php:264
163
+ msgid "Yes"
164
+ msgstr "是"
165
+
166
+ #@ wp-pagenavi
167
+ #: pagenavi-options.php:196
168
+ msgid "No"
169
+ msgstr "否"
170
+
171
+ #@ wp-pagenavi
172
+ #: pagenavi-options.php:201
173
+ msgid "Number Of Larger Page Numbers To Show?"
174
+ msgstr "显示较大页面页数"
175
+
176
+ #@ wp-pagenavi
177
+ #: pagenavi-options.php:205
178
+ msgid "Larger page numbers are in additional to the default page numbers. It is useful for authors who is paginating through many posts."
179
+ msgstr "显示较大页面的页数,通常针对于文章非常多的站点。"
180
+
181
+ #@ wp-pagenavi
182
+ #: pagenavi-options.php:207
183
+ msgid "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
184
+ msgstr "例如,WP-PageNavi 会显示为:页面 1, 2, 3, 4, 5, 10, 20, 30, 40, 50"
185
+
186
+ #@ wp-pagenavi
187
+ #: pagenavi-options.php:209
188
+ msgid "Enter 0 to disable."
189
+ msgstr "输入 0 可以禁用此功能。"
190
+
191
+ #@ wp-pagenavi
192
+ #: pagenavi-options.php:213
193
+ msgid "Show Larger Page Numbers In Multiples Of:"
194
+ msgstr "大页面页数的显示倍数:"
195
+
196
+ #@ wp-pagenavi
197
+ #: pagenavi-options.php:217
198
+ msgid "If mutiple is in 5, it will show: 5, 10, 15, 20, 25"
199
+ msgstr "如果倍数设置为 5,将会显示为:5, 10, 15, 20, 25"
200
+
201
+ #@ wp-pagenavi
202
+ #: pagenavi-options.php:219
203
+ msgid "If mutiple is in 10, it will show: 10, 20, 30, 40, 50"
204
+ msgstr "如果倍数设置为 10,将会显示为:10, 20, 30, 40, 50"
205
+
206
+ #@ wp-pagenavi
207
+ #: pagenavi-options.php:224
208
+ msgid "Save Changes"
209
+ msgstr "保存更改"
210
+
211
+ #@ wp-pagenavi
212
+ #: pagenavi-options.php:235
213
+ msgid "Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here."
214
+ msgstr "禁用 WP-PageNavi 插件并不会删除此插件曾经创建过的数据,例如页面导航的选项。如果您想完整删除插件的相关内容,您可以选择卸载它"
215
+
216
+ #@ wp-pagenavi
217
+ #: pagenavi-options.php:238
218
+ msgid "WARNING:"
219
+ msgstr "注意:"
220
+
221
+ #@ wp-pagenavi
222
+ #: pagenavi-options.php:239
223
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
224
+ msgstr "一旦您卸载此插件,此操作就不可撤销,在您删除插件之前建议您使用数据库备份插件备份好数据库。"
225
+
226
+ #@ wp-pagenavi
227
+ #: pagenavi-options.php:242
228
+ msgid "The following WordPress Options will be DELETED:"
229
+ msgstr "下列 WordPress 选项将被删除:"
230
+
231
+ #@ wp-pagenavi
232
+ #: pagenavi-options.php:247
233
+ msgid "WordPress Options"
234
+ msgstr "WordPress 选项(表)"
235
+
236
+ #@ wp-pagenavi
237
+ #: pagenavi-options.php:265
238
+ msgid ""
239
+ "You Are About To Uninstall WP-PageNavi From WordPress.\n"
240
+ "This Action Is Not Reversible.\n"
241
+ "\n"
242
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
243
+ msgstr ""
244
+ "您即将从 WordPress 中卸载 WP-PageNavi。\n"
245
+ "此动作不可撤销。\n"
246
+ "\n"
247
+ " 点击 [取消] 停止此操作,[确定] 继续卸载。"
248
+
249
+ #@ wp-pagenavi
250
+ #: wp-pagenavi.php:42
251
+ msgid "PageNavi"
252
+ msgstr "页面导航"
253
+
254
+ #@ wp-pagenavi
255
+ #: wp-pagenavi.php:201
256
+ #, php-format
257
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
258
+ msgstr "第 %CURRENT_PAGE% 页,共 %TOTAL_PAGES% 页"
259
+
260
+ #@ wp-pagenavi
261
+ #: wp-pagenavi.php:204
262
+ msgid "&laquo; First"
263
+ msgstr "&laquo; 最新"
264
+
265
+ #@ wp-pagenavi
266
+ #: wp-pagenavi.php:205
267
+ msgid "Last &raquo;"
268
+ msgstr "最旧 &raquo;"
269
+
270
+ #@ wp-pagenavi
271
+ #: wp-pagenavi.php:206
272
+ msgid "&raquo;"
273
+ msgstr "&raquo;"
274
+
275
+ #@ wp-pagenavi
276
+ #: wp-pagenavi.php:207
277
+ msgid "&laquo;"
278
+ msgstr "&laquo;"
279
+
280
+ #@ wp-pagenavi
281
+ #: wp-pagenavi.php:208
282
+ #: wp-pagenavi.php:209
283
+ msgid "..."
284
+ msgstr "..."
285
+
lang/wp-pagenavi.pot ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of the WordPress plugin WP-PageNavi 2.72 by Lester 'GaMerZ' Chan & scribu.
2
+ # Copyright (C) 2010 Lester 'GaMerZ' Chan & scribu
3
+ # This file is distributed under the same license as the WP-PageNavi package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: WP-PageNavi 2.72\n"
10
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-pagenavi\n"
11
+ "POT-Creation-Date: 2010-04-19 11:25+0300\n"
12
+ "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=utf-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+
19
+ #: admin.php:9
20
+ msgid "PageNavi Settings"
21
+ msgstr ""
22
+
23
+ #: admin.php:10
24
+ msgid "PageNavi"
25
+ msgstr ""
26
+
27
+ #: admin.php:27
28
+ msgid "Text For Number Of Pages"
29
+ msgstr ""
30
+
31
+ #: admin.php:32
32
+ msgid "The current page number."
33
+ msgstr ""
34
+
35
+ #: admin.php:33 admin.php:57 admin.php:65
36
+ msgid "The total number of pages."
37
+ msgstr ""
38
+
39
+ #: admin.php:37
40
+ msgid "Text For Current Page"
41
+ msgstr ""
42
+
43
+ #: admin.php:41 admin.php:49
44
+ msgid "The page number."
45
+ msgstr ""
46
+
47
+ #: admin.php:45
48
+ msgid "Text For Page"
49
+ msgstr ""
50
+
51
+ #: admin.php:53
52
+ msgid "Text For First Page"
53
+ msgstr ""
54
+
55
+ #: admin.php:61
56
+ msgid "Text For Last Page"
57
+ msgstr ""
58
+
59
+ #: admin.php:69
60
+ msgid "Text For Previous Page"
61
+ msgstr ""
62
+
63
+ #: admin.php:75
64
+ msgid "Text For Next Page"
65
+ msgstr ""
66
+
67
+ #: admin.php:81
68
+ msgid "Text For Previous ..."
69
+ msgstr ""
70
+
71
+ #: admin.php:87
72
+ msgid "Text For Next ..."
73
+ msgstr ""
74
+
75
+ #: admin.php:94
76
+ msgid "Page Navigation Text"
77
+ msgstr ""
78
+
79
+ #: admin.php:95
80
+ msgid "Leaving a field blank will hide that part of the navigation."
81
+ msgstr ""
82
+
83
+ #: admin.php:101
84
+ msgid "Use pagenavi-css.css"
85
+ msgstr ""
86
+
87
+ #: admin.php:107
88
+ msgid "Page Navigation Style"
89
+ msgstr ""
90
+
91
+ #: admin.php:110
92
+ msgid "Normal"
93
+ msgstr ""
94
+
95
+ #: admin.php:110
96
+ msgid "Drop-down List"
97
+ msgstr ""
98
+
99
+ #: admin.php:115
100
+ msgid "Always Show Page Navigation"
101
+ msgstr ""
102
+
103
+ #: admin.php:118
104
+ msgid "Show navigation even if there's only one page."
105
+ msgstr ""
106
+
107
+ #: admin.php:122
108
+ msgid "Number Of Pages To Show"
109
+ msgstr ""
110
+
111
+ #: admin.php:129
112
+ msgid "Number Of Larger Page Numbers To Show"
113
+ msgstr ""
114
+
115
+ #: admin.php:134
116
+ msgid ""
117
+ "Larger page numbers are in addition to the normal page numbers. They are "
118
+ "useful when there are many pages of posts."
119
+ msgstr ""
120
+
121
+ #: admin.php:135
122
+ msgid ""
123
+ "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, "
124
+ "50."
125
+ msgstr ""
126
+
127
+ #: admin.php:136
128
+ msgid "Enter 0 to disable."
129
+ msgstr ""
130
+
131
+ #: admin.php:140
132
+ msgid "Show Larger Page Numbers In Multiples Of"
133
+ msgstr ""
134
+
135
+ #: admin.php:145
136
+ msgid "For example, if mutiple is 5, it will show: 5, 10, 15, 20, 25"
137
+ msgstr ""
138
+
139
+ #: admin.php:150
140
+ msgid "Page Navigation Options"
141
+ msgstr ""
142
+
143
+ #: scb/AdminPage.php:165 scb/AdminPage.php:176
144
+ msgid "Save Changes"
145
+ msgstr ""
146
+
147
+ #: scb/AdminPage.php:279
148
+ msgid "Settings <strong>saved</strong>."
149
+ msgstr ""
150
+
151
+ #: scb/AdminPage.php:337
152
+ msgid "Settings"
153
+ msgstr ""
154
+
155
+ #: wp-pagenavi.php:224
156
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
157
+ msgstr ""
158
+
159
+ #: wp-pagenavi.php:227
160
+ msgid "&laquo; First"
161
+ msgstr ""
162
+
163
+ #: wp-pagenavi.php:228
164
+ msgid "Last &raquo;"
165
+ msgstr ""
166
+
167
+ #: wp-pagenavi.php:229
168
+ msgid "&laquo;"
169
+ msgstr ""
170
+
171
+ #: wp-pagenavi.php:230
172
+ msgid "&raquo;"
173
+ msgstr ""
174
+
175
+ #: wp-pagenavi.php:231 wp-pagenavi.php:232
176
+ msgid "..."
177
+ msgstr ""
178
+
179
+ #. Plugin Name of the plugin/theme
180
+ msgid "WP-PageNavi"
181
+ msgstr ""
182
+
183
+ #. Plugin URI of the plugin/theme
184
+ msgid "http://wordpress.org/extend/plugins/wp-pagenavi/"
185
+ msgstr ""
186
+
187
+ #. Description of the plugin/theme
188
+ msgid "Adds a more advanced paging navigation to your WordPress blog"
189
+ msgstr ""
190
+
191
+ #. Author of the plugin/theme
192
+ msgid "Lester 'GaMerZ' Chan & scribu"
193
+ msgstr ""
pagenavi-css.css CHANGED
@@ -1,65 +1,24 @@
1
- /*----------------------------------------------------------------*
2
- WordPress 2.8 Plugin: WP-PageNavi 2.60
3
- Copyright (c) 2009 Lester "GaMerZ" Chan
4
 
5
- File Written By:
6
- - Lester "GaMerZ" Chan
7
- - http://lesterchan.net
8
-
9
- File Information:
10
- - Page Navigation CSS Style
11
- - wp-content/plugins/wp-pagenavi/pagenavi-css.css
12
- *----------------------------------------------------------------*/
13
-
14
-
15
- .wp-pagenavi a, .wp-pagenavi a:link {
16
- padding: 2px 4px 2px 4px;
17
- margin: 2px;
18
- text-decoration: none;
19
- border: 1px solid #0066cc;
20
- color: #0066cc;
21
- background-color: #FFFFFF;
22
- }
23
- .wp-pagenavi a:visited {
24
- padding: 2px 4px 2px 4px;
25
- margin: 2px;
26
- text-decoration: none;
27
- border: 1px solid #0066cc;
28
- color: #0066cc;
29
- background-color: #FFFFFF;
30
- }
31
- .wp-pagenavi a:hover {
32
- border: 1px solid #000000;
33
- color: #000000;
34
- background-color: #FFFFFF;
35
- }
36
- .wp-pagenavi a:active {
37
- padding: 2px 4px 2px 4px;
38
- margin: 2px;
39
- text-decoration: none;
40
- border: 1px solid #0066cc;
41
- color: #0066cc;
42
- background-color: #FFFFFF;
43
- }
44
- .wp-pagenavi span.pages {
45
- padding: 2px 4px 2px 4px;
46
- margin: 2px 2px 2px 2px;
47
- color: #000000;
48
- border: 1px solid #000000;
49
- background-color: #FFFFFF;
50
- }
51
- .wp-pagenavi span.current {
52
- padding: 2px 4px 2px 4px;
53
- margin: 2px;
54
- font-weight: bold;
55
- border: 1px solid #000000;
56
- color: #000000;
57
- background-color: #FFFFFF;
58
- }
59
- .wp-pagenavi span.extend {
60
- padding: 2px 4px 2px 4px;
61
- margin: 2px;
62
- border: 1px solid #000000;
63
- color: #000000;
64
- background-color: #FFFFFF;
65
  }
1
+ /*
2
+ Default style for WP-PageNavi plugin
 
3
 
4
+ http://wordpress.org/extend/plugins/wp-pagenavi/
5
+ */
6
+
7
+ .wp-pagenavi {
8
+ clear: both;
9
+ }
10
+
11
+ .wp-pagenavi a, .wp-pagenavi span {
12
+ text-decoration: none;
13
+ border: 1px solid #BFBFBF;
14
+ padding: 3px 5px;
15
+ margin: 2px;
16
+ }
17
+
18
+ .wp-pagenavi a:hover, .wp-pagenavi span.current {
19
+ border-color: #000;
20
+ }
21
+
22
+ .wp-pagenavi span.current {
23
+ font-weight: bold;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  }
pagenavi-options.php DELETED
@@ -1,270 +0,0 @@
1
- <?php
2
- /*----------------------------------------------------------------*
3
- WordPress 2.8 Plugin: WP-PageNavi 2.60
4
- Copyright (c) 2009 Lester "GaMerZ" Chan
5
-
6
- File Written By:
7
- - Lester "GaMerZ" Chan
8
- - http://lesterchan.net
9
-
10
- File Information:
11
- - Page Navigation Options Page
12
- - wp-content/plugins/wp-pagenavi/pagenavi-options.php
13
- *----------------------------------------------------------------*/
14
-
15
-
16
- ### Variables Variables Variables
17
- $base_name = plugin_basename('wp-pagenavi/pagenavi-options.php');
18
- $base_page = 'admin.php?page='.$base_name;
19
- $mode = trim(@$_GET['mode']);
20
- $pagenavi_settings = array('pagenavi_options');
21
-
22
-
23
- ### Form Processing
24
- // Update Options
25
- if (!empty($_POST['Submit'])) {
26
-
27
- $pagenavi_options = array();
28
- $pagenavi_options['pages_text'] = addslashes(@$_POST['pagenavi_pages_text']);
29
- $pagenavi_options['current_text'] = addslashes(@$_POST['pagenavi_current_text']);
30
- $pagenavi_options['page_text'] = addslashes(@$_POST['pagenavi_page_text']);
31
- $pagenavi_options['first_text'] = addslashes(@$_POST['pagenavi_first_text']);
32
- $pagenavi_options['last_text'] = addslashes(@$_POST['pagenavi_last_text']);
33
- $pagenavi_options['next_text'] = addslashes(@$_POST['pagenavi_next_text']);
34
- $pagenavi_options['prev_text'] = addslashes(@$_POST['pagenavi_prev_text']);
35
- $pagenavi_options['dotright_text'] = addslashes(@$_POST['pagenavi_dotright_text']);
36
- $pagenavi_options['dotleft_text'] = addslashes(@$_POST['pagenavi_dotleft_text']);
37
- $pagenavi_options['style'] = intval(@$_POST['pagenavi_style']);
38
- $pagenavi_options['num_pages'] = intval(@$_POST['pagenavi_num_pages']);
39
- $pagenavi_options['always_show'] = (bool) @$_POST['pagenavi_always_show'];
40
- $pagenavi_options['num_larger_page_numbers'] = intval(@$_POST['pagenavi_num_larger_page_numbers']);
41
- $pagenavi_options['larger_page_numbers_multiple'] = intval(@$_POST['pagenavi_larger_page_numbers_multiple']);
42
- $pagenavi_options['use_pagenavi_css'] = (bool) @$_POST['use_pagenavi_css'];
43
-
44
- $update_pagenavi_queries = array();
45
- $update_pagenavi_text = array();
46
- $update_pagenavi_queries[] = update_option('pagenavi_options', $pagenavi_options);
47
- $update_pagenavi_text[] = __('Page Navigation Options', 'wp-pagenavi');
48
- $i=0;
49
- $text = '';
50
- foreach ($update_pagenavi_queries as $update_pagenavi_query) {
51
- if ($update_pagenavi_query) {
52
- $text .= '<font color="green">'.$update_pagenavi_text[$i].' '.__('Updated', 'wp-pagenavi').'</font><br />';
53
- }
54
- $i++;
55
- }
56
- if (empty($text)) {
57
- $text = '<font color="red">'.__('No Page Navigation Option Updated', 'wp-pagenavi').'</font>';
58
- }
59
- }
60
-
61
- // Uninstall WP-PageNavi
62
- if (!empty($_POST['do'])) {
63
- switch($_POST['do']) {
64
- case __('UNINSTALL WP-PageNavi', 'wp-pagenavi') :
65
- echo '<div id="message" class="updated fade">';
66
- echo '<p>';
67
- foreach ($pagenavi_settings as $setting) {
68
- $delete_setting = delete_option($setting);
69
- if ($delete_setting) {
70
- echo '<font color="green">';
71
- printf(__('Setting Key \'%s\' has been deleted.', 'wp-pagenavi'), "<strong><em>{$setting}</em></strong>");
72
- echo '</font><br />';
73
- } else {
74
- echo '<font color="red">';
75
- printf(__('Error deleting Setting Key \'%s\'.', 'wp-pagenavi'), "<strong><em>{$setting}</em></strong>");
76
- echo '</font><br />';
77
- }
78
- }
79
- echo '</p>';
80
- echo '</div>';
81
- $mode = 'end-UNINSTALL';
82
- break;
83
- }
84
- }
85
-
86
-
87
- ### Determines Which Mode It Is
88
- switch($mode) {
89
- // Deactivating WP-PageNavi
90
- case 'end-UNINSTALL':
91
- $deactivate_url = 'plugins.php?action=deactivate&amp;plugin=wp-pagenavi/wp-pagenavi.php';
92
- $deactivate_url = wp_nonce_url($deactivate_url, 'deactivate-plugin_wp-pagenavi/wp-pagenavi.php');
93
- echo '<div class="wrap">';
94
- echo '<h2>'.__('Uninstall WP-PageNavi', 'wp-pagenavi').'</h2>';
95
- echo '<p><strong>'.sprintf(__('<a href="%s">Click Here</a> To Finish The Uninstallation And WP-PageNavi Will Be Deactivated Automatically.', 'wp-pagenavi'), $deactivate_url).'</strong></p>';
96
- echo '</div>';
97
- break;
98
- // Main Page
99
- default:
100
- $pagenavi_options = get_option('pagenavi_options');
101
- ?>
102
- <?php if (!empty($text)) { echo '<!-- Last Action --><div id="message" class="updated fade"><p>'.$text.'</p></div>'; } ?>
103
- <form method="post" action="<?php echo admin_url('admin.php?page='.plugin_basename(__FILE__)); ?>">
104
- <div class="wrap">
105
- <?php screen_icon(); ?>
106
- <h2><?php _e('Page Navigation Options', 'wp-pagenavi'); ?></h2>
107
- <h3><?php _e('Page Navigation Text', 'wp-pagenavi'); ?></h3>
108
- <table class="form-table">
109
- <tr>
110
- <th scope="row" valign="top"><?php _e('Text For Number Of Pages', 'wp-pagenavi'); ?></th>
111
- <td>
112
- <input type="text" name="pagenavi_pages_text" value="<?php echo stripslashes($pagenavi_options['pages_text']); ?>" size="50" /><br />
113
- %CURRENT_PAGE% - <?php _e('The current page number.', 'wp-pagenavi'); ?><br />
114
- %TOTAL_PAGES% - <?php _e('The total number of pages.', 'wp-pagenavi'); ?>
115
- </td>
116
- </tr>
117
- <tr>
118
- <th scope="row" valign="top"><?php _e('Text For Current Page', 'wp-pagenavi'); ?></th>
119
- <td>
120
- <input type="text" name="pagenavi_current_text" value="<?php echo stripslashes(htmlspecialchars($pagenavi_options['current_text'])); ?>" size="30" /><br />
121
- %PAGE_NUMBER% - <?php _e('The page number.', 'wp-pagenavi'); ?><br />
122
- </td>
123
- </tr>
124
- <tr>
125
- <th scope="row" valign="top"><?php _e('Text For Page', 'wp-pagenavi'); ?></th>
126
- <td>
127
- <input type="text" name="pagenavi_page_text" value="<?php echo stripslashes(htmlspecialchars($pagenavi_options['page_text'])); ?>" size="30" /><br />
128
- %PAGE_NUMBER% - <?php _e('The page number.', 'wp-pagenavi'); ?><br />
129
- </td>
130
- </tr>
131
- <tr>
132
- <th scope="row" valign="top"><?php _e('Text For First Page', 'wp-pagenavi'); ?></th>
133
- <td>
134
- <input type="text" name="pagenavi_first_text" value="<?php echo stripslashes(htmlspecialchars($pagenavi_options['first_text'])); ?>" size="30" /><br />
135
- %TOTAL_PAGES% - <?php _e('The total number of pages.', 'wp-pagenavi'); ?>
136
- </td>
137
- </tr>
138
- <tr>
139
- <th scope="row" valign="top"><?php _e('Text For Last Page', 'wp-pagenavi'); ?></th>
140
- <td>
141
- <input type="text" name="pagenavi_last_text" value="<?php echo stripslashes(htmlspecialchars($pagenavi_options['last_text'])); ?>" size="30" /><br />
142
- %TOTAL_PAGES% - <?php _e('The total number of pages.', 'wp-pagenavi'); ?>
143
- </td>
144
- </tr>
145
- <tr>
146
- <th scope="row" valign="top"><?php _e('Text For Next Page', 'wp-pagenavi'); ?></th>
147
- <td>
148
- <input type="text" name="pagenavi_next_text" value="<?php echo stripslashes(htmlspecialchars($pagenavi_options['next_text'])); ?>" size="30" />
149
- </td>
150
- </tr>
151
- <tr>
152
- <th scope="row" valign="top"><?php _e('Text For Previous Page', 'wp-pagenavi'); ?></th>
153
- <td>
154
- <input type="text" name="pagenavi_prev_text" value="<?php echo stripslashes(htmlspecialchars($pagenavi_options['prev_text'])); ?>" size="30" />
155
- </td>
156
- </tr>
157
- <tr>
158
- <th scope="row" valign="top"><?php _e('Text For Next ...', 'wp-pagenavi'); ?></th>
159
- <td>
160
- <input type="text" name="pagenavi_dotright_text" value="<?php echo stripslashes(htmlspecialchars($pagenavi_options['dotright_text'])); ?>" size="30" />
161
- </td>
162
- </tr>
163
- <tr>
164
- <th scope="row" valign="top"><?php _e('Text For Previous ...', 'wp-pagenavi'); ?></th>
165
- <td>
166
- <input type="text" name="pagenavi_dotleft_text" value="<?php echo stripslashes(htmlspecialchars($pagenavi_options['dotleft_text'])); ?>" size="30" />
167
- </td>
168
- </tr>
169
- </table>
170
- <h3><?php _e('Page Navigation Options', 'wp-pagenavi'); ?></h3>
171
- <table class="form-table">
172
- <tr>
173
- <th scope="row" valign="top"><?php _e('Use pagenavi.css?', 'wp-pagenavi'); ?></th>
174
- <td>
175
- <input type="checkbox" name="use_pagenavi_css" value="1" <?php checked($pagenavi_options['use_pagenavi_css']); ?>>
176
- </td>
177
- </tr>
178
- <tr>
179
- <th scope="row" valign="top"><?php _e('Page Navigation Style', 'wp-pagenavi'); ?></th>
180
- <td>
181
- <select name="pagenavi_style" size="1">
182
- <option value="1"<?php selected('1', $pagenavi_options['style']); ?>><?php _e('Normal', 'wp-pagenavi'); ?></option>
183
- <option value="2"<?php selected('2', $pagenavi_options['style']); ?>><?php _e('Drop Down List', 'wp-pagenavi'); ?></option>
184
- </select>
185
- </td>
186
- </tr>
187
- <tr>
188
- <th scope="row" valign="top"><?php _e('Number Of Pages To Show?', 'wp-pagenavi'); ?></th>
189
- <td>
190
- <input type="text" name="pagenavi_num_pages" value="<?php echo stripslashes($pagenavi_options['num_pages']); ?>" size="4" />
191
- </td>
192
- </tr>
193
- <tr>
194
- <th scope="row" valign="top"><?php _e('Always Show Page Navigation?', 'wp-pagenavi'); ?></th>
195
- <td>
196
- <input type="checkbox" name="pagenavi_always_show" value="1" <?php checked($pagenavi_options['always_show']); ?>>
197
- <?php _e("Show navigation even if there's only one page", 'wp-pagenavi'); ?>
198
- </td>
199
- </tr>
200
- <tr>
201
- <th scope="row" valign="top"><?php _e('Number Of Larger Page Numbers To Show?', 'wp-pagenavi'); ?></th>
202
- <td>
203
- <input type="text" name="pagenavi_num_larger_page_numbers" value="<?php echo stripslashes($pagenavi_options['num_larger_page_numbers']); ?>" size="4" />
204
- <br />
205
- <?php _e('Larger page numbers are in additional to the default page numbers. It is useful for authors who is paginating through many posts.', 'wp-pagenavi'); ?>
206
- <br />
207
- <?php _e('For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50', 'wp-pagenavi'); ?>
208
- <br />
209
- <?php _e('Enter 0 to disable.', 'wp-pagenavi'); ?>
210
- </td>
211
- </tr>
212
- <tr>
213
- <th scope="row" valign="top"><?php _e('Show Larger Page Numbers In Multiples Of:', 'wp-pagenavi'); ?></th>
214
- <td>
215
- <input type="text" name="pagenavi_larger_page_numbers_multiple" value="<?php echo stripslashes($pagenavi_options['larger_page_numbers_multiple']); ?>" size="4" />
216
- <br />
217
- <?php _e('If mutiple is in 5, it will show: 5, 10, 15, 20, 25', 'wp-pagenavi'); ?>
218
- <br />
219
- <?php _e('If mutiple is in 10, it will show: 10, 20, 30, 40, 50', 'wp-pagenavi'); ?>
220
- </td>
221
- </tr>
222
- </table>
223
- <p class="submit">
224
- <input type="submit" name="Submit" class="button" value="<?php _e('Save Changes', 'wp-pagenavi'); ?>" />
225
- </p>
226
- </div>
227
- </form>
228
- <p>&nbsp;</p>
229
-
230
- <!-- Uninstall WP-PageNavi -->
231
- <form method="post" action="<?php echo admin_url('admin.php?page='.plugin_basename(__FILE__)); ?>">
232
- <div class="wrap">
233
- <h3><?php _e('Uninstall WP-PageNavi', 'wp-pagenavi'); ?></h3>
234
- <p>
235
- <?php _e('Deactivating WP-PageNavi plugin does not remove any data that may have been created, such as the page navigation options. To completely remove this plugin, you can uninstall it here.', 'wp-pagenavi'); ?>
236
- </p>
237
- <p style="color: red">
238
- <strong><?php _e('WARNING:', 'wp-pagenavi'); ?></strong><br />
239
- <?php _e('Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first.', 'wp-pagenavi'); ?>
240
- </p>
241
- <p style="color: red">
242
- <strong><?php _e('The following WordPress Options will be DELETED:', 'wp-pagenavi'); ?></strong><br />
243
- </p>
244
- <table class="widefat">
245
- <thead>
246
- <tr>
247
- <th><?php _e('WordPress Options', 'wp-pagenavi'); ?></th>
248
- </tr>
249
- </thead>
250
- <tr>
251
- <td valign="top">
252
- <ol>
253
- <?php
254
- foreach ($pagenavi_settings as $settings) {
255
- echo '<li>'.$settings.'</li>'."\n";
256
- }
257
- ?>
258
- </ol>
259
- </td>
260
- </tr>
261
- </table>
262
- <p>&nbsp;</p>
263
- <p style="text-align: center;">
264
- <input type="submit" name="do" value="<?php _e('UNINSTALL WP-PageNavi', 'wp-pagenavi'); ?>" class="button" onclick="return confirm('<?php _e('You Are About To Uninstall WP-PageNavi From WordPress.\nThis Action Is Not Reversible.\n\n Choose [Cancel] To Stop, [OK] To Uninstall.', 'wp-pagenavi'); ?>')" />
265
- </p>
266
- </div>
267
- </form>
268
- <?php
269
- } // End switch($mode)
270
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -1,112 +1,140 @@
1
- === WP-PageNavi ===
2
- Contributors: GamerZ, scribu
3
- Donate link: http://lesterchan.net/wordpress
4
- Tags: pagenavi, navi, navigation, wp-pagenavi, page
5
- Requires at least: 2.8
6
- Tested up to: 2.9.1
7
- Stable tag: 2.61
8
-
9
- Adds a more advanced paging navigation to your WordPress site.
10
-
11
- == Description ==
12
-
13
- Adds a more advanced paging navigation to your WordPress site.
14
-
15
- Example:
16
-
17
- Pages (17): [1] 2 3 4 » ... Last »
18
-
19
-
20
- <br>
21
- [Demo](http://lesterchan.net/wordpress/) | [Translations](http://dev.wp-plugins.org/browser/wp-pagenavi/i18n/)
22
-
23
- = Credits =
24
- * Right-to-left language support by [Kambiz R. Khojasteh](http://persian-programming.com/)
25
- * Maintenance by [scribu](http://scribu.net)
26
-
27
- == Installation ==
28
-
29
- You can either install it automatically from the WordPress admin, or do it manually:
30
-
31
- 1. Unzip the archive and put the `wp-pagenavi` folder into your plugins folder (/wp-content/plugins/).
32
- 1. Activate the plugin from the Plugins menu.
33
-
34
- = Usage =
35
-
36
  1. Open `wp-content/themes/your-theme-name/footer.php`
37
  2. Add anywhere: `<?php wp_pagenavi(); ?>`
38
- 3. Go to *WP-Admin -> Settings -> PageNavi* to configure WP-PageNavi.
39
-
40
- = Changing the CSS =
41
-
42
- If you need to configure the CSS style of WP-PageNavi, you can copy the `pagenavi-css.css` file from the plugin directory to your theme's directory and make your modifications there. This way, you won't lose your changes when you update the plugin.
43
-
44
- Alternatively, you can uncheck the "Use pagenavi.css?" option from the settings page and add the styles to your theme's style.css file directly.
45
-
46
-
47
- == Screenshots ==
48
-
49
- 1. Default appearance
50
- 2. Options page
51
-
52
- == Changelog ==
53
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  = 2.61 (2010-02-07) =
55
  * fixed: memory limit error
56
 
57
- = 2.60 (2010-02-07) =
58
- * new: Compatible With WordPress 2.9
59
- * new: Added "previouspostslink" and "nextpostslink" CSS classes for styling next/previous posts link by Joost de Valk
60
- * new: Added option to include pagenavi-css.css In WP-Admin -> Settings -> PageNavi
61
- * fixed: check for pagenavi-css.css in the child theme, first
62
- * fixed: cleaner options page
63
-
64
- = 2.50 (2009-06-01) =
65
- * new: Compatible With WordPress 2.8
66
- * new: Added Larger Page Number Pagination
67
- * new: Added "first", "page" and "last" CSS Name To Link
68
- * fixed: Removed "&#8201;" Entity
69
- * fixed: Uses $_SERVER['PHP_SELF'] With plugin_basename(__FILE__) Instead Of Just $_SERVER['REQUEST_URI']
70
-
71
- = 2.40 (2008-12-12) =
72
- * new: Compatible With WordPress 2.7 Only
73
- * new: Right To Left Language Support by Kambiz R. Khojasteh
74
- * new: Called pagenavi_textdomain() In pagenavi_init() by Kambiz R. Khojasteh
75
-
76
- = 2.31 (2008-07-16) =
77
- * new: Compatible With WordPress 2.6
78
-
79
- = 2.30 (2008-06-01) =
80
- * new: WP-PageNavi Will Load 'pagenavi-css.css' Inside Your Theme Directory If It Exists. If Not, It Will Just Load The Default 'pagenavi-css.css' By WP-PageNavi
81
- * new: Uses /wp-pagenavi/ Folder Instead Of /pagenavi/
82
- * new: Uses wp-pagenavi.php Instead Of pagenavi.php
83
- * new: Added "wp-pagenavi a:visited" Style In pagenavi-css.css
84
- * new: Added $before And $after Function Arguments To wp_pagenavi();
85
- * fixed: Rearranged CSS Classes In pagenavi-css.css
86
- * fixed: "First" Text Does Not Always Appear If Page 1 Is Not Shown
87
-
88
- = 2.20 (2007-10-01) =
89
- * new: Supports query_posts(); Variables
90
- * new: Ability To Uninstall WP-PageNavi
91
-
92
- = 2.11 (2007-06-01) =
93
- * new: Page Navigation Now Is Customizable Via 'WP-Admin -> Options -> PageNavi' And pagenavi-css.css
94
- * new: Default Style Navigation Is Now Boxed Navigation (Similar To Digg.com) =
95
- * fixed: Fix For Ultimate Tag Warrior By Oliver Kastler & Stephan (Netconcepts)
96
-
97
- = 2.10 (2007-02-01) =
98
- * new: Compatible With WordPress 2.1 Only
99
- * new: Move pagenavi.php To pagenavi Folder
100
-
101
- = 2.03 (2006-10-01) =
102
- * fixed: Now Compatible With WordPress 2.1
103
-
104
- = 2.02 (2006-06-01) =
105
- * new: Added Drop Down Menu Style Of Page Navigation
106
-
107
- = 2.01 (2006-03-01) =
108
- * fixed: Paging Show If There Is Only 1 Page
109
-
110
- = 2.00 (2006-01-01) =
111
- * new: Compatible With WordPress 2.0
112
- * fixed: Space Issues
1
+ === WP-PageNavi ===
2
+ Contributors: GamerZ, scribu
3
+ Donate link: http://lesterchan.net/wordpress
4
+ Tags: navigation, pagination, paging, pages
5
+ Requires at least: 2.8
6
+ Tested up to: 3.0
7
+ Stable tag: 2.72
8
+
9
+ Adds a more advanced paging navigation to your WordPress site.
10
+
11
+ == Description ==
12
+
13
+ [PHP5 is required since version 2.70](http://scribu.net/wordpress/wp-pagenavi/wp-2-70.html)
14
+
15
+ Adds a more advanced paging navigation to your WordPress site.
16
+
17
+ Example:
18
+
19
+ Pages (17): [1] 2 3 4 » ... Last »
20
+
21
+
22
+ <br>
23
+ [Demo](http://lesterchan.net/wordpress/) | [Translations](http://dev.wp-plugins.org/browser/wp-pagenavi/trunk/lang/)
24
+
25
+ == Installation ==
26
+
27
+ You can either install it automatically from the WordPress admin, or do it manually:
28
+
29
+ 1. Unzip the archive and put the `wp-pagenavi` folder into your plugins folder (/wp-content/plugins/).
30
+ 1. Activate the plugin from the Plugins menu.
31
+
32
+ = Usage =
33
+
 
 
34
  1. Open `wp-content/themes/your-theme-name/footer.php`
35
  2. Add anywhere: `<?php wp_pagenavi(); ?>`
36
+ 3. Go to *WP-Admin -> Settings -> PageNavi* to configure WP-PageNavi.
37
+
38
+ = Changing the CSS =
39
+
40
+ If you need to configure the CSS style of WP-PageNavi, you can copy the `pagenavi-css.css` file from the plugin directory to your theme's directory and make your modifications there. This way, you won't lose your changes when you update the plugin.
41
+
42
+ Alternatively, you can uncheck the "Use pagenavi.css?" option from the settings page and add the styles to your theme's style.css file directly.
43
+
44
+
45
+ == Screenshots ==
46
+
47
+ 1. Default appearance
48
+ 2. Options page
49
+
50
+ == Frequently Asked Questions ==
51
+
52
+ = Error on activation: "Parse error: syntax error, unexpected..." =
53
+
54
+ Make sure your host is running PHP 5. The only foolproof way to do this is to add this line to wp-config.php (after the opening `<?php` tag):
55
+
56
+ `var_dump(PHP_VERSION);`
57
+ <br>
58
+
59
+ = Doesn't work with query_posts() =
60
+
61
+ Read [The Right Way To Use query_posts()](http://scribu.net/wordpress/right-way-to-use-query_posts.html)
62
+
63
+ == Upgrade Notice ==
64
+
65
+ Read before upgrading: http://scribu.net/wordpress/wp-pagenavi/wp-2-70.html
66
+
67
+ == Changelog ==
68
+
69
+ = 2.72 (2010-04-19) =
70
+ * fix first link
71
+
72
+ = 2.71 (2010-04-18) =
73
+ * remove conflicting .left and .right from .extend elements
74
+ * bundle language files
75
+
76
+ = 2.70 (2010-04-11) =
77
+ * better default CSS
78
+ * fixed issue with slashed quotes in settings
79
+ * let WordPress handle uninstallation
80
+ * [more info](http://scribu.net/wordpress/wp-pagenavi/wp-2-70.html)
81
+
82
  = 2.61 (2010-02-07) =
83
  * fixed: memory limit error
84
 
85
+ = 2.60 (2010-02-07) =
86
+ * new: Compatible With WordPress 2.9
87
+ * new: Added "previouspostslink" and "nextpostslink" CSS classes for styling next/previous posts link by Joost de Valk
88
+ * new: Added option to include pagenavi-css.css In WP-Admin -> Settings -> PageNavi
89
+ * fixed: check for pagenavi-css.css in the child theme, first
90
+ * fixed: cleaner options page
91
+
92
+ = 2.50 (2009-06-01) =
93
+ * new: Compatible With WordPress 2.8
94
+ * new: Added Larger Page Number Pagination
95
+ * new: Added "first", "page" and "last" CSS Name To Link
96
+ * fixed: Removed "&#8201;" Entity
97
+ * fixed: Uses $_SERVER['PHP_SELF'] With plugin_basename(__FILE__) Instead Of Just $_SERVER['REQUEST_URI']
98
+
99
+ = 2.40 (2008-12-12) =
100
+ * new: Compatible With WordPress 2.7 Only
101
+ * new: Right To Left Language Support by Kambiz R. Khojasteh
102
+ * new: Called pagenavi_textdomain() In pagenavi_init() by Kambiz R. Khojasteh
103
+
104
+ = 2.31 (2008-07-16) =
105
+ * new: Compatible With WordPress 2.6
106
+
107
+ = 2.30 (2008-06-01) =
108
+ * new: WP-PageNavi Will Load 'pagenavi-css.css' Inside Your Theme Directory If It Exists. If Not, It Will Just Load The Default 'pagenavi-css.css' By WP-PageNavi
109
+ * new: Uses /wp-pagenavi/ Folder Instead Of /pagenavi/
110
+ * new: Uses wp-pagenavi.php Instead Of pagenavi.php
111
+ * new: Added "wp-pagenavi a:visited" Style In pagenavi-css.css
112
+ * new: Added $before And $after Function Arguments To wp_pagenavi();
113
+ * fixed: Rearranged CSS Classes In pagenavi-css.css
114
+ * fixed: "First" Text Does Not Always Appear If Page 1 Is Not Shown
115
+
116
+ = 2.20 (2007-10-01) =
117
+ * new: Supports query_posts(); Variables
118
+ * new: Ability To Uninstall WP-PageNavi
119
+
120
+ = 2.11 (2007-06-01) =
121
+ * new: Page Navigation Now Is Customizable Via 'WP-Admin -> Options -> PageNavi' And pagenavi-css.css
122
+ * new: Default Style Navigation Is Now Boxed Navigation (Similar To Digg.com) =
123
+ * fixed: Fix For Ultimate Tag Warrior By Oliver Kastler & Stephan (Netconcepts)
124
+
125
+ = 2.10 (2007-02-01) =
126
+ * new: Compatible With WordPress 2.1 Only
127
+ * new: Move pagenavi.php To pagenavi Folder
128
+
129
+ = 2.03 (2006-10-01) =
130
+ * fixed: Now Compatible With WordPress 2.1
131
+
132
+ = 2.02 (2006-06-01) =
133
+ * new: Added Drop Down Menu Style Of Page Navigation
134
+
135
+ = 2.01 (2006-03-01) =
136
+ * fixed: Paging Show If There Is Only 1 Page
137
+
138
+ = 2.00 (2006-01-01) =
139
+ * new: Compatible With WordPress 2.0
140
+ * fixed: Space Issues
scb/AdminPage.php ADDED
@@ -0,0 +1,427 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ Creates an admin page
5
+
6
+ You must set $this->args and define the page_content() method
7
+ */
8
+
9
+ abstract class scbAdminPage {
10
+ /** Page args
11
+ * $toplevel string If not empty, will create a new top level menu
12
+ * $icon string Path to an icon for the top level menu
13
+ * $parent string (default: options-general.php)
14
+ * $capability string (default: 'manage_options')
15
+ * $page_title string (mandatory)
16
+ * $menu_title string (default: $page_title)
17
+ * $page_slug string (default: sanitized $page_title)
18
+ * $nonce string (default: $page_slug)
19
+ * $action_link string|bool Text of the action link on the Plugins page (default: 'Settings')
20
+ */
21
+ protected $args;
22
+
23
+ // URL to the current plugin directory.
24
+ // Useful for adding css and js files
25
+ protected $plugin_url;
26
+
27
+ // Created at page init
28
+ protected $pagehook;
29
+
30
+ // scbOptions object holder
31
+ // Normally, it's used for storing formdata
32
+ protected $options;
33
+
34
+ // l10n
35
+ protected $textdomain;
36
+
37
+ // Formdata used for filling the form elements
38
+ protected $formdata = array();
39
+
40
+
41
+ // ____________REGISTRATION COMPONENT____________
42
+
43
+
44
+ private static $registered = array();
45
+
46
+ static function register($class, $file, $options = null) {
47
+ if ( isset(self::$registered[$class]) )
48
+ return false;
49
+
50
+ self::$registered[$class] = array($file, $options);
51
+
52
+ add_action('_admin_menu', array(__CLASS__, '_pages_init'));
53
+
54
+ return true;
55
+ }
56
+
57
+ static function replace($old_class, $new_class) {
58
+ if ( ! isset(self::$registered[$old_class]) )
59
+ return false;
60
+
61
+ self::$registered[$new_class] = self::$registered[$old_class];
62
+ unset(self::$registered[$old_class]);
63
+
64
+ return true;
65
+ }
66
+
67
+ static function remove($class) {
68
+ if ( ! isset(self::$registered[$class]) )
69
+ return false;
70
+
71
+ unset(self::$registered[$class]);
72
+
73
+ return true;
74
+ }
75
+
76
+ static function _pages_init() {
77
+ foreach ( self::$registered as $class => $args )
78
+ new $class($args[0], $args[1]);
79
+ }
80
+
81
+
82
+ // ____________MAIN METHODS____________
83
+
84
+
85
+ // Constructor
86
+ function __construct($file, $options = NULL) {
87
+ if ( $options !== NULL ) {
88
+ $this->options = $options;
89
+ $this->formdata = $this->options->get();
90
+ }
91
+
92
+ $this->file = $file;
93
+ $this->plugin_url = plugin_dir_url($file);
94
+
95
+ $this->setup();
96
+ $this->check_args();
97
+
98
+ add_action('admin_menu', array($this, 'page_init'));
99
+ add_filter('contextual_help', array($this, '_contextual_help'), 10, 2);
100
+
101
+ if ( $this->args['action_link'] )
102
+ add_filter('plugin_action_links_' . plugin_basename($file), array($this, '_action_link'));
103
+ }
104
+
105
+ // This is where all the page args can be set
106
+ function setup(){}
107
+
108
+ // This is where the css and js go
109
+ // Both wp_enqueue_*() and inline code can be added
110
+ function page_head(){}
111
+
112
+ // This is where the contextual help goes
113
+ // @return string
114
+ function page_help(){}
115
+
116
+ // A generic page header
117
+ function page_header() {
118
+ echo "<div class='wrap'>\n";
119
+ screen_icon();
120
+ echo "<h2>" . $this->args['page_title'] . "</h2>\n";
121
+ }
122
+
123
+ // This is where the page content goes
124
+ abstract function page_content();
125
+
126
+ // A generic page footer
127
+ function page_footer() {
128
+ echo "</div>\n";
129
+ }
130
+
131
+ // This is where the form data should be validated
132
+ function validate($new_data, $old_data) {
133
+ return $new_data;
134
+ }
135
+
136
+ // A generic form handler
137
+ function form_handler() {
138
+ if ( empty($_POST['action']) )
139
+ return false;
140
+
141
+ check_admin_referer($this->nonce);
142
+
143
+ $new_data = array();
144
+ foreach ( array_keys($this->formdata) as $key )
145
+ $new_data[$key] = @$_POST[$key];
146
+
147
+ $new_data = stripslashes_deep($new_data);
148
+
149
+ $this->formdata = $this->validate($new_data, $this->formdata);
150
+
151
+ if ( isset($this->options) )
152
+ $this->options->update($this->formdata);
153
+
154
+ $this->admin_msg();
155
+ }
156
+
157
+
158
+ // ____________UTILITIES____________
159
+
160
+
161
+ // Generates a form submit button
162
+ function submit_button($value = '', $action = 'action', $class = "button") {
163
+ if ( is_array($value) ) {
164
+ extract(wp_parse_args($value, array(
165
+ 'value' => __('Save Changes', $this->textdomain),
166
+ 'action' => 'action',
167
+ 'class' => 'button',
168
+ 'ajax' => true
169
+ )));
170
+
171
+ if ( ! $ajax )
172
+ $class .= ' no-ajax';
173
+ }
174
+ else {
175
+ if ( empty($value) )
176
+ $value = __('Save Changes', $this->textdomain);
177
+ }
178
+
179
+ $input_args = array(
180
+ 'type' => 'submit',
181
+ 'names' => $action,
182
+ 'values' => $value,
183
+ 'extra' => '',
184
+ 'desc' => false
185
+ );
186
+
187
+ if ( ! empty($class) )
188
+ $input_args['extra'] = "class='{$class}'";
189
+
190
+ $output = "<p class='submit'>\n" . scbForms::input($input_args) . "</p>\n";
191
+
192
+ return $output;
193
+ }
194
+
195
+ /*
196
+ Mimics scbForms::form_wrap()
197
+
198
+ $this->form_wrap($content); // generates a form with a default submit button
199
+
200
+ $this->form_wrap($content, false); // generates a form with no submit button
201
+
202
+ // the second argument is sent to submit_button()
203
+ $this->form_wrap($content, array(
204
+ 'text' => 'Save changes',
205
+ 'name' => 'action',
206
+ 'ajax' => true,
207
+ ));
208
+ */
209
+ function form_wrap($content, $submit_button = true) {
210
+ if ( is_array($submit_button) ) {
211
+ $content .= call_user_func(array($this, 'submit_button'), $submit_button);
212
+ } elseif ( true === $submit_button ) {
213
+ $content .= $this->submit_button();
214
+ } elseif ( false !== strpos($submit_button, '<input') ) {
215
+ $content .= $submit_button;
216
+ } elseif ( false !== $submit_button ) {
217
+ $button_args = array_slice(func_get_args(), 1);
218
+ $content .= call_user_func_array(array($this, 'submit_button'), $button_args);
219
+ }
220
+
221
+ return scbForms::form_wrap($content, $this->nonce);
222
+ }
223
+
224
+ // See scbForms::input()
225
+ function input($args, $options = NULL) {
226
+ if ( $options === NULL )
227
+ $options = $this->formdata;
228
+
229
+ return scbForms::input($args, $options);
230
+ }
231
+
232
+ // See scbForms::form()
233
+ function form($rows, $options = NULL) {
234
+ if ( $options === NULL )
235
+ $options = $this->formdata;
236
+
237
+ return scbForms::form($rows, $options, $this->nonce);
238
+ }
239
+
240
+ // See scbForms::table()
241
+ function table($rows, $options = NULL) {
242
+ if ( $options === NULL )
243
+ $options = $this->formdata;
244
+
245
+ return scbForms::table($rows, $options);
246
+ }
247
+
248
+ // See scbForms::table_row()
249
+ function table_row($row, $options = NULL) {
250
+ if ( $options === NULL )
251
+ $options = $this->formdata;
252
+
253
+ return scbForms::table_row($row, $options);
254
+ }
255
+
256
+ // Mimics scbForms::form_table()
257
+ function form_table($rows, $options = NULL) {
258
+ $output = $this->table($rows, $options);
259
+
260
+ $args = array_slice(func_get_args(), 2);
261
+ array_unshift($args, $output);
262
+
263
+ return call_user_func_array(array($this, 'form_wrap'), $args);
264
+ }
265
+
266
+ // Mimics scbForms::form_table_wrap()
267
+ function form_table_wrap($content) {
268
+ $output = self::table_wrap($content);
269
+
270
+ $args = array_slice(func_get_args(), 1);
271
+ array_unshift($args, $output);
272
+
273
+ return call_user_func_array(array($this, 'form_wrap'), $args);
274
+ }
275
+
276
+ // Generates a standard admin notice
277
+ function admin_msg($msg = '', $class = "updated") {
278
+ if ( empty($msg) )
279
+ $msg = __('Settings <strong>saved</strong>.', $this->textdomain);
280
+
281
+ echo "<div class='$class fade'><p>$msg</p></div>\n";
282
+ }
283
+
284
+ // Wraps a string in a <script> tag
285
+ function js_wrap($string) {
286
+ return "\n<script type='text/javascript'>\n" . $string . "\n</script>\n";
287
+ }
288
+
289
+ // Wraps a string in a <style> tag
290
+ function css_wrap($string) {
291
+ return "\n<style type='text/css'>\n" . $string . "\n</style>\n";
292
+ }
293
+
294
+
295
+ // ____________INTERNAL METHODS____________
296
+
297
+
298
+ function __call($method, $args) {
299
+ return call_user_func_array(array('scbForms', $method), $args);
300
+ }
301
+
302
+
303
+ // Registers a page
304
+ function page_init() {
305
+ extract($this->args);
306
+
307
+ if ( ! $toplevel ) {
308
+ $this->pagehook = add_submenu_page($parent, $page_title, $menu_title, $capability, $page_slug, array($this, '_page_content_hook'));
309
+ } else {
310
+ $func = 'add_' . $toplevel . '_page';
311
+ $this->pagehook = $func($page_title, $menu_title, $capability, $page_slug, array($this, '_page_content_hook'), $icon_url);
312
+ }
313
+
314
+ if ( ! $this->pagehook )
315
+ return;
316
+
317
+ if ( $ajax_submit ) {
318
+ $this->ajax_response();
319
+ add_action('admin_footer', array($this, 'ajax_submit'), 20);
320
+ }
321
+
322
+ add_action('admin_print_styles-' . $this->pagehook, array($this, 'page_head'));
323
+ }
324
+
325
+ private function check_args() {
326
+ if ( empty($this->args['page_title']) )
327
+ trigger_error('Page title cannot be empty', E_USER_WARNING);
328
+
329
+ $this->args = wp_parse_args($this->args, array(
330
+ 'toplevel' => '',
331
+ 'icon' => '',
332
+ 'parent' => 'options-general.php',
333
+ 'capability' => 'manage_options',
334
+ 'menu_title' => $this->args['page_title'],
335
+ 'page_slug' => '',
336
+ 'nonce' => '',
337
+ 'action_link' => __('Settings', $this->textdomain),
338
+ 'ajax_submit' => false,
339
+ ));
340
+
341
+ if ( empty($this->args['page_slug']) )
342
+ $this->args['page_slug'] = sanitize_title_with_dashes($this->args['menu_title']);
343
+
344
+ if ( empty($this->args['nonce']) )
345
+ $this->nonce = $this->args['page_slug'];
346
+ }
347
+
348
+ function _contextual_help($help, $screen) {
349
+ if ( is_object($screen) )
350
+ $screen = $screen->id;
351
+
352
+ if ( $screen == $this->pagehook && $actual_help = $this->page_help() )
353
+ return $actual_help;
354
+
355
+ return $help;
356
+ }
357
+
358
+ function ajax_response() {
359
+ if ( ! isset($_POST['_ajax_submit']) || $_POST['_ajax_submit'] != $this->pagehook )
360
+ return;
361
+
362
+ $this->form_handler();
363
+ die;
364
+ }
365
+
366
+ function ajax_submit() {
367
+ global $page_hook;
368
+
369
+ if ( $page_hook != $this->pagehook )
370
+ return;
371
+ ?>
372
+ <script type="text/javascript">
373
+ jQuery(document).ready(function($){
374
+ var $spinner = $(new Image()).attr('src', '<?php echo admin_url("images/wpspin_light.gif"); ?>');
375
+
376
+ $(':submit').click(function(ev){
377
+ var $submit = $(this);
378
+ var $form = $submit.parents('form');
379
+
380
+ if ( $submit.hasClass('no-ajax') || $form.attr('method').toLowerCase() != 'post' )
381
+ return true;
382
+
383
+ var $this_spinner = $spinner.clone();
384
+
385
+ $submit.before($this_spinner).hide();
386
+
387
+ var data = $form.serializeArray();
388
+ data.push({name: $submit.attr('name'), value: $submit.val()});
389
+ data.push({name: '_ajax_submit', value: '<?php echo $this->pagehook; ?>'});
390
+
391
+ $.post(location.href, data, function(response){
392
+ var $prev = $('.wrap > .updated, .wrap > .error');
393
+ var $msg = $(response).hide().insertAfter($('.wrap h2'));
394
+ if ( $prev.length > 0 )
395
+ $prev.fadeOut('slow', function(){ $msg.fadeIn('slow'); });
396
+ else
397
+ $msg.fadeIn('slow');
398
+
399
+ $this_spinner.hide();
400
+ $submit.show();
401
+ });
402
+
403
+ ev.stopPropagation();
404
+ ev.preventDefault();
405
+ });
406
+ });
407
+ </script>
408
+ <?php
409
+ }
410
+
411
+ function _page_content_hook() {
412
+ $this->form_handler();
413
+
414
+ $this->page_header();
415
+ $this->page_content();
416
+ $this->page_footer();
417
+ }
418
+
419
+ function _action_link($links) {
420
+ $url = add_query_arg('page', $this->args['page_slug'], admin_url($this->args['parent']));
421
+
422
+ $links[] = html_link($url, $this->args['action_link']);
423
+
424
+ return $links;
425
+ }
426
+ }
427
+
scb/Forms.php ADDED
@@ -0,0 +1,464 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class scbForms {
4
+ const token = '%input%';
5
+
6
+ /* Generates one or more form elements of the same type,
7
+ including <select>s and <textarea>s.
8
+
9
+ $args = array (
10
+ 'type' => string (mandatory)
11
+ 'name' => string | array (mandatory)
12
+ 'value' => string | array
13
+ 'desc' => string | array | false
14
+ 'desc_pos' => 'before' | 'after' | 'foo %input% bar' (default: after)
15
+ 'extra' => string (default: class="regular-text")
16
+ );
17
+
18
+ $formdata = associative array with the formdata with which to fill the elements
19
+ */
20
+
21
+ protected static $args;
22
+ protected static $formdata = array();
23
+
24
+ static function input($args, $formdata = array()) {
25
+ $args = self::validate_data($args);
26
+
27
+ $error = false;
28
+ foreach ( array('name', 'value') as $key ) {
29
+ $old = $key . 's';
30
+
31
+ if ( isset($args[$old]) ) {
32
+ $args[$key] = $args[$old];
33
+ unset($args[$old]);
34
+ }
35
+ }
36
+
37
+ if ( !isset($args['name']) || empty($args['name']) )
38
+ return trigger_error("Empty name", E_USER_WARNING);
39
+
40
+ self::$args = $args;
41
+ self::$formdata = self::validate_data($formdata);
42
+
43
+ switch ( $args['type'] ) {
44
+ case 'select': return self::_select();
45
+ case 'textarea': return self::_textarea();
46
+ default: return self::_input();
47
+ }
48
+ }
49
+
50
+ // Deprecated
51
+ static function select($args, $options = array()) {
52
+ if ( !empty($options) )
53
+ $args['value'] = $options;
54
+
55
+ self::$args = $args;
56
+
57
+ return self::_select();
58
+ }
59
+
60
+ // Deprecated
61
+ static function textarea($args, $content = '') {
62
+ if ( !empty($content) )
63
+ $args['value'] = $content;
64
+
65
+ self::$args = $args;
66
+
67
+ return self::_textarea();
68
+ }
69
+
70
+
71
+ // ____________UTILITIES____________
72
+
73
+
74
+ // Generates a table wrapped in a form
75
+ static function form_table($rows, $formdata = NULL) {
76
+ $output = '';
77
+ foreach ( $rows as $row )
78
+ $output .= self::table_row($row, $formdata);
79
+
80
+ $output = self::form_table_wrap($output);
81
+
82
+ return $output;
83
+ }
84
+
85
+ // Generates a form
86
+ static function form($inputs, $formdata = NULL, $nonce) {
87
+ $output = '';
88
+ foreach ( $inputs as $input )
89
+ $output .= self::input($input, $formdata);
90
+
91
+ $output = self::form_wrap($output, $nonce);
92
+
93
+ return $output;
94
+ }
95
+
96
+ // Generates a table
97
+ static function table($rows, $formdata = NULL) {
98
+ $output = '';
99
+ foreach ( $rows as $row )
100
+ $output .= self::table_row($row, $formdata);
101
+
102
+ $output = self::table_wrap($output);
103
+
104
+ return $output;
105
+ }
106
+
107
+ // Generates a table row
108
+ static function table_row($args, $formdata = NULL) {
109
+ return self::row_wrap($args['title'], self::input($args, $formdata));
110
+ }
111
+
112
+
113
+ // ____________WRAPPERS____________
114
+
115
+
116
+ // Wraps the given content in a <form><table>
117
+ static function form_table_wrap($content, $nonce = 'update_options') {
118
+ $output = self::table_wrap($content);
119
+ $output = self::form_wrap($output, $nonce);
120
+
121
+ return $output;
122
+ }
123
+
124
+ // Wraps the given content in a <form>
125
+ static function form_wrap($content, $nonce = 'update_options') {
126
+ $output = "\n<form method='post' action=''>\n";
127
+ $output .= $content;
128
+ $output .= wp_nonce_field($action = $nonce, $name = "_wpnonce", $referer = true , $echo = false);
129
+ $output .= "\n</form>\n";
130
+
131
+ return $output;
132
+ }
133
+
134
+ // Wraps the given content in a <table>
135
+ static function table_wrap($content) {
136
+ $output = "\n<table class='form-table'>\n" . $content . "\n</table>\n";
137
+
138
+ return $output;
139
+ }
140
+
141
+ // Wraps the given content in a <tr><td>
142
+ static function row_wrap($title, $content) {
143
+ return "\n<tr>\n\t<th scope='row'>" . $title . "</th>\n\t<td>\n\t\t" . $content . "\t</td>\n\n</tr>";
144
+ }
145
+
146
+
147
+ // ____________PRIVATE METHODS____________
148
+
149
+
150
+ // Recursivly transform empty arrays to ''
151
+ private static function validate_data($data) {
152
+ if ( ! is_array($data) )
153
+ return $data;
154
+
155
+ if ( empty($data) )
156
+ return '';
157
+
158
+ foreach ( $data as $key => &$value )
159
+ $value = self::validate_data($value);
160
+
161
+ return $data;
162
+ }
163
+
164
+ // From multiple inputs to single inputs
165
+ private static function _input() {
166
+ extract(wp_parse_args(self::$args, array(
167
+ 'name' => NULL,
168
+ 'value' => NULL,
169
+ 'desc' => NULL,
170
+ 'checked' => NULL,
171
+ )));
172
+
173
+ $m_name = is_array($name);
174
+ $m_value = is_array($value);
175
+ $m_desc = is_array($desc);
176
+
177
+ // Correct name
178
+ if ( !$m_name && $m_value
179
+ && 'checkbox' == $type
180
+ && false === strpos($name, '[')
181
+ )
182
+ $args['name'] = $name = $name . '[]';
183
+
184
+ // Expand names or values
185
+ if ( !$m_name && !$m_value ) {
186
+ $a = array($name => $value);
187
+ }
188
+ elseif ( $m_name && !$m_value ) {
189
+ $a = array_fill_keys($name, $value);
190
+ }
191
+ elseif ( !$m_name && $m_value ) {
192
+ $a = array_fill_keys($value, $name);
193
+ }
194
+ else {
195
+ $a = array_combine($name, $value);
196
+ }
197
+
198
+ // Correct descriptions
199
+ $_after = '';
200
+ if ( isset($desc) && !$m_desc && false === strpos($desc, self::token) ) {
201
+ if ( $m_value ) {
202
+ $_after = $desc;
203
+ $args['desc'] = $desc = $value;
204
+ }
205
+ elseif ( $m_name ) {
206
+ $_after = $desc;
207
+ $args['desc'] = $desc = $name;
208
+ }
209
+ }
210
+
211
+ // Determine what goes where
212
+ if ( !$m_name && $m_value ) {
213
+ $i1 = 'val';
214
+ $i2 = 'name';
215
+ } else {
216
+ $i1 = 'name';
217
+ $i2 = 'val';
218
+ }
219
+
220
+ $func = in_array($type, array('checkbox', 'radio')) ? '_checkbox_single' : '_input_single';
221
+
222
+ // Set constant args
223
+ $const_args = self::array_extract(self::$args, array('type', 'desc_pos', 'checked'));
224
+ if ( isset($extra) )
225
+ $const_args['extra'] = explode(' ', $extra);
226
+
227
+ $i = 0;
228
+ foreach ( $a as $name => $val ) {
229
+ $cur_args = $const_args;
230
+
231
+ if ( $$i1 !== NULL )
232
+ $cur_args['name'] = $$i1;
233
+
234
+ if ( $$i2 !== NULL )
235
+ $cur_args['value'] = $$i2;
236
+
237
+ // Set desc
238
+ if ( is_array($desc) )
239
+ $cur_args['desc'] = $desc[$i];
240
+ elseif ( isset($desc) )
241
+ $cur_args['desc'] = $desc;
242
+
243
+ // Find relevant formdata
244
+ $match = NULL;
245
+ if ( $checked === NULL ) {
246
+ $match = @self::$formdata[str_replace('[]', '', $$i1)];
247
+ if ( is_array($match) ) {
248
+ $match = $match[$i];
249
+ }
250
+ } else if ( is_array($checked) ) {
251
+ $cur_args['checked'] = isset($checked[$i]) && $checked[$i];
252
+ }
253
+
254
+ $output[] = self::$func($cur_args, $match);
255
+
256
+ $i++;
257
+ }
258
+
259
+ return implode("\n", $output) . $_after;
260
+ }
261
+
262
+ // Handle args for checkboxes and radio inputs
263
+ private static function _checkbox_single($args, $data) {
264
+ $args = wp_parse_args($args, array(
265
+ 'name' => NULL,
266
+ 'value' => true,
267
+ 'desc_pos' => 'after',
268
+ 'desc' => NULL,
269
+ 'checked' => NULL,
270
+ 'extra' => array(),
271
+ ));
272
+
273
+ foreach ( $args as $key => &$val )
274
+ $$key = &$val;
275
+ unset($val);
276
+
277
+ if ( $checked === NULL && $value == $data )
278
+ $checked = true;
279
+
280
+ if ( $checked )
281
+ $extra[] = 'checked="checked"';
282
+
283
+ if ( $desc === NULL && !is_bool($value) )
284
+ $desc = str_replace('[]', '', $value);
285
+
286
+ return self::_input_gen($args);
287
+ }
288
+
289
+ // Handle args for text inputs
290
+ private static function _input_single($args, $data) {
291
+ $args = wp_parse_args($args, array(
292
+ 'value' => $data,
293
+ 'desc_pos' => 'after',
294
+ 'extra' => array('class="regular-text"'),
295
+ ));
296
+
297
+ foreach ( $args as $key => &$val )
298
+ $$key = &$val;
299
+ unset($val);
300
+
301
+ if ( FALSE === strpos($name, '[') )
302
+ $extra[] = "id='{$name}'";
303
+
304
+ return self::_input_gen($args);
305
+ }
306
+
307
+ // Generate html with the final args
308
+ private static function _input_gen($args) {
309
+ extract(wp_parse_args($args, array(
310
+ 'name' => NULL,
311
+ 'value' => NULL,
312
+ 'desc' => NULL,
313
+ 'extra' => array()
314
+ )));
315
+
316
+ $extra = self::validate_extra($extra, $name);
317
+
318
+ $value = esc_attr($value);
319
+
320
+ $input = "<input name='{$name}' value='{$value}' type='{$type}'{$extra} /> ";
321
+
322
+ return self::add_label($input, $desc, $desc_pos);
323
+ }
324
+
325
+ private static function _select() {
326
+ extract(wp_parse_args(self::$args, array(
327
+ 'name' => '',
328
+ 'value' => array(),
329
+ 'text' => '',
330
+ 'selected' => array('foo'), // hack to make default blank
331
+ 'extra' => '',
332
+ 'numeric' => false, // use numeric array instead of associative
333
+ 'desc' => '',
334
+ 'desc_pos' => '',
335
+ )), EXTR_SKIP);
336
+
337
+ if ( empty($value) )
338
+ $value = array('' => '');
339
+
340
+ if ( !is_array($value) )
341
+ return trigger_error("'value' argument is expected to be an array", E_USER_WARNING);
342
+
343
+ if ( !self::is_associative($value) && !$numeric )
344
+ $value = array_combine($value, $value);
345
+
346
+ if ( isset(self::$formdata[$name]) )
347
+ $cur_val = self::$formdata[$name];
348
+ else
349
+ $cur_val = $selected;
350
+
351
+ if ( false === $text ) {
352
+ $opts = '';
353
+ } else {
354
+ $opts = "\t<option value=''";
355
+ if ( $cur_val === array('foo') )
356
+ $opts .= " selected='selected'";
357
+ $opts .= ">{$text}</option>\n";
358
+ }
359
+
360
+ foreach ( $value as $key => $value ) {
361
+ if ( empty($key) || empty($value) )
362
+ continue;
363
+
364
+ $cur_extra = array();
365
+ if ( (string) $key == (string) $cur_val )
366
+ $cur_extra[] = "selected='selected'";
367
+
368
+ $cur_extra = self::validate_extra($cur_extra, $key);
369
+
370
+ $opts .= "\t<option value='{$key}'{$cur_extra}>{$value}</option>\n";
371
+ }
372
+
373
+ $extra = self::validate_extra($extra, $name);
374
+
375
+ $input = "<select name='{$name}'$extra>\n{$opts}</select>";
376
+
377
+ return self::add_label($input, $desc, $desc_pos);
378
+ }
379
+
380
+ private static function _textarea() {
381
+ extract(wp_parse_args(self::$args, array(
382
+ 'name' => '',
383
+ 'extra' => 'class="widefat"',
384
+ 'value' => '',
385
+ 'escaped' => false,
386
+ )), EXTR_SKIP);
387
+
388
+ if ( !$escaped )
389
+ $value = esc_html($value);
390
+
391
+ $extra = self::validate_extra($extra, $name);
392
+
393
+ return "<textarea name='{$name}'{$extra}>\n{$value}\n</textarea>\n";
394
+ }
395
+
396
+ private static function add_label($input, $desc, $desc_pos) {
397
+ if ( empty($desc_pos) )
398
+ $desc_pos = 'after';
399
+
400
+ $label = '';
401
+ if ( false === strpos($desc, self::token) ) {
402
+ switch ($desc_pos) {
403
+ case 'before': $label = $desc . ' ' . self::token; break;
404
+ case 'after': $label = self::token . ' ' . $desc;
405
+ }
406
+ } else {
407
+ $label = $desc;
408
+ }
409
+
410
+ $label = trim(str_replace(self::token, $input, $label));
411
+
412
+ if ( empty($desc) )
413
+ $output = $input . "\n";
414
+ else
415
+ $output = "<label>{$label}</label>\n";
416
+
417
+ return $output;
418
+ }
419
+
420
+ private static function validate_extra($extra, $name, $implode = true) {
421
+ if ( !is_array($extra) )
422
+ $extra = explode(' ', $extra);
423
+
424
+ if ( empty($extra) )
425
+ return '';
426
+
427
+ return ' ' . ltrim(implode(' ', $extra));
428
+ }
429
+
430
+ // Utilities
431
+
432
+ private static function is_associative($array) {
433
+ if ( !is_array($array) || empty($array) )
434
+ return false;
435
+
436
+ $keys = array_keys($array);
437
+
438
+ return array_keys($keys) !== $keys;
439
+ }
440
+
441
+ private static function array_extract($array, $keys) {
442
+ $r = array();
443
+ foreach ( $keys as $key )
444
+ if ( isset($array[$key]) )
445
+ $r[$key] = $array[$key];
446
+
447
+ return $r;
448
+ }
449
+ }
450
+
451
+ // PHP < 5.2
452
+ if ( !function_exists('array_fill_keys') ) :
453
+ function array_fill_keys($keys, $value) {
454
+ if ( !is_array($keys) )
455
+ trigger_error('First argument is expected to be an array.' . gettype($keys) . 'given', E_USER_WARNING);
456
+
457
+ $r = array();
458
+ foreach ( $keys as $key )
459
+ $r[$key] = $value;
460
+
461
+ return $r;
462
+ }
463
+ endif;
464
+
scb/Options.php ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // Usage: http://scribu.net/wordpress/scb-framework/scb-options.html
4
+
5
+ class scbOptions {
6
+ protected $defaults; // the default value(s)
7
+
8
+ protected $key; // the option name
9
+ protected $data; // the option value
10
+
11
+ public $wp_filter_id; // used by WP hooks
12
+
13
+ /**
14
+ * Create a new set of options
15
+ *
16
+ * @param string $key Option name
17
+ * @param string $file Reference to main plugin file
18
+ * @param array $defaults An associative array of default values (optional)
19
+ */
20
+ public function __construct($key, $file, $defaults = '') {
21
+ $this->key = $key;
22
+ $this->defaults = $defaults;
23
+ $this->data = get_option($this->key);
24
+
25
+ if ( is_array($this->defaults) ) {
26
+ $this->data = (array) $this->data;
27
+
28
+ register_activation_hook($file, array($this, '_update_reset'));
29
+ }
30
+
31
+ scbUtil::add_uninstall_hook($file, array($this, 'delete'));
32
+ }
33
+
34
+ /**
35
+ * Get option values for one, many or all fields
36
+ *
37
+ * @param string|array $field The field(s) to get
38
+ * @return mixed Whatever is in those fields
39
+ */
40
+ public function get($field = '') {
41
+ return $this->_get($field, $this->data);
42
+ }
43
+
44
+ /**
45
+ * Get default values for one, many or all fields
46
+ *
47
+ * @param string|array $field The field(s) to get
48
+ * @return mixed Whatever is in those fields
49
+ */
50
+ public function get_defaults($field = '') {
51
+ return $this->_get($field, $this->defaults);
52
+ }
53
+
54
+ /**
55
+ * Set all data fields, certain fields or a single field
56
+ *
57
+ * @param string|array $field The field to update or an associative array
58
+ * @param mixed $value The new value (ignored if $field is array)
59
+ * @return null
60
+ */
61
+ public function set($field, $value = '') {
62
+ if ( is_array($field) )
63
+ $newdata = $field;
64
+ else
65
+ $newdata = array($field => $value);
66
+
67
+ $this->update(array_merge($this->data, $newdata));
68
+ }
69
+
70
+ /**
71
+ * Reset option to defaults
72
+ *
73
+ * @return null
74
+ */
75
+ public function reset() {
76
+ $this->update($this->defaults);
77
+ }
78
+
79
+ /**
80
+ * Remove any keys that are not in the defaults array
81
+ *
82
+ * @return bool
83
+ */
84
+ public function cleanup() {
85
+ $r = array();
86
+
87
+ if ( ! is_array($this->defaults) )
88
+ return false;
89
+
90
+ foreach ( array_keys($this->defaults) as $key )
91
+ $r[$key] = $this->data[$key];
92
+
93
+ $this->update($r);
94
+
95
+ return true;
96
+ }
97
+
98
+ /**
99
+ * Update raw data
100
+ *
101
+ * @param mixed $newdata
102
+ * @return null
103
+ */
104
+ public function update($newdata) {
105
+ $this->data = $newdata;
106
+
107
+ update_option($this->key, $this->data);
108
+ }
109
+
110
+ /**
111
+ * Delete the option
112
+ *
113
+ * @return null
114
+ */
115
+ public function delete() {
116
+ unset($this->data);
117
+
118
+ delete_option($this->key);
119
+ }
120
+
121
+
122
+ //_____INTERNAL METHODS_____
123
+
124
+
125
+ // Add new fields with their default values
126
+ function _update_reset() {
127
+ $this->update(array_merge($this->defaults, $this->data));
128
+ }
129
+
130
+ // Get one, more or all fields from an array
131
+ private function _get($field, $data) {
132
+ if ( empty($field) )
133
+ return $data;
134
+
135
+ if ( is_string($field) )
136
+ return $data[$field];
137
+
138
+ foreach ( $field as $key )
139
+ if ( isset($data[$key]) )
140
+ $result[] = $data[$key];
141
+
142
+ return $result;
143
+ }
144
+
145
+ // Magic method: $options->field
146
+ function __get($field) {
147
+ return $this->data[$field];
148
+ }
149
+
150
+ // Magic method: $options->field = $value
151
+ function __set($field, $value) {
152
+ $this->set($field, $value);
153
+ }
154
+
155
+ // Magic method: isset($options->field)
156
+ function __isset($field) {
157
+ return isset($this->data[$field]);
158
+ }
159
+ }
160
+
scb/Util.php ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class scbUtil {
4
+ // Force script enqueue
5
+ static function do_scripts($handles) {
6
+ global $wp_scripts;
7
+
8
+ if ( ! is_a($wp_scripts, 'WP_Scripts') )
9
+ $wp_scripts = new WP_Scripts();
10
+
11
+ $wp_scripts->do_items((array) $handles);
12
+ }
13
+
14
+ // Force style enqueue
15
+ static function do_styles($handles) {
16
+ self::do_scripts('jquery');
17
+
18
+ global $wp_styles;
19
+
20
+ if ( ! is_a($wp_styles, 'WP_Styles') )
21
+ $wp_styles = new WP_Styles();
22
+
23
+ ob_start();
24
+ $wp_styles->do_items((array) $handles);
25
+ $content = str_replace(array('"', "\n"), array("'", ''), ob_get_clean());
26
+
27
+ echo "<script type='text/javascript'>\n";
28
+ echo "jQuery(document).ready(function($) {\n";
29
+ echo "$('head').prepend(\"$content\");\n";
30
+ echo "});\n";
31
+ echo "</script>";
32
+ }
33
+
34
+ // Extract certain $keys from $array
35
+ static function array_extract($array, $keys) {
36
+ $r = array();
37
+
38
+ foreach ( $keys as $key )
39
+ if ( array_key_exists($key, $array) )
40
+ $r[$key] = $array[$key];
41
+
42
+ return $r;
43
+ }
44
+
45
+ // Extract a certain value from a list of arrays
46
+ static function array_pluck($array, $key) {
47
+ $r = array();
48
+
49
+ foreach ( $array as $value ) {
50
+ if ( is_object($value) )
51
+ $value = get_object_vars($value);
52
+ if ( array_key_exists($key, $value) )
53
+ $r[] = $value[$key];
54
+ }
55
+
56
+ return $r;
57
+ }
58
+
59
+ // Transform a list of objects into an associative array
60
+ static function objects_to_assoc($objects, $key, $value) {
61
+ $r = array();
62
+
63
+ foreach ( $objects as $obj )
64
+ $r[$obj->$key] = $obj->$value;
65
+
66
+ return $r;
67
+ }
68
+
69
+ // Prepare an array for an IN statement
70
+ static function array_to_sql($values) {
71
+ foreach ( $values as &$val )
72
+ $val = "'" . esc_sql(trim($val)) . "'";
73
+
74
+ return implode(',', $values);
75
+ }
76
+
77
+ // Have more than one uninstall hooks; also prevents an UPDATE query on each page load
78
+ static function add_uninstall_hook($plugin, $callback) {
79
+ register_uninstall_hook($plugin, '__return_false'); // dummy
80
+
81
+ add_action('uninstall_' . plugin_basename($plugin), $callback);
82
+ }
83
+
84
+ // Example: split_at('</', '<a></a>') => array('<a>', '</a>')
85
+ static function split_at($delim, $str) {
86
+ $i = strpos($str, $delim);
87
+
88
+ if ( false === $i )
89
+ return false;
90
+
91
+ $start = substr($str, 0, $i);
92
+ $finish = substr($str, $i);
93
+
94
+ return array($start, $finish);
95
+ }
96
+ }
97
+
98
+
99
+ //_____Minimalist HTML framework_____
100
+
101
+
102
+ if ( ! function_exists('html') ):
103
+ function html($tag, $content = '') {
104
+ list($closing) = explode(' ', $tag, 2);
105
+
106
+ return "<{$tag}>{$content}</{$closing}>";
107
+ }
108
+ endif;
109
+
110
+ // Generate an <a> tag
111
+ if ( ! function_exists('html_link') ):
112
+ function html_link($url, $title = '') {
113
+ if ( empty($title) )
114
+ $title = $url;
115
+
116
+ return sprintf("<a href='%s'>%s</a>", $url, $title);
117
+ }
118
+ endif;
119
+
120
+
121
+ //_____Compatibility layer_____
122
+
123
+
124
+ // WP < 3.0
125
+ if ( ! function_exists('__return_false') ) :
126
+ function __return_false() {
127
+ return false;
128
+ }
129
+ endif;
130
+
131
+ // WP < ?
132
+ if ( ! function_exists('__return_true') ) :
133
+ function __return_true() {
134
+ return true;
135
+ }
136
+ endif;
137
+
138
+ // WP < ?
139
+ if ( ! function_exists('set_post_field') ) :
140
+ function set_post_field($field, $value, $post_id) {
141
+ global $wpdb;
142
+
143
+ $post_id = absint($post_id);
144
+ $value = sanitize_post_field($field, $value, $post_id, 'db');
145
+
146
+ return $wpdb->update($wpdb->posts, array($field => $value), array('ID' => $post_id));
147
+ }
148
+ endif;
149
+
scb/load.php ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ To load scbFramework, you just need to add this line at the beginning of your plugin:
4
+
5
+ require_once dirname(__FILE__) . '/scb/load.php';
6
+ */
7
+
8
+ if ( !class_exists('scbLoad3') ) :
9
+ class scbLoad3 {
10
+
11
+ private static $candidates;
12
+ private static $loaded;
13
+
14
+ static function init($rev, $file, $classes) {
15
+ $dir = dirname($file);
16
+
17
+ self::$candidates[$rev] = $dir;
18
+
19
+ self::load($dir . '/', $classes);
20
+
21
+ add_action('activated_plugin', array(__CLASS__, 'reorder'));
22
+ }
23
+
24
+ static function reorder() {
25
+ krsort(self::$candidates);
26
+
27
+ $dir = dirname(plugin_basename(reset(self::$candidates)));
28
+
29
+ $current = get_option('active_plugins', array());
30
+
31
+ $found = false;
32
+ foreach ( $current as $i => $plugin ) {
33
+ $plugin_dir = dirname($plugin);
34
+
35
+ if ( $plugin_dir == $dir ) {
36
+ $found = true;
37
+ break;
38
+ }
39
+ }
40
+
41
+ if ( !$found || 0 == $i )
42
+ return;
43
+
44
+ unset($current[$i]);
45
+ array_unshift($current, $plugin);
46
+
47
+ update_option('active_plugins', $current);
48
+ }
49
+
50
+ private static function load($path, $classes) {
51
+ foreach ( $classes as $class_name ) {
52
+ if ( class_exists($class_name) )
53
+ continue;
54
+
55
+ $fpath = $path . substr($class_name, 3) . '.php';
56
+
57
+ if ( file_exists($fpath) ) {
58
+ self::$loaded[$class_name] = $fpath;
59
+ include $fpath;
60
+ }
61
+ }
62
+ }
63
+
64
+ static function get_info() {
65
+ krsort(self::$candidates);
66
+
67
+ return array(self::$loaded, self::$candidates);
68
+ }
69
+ }
70
+ endif;
71
+
72
+ scbLoad3::init(9, __FILE__, array(
73
+ 'scbUtil', 'scbOptions', 'scbForms', 'scbTable', 'scbDebug',
74
+ 'scbWidget', 'scbAdminPage', 'scbBoxesPage',
75
+ 'scbQuery', 'scbRewrite', 'scbCron',
76
+ ));
77
+
screenshot-1.png CHANGED
Binary file
wp-pagenavi.php CHANGED
@@ -1,237 +1,249 @@
1
- <?php
2
- /*
3
- Plugin Name: WP-PageNavi
4
- Plugin URI: http://wordpress.org/extend/plugins/wp-pagenavi/
5
- Description: Adds a more advanced paging navigation to your WordPress blog.
6
- Version: 2.61
7
- Author: Lester 'GaMerZ' Chan
8
- Author URI: http://lesterchan.net
9
- */
10
-
11
-
12
- /*
13
- Copyright 2009 Lester Chan (email : lesterchan@gmail.com)
14
-
15
- This program is free software; you can redistribute it and/or modify
16
- it under the terms of the GNU General Public License as published by
17
- the Free Software Foundation; either version 2 of the License, or
18
- (at your option) any later version.
19
-
20
- This program is distributed in the hope that it will be useful,
21
- but WITHOUT ANY WARRANTY; without even the implied warranty of
22
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
- GNU General Public License for more details.
24
-
25
- You should have received a copy of the GNU General Public License
26
- along with this program; if not, write to the Free Software
27
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28
- */
29
-
30
-
31
- ### Create Text Domain For Translations
32
- add_action('init', 'pagenavi_textdomain');
33
- function pagenavi_textdomain() {
34
- load_plugin_textdomain('wp-pagenavi', false, 'wp-pagenavi');
35
- }
36
-
37
-
38
- ### Function: Page Navigation Option Menu
39
- add_action('admin_menu', 'pagenavi_menu');
40
- function pagenavi_menu() {
41
- add_options_page(__('PageNavi', 'wp-pagenavi'), __('PageNavi', 'wp-pagenavi'), 'manage_options', 'wp-pagenavi/pagenavi-options.php') ;
42
- }
43
-
44
- ### Function: Enqueue PageNavi Stylesheets
45
- add_action('wp_print_styles', 'pagenavi_stylesheets');
46
- function pagenavi_stylesheets() {
47
- $pagenavi_options = get_option('pagenavi_options');
48
-
49
- if ( isset($pagenavi_options['use_pagenavi_css']) && !intval($pagenavi_options['use_pagenavi_css']) )
50
- return;
51
 
52
- if (@file_exists(STYLESHEETPATH.'/pagenavi-css.css')) {
53
- $css_file = get_stylesheet_directory_uri() . '/pagenavi-css.css';
54
- } elseif (@file_exists(TEMPLATEPATH.'/pagenavi-css.css')) {
55
- $css_file = get_template_directory_uri() . '/pagenavi-css.css';
56
- } else {
57
- $css_file = plugins_url('pagenavi-css.css', __FILE__);
58
- }
59
-
60
- wp_enqueue_style('wp-pagenavi', $css_file, false, '2.60', 'all');
61
- }
62
-
63
-
64
- ### Function: Page Navigation: Boxed Style Paging
65
- function wp_pagenavi($before = '', $after = '') {
66
- global $wpdb, $wp_query;
67
-
68
- if (is_single())
69
  return;
70
 
71
- $pagenavi_options = get_option('pagenavi_options');
72
-
73
- $request = $wp_query->request;
74
- $posts_per_page = intval(get_query_var('posts_per_page'));
75
- $paged = intval(get_query_var('paged'));
76
- $numposts = $wp_query->found_posts;
77
- $max_page = intval($wp_query->max_num_pages);
78
-
79
- if (empty($paged) || $paged == 0)
80
- $paged = 1;
81
-
82
- $pages_to_show = intval($pagenavi_options['num_pages']);
83
- $larger_page_to_show = intval($pagenavi_options['num_larger_page_numbers']);
84
- $larger_page_multiple = intval($pagenavi_options['larger_page_numbers_multiple']);
85
- $pages_to_show_minus_1 = $pages_to_show - 1;
86
- $half_page_start = floor($pages_to_show_minus_1/2);
87
- $half_page_end = ceil($pages_to_show_minus_1/2);
88
- $start_page = $paged - $half_page_start;
89
-
90
- if ($start_page <= 0)
91
- $start_page = 1;
92
-
93
- $end_page = $paged + $half_page_end;
94
- if (($end_page - $start_page) != $pages_to_show_minus_1) {
95
- $end_page = $start_page + $pages_to_show_minus_1;
96
- }
97
-
98
- if ($end_page > $max_page) {
99
- $start_page = $max_page - $pages_to_show_minus_1;
100
- $end_page = $max_page;
101
- }
102
-
103
- if ($start_page <= 0)
104
- $start_page = 1;
105
-
106
- $larger_pages_array = array();
107
- if ( $larger_page_multiple )
108
- for ( $i = $larger_page_multiple; $i <= $max_page; $i += $larger_page_multiple )
109
- $larger_pages_array[] = $i;
110
-
111
- if ($max_page > 1 || intval($pagenavi_options['always_show'])) {
112
- $pages_text = str_replace("%CURRENT_PAGE%", number_format_i18n($paged), $pagenavi_options['pages_text']);
113
- $pages_text = str_replace("%TOTAL_PAGES%", number_format_i18n($max_page), $pages_text);
114
- echo $before.'<div class="wp-pagenavi">'."\n";
115
- switch(intval($pagenavi_options['style'])) {
116
- // Normal
117
- case 1:
118
- if (!empty($pages_text)) {
119
- echo '<span class="pages">'.$pages_text.'</span>';
120
- }
121
- if ($start_page >= 2 && $pages_to_show < $max_page) {
122
- $first_page_text = str_replace("%TOTAL_PAGES%", number_format_i18n($max_page), $pagenavi_options['first_text']);
123
- echo '<a href="'.clean_url(get_pagenum_link()).'" class="first" title="'.$first_page_text.'">'.$first_page_text.'</a>';
124
- if (!empty($pagenavi_options['dotleft_text'])) {
125
- echo '<span class="extend">'.$pagenavi_options['dotleft_text'].'</span>';
126
- }
127
- }
128
- $larger_page_start = 0;
129
- foreach($larger_pages_array as $larger_page) {
130
- if ($larger_page < $start_page && $larger_page_start < $larger_page_to_show) {
131
- $page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($larger_page), $pagenavi_options['page_text']);
132
- echo '<a href="'.clean_url(get_pagenum_link($larger_page)).'" class="page" title="'.$page_text.'">'.$page_text.'</a>';
133
- $larger_page_start++;
134
- }
135
- }
136
- previous_posts_link($pagenavi_options['prev_text']);
137
- for($i = $start_page; $i <= $end_page; $i++) {
138
- if ($i == $paged) {
139
- $current_page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($i), $pagenavi_options['current_text']);
140
- echo '<span class="current">'.$current_page_text.'</span>';
141
- } else {
142
- $page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($i), $pagenavi_options['page_text']);
143
- echo '<a href="'.clean_url(get_pagenum_link($i)).'" class="page" title="'.$page_text.'">'.$page_text.'</a>';
144
- }
145
- }
146
- next_posts_link($pagenavi_options['next_text'], $max_page);
147
- $larger_page_end = 0;
148
- foreach($larger_pages_array as $larger_page) {
149
- if ($larger_page > $end_page && $larger_page_end < $larger_page_to_show) {
150
- $page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($larger_page), $pagenavi_options['page_text']);
151
- echo '<a href="'.clean_url(get_pagenum_link($larger_page)).'" class="page" title="'.$page_text.'">'.$page_text.'</a>';
152
- $larger_page_end++;
153
- }
154
- }
155
- if ($end_page < $max_page) {
156
- if (!empty($pagenavi_options['dotright_text'])) {
157
- echo '<span class="extend">'.$pagenavi_options['dotright_text'].'</span>';
158
- }
159
- $last_page_text = str_replace("%TOTAL_PAGES%", number_format_i18n($max_page), $pagenavi_options['last_text']);
160
- echo '<a href="'.clean_url(get_pagenum_link($max_page)).'" class="last" title="'.$last_page_text.'">'.$last_page_text.'</a>';
161
- }
162
- break;
163
- // Dropdown
164
- case 2;
165
- echo '<form action="'.htmlspecialchars($_SERVER['PHP_SELF']).'" method="get">'."\n";
166
- echo '<select size="1" onchange="document.location.href = this.options[this.selectedIndex].value;">'."\n";
167
- for($i = 1; $i <= $max_page; $i++) {
168
- $page_num = $i;
169
- if ($page_num == 1) {
170
- $page_num = 0;
171
- }
172
- if ($i == $paged) {
173
- $current_page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($i), $pagenavi_options['current_text']);
174
- echo '<option value="'.clean_url(get_pagenum_link($page_num)).'" selected="selected" class="current">'.$current_page_text."</option>\n";
175
- } else {
176
- $page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($i), $pagenavi_options['page_text']);
177
- echo '<option value="'.clean_url(get_pagenum_link($page_num)).'">'.$page_text."</option>\n";
178
- }
179
- }
180
- echo "</select>\n";
181
- echo "</form>\n";
182
- break;
183
- }
184
- echo '</div>'.$after."\n";
185
- }
186
- }
187
-
188
-
189
- ### Function: Page Navigation: Drop Down Menu (Deprecated)
190
- function wp_pagenavi_dropdown() {
191
- wp_pagenavi();
192
- }
193
-
194
-
195
- ### Function: Round To The Nearest Value
196
- function n_round($num, $tonearest) {
197
- return floor($num/$tonearest)*$tonearest;
198
- }
199
-
200
-
201
- ### Function: Filters for Previous and Next Posts Link CSS Class
202
- add_filter('previous_posts_link_attributes','previous_posts_link_class');
203
- function previous_posts_link_class() {
204
- return 'class="previouspostslink"';
205
- }
206
- add_filter('next_posts_link_attributes','next_posts_link_class');
207
- function next_posts_link_class() {
208
- return 'class="nextpostslink"';
209
- }
210
-
211
-
212
- ### Function: Page Navigation Options
213
- register_activation_hook(__FILE__, 'pagenavi_init');
214
- function pagenavi_init() {
215
- pagenavi_textdomain();
216
- // Add Options
217
- $pagenavi_options = array(
218
- 'pages_text' => __('Page %CURRENT_PAGE% of %TOTAL_PAGES%','wp-pagenavi'),
219
- 'current_text' => '%PAGE_NUMBER%',
220
- 'page_text' => '%PAGE_NUMBER%',
221
- 'first_text' => __('&laquo; First','wp-pagenavi'),
222
- 'last_text' => __('Last &raquo;','wp-pagenavi'),
223
- 'next_text' => __('&raquo;','wp-pagenavi'),
224
- 'prev_text' => __('&laquo;','wp-pagenavi'),
225
- 'dotright_text' => __('...','wp-pagenavi'),
226
- 'dotleft_text' => __('...','wp-pagenavi'),
227
- 'style' => 1,
228
- 'num_pages' => 5,
229
- 'always_show' => 0,
230
- 'num_larger_page_numbers' => 3,
231
- 'larger_page_numbers_multiple' => 10,
232
- 'use_pagenavi_css' => 1,
233
- );
234
- add_option('pagenavi_options', $pagenavi_options, 'PageNavi Options');
235
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
 
 
 
 
 
 
 
237
 
1
+ <?php
2
+ /*
3
+ Plugin Name: WP-PageNavi
4
+ Version: 2.72
5
+ Description: Adds a more advanced paging navigation to your WordPress blog
6
+ Author: Lester 'GaMerZ' Chan & scribu
7
+ Plugin URI: http://wordpress.org/extend/plugins/wp-pagenavi/
8
+ Text Domain: wp-pagenavi
9
+ Domain Path: /lang
10
+
11
+
12
+ Copyright 2009 Lester Chan (email : lesterchan@gmail.com)
13
+
14
+ This program is free software; you can redistribute it and/or modify
15
+ it under the terms of the GNU General Public License as published by
16
+ the Free Software Foundation; either version 2 of the License, or
17
+ (at your option) any later version.
18
+
19
+ This program is distributed in the hope that it will be useful,
20
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
21
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22
+ GNU General Public License for more details.
23
+
24
+ You should have received a copy of the GNU General Public License
25
+ along with this program; if not, write to the Free Software
26
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27
+ */
28
+
29
+ ### Function: Page Navigation: Boxed Style Paging
30
+ function wp_pagenavi($before = '', $after = '') {
31
+ global $wp_query;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
+ $options = PageNavi_Core::$options->get();
34
+
35
+ $posts_per_page = intval(get_query_var('posts_per_page'));
36
+ $paged = intval(get_query_var('paged'));
37
+
38
+ $request = $wp_query->request;
39
+ $numposts = $wp_query->found_posts;
40
+ $max_page = $wp_query->max_num_pages;
41
+
42
+ if ( $max_page <= 1 && !intval($options['always_show']) )
 
 
 
 
 
 
 
43
  return;
44
 
45
+ if ( empty($paged) )
46
+ $paged = 1;
47
+
48
+ $pages_to_show = intval($options['num_pages']);
49
+ $larger_page_to_show = intval($options['num_larger_page_numbers']);
50
+ $larger_page_multiple = intval($options['larger_page_numbers_multiple']);
51
+ $pages_to_show_minus_1 = $pages_to_show - 1;
52
+ $half_page_start = floor($pages_to_show_minus_1/2);
53
+ $half_page_end = ceil($pages_to_show_minus_1/2);
54
+ $start_page = $paged - $half_page_start;
55
+
56
+ if ( $start_page <= 0 )
57
+ $start_page = 1;
58
+
59
+ $end_page = $paged + $half_page_end;
60
+
61
+ if ( ($end_page - $start_page) != $pages_to_show_minus_1 )
62
+ $end_page = $start_page + $pages_to_show_minus_1;
63
+
64
+ if ( $end_page > $max_page ) {
65
+ $start_page = $max_page - $pages_to_show_minus_1;
66
+ $end_page = $max_page;
67
+ }
68
+
69
+ if ( $start_page <= 0 )
70
+ $start_page = 1;
71
+
72
+ $out = '';
73
+ switch ( intval($options['style']) ) {
74
+ // Normal
75
+ case 1:
76
+ if ( !empty($options['pages_text']) ) {
77
+ $pages_text = str_replace(
78
+ array("%CURRENT_PAGE%", "%TOTAL_PAGES%"),
79
+ array(number_format_i18n($paged), number_format_i18n($max_page)),
80
+ $options['pages_text']);
81
+ $out .= "<span class='pages'>$pages_text</span>";
82
+ }
83
+
84
+ if ( $start_page >= 2 && $pages_to_show < $max_page ) {
85
+ $first_text = str_replace('%TOTAL_PAGES%', number_format_i18n($max_page), $options['first_text']);
86
+ $out .= _wp_pagenavi_single(1, 'first', $first_text, '%TOTAL_PAGES%');
87
+
88
+ if ( !empty($options['dotleft_text']) )
89
+ $out .= "<span class='extend'>{$options['dotleft_text']}</span>";
90
+ }
91
+
92
+ $larger_pages_array = array();
93
+ if ( $larger_page_multiple )
94
+ for ( $i = $larger_page_multiple; $i <= $max_page; $i += $larger_page_multiple )
95
+ $larger_pages_array[] = $i;
96
+
97
+ $larger_page_start = 0;
98
+ foreach ( $larger_pages_array as $larger_page ) {
99
+ if ( $larger_page < $start_page && $larger_page_start < $larger_page_to_show ) {
100
+ $out .= _wp_pagenavi_single($larger_page, 'smaller page', $options['page_text']);
101
+ $larger_page_start++;
102
+ }
103
+ }
104
+
105
+ if ( !empty($options['prev_text']) )
106
+ $out .= get_previous_posts_link($options['prev_text']);
107
+
108
+ for ( $i = $start_page; $i <= $end_page; $i++) {
109
+ if ( $i == $paged && !empty($options['current_text']) ) {
110
+ $current_page_text = str_replace('%PAGE_NUMBER%', number_format_i18n($i), $options['current_text']);
111
+ $out .= "<span class='current'>$current_page_text</span>";
112
+ } else {
113
+ $out .= _wp_pagenavi_single($i, 'page', $options['page_text']);
114
+ }
115
+ }
116
+
117
+ if ( !empty($options['next_text']) )
118
+ $out .= get_next_posts_link($options['next_text'], $max_page);
119
+
120
+ $larger_page_end = 0;
121
+ foreach ( $larger_pages_array as $larger_page ) {
122
+ if ( $larger_page > $end_page && $larger_page_end < $larger_page_to_show ) {
123
+ $out .= _wp_pagenavi_single($larger_page, 'larger page', $options['page_text']);
124
+ $larger_page_end++;
125
+ }
126
+ }
127
+
128
+ if ( $end_page < $max_page ) {
129
+ if ( !empty($options['dotright_text']) )
130
+ $out .= "<span class='extend'>{$options['dotright_text']}</span>";
131
+
132
+ $out .= _wp_pagenavi_single($max_page, 'last', $options['last_text'], '%TOTAL_PAGES%');
133
+ }
134
+ break;
135
+
136
+ // Dropdown
137
+ case 2:
138
+ $out .= '<form action="" method="get">'."\n";
139
+ $out .= '<select size="1" onchange="document.location.href = this.options[this.selectedIndex].value;">'."\n";
140
+
141
+ for ( $i = 1; $i <= $max_page; $i++ ) {
142
+ $page_num = $i;
143
+ if ( $page_num == 1 )
144
+ $page_num = 0;
145
+
146
+ if ( $i == $paged ) {
147
+ $current_page_text = str_replace('%PAGE_NUMBER%', number_format_i18n($i), $options['current_text']);
148
+ $out .= '<option value="'.esc_url(get_pagenum_link($page_num)).'" selected="selected" class="current">'.$current_page_text."</option>\n";
149
+ } else {
150
+ $page_text = str_replace('%PAGE_NUMBER%', number_format_i18n($i), $options['page_text']);
151
+ $out .= '<option value="'.esc_url(get_pagenum_link($page_num)).'">'.$page_text."</option>\n";
152
+ }
153
+ }
154
+
155
+ $out .= "</select>\n";
156
+ $out .= "</form>\n";
157
+ break;
158
+ }
159
+ $out = $before . "<div class='wp-pagenavi'>\n$out\n</div>" . $after;
160
+
161
+ echo apply_filters('wp_pagenavi', $out);
162
+ }
163
+
164
+ function _wp_pagenavi_single($page, $class, $raw_text, $format = '%PAGE_NUMBER%') {
165
+ if ( empty($raw_text) )
166
+ return '';
167
+
168
+ $text = str_replace($format, number_format_i18n($page), $raw_text);
169
+
170
+ return "<a href='" . esc_url(get_pagenum_link($page)) . "' class='$class'>$text</a>";
171
+ }
172
+
173
+
174
+ ### Function: Page Navigation: Drop Down Menu (Deprecated)
175
+ function wp_pagenavi_dropdown() {
176
+ wp_pagenavi();
177
+ }
178
+
179
+
180
+ class PageNavi_Core {
181
+ static $options;
182
+
183
+ function init($options) {
184
+ self::$options = $options;
185
+
186
+ add_action('wp_print_styles', array(__CLASS__, 'stylesheets'));
187
+
188
+ add_filter('previous_posts_link_attributes', array(__CLASS__, 'previous_posts_link_attributes'));
189
+ add_filter('next_posts_link_attributes', array(__CLASS__, 'next_posts_link_attributes'));
190
+ }
191
+
192
+ function stylesheets() {
193
+ if ( !self::$options->use_pagenavi_css )
194
+ return;
195
+
196
+ if ( @file_exists(STYLESHEETPATH . '/pagenavi-css.css') ) {
197
+ $css_file = get_stylesheet_directory_uri() . '/pagenavi-css.css';
198
+ } elseif ( @file_exists(TEMPLATEPATH . '/pagenavi-css.css') ) {
199
+ $css_file = get_template_directory_uri() . '/pagenavi-css.css';
200
+ } else {
201
+ $css_file = plugins_url('pagenavi-css.css', __FILE__);
202
+ }
203
+
204
+ wp_enqueue_style('wp-pagenavi', $css_file, false, '2.70');
205
+ }
206
+
207
+ function previous_posts_link_attributes() {
208
+ return 'class="previouspostslink"';
209
+ }
210
+
211
+ function next_posts_link_attributes() {
212
+ return 'class="nextpostslink"';
213
+ }
214
+ }
215
+
216
+
217
+ function _pagenavi_init() {
218
+ // Load scbFramework
219
+ require dirname(__FILE__) . '/scb/load.php';
220
+
221
+ load_plugin_textdomain('wp-pagenavi', false, basename(dirname(__FILE__)) . '/lang');
222
+
223
+ $options = new scbOptions('pagenavi_options', __FILE__, array(
224
+ 'pages_text' => __('Page %CURRENT_PAGE% of %TOTAL_PAGES%', 'wp-pagenavi'),
225
+ 'current_text' => '%PAGE_NUMBER%',
226
+ 'page_text' => '%PAGE_NUMBER%',
227
+ 'first_text' => __('&laquo; First', 'wp-pagenavi'),
228
+ 'last_text' => __('Last &raquo;', 'wp-pagenavi'),
229
+ 'prev_text' => __('&laquo;', 'wp-pagenavi'),
230
+ 'next_text' => __('&raquo;', 'wp-pagenavi'),
231
+ 'dotleft_text' => __('...', 'wp-pagenavi'),
232
+ 'dotright_text' => __('...', 'wp-pagenavi'),
233
+ 'num_pages' => 5,
234
+ 'num_larger_page_numbers' => 3,
235
+ 'larger_page_numbers_multiple' => 10,
236
+ 'always_show' => false,
237
+ 'use_pagenavi_css' => true,
238
+ 'style' => 1,
239
+ ));
240
+
241
+ PageNavi_Core::init($options);
242
 
243
+ if ( is_admin() ) {
244
+ require_once dirname(__FILE__) . '/admin.php';
245
+ new PageNavi_Options_Page(__FILE__, $options);
246
+ }
247
+ }
248
+ _pagenavi_init();
249
 
wp-pagenavi.pot DELETED
@@ -1,249 +0,0 @@
1
- # Translation of the WordPress plugin WP-PageNavi 2.60 by Lester 'GaMerZ' Chan.
2
- # Copyright (C) 2010 Lester 'GaMerZ' Chan
3
- # This file is distributed under the same license as the WP-PageNavi package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
- #
6
- #, fuzzy
7
- msgid ""
8
- msgstr ""
9
- "Project-Id-Version: WP-PageNavi 2.60\n"
10
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-pagenavi\n"
11
- "POT-Creation-Date: 2010-02-07 16:16+0000\n"
12
- "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=utf-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
-
19
- #: pagenavi-options.php:47 pagenavi-options.php:106 pagenavi-options.php:170
20
- msgid "Page Navigation Options"
21
- msgstr ""
22
-
23
- #: pagenavi-options.php:52
24
- msgid "Updated"
25
- msgstr ""
26
-
27
- #: pagenavi-options.php:57
28
- msgid "No Page Navigation Option Updated"
29
- msgstr ""
30
-
31
- #: pagenavi-options.php:64 pagenavi-options.php:264
32
- msgid "UNINSTALL WP-PageNavi"
33
- msgstr ""
34
-
35
- #: pagenavi-options.php:71
36
- #, php-format
37
- msgid "Setting Key '%s' has been deleted."
38
- msgstr ""
39
-
40
- #: pagenavi-options.php:75
41
- #, php-format
42
- msgid "Error deleting Setting Key '%s'."
43
- msgstr ""
44
-
45
- #: pagenavi-options.php:94 pagenavi-options.php:233
46
- msgid "Uninstall WP-PageNavi"
47
- msgstr ""
48
-
49
- #: pagenavi-options.php:95
50
- #, php-format
51
- msgid ""
52
- "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-PageNavi "
53
- "Will Be Deactivated Automatically."
54
- msgstr ""
55
-
56
- #: pagenavi-options.php:107
57
- msgid "Page Navigation Text"
58
- msgstr ""
59
-
60
- #: pagenavi-options.php:110
61
- msgid "Text For Number Of Pages"
62
- msgstr ""
63
-
64
- #: pagenavi-options.php:113
65
- msgid "The current page number."
66
- msgstr ""
67
-
68
- #: pagenavi-options.php:114 pagenavi-options.php:135 pagenavi-options.php:142
69
- msgid "The total number of pages."
70
- msgstr ""
71
-
72
- #: pagenavi-options.php:118
73
- msgid "Text For Current Page"
74
- msgstr ""
75
-
76
- #: pagenavi-options.php:121 pagenavi-options.php:128
77
- msgid "The page number."
78
- msgstr ""
79
-
80
- #: pagenavi-options.php:125
81
- msgid "Text For Page"
82
- msgstr ""
83
-
84
- #: pagenavi-options.php:132
85
- msgid "Text For First Page"
86
- msgstr ""
87
-
88
- #: pagenavi-options.php:139
89
- msgid "Text For Last Page"
90
- msgstr ""
91
-
92
- #: pagenavi-options.php:146
93
- msgid "Text For Next Page"
94
- msgstr ""
95
-
96
- #: pagenavi-options.php:152
97
- msgid "Text For Previous Page"
98
- msgstr ""
99
-
100
- #: pagenavi-options.php:158
101
- msgid "Text For Next ..."
102
- msgstr ""
103
-
104
- #: pagenavi-options.php:164
105
- msgid "Text For Previous ..."
106
- msgstr ""
107
-
108
- #: pagenavi-options.php:173
109
- msgid "Use pagenavi.css?"
110
- msgstr ""
111
-
112
- #: pagenavi-options.php:179
113
- msgid "Page Navigation Style"
114
- msgstr ""
115
-
116
- #: pagenavi-options.php:182
117
- msgid "Normal"
118
- msgstr ""
119
-
120
- #: pagenavi-options.php:183
121
- msgid "Drop Down List"
122
- msgstr ""
123
-
124
- #: pagenavi-options.php:188
125
- msgid "Number Of Pages To Show?"
126
- msgstr ""
127
-
128
- #: pagenavi-options.php:194
129
- msgid "Always Show Page Navigation?"
130
- msgstr ""
131
-
132
- #: pagenavi-options.php:197
133
- msgid "Show navigation even if there's only one page"
134
- msgstr ""
135
-
136
- #: pagenavi-options.php:201
137
- msgid "Number Of Larger Page Numbers To Show?"
138
- msgstr ""
139
-
140
- #: pagenavi-options.php:205
141
- msgid ""
142
- "Larger page numbers are in additional to the default page numbers. It is "
143
- "useful for authors who is paginating through many posts."
144
- msgstr ""
145
-
146
- #: pagenavi-options.php:207
147
- msgid ""
148
- "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, "
149
- "50"
150
- msgstr ""
151
-
152
- #: pagenavi-options.php:209
153
- msgid "Enter 0 to disable."
154
- msgstr ""
155
-
156
- #: pagenavi-options.php:213
157
- msgid "Show Larger Page Numbers In Multiples Of:"
158
- msgstr ""
159
-
160
- #: pagenavi-options.php:217
161
- msgid "If mutiple is in 5, it will show: 5, 10, 15, 20, 25"
162
- msgstr ""
163
-
164
- #: pagenavi-options.php:219
165
- msgid "If mutiple is in 10, it will show: 10, 20, 30, 40, 50"
166
- msgstr ""
167
-
168
- #: pagenavi-options.php:224
169
- msgid "Save Changes"
170
- msgstr ""
171
-
172
- #: pagenavi-options.php:235
173
- msgid ""
174
- "Deactivating WP-PageNavi plugin does not remove any data that may have been "
175
- "created, such as the page navigation options. To completely remove this "
176
- "plugin, you can uninstall it here."
177
- msgstr ""
178
-
179
- #: pagenavi-options.php:238
180
- msgid "WARNING:"
181
- msgstr ""
182
-
183
- #: pagenavi-options.php:239
184
- msgid ""
185
- "Once uninstalled, this cannot be undone. You should use a Database Backup "
186
- "plugin of WordPress to back up all the data first."
187
- msgstr ""
188
-
189
- #: pagenavi-options.php:242
190
- msgid "The following WordPress Options will be DELETED:"
191
- msgstr ""
192
-
193
- #: pagenavi-options.php:247
194
- msgid "WordPress Options"
195
- msgstr ""
196
-
197
- #: pagenavi-options.php:264
198
- msgid ""
199
- "You Are About To Uninstall WP-PageNavi From WordPress.\\nThis Action Is Not "
200
- "Reversible.\\n\\n Choose [Cancel] To Stop, [OK] To Uninstall."
201
- msgstr ""
202
-
203
- #: wp-pagenavi.php:41
204
- msgid "PageNavi"
205
- msgstr ""
206
-
207
- #: wp-pagenavi.php:217
208
- msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
209
- msgstr ""
210
-
211
- #: wp-pagenavi.php:220
212
- msgid "&laquo; First"
213
- msgstr ""
214
-
215
- #: wp-pagenavi.php:221
216
- msgid "Last &raquo;"
217
- msgstr ""
218
-
219
- #: wp-pagenavi.php:222
220
- msgid "&raquo;"
221
- msgstr ""
222
-
223
- #: wp-pagenavi.php:223
224
- msgid "&laquo;"
225
- msgstr ""
226
-
227
- #: wp-pagenavi.php:224 wp-pagenavi.php:225
228
- msgid "..."
229
- msgstr ""
230
-
231
- #. Plugin Name of an extension
232
- msgid "WP-PageNavi"
233
- msgstr ""
234
-
235
- #. Plugin URI of an extension
236
- msgid "http://lesterchan.net/portfolio/programming/php/"
237
- msgstr ""
238
-
239
- #. Description of an extension
240
- msgid "Adds a more advanced paging navigation to your WordPress blog."
241
- msgstr ""
242
-
243
- #. Author of an extension
244
- msgid "Lester 'GaMerZ' Chan"
245
- msgstr ""
246
-
247
- #. Author URI of an extension
248
- msgid "http://lesterchan.net"
249
- msgstr ""