WP-PageNavi - Version 2.73

Version Description

(2010-08-17) = * added $options arg to wp_pagenavi() * updated scbFramework * 3 new translations: AL, JA, BR

Download this release

Release Info

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

Code changes from version 2.72 to 2.73

admin.php CHANGED
@@ -6,17 +6,17 @@ class PageNavi_Options_Page extends scbAdminPage {
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;
@@ -25,133 +25,133 @@ class PageNavi_Options_Page extends scbAdminPage {
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
 
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;
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
 
core.php ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Template tag: Boxed Style Paging
5
+ *
6
+ * @arg string $before
7
+ * @arg string $after
8
+ * @arg string|array $options Used to overwrite options set in WP-Admin -> Settings -> PageNavi
9
+ */
10
+ function wp_pagenavi( $before = '', $after = '', $options = array() ) {
11
+ global $wp_query;
12
+
13
+ $options = wp_parse_args( $options, PageNavi_Core::$options->get() );
14
+
15
+ $posts_per_page = intval( get_query_var( 'posts_per_page' ) );
16
+
17
+ $paged = absint( get_query_var( 'paged' ) );
18
+ if ( !$paged )
19
+ $paged = 1;
20
+
21
+ $total_pages = absint( $wp_query->max_num_pages );
22
+ if ( !$total_pages )
23
+ $total_pages = 1;
24
+
25
+ if ( 1 == $total_pages && !$options['always_show'] )
26
+ return;
27
+
28
+ $request = $wp_query->request;
29
+ $numposts = $wp_query->found_posts;
30
+
31
+ $pages_to_show = absint( $options['num_pages'] );
32
+ $larger_page_to_show = absint( $options['num_larger_page_numbers'] );
33
+ $larger_page_multiple = absint( $options['larger_page_numbers_multiple'] );
34
+ $pages_to_show_minus_1 = $pages_to_show - 1;
35
+ $half_page_start = floor( $pages_to_show_minus_1/2 );
36
+ $half_page_end = ceil( $pages_to_show_minus_1/2 );
37
+ $start_page = $paged - $half_page_start;
38
+
39
+ if ( $start_page <= 0 )
40
+ $start_page = 1;
41
+
42
+ $end_page = $paged + $half_page_end;
43
+
44
+ if ( ( $end_page - $start_page ) != $pages_to_show_minus_1 )
45
+ $end_page = $start_page + $pages_to_show_minus_1;
46
+
47
+ if ( $end_page > $total_pages ) {
48
+ $start_page = $total_pages - $pages_to_show_minus_1;
49
+ $end_page = $total_pages;
50
+ }
51
+
52
+ if ( $start_page <= 0 )
53
+ $start_page = 1;
54
+
55
+ $out = '';
56
+ switch ( intval( $options['style'] ) ) {
57
+ // Normal
58
+ case 1:
59
+ if ( !empty( $options['pages_text'] ) ) {
60
+ $pages_text = str_replace(
61
+ array( "%CURRENT_PAGE%", "%TOTAL_PAGES%" ),
62
+ array( number_format_i18n( $paged ), number_format_i18n( $total_pages ) ),
63
+ $options['pages_text'] );
64
+ $out .= "<span class='pages'>$pages_text</span>";
65
+ }
66
+
67
+ if ( $start_page >= 2 && $pages_to_show < $total_pages ) {
68
+ $first_text = str_replace( '%TOTAL_PAGES%', number_format_i18n( $total_pages ), $options['first_text'] );
69
+ $out .= _wp_pagenavi_single( 1, 'first', $first_text, '%TOTAL_PAGES%' );
70
+
71
+ if ( !empty( $options['dotleft_text'] ) )
72
+ $out .= "<span class='extend'>{$options['dotleft_text']}</span>";
73
+ }
74
+
75
+ $larger_pages_array = array();
76
+ if ( $larger_page_multiple )
77
+ for ( $i = $larger_page_multiple; $i <= $total_pages; $i+= $larger_page_multiple )
78
+ $larger_pages_array[] = $i;
79
+
80
+ $larger_page_start = 0;
81
+ foreach ( $larger_pages_array as $larger_page ) {
82
+ if ( $larger_page < $start_page && $larger_page_start < $larger_page_to_show ) {
83
+ $out .= _wp_pagenavi_single( $larger_page, 'smaller page', $options['page_text'] );
84
+ $larger_page_start++;
85
+ }
86
+ }
87
+
88
+ if ( !empty( $options['prev_text'] ) )
89
+ $out .= get_previous_posts_link( $options['prev_text'] );
90
+
91
+ foreach ( range( $start_page, $end_page ) as $i ) {
92
+ if ( $i == $paged && !empty( $options['current_text'] ) ) {
93
+ $current_page_text = str_replace( '%PAGE_NUMBER%', number_format_i18n( $i ), $options['current_text'] );
94
+ $out .= "<span class='current'>$current_page_text</span>";
95
+ } else {
96
+ $out .= _wp_pagenavi_single( $i, 'page', $options['page_text'] );
97
+ }
98
+ }
99
+
100
+ if ( !empty( $options['next_text'] ) )
101
+ $out .= get_next_posts_link( $options['next_text'], $total_pages );
102
+
103
+ $larger_page_end = 0;
104
+ foreach ( $larger_pages_array as $larger_page ) {
105
+ if ( $larger_page > $end_page && $larger_page_end < $larger_page_to_show ) {
106
+ $out .= _wp_pagenavi_single( $larger_page, 'larger page', $options['page_text'] );
107
+ $larger_page_end++;
108
+ }
109
+ }
110
+
111
+ if ( $end_page < $total_pages ) {
112
+ if ( !empty( $options['dotright_text'] ) )
113
+ $out .= "<span class='extend'>{$options['dotright_text']}</span>";
114
+
115
+ $out .= _wp_pagenavi_single( $total_pages, 'last', $options['last_text'], '%TOTAL_PAGES%' );
116
+ }
117
+ break;
118
+
119
+ // Dropdown
120
+ case 2:
121
+ $out .= '<form action="" method="get">'."\n";
122
+ $out .= '<select size="1" onchange="document.location.href = this.options[this.selectedIndex].value;">'."\n";
123
+
124
+ foreach ( range( 1, $total_pages ) as $i ) {
125
+ $page_num = $i;
126
+ if ( $page_num == 1 )
127
+ $page_num = 0;
128
+
129
+ if ( $i == $paged ) {
130
+ $current_page_text = str_replace( '%PAGE_NUMBER%', number_format_i18n( $i ), $options['current_text'] );
131
+ $out .= '<option value="'.esc_url( get_pagenum_link( $page_num ) ).'" selected="selected" class="current">'.$current_page_text."</option>\n";
132
+ } else {
133
+ $page_text = str_replace( '%PAGE_NUMBER%', number_format_i18n( $i ), $options['page_text'] );
134
+ $out .= '<option value="'.esc_url( get_pagenum_link( $page_num ) ).'">'.$page_text."</option>\n";
135
+ }
136
+ }
137
+
138
+ $out .= "</select>\n";
139
+ $out .= "</form>\n";
140
+ break;
141
+ }
142
+ $out = $before . "<div class='wp-pagenavi'>\n$out\n</div>" . $after;
143
+
144
+ echo apply_filters( 'wp_pagenavi', $out );
145
+ }
146
+
147
+ function _wp_pagenavi_single( $page, $class, $raw_text, $format = '%PAGE_NUMBER%' ) {
148
+ if ( empty( $raw_text ) )
149
+ return '';
150
+
151
+ $text = str_replace( $format, number_format_i18n( $page ), $raw_text );
152
+
153
+ return "<a href='" . esc_url( get_pagenum_link( $page ) ) . "' class='$class'>$text</a>";
154
+ }
155
+
156
+
157
+ // Template tag: Drop Down Menu ( Deprecated )
158
+ function wp_pagenavi_dropdown() {
159
+ wp_pagenavi();
160
+ }
161
+
162
+
163
+ class PageNavi_Core {
164
+ static $options;
165
+
166
+ function init( $options ) {
167
+ self::$options = $options;
168
+
169
+ add_action( 'wp_print_styles', array( __CLASS__, 'stylesheets' ) );
170
+
171
+ add_filter( 'previous_posts_link_attributes', array( __CLASS__, 'previous_posts_link_attributes' ) );
172
+ add_filter( 'next_posts_link_attributes', array( __CLASS__, 'next_posts_link_attributes' ) );
173
+ }
174
+
175
+ function stylesheets() {
176
+ if ( !self::$options->use_pagenavi_css )
177
+ return;
178
+
179
+ if ( @file_exists( STYLESHEETPATH . '/pagenavi-css.css' ) )
180
+ $css_file = get_stylesheet_directory_uri() . '/pagenavi-css.css';
181
+ elseif ( @file_exists( TEMPLATEPATH . '/pagenavi-css.css' ) )
182
+ $css_file = get_template_directory_uri() . '/pagenavi-css.css';
183
+ else
184
+ $css_file = plugins_url( 'pagenavi-css.css', __FILE__ );
185
+
186
+ wp_enqueue_style( 'wp-pagenavi', $css_file, false, '2.70' );
187
+ }
188
+
189
+ function previous_posts_link_attributes() {
190
+ return 'class="previouspostslink"';
191
+ }
192
+
193
+ function next_posts_link_attributes() {
194
+ return 'class="nextpostslink"';
195
+ }
196
+ }
197
+
lang/wp-pagenavi-bg_BG.mo CHANGED
Binary file
lang/wp-pagenavi-bg_BG.po CHANGED
@@ -1,11 +1,11 @@
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"
@@ -15,197 +15,265 @@ msgstr ""
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
-
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP-PageNavi 2.73\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-pagenavi\n"
5
+ "POT-Creation-Date: 2010-08-17 17:28+0300\n"
6
+ "PO-Revision-Date: 2010-09-10 07:05+0200\n"
7
+ "Last-Translator: Yassen Yotov <cyberoto@gmail.com>\n"
8
+ "Language-Team: Yassen Yotov <cyberoto@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Poedit-Basepath: .\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.php:9
19
+ #, fuzzy
20
+ msgid "PageNavi Settings"
 
21
  msgstr "Настройки на навигацията"
22
 
23
+ #: admin.php:10
24
+ msgid "PageNavi"
25
+ msgstr "PageNavi"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
+ #: admin.php:28
28
  msgid "Text For Number Of Pages"
29
  msgstr "Текст за брой на страници"
30
 
31
+ #: admin.php:33
32
  msgid "The current page number."
33
  msgstr "Номер на страницата в момента"
34
 
35
+ #: admin.php:34
36
+ #: admin.php:58
37
+ #: admin.php:66
38
  msgid "The total number of pages."
39
  msgstr "Общ брой на страниците."
40
 
41
+ #: admin.php:38
42
  msgid "Text For Current Page"
43
  msgstr "Текст за разглежданата страницата"
44
 
45
+ #: admin.php:42
46
+ #: admin.php:50
47
  msgid "The page number."
48
  msgstr "Номер на страницата."
49
 
50
+ #: admin.php:46
51
  msgid "Text For Page"
52
  msgstr "Текст за страница"
53
 
54
+ #: admin.php:54
55
+ #, fuzzy
56
+ msgid "Text For First Page"
57
  msgstr "Текст за първи пост"
58
 
59
+ #: admin.php:62
60
+ #, fuzzy
61
+ msgid "Text For Last Page"
62
+ msgstr "Текст за страница"
 
 
 
63
 
64
+ #: admin.php:70
65
+ #, fuzzy
66
+ msgid "Text For Previous Page"
67
  msgstr "Текст за предишен пост"
68
 
69
+ #: admin.php:76
70
+ #, fuzzy
71
+ msgid "Text For Next Page"
72
+ msgstr "Текст за страница"
73
 
74
+ #: admin.php:82
75
  msgid "Text For Previous ..."
76
  msgstr "Текст за предишна ..."
77
 
78
+ #: admin.php:88
79
+ msgid "Text For Next ..."
80
+ msgstr "Текст за следваща ..."
81
+
82
+ #: admin.php:95
83
+ msgid "Page Navigation Text"
84
+ msgstr "Текст на навигацията"
85
+
86
+ #: admin.php:96
87
+ msgid "Leaving a field blank will hide that part of the navigation."
88
+ msgstr "Оставянето на празно поле ще скрие тази част от навигация."
89
+
90
+ #: admin.php:102
91
+ msgid "Use pagenavi-css.css"
92
+ msgstr "Използвай pagenavi-css.css"
93
+
94
+ #: admin.php:108
95
  msgid "Page Navigation Style"
96
  msgstr "Стил на навигацията на страниците"
97
 
98
+ #: admin.php:111
99
  msgid "Normal"
100
+ msgstr "Нормален"
101
 
102
+ #: admin.php:111
103
+ #, fuzzy
104
+ msgid "Drop-down List"
105
  msgstr "Падащо меню"
106
 
107
+ #: admin.php:116
108
  #, fuzzy
109
+ msgid "Always Show Page Navigation"
 
 
 
 
110
  msgstr "Показване на навигацията винаги?"
111
 
112
+ #: admin.php:119
113
+ msgid "Show navigation even if there's only one page."
114
+ msgstr "Покажи навигацията, дори ако има само една страница."
 
115
 
116
+ #: admin.php:123
117
+ #, fuzzy
118
+ msgid "Number Of Pages To Show"
119
+ msgstr "Брой на страниците за показване?"
120
 
121
+ #: admin.php:130
122
+ #, fuzzy
123
+ msgid "Number Of Larger Page Numbers To Show"
124
+ msgstr "Брой на страниците за показване?"
125
 
126
+ #: admin.php:135
127
+ msgid "Larger page numbers are in addition to the normal page numbers. They are useful when there are many pages of posts."
128
+ msgstr "Големите номера на страници, са в допълнение към обичайните номера на страниците. Те са полезни, когато има много страници с мнения."
129
 
130
+ #: admin.php:136
131
+ msgid "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50."
132
+ msgstr "Например, WP-PageNavi ще покаже: Страници 1, 2, 3, 4, 5, 10, 20, 30, 40, 50."
133
 
134
+ #: admin.php:137
135
+ msgid "Enter 0 to disable."
136
+ msgstr "Въведете 0 за да изключите тази опция"
137
 
138
+ #: admin.php:141
139
+ msgid "Show Larger Page Numbers In Multiples Of"
140
+ msgstr "Покажи големия брой страници, кратни на"
141
 
142
+ #: admin.php:146
143
+ msgid "For example, if mutiple is 5, it will show: 5, 10, 15, 20, 25"
144
+ msgstr "Например, ако е кратно на 5, ще се покаже: 5, 10, 15, 20, 25"
145
 
146
+ #: admin.php:151
147
+ msgid "Page Navigation Options"
148
+ msgstr "Настройки на навигацията"
 
 
 
 
 
 
 
 
149
 
150
+ #: scb/AdminPage.php:167
151
+ msgid "Settings <strong>saved</strong>."
152
+ msgstr "Настройките са <strong>запазени</strong>."
153
 
154
+ #: scb/AdminPage.php:179
155
+ #: scb/AdminPage.php:189
156
+ msgid "Save Changes"
157
+ msgstr "Запазване на промените"
158
+
159
+ #: scb/AdminPage.php:371
160
+ msgid "Settings"
161
+ msgstr "Настройки"
162
+
163
+ #: wp-pagenavi.php:37
164
  msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
165
  msgstr "Страница %CURRENT_PAGE% от %TOTAL_PAGES%"
166
 
167
+ #: wp-pagenavi.php:40
168
  msgid "&laquo; First"
169
  msgstr "&laquo; Първа"
170
 
171
+ #: wp-pagenavi.php:41
172
  msgid "Last &raquo;"
173
  msgstr "Последна &raquo;"
174
 
175
+ #: wp-pagenavi.php:42
176
+ msgid "&laquo;"
177
  msgstr "&raquo;"
178
 
179
+ #: wp-pagenavi.php:43
180
+ msgid "&raquo;"
181
  msgstr "&raquo;"
182
 
183
+ #: wp-pagenavi.php:44
184
+ #: wp-pagenavi.php:45
185
  msgid "..."
186
  msgstr "..."
187
 
188
+ #. Plugin Name of the plugin/theme
189
+ #, fuzzy
190
+ msgid "WP-PageNavi"
191
+ msgstr "PageNavi"
192
+
193
+ #. Plugin URI of the plugin/theme
194
+ msgid "http://wordpress.org/extend/plugins/wp-pagenavi/"
195
+ msgstr ""
196
+
197
+ #. Description of the plugin/theme
198
+ msgid "Adds a more advanced paging navigation to your WordPress blog"
199
+ msgstr "Добавя по-напреднала навигация за страниране към вашия блог"
200
+
201
+ #. Author of the plugin/theme
202
+ msgid "Lester 'GaMerZ' Chan & scribu"
203
+ msgstr ""
204
+
205
+ #~ msgid "Updated"
206
+ #~ msgstr "Обновено"
207
+
208
+ #~ msgid "No Page Navigation Option Updated"
209
+ #~ msgstr "Няма промени в настройките на навигацията"
210
+
211
+ #~ msgid "UNINSTALL WP-PageNavi"
212
+ #~ msgstr "ДЕИНСТАЛИРАНЕ на WP-PageNavi"
213
+
214
+ #~ msgid "Setting Key '%s' has been deleted."
215
+ #~ msgstr "Настройка '%s' беше изтрита."
216
+
217
+ #~ msgid "Error deleting Setting Key '%s'."
218
+ #~ msgstr "Грешка при опит да бъде изтрита настройка '%s'."
219
+
220
+ #~ msgid "Uninstall WP-PageNavi"
221
+ #~ msgstr "Деинсталиране на WP-PageNavi"
222
+
223
+ #~ msgid ""
224
+ #~ "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-"
225
+ #~ "PageNavi Will Be Deactivated Automatically."
226
+ #~ msgstr ""
227
+ #~ "<a href=\"%s\">Натиснете тук</a> за да завършите деинсталацията и WP-"
228
+ #~ "PageNavi ще бъде деактивиран автоматично."
229
+
230
+ #~ msgid "Text For Last Post"
231
+ #~ msgstr "Текст за последен пост"
232
+
233
+ #~ msgid "Text For Next Post"
234
+ #~ msgstr "Текст за следващ пост"
235
+
236
+ #~ msgid "Yes"
237
+ #~ msgstr "Да"
238
+
239
+ #~ msgid "No"
240
+ #~ msgstr "Не"
241
+
242
+ #~ msgid ""
243
+ #~ "Deactivating WP-PageNavi plugin does not remove any data that may have "
244
+ #~ "been created, such as the page navigation options. To completely remove "
245
+ #~ "this plugin, you can uninstall it here."
246
+ #~ msgstr ""
247
+ #~ "Деактивирането на WP-PageNavi не изтрива създадените от плъгина данни, "
248
+ #~ "като настройките на навигацията на страниците. За да премахнете напълно "
249
+ #~ "плъгина, деинсталирайте го от тук."
250
+
251
+ #~ msgid "WARNING:"
252
+ #~ msgstr "ВНИМАНИЕ:"
253
+
254
+ #~ msgid ""
255
+ #~ "Once uninstalled, this cannot be undone. You should use a Database Backup "
256
+ #~ "plugin of WordPress to back up all the data first."
257
+ #~ msgstr ""
258
+ #~ "Деинсталирането е необратимо. Трябва да използвате резервно копие на "
259
+ #~ "базата данни за да можете да възстановите настройките на плъгина."
260
+
261
+ #~ msgid "The following WordPress Options will be DELETED:"
262
+ #~ msgstr "Следните настройки на WordPress ще бъдат ИЗТРИТИ:"
263
+
264
+ #~ msgid "WordPress Options"
265
+ #~ msgstr "WordPress настройки"
266
+
267
+ #~ msgid ""
268
+ #~ "You Are About To Uninstall WP-PageNavi From WordPress.\\nThis Action Is "
269
+ #~ "Not Reversible.\\n\\n Choose [Cancel] To Stop, [OK] To Uninstall."
270
+ #~ msgstr ""
271
+ #~ "Вие сте на път да деинсталирате WP-PageNavi от WordPress.\\nТова действие "
272
+ #~ "е необратимо.\\n\\n Изберете [Cancel] за да спрете или [OK] за "
273
+ #~ "деинсталиране."
274
+
275
  #~ msgid "Update Options"
276
  #~ msgstr "Обновяване на настройките"
277
+
278
  #~ msgid "Cancel"
279
  #~ msgstr "Отказ"
 
lang/wp-pagenavi-es_ES.mo CHANGED
Binary file
lang/wp-pagenavi-es_ES.po CHANGED
@@ -1,9 +1,9 @@
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"
@@ -16,219 +16,234 @@ msgstr ""
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP-PageNavi 2.50\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-pagenavi\n"
5
+ "POT-Creation-Date: 2010-04-19 11:25+0300\n"
6
+ "PO-Revision-Date: 2010-07-15 01:29+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"
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin.php:9
20
+ msgid "PageNavi Settings"
21
+ msgstr "Configuración de 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 "Texto para el Número de Páginas"
30
 
31
+ #: admin.php:32
32
  msgid "The current page number."
33
  msgstr "Número de la página actual."
34
 
35
+ #: admin.php:33
36
+ #: admin.php:57
37
+ #: admin.php:65
38
  msgid "The total number of pages."
39
  msgstr "Número total de páginas."
40
 
41
+ #: admin.php:37
42
  msgid "Text For Current Page"
43
+ msgstr "Texto para la Página Actual"
44
 
45
+ #: admin.php:41
46
+ #: admin.php:49
47
  msgid "The page number."
48
+ msgstr "Número de página."
49
 
50
+ #: admin.php:45
51
  msgid "Text For Page"
52
+ msgstr "Texto para la Página"
53
+
54
+ #: admin.php:53
55
+ msgid "Text For First Page"
56
+ msgstr "Texto para la Primera página"
57
 
58
+ #: admin.php:61
59
+ msgid "Text For Last Page"
60
+ msgstr "Texto para la Última Página"
61
 
62
+ #: admin.php:69
63
+ msgid "Text For Previous Page"
64
+ msgstr "Texto para la Página Anterior"
65
 
66
+ #: admin.php:75
67
+ msgid "Text For Next Page"
68
+ msgstr "Texto para la Página Siguiente"
69
 
70
+ #: admin.php:81
71
+ msgid "Text For Previous ..."
72
+ msgstr "Texto para la Anterior ..."
73
 
74
+ #: admin.php:87
75
  msgid "Text For Next ..."
76
+ msgstr "Texto para la Siguiente ..."
77
 
78
+ #: admin.php:94
79
+ msgid "Page Navigation Text"
80
+ msgstr "Texto de Paginación"
81
+
82
+ #: admin.php:95
83
+ msgid "Leaving a field blank will hide that part of the navigation."
84
+ msgstr "Dejando un campo en blanco, se oculta esta parte en la navegación."
85
 
86
+ #: admin.php:101
87
+ msgid "Use pagenavi-css.css"
88
+ msgstr "Usar pagenavi-css.css"
89
+
90
+ #: admin.php:107
91
  msgid "Page Navigation Style"
92
+ msgstr "Estilo de Paginación"
93
 
94
+ #: admin.php:110
95
  msgid "Normal"
96
  msgstr "Normal"
97
 
98
+ #: admin.php:110
99
+ msgid "Drop-down List"
100
  msgstr "Lista desplegable"
101
 
102
+ #: admin.php:115
103
+ msgid "Always Show Page Navigation"
104
+ msgstr "Mostrar siempre la Paginación"
 
 
 
 
105
 
106
+ #: admin.php:118
107
+ msgid "Show navigation even if there's only one page."
108
+ msgstr "Mostrar la navegación, incluso si sólo hay una página."
 
109
 
110
+ #: admin.php:122
111
+ msgid "Number Of Pages To Show"
112
+ msgstr "Número de Páginas a Mostrar"
113
 
114
+ #: admin.php:129
115
+ msgid "Number Of Larger Page Numbers To Show"
116
+ msgstr "Números Grandes en la Paginación"
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 "Ampliar los números de página sumando a los números de página normal. Son útiles cuando hay muchas páginas de entradas."
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 "Por ejemplo, WP-PageNavi muestra: Páginas 1, 2, 3, 4, 5, 10, 20, 30, 40, 50."
125
 
126
+ #: admin.php:136
127
  msgid "Enter 0 to disable."
128
+ msgstr "Introducir 0 para desactivar."
129
 
130
+ #: admin.php:140
131
+ msgid "Show Larger Page Numbers In Multiples Of"
132
+ msgstr "Mostrar Numeros Grandes que sean Multiplos de"
133
 
134
+ #: admin.php:145
135
+ msgid "For example, if mutiple is 5, it will show: 5, 10, 15, 20, 25"
136
+ msgstr "Por ejemplo, si son múltiplos de 5, se muestran: 5, 10, 15, 20, 25"
137
 
138
+ #: admin.php:150
139
+ msgid "Page Navigation Options"
140
+ msgstr "Opciones de Navegación de Páginas"
141
 
142
+ #: scb/AdminPage.php:165
143
+ #: scb/AdminPage.php:176
144
  msgid "Save Changes"
145
  msgstr "Guardar"
146
 
147
+ #: scb/AdminPage.php:279
148
+ msgid "Settings <strong>saved</strong>."
149
+ msgstr "Configuración <strong>guardada</strong>."
 
 
 
 
 
 
 
 
150
 
151
+ #: scb/AdminPage.php:337
152
+ msgid "Settings"
153
+ msgstr "Configuración"
154
 
155
+ #: wp-pagenavi.php:224
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
  msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
157
  msgstr "Página %CURRENT_PAGE% de %TOTAL_PAGES%"
158
 
159
+ #: wp-pagenavi.php:227
160
  msgid "&laquo; First"
161
  msgstr "&laquo; Primera"
162
 
163
+ #: wp-pagenavi.php:228
164
  msgid "Last &raquo;"
165
  msgstr "Última &raquo;"
166
 
167
+ #: wp-pagenavi.php:229
 
 
 
 
168
  msgid "&laquo;"
169
  msgstr "&laquo;"
170
 
171
+ #: wp-pagenavi.php:230
172
+ msgid "&raquo;"
173
+ msgstr "&raquo;"
174
+
175
+ #: wp-pagenavi.php:231
176
+ #: wp-pagenavi.php:232
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 "Agrega una paginación más avanzados a tu blog WordPress"
191
+
192
+ #. Author of the plugin/theme
193
+ msgid "Lester 'GaMerZ' Chan & scribu"
194
+ msgstr "Lester 'GaMerZ' Chan & scribu. Traducción fportero"
195
+
196
+ #~ msgid "Updated"
197
+ #~ msgstr "Actualizado"
198
+ #~ msgid "No Page Navigation Option Updated"
199
+ #~ msgstr "Opciones de PageNavi sin actualizar"
200
+ #~ msgid "UNINSTALL WP-PageNavi"
201
+ #~ msgstr "DESINSTALAR PageNavi"
202
+ #~ msgid "Setting Key '%s' has been deleted."
203
+ #~ msgstr "La clave '%s' ha sido borrada correctamente"
204
+ #~ msgid "Error deleting Setting Key '%s'."
205
+ #~ msgstr "Error borrando la clave '%s'."
206
+ #~ msgid "Uninstall WP-PageNavi"
207
+ #~ msgstr "Desinstalar PageNavi"
208
+ #~ msgid ""
209
+ #~ "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-"
210
+ #~ "PageNavi Will Be Deactivated Automatically."
211
+ #~ msgstr ""
212
+ #~ "<a href=\"%s\">Pulsar aquí</a> Para finalizar la desinstalación de "
213
+ #~ "PageNavi, se desactivara automaticamente"
214
+ #~ msgid "Text For Last Post"
215
+ #~ msgstr "Última página"
216
+ #~ msgid "Text For Next Post"
217
+ #~ msgstr "Página siguinete"
218
+ #~ msgid "Yes"
219
+ #~ msgstr "Si"
220
+ #~ msgid "No"
221
+ #~ msgstr "No"
222
+ #~ msgid "If mutiple is in 10, it will show: 10, 20, 30, 40, 50"
223
+ #~ msgstr "Si son múltiplos de 10, se muestran: 10, 20, 30, 40, 50"
224
+ #~ msgid ""
225
+ #~ "Deactivating WP-PageNavi plugin does not remove any data that may have "
226
+ #~ "been created, such as the page navigation options. To completely remove "
227
+ #~ "this plugin, you can uninstall it here."
228
+ #~ msgstr ""
229
+ #~ "Desactivando el plugin PageNavi no se borran los datos almacenados. Para "
230
+ #~ "borrarlo todo, se debe desinstalar desde aquí."
231
+ #~ msgid "WARNING:"
232
+ #~ msgstr "ATENCIÓN:"
233
+ #~ msgid ""
234
+ #~ "Once uninstalled, this cannot be undone. You should use a Database Backup "
235
+ #~ "plugin of WordPress to back up all the data first."
236
+ #~ msgstr ""
237
+ #~ "Una vez desinstalado, no se puede deshacer. Guarda copias de seguridad de "
238
+ #~ "todos los datos primero si los vas a necesitar despues."
239
+ #~ msgid "The following WordPress Options will be DELETED:"
240
+ #~ msgstr "Las siguientes opciones de WordPress se ELIMINARÁN:"
241
+ #~ msgid "WordPress Options"
242
+ #~ msgstr "Opciones de Wordpress"
243
+ #~ msgid ""
244
+ #~ "You Are About To Uninstall WP-PageNavi From WordPress.\\nThis Action Is "
245
+ #~ "Not Reversible.\\n\\n Choose [Cancel] To Stop, [OK] To Uninstall."
246
+ #~ msgstr ""
247
+ #~ "You Are About To Uninstall WP-PageNavi From WordPress.\\nThis Action Is "
248
+ #~ "Not Reversible.\\n\\n Choose [Cancel] To Stop, [OK] To Uninstall."
249
+
lang/wp-pagenavi-id_ID.mo ADDED
Binary file
lang/wp-pagenavi-id_ID.po ADDED
@@ -0,0 +1,237 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-PageNavi 2.73\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-08-29 14:42+0700\n"
6
+ "PO-Revision-Date: 2010-08-29 14:42+0700\n"
7
+ "Last-Translator: Masino Sinaga <admin@masinosinaga.com>\n"
8
+ "Language-Team: Masino Sinaga <admin@masinosinaga.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: Indonesian\n"
13
+ "X-Poedit-Country: INDONESIA\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
+ #: ../admin.php:9
20
+ msgid "PageNavi Settings"
21
+ msgstr "Pengaturan PageNavi"
22
+
23
+ #: ../admin.php:10
24
+ msgid "PageNavi"
25
+ msgstr "PageNavi"
26
+
27
+ #: ../admin.php:28
28
+ msgid "Text For Number Of Pages"
29
+ msgstr "Teksi untuk Nomor Halaman"
30
+
31
+ #: ../admin.php:33
32
+ msgid "The current page number."
33
+ msgstr "Nomor halaman saat ini."
34
+
35
+ #: ../admin.php:34
36
+ #: ../admin.php:58
37
+ #: ../admin.php:66
38
+ msgid "The total number of pages."
39
+ msgstr "Total jumlah halaman."
40
+
41
+ #: ../admin.php:38
42
+ msgid "Text For Current Page"
43
+ msgstr "Teks untuk Halaman yang Sedang Aktif"
44
+
45
+ #: ../admin.php:42
46
+ #: ../admin.php:50
47
+ msgid "The page number."
48
+ msgstr "Nomor halaman."
49
+
50
+ #: ../admin.php:46
51
+ msgid "Text For Page"
52
+ msgstr "Teks untuk Halaman"
53
+
54
+ #: ../admin.php:54
55
+ msgid "Text For First Page"
56
+ msgstr "Teks untuk Halaman Pertama"
57
+
58
+ #: ../admin.php:62
59
+ msgid "Text For Last Page"
60
+ msgstr "Teks untuk Halaman Terakhir"
61
+
62
+ #: ../admin.php:70
63
+ msgid "Text For Previous Page"
64
+ msgstr "Teks untuk Halaman Sebelumnya"
65
+
66
+ #: ../admin.php:76
67
+ msgid "Text For Next Page"
68
+ msgstr "Teks untuk Halaman Berikutnya"
69
+
70
+ #: ../admin.php:82
71
+ msgid "Text For Previous ..."
72
+ msgstr "Teks untuk Sebelumnya ..."
73
+
74
+ #: ../admin.php:88
75
+ msgid "Text For Next ..."
76
+ msgstr "Teks untuk Berikutnya ..."
77
+
78
+ #: ../admin.php:95
79
+ msgid "Page Navigation Text"
80
+ msgstr "Tulisan Navigasi Halaman"
81
+
82
+ #: ../admin.php:96
83
+ msgid "Leaving a field blank will hide that part of the navigation."
84
+ msgstr "Ruas yang kosong akan menyembunyikan bagian itu dari navigasi."
85
+
86
+ #: ../admin.php:102
87
+ msgid "Use pagenavi-css.css"
88
+ msgstr "Gunakan pagenavi-css.css"
89
+
90
+ #: ../admin.php:108
91
+ msgid "Page Navigation Style"
92
+ msgstr "Gaya Navigasi Halaman"
93
+
94
+ #: ../admin.php:111
95
+ msgid "Normal"
96
+ msgstr "Normal"
97
+
98
+ #: ../admin.php:111
99
+ msgid "Drop-down List"
100
+ msgstr "Senarai Jatuh-ke-bawah"
101
+
102
+ #: ../admin.php:116
103
+ msgid "Always Show Page Navigation"
104
+ msgstr "Selalu Tampilkan Halaman Navigasi"
105
+
106
+ #: ../admin.php:119
107
+ msgid "Show navigation even if there's only one page."
108
+ msgstr "Tampilkan navigasi bahkan jika hanya ada satu halaman."
109
+
110
+ #: ../admin.php:123
111
+ msgid "Number Of Pages To Show"
112
+ msgstr "Jumlah Halaman yang Ditampilkan"
113
+
114
+ #: ../admin.php:130
115
+ msgid "Number Of Larger Page Numbers To Show"
116
+ msgstr "Jumlah Halaman yang Lebih Besar Ditampilkan"
117
+
118
+ #: ../admin.php:135
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 "Nomor halaman yang lebih besar merupakan tambahan untuk nomor halaman default. Hal ini berguna untuk penulis yang melakukan navigasi halaman melalui banyak artikel."
121
+
122
+ #: ../admin.php:136
123
+ msgid "For example, WP-PageNavi will display: Pages 1, 2, 3, 4, 5, 10, 20, 30, 40, 50."
124
+ msgstr "Sebagai contoh, WP-PageNavi akan menampilkan: Halaman: 1, 2, 3, 4, 5, 10, 20, 30, 40, 50."
125
+
126
+ #: ../admin.php:137
127
+ msgid "Enter 0 to disable."
128
+ msgstr "Masukkan 0 untuk menonaktifkan."
129
+
130
+ #: ../admin.php:141
131
+ msgid "Show Larger Page Numbers In Multiples Of"
132
+ msgstr "Tampilkan Nomor Halaman yang Lebih Besar dalam Kelipatan"
133
+
134
+ #: ../admin.php:146
135
+ msgid "For example, if mutiple is 5, it will show: 5, 10, 15, 20, 25"
136
+ msgstr "Sebagai contoh, jika kelipatan 5, akan menampilkan: 5, 10, 15, 20, 25"
137
+
138
+ #: ../admin.php:151
139
+ msgid "Page Navigation Options"
140
+ msgstr "Pilihan Navigasi Halaman"
141
+
142
+ #: ../wp-pagenavi.php:37
143
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
144
+ msgstr "Halaman %CURRENT_PAGE% dari %TOTAL_PAGES%"
145
+
146
+ #: ../wp-pagenavi.php:40
147
+ msgid "&laquo; First"
148
+ msgstr "&laquo; Awal"
149
+
150
+ #: ../wp-pagenavi.php:41
151
+ msgid "Last &raquo;"
152
+ msgstr "Akhir &raquo;"
153
+
154
+ #: ../wp-pagenavi.php:42
155
+ msgid "&laquo;"
156
+ msgstr "&laquo;"
157
+
158
+ #: ../wp-pagenavi.php:43
159
+ msgid "&raquo;"
160
+ msgstr "&raquo;"
161
+
162
+ #: ../wp-pagenavi.php:44
163
+ #: ../wp-pagenavi.php:45
164
+ msgid "..."
165
+ msgstr "..."
166
+
167
+ #: ../scb/AdminPage.php:167
168
+ msgid "Settings <strong>saved</strong>."
169
+ msgstr "Pengaturan <strong>telah disimpan</strong>."
170
+
171
+ #: ../scb/AdminPage.php:179
172
+ #: ../scb/AdminPage.php:189
173
+ msgid "Save Changes"
174
+ msgstr "Simpan Perubahan"
175
+
176
+ #: ../scb/AdminPage.php:371
177
+ msgid "Settings"
178
+ msgstr "Pengaturan"
179
+
180
+ #~ msgid "Updated"
181
+ #~ msgstr "Telah diperbaharui"
182
+ #~ msgid "No Page Navigation Option Updated"
183
+ #~ msgstr "Tidak ada pilihan navigasi halaman yang telah diperbaharui"
184
+ #~ msgid "UNINSTALL WP-PageNavi"
185
+ #~ msgstr "HAPUS WP-PageNavi"
186
+ #~ msgid "Setting Key '%s' has been deleted."
187
+ #~ msgstr "Kunci Pengaturan '%s' telah diperbaharui."
188
+ #~ msgid "Error deleting Setting Key '%s'."
189
+ #~ msgstr "Terjadi kesalahan saat menghapus Kunci Pengaturan '%s'"
190
+ #~ msgid "Uninstall WP-PageNavi"
191
+ #~ msgstr "Hapus WP-PageNavi"
192
+ #~ msgid ""
193
+ #~ "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-"
194
+ #~ "PageNavi Will Be Deactivated Automatically."
195
+ #~ msgstr ""
196
+ #~ "<a href=\"%s\">Klik Di Sini</a> untuk menyelesaikan penghapusan dan WP-"
197
+ #~ "PageNavi akan otomatis dinonaktifkan."
198
+ #~ msgid "Text For Last Post"
199
+ #~ msgstr "Teks untuk Halaman Terakhir"
200
+ #~ msgid "Text For Next Post"
201
+ #~ msgstr "Teks untuk Halaman Berikutnya"
202
+ #~ msgid "Yes"
203
+ #~ msgstr "Ya"
204
+ #~ msgid "No"
205
+ #~ msgstr "Tidak"
206
+ #~ msgid "If mutiple is in 10, it will show: 10, 20, 30, 40, 50"
207
+ #~ msgstr "Jika dalam kelipatan 10, dia akan menampilkan: 10, 20, 30, 40, 50"
208
+ #~ msgid ""
209
+ #~ "Deactivating WP-PageNavi plugin does not remove any data that may have "
210
+ #~ "been created, such as the page navigation options. To completely remove "
211
+ #~ "this plugin, you can uninstall it here."
212
+ #~ msgstr ""
213
+ #~ "Dengan menonaktifkan plugin WP-PageNavi, maka tidak akan menghapus data "
214
+ #~ "apapun yang telah dibuat, seperti pilihan navigasi halaman. Untuk "
215
+ #~ "menghapus seluruhnya plugin ini, Anda dapat meng-uninstall-nya di sini."
216
+ #~ msgid "WARNING:"
217
+ #~ msgstr "PERINGATAN:"
218
+ #~ msgid ""
219
+ #~ "Once uninstalled, this cannot be undone. You should use a Database Backup "
220
+ #~ "plugin of WordPress to back up all the data first."
221
+ #~ msgstr ""
222
+ #~ "Setelah dihapus, hal ini tidak dapat dikembalikan kembali. Anda "
223
+ #~ "disarankan untuk melakukan Backup plugin dari WordPress Anda untuk "
224
+ #~ "membackup semua data pertama sekali."
225
+ #~ msgid "The following WordPress Options will be DELETED:"
226
+ #~ msgstr "Pilihan WordPress berikut akan DIHAPUS:"
227
+ #~ msgid "WordPress Options"
228
+ #~ msgstr "Pilihan WordPress"
229
+ #~ msgid ""
230
+ #~ "You Are About To Uninstall WP-PageNavi From WordPress.\\nThis Action Is "
231
+ #~ "Not Reversible.\\n\\n Choose [Cancel] To Stop, [OK] To Uninstall."
232
+ #~ msgstr "Anda akan menghapus WP-PageNavi dari WordPress Anda.\\n"
233
+ #~ msgid "First"
234
+ #~ msgstr "Awal"
235
+ #~ msgid "Last"
236
+ #~ msgstr "Akhir"
237
+
lang/wp-pagenavi-ja.mo ADDED
Binary file
lang/wp-pagenavi-ja.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-06-23 07:18-0500\n"
12
+ "Last-Translator: Naoko McCracken <info@nao-net.com>\n"
13
+ "Language-Team: Naoko McCracken <info@nao-net.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: Japanese\n"
18
+ "X-Poedit-Country: JAPAN\n"
19
+ "X-Poedit-SourceCharset: utf-8\n"
20
+
21
+ #: admin.php:9
22
+ msgid "PageNavi Settings"
23
+ msgstr "PageNavi 設定"
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 "総ページ数用テキスト"
32
+
33
+ #: admin.php:32
34
+ msgid "The current page number."
35
+ msgstr "現在のページ番号。"
36
+
37
+ #: admin.php:33
38
+ #: admin.php:57
39
+ #: admin.php:65
40
+ msgid "The total number of pages."
41
+ msgstr "総ページ数。"
42
+
43
+ #: admin.php:37
44
+ msgid "Text For Current Page"
45
+ msgstr "現在のページ用テキスト"
46
+
47
+ #: admin.php:41
48
+ #: admin.php:49
49
+ msgid "The page number."
50
+ msgstr "ページ番号。"
51
+
52
+ #: admin.php:45
53
+ msgid "Text For Page"
54
+ msgstr "ページ用テキスト"
55
+
56
+ #: admin.php:53
57
+ msgid "Text For First Page"
58
+ msgstr "最初のページ用テキスト"
59
+
60
+ #: admin.php:61
61
+ msgid "Text For Last Page"
62
+ msgstr "最後のページ用テキスト"
63
+
64
+ #: admin.php:69
65
+ msgid "Text For Previous Page"
66
+ msgstr "前のページ用テキスト"
67
+
68
+ #: admin.php:75
69
+ msgid "Text For Next Page"
70
+ msgstr "次のページ用テキスト"
71
+
72
+ #: admin.php:81
73
+ msgid "Text For Previous ..."
74
+ msgstr "「前へ…」用テキスト"
75
+
76
+ #: admin.php:87
77
+ msgid "Text For Next ..."
78
+ msgstr "「次へ…」用テキスト"
79
+
80
+ #: admin.php:94
81
+ msgid "Page Navigation Text"
82
+ msgstr "ページナビゲーションテキスト"
83
+
84
+ #: admin.php:95
85
+ msgid "Leaving a field blank will hide that part of the navigation."
86
+ msgstr "欄を空にするとナビゲーションのその部分が非表示になります。"
87
+
88
+ #: admin.php:101
89
+ msgid "Use pagenavi-css.css"
90
+ msgstr "pagenavi-css.css を使用"
91
+
92
+ #: admin.php:107
93
+ msgid "Page Navigation Style"
94
+ msgstr "Page Navigation スタイル"
95
+
96
+ #: admin.php:110
97
+ msgid "Normal"
98
+ msgstr "通常"
99
+
100
+ #: admin.php:110
101
+ msgid "Drop-down List"
102
+ msgstr "ドロップダウンリスト"
103
+
104
+ #: admin.php:115
105
+ msgid "Always Show Page Navigation"
106
+ msgstr "常にページナビゲーションを表示"
107
+
108
+ #: admin.php:118
109
+ msgid "Show navigation even if there's only one page."
110
+ msgstr "1ページしかない場合もページナビゲーションを表示する。"
111
+
112
+ #: admin.php:122
113
+ msgid "Number Of Pages To Show"
114
+ msgstr "表示するページ数"
115
+
116
+ #: admin.php:129
117
+ msgid "Number Of Larger Page Numbers To Show"
118
+ msgstr "省略表示するページ数"
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 "通常のページ数に追加し、ここで指定された最大数まで省略表示をします。非常に多くの投稿がある場合便利です。"
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 "例えば、WP-PageNavi は「ページ 1, 2, 3, 4, 5, 10, 20, 30, 40, 50」のように表示します。"
127
+
128
+ #: admin.php:136
129
+ msgid "Enter 0 to disable."
130
+ msgstr "無効にするには0と記入してください。"
131
+
132
+ #: admin.php:140
133
+ msgid "Show Larger Page Numbers In Multiples Of"
134
+ msgstr "省略ページを以下の倍数で表示"
135
+
136
+ #: admin.php:145
137
+ msgid "For example, if mutiple is 5, it will show: 5, 10, 15, 20, 25"
138
+ msgstr "例えば5の倍数なら「5, 10, 15, 20, 25」と表示します。"
139
+
140
+ #: admin.php:150
141
+ msgid "Page Navigation Options"
142
+ msgstr "ページナビゲーション設定"
143
+
144
+ #: scb/AdminPage.php:165
145
+ #: scb/AdminPage.php:176
146
+ msgid "Save Changes"
147
+ msgstr "変更を保存"
148
+
149
+ #: scb/AdminPage.php:279
150
+ msgid "Settings <strong>saved</strong>."
151
+ msgstr "設定を<strong>保存しました。</strong>"
152
+
153
+ #: scb/AdminPage.php:337
154
+ msgid "Settings"
155
+ msgstr "設定"
156
+
157
+ #: wp-pagenavi.php:224
158
+ msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%"
159
+ msgstr "%CURRENT_PAGE% / %TOTAL_PAGES%"
160
+
161
+ #: wp-pagenavi.php:227
162
+ msgid "&laquo; First"
163
+ msgstr "&laquo; 先頭"
164
+
165
+ #: wp-pagenavi.php:228
166
+ msgid "Last &raquo;"
167
+ msgstr "最後 &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 "WordPress ブログにさらに高度なページングナビゲーションを追加"
193
+
194
+ #. Author of the plugin/theme
195
+