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 @@