Duplicate Post - Version 1.1

Version Description

New features and customization, WP 3.0 compatibility: you should upgrade if you want to copy Custom Posts with Custom Taxonomies.

=

Download this release

Release Info

Developer lopo
Plugin Icon 128x128 Duplicate Post
Version 1.1
Comparing to
See all releases

Code changes from version 1.0 to 1.1

duplicate-post.php CHANGED
@@ -3,13 +3,13 @@
3
  Plugin Name: Duplicate Post
4
  Plugin URI: http://www.lopo.it/duplicate-post-plugin/
5
  Description: Creates a copy of a post.
6
- Version: 1.0
7
  Author: Enrico Battocchi
8
  Author URI: http://www.lopo.it
9
  Text Domain: duplicate-post
10
  */
11
 
12
- /* Copyright 2009 Enrico Battocchi (email : enrico.battocchi@gmail.com)
13
 
14
  This program is free software; you can redistribute it and/or modify
15
  it under the terms of the GNU General Public License as published by
@@ -63,7 +63,7 @@ function duplicate_post_save_as_new_post(){
63
  * Same as above, for pages
64
  */
65
  function duplicate_post_save_as_new_page(){
66
- if (! ( isset( $_GET['post']) || isset( $_POST['post']) || ( isset($_REQUEST['action']) && 'duplicate_post_save_as_new_post' == $_REQUEST['action'] ) ) ) {
67
  wp_die(__('No page to duplicate has been supplied!', DUPLICATE_POST_I18N_DOMAIN));
68
  }
69
 
@@ -80,7 +80,7 @@ function duplicate_post_save_as_new_page(){
80
  do_action( 'dp_duplicate_page', $new_id, $post );
81
 
82
  // Redirect to the edit screen for the new draft page
83
- wp_redirect( admin_url( 'page.php?action=edit&post=' . $new_id ) );
84
  exit;
85
  } else {
86
  wp_die(__('Post creation failed, could not find original post:', DUPLICATE_POST_I18N_DOMAIN) . ' ' . $id);
@@ -88,11 +88,8 @@ function duplicate_post_save_as_new_page(){
88
  }
89
 
90
  // Version of the plugin
91
- define('DUPLICATE_POST_CURRENT_VERSION', '1.0' );
92
  define('DUPLICATE_POST_COLUMN', 'control_duplicate_post');
93
- define('DUPLICATE_POST_VIEW_USER_LEVEL_OPTION', 'duplicate_post_view_user_level');
94
- define('DUPLICATE_POST_CREATE_USER_LEVEL_OPTION', 'duplicate_post_create_user_level');
95
- define('DUPLICATE_POST_ADMIN_USER_LEVEL_OPTION', 'duplicate_post_admin_user_level');
96
 
97
  // i18n plugin domain
98
  define('DUPLICATE_POST_I18N_DOMAIN', 'duplicate-post');
@@ -113,20 +110,16 @@ function duplicate_post_plugin_activation() {
113
 
114
  if ( $installed_version==duplicate_post_get_current_version() ) {
115
  // do nothing
116
- } else if ( $installed_version=='' ) {
 
 
 
 
117
  // Add all options, nothing already installed
118
  add_option(
119
- DUPLICATE_POST_VIEW_USER_LEVEL_OPTION,
120
- '2',
121
- 'Default user level to copy posts' );
122
- add_option(
123
- DUPLICATE_POST_CREATE_USER_LEVEL_OPTION,
124
  '5',
125
- 'Default user level to create the templates' );
126
- add_option(
127
- DUPLICATE_POST_ADMIN_USER_LEVEL_OPTION,
128
- '8',
129
- 'Default user level to change the plugin options' );
130
  }
131
  // Update version number
132
  update_option( 'duplicate_post_version', duplicate_post_get_current_version() );
@@ -155,7 +148,7 @@ if (strncmp($wp_version, "2.7",3) == 0 ){
155
  * WP version < 2.8: add a custom column
156
  */
157
  function duplicate_post_add_duplicate_post_column($columns) {
158
- if (duplicate_post_is_current_user_allowed_to_create()) {
159
  $columns[DUPLICATE_POST_COLUMN] = '';
160
  }
161
  return $columns;
@@ -165,7 +158,7 @@ function duplicate_post_add_duplicate_post_column($columns) {
165
  * WP version < 2.8: add link to custom column for posts
166
  */
167
  function duplicate_post_make_duplicate_link($column_name, $id) {
168
- if (duplicate_post_is_current_user_allowed_to_create()) {
169
  if ($column_name == DUPLICATE_POST_COLUMN) {
170
  echo "<a href='admin.php?action=duplicate_post_save_as_new_post&amp;post=" . $id
171
  . "' title='" . __("Make a duplicate from this post", DUPLICATE_POST_I18N_DOMAIN)
@@ -179,7 +172,7 @@ function duplicate_post_make_duplicate_link($column_name, $id) {
179
  */
180
  // Added by WarmStal
181
  function duplicate_page_make_duplicate_link($column_name, $id) {
182
- if (duplicate_post_is_current_user_allowed_to_create()) {
183
  if ($column_name == DUPLICATE_POST_COLUMN) {
184
  echo "<a href='admin.php?action=duplicate_post_save_as_new_page&amp;post=" . $id
185
  . "' title='" . __("Make a duplicate from this page", DUPLICATE_POST_I18N_DOMAIN)
@@ -198,7 +191,7 @@ add_action('admin_action_duplicate_post_save_as_new_page', 'duplicate_post_save_
198
  * Add the link to action list for post_row_actions
199
  */
200
  function duplicate_post_make_duplicate_link_row($actions, $post) {
201
- if (duplicate_post_is_current_user_allowed_to_create()) {
202
  $actions['duplicate'] = '<a href="admin.php?action=duplicate_post_save_as_new_post&amp;post=' . $post->ID . '" title="' . __("Make a duplicate from this post", DUPLICATE_POST_I18N_DOMAIN)
203
  . '" rel="permalink">' . __("Duplicate", DUPLICATE_POST_I18N_DOMAIN) . '</a>';
204
  }
@@ -209,7 +202,7 @@ function duplicate_post_make_duplicate_link_row($actions, $post) {
209
  * Add the link to action list for page_row_actions
210
  */
211
  function duplicate_page_make_duplicate_link_row($actions, $page) {
212
- if (duplicate_post_is_current_user_allowed_to_create()) {
213
  $actions['duplicate'] = '<a href="admin.php?action=duplicate_post_save_as_new_page&amp;post=' . $page->ID . '" title="' . __("Make a duplicate from this page", DUPLICATE_POST_I18N_DOMAIN)
214
  . '" rel="permalink">' . __("Duplicate", DUPLICATE_POST_I18N_DOMAIN) . '</a>';
215
  }
@@ -222,7 +215,7 @@ function duplicate_page_make_duplicate_link_row($actions, $page) {
222
  add_action( 'post_submitbox_start', 'duplicate_post_add_duplicate_post_button' );
223
 
224
  function duplicate_post_add_duplicate_post_button() {
225
- if ( isset( $_GET['post'] ) && duplicate_post_is_current_user_allowed_to_create()) {
226
  $act = "admin.php?action=duplicate_post_save_as_new_post";
227
  global $post;
228
  if ($post->post_type == "page") $act = "admin.php?action=duplicate_post_save_as_new_page";
@@ -235,46 +228,18 @@ function duplicate_post_add_duplicate_post_button() {
235
  }
236
  }
237
 
238
- /**
239
- * Wrapper for the option 'duplicate_post_view_user_level'
240
- */
241
- function duplicate_post_get_view_user_level() {
242
- return get_option( DUPLICATE_POST_VIEW_USER_LEVEL_OPTION );
243
- }
244
-
245
- /**
246
- * Wrapper for the option 'duplicate_post_view_user_level'
247
- */
248
- function duplicate_post_set_view_user_level($new_level) {
249
- return update_option( DUPLICATE_POST_VIEW_USER_LEVEL_OPTION, $new_level );
250
- }
251
-
252
  /**
253
  * Wrapper for the option 'duplicate_post_create_user_level'
254
  */
255
- function duplicate_post_get_create_user_level() {
256
- return get_option( DUPLICATE_POST_CREATE_USER_LEVEL_OPTION );
257
  }
258
 
259
  /**
260
  * Wrapper for the option 'duplicate_post_create_user_level'
261
  */
262
- function duplicate_post_set_create_user_level($new_level) {
263
- return update_option( DUPLICATE_POST_CREATE_USER_LEVEL_OPTION, $new_level );
264
- }
265
-
266
- /**
267
- * Wrapper for the option 'duplicate_post_admin_user_level'
268
- */
269
- function duplicate_post_get_admin_user_level() {
270
- return get_option( DUPLICATE_POST_ADMIN_USER_LEVEL_OPTION );
271
- }
272
-
273
- /**
274
- * Wrapper for the option 'duplicate_post_admin_user_level'
275
- */
276
- function duplicate_post_set_admin_user_level($new_level) {
277
- return update_option( DUPLICATE_POST_ADMIN_USER_LEVEL_OPTION, $new_level );
278
  }
279
 
280
  /**
@@ -291,25 +256,11 @@ function duplicate_post_get_current_version() {
291
  return DUPLICATE_POST_CURRENT_VERSION;
292
  }
293
 
294
- /**
295
- * Test if the user is allowed to view the templates & create posts
296
- */
297
- function duplicate_post_is_current_user_allowed_to_view() {
298
- return current_user_can("level_" . duplicate_post_get_view_user_level());
299
- }
300
-
301
  /**
302
  * Test if the user is allowed to create templates
303
  */
304
- function duplicate_post_is_current_user_allowed_to_create() {
305
- return current_user_can("level_" . duplicate_post_get_create_user_level());
306
- }
307
-
308
- /**
309
- * Test if the user is allowed to administrate the plugin
310
- */
311
- function duplicate_post_is_current_user_allowed_to_admin() {
312
- return current_user_can("level_" . duplicate_post_get_admin_user_level());
313
  }
314
 
315
  /**
@@ -418,36 +369,19 @@ function duplicate_post_get_post($id) {
418
  }
419
 
420
  /**
421
- * Copy the categories of a post to another post
422
  */
423
- function duplicate_post_copy_post_categories($id, $new_id) {
424
  global $wpdb;
425
  if (isset($wpdb->terms)) {
426
  // WordPress 2.3
427
- $taxonomies = get_object_taxonomies('post'); //array("category", "post_tag");
428
  foreach ($taxonomies as $taxonomy) {
429
  $post_terms = wp_get_object_terms($id, $taxonomy);
430
  for ($i=0; $i<count($post_terms); $i++) {
431
  wp_set_object_terms($new_id, $post_terms[$i]->slug, $taxonomy, true);
432
  }
433
  }
434
- } else {
435
- $post_categories = $wpdb->get_results("SELECT category_id FROM $wpdb->post2cat WHERE post_id=$id");
436
- if (count($post_categories)!=0) {
437
- $sql_query = "INSERT INTO $wpdb->post2cat (post_id, category_id) ";
438
-
439
- for ($i=0; $i<count($post_categories); $i++) {
440
- $post_category = $post_categories[$i]->category_id;
441
-
442
- if ($i<count($post_categories)-1) {
443
- $sql_query .= "SELECT $new_id, $post_category UNION ALL ";
444
- } else {
445
- $sql_query .= "SELECT $new_id, $post_category";
446
- }
447
- }
448
-
449
- $wpdb->query($sql_query);
450
- }
451
  }
452
  }
453
 
@@ -460,19 +394,15 @@ function duplicate_post_copy_post_meta_info($id, $new_id) {
460
 
461
  if (count($post_meta_infos)!=0) {
462
  $sql_query = "INSERT INTO $wpdb->postmeta (post_id, meta_key, meta_value) ";
463
-
464
- for ($i=0; $i<count($post_meta_infos); $i++) {
465
- $meta_info = $post_meta_infos[$i];
466
-
467
  $meta_value = addslashes($meta_info->meta_value);
468
-
469
- if ($i<count($post_meta_infos)-1) {
470
- $sql_query .= "SELECT $new_id, '$meta_info->meta_key', '$meta_value' UNION ALL ";
471
- } else {
472
- $sql_query .= "SELECT $new_id, '$meta_info->meta_key', '$meta_value'";
473
  }
474
  }
475
-
476
  $wpdb->query($sql_query);
477
  }
478
  }
@@ -482,16 +412,20 @@ function duplicate_post_copy_post_meta_info($id, $new_id) {
482
  */
483
  function duplicate_post_create_duplicate_from_post($post) {
484
  global $wpdb;
485
- $new_post_type = 'post';
486
  $new_post_author = duplicate_post_get_current_user();
487
- $new_post_date = current_time('mysql');
488
  $new_post_date_gmt = get_gmt_from_date($new_post_date);
 
 
489
 
 
490
  $post_content = str_replace("'", "''", $post->post_content);
491
  $post_content_filtered = str_replace("'", "''", $post->post_content_filtered);
492
  $post_excerpt = str_replace("'", "''", $post->post_excerpt);
493
- $post_title = str_replace("'", "''", $post->post_title);
494
  $post_status = str_replace("'", "''", $post->post_status);
 
495
  $comment_status = str_replace("'", "''", $post->comment_status);
496
  $ping_status = str_replace("'", "''", $post->ping_status);
497
 
@@ -501,11 +435,11 @@ function duplicate_post_create_duplicate_from_post($post) {
501
  (post_author, post_date, post_date_gmt, post_content, post_content_filtered, post_title, post_excerpt, post_status, post_type, comment_status, ping_status, post_password, to_ping, pinged, post_modified, post_modified_gmt, post_parent, menu_order, post_mime_type)
502
  VALUES
503
  ('$new_post_author->ID', '$new_post_date', '$new_post_date_gmt', '$post_content', '$post_content_filtered', '$post_title', '$post_excerpt', 'draft', '$new_post_type', '$comment_status', '$ping_status', '$post->post_password', '$post->to_ping', '$post->pinged', '$new_post_date', '$new_post_date_gmt', '$post->post_parent', '$post->menu_order', '$post->post_mime_type')");
504
-
505
  $new_post_id = $wpdb->insert_id;
506
 
507
- // Copy the categories
508
- duplicate_post_copy_post_categories($post->ID, $new_post_id);
509
 
510
  // Copy the meta information
511
  duplicate_post_copy_post_meta_info($post->ID, $new_post_id);
@@ -518,14 +452,18 @@ function duplicate_post_create_duplicate_from_post($post) {
518
  */
519
  function duplicate_post_create_duplicate_from_page($post) {
520
  global $wpdb;
521
- $new_post_type = 'page';
522
- $new_post_date = current_time('mysql');
 
523
  $new_post_date_gmt = get_gmt_from_date($new_post_date);
 
 
524
 
 
525
  $post_content = str_replace("'", "''", $post->post_content);
526
  $post_content_filtered = str_replace("'", "''", $post->post_content_filtered);
527
  $post_excerpt = str_replace("'", "''", $post->post_excerpt);
528
- $post_title = str_replace("'", "''", $post->post_title);
529
  $post_status = str_replace("'", "''", $post->post_status);
530
  $post_name = str_replace("'", "''", $post->post_name);
531
  $comment_status = str_replace("'", "''", $post->comment_status);
@@ -536,13 +474,116 @@ function duplicate_post_create_duplicate_from_page($post) {
536
  "INSERT INTO $wpdb->posts
537
  (post_author, post_date, post_date_gmt, post_content, post_content_filtered, post_title, post_excerpt, post_status, post_type, comment_status, ping_status, post_password, post_name, to_ping, pinged, post_modified, post_modified_gmt, post_parent, menu_order, post_mime_type)
538
  VALUES
539
- ('$post->post_author', '$new_post_date', '$new_post_date_gmt', '$post_content', '$post_content_filtered', '$post_title', '$post_excerpt', 'draft', '$new_post_type', '$comment_status', '$ping_status', '$post->post_password', '$post_name', '$post->to_ping', '$post->pinged', '$new_post_date', '$new_post_date_gmt', '$post->post_parent', '$post->menu_order', '$post->post_mime_type')");
540
-
541
  $new_page_id = $wpdb->insert_id;
542
 
 
 
 
543
  // Copy the meta information
544
  duplicate_post_copy_post_meta_info($post->ID, $new_page_id);
545
 
546
  return $new_page_id;
547
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
548
  ?>
3
  Plugin Name: Duplicate Post
4
  Plugin URI: http://www.lopo.it/duplicate-post-plugin/
5
  Description: Creates a copy of a post.
6
+ Version: 1.1
7
  Author: Enrico Battocchi
8
  Author URI: http://www.lopo.it
9
  Text Domain: duplicate-post
10
  */
11
 
12
+ /* Copyright 2009-2010 Enrico Battocchi (email : enrico.battocchi@gmail.com)
13
 
14
  This program is free software; you can redistribute it and/or modify
15
  it under the terms of the GNU General Public License as published by
63
  * Same as above, for pages
64
  */
65
  function duplicate_post_save_as_new_page(){
66
+ if (! ( isset( $_GET['post']) || isset( $_POST['post']) || ( isset($_REQUEST['action']) && 'duplicate_post_save_as_new_page' == $_REQUEST['action'] ) ) ) {
67
  wp_die(__('No page to duplicate has been supplied!', DUPLICATE_POST_I18N_DOMAIN));
68
  }
69
 
80
  do_action( 'dp_duplicate_page', $new_id, $post );
81
 
82
  // Redirect to the edit screen for the new draft page
83
+ wp_redirect( admin_url( 'post.php?action=edit&post=' . $new_id ) );
84
  exit;
85
  } else {
86
  wp_die(__('Post creation failed, could not find original post:', DUPLICATE_POST_I18N_DOMAIN) . ' ' . $id);
88
  }
89
 
90
  // Version of the plugin
91
+ define('DUPLICATE_POST_CURRENT_VERSION', '1.1' );
92
  define('DUPLICATE_POST_COLUMN', 'control_duplicate_post');
 
 
 
93
 
94
  // i18n plugin domain
95
  define('DUPLICATE_POST_I18N_DOMAIN', 'duplicate-post');
110
 
111
  if ( $installed_version==duplicate_post_get_current_version() ) {
112
  // do nothing
113
+ } else {
114
+ // delete old, obsolete options
115
+ delete_option('duplicate_post_admin_user_level');
116
+ delete_option('duplicate_post_create_user_level');
117
+ delete_option('duplicate_post_view_user_level');
118
  // Add all options, nothing already installed
119
  add_option(
120
+ 'duplicate_post_copy_user_level',
 
 
 
 
121
  '5',
122
+ 'Default user level to copy posts' );
 
 
 
 
123
  }
124
  // Update version number
125
  update_option( 'duplicate_post_version', duplicate_post_get_current_version() );
148
  * WP version < 2.8: add a custom column
149
  */
150
  function duplicate_post_add_duplicate_post_column($columns) {
151
+ if (duplicate_post_is_current_user_allowed_to_copy()) {
152
  $columns[DUPLICATE_POST_COLUMN] = '';
153
  }
154
  return $columns;
158
  * WP version < 2.8: add link to custom column for posts
159
  */
160
  function duplicate_post_make_duplicate_link($column_name, $id) {
161
+ if (duplicate_post_is_current_user_allowed_to_copy()) {
162
  if ($column_name == DUPLICATE_POST_COLUMN) {
163
  echo "<a href='admin.php?action=duplicate_post_save_as_new_post&amp;post=" . $id
164
  . "' title='" . __("Make a duplicate from this post", DUPLICATE_POST_I18N_DOMAIN)
172
  */
173
  // Added by WarmStal
174
  function duplicate_page_make_duplicate_link($column_name, $id) {
175
+ if (duplicate_post_is_current_user_allowed_to_copy()) {
176
  if ($column_name == DUPLICATE_POST_COLUMN) {
177
  echo "<a href='admin.php?action=duplicate_post_save_as_new_page&amp;post=" . $id
178
  . "' title='" . __("Make a duplicate from this page", DUPLICATE_POST_I18N_DOMAIN)
191
  * Add the link to action list for post_row_actions
192
  */
193
  function duplicate_post_make_duplicate_link_row($actions, $post) {
194
+ if (duplicate_post_is_current_user_allowed_to_copy()) {
195
  $actions['duplicate'] = '<a href="admin.php?action=duplicate_post_save_as_new_post&amp;post=' . $post->ID . '" title="' . __("Make a duplicate from this post", DUPLICATE_POST_I18N_DOMAIN)
196
  . '" rel="permalink">' . __("Duplicate", DUPLICATE_POST_I18N_DOMAIN) . '</a>';
197
  }
202
  * Add the link to action list for page_row_actions
203
  */
204
  function duplicate_page_make_duplicate_link_row($actions, $page) {
205
+ if (duplicate_post_is_current_user_allowed_to_copy()) {
206
  $actions['duplicate'] = '<a href="admin.php?action=duplicate_post_save_as_new_page&amp;post=' . $page->ID . '" title="' . __("Make a duplicate from this page", DUPLICATE_POST_I18N_DOMAIN)
207
  . '" rel="permalink">' . __("Duplicate", DUPLICATE_POST_I18N_DOMAIN) . '</a>';
208
  }
215
  add_action( 'post_submitbox_start', 'duplicate_post_add_duplicate_post_button' );
216
 
217
  function duplicate_post_add_duplicate_post_button() {
218
+ if ( isset( $_GET['post'] ) && duplicate_post_is_current_user_allowed_to_copy()) {
219
  $act = "admin.php?action=duplicate_post_save_as_new_post";
220
  global $post;
221
  if ($post->post_type == "page") $act = "admin.php?action=duplicate_post_save_as_new_page";
228
  }
229
  }
230
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
231
  /**
232
  * Wrapper for the option 'duplicate_post_create_user_level'
233
  */
234
+ function duplicate_post_get_copy_user_level() {
235
+ return get_option( 'duplicate_post_copy_user_level' );
236
  }
237
 
238
  /**
239
  * Wrapper for the option 'duplicate_post_create_user_level'
240
  */
241
+ function duplicate_post_set_copy_user_level($new_level) {
242
+ return update_option( 'duplicate_post_copy_user_level', $new_level );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  }
244
 
245
  /**
256
  return DUPLICATE_POST_CURRENT_VERSION;
257
  }
258
 
 
 
 
 
 
 
 
259
  /**
260
  * Test if the user is allowed to create templates
261
  */
262
+ function duplicate_post_is_current_user_allowed_to_copy() {
263
+ return current_user_can("level_" . duplicate_post_get_copy_user_level());
 
 
 
 
 
 
 
264
  }
265
 
266
  /**
369
  }
370
 
371
  /**
372
+ * Copy the taxonomies of a post to another post
373
  */
374
+ function duplicate_post_copy_post_taxonomies($id, $new_id, $post_type) {
375
  global $wpdb;
376
  if (isset($wpdb->terms)) {
377
  // WordPress 2.3
378
+ $taxonomies = get_object_taxonomies($post_type); //array("category", "post_tag");
379
  foreach ($taxonomies as $taxonomy) {
380
  $post_terms = wp_get_object_terms($id, $taxonomy);
381
  for ($i=0; $i<count($post_terms); $i++) {
382
  wp_set_object_terms($new_id, $post_terms[$i]->slug, $taxonomy, true);
383
  }
384
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
385
  }
386
  }
387
 
394
 
395
  if (count($post_meta_infos)!=0) {
396
  $sql_query = "INSERT INTO $wpdb->postmeta (post_id, meta_key, meta_value) ";
397
+ $meta_no_copy = explode(",",get_option('duplicate_post_blacklist'));
398
+ foreach ($post_meta_infos as $meta_info) {
399
+ $meta_key = $meta_info->meta_key;
 
400
  $meta_value = addslashes($meta_info->meta_value);
401
+ if (!in_array($meta_key,$meta_no_copy)) {
402
+ $sql_query_sel[]= "SELECT $new_id, '$meta_key', '$meta_value'";
 
 
 
403
  }
404
  }
405
+ $sql_query.= implode(" UNION ALL ", $sql_query_sel);
406
  $wpdb->query($sql_query);
407
  }
408
  }
412
  */
413
  function duplicate_post_create_duplicate_from_post($post) {
414
  global $wpdb;
415
+ //$new_post_type = 'post';
416
  $new_post_author = duplicate_post_get_current_user();
417
+ $new_post_date = (get_option('duplicate_post_copydate') == 1)? $post->post_date : current_time('mysql');
418
  $new_post_date_gmt = get_gmt_from_date($new_post_date);
419
+ $prefix = get_option('duplicate_post_title_prefix');
420
+ if (!empty($prefix)) $prefix.= " ";
421
 
422
+ $new_post_type = $post->post_type;
423
  $post_content = str_replace("'", "''", $post->post_content);
424
  $post_content_filtered = str_replace("'", "''", $post->post_content_filtered);
425
  $post_excerpt = str_replace("'", "''", $post->post_excerpt);
426
+ $post_title = $prefix.str_replace("'", "''", $post->post_title);
427
  $post_status = str_replace("'", "''", $post->post_status);
428
+ $post_name = str_replace("'", "''", $post->post_name);
429
  $comment_status = str_replace("'", "''", $post->comment_status);
430
  $ping_status = str_replace("'", "''", $post->ping_status);
431
 
435
  (post_author, post_date, post_date_gmt, post_content, post_content_filtered, post_title, post_excerpt, post_status, post_type, comment_status, ping_status, post_password, to_ping, pinged, post_modified, post_modified_gmt, post_parent, menu_order, post_mime_type)
436
  VALUES
437
  ('$new_post_author->ID', '$new_post_date', '$new_post_date_gmt', '$post_content', '$post_content_filtered', '$post_title', '$post_excerpt', 'draft', '$new_post_type', '$comment_status', '$ping_status', '$post->post_password', '$post->to_ping', '$post->pinged', '$new_post_date', '$new_post_date_gmt', '$post->post_parent', '$post->menu_order', '$post->post_mime_type')");
438
+
439
  $new_post_id = $wpdb->insert_id;
440
 
441
+ // Copy the taxonomies
442
+ duplicate_post_copy_post_taxonomies($post->ID, $new_post_id, $post->post_type);
443
 
444
  // Copy the meta information
445
  duplicate_post_copy_post_meta_info($post->ID, $new_post_id);
452
  */
453
  function duplicate_post_create_duplicate_from_page($post) {
454
  global $wpdb;
455
+ //$new_post_type = 'page';
456
+ $new_post_author = duplicate_post_get_current_user();
457
+ $new_post_date = (get_option('duplicate_post_copydate') == 1)? $post->post_date : current_time('mysql');
458
  $new_post_date_gmt = get_gmt_from_date($new_post_date);
459
+ $prefix = get_option('duplicate_post_title_prefix');
460
+ if (!empty($prefix)) $prefix.= " ";
461
 
462
+ $new_post_type = $post->post_type;
463
  $post_content = str_replace("'", "''", $post->post_content);
464
  $post_content_filtered = str_replace("'", "''", $post->post_content_filtered);
465
  $post_excerpt = str_replace("'", "''", $post->post_excerpt);
466
+ $post_title = $prefix.str_replace("'", "''", $post->post_title);
467
  $post_status = str_replace("'", "''", $post->post_status);
468
  $post_name = str_replace("'", "''", $post->post_name);
469
  $comment_status = str_replace("'", "''", $post->comment_status);
474
  "INSERT INTO $wpdb->posts
475
  (post_author, post_date, post_date_gmt, post_content, post_content_filtered, post_title, post_excerpt, post_status, post_type, comment_status, ping_status, post_password, post_name, to_ping, pinged, post_modified, post_modified_gmt, post_parent, menu_order, post_mime_type)
476
  VALUES
477
+ ('$new_post_author->ID', '$new_post_date', '$new_post_date_gmt', '$post_content', '$post_content_filtered', '$post_title', '$post_excerpt', 'draft', '$new_post_type', '$comment_status', '$ping_status', '$post->post_password', '$post_name', '$post->to_ping', '$post->pinged', '$new_post_date', '$new_post_date_gmt', '$post->post_parent', '$post->menu_order', '$post->post_mime_type')");
478
+
479
  $new_page_id = $wpdb->insert_id;
480
 
481
+ // Copy the taxonomies
482
+ duplicate_post_copy_post_taxonomies($post->ID, $new_page_id, $post->post_type);
483
+
484
  // Copy the meta information
485
  duplicate_post_copy_post_meta_info($post->ID, $new_page_id);
486
 
487
  return $new_page_id;
488
  }
489
+
490
+
491
+ /**
492
+ * Add an option page where you can specify which meta fields you don't want to copy
493
+ */
494
+ if ( is_admin() ){ // admin actions
495
+ add_action('admin_menu', 'duplicate_post_menu');
496
+ add_action( 'admin_init', 'register_mysettings');
497
+ }
498
+
499
+ function register_mysettings() { // whitelist options
500
+ register_setting( 'duplicate_post_group', 'duplicate_post_copydate');
501
+ register_setting( 'duplicate_post_group', 'duplicate_post_blacklist');
502
+ register_setting( 'duplicate_post_group', 'duplicate_post_title_prefix');
503
+ register_setting( 'duplicate_post_group', 'duplicate_post_copy_user_level');
504
+ }
505
+
506
+
507
+ function duplicate_post_menu() {
508
+ add_options_page(__("Duplicate Post Options", DUPLICATE_POST_I18N_DOMAIN), __("Duplicate Post", DUPLICATE_POST_I18N_DOMAIN), 'administrator', 'duplicatepost', 'duplicate_post_options');
509
+ }
510
+
511
+ function duplicate_post_options() {
512
+ ?>
513
+ <div class="wrap">
514
+ <h2><?php _e("Duplicate Post", DUPLICATE_POST_I18N_DOMAIN); ?></h2>
515
+
516
+ <form method="post" action="options.php"><?php settings_fields('duplicate_post_group'); ?>
517
+
518
+ <table class="form-table">
519
+
520
+ <tr valign="top">
521
+ <th scope="row"><?php _e("Copy post/page date also", DUPLICATE_POST_I18N_DOMAIN); ?></th>
522
+ <td><input type="checkbox" name="duplicate_post_copydate" value="1" <?php if(get_option('duplicate_post_copydate') == 1) echo 'checked="checked"'; ?>"/>
523
+ <span class="description"><?php _e("Normally, the new draft has publication date set to current time: check the box to copy the original post/page date", DUPLICATE_POST_I18N_DOMAIN); ?></span>
524
+ </td>
525
+ </tr>
526
+ <tr valign="top">
527
+ <th scope="row"><?php _e("Do not copy these fields", DUPLICATE_POST_I18N_DOMAIN); ?></th>
528
+ <td><input type="text" name="duplicate_post_blacklist"
529
+ value="<?php echo get_option('duplicate_post_blacklist'); ?>" /> <span
530
+ class="description"><?php _e("Comma-separated list of meta fields that must not be copied when cloning a post/page", DUPLICATE_POST_I18N_DOMAIN); ?></span>
531
+ </td>
532
+ </tr>
533
+ <tr valign="top">
534
+ <th scope="row"><?php _e("Title prefix", DUPLICATE_POST_I18N_DOMAIN); ?></th>
535
+ <td><input type="text" name="duplicate_post_title_prefix"
536
+ value="<?php echo get_option('duplicate_post_title_prefix'); ?>" /> <span
537
+ class="description"><?php _e("Prefix to be added before the original title when cloning a post/page, e.g. \"Copy of\" (blank for no prefix)", DUPLICATE_POST_I18N_DOMAIN); ?></span>
538
+ </td>
539
+ </tr>
540
+ <tr valign="top">
541
+ <th scope="row"><?php _e("Minimum level to copy posts", DUPLICATE_POST_I18N_DOMAIN); ?></th>
542
+ <td><select name="duplicate_post_copy_user_level">
543
+ <?php global $wp_version;
544
+ if (strncmp($wp_version, "2.7",3) == 0 ){ ?>
545
+ <option value="1"
546
+ <?php if(get_option('duplicate_post_copy_user_level') == 1) echo 'selected="selected"'?>><?php echo _c("Contributor|User role", "default")?></option>
547
+ <option value="2"
548
+ <?php if(get_option('duplicate_post_copy_user_level') == 2) echo 'selected="selected"'?>><?php echo _c("Author|User role", "default")?></option>
549
+ <option value="5"
550
+ <?php if(get_option('duplicate_post_copy_user_level') == 5) echo 'selected="selected"'?>><?php echo _c("Editor|User role", "default")?></option>
551
+ <option value="8"
552
+ <?php if(get_option('duplicate_post_copy_user_level') == 8) echo 'selected="selected"'?>><?php echo _c("Administrator|User role", "default")?></option>
553
+
554
+ <?php } else { ?>
555
+ <option value="1"
556
+ <?php if(get_option('duplicate_post_copy_user_level') == 1) echo 'selected="selected"'?>><?php echo _x("Contributor", "User role", "default")?></option>
557
+ <option value="2"
558
+ <?php if(get_option('duplicate_post_copy_user_level') == 2) echo 'selected="selected"'?>><?php echo _x("Author", "User role", "default")?></option>
559
+ <option value="5"
560
+ <?php if(get_option('duplicate_post_copy_user_level') == 5) echo 'selected="selected"'?>><?php echo _x("Editor", "User role", "default")?></option>
561
+ <option value="8"
562
+ <?php if(get_option('duplicate_post_copy_user_level') == 8) echo 'selected="selected"'?>><?php echo _x("Administrator", "User role", "default")?></option>
563
+
564
+ <?php };?>
565
+ </select> <span class="description"><?php _e("Warning: users will be able to copy all posts, even those of higher level users", DUPLICATE_POST_I18N_DOMAIN); ?></span>
566
+ </td>
567
+ </tr>
568
+
569
+ </table>
570
+
571
+ <p class="submit"><input type="submit" class="button-primary"
572
+ value="<?php _e('Save Changes', DUPLICATE_POST_I18N_DOMAIN) ?>" /></p>
573
+
574
+ </form>
575
+ </div>
576
+ <?php
577
+ }
578
+
579
+ //Add some links on the plugin page
580
+ add_filter('plugin_row_meta', 'duplicate_post_add_plugin_links', 10, 2);
581
+
582
+ function duplicate_post_add_plugin_links($links, $file) {
583
+ if ( $file == plugin_basename(__FILE__) ) {
584
+ $links[] = '<a href="http://www.lopo.it/duplicate-post-plugin">' . __('Donate', DUPLICATE_POST_I18N_DOMAIN) . '</a>';
585
+ $links[] = '<a href="http://www.lopo.it/duplicate-post-plugin">' . __('Translate', DUPLICATE_POST_I18N_DOMAIN) . '</a>';
586
+ }
587
+ return $links;
588
+ }
589
  ?>
languages/duplicate-post-ca.mo ADDED
Binary file
languages/duplicate-post-ca.po ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Catalan translation for duplicate-post
2
+ # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
3
+ # This file is distributed under the same license as the duplicate-post package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: duplicate-post\n"
9
+ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10
+ "POT-Creation-Date: 2010-05-21 10:01+0000\n"
11
+ "PO-Revision-Date: 2010-05-21 18:33+0000\n"
12
+ "Last-Translator: el_libre - http://www.catmidia.cat "
13
+ "XDDDDDDDDDDDDDDDDDDDDDDDDDDD <el.libre@gmail.com>\n"
14
+ "Language-Team: Catalan <ca@li.org>\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
19
+ "X-Generator: Launchpad (build Unknown)\n"
20
+
21
+ #: duplicate-post.php:39
22
+ msgid "No post to duplicate has been supplied!"
23
+ msgstr ""
24
+
25
+ #: duplicate-post.php:58 duplicate-post.php:86
26
+ msgid "Post creation failed, could not find original post:"
27
+ msgstr ""
28
+
29
+ #: duplicate-post.php:67
30
+ msgid "No page to duplicate has been supplied!"
31
+ msgstr ""
32
+
33
+ #: duplicate-post.php:164 duplicate-post.php:195
34
+ msgid "Make a duplicate from this post"
35
+ msgstr ""
36
+
37
+ #: duplicate-post.php:165 duplicate-post.php:179 duplicate-post.php:196
38
+ #: duplicate-post.php:207
39
+ msgid "Duplicate"
40
+ msgstr "Duplica"
41
+
42
+ #: duplicate-post.php:178 duplicate-post.php:206
43
+ msgid "Make a duplicate from this page"
44
+ msgstr ""
45
+
46
+ #: duplicate-post.php:225
47
+ msgid "Copy to a new draft"
48
+ msgstr ""
49
+
50
+ #: duplicate-post.php:519
51
+ msgid "Duplicate Post Options"
52
+ msgstr ""
53
+
54
+ #. #-#-#-#-# plugin.pot (Duplicate Post 1.1) #-#-#-#-#
55
+ #. Plugin Name of the plugin/theme
56
+ #: duplicate-post.php:519 duplicate-post.php:525
57
+ msgid "Duplicate Post"
58
+ msgstr ""
59
+
60
+ #: duplicate-post.php:532
61
+ msgid "Copy post/page date also"
62
+ msgstr ""
63
+
64
+ #: duplicate-post.php:534
65
+ msgid ""
66
+ "Normally, the new draft has publication date set to current time: check the "
67
+ "box to copy the original post/page date"
68
+ msgstr ""
69
+
70
+ #: duplicate-post.php:538
71
+ msgid "Do not copy these fields"
72
+ msgstr ""
73
+
74
+ #: duplicate-post.php:541
75
+ msgid ""
76
+ "Comma-separated list of meta fields that must not be copied when cloning a "
77
+ "post/page"
78
+ msgstr ""
79
+
80
+ #: duplicate-post.php:545
81
+ msgid "Title prefix"
82
+ msgstr ""
83
+
84
+ #: duplicate-post.php:548
85
+ msgid ""
86
+ "Prefix to be added before the original title when cloning a post/page, e.g. "
87
+ "\"Copy of\" (blank for no prefix)"
88
+ msgstr ""
89
+
90
+ #: duplicate-post.php:552
91
+ msgid "Minimum level to copy posts"
92
+ msgstr ""
93
+
94
+ #: duplicate-post.php:576
95
+ msgid ""
96
+ "Warning: users will be able to copy all posts, even those of higher level "
97
+ "users"
98
+ msgstr ""
99
+
100
+ #: duplicate-post.php:583
101
+ msgid "Save Changes"
102
+ msgstr "Desa els canvis"
103
+
104
+ #: duplicate-post.php:595
105
+ msgid "Donate"
106
+ msgstr "Dóna"
107
+
108
+ #: duplicate-post.php:596
109
+ msgid "Translate"
110
+ msgstr "Tradueix"
111
+
112
+ #. Plugin URI of the plugin/theme
113
+ msgid "http://www.lopo.it/duplicate-post-plugin/"
114
+ msgstr "http://www.lopo.it/duplicate-post-plugin/"
115
+
116
+ #. Description of the plugin/theme
117
+ msgid "Creates a copy of a post."
118
+ msgstr ""
119
+
120
+ #. Author of the plugin/theme
121
+ msgid "Enrico Battocchi"
122
+ msgstr "Enrico Battocchi"
123
+
124
+ #. Author URI of the plugin/theme
125
+ msgid "http://www.lopo.it"
126
+ msgstr "http://www.lopo.it"
languages/duplicate-post-de_DE.mo ADDED
Binary file
languages/duplicate-post-de_DE.po ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # German translation for duplicate-post
2
+ # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
3
+ # This file is distributed under the same license as the duplicate-post package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: duplicate-post\n"
9
+ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10
+ "POT-Creation-Date: 2010-05-21 10:01+0000\n"
11
+ "PO-Revision-Date: 2010-05-22 09:33+0000\n"
12
+ "Last-Translator: Enrico Battocchi <Unknown>\n"
13
+ "Language-Team: German <de@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
18
+ "X-Generator: Launchpad (build Unknown)\n"
19
+
20
+ #: duplicate-post.php:39
21
+ msgid "No post to duplicate has been supplied!"
22
+ msgstr "Es wurde kein Artikel zum Duplizieren gefunden!"
23
+
24
+ #: duplicate-post.php:58 duplicate-post.php:86
25
+ msgid "Post creation failed, could not find original post:"
26
+ msgstr "Duplizieren fehlgeschlagen! Original Seite/Artikel nicht gefunden:"
27
+
28
+ #: duplicate-post.php:67
29
+ msgid "No page to duplicate has been supplied!"
30
+ msgstr "Es wurde keine Seite zum Duplizieren gefunden!"
31
+
32
+ #: duplicate-post.php:164 duplicate-post.php:195
33
+ msgid "Make a duplicate from this post"
34
+ msgstr "Duplikat von diesem Artikel erstellen."
35
+
36
+ #: duplicate-post.php:165 duplicate-post.php:179 duplicate-post.php:196
37
+ #: duplicate-post.php:207
38
+ msgid "Duplicate"
39
+ msgstr "Duplizieren"
40
+
41
+ #: duplicate-post.php:178 duplicate-post.php:206
42
+ msgid "Make a duplicate from this page"
43
+ msgstr "Duplikat von dieser Seite erstellen"
44
+
45
+ #: duplicate-post.php:225
46
+ msgid "Copy to a new draft"
47
+ msgstr "Seite/Artikel als Entwurf duplizieren"
48
+
49
+ #: duplicate-post.php:519
50
+ msgid "Duplicate Post Options"
51
+ msgstr "Duplicate Post Optionen"
52
+
53
+ #. #-#-#-#-# plugin.pot (Duplicate Post 1.1) #-#-#-#-#
54
+ #. Plugin Name of the plugin/theme
55
+ #: duplicate-post.php:519 duplicate-post.php:525
56
+ msgid "Duplicate Post"
57
+ msgstr "Duplicate Post"
58
+
59
+ #: duplicate-post.php:532
60
+ msgid "Copy post/page date also"
61
+ msgstr "Datum aus Artikel/Seite übernehmen"
62
+
63
+ #: duplicate-post.php:534
64
+ msgid ""
65
+ "Normally, the new draft has publication date set to current time: check the "
66
+ "box to copy the original post/page date"
67
+ msgstr ""
68
+ "Normalerweise wird das Datum des neuen Entwurfs automatisch auf die jeweils "
69
+ "aktuelle Zeit gesetzt. Diese Option setzt das Datum auf die Zeit des "
70
+ "Originals."
71
+
72
+ #: duplicate-post.php:538
73
+ msgid "Do not copy these fields"
74
+ msgstr "Diese Felder nicht kopieren"
75
+
76
+ #: duplicate-post.php:541
77
+ msgid ""
78
+ "Comma-separated list of meta fields that must not be copied when cloning a "
79
+ "post/page"
80
+ msgstr ""
81
+ "Komma-separierte Liste aller benutzerdefinierten Felder, die nicht in das "
82
+ "Duplikat übernommen werden sollen."
83
+
84
+ #: duplicate-post.php:545
85
+ msgid "Title prefix"
86
+ msgstr "Titel Prefix"
87
+
88
+ #: duplicate-post.php:548
89
+ msgid ""
90
+ "Prefix to be added before the original title when cloning a post/page, e.g. "
91
+ "\"Copy of\" (blank for no prefix)"
92
+ msgstr ""
93
+ "Optionaler Prefix zur Verwendung vor dem Titel des Originals - z.B. 'Kopie "
94
+ "von'."
95
+
96
+ #: duplicate-post.php:552
97
+ msgid "Minimum level to copy posts"
98
+ msgstr "Minimum Benutzerlevel zur Nutzung von Duplicate Post"
99
+
100
+ #: duplicate-post.php:576
101
+ msgid ""
102
+ "Warning: users will be able to copy all posts, even those of higher level "
103
+ "users"
104
+ msgstr ""
105
+ "Achtung: Der Benutzer wird Seiten und Artikel duplizieren können, auch "
106
+ "solche von Benutzern mit höherem Benutzerlevel."
107
+
108
+ #: duplicate-post.php:583
109
+ msgid "Save Changes"
110
+ msgstr "Änderungen speichern"
111
+
112
+ #: duplicate-post.php:595
113
+ msgid "Donate"
114
+ msgstr "Spenden"
115
+
116
+ #: duplicate-post.php:596
117
+ msgid "Translate"
118
+ msgstr "Übersetzen"
119
+
120
+ #. Plugin URI of the plugin/theme
121
+ msgid "http://www.lopo.it/duplicate-post-plugin/"
122
+ msgstr "http://www.lopo.it/duplicate-post-plugin/"
123
+
124
+ #. Description of the plugin/theme
125
+ msgid "Creates a copy of a post."
126
+ msgstr "Erstellt eine Kopie dieses Artikels."
127
+
128
+ #. Author of the plugin/theme
129
+ msgid "Enrico Battocchi"
130
+ msgstr "Enrico Battocchi"
131
+
132
+ #. Author URI of the plugin/theme
133
+ msgid "http://www.lopo.it"
134
+ msgstr "http://www.lopo.it"
languages/duplicate-post-es.mo DELETED
Binary file
languages/duplicate-post-es.po DELETED
@@ -1,67 +0,0 @@
1
- # Duplicate Post plugin for WordPress
2
- # Copyright (C) 2009 Enrico Battocchi
3
- # This file is distributed under the same license as the Duplicate Post package.
4
- # Enrico Battocchi <enrico.battocchi@gmail.com>, 2009.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: Duplicate Post 1.0\n"
9
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/duplicate-post\n"
10
- "POT-Creation-Date: 2009-12-02 23:12+0000\n"
11
- "PO-Revision-Date: 2009-12-10 01:14+0100\n"
12
- "Last-Translator: Enrico Battocchi <enrico.battocchi@gmail.com>\n"
13
- "Language-Team: Enrico Battocchi <enrico.battocchi@gmail.com>\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=utf-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-Language: Spanish\n"
18
-
19
- #: duplicate-post.php:39
20
- msgid "No post to duplicate has been supplied!"
21
- msgstr "No se facilitó ninguna entrada a copiar"
22
-
23
- #: duplicate-post.php:58 duplicate-post.php:86
24
- msgid "Post creation failed, could not find original post:"
25
- msgstr "Creación realizada sin éxito, no ha sido posible encontrar la entrada original:"
26
-
27
- #: duplicate-post.php:67
28
- msgid "No page to duplicate has been supplied!"
29
- msgstr "No se facilitó ninguna página a copiar"
30
-
31
- #: duplicate-post.php:171
32
- msgid "Make a duplicate from this post"
33
- msgstr "Crea una copia de esta entrada"
34
-
35
- #: duplicate-post.php:172 duplicate-post.php:186 duplicate-post.php:203
36
- #: duplicate-post.php:214
37
- msgid "Duplicate"
38
- msgstr "Copiar"
39
-
40
- #: duplicate-post.php:185
41
- msgid "Make a duplicate from this page"
42
- msgstr "Crea una copia de esta página"
43
-
44
- #: duplicate-post.php:232
45
- msgid "Copy to a new draft"
46
- msgstr "Copia en un borrador nuevo"
47
-
48
- #. Plugin Name of an extension
49
- msgid "Duplicate Post"
50
- msgstr "Duplicate Post"
51
-
52
- #. Plugin URI of an extension
53
- msgid "http://wordpress.org/extend/plugins/duplicate-post/"
54
- msgstr "http://wordpress.org/extend/plugins/duplicate-post/"
55
-
56
- #. Description of an extension
57
- msgid "Creates a copy of a post."
58
- msgstr "Para copiar las entradas."
59
-
60
- #. Author of an extension
61
- msgid "Enrico Battocchi"
62
- msgstr "Enrico Battocchi"
63
-
64
- #. Author URI of an extension
65
- msgid "http://www.lopo.it"
66
- msgstr "http://www.lopo.it"
67
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/duplicate-post-es_ES.mo ADDED
Binary file
languages/duplicate-post-es_ES.po ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Spanish translation for duplicate-post
2
+ # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
3
+ # This file is distributed under the same license as the duplicate-post package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: duplicate-post\n"
9
+ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10
+ "POT-Creation-Date: 2010-05-21 10:01+0000\n"
11
+ "PO-Revision-Date: 2010-05-21 11:02+0000\n"
12
+ "Last-Translator: Jonay <jonay.santana@gmail.com>\n"
13
+ "Language-Team: Spanish <es@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
18
+ "X-Generator: Launchpad (build Unknown)\n"
19
+
20
+ #: duplicate-post.php:39
21
+ msgid "No post to duplicate has been supplied!"
22
+ msgstr "No se facilitó ninguna entrada a copiar"
23
+
24
+ #: duplicate-post.php:58 duplicate-post.php:86
25
+ msgid "Post creation failed, could not find original post:"
26
+ msgstr ""
27
+ "Creación realizada sin éxito, no ha sido posible encontrar la entrada "
28
+ "original:"
29
+
30
+ #: duplicate-post.php:67
31
+ msgid "No page to duplicate has been supplied!"
32
+ msgstr "No se facilitó ninguna página a copiar"
33
+
34
+ #: duplicate-post.php:164 duplicate-post.php:195
35
+ msgid "Make a duplicate from this post"
36
+ msgstr "Crea una copia de esta entrada"
37
+
38
+ #: duplicate-post.php:165 duplicate-post.php:179 duplicate-post.php:196
39
+ #: duplicate-post.php:207
40
+ msgid "Duplicate"
41
+ msgstr "Duplicar"
42
+
43
+ #: duplicate-post.php:178 duplicate-post.php:206
44
+ msgid "Make a duplicate from this page"
45
+ msgstr "Crea una copia de esta página"
46
+
47
+ #: duplicate-post.php:225
48
+ msgid "Copy to a new draft"
49
+ msgstr "Copia en un borrador nuevo"
50
+
51
+ #: duplicate-post.php:519
52
+ msgid "Duplicate Post Options"
53
+ msgstr "Opciones"
54
+
55
+ #. #-#-#-#-# plugin.pot (Duplicate Post 1.1) #-#-#-#-#
56
+ #. Plugin Name of the plugin/theme
57
+ #: duplicate-post.php:519 duplicate-post.php:525
58
+ msgid "Duplicate Post"
59
+ msgstr "Duplicate Post"
60
+
61
+ #: duplicate-post.php:532
62
+ msgid "Copy post/page date also"
63
+ msgstr "Copiar también fecha del post o la página"
64
+
65
+ #: duplicate-post.php:534
66
+ msgid ""
67
+ "Normally, the new draft has publication date set to current time: check the "
68
+ "box to copy the original post/page date"
69
+ msgstr ""
70
+ "Normalmente se establece la fecha de publicación del nuevo borrador a la "
71
+ "fecha actual: compruebe la casilla para copiar la fecha original del post o "
72
+ "la página"
73
+
74
+ #: duplicate-post.php:538
75
+ msgid "Do not copy these fields"
76
+ msgstr "No copiar estos campos"
77
+
78
+ #: duplicate-post.php:541
79
+ msgid ""
80
+ "Comma-separated list of meta fields that must not be copied when cloning a "
81
+ "post/page"
82
+ msgstr ""
83
+ "Lista separada por comas de meta campos que no pueden ser copiados cuando se "
84
+ "clona una entrada/pagina."
85
+
86
+ #: duplicate-post.php:545
87
+ msgid "Title prefix"
88
+ msgstr "Prefijo del titulo"
89
+
90
+ #: duplicate-post.php:548
91
+ msgid ""
92
+ "Prefix to be added before the original title when cloning a post/page, e.g. "
93
+ "\"Copy of\" (blank for no prefix)"
94
+ msgstr ""
95
+ "Prefijo a ser agregado antes del titulo original cuando se clona una "
96
+ "entrada/pagina, ej. \"Copia de\" (en blanco para no agregar prefijo)"
97
+
98
+ #: duplicate-post.php:552
99
+ msgid "Minimum level to copy posts"
100
+ msgstr "Nivel mínimo para copiar posts"
101
+
102
+ #: duplicate-post.php:576
103
+ msgid ""
104
+ "Warning: users will be able to copy all posts, even those of higher level "
105
+ "users"
106
+ msgstr ""
107
+ "Atención: los usuarios podrán copiar todos los posts, incluso aquellos de "
108
+ "usuarios de nivel más alto"
109
+
110
+ #: duplicate-post.php:583
111
+ msgid "Save Changes"
112
+ msgstr "Guardar los cambios"
113
+
114
+ #: duplicate-post.php:595
115
+ msgid "Donate"
116
+ msgstr "Hacer una donación"
117
+
118
+ #: duplicate-post.php:596
119
+ msgid "Translate"
120
+ msgstr "Traducir"
121
+
122
+ #. Plugin URI of the plugin/theme
123
+ msgid "http://www.lopo.it/duplicate-post-plugin/"
124
+ msgstr "Copy text \t http://www.lopo.it/duplicate-post-plugin/"
125
+
126
+ #. Description of the plugin/theme
127
+ msgid "Creates a copy of a post."
128
+ msgstr "Crear una copia de las entradas."
129
+
130
+ #. Author of the plugin/theme
131
+ msgid "Enrico Battocchi"
132
+ msgstr "Enrico Battocchi"
133
+
134
+ #. Author URI of the plugin/theme
135
+ msgid "http://www.lopo.it"
136
+ msgstr "http://www.lopo.it"
languages/duplicate-post-fr_FR.mo CHANGED
Binary file
languages/duplicate-post-fr_FR.po CHANGED
@@ -1,21 +1,21 @@
1
- # Duplicate Post plugin for WordPress
2
- # Copyright (C) 2009 Enrico Battocchi
3
- # This file is distributed under the same license as the Duplicate Post package.
4
- # Enrico Battocchi <enrico.battocchi@gmail.com>, 2009.
5
  #
6
  msgid ""
7
  msgstr ""
8
- "Project-Id-Version: Duplicate Post 1.0\n"
9
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/duplicate-post\n"
10
- "POT-Creation-Date: 2009-12-02 23:12+0000\n"
11
- "PO-Revision-Date: 2009-12-03 15:30+0100\n"
12
- "Last-Translator: Enrico Battocchi <enrico.battocchi@gmail.com>\n"
13
- "Language-Team: Enrico Battocchi <enrico.battocchi@gmail.com>\n"
14
  "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=utf-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-Language: French\n"
18
- "X-Poedit-Country: FRANCE\n"
19
 
20
  #: duplicate-post.php:39
21
  msgid "No post to duplicate has been supplied!"
@@ -23,46 +23,114 @@ msgstr "Aucun article à copier!"
23
 
24
  #: duplicate-post.php:58 duplicate-post.php:86
25
  msgid "Post creation failed, could not find original post:"
26
- msgstr "La création de l&rsquo;article a échoué, il n&rsquo;était pas possible de trouver l&rsquo;article original"
 
 
27
 
28
  #: duplicate-post.php:67
29
  msgid "No page to duplicate has been supplied!"
30
  msgstr "Aucune page à copier!"
31
 
32
- #: duplicate-post.php:171
33
  msgid "Make a duplicate from this post"
34
  msgstr "Copier cet article"
35
 
36
- #: duplicate-post.php:172 duplicate-post.php:186 duplicate-post.php:203
37
- #: duplicate-post.php:214
38
  msgid "Duplicate"
39
  msgstr "Copier"
40
 
41
- #: duplicate-post.php:185
42
  msgid "Make a duplicate from this page"
43
  msgstr "Copier cette page"
44
 
45
- #: duplicate-post.php:232
46
  msgid "Copy to a new draft"
47
  msgstr "Copier dans un nouveau brouillon"
48
 
49
- #. Plugin Name of an extension
 
 
 
 
 
 
50
  msgid "Duplicate Post"
51
  msgstr "Duplicate Post"
52
 
53
- #. Plugin URI of an extension
54
- msgid "http://wordpress.org/extend/plugins/duplicate-post/"
55
- msgstr "http://wordpress.org/extend/plugins/duplicate-post/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
 
57
- #. Description of an extension
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  msgid "Creates a copy of a post."
59
  msgstr "Pour copier les articles."
60
 
61
- #. Author of an extension
62
  msgid "Enrico Battocchi"
63
  msgstr "Enrico Battocchi"
64
 
65
- #. Author URI of an extension
66
  msgid "http://www.lopo.it"
67
  msgstr "http://www.lopo.it"
68
-
1
+ # French translation for duplicate-post
2
+ # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
3
+ # This file is distributed under the same license as the duplicate-post package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
  #
6
  msgid ""
7
  msgstr ""
8
+ "Project-Id-Version: duplicate-post\n"
9
+ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10
+ "POT-Creation-Date: 2010-05-21 10:01+0000\n"
11
+ "PO-Revision-Date: 2010-06-15 12:06+0000\n"
12
+ "Last-Translator: Enrico Battocchi <Unknown>\n"
13
+ "Language-Team: French <fr@li.org>\n"
14
  "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
18
+ "X-Generator: Launchpad (build Unknown)\n"
19
 
20
  #: duplicate-post.php:39
21
  msgid "No post to duplicate has been supplied!"
23
 
24
  #: duplicate-post.php:58 duplicate-post.php:86
25
  msgid "Post creation failed, could not find original post:"
26
+ msgstr ""
27
+ "La création de l&rsquo;article a échoué, il n&rsquo;était pas possible de "
28
+ "trouver l&rsquo;article original"
29
 
30
  #: duplicate-post.php:67
31
  msgid "No page to duplicate has been supplied!"
32
  msgstr "Aucune page à copier!"
33
 
34
+ #: duplicate-post.php:164 duplicate-post.php:195
35
  msgid "Make a duplicate from this post"
36
  msgstr "Copier cet article"
37
 
38
+ #: duplicate-post.php:165 duplicate-post.php:179 duplicate-post.php:196
39
+ #: duplicate-post.php:207
40
  msgid "Duplicate"
41
  msgstr "Copier"
42
 
43
+ #: duplicate-post.php:178 duplicate-post.php:206
44
  msgid "Make a duplicate from this page"
45
  msgstr "Copier cette page"
46
 
47
+ #: duplicate-post.php:225
48
  msgid "Copy to a new draft"
49
  msgstr "Copier dans un nouveau brouillon"
50
 
51
+ #: duplicate-post.php:519
52
+ msgid "Duplicate Post Options"
53
+ msgstr "Options de Duplicate Post"
54
+
55
+ #. #-#-#-#-# plugin.pot (Duplicate Post 1.1) #-#-#-#-#
56
+ #. Plugin Name of the plugin/theme
57
+ #: duplicate-post.php:519 duplicate-post.php:525
58
  msgid "Duplicate Post"
59
  msgstr "Duplicate Post"
60
 
61
+ #: duplicate-post.php:532
62
+ msgid "Copy post/page date also"
63
+ msgstr "Copiez également la date de l'article/de la page"
64
+
65
+ #: duplicate-post.php:534
66
+ msgid ""
67
+ "Normally, the new draft has publication date set to current time: check the "
68
+ "box to copy the original post/page date"
69
+ msgstr ""
70
+ "Normalement la date de publication du nouveau brouillon est réglée sur "
71
+ "l'heure actuelle: cochez la case pour copier la date de l'article/de la page "
72
+ "d'origine"
73
+
74
+ #: duplicate-post.php:538
75
+ msgid "Do not copy these fields"
76
+ msgstr "Ne pas copier ces champs"
77
+
78
+ #: duplicate-post.php:541
79
+ msgid ""
80
+ "Comma-separated list of meta fields that must not be copied when cloning a "
81
+ "post/page"
82
+ msgstr ""
83
+ "Les champs personnalisés séparés par des virgules ne doivent pas être copiés "
84
+ "lors du clonage d'un article/d'une page"
85
+
86
+ #: duplicate-post.php:545
87
+ msgid "Title prefix"
88
+ msgstr "Prefixe du titre"
89
+
90
+ #: duplicate-post.php:548
91
+ msgid ""
92
+ "Prefix to be added before the original title when cloning a post/page, e.g. "
93
+ "\"Copy of\" (blank for no prefix)"
94
+ msgstr ""
95
+ "Préfixe à ajouter avant le titre original lors du clonage d'un article/d'une "
96
+ "page, par exemple : \"Copie de\" (Laisser vide pour ne pas mettre de préfixe)"
97
+
98
+ #: duplicate-post.php:552
99
+ msgid "Minimum level to copy posts"
100
+ msgstr "Le niveau minimum pour copier les articles"
101
+
102
+ #: duplicate-post.php:576
103
+ msgid ""
104
+ "Warning: users will be able to copy all posts, even those of higher level "
105
+ "users"
106
+ msgstr ""
107
+ "Attention: les utilisateurs pourront copier tous les articles, même ceux des "
108
+ "utilisateurs des niveaux plus élevés"
109
 
110
+ #: duplicate-post.php:583
111
+ msgid "Save Changes"
112
+ msgstr "Sauver les changements"
113
+
114
+ #: duplicate-post.php:595
115
+ msgid "Donate"
116
+ msgstr "Donation"
117
+
118
+ #: duplicate-post.php:596
119
+ msgid "Translate"
120
+ msgstr "Traduire"
121
+
122
+ #. Plugin URI of the plugin/theme
123
+ msgid "http://www.lopo.it/duplicate-post-plugin/"
124
+ msgstr "http://www.lopo.it/duplicate-post-plugin/"
125
+
126
+ #. Description of the plugin/theme
127
  msgid "Creates a copy of a post."
128
  msgstr "Pour copier les articles."
129
 
130
+ #. Author of the plugin/theme
131
  msgid "Enrico Battocchi"
132
  msgstr "Enrico Battocchi"
133
 
134
+ #. Author URI of the plugin/theme
135
  msgid "http://www.lopo.it"
136
  msgstr "http://www.lopo.it"
 
languages/duplicate-post-he_IL.mo ADDED
Binary file
languages/duplicate-post-he_IL.po ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Hebrew translation for duplicate-post
2
+ # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
3
+ # This file is distributed under the same license as the duplicate-post package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: duplicate-post\n"
9
+ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10
+ "POT-Creation-Date: 2010-05-21 10:01+0000\n"
11
+ "PO-Revision-Date: 2010-05-21 11:09+0000\n"
12
+ "Last-Translator: Yaron <sh.yaron@gmail.com>\n"
13
+ "Language-Team: Hebrew <he@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
18
+ "X-Generator: Launchpad (build Unknown)\n"
19
+
20
+ #: duplicate-post.php:39
21
+ msgid "No post to duplicate has been supplied!"
22
+ msgstr "לא סופקה הודעה לשכפול!"
23
+
24
+ #: duplicate-post.php:58 duplicate-post.php:86
25
+ msgid "Post creation failed, could not find original post:"
26
+ msgstr "יצירת ההודעה נכשלה, לא ניתן למצוא את ההודעה המקורית:"
27
+
28
+ #: duplicate-post.php:67
29
+ msgid "No page to duplicate has been supplied!"
30
+ msgstr "לא סופק דף לשכפול!"
31
+
32
+ #: duplicate-post.php:164 duplicate-post.php:195
33
+ msgid "Make a duplicate from this post"
34
+ msgstr "שכפול הודעה זו"
35
+
36
+ #: duplicate-post.php:165 duplicate-post.php:179 duplicate-post.php:196
37
+ #: duplicate-post.php:207
38
+ msgid "Duplicate"
39
+ msgstr "שכפול"
40
+
41
+ #: duplicate-post.php:178 duplicate-post.php:206
42
+ msgid "Make a duplicate from this page"
43
+ msgstr "שכפול דף זה"
44
+
45
+ #: duplicate-post.php:225
46
+ msgid "Copy to a new draft"
47
+ msgstr "העתקה לטיוטה חדשה"
48
+
49
+ #: duplicate-post.php:519
50
+ msgid "Duplicate Post Options"
51
+ msgstr "אפשרויות שכפול הודעות"
52
+
53
+ #. #-#-#-#-# plugin.pot (Duplicate Post 1.1) #-#-#-#-#
54
+ #. Plugin Name of the plugin/theme
55
+ #: duplicate-post.php:519 duplicate-post.php:525
56
+ msgid "Duplicate Post"
57
+ msgstr "שכפול הודעות"
58
+
59
+ #: duplicate-post.php:532
60
+ msgid "Copy post/page date also"
61
+ msgstr "העתקת תאריך הדף/הודעה בנוסף"
62
+
63
+ #: duplicate-post.php:534
64
+ msgid ""
65
+ "Normally, the new draft has publication date set to current time: check the "
66
+ "box to copy the original post/page date"
67
+ msgstr ""
68
+ "על פי רב, לטיוטה החדשה יופיע הזמן הנוכחי בהתאם לתאריך הפרסום: יש לסמן את "
69
+ "התיבה כדי להעתיק את תאריך הדף/הודעה המקורי"
70
+
71
+ #: duplicate-post.php:538
72
+ msgid "Do not copy these fields"
73
+ msgstr "אין להעתיק שדות אלו"
74
+
75
+ #: duplicate-post.php:541
76
+ msgid ""
77
+ "Comma-separated list of meta fields that must not be copied when cloning a "
78
+ "post/page"
79
+ msgstr ""
80
+ "רשימת שדות תיאור המופרדים בפסיקים שאותם אין להעתיק בעת שכפול של דף/הודעה"
81
+
82
+ #: duplicate-post.php:545
83
+ msgid "Title prefix"
84
+ msgstr "קידומת הכותרת"
85
+
86
+ #: duplicate-post.php:548
87
+ msgid ""
88
+ "Prefix to be added before the original title when cloning a post/page, e.g. "
89
+ "\"Copy of\" (blank for no prefix)"
90
+ msgstr ""
91
+ "קידומת שתתווסף לפני הכותרת המקורית בעת שכפול דף/הודעה, לדוגמה \"עותק של\" "
92
+ "(ריק - ללא קידומת)"
93
+
94
+ #: duplicate-post.php:552
95
+ msgid "Minimum level to copy posts"
96
+ msgstr "הרמה הנמוכה ביותר להעתקת הודעות"
97
+
98
+ #: duplicate-post.php:576
99
+ msgid ""
100
+ "Warning: users will be able to copy all posts, even those of higher level "
101
+ "users"
102
+ msgstr ""
103
+ "אזהרה: משתמשים יוכלו להעתיק את כל ההודעות, אפילו את אלו של משתמשים ברמה "
104
+ "גבוהה מהם"
105
+
106
+ #: duplicate-post.php:583
107
+ msgid "Save Changes"
108
+ msgstr "שמירת השינויים"
109
+
110
+ #: duplicate-post.php:595
111
+ msgid "Donate"
112
+ msgstr "תרומה"
113
+
114
+ #: duplicate-post.php:596
115
+ msgid "Translate"
116
+ msgstr "תרגום"
117
+
118
+ #. Plugin URI of the plugin/theme
119
+ msgid "http://www.lopo.it/duplicate-post-plugin/"
120
+ msgstr "http://www.lopo.it/duplicate-post-plugin/"
121
+
122
+ #. Description of the plugin/theme
123
+ msgid "Creates a copy of a post."
124
+ msgstr "יצירת עותק של הודעה."
125
+
126
+ #. Author of the plugin/theme
127
+ msgid "Enrico Battocchi"
128
+ msgstr "Enrico Battocchi"
129
+
130
+ #. Author URI of the plugin/theme
131
+ msgid "http://www.lopo.it"
132
+ msgstr "http://www.lopo.it"
languages/duplicate-post-it_IT.mo CHANGED
Binary file
languages/duplicate-post-it_IT.po CHANGED
@@ -1,21 +1,21 @@
1
- # Duplicate Post plugin for WordPress
2
- # Copyright (C) 2009 Enrico Battocchi
3
- # This file is distributed under the same license as the Duplicate Post package.
4
- # Enrico Battocchi <enrico.battocchi@gmail.com>, 2009.
5
  #
6
  msgid ""
7
  msgstr ""
8
- "Project-Id-Version: Duplicate Post 1.0\n"
9
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/duplicate-post\n"
10
- "POT-Creation-Date: 2009-12-02 23:12+0000\n"
11
- "PO-Revision-Date: 2009-12-03 15:30+0100\n"
12
- "Last-Translator: Enrico Battocchi <enrico.battocchi@gmail.com>\n"
13
- "Language-Team: Enrico Battocchi <enrico.battocchi@gmail.com>\n"
14
  "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=utf-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-Language: Italian\n"
18
- "X-Poedit-Country: ITALY\n"
19
 
20
  #: duplicate-post.php:39
21
  msgid "No post to duplicate has been supplied!"
@@ -23,46 +23,114 @@ msgstr "Non è stato fornito alcun articolo da copiare!"
23
 
24
  #: duplicate-post.php:58 duplicate-post.php:86
25
  msgid "Post creation failed, could not find original post:"
26
- msgstr "Creazione dell'articolo fallita, non è stato possibile trovare l'articolo originale:"
 
 
27
 
28
  #: duplicate-post.php:67
29
  msgid "No page to duplicate has been supplied!"
30
  msgstr "Non è stata fornita alcuna pagina da copiare!"
31
 
32
- #: duplicate-post.php:171
33
  msgid "Make a duplicate from this post"
34
  msgstr "Crea una copia di questo articolo"
35
 
36
- #: duplicate-post.php:172 duplicate-post.php:186 duplicate-post.php:203
37
- #: duplicate-post.php:214
38
  msgid "Duplicate"
39
  msgstr "Duplica"
40
 
41
- #: duplicate-post.php:185
42
  msgid "Make a duplicate from this page"
43
  msgstr "Crea una copia di questa pagina"
44
 
45
- #: duplicate-post.php:232
46
  msgid "Copy to a new draft"
47
  msgstr "Copia in una nuova bozza"
48
 
49
- #. Plugin Name of an extension
 
 
 
 
 
 
50
  msgid "Duplicate Post"
51
  msgstr "Duplicate Post"
52
 
53
- #. Plugin URI of an extension
54
- msgid "http://wordpress.org/extend/plugins/duplicate-post/"
55
- msgstr "http://wordpress.org/extend/plugins/duplicate-post/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
 
57
- #. Description of an extension
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  msgid "Creates a copy of a post."
59
  msgstr "Crea una copia di un articolo."
60
 
61
- #. Author of an extension
62
  msgid "Enrico Battocchi"
63
  msgstr "Enrico Battocchi"
64
 
65
- #. Author URI of an extension
66
  msgid "http://www.lopo.it"
67
  msgstr "http://www.lopo.it"
68
-
1
+ # Italian translation for duplicate-post
2
+ # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
3
+ # This file is distributed under the same license as the duplicate-post package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
  #
6
  msgid ""
7
  msgstr ""
8
+ "Project-Id-Version: duplicate-post\n"
9
+ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10
+ "POT-Creation-Date: 2010-05-21 10:01+0000\n"
11
+ "PO-Revision-Date: 2010-05-21 10:30+0000\n"
12
+ "Last-Translator: Enrico Battocchi <Unknown>\n"
13
+ "Language-Team: Italian <it@li.org>\n"
14
  "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
18
+ "X-Generator: Launchpad (build Unknown)\n"
19
 
20
  #: duplicate-post.php:39
21
  msgid "No post to duplicate has been supplied!"
23
 
24
  #: duplicate-post.php:58 duplicate-post.php:86
25
  msgid "Post creation failed, could not find original post:"
26
+ msgstr ""
27
+ "Creazione dell'articolo fallita, non è stato possibile trovare l'articolo "
28
+ "originale:"
29
 
30
  #: duplicate-post.php:67
31
  msgid "No page to duplicate has been supplied!"
32
  msgstr "Non è stata fornita alcuna pagina da copiare!"
33
 
34
+ #: duplicate-post.php:164 duplicate-post.php:195
35
  msgid "Make a duplicate from this post"
36
  msgstr "Crea una copia di questo articolo"
37
 
38
+ #: duplicate-post.php:165 duplicate-post.php:179 duplicate-post.php:196
39
+ #: duplicate-post.php:207
40
  msgid "Duplicate"
41
  msgstr "Duplica"
42
 
43
+ #: duplicate-post.php:178 duplicate-post.php:206
44
  msgid "Make a duplicate from this page"
45
  msgstr "Crea una copia di questa pagina"
46
 
47
+ #: duplicate-post.php:225
48
  msgid "Copy to a new draft"
49
  msgstr "Copia in una nuova bozza"
50
 
51
+ #: duplicate-post.php:519
52
+ msgid "Duplicate Post Options"
53
+ msgstr "Opzioni di Duplicate Post"
54
+
55
+ #. #-#-#-#-# plugin.pot (Duplicate Post 1.1) #-#-#-#-#
56
+ #. Plugin Name of the plugin/theme
57
+ #: duplicate-post.php:519 duplicate-post.php:525
58
  msgid "Duplicate Post"
59
  msgstr "Duplicate Post"
60
 
61
+ #: duplicate-post.php:532
62
+ msgid "Copy post/page date also"
63
+ msgstr "Copia anche la data dell'articolo o pagina"
64
+
65
+ #: duplicate-post.php:534
66
+ msgid ""
67
+ "Normally, the new draft has publication date set to current time: check the "
68
+ "box to copy the original post/page date"
69
+ msgstr ""
70
+ "Normalmente, la nuova bozza ha la data di pubblicazione impostata "
71
+ "all'istante corrente: spunta la casella per copiare la data "
72
+ "dell'articolo/pagina originale"
73
+
74
+ #: duplicate-post.php:538
75
+ msgid "Do not copy these fields"
76
+ msgstr "Non copiare questi campi"
77
+
78
+ #: duplicate-post.php:541
79
+ msgid ""
80
+ "Comma-separated list of meta fields that must not be copied when cloning a "
81
+ "post/page"
82
+ msgstr ""
83
+ "Lista separata da virgole di campi personalizzati da non copiare quando "
84
+ "viene clonato un post o una pagina"
85
+
86
+ #: duplicate-post.php:545
87
+ msgid "Title prefix"
88
+ msgstr "Prefisso del titolo"
89
+
90
+ #: duplicate-post.php:548
91
+ msgid ""
92
+ "Prefix to be added before the original title when cloning a post/page, e.g. "
93
+ "\"Copy of\" (blank for no prefix)"
94
+ msgstr ""
95
+ "Prefisso da aggiungere prima del titolo originale quando si clona un post o "
96
+ "una pagina, es. \"Copia di\" (lasciare vuoto per nessun prefisso)"
97
+
98
+ #: duplicate-post.php:552
99
+ msgid "Minimum level to copy posts"
100
+ msgstr "Livello minimo per copiare gli articoli"
101
+
102
+ #: duplicate-post.php:576
103
+ msgid ""
104
+ "Warning: users will be able to copy all posts, even those of higher level "
105
+ "users"
106
+ msgstr ""
107
+ "Attenzione: gli utenti potranno copiare tutti gli articoli, anche quelli "
108
+ "degli utenti di livello superiore"
109
 
110
+ #: duplicate-post.php:583
111
+ msgid "Save Changes"
112
+ msgstr "Salva le modifiche"
113
+
114
+ #: duplicate-post.php:595
115
+ msgid "Donate"
116
+ msgstr "Invia una donazione"
117
+
118
+ #: duplicate-post.php:596
119
+ msgid "Translate"
120
+ msgstr "Traduci"
121
+
122
+ #. Plugin URI of the plugin/theme
123
+ msgid "http://www.lopo.it/duplicate-post-plugin/"
124
+ msgstr "http://www.lopo.it/duplicate-post-plugin/"
125
+
126
+ #. Description of the plugin/theme
127
  msgid "Creates a copy of a post."
128
  msgstr "Crea una copia di un articolo."
129
 
130
+ #. Author of the plugin/theme
131
  msgid "Enrico Battocchi"
132
  msgstr "Enrico Battocchi"
133
 
134
+ #. Author URI of the plugin/theme
135
  msgid "http://www.lopo.it"
136
  msgstr "http://www.lopo.it"
 
languages/duplicate-post-ja.mo CHANGED
Binary file
languages/duplicate-post-ja.po CHANGED
@@ -1,25 +1,21 @@
1
- # Japanese Language File for Duplicate Post
2
- # (ja.po)
3
- # This file is distributed under the same license as the Duplicate Post package.
 
4
  #
5
  msgid ""
6
  msgstr ""
7
- "Project-Id-Version: Duplicate Post 0.6.1\n"
8
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/duplicate-post\n"
9
- "POT-Creation-Date: 2009-12-02 23:12+0000\n"
10
- "PO-Revision-Date: 2009-12-03 15:34+0100\n"
11
- "Last-Translator: Naoko McCracken <info@nao-net.com>\n"
12
- "Language-Team: WordPress J-Series Project <http://wppluginsj.sourceforge.jp/i18n-ja_jp/>\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "X-Poedit-Language: Japanese\n"
17
- "X-Poedit-Country: JAPAN\n"
18
- "X-Poedit-SourceCharset: utf-8\n"
19
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n"
20
- "X-Poedit-Basepath: ../\n"
21
- "Plural-Forms: nplurals=1; plural=0;\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
 
24
  #: duplicate-post.php:39
25
  msgid "No post to duplicate has been supplied!"
@@ -33,7897 +29,97 @@ msgstr "複製の作成に失敗しました。複製元の投稿が見つかり
33
  msgid "No page to duplicate has been supplied!"
34
  msgstr "複製元のページが指定されていません !"
35
 
36
- #: duplicate-post.php:1171
37
  msgid "Make a duplicate from this post"
38
  msgstr "この投稿を元に複製を作成"
39
 
40
- #: duplicate-post.php:172 duplicate-post.php:186 duplicate-post.php:203
41
- #: duplicate-post.php:214
42
  msgid "Duplicate"
43
  msgstr "複製"
44
 
45
- #: duplicate-post.php:185
46
  msgid "Make a duplicate from this page"
47
  msgstr "この投稿を元に複製を作成"
48
 
49
- #: duplicate-post.php:232
50
  msgid "Copy to a new draft"
51
  msgstr "新規下書きとしてコピー"
52
 
53
- #. Plugin Name of an extension
 
 
 
 
 
 
54
  msgid "Duplicate Post"
55
  msgstr "Duplicate Post"
56
 
57
- #. Plugin URI of an extension
58
- msgid "http://wordpress.org/extend/plugins/duplicate-post/"
59
- msgstr "http://wordpress.org/extend/plugins/duplicate-post/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
 
61
- #. Description of an extension
 
 
 
 
 
 
 
 
 
 
 
 
62
  msgid "Creates a copy of a post."
63
  msgstr "投稿の複製を作成します。"
64
 
65
- #. Author of an extension
66
  msgid "Enrico Battocchi"
67
  msgstr "Enrico Battocchi"
68
 
69
- #. Author URI of an extension
70
  msgid "http://www.lopo.it"
71
  msgstr "http://www.lopo.it"
72
-
73
- #~ msgid "Make Copy"
74
- #~ msgstr "複製を作成"
75
- #~ msgid "Click here to create a copy of this page."
76
- #~ msgstr "クリックしてこのページの複製を作成"
77
- #~ msgid ""
78
- #~ "<strong>ALERT: You are logged out!</strong> Could not save draft. <a href="
79
- #~ "\"%s\" target=\"blank\">Please log in again.</a>"
80
- #~ msgstr ""
81
- #~ "<strong>注意: ログアウトしたため、</strong>下書きを保存できませんでした。"
82
- #~ "<a href=\"%s\" target=\"blank\">再ログイン</a>してください。"
83
- #~ msgid "&laquo;"
84
- #~ msgstr "&laquo;"
85
- #~ msgid "&raquo;"
86
- #~ msgstr "&raquo;"
87
- #~ msgid ""
88
- #~ "Can&#8217;t delete the <strong>%s</strong> category: this is the default "
89
- #~ "one"
90
- #~ msgstr ""
91
- #~ "カテゴリー <strong>%s</strong> は削除できません。これはデフォルトのカテゴ"
92
- #~ "リーです。"
93
- #~ msgid "Comment %d does not exist"
94
- #~ msgstr "コメント %d は存在しません"
95
- #~ msgid "You did not enter a category name."
96
- #~ msgstr "カテゴリー名が入力されませんでした。"
97
- #~ msgid "The category you are trying to create already exists."
98
- #~ msgstr "作成しようとしたカテゴリーはすでに存在します。"
99
- #~ msgid "Category <a href=\"#%s\">%s</a> added"
100
- #~ msgstr "カテゴリー <a href=\"#%s\">%s</a> を追加しました。"
101
- #~ msgid "You did not enter a tag name."
102
- #~ msgstr "タグ名が入力されませんでした。"
103
- #~ msgid "Tag <a href=\"#%s\">%s</a> added"
104
- #~ msgstr "タグ <a href=\"#%s\">%s</a> を追加しました。"
105
- #~ msgid "No tags found!"
106
- #~ msgstr "タグは見つかりませんでした !"
107
- #~ msgid "Error: you are replying to a comment on a draft post."
108
- #~ msgstr ""
109
- #~ "エラー: 下書きとして保存された投稿へのコメントに返信しようとしています。"
110
- #~ msgid "Sorry, you must be logged in to reply to a comment."
111
- #~ msgstr "すみませんが、コメントを投稿するにはログインしてください。"
112
- #~ msgid "Error: please type a comment."
113
- #~ msgstr "エラー: コメントを入力してください。"
114
- #~ msgid "Please provide a custom field value."
115
- #~ msgstr "カスタムフィールドの値を入力してください。"
116
- #~ msgid "User <a href=\"#%s\">%s</a> added"
117
- #~ msgstr "ユーザー <a href=\"#%s\">%s</a> を追加しました。"
118
- #~ msgid "g:i:s a"
119
- #~ msgstr "g:i:s a"
120
- #~ msgid "Draft Saved at %s."
121
- #~ msgstr "%s に下書きを保存しました。"
122
- #~ msgid "Someone"
123
- #~ msgstr "誰か"
124
- #~ msgid "Autosave disabled: %s is currently editing this page."
125
- #~ msgstr "自動保存 無効: 現在 %s さんがこのページを編集中です。"
126
- #~ msgid "Autosave disabled: %s is currently editing this post."
127
- #~ msgstr "自動保存 無効: 現在 %s さんがこの投稿を編集中です。"
128
- #~ msgid "You are not allowed to edit this page."
129
- #~ msgstr "このページを編集する権限がありません。"
130
- #~ msgid "You are not allowed to edit this post."
131
- #~ msgstr "この投稿を編集する権限がありません。"
132
- #~ msgid "Saving is disabled: %s is currently editing this page."
133
- #~ msgstr ""
134
- #~ "自動保存は無効化されています。現在 %s さんがこのページを編集中です。"
135
- #~ msgid "Saving is disabled: %s is currently editing this post."
136
- #~ msgstr "自動保存は無効化されています。現在 %s さんがこの投稿を編集中です。"
137
- #~ msgid "Cheatin&#8217; uh?"
138
- #~ msgstr "間違えましたか ?"
139
- #~ msgid "Category not updated."
140
- #~ msgstr "カテゴリーは更新されませんでした。"
141
- #~ msgid "Tag not updated."
142
- #~ msgstr "タグは更新されませんでした。"
143
- #~ msgid "No posts found."
144
- #~ msgstr "投稿は見つかりませんでした。"
145
- #~ msgid "Title"
146
- #~ msgstr "タイトル"
147
- #~ msgid "Time"
148
- #~ msgstr "投稿日"
149
- #~ msgid "Status"
150
- #~ msgstr "ステータス"
151
- #~ msgid "Published"
152
- #~ msgstr "公開済み"
153
- #~ msgid "Scheduled"
154
- #~ msgstr "予約済み"
155
- #~ msgid "Pending Review"
156
- #~ msgstr "レビュー待ち"
157
- #~ msgid "Unpublished"
158
- #~ msgstr "未公開"
159
- #~ msgid "Y/m/d"
160
- #~ msgstr "Y年n月j日"
161
- #~ msgid "An error has occured. Please reload the page and try again."
162
- #~ msgstr "エラーが発生しました。再読み込みして、もう一度お試しください。"
163
- #~ msgid ""
164
- #~ "Thank you for creating with <a href=\"http://wordpress.org/\">WordPress</"
165
- #~ "a>."
166
- #~ msgstr ""
167
- #~ "<a href=\"http://ja.wordpress.org/\">WordPress</a> のご利用ありがとうござ"
168
- #~ "います。"
169
- #~ msgid "<a href=\"http://codex.wordpress.org/\">Documentation</a>"
170
- #~ msgstr "<a href=\"http://wpdocs.sourceforge.jp/\">ドキュメント</a>"
171
- #~ msgid "<a href=\"http://wordpress.org/support/forum/4\">Feedback</a>"
172
- #~ msgstr ""
173
- #~ "<a href=\"http://ja.forums.wordpress.org/forum/2\">バグ報告と提案</a>"
174
- #~ msgid "Visit Site"
175
- #~ msgstr "サイトを表示"
176
- #~ msgid "Howdy, <a href=\"%1$s\" title=\"Edit your profile\">%2$s</a>"
177
- #~ msgstr ""
178
- #~ "こんにちは、<a href=\"%1$s\" title=\"プロフィールを編集する\">%2$s</a>さ"
179
- #~ "ん !"
180
- #~ msgid "Turbo"
181
- #~ msgstr "ターボ"
182
- #~ msgid "Log Out"
183
- #~ msgstr "ログアウト"
184
- #~ msgid "Blue"
185
- #~ msgstr "ブルー"
186
- #~ msgid "Gray"
187
- #~ msgstr "グレー"
188
- #~ msgid "Invalid plugin page"
189
- #~ msgstr "無効なプラグインのページ"
190
- #~ msgid "Cannot load %s."
191
- #~ msgstr "%s を読み込めません。"
192
- #~ msgid "You are not allowed to import."
193
- #~ msgstr "インポートの権限がありません。"
194
- #~ msgid "Invalid importer."
195
- #~ msgstr "無効なインポーターです。"
196
- #~ msgid "Cannot load importer."
197
- #~ msgstr "インポーターを読み込めません。"
198
- #~ msgid "Import"
199
- #~ msgstr "インポート"
200
- #~ msgid "You do not have permission to upload files."
201
- #~ msgstr "ファイルをアップロードをする権限がありません。"
202
- #~ msgid "Categories"
203
- #~ msgstr "カテゴリー"
204
- #~ msgid "You are not allowed to delete categories."
205
- #~ msgstr "カテゴリーを削除する権限がありません。"
206
- #~ msgid "Edit Category"
207
- #~ msgstr "カテゴリーの編集"
208
- #~ msgid "Category added."
209
- #~ msgstr "カテゴリーを追加しました。"
210
- #~ msgid "Category deleted."
211
- #~ msgstr "カテゴリーを削除しました。"
212
- #~ msgid "Category updated."
213
- #~ msgstr "カテゴリーを更新しました。"
214
- #~ msgid "Category not added."
215
- #~ msgstr "カテゴリーは追加されませんでした。"
216
- #~ msgid "Search results for &#8220;%s&#8221;"
217
- #~ msgstr "&#8220;%s&#8221; の検索結果"
218
- #~ msgid "Search Categories"
219
- #~ msgstr "カテゴリーを検索"
220
- #~ msgid "Bulk Actions"
221
- #~ msgstr "一括操作"
222
- #~ msgid "Delete"
223
- #~ msgstr "削除 "
224
- #~ msgid "Apply"
225
- #~ msgstr "適用"
226
- #~ msgid ""
227
- #~ "<strong>Note:</strong><br />Deleting a category does not delete the posts "
228
- #~ "in that category. Instead, posts that were only assigned to the deleted "
229
- #~ "category are set to the category <strong>%s</strong>."
230
- #~ msgstr ""
231
- #~ "<strong>メモ: </strong><br />カテゴリーを削除しても、そのカテゴリー内の投"
232
- #~ "稿は削除されません。その代わり、削除したカテゴリーだけに属していた投稿は "
233
- #~ "<strong>%s</strong> カテゴリーに移動されます。"
234
- #~ msgid ""
235
- #~ "Categories can be selectively converted to tags using the <a href=\"%s"
236
- #~ "\">category to tag converter</a>."
237
- #~ msgstr ""
238
- #~ "<a href=\"%s\">カテゴリーをタグに変換するコンバータ</a> を使用するとカテゴ"
239
- #~ "リーを選択してタグに変換することができます。"
240
- #~ msgid "Add Category"
241
- #~ msgstr "カテゴリーの追加"
242
- #~ msgid "Category Name"
243
- #~ msgstr "カテゴリー名"
244
- #~ msgid ""
245
- #~ "The name is used to identify the category almost everywhere, for example "
246
- #~ "under the post or in the category widget."
247
- #~ msgstr ""
248
- #~ "この名前はカテゴリーの識別のために、例えば投稿の下やカテゴリーウィジェット"
249
- #~ "の内部など、いたるところで使われます。"
250
- #~ msgid "Category Slug"
251
- #~ msgstr "カテゴリースラッグ"
252
- #~ msgid ""
253
- #~ "The &#8220;slug&#8221; is the URL-friendly version of the name. It is "
254
- #~ "usually all lowercase and contains only letters, numbers, and hyphens."
255
- #~ msgstr ""
256
- #~ "&#8220;スラッグ&#8221; は URL 内で使用可能な形式にされた名前です。通常はす"
257
- #~ "べて小文字で構成され、アルファベット、数字、ハイフンを含めることができま"
258
- #~ "す。"
259
- #~ msgid "Category Parent"
260
- #~ msgstr "親カテゴリー"
261
- #~ msgid "None"
262
- #~ msgstr "なし"
263
- #~ msgid ""
264
- #~ "Categories, unlike tags, can have a hierarchy. You might have a Jazz "
265
- #~ "category, and under that have children categories for Bebop and Big Band. "
266
- #~ "Totally optional."
267
- #~ msgstr ""
268
- #~ "タグとは異なり、カテゴリーは階層構造を持つことができます。例えば、ジャズと"
269
- #~ "いうカテゴリーの下にビバップやビッグバンドという子カテゴリーを作る、といっ"
270
- #~ "たようなことです。これはオプションです。"
271
- #~ msgid "Description"
272
- #~ msgstr "説明"
273
- #~ msgid ""
274
- #~ "The description is not prominent by default, however some themes may show "
275
- #~ "it."
276
- #~ msgstr ""
277
- #~ "この説明はデフォルトではあまり重要な意味を持ちませんが、これを表示するテー"
278
- #~ "マも中にはあります。"
279
- #~ msgid "Edit Comment"
280
- #~ msgstr "コメントの編集"
281
- #~ msgid "Oops, no comment with this ID."
282
- #~ msgstr "この ID のコメントはありません。"
283
- #~ msgid "Go back"
284
- #~ msgstr "戻る"
285
- #~ msgid "You are not allowed to edit comments on this post."
286
- #~ msgstr "この投稿へのコメントを編集する権限がありません。"
287
- #~ msgid "You are not allowed to delete comments on this post."
288
- #~ msgstr "この投稿へのコメントを削除する権限がありません。"
289
- #~ msgid ""
290
- #~ "You are not allowed to edit comments on this post, so you cannot approve "
291
- #~ "this comment."
292
- #~ msgstr ""
293
- #~ "この投稿のコメントを編集する権限がないので、このコメントを承認することはで"
294
- #~ "きません。"
295
- #~ msgid "You are about to mark the following comment as spam:"
296
- #~ msgstr "このコメントをスパムとしてマークしようとしています:"
297
- #~ msgid "Spam Comment"
298
- #~ msgstr "コメントをスパムとしてマークする"
299
- #~ msgid "You are about to delete the following comment:"
300
- #~ msgstr "このコメントを削除しようとしています:"
301
- #~ msgid "Delete Comment"
302
- #~ msgstr "コメントを削除する"
303
- #~ msgid "You are about to approve the following comment:"
304
- #~ msgstr "このコメントを承認しようとしています:"
305
- #~ msgid "Approve Comment"
306
- #~ msgstr "コメントを承認する"
307
- #~ msgid "Caution:"
308
- #~ msgstr "注意:"
309
- #~ msgid "Are you sure you want to do that?"
310
- #~ msgstr "本当に実行していいですか ?"
311
- #~ msgid "No"
312
- #~ msgstr "いいえ"
313
- #~ msgid "Author"
314
- #~ msgstr "作成者"
315
- #~ msgid "E-mail"
316
- #~ msgstr "メールアドレス"
317
- #~ msgid "URL"
318
- #~ msgstr "URL"
319
- #~ msgctxt "noun"
320
- #~ msgid "Comment"
321
- #~ msgstr "コメント"
322
- #~ msgid ""
323
- #~ "You are not allowed to edit comments on this post, so you cannot "
324
- #~ "disapprove this comment."
325
- #~ msgstr ""
326
- #~ "この投稿のコメントを編集する権限がないので、このコメントを非承認にすること"
327
- #~ "はできません。"
328
- #~ msgid "Unknown action."
329
- #~ msgstr "不明なアクションです。"
330
- #~ msgid "Custom Header"
331
- #~ msgstr "カスタムヘッダー"
332
- #~ msgid "Hide Text"
333
- #~ msgstr "テキストを隠す"
334
- #~ msgid "Show Text"
335
- #~ msgstr "テキストを表示"
336
- #~ msgid "Header updated."
337
- #~ msgstr "ヘッダーを更新しました。"
338
- #~ msgid "Your Header Image"
339
- #~ msgstr "ヘッダー画像"
340
- #~ msgid ""
341
- #~ "This is your header image. You can change the text color or upload and "
342
- #~ "crop a new image."
343
- #~ msgstr ""
344
- #~ "これはヘッダー画像です。文字色の変更や新しい画像のアップロード/トリミング"
345
- #~ "をすることができます。"
346
- #~ msgid "Select a Text Color"
347
- #~ msgstr "文字色を選択"
348
- #~ msgid "Use Original Color"
349
- #~ msgstr "デフォルトの色に戻す"
350
- #~ msgid "Save Changes"
351
- #~ msgstr "変更を保存"
352
- #~ msgid "Upload New Header Image"
353
- #~ msgstr "新しいヘッダー画像のアップロード"
354
- #~ msgid ""
355
- #~ "Here you can upload a custom header image to be shown at the top of your "
356
- #~ "blog instead of the default one. On the next screen you will be able to "
357
- #~ "crop the image."
358
- #~ msgstr ""
359
- #~ "ここではデフォルトの代わりに表示させるカスタムなヘッダー画像をアップロード"
360
- #~ "することができます。次の画面ではアップロードした画像をトリミングすることが"
361
- #~ "できます。"
362
- #~ msgid ""
363
- #~ "Images of exactly <strong>%1$d x %2$d pixels</strong> will be used as-is."
364
- #~ msgstr ""
365
- #~ "画像の大きさを <strong>%1$d x %2$d ピクセル</strong>にするとそのままの大き"
366
- #~ "さで表示されます。"
367
- #~ msgid "Choose an image from your computer:"
368
- #~ msgstr "自分のコンピューターから画像を選択:"
369
- #~ msgid "Upload"
370
- #~ msgstr "アップロード"
371
- #~ msgid "Reset Header Image and Color"
372
- #~ msgstr "ヘッダー画像と色のリセット"
373
- #~ msgid ""
374
- #~ "This will restore the original header image and color. You will not be "
375
- #~ "able to retrieve any customizations."
376
- #~ msgstr ""
377
- #~ "この操作を行うと、ヘッダーの画像と色をデフォルトに戻します。変更した設定に"
378
- #~ "関する情報は失われます。"
379
- #~ msgid "Restore Original Header"
380
- #~ msgstr "デフォルトのヘッダーに戻す"
381
- #~ msgid "Choose the part of the image you want to use as your header."
382
- #~ msgstr "ヘッダーとして使用したい部分を画像から選択してください。"
383
- #~ msgid "Crop Header"
384
- #~ msgstr "ヘッダーのトリミング"
385
- #~ msgid "Header complete!"
386
- #~ msgstr "ヘッダーの変更完了 !"
387
- #~ msgid "Visit your site and you should see the new header now."
388
- #~ msgstr "ブログを開くと新しいヘッダーが表示されているはずです。"
389
- #~ msgid "Edit &#8220;%s&#8221;"
390
- #~ msgstr "&#8220;%s&#8221; を編集する"
391
- #~ msgid "Edit"
392
- #~ msgstr "編集"
393
- #~ msgid ""
394
- #~ "You are about to delete this attachment '%s'\n"
395
- #~ " 'Cancel' to stop, 'OK' to delete."
396
- #~ msgstr ""
397
- #~ "添付ファイル '%s' を削除しようとしています。\n"
398
- #~ "削除するには 'OK' を、中止するには 'キャンセル' をクリックしてください。"
399
- #~ msgid "View &#8220;%s&#8221;"
400
- #~ msgstr "&#8220;%s&#8221; を表示"
401
- #~ msgid "View"
402
- #~ msgstr "表示"
403
- #~ msgid "No Tags"
404
- #~ msgstr "タグなし"
405
- #~ msgid "Y/m/d g:i:s A"
406
- #~ msgstr "Y年n月j日 g:i:s a"
407
- #~ msgid "%s from now"
408
- #~ msgstr "%s後"
409
- #~ msgid "%s ago"
410
- #~ msgstr "%s前"
411
- #~ msgid "%s pending"
412
- #~ msgstr "%s件の承認待ち"
413
- #~ msgctxt "comment count"
414
- #~ msgid "0"
415
- #~ msgstr "0"
416
- #~ msgctxt "comment count"
417
- #~ msgid "1"
418
- #~ msgstr "1"
419
- #~ msgctxt "comment count"
420
- #~ msgid "%"
421
- #~ msgstr "%"
422
- #~ msgid "Get permalink"
423
- #~ msgstr "パーマリンク設定"
424
- #~ msgid "No media attachments found."
425
- #~ msgstr "添付メディアファイルは見つかりませんでした。"
426
- #~ msgid "Update Category"
427
- #~ msgstr "カテゴリーを更新"
428
- #~ msgid "Edit Comments on &#8220;%s&#8221;"
429
- #~ msgstr "&#8220;%1$s&#8221;のコメントを編集"
430
- #~ msgid "Edit Comments"
431
- #~ msgstr "コメント編集"
432
- #~ msgid "%s comment approved"
433
- #~ msgid_plural "%s comments approved"
434
- #~ msgstr[0] "%s件のコメントを承認しました。"
435
- #~ msgid "%s comment deleted"
436
- #~ msgid_plural "%s comments deleted"
437
- #~ msgstr[0] "%s件のコメントを削除しました。"
438
- #~ msgid "%s comment marked as spam"
439
- #~ msgid_plural "%s comments marked as spam"
440
- #~ msgstr[0] "%s件のコメントをスパムとしてマークしました。"
441
- #~ msgid "All"
442
- #~ msgid_plural "All"
443
- #~ msgstr[0] "すべて"
444
- #~ msgid "Pending (<span class=\"pending-count\">%s</span>)"
445
- #~ msgid_plural "Pending (<span class=\"pending-count\">%s</span>)"
446
- #~ msgstr[0] "承認待ち (<span class=\"pending-count\">%s</span>件)"
447
- #~ msgid "Approved"
448
- #~ msgid_plural "Approved"
449
- #~ msgstr[0] "承認済み"
450
- #~ msgid "Spam (<span class=\"spam-count\">%s</span>)"
451
- #~ msgid_plural "Spam (<span class=\"spam-count\">%s</span>)"
452
- #~ msgstr[0] "スパム (<span class=\"spam-count\">%s</span>件)"
453
- #~ msgid "Search Comments"
454
- #~ msgstr "コメントを検索"
455
- #~ msgid "Displaying %s&#8211;%s of %s"
456
- #~ msgstr " %s&#8211;%s件 (%s件中) を表示中"
457
- #~ msgid "Unapprove"
458
- #~ msgstr "承認しない"
459
- #~ msgid "Approve"
460
- #~ msgstr "承認する"
461
- #~ msgid "Mark as Spam"
462
- #~ msgstr "スパムとしてマーク"
463
- #~ msgid "Show all comment types"
464
- #~ msgstr "すべてのタイプのコメントを表示"
465
- #~ msgid "Comments"
466
- #~ msgstr "コメント"
467
- #~ msgid "Pings"
468
- #~ msgstr "トラックバック/ピンバック"
469
- #~ msgid "Filter"
470
- #~ msgstr "フィルター"
471
- #~ msgid "Delete All Spam"
472
- #~ msgstr "すべてのスパムを削除"
473
- #~ msgid "No comments awaiting moderation&hellip; yet."
474
- #~ msgstr "承認待ちのコメントはありません。"
475
- #~ msgid "No results found."
476
- #~ msgstr "コメントはありません。"
477
- #~ msgid "Post updated. <a href=\"%s\">View post</a>"
478
- #~ msgstr "投稿を更新しました。<a href=\"%s\">投稿を表示する</a>"
479
- #~ msgid "Custom field updated."
480
- #~ msgstr "カスタムフィールドを更新しました。"
481
- #~ msgid "Custom field deleted."
482
- #~ msgstr "カスタムフィールドを削除しました。"
483
- #~ msgid "Post updated."
484
- #~ msgstr "投稿を更新しました。"
485
- #~ msgid "Post published. <a href=\"%s\">View post</a>"
486
- #~ msgstr "投稿を公開しました。<a href=\"%s\">投稿を表示する</a>"
487
- #~ msgid "Post saved."
488
- #~ msgstr "投稿を保存しました。"
489
- #~ msgid "Post submitted. <a href=\"%s\">Preview post</a>"
490
- #~ msgstr "投稿を送信しました。<a href=\"%s\">投稿をプレビューする</a>"
491
- #~ msgid "Post restored to revision from %s"
492
- #~ msgstr "リビジョン %s から投稿を復元しました。"
493
- #~ msgid ""
494
- #~ "There is an autosave of this post that is more recent than the version "
495
- #~ "below. <a href=\"%s\">View the autosave</a>."
496
- #~ msgstr ""
497
- #~ "下記のバージョンよりも新しい自動保存された投稿があります。<a href=\"%s\">"
498
- #~ "自動保存版を表示</a>。"
499
- #~ msgid "Save"
500
- #~ msgstr "保存"
501
- #~ msgid "Save Draft"
502
- #~ msgstr "下書きとして保存"
503
- #~ msgid "Save as Pending"
504
- #~ msgstr "レビュー待ちとして保存"
505
- #~ msgid "Preview Changes"
506
- #~ msgstr "変更をプレビュー"
507
- #~ msgid "Preview"
508
- #~ msgstr "プレビュー"
509
- #~ msgid "Status:"
510
- #~ msgstr "ステータス:"
511
- #~ msgid "Privately Published"
512
- #~ msgstr "非公開"
513
- #~ msgid "Draft"
514
- #~ msgstr "下書き"
515
- #~ msgid "OK"
516
- #~ msgstr "OK"
517
- #~ msgid "Cancel"
518
- #~ msgstr "キャンセル"
519
- #~ msgid "Visibility:"
520
- #~ msgstr "公開状態:"
521
- #~ msgid "Private"
522
- #~ msgstr "非公開"
523
- #~ msgid "Password protected"
524
- #~ msgstr "パスワード保護"
525
- #~ msgid "Public, Sticky"
526
- #~ msgstr "公開 (先頭に固定表示)"
527
- #~ msgid "Public"
528
- #~ msgstr "一般公開"
529
- #~ msgid "Stick this post to the front page"
530
- #~ msgstr "この投稿を先頭に固定表示"
531
- #~ msgid "Password:"
532
- #~ msgstr "パスワード:"
533
- #~ msgid "M j, Y @ G:i"
534
- #~ msgstr "Y年n月j日 @ G:i"
535
- #~ msgid "Scheduled for: <b>%1$s</b>"
536
- #~ msgstr "公開予定日時: <b>%1$s</b>"
537
- #~ msgid "Published on: <b>%1$s</b>"
538
- #~ msgstr "公開日時: <b>%1$s</b>"
539
- #~ msgid "Publish <b>immediately</b>"
540
- #~ msgstr "<b>すぐに</b>公開する"
541
- #~ msgid "Schedule for: <b>%1$s</b>"
542
- #~ msgstr "公開予定日時: <b>%1$s</b>"
543
- #~ msgid "Publish on: <b>%1$s</b>"
544
- #~ msgstr "公開日時: <b>%1$s</b>"
545
- #~ msgid ""
546
- #~ "You are about to delete this draft '%s'\n"
547
- #~ " 'Cancel' to stop, 'OK' to delete."
548
- #~ msgstr ""
549
- #~ "この下書き '%s' を削除しようとしています。\n"
550
- #~ " 'キャンセル' で中止、'OK' で削除します。"
551
- #~ msgid ""
552
- #~ "You are about to delete this post '%s'\n"
553
- #~ " 'Cancel' to stop, 'OK' to delete."
554
- #~ msgstr ""
555
- #~ "この投稿 '%s' を削除しようとしています。\n"
556
- #~ " 'キャンセル' で中止、'OK' で削除します。"
557
- #~ msgid "Schedule"
558
- #~ msgstr "予約投稿"
559
- #~ msgid "Publish"
560
- #~ msgstr "公開"
561
- #~ msgid "Submit for Review"
562
- #~ msgstr "レビュー待ちとして送信"
563
- #~ msgid "Update Post"
564
- #~ msgstr "投稿を更新"
565
- #~ msgid "Separate tags with commas."
566
- #~ msgstr "複数のタグはコンマで区切ってください。"
567
- #~ msgid "Add or remove tags"
568
- #~ msgstr "タグの追加もしくは削除"
569
- #~ msgid "Add new tag"
570
- #~ msgstr "新規タグの追加"
571
- #~ msgid "Add"
572
- #~ msgstr "追加"
573
- #~ msgid "Choose from the most used tags in %s"
574
- #~ msgstr "%s で最もよく使われているタグから選択"
575
- #~ msgid "All Categories"
576
- #~ msgstr "すべてのカテゴリー"
577
- #~ msgid "Most Used"
578
- #~ msgstr "よく使われるもの"
579
- #~ msgid "+ Add New Category"
580
- #~ msgstr "+ 新規カテゴリー追加"
581
- #~ msgid "Add New Category"
582
- #~ msgstr "新規カテゴリー追加"
583
- #~ msgid "New category name"
584
- #~ msgstr "新規カテゴリー名"
585
- #~ msgid "Parent category"
586
- #~ msgstr "親カテゴリー"
587
- #~ msgid "Keep this post private"
588
- #~ msgstr "この投稿を非公開のままにする"
589
- #~ msgid "Post Password"
590
- #~ msgstr "投稿パスワード"
591
- #~ msgid "Password Protect This Post"
592
- #~ msgstr "パスワードで投稿を保護"
593
- #~ msgid ""
594
- #~ "Setting a password will require people who visit your blog to enter the "
595
- #~ "above password to view this post and its comments."
596
- #~ msgstr ""
597
- #~ "パスワードを設定しておくと、この投稿とそのコメントを表示する際にパスワード"
598
- #~ "の入力が必要になります。"
599
- #~ msgid "Excerpt"
600
- #~ msgstr "抜粋"
601
- #~ msgid ""
602
- #~ "Excerpts are optional hand-crafted summaries of your content that can be "
603
- #~ "used in your theme. <a href=\"http://codex.wordpress.org/Excerpt\" target="
604
- #~ "\"_blank\">Learn more about manual excerpts.</a>"
605
- #~ msgstr ""
606
- #~ "抜粋は投稿内容から自分で作成する要約で、テーマの中で使用できます (オプショ"
607
- #~ "ン)。<a href=\"http://wpdocs.sourceforge.jp/Template_Tags/the_excerpt\" "
608
- #~ "target=\"_blank\">詳しくは Codex を参照</a>してください。"
609
- #~ msgid "Already pinged:"
610
- #~ msgstr "送信済みトラックバック/ピンバック:"
611
- #~ msgid "Send trackbacks to:"
612
- #~ msgstr "トラックバック送信先:"
613
- #~ msgid "Separate multiple URLs with spaces"
614
- #~ msgstr "複数送信の場合は URL を半角スペースで区切る"
615
- #~ msgid ""
616
- #~ "Trackbacks are a way to notify legacy blog systems that you&#8217;ve "
617
- #~ "linked to them. If you link other WordPress blogs they&#8217;ll be "
618
- #~ "notified automatically using <a href=\"http://codex.wordpress.org/"
619
- #~ "Introduction_to_Blogging#Managing_Comments\" target=\"_blank\">pingbacks</"
620
- #~ "a>, no other action necessary."
621
- #~ msgstr ""
622
- #~ "トラックバックはリンクしたことをリンク先に知らせる方法として、レガシーなブ"
623
- #~ "ログシステムに対して用いられます。ほかの WordPress ブログにリンクする場合"
624
- #~ "は、リンク先のブログが<a href=\"http://wpdocs.sourceforge.jp/"
625
- #~ "Introduction_to_Blogging#Managing_Comments\" target=\"_blank\">ピンバック"
626
- #~ "</a>による通知を自動的に受けるので、さらにトラックバックをする必要はありま"
627
- #~ "せん。"
628
- #~ msgid "Send Trackbacks"
629
- #~ msgstr "トラックバック送信"
630
- #~ msgid ""
631
- #~ "Custom fields can be used to add extra metadata to a post that you can <a "
632
- #~ "href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank"
633
- #~ "\">use in your theme</a>."
634
- #~ msgstr ""
635
- #~ "カスタムフィールドは投稿に特別なメタデータを追加するために使うものです。追"
636
- #~ "加されたカスタムフィールドは<a href=\"http://wpdocs.sourceforge.jp/"
637
- #~ "Using_Custom_Fields\" target=\"_blank\">テーマの中で利用</a>できます。"
638
- #~ msgid "Custom Fields"
639
- #~ msgstr "カスタムフィールド"
640
- #~ msgid "Allow comments on this post"
641
- #~ msgstr "コメントの投稿を許可する"
642
- #~ msgid ""
643
- #~ "Allow <a href=\"http://codex.wordpress.org/"
644
- #~ "Introduction_to_Blogging#Managing_Comments\" target=\"_blank\">trackbacks "
645
- #~ "and pingbacks</a> on this post"
646
- #~ msgstr ""
647
- #~ "この投稿への<a href=\"http://wpdocs.sourceforge.jp/"
648
- #~ "Introduction_to_Blogging#Managing_Comments\" target=\"_blank\">トラック"
649
- #~ "バック/ピンバック</a>を受け付ける"
650
- #~ msgid "Discussion"
651
- #~ msgstr "ディスカッション"
652
- #~ msgid "No comments yet."
653
- #~ msgstr "コメントはまだありません。"
654
- #~ msgid "Show comments"
655
- #~ msgstr "コメントを表示"
656
- #~ msgid "Post Slug"
657
- #~ msgstr "投稿スラッグ"
658
- #~ msgid "Post Author"
659
- #~ msgstr "投稿作成者"
660
- #~ msgid "Post Revisions"
661
- #~ msgstr "投稿リビジョン"
662
- #~ msgid "Last edited by %1$s on %2$s at %3$s"
663
- #~ msgstr "最後の編集: %2$s %3$s - %1$s"
664
- #~ msgid "Last edited on %1$s at %2$s"
665
- #~ msgstr "最後の編集: %1$s %2$s"
666
- #~ msgid "Editing Comment # %s"
667
- #~ msgstr "コメント# %s を編集中"
668
- #~ msgid "View Comment"
669
- #~ msgstr "コメントを表示"
670
- #~ msgctxt "adjective"
671
- #~ msgid "Approved"
672
- #~ msgstr "承認済み"
673
- #~ msgctxt "adjective"
674
- #~ msgid "Pending"
675
- #~ msgstr "レビュー待ち"
676
- #~ msgctxt "adjective"
677
- #~ msgid "Spam"
678
- #~ msgstr "スパム"
679
- #~ msgid "Submitted on: <b>%1$s</b>"
680
- #~ msgstr "投稿日: <b>%1$s</b>"
681
- #~ msgid ""
682
- #~ "You are about to delete this comment. \n"
683
- #~ " 'Cancel' to stop, 'OK' to delete."
684
- #~ msgstr ""
685
- #~ "このコメントを削除しようとしています。\n"
686
- #~ " 'キャンセル' で中止、'OK' で削除します。"
687
- #~ msgid "Update Comment"
688
- #~ msgstr "コメントを更新"
689
- #~ msgid "Name:"
690
- #~ msgstr "名前:"
691
- #~ msgid "E-mail (%s):"
692
- #~ msgstr "メールアドレス (%s):"
693
- #~ msgid "send e-mail"
694
- #~ msgstr "メールを送信"
695
- #~ msgid "E-mail:"
696
- #~ msgstr "メールアドレス:"
697
- #~ msgid "visit site"
698
- #~ msgstr "サイトを開く"
699
- #~ msgid "URL (%s):"
700
- #~ msgstr "URL (%s):"
701
- #~ msgid "URL:"
702
- #~ msgstr "URL:"
703
- #~ msgid "Link Categories"
704
- #~ msgstr "リンクカテゴリー"
705
- #~ msgid "Categories deleted."
706
- #~ msgstr "カテゴリーを削除しました。"
707
- #~ msgid ""
708
- #~ "<strong>Note:</strong><br />Deleting a category does not delete the links "
709
- #~ "in that category. Instead, links that were only assigned to the deleted "
710
- #~ "category are set to the category <strong>%s</strong>."
711
- #~ msgstr ""
712
- #~ "<strong>メモ: </strong><br />カテゴリーを削除しても、そのカテゴリー内のリ"
713
- #~ "ンクは削除されません。削除するカテゴリーだけに属しているリンクは <strong>%"
714
- #~ "s</strong> カテゴリーに移動されます。"
715
- #~ msgid "Add Link Category"
716
- #~ msgstr "リンクカテゴリーの追加"
717
- #~ msgid "Link Category name"
718
- #~ msgstr "リンクカテゴリー名"
719
- #~ msgid "Link Category slug"
720
- #~ msgstr "リンクカテゴリーのスラッグ"
721
- #~ msgid "Description (optional)"
722
- #~ msgstr "説明 (オプション)"
723
- #~ msgid "Edit Link Category"
724
- #~ msgstr "リンクカテゴリーの編集"
725
- #~ msgid "<a href=\"%s\">Links</a> / Edit Link"
726
- #~ msgstr "<a href=\"%s\">リンク</a> / リンクを編集"
727
- #~ msgid "Update Link"
728
- #~ msgstr "リンクを更新"
729
- #~ msgid "<a href=\"%s\">Links</a> / Add New Link"
730
- #~ msgstr "<a href=\"%s\">リンク</a> / リンクの追加"
731
- #~ msgid "Add Link"
732
- #~ msgstr "リンク追加"
733
- #~ msgid "Visit Link"
734
- #~ msgstr "リンクを表示"
735
- #~ msgid "Keep this link private"
736
- #~ msgstr "このリンクを非公開にする"
737
- #~ msgid ""
738
- #~ "You are about to delete this link '%s'\n"
739
- #~ " 'Cancel' to stop, 'OK' to delete."
740
- #~ msgstr ""
741
- #~ "リンク '%s' を削除しようとしています。\n"
742
- #~ "削除するには 'OK' を、中止するには 'キャンセル' をクリックしてください。"
743
- #~ msgid "Target"
744
- #~ msgstr "リンクターゲット"
745
- #~ msgid "<code>_blank</code> - new window or tab."
746
- #~ msgstr "<code>_blank</code> - 新規ウインドウもしくはタブ"
747
- #~ msgid "<code>_top</code> - current window or tab, with no frames."
748
- #~ msgstr "<code>_top</code> - 閲覧中のウインドウもしくはタブ、フレームなし"
749
- #~ msgid "<code>_none</code> - same window or tab."
750
- #~ msgstr "<code>_none</code> - 同じウインドウもしくはタブ"
751
- #~ msgid "Choose the target frame for your link."
752
- #~ msgstr "ターゲットフレームを選択してください。"
753
- #~ msgid "rel:"
754
- #~ msgstr "rel:"
755
- #~ msgid "identity"
756
- #~ msgstr "本人"
757
- #~ msgid "another web address of mine"
758
- #~ msgstr "自分の別のウェブアドレス"
759
- #~ msgid "friendship"
760
- #~ msgstr "友情関係"
761
- #~ msgid "contact"
762
- #~ msgstr "連絡先を知っている"
763
- #~ msgid "acquaintance"
764
- #~ msgstr "知人"
765
- #~ msgid "friend"
766
- #~ msgstr "友人"
767
- #~ msgid "none"
768
- #~ msgstr "なし"
769
- #~ msgid "physical"
770
- #~ msgstr "実際的関係"
771
- #~ msgid "met"
772
- #~ msgstr "面識がある"
773
- #~ msgid "professional"
774
- #~ msgstr "仕事関係"
775
- #~ msgid "co-worker"
776
- #~ msgstr "同僚"
777
- #~ msgid "colleague"
778
- #~ msgstr "仕事仲間"
779
- #~ msgid "geographical"
780
- #~ msgstr "地理的関係"
781
- #~ msgid "co-resident"
782
- #~ msgstr "同居人"
783
- #~ msgid "neighbor"
784
- #~ msgstr "近所"
785
- #~ msgid "family"
786
- #~ msgstr "家族関係"
787
- #~ msgid "child"
788
- #~ msgstr "子供"
789
- #~ msgid "kin"
790
- #~ msgstr "血縁"
791
- #~ msgid "parent"
792
- #~ msgstr "親"
793
- #~ msgid "sibling"
794
- #~ msgstr "兄弟姉妹"
795
- #~ msgid "spouse"
796
- #~ msgstr "配偶者"
797
- #~ msgid "romantic"
798
- #~ msgstr "恋愛関係"
799
- #~ msgid "muse"
800
- #~ msgstr "片思い"
801
- #~ msgid "crush"
802
- #~ msgstr "夢中"
803
- #~ msgid "date"
804
- #~ msgstr "デート中"
805
- #~ msgid "sweetheart"
806
- #~ msgstr "恋人"
807
- #~ msgid ""
808
- #~ "If the link is to a person, you can specify your relationship with them "
809
- #~ "using the above form. If you would like to learn more about the idea "
810
- #~ "check out <a href=\"http://gmpg.org/xfn/\">XFN</a>."
811
- #~ msgstr ""
812
- #~ "このリンクが人に関するものなら、あなたとの関係を上のフォームで指定できま"
813
- #~ "す。このアイデアについてもっと知りたければ <a href=\"http://gmpg.org/xfn/"
814
- #~ "\">XFN</a> を参照するとよいでしょう。"
815
- #~ msgid "Link Relationship (XFN)"
816
- #~ msgstr "自分とリンク先の関係/間柄 (XFN)"
817
- #~ msgid "Image Address"
818
- #~ msgstr "画像のアドレス"
819
- #~ msgid "RSS Address"
820
- #~ msgstr "RSS のアドレス"
821
- #~ msgid "Notes"
822
- #~ msgstr "メモ"
823
- #~ msgid "Rating"
824
- #~ msgstr "評価"
825
- #~ msgid "(Leave at 0 for no rating.)"
826
- #~ msgstr "(評価しない場合は 0 のまま)"
827
- #~ msgid "Advanced"
828
- #~ msgstr "詳細"
829
- #~ msgid "Link added."
830
- #~ msgstr "リンクを追加しました。"
831
- #~ msgid "Name"
832
- #~ msgstr "名前"
833
- #~ msgid "Example: Nifty blogging software"
834
- #~ msgstr "例: すばらしいブログソフトウェア"
835
- #~ msgid "Web Address"
836
- #~ msgstr "ウェブアドレス"
837
- #~ msgid ""
838
- #~ "Example: <code>http://wordpress.org/</code> &#8212; don&#8217;t forget "
839
- #~ "the <code>http://</code>"
840
- #~ msgstr ""
841
- #~ "例: <code>http://wordpress.org/</code> &#8212; <code>http://</code> を忘れ"
842
- #~ "ずに"
843
- #~ msgid ""
844
- #~ "This will be shown when someone hovers over the link in the blogroll, or "
845
- #~ "optionally below the link."
846
- #~ msgstr ""
847
- #~ "この説明はブログロールのリンク上にマウスポインタを重ねたときに表示されま"
848
- #~ "す。リンクの下に表示される場合もあります。"
849
- #~ msgid "Page updated. <a href=\"%s\">View page</a>"
850
- #~ msgstr "ページを更新しました。<a href=\"%s\">ページを表示する</a>"
851
- #~ msgid "Page published. <a href=\"%s\">View page</a>"
852
- #~ msgstr "ページを公開しました。<a href=\"%s\">ページを表示する</a>"
853
- #~ msgid "Page submitted. <a href=\"%s\">Preview page</a>"
854
- #~ msgstr "ページを送信しました。<a href=\"%s\">ページをプレビューする</a>"
855
- #~ msgid "Page restored to revision from %s"
856
- #~ msgstr "リビジョン %s からページを復元しました。"
857
- #~ msgid ""
858
- #~ "There is an autosave of this page that is more recent than the version "
859
- #~ "below. <a href=\"%s\">View the autosave</a>."
860
- #~ msgstr ""
861
- #~ "下記のバージョンよりも新しい自動保存されたページがあります。<a href=\"%s"
862
- #~ "\">自動保存を見る</a>。"
863
- #~ msgid ""
864
- #~ "You are about to delete this page '%s'\n"
865
- #~ " 'Cancel' to stop, 'OK' to delete."
866
- #~ msgstr ""
867
- #~ "このページ '%s' を削除しようとしています。\n"
868
- #~ "'キャンセル' で中止、'OK' で削除します。"
869
- #~ msgid "Update Page"
870
- #~ msgstr "ページを更新"
871
- #~ msgid "Keep this page private"
872
- #~ msgstr "このページを非公開のままにする"
873
- #~ msgid "Page Password"
874
- #~ msgstr "ページのパスワード"
875
- #~ msgid "Password Protect This Page"
876
- #~ msgstr "パスワードでページを保護"
877
- #~ msgid ""
878
- #~ "Setting a password will require people who visit your blog to enter the "
879
- #~ "above password to view this page and its comments."
880
- #~ msgstr ""
881
- #~ "ここにパスワードを設定しておくと、この投稿とそのコメントを見るときにパス"
882
- #~ "ワードの入力が必要になります。"
883
- #~ msgid "Parent"
884
- #~ msgstr "親"
885
- #~ msgid "Page Parent"
886
- #~ msgstr "親ページ"
887
- #~ msgid "Main Page (no parent)"
888
- #~ msgstr "メインページ (親ページなし) "
889
- #~ msgid ""
890
- #~ "You can arrange your pages in hierarchies, for example you could have an "
891
- #~ "&#8220;About&#8221; page that has &#8220;Life Story&#8221; and &#8220;My "
892
- #~ "Dog&#8221; pages under it. There are no limits to how deeply nested you "
893
- #~ "can make pages."
894
- #~ msgstr ""
895
- #~ "ページ間に階層構造を持たせることができます。例えば、&#8220;自己紹介"
896
- #~ "&#8221; ページの下に &#8220;身の上話&#8221; や &#8220;愛犬のこと&#8221; と"
897
- #~ "いったページを置くことができます。ページ階層の深さに制限はありません。"
898
- #~ msgid "Template"
899
- #~ msgstr "テンプレート"
900
- #~ msgid "Page Template"
901
- #~ msgstr "ページテンプレート"
902
- #~ msgid "Default Template"
903
- #~ msgstr "デフォルトテンプレート"
904
- #~ msgid ""
905
- #~ "Some themes have custom templates you can use for certain pages that "
906
- #~ "might have additional features or custom layouts. If so, you&#8217;ll see "
907
- #~ "them above."
908
- #~ msgstr ""
909
- #~ "一部のテーマには、特定のページのために特別な機能やレイアウトを追加するカス"
910
- #~ "タムテンプレートが用意されています。お使いのテーマにそれがあれば上のメ"
911
- #~ "ニューに表示されます。"
912
- #~ msgid "Order"
913
- #~ msgstr "順序"
914
- #~ msgid "Page Order"
915
- #~ msgstr "ページ順序"
916
- #~ msgid ""
917
- #~ "Pages are usually ordered alphabetically, but you can put a number above "
918
- #~ "to change the order pages appear in. (We know this is a little janky, "
919
- #~ "it&#8217;ll be better in future releases.)"
920
- #~ msgstr ""
921
- #~ "通常、ページはアルファベット順で表示されますが、上に順位を指定すれば表示順"
922
- #~ "を変更できます。(この機能は少しわかりにくいですね。今後のリリースで改善が"
923
- #~ "あるでしょう)"
924
- #~ msgid "Attributes"
925
- #~ msgstr "属性"
926
- #~ msgid "Allow Comments"
927
- #~ msgstr "コメントを許可"
928
- #~ msgid "Allow Pings"
929
- #~ msgstr "トラックバック/ピンバックを許可"
930
- #~ msgid ""
931
- #~ "These settings apply to this page only. &#8220;Pings&#8221; are <a href="
932
- #~ "\"http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments\" "
933
- #~ "target=\"_blank\">trackbacks and pingbacks</a>."
934
- #~ msgstr ""
935
- #~ "これらの設定はこのページにのみ適用されます。<a href=\"http://wpdocs."
936
- #~ "sourceforge.jp/Introduction_to_Blogging#Managing_Comments\" target="
937
- #~ "\"_blank\">トラックバックとピンバック</a>は合わせて &#8220;ピン&#8221; と"
938
- #~ "も呼ばれます。"
939
- #~ msgid "Page Slug"
940
- #~ msgstr "ページスラッグ"
941
- #~ msgid "Page Author"
942
- #~ msgstr "ページ作成者"
943
- #~ msgid "Page Revisions"
944
- #~ msgstr "ページリビジョン"
945
- #~ msgid "You are not allowed to delete this page."
946
- #~ msgstr "このページを削除する権限がありません。"
947
- #~ msgid "Error in deleting..."
948
- #~ msgstr "削除中にエラー発生..."
949
- #~ msgid "Edit Pages"
950
- #~ msgstr "ページの編集"
951
- #~ msgctxt "page"
952
- #~ msgid "Published"
953
- #~ msgstr "公開済み"
954
- #~ msgid "Published pages"
955
- #~ msgstr "公開済みページ"
956
- #~ msgctxt "page"
957
- #~ msgid "Published <span class=\"count\">(%s)</span>"
958
- #~ msgid_plural "Published <span class=\"count\">(%s)</span>"
959
- #~ msgstr[0] "公開済み <span class=\"count\">(%s)</span>"
960
- #~ msgctxt "page"
961
- #~ msgid "Scheduled"
962
- #~ msgstr "予約済み"
963
- #~ msgid "Scheduled pages"
964
- #~ msgstr "予約済みページ"
965
- #~ msgctxt "page"
966
- #~ msgid "Scheduled <span class=\"count\">(%s)</span>"
967
- #~ msgid_plural "Scheduled <span class=\"count\">(%s)</span>"
968
- #~ msgstr[0] "予約済み <span class=\"count\">(%s)</span>"
969
- #~ msgctxt "page"
970
- #~ msgid "Pending Review"
971
- #~ msgstr "レビュー待ち"
972
- #~ msgid "Pending pages"
973
- #~ msgstr "レビュー待ちページ"
974
- #~ msgctxt "page"
975
- #~ msgid "Pending Review <span class=\"count\">(%s)</span>"
976
- #~ msgid_plural "Pending Review <span class=\"count\">(%s)</span>"
977
- #~ msgstr[0] "レビュー待ち <span class=\"count\">(%s)</span>"
978
- #~ msgctxt "page"
979
- #~ msgid "Draft"
980
- #~ msgstr "下書き"
981
- #~ msgctxt "manage posts header"
982
- #~ msgid "Drafts"
983
- #~ msgstr "下書き"
984
- #~ msgctxt "page"
985
- #~ msgid "Draft <span class=\"count\">(%s)</span>"
986
- #~ msgid_plural "Drafts <span class=\"count\">(%s)</span>"
987
- #~ msgstr[0] "下書き <span class=\"count\">(%s)</span>"
988
- #~ msgctxt "page"
989
- #~ msgid "Private"
990
- #~ msgstr "非公開"
991
- #~ msgid "Private pages"
992
- #~ msgstr "非公開ページ"
993
- #~ msgctxt "page"
994
- #~ msgid "Private <span class=\"count\">(%s)</span>"
995
- #~ msgid_plural "Private <span class=\"count\">(%s)</span>"
996
- #~ msgstr[0] "非公開 <span class=\"count\">(%s)</span>"
997
- #~ msgid "Pages"
998
- #~ msgstr "ページ"
999
- #~ msgid "%s page updated."
1000
- #~ msgid_plural "%s pages updated."
1001
- #~ msgstr[0] "%s件のページを更新しました。"
1002
- #~ msgid "%s page not updated, invalid parent page specified."
1003
- #~ msgid_plural "%s pages not updated, invalid parent page specified."
1004
- #~ msgstr[0] ""
1005
- #~ "%s件のページが更新されませんでした。不正な親ページが指定されています。"
1006
- #~ msgid "%s page not updated, somebody is editing it."
1007
- #~ msgid_plural "%s pages not updated, somebody is editing them."
1008
- #~ msgstr[0] "%s件のページが更新されませんでした。他のユーザーが編集中です。"
1009
- #~ msgid "Page deleted."
1010
- #~ msgid_plural "%s pages deleted."
1011
- #~ msgstr[0] "%s件のページを削除しました。"
1012
- #~ msgid "Your page has been saved."
1013
- #~ msgstr "ページを保存しました。"
1014
- #~ msgid "View page"
1015
- #~ msgstr "ページを表示"
1016
- #~ msgid "Edit page"
1017
- #~ msgstr "ページを編集"
1018
- #~ msgctxt "pages"
1019
- #~ msgid "All <span class=\"count\">(%s)</span>"
1020
- #~ msgid_plural "All <span class=\"count\">(%s)</span>"
1021
- #~ msgstr[0] "すべて <span class=\"count\">(%s)</span>"
1022
- #~ msgid "Search Pages"
1023
- #~ msgstr "ページを検索"
1024
- #~ msgid "No pages found."
1025
- #~ msgstr "ページは見つかりませんでした。"
1026
- #~ msgctxt "column name"
1027
- #~ msgid "Comment"
1028
- #~ msgstr "コメント"
1029
- #~ msgid "Submitted"
1030
- #~ msgstr "送信日時"
1031
- #~ msgid "A tag was not selected for editing."
1032
- #~ msgstr "編集するタグが選択されていません。"
1033
- #~ msgid "Edit Tag"
1034
- #~ msgstr "タグの編集"
1035
- #~ msgid "Tag name"
1036
- #~ msgstr "タグ名"
1037
- #~ msgid "The name is how the tag appears on your site."
1038
- #~ msgstr "この名前でタグがサイト上に表示されます。"
1039
- #~ msgid "Tag slug"
1040
- #~ msgstr "タグスラッグ"
1041
- #~ msgid "Update Tag"
1042
- #~ msgstr "タグを更新"
1043
- #~ msgid "Tags"
1044
- #~ msgstr "タグ"
1045
- #~ msgid "Invalid taxonomy"
1046
- #~ msgstr "無効な分類"
1047
- #~ msgid "Tag added."
1048
- #~ msgstr "タグを追加しました。"
1049
- #~ msgid "Tag deleted."
1050
- #~ msgstr "タグを削除しました。"
1051
- #~ msgid "Tag updated."
1052
- #~ msgstr "タグを更新しました。"
1053
- #~ msgid "Tag not added."
1054
- #~ msgstr "タグは追加されませんでした。"
1055
- #~ msgid "Tags deleted."
1056
- #~ msgstr "タグを削除しました。"
1057
- #~ msgid "Search Tags"
1058
- #~ msgstr "タグを検索"
1059
- #~ msgid "Popular Tags"
1060
- #~ msgstr "よく使われているタグ"
1061
- #~ msgid "Add a New Tag"
1062
- #~ msgstr "新規タグの追加"
1063
- #~ msgid "Add Tag"
1064
- #~ msgstr "タグの追加"
1065
- #~ msgid "You are not allowed to delete this post."
1066
- #~ msgstr "この投稿を削除する権限がありません。"
1067
- #~ msgid "Edit Posts"
1068
- #~ msgstr "投稿編集"
1069
- #~ msgid "Your post has been saved."
1070
- #~ msgstr "投稿を保存しました。"
1071
- #~ msgid "View post"
1072
- #~ msgstr "投稿を表示"
1073
- #~ msgid "Edit post"
1074
- #~ msgstr "投稿の編集"
1075
- #~ msgid "%s post updated."
1076
- #~ msgid_plural "%s posts updated."
1077
- #~ msgstr[0] "%s件の投稿を更新しました。"
1078
- #~ msgid "%s post not updated, somebody is editing it."
1079
- #~ msgid_plural "%s posts not updated, somebody is editing them."
1080
- #~ msgstr[0] "%s件の投稿が更新されませんでした。他のユーザーが編集中です。"
1081
- #~ msgid "Post deleted."
1082
- #~ msgid_plural "%s posts deleted."
1083
- #~ msgstr[0] "%s件の投稿を削除しました。"
1084
- #~ msgctxt "posts"
1085
- #~ msgid "All <span class=\"count\">(%s)</span>"
1086
- #~ msgid_plural "All <span class=\"count\">(%s)</span>"
1087
- #~ msgstr[0] "すべて <span class=\"count\">(%s)</span>"
1088
- #~ msgid "Search Posts"
1089
- #~ msgstr "投稿を検索"
1090
- #~ msgid "Show all dates"
1091
- #~ msgstr "日付指定なし"
1092
- #~ msgid "View all categories"
1093
- #~ msgstr "カテゴリー指定なし"
1094
- #~ msgid "List View"
1095
- #~ msgstr "一覧表示"
1096
- #~ msgid "Excerpt View"
1097
- #~ msgstr "抜粋表示"
1098
- #~ msgid "No posts found"
1099
- #~ msgstr "投稿は見つかりませんでした。"
1100
- #~ msgid "Export"
1101
- #~ msgstr "エクスポート"
1102
- #~ msgid ""
1103
- #~ "When you click the button below WordPress will create an XML file for you "
1104
- #~ "to save to your computer."
1105
- #~ msgstr ""
1106
- #~ "下のボタンをクリックすると、WordPress がローカルに保存するための XML ファ"
1107
- #~ "イルを作成します。"
1108
- #~ msgid ""
1109
- #~ "This format, which we call WordPress eXtended RSS or WXR, will contain "
1110
- #~ "your posts, pages, comments, custom fields, categories, and tags."
1111
- #~ msgstr ""
1112
- #~ "WordPress eXtended RSS もしくは WXR と呼んでいるこのフォーマットには、投"
1113
- #~ "稿、ページ、コメント、カスタムフィールド、カテゴリー、タグが含まれます。"
1114
- #~ msgid ""
1115
- #~ "Once you&#8217;ve saved the download file, you can use the Import "
1116
- #~ "function on another WordPress blog to import this blog."
1117
- #~ msgstr ""
1118
- #~ "このダウンロードファイルを保存すれば、別の WordPress のインポート機能を使"
1119
- #~ "用してこのブログをインポートすることができます。"
1120
- #~ msgid "Options"
1121
- #~ msgstr "設定"
1122
- #~ msgid "Restrict Author"
1123
- #~ msgstr "エクスポートする作成者"
1124
- #~ msgid "All Authors"
1125
- #~ msgstr "すべての作成者"
1126
- #~ msgid "Download Export File"
1127
- #~ msgstr "エクスポートファイルをダウンロード"
1128
- #~ msgid ""
1129
- #~ "If you have posts or comments in another system, WordPress can import "
1130
- #~ "those into this blog. To get started, choose a system to import from "
1131
- #~ "below:"
1132
- #~ msgstr ""
1133
- #~ "別のブログシステムに投稿やコメントがある場合、WordPress はそれらの投稿等を"
1134
- #~ "インポートすることができます。この作業を始めるには以下からインポートするブ"
1135
- #~ "ログシステムを選択してください:"
1136
- #~ msgid "No importers are available."
1137
- #~ msgstr "利用可能なインポーターがありません。"
1138
- #~ msgid "Import Blogger"
1139
- #~ msgstr "Blogger のインポート"
1140
- #~ msgid ""
1141
- #~ "Howdy! This importer allows you to import posts and comments from your "
1142
- #~ "Blogger account into your WordPress blog."
1143
- #~ msgstr ""
1144
- #~ "こんにちは ! このインポーターによって、Blogger のあなたの投稿記事とコメン"
1145
- #~ "トをこの WordPress へインポートすることができます。"
1146
- #~ msgid ""
1147
- #~ "To use this importer, you must have a Google account and an upgraded "
1148
- #~ "(New, was Beta) blog hosted on blogspot.com or a custom domain (not FTP)."
1149
- #~ msgstr ""
1150
- #~ "このインポーターを使用するには、Google アカウントとアップグレードした (新"
1151
- #~ "しい、かつてのベータ版) ブログが必要です。また、そのブログは blogspot.com "
1152
- #~ "上もしくはカスタムなドメイン上 (FTP ではなく) になくてはなりません。"
1153
- #~ msgid ""
1154
- #~ "The first thing you need to do is tell Blogger to let WordPress access "
1155
- #~ "your account. You will be sent back here after providing authorization."
1156
- #~ msgstr ""
1157
- #~ "まずは、あなたのアカウントに WordPress がアクセスできるように Blogger を設"
1158
- #~ "定してください。認証後にこの画面に戻ってきます。"
1159
- #~ msgid "Authorize"
1160
- #~ msgstr "認証する"
1161
- #~ msgid "Authorization failed"
1162
- #~ msgstr "認証失敗"
1163
- #~ msgid ""
1164
- #~ "Something went wrong. If the problem persists, send this info to support:"
1165
- #~ msgstr ""
1166
- #~ "何かがうまくいかなかったようです。もしこの問題が続くようなら、以下の情報を"
1167
- #~ "サポートへ送ってください:"
1168
- #~ msgid "Trouble signing in"
1169
- #~ msgstr "サインインに問題が生じました"
1170
- #~ msgid "We were not able to gain access to your account. Try starting over."
1171
- #~ msgstr ""
1172
- #~ "アカウントにアクセスできませんでした。最初からやり直してみてください。"
1173
- #~ msgid "No blogs found"
1174
- #~ msgstr "ブログは見つかりませんでした"
1175
- #~ msgid ""
1176
- #~ "We were able to log in but there were no blogs. Try a different account "
1177
- #~ "next time."
1178
- #~ msgstr ""
1179
- #~ "ログインはできましたがブログがありませんでした。次は別のアカウントを試して"
1180
- #~ "ください。"
1181
- #~ msgid "Continue"
1182
- #~ msgstr "続ける"
1183
- #~ msgid "Importing..."
1184
- #~ msgstr "インポート中..."
1185
- #~ msgid "Set Authors"
1186
- #~ msgstr "作成者の設定"
1187
- #~ msgid "Preparing author mapping form..."
1188
- #~ msgstr "作成者の割り当てを準備中..."
1189
- #~ msgid "Final Step: Author Mapping"
1190
- #~ msgstr "最後のステップ: 作成者の割り当て"
1191
- #~ msgid "Nothing was imported. Had you already imported this blog?"
1192
- #~ msgstr ""
1193
- #~ "何もインポートされませんでした。このブログはすでにインポート済みではありま"
1194
- #~ "せんか ?"
1195
- #~ msgid "Blogger Blogs"
1196
- #~ msgstr "Blogger ブログ"
1197
- #~ msgid "Blog Name"
1198
- #~ msgstr "ブログ名"
1199
- #~ msgid "Blog URL"
1200
- #~ msgstr "ブログの URL"
1201
- #~ msgid "The Magic Button"
1202
- #~ msgstr "魔法のボタン"
1203
- #~ msgid "Posts"
1204
- #~ msgstr "投稿"
1205
- #~ msgid ""
1206
- #~ "This feature requires Javascript but it seems to be disabled. Please "
1207
- #~ "enable Javascript and then reload this page. Don&#8217;t worry, you can "
1208
- #~ "turn it back off when you&#8217;re done."
1209
- #~ msgstr ""
1210
- #~ "この機能には JavaScript が必要ですが、現在無効になっているようです。"
1211
- #~ "JavaScript を有効にしてこのページを再読込みしてください。ご心配なく、この"
1212
- #~ "作業が終わったら無効にしてかまいません。"
1213
- #~ msgid ""
1214
- #~ "All posts were imported with the current user as author. Use this form to "
1215
- #~ "move each Blogger user&#8217;s posts to a different WordPress user. You "
1216
- #~ "may <a href=\"users.php\">add users</a> and then return to this page and "
1217
- #~ "complete the user mapping. This form may be used as many times as you "
1218
- #~ "like until you activate the &#8220;Restart&#8221; function below."
1219
- #~ msgstr ""
1220
- #~ "今ログイン中のユーザーを作成者としてすべての投稿をインポートしました。この"
1221
- #~ "フォームを使用して Blogger の各ユーザーの投稿を WordPress の別のユーザーに"
1222
- #~ "割り当てることができます。また、<a href=\"users.php\">ユーザーを追加</a>後"
1223
- #~ "にこのページに戻って、投稿をそのユーザーに割り当てることもできます。この"
1224
- #~ "フォームは下記の &#8220;再スタート&#8221; 機能を有効化するまで何度でも使"
1225
- #~ "用することができます。"
1226
- #~ msgid "Author mapping"
1227
- #~ msgstr "作成者の割り当て"
1228
- #~ msgid "Blogger username"
1229
- #~ msgstr "Blogger のユーザー名"
1230
- #~ msgid "WordPress login"
1231
- #~ msgstr "WordPress のユーザー名 "
1232
- #~ msgid "Could not connect to https://www.google.com"
1233
- #~ msgstr "https://www.google.com に接続することができません"
1234
- #~ msgid ""
1235
- #~ "There was a problem opening a secure connection to Google. This is what "
1236
- #~ "went wrong:"
1237
- #~ msgstr ""
1238
- #~ "Google との安全な接続の開始に問題が生じました。問題は次のとおりです:"
1239
- #~ msgid "Could not connect to %s"
1240
- #~ msgstr "%s に接続できませんでした"
1241
- #~ msgid ""
1242
- #~ "There was a problem opening a connection to Blogger. This is what went "
1243
- #~ "wrong:"
1244
- #~ msgstr "Blogger との接続に問題が生じました。問題は次のとおりです:"
1245
- #~ msgid "Congratulations!"
1246
- #~ msgstr "おめでとうございます !"
1247
- #~ msgid ""
1248
- #~ "Now that you have imported your Blogger blog into WordPress, what are you "
1249
- #~ "going to do? Here are some suggestions:"
1250
- #~ msgstr ""
1251
- #~ "あなたの Blogger ブログを WordPress にインポートしました。次に何をします"
1252
- #~ "か ? いくつか提案してみましょう。"
1253
- #~ msgid "That was hard work! Take a break."
1254
- #~ msgstr "大変な作業でしたね ! ひと休みしてください。"
1255
- #~ msgid ""
1256
- #~ "In case you haven&#8217;t done it already, you can import the posts from "
1257
- #~ "your other blogs:"
1258
- #~ msgstr ""
1259
- #~ "まだ完了していないようでしたら、他のブログからも投稿をインポートすることが"
1260
- #~ "できます。"
1261
- #~ msgid ""
1262
- #~ "Go to <a href=\"%s\" target=\"%s\">Authors &amp; Users</a>, where you can "
1263
- #~ "modify the new user(s) or delete them. If you want to make all of the "
1264
- #~ "imported posts yours, you will be given that option when you delete the "
1265
- #~ "new authors."
1266
- #~ msgstr ""
1267
- #~ "<a href=\"%s\" target=\"%s\">投稿者とユーザー</a>のページでインポートした"
1268
- #~ "新しいユーザーの設定や削除を行うことができます。インポートしたすべての投稿"
1269
- #~ "を自分の投稿として割り当てるには、インポートした新しい投稿者を削除するとき"
1270
- #~ "に提示されるオプションで自分のユーザー名を選択してください。"
1271
- #~ msgid "For security, click the link below to reset this importer."
1272
- #~ msgstr ""
1273
- #~ "あなたの情報を保護するため、下のリンクをクリックしてこのインポーターをリ"
1274
- #~ "セットしてください。"
1275
- #~ msgid "Restart"
1276
- #~ msgstr "再スタート"
1277
- #~ msgid ""
1278
- #~ "We have saved some information about your Blogger account in your "
1279
- #~ "WordPress database. Clearing this information will allow you to start "
1280
- #~ "over. Restarting will not affect any posts you have already imported. If "
1281
- #~ "you attempt to re-import a blog, duplicate posts and comments will be "
1282
- #~ "skipped."
1283
- #~ msgstr ""
1284
- #~ "WordPress のデータベースに Blogger アカウント情報の一部を保存しました。こ"
1285
- #~ "の情報を削除するともう一度やり直すことができます。やり直してもすでにイン"
1286
- #~ "ポート済みの投稿には影響しません。再インポート時に重複した投稿やコメントが"
1287
- #~ "あればスキップされます。"
1288
- #~ msgid "Clear account information"
1289
- #~ msgstr "アカウント情報を消去"
1290
- #~ msgid "Blogger"
1291
- #~ msgstr "Blogger"
1292
- #~ msgid "Import posts, comments, and users from a Blogger blog."
1293
- #~ msgstr "Blogger ブログから投稿、コメント、ユーザーをインポートします。"
1294
- #~ msgid "Import Blogware"
1295
- #~ msgstr "Blogware のインポート"
1296
- #~ msgid ""
1297
- #~ "Howdy! This importer allows you to extract posts from Blogware XML export "
1298
- #~ "file into your blog. Pick a Blogware file to upload and click Import."
1299
- #~ msgstr ""
1300
- #~ "こんにちは ! このインポーターは Blogware XML エクスポートファイルから投稿"
1301
- #~ "を抜き出して、あなたのブログにインポートします。アップロードする Blogware "
1302
- #~ "ファイルを選択してインポートをクリックしてください。"
1303
- #~ msgid "Post <em>%s</em> already exists."
1304
- #~ msgstr "投稿 <em>%s</em> はすでに存在しています。"
1305
- #~ msgid "Importing post <em>%s</em>..."
1306
- #~ msgstr "投稿 <em>%s</em> のインポート中..."
1307
- #~ msgid "Couldn&#8217;t get post ID"
1308
- #~ msgstr "post ID を取得できませんでした"
1309
- #~ msgid "%s comment"
1310
- #~ msgid_plural "%s comments"
1311
- #~ msgstr[0] "%s件のコメント"
1312
- #~ msgid "All done. <a href=\"%s\">Have fun!</a>"
1313
- #~ msgstr "すべて完了しました。<a href=\"%s\">ではお楽しみください ! </a>"
1314
- #~ msgid "Blogware"
1315
- #~ msgstr "Blogware"
1316
- #~ msgid "Import posts from Blogware."
1317
- #~ msgstr "Blogware から投稿をインポートします。"
1318
- #~ msgid "Import Bunny&#8217;s Technorati Tags"
1319
- #~ msgstr "Bunny&#8217;s Technorati Tags のインポート"
1320
- #~ msgid ""
1321
- #~ "Steps may take a few minutes depending on the size of your database. "
1322
- #~ "Please be patient."
1323
- #~ msgstr ""
1324
- #~ "この作業はあなたのデータベースの大きさによっては数分かかることがありますの"
1325
- #~ "で、あせらずお待ちください。"
1326
- #~ msgid ""
1327
- #~ "Howdy! This imports tags from Bunny&#8217;s Technorati Tags into "
1328
- #~ "WordPress tags."
1329
- #~ msgstr ""
1330
- #~ "こんにちは ! このインポーターは Bunny&#8217;s Technorati Tags のタグを "
1331
- #~ "WordPress のタグにインポートします。"
1332
- #~ msgid "This is suitable for Bunny&#8217;s Technorati Tags version 0.6."
1333
- #~ msgstr ""
1334
- #~ "このインポーターは Bunny&#8217;s Technorati Tags バージョン 0.6 用です。"
1335
- #~ msgid ""
1336
- #~ "All existing Bunny&#8217;s Technorati Tags will be removed after import."
1337
- #~ msgstr ""
1338
- #~ "インポート後、既存の Bunny&#8217;s Technorati Tags はすべて削除されます。"
1339
- #~ msgid "Don&#8217;t be stupid - backup your database before proceeding!"
1340
- #~ msgstr "注意 - 先に進む前に必ずデータベースをバックアップしてください !"
1341
- #~ msgid "Import Tags"
1342
- #~ msgstr "タグをインポート"
1343
- #~ msgid "Reading Bunny&#8217;s Technorati Tags&#8230;"
1344
- #~ msgstr "Bunny&#8217;s Technorati Tags のタグを読み込み中&#8230;"
1345
- #~ msgid "No Tags Found!"
1346
- #~ msgstr "タグは見つかりませんでした !"
1347
- #~ msgid "Done! <strong>%s</strong> post with tags were read."
1348
- #~ msgid_plural "Done! <strong>%s</strong> posts with tags were read."
1349
- #~ msgstr[0] ""
1350
- #~ "完了 ! タグ付けされた<strong>%s</strong>件の投稿が読み込まれました。"
1351
- #~ msgid "Next"
1352
- #~ msgstr "次ページへ"
1353
- #~ msgid "Import Complete!"
1354
- #~ msgstr "インポート完了 !"
1355
- #~ msgid "Import Bunny&#8217;s Technorati Tags into WordPress tags."
1356
- #~ msgstr ""
1357
- #~ "Bunny&#8217;s Technorati Tags を WordPress のタグにインポートします。"
1358
- #~ msgid "Import DotClear"
1359
- #~ msgstr "DotClear のインポート"
1360
- #~ msgid ""
1361
- #~ "Howdy! This importer allows you to extract posts from a DotClear database "
1362
- #~ "into your blog. Mileage may vary."
1363
- #~ msgstr ""
1364
- #~ "こんにちは ! このインポーターは DotClear のデータベースから投稿を抜き出し"
1365
- #~ "て、あなたのブログにインポートします。しかし、場合によってはすべてをイン"
1366
- #~ "ポートできないかもしれません。"
1367
- #~ msgid "Your DotClear Configuration settings are as follows:"
1368
- #~ msgstr "あなたの DotClear の設定を入力してください:"
1369
- #~ msgid "Import Categories"
1370
- #~ msgstr "カテゴリーのインポート"
1371
- #~ msgid "Importing Categories..."
1372
- #~ msgstr "カテゴリーのインポート中..."
1373
- #~ msgid "Done! <strong>%1$s</strong> category imported."
1374
- #~ msgid_plural "Done! <strong>%1$s</strong> categories imported."
1375
- #~ msgstr[0] "完了 ! <strong>%1$s</strong>個のカテゴリーをインポートしました。"
1376
- #~ msgid "No Categories to Import!"
1377
- #~ msgstr "インポートするカテゴリーはありません !"
1378
- #~ msgid "Importing Users..."
1379
- #~ msgstr "ユーザーをインポート中..."
1380
- #~ msgid "Done! <strong>%1$s</strong> users imported."
1381
- #~ msgstr "完了 ! <strong>%1$s</strong>人のユーザーをインポートしました。"
1382
- #~ msgid "No Users to Import!"
1383
- #~ msgstr "インポートするユーザーはいません !"
1384
- #~ msgid "Importing Posts..."
1385
- #~ msgstr "投稿のインポート中..."
1386
- #~ msgid "Done! <strong>%1$s</strong> posts imported."
1387
- #~ msgstr "完了 ! <strong>%1$s</strong>件の投稿をインポートしました。"
1388
- #~ msgid "Importing Comments..."
1389
- #~ msgstr "コメントのインポート中..."
1390
- #~ msgid "Done! <strong>%1$s</strong> comments imported."
1391
- #~ msgstr "完了 ! <strong>%1$s</strong>件のコメントをインポートしました。"
1392
- #~ msgid "No Comments to Import!"
1393
- #~ msgstr "インポートするコメントはありませんでした !"
1394
- #~ msgid "Importing Links..."
1395
- #~ msgstr "リンクのインポート中..."
1396
- #~ msgid "Done! <strong>%s</strong> link or link category imported."
1397
- #~ msgid_plural "Done! <strong>%s</strong> links or link categories imported."
1398
- #~ msgstr[0] ""
1399
- #~ "完了 ! <strong>%s</strong>個のリンクもしくはリンクカテゴリーをインポートし"
1400
- #~ "ました。"
1401
- #~ msgid "No Links to Import!"
1402
- #~ msgstr "インポートするリンクはありませんでした !"
1403
- #~ msgid "Import Users"
1404
- #~ msgstr "ユーザーのインポート"
1405
- #~ msgid "Import Posts"
1406
- #~ msgstr "投稿のインポート"
1407
- #~ msgid "Import Comments"
1408
- #~ msgstr "コメントのインポート"
1409
- #~ msgid "Import Links"
1410
- #~ msgstr "リンクのインポート"
1411
- #~ msgid "Finish"
1412
- #~ msgstr "終了"
1413
- #~ msgid ""
1414
- #~ "Welcome to WordPress. We hope (and expect!) that you will find this "
1415
- #~ "platform incredibly rewarding! As a new WordPress user coming from "
1416
- #~ "DotClear, there are some things that we would like to point out. "
1417
- #~ "Hopefully, they will help your transition go as smoothly as possible."
1418
- #~ msgstr ""
1419
- #~ "WordPress へようこそ。このプラットフォームがあなたにとって大いに有意義なも"
1420
- #~ "のになることを望んで (そして期待して) います。DotClear から新しく "
1421
- #~ "WordPress ユーザーになったあなたにいくつかお知らせすることがあります。これ"
1422
- #~ "はインポートをできるかぎり円滑に進めるための手助けとなるでしょう。"
1423
- #~ msgid "Users"
1424
- #~ msgstr "ユーザー"
1425
- #~ msgid ""
1426
- #~ "You have already setup WordPress and have been assigned an administrative "
1427
- #~ "login and password. Forget it. You didn&#8217;t have that login in "
1428
- #~ "DotClear, why should you have it here? Instead we have taken care to "
1429
- #~ "import all of your users into our system. Unfortunately there is one "
1430
- #~ "downside. Because both WordPress and DotClear uses a strong encryption "
1431
- #~ "hash with passwords, it is impossible to decrypt it and we are forced to "
1432
- #~ "assign temporary passwords to all your users. <strong>Every user has the "
1433
- #~ "same username, but their passwords are reset to password123.</strong> So "
1434
- #~ "<a href=\"%1$s\">Login</a> and change it."
1435
- #~ msgstr ""
1436
- #~ "あなたはすでに WordPress のセットアップを終え、管理者権限のログインとパス"
1437
- #~ "ワードを割り当てられています。それは忘れてください。DotClear ではそのログ"
1438
- #~ "インを持っていなかったのに、どうしてここでそのログインを持っているのでしょ"
1439
- #~ "う ? その代わり、このインポーターは入念にあなたのすべてのユーザーをこのシ"
1440
- #~ "ステムにインポートしました。しかし残念なことに一つだけできないことがありま"
1441
- #~ "した。WordPress と DotClear は両方ともパスワードの保存に強力な暗号化ハッ"
1442
- #~ "シュを使用しているので、それを復元することは不可能です。したがって、すべて"
1443
- #~ "のユーザーに一時的なパスワードを割り当てざるをえませんでした。<strong>各"
1444
- #~ "ユーザーは DotClear と同じユーザー名になっていますが、パスワードはリセット"
1445
- #~ "されて「password123」に変更されています</strong>ので、<a href=\"%1$s\">ロ"
1446
- #~ "グイン</a>して変更してください。"
1447
- #~ msgid "Preserving Authors"
1448
- #~ msgstr "投稿者の保存"
1449
- #~ msgid ""
1450
- #~ "Secondly, we have attempted to preserve post authors. If you are the "
1451
- #~ "only author or contributor to your blog, then you are safe. In most "
1452
- #~ "cases, we are successful in this preservation endeavor. However, if we "
1453
- #~ "cannot ascertain the name of the writer due to discrepancies between "
1454
- #~ "database tables, we assign it to you, the administrative user."
1455
- #~ msgstr ""
1456
- #~ "次に、投稿者の保存を試みました。あなたがブログの唯一の投稿者もしくは寄稿者"
1457
- #~ "なら、問題はありません。たいていの場合、この保存作業は成功しています。しか"
1458
- #~ "し、もしデータベースの不一致により書いた人の名前を確定できない場合、管理"
1459
- #~ "ユーザーであるあなたにその名前を割り当てることになります。"
1460
- #~ msgid "Textile"
1461
- #~ msgstr "Textile"
1462
- #~ msgid ""
1463
- #~ "Also, since you&#8217;re coming from DotClear, you probably have been "
1464
- #~ "using Textile to format your comments and posts. If this is the case, we "
1465
- #~ "recommend downloading and installing <a href=\"http://www.huddledmasses."
1466
- #~ "org/category/development/wordpress/textile/\">Textile for WordPress</a>. "
1467
- #~ "Trust me&#8230; You&#8217;ll want it."
1468
- #~ msgstr ""
1469
- #~ "また、DotClear を使用していたのであれば、おそらくコメントや投稿のフォー"
1470
- #~ "マットに Textile を使用していたことと思います。もしそうであれば <a href="
1471
- #~ "\"http://www.huddledmasses.org/category/development/wordpress/textile/"
1472
- #~ "\">Textile for WordPress</a> のダウンロードとインストールをお勧めします。"
1473
- #~ "信じてください&#8230; 必要になりますから。"
1474
- #~ msgid "WordPress Resources"
1475
- #~ msgstr "WordPress の資料"
1476
- #~ msgid ""
1477
- #~ "Finally, there are numerous WordPress resources around the internet. "
1478
- #~ "Some of them are:"
1479
- #~ msgstr ""
1480
- #~ "最後に、WordPress に関する資料はインターネット上にたくさんあります。いくつ"
1481
- #~ "か挙げてみましょう。"
1482
- #~ msgid "<a href=\"http://www.wordpress.org\">The official WordPress site</a>"
1483
- #~ msgstr "<a href=\"http://www.wordpress.org\">WordPress の公式サイト</a>"
1484
- #~ msgid ""
1485
- #~ "<a href=\"http://wordpress.org/support/\">The WordPress support forums</a>"
1486
- #~ msgstr ""
1487
- #~ "<a href=\"http://wordpress.org/support/\">WordPress サポートフォーラム</a>"
1488
- #~ msgid ""
1489
- #~ "<a href=\"http://codex.wordpress.org\">The Codex (In other words, the "
1490
- #~ "WordPress Bible)</a>"
1491
- #~ msgstr ""
1492
- #~ "<a href=\"http://codex.wordpress.org\">Codex (すなわち、WordPress のバイブ"
1493
- #~ "ル) </a>"
1494
- #~ msgid ""
1495
- #~ "That&#8217;s it! What are you waiting for? Go <a href=\"%1$s\">login</a>!"
1496
- #~ msgstr ""
1497
- #~ "以上です ! 何を待っているのですか ? <a href=\"%1$s\">ログイン</a>しましょ"
1498
- #~ "う !"
1499
- #~ msgid "DotClear Database User:"
1500
- #~ msgstr "DotClear データベースユーザー:"
1501
- #~ msgid "DotClear Database Password:"
1502
- #~ msgstr "DotClear データベースのパスワード:"
1503
- #~ msgid "DotClear Database Name:"
1504
- #~ msgstr "DotClear データベース名:"
1505
- #~ msgid "DotClear Database Host:"
1506
- #~ msgstr "DotClear データベースのホスト:"
1507
- #~ msgid "DotClear Table prefix:"
1508
- #~ msgstr "DotClear テーブル接頭語:"
1509
- #~ msgid "Originating character set:"
1510
- #~ msgstr "インポート元の文字コード:"
1511
- #~ msgid "DotClear"
1512
- #~ msgstr "DotClear"
1513
- #~ msgid ""
1514
- #~ "Import categories, users, posts, comments, and links from a DotClear blog."
1515
- #~ msgstr ""
1516
- #~ "DotClear ブログからカテゴリー、ユーザー、投稿、コメント、リンクをインポー"
1517
- #~ "トします。"
1518
- #~ msgid "Import GreyMatter"
1519
- #~ msgstr "GreyMatter のインポート"
1520
- #~ msgid "This is a basic GreyMatter to WordPress import script."
1521
- #~ msgstr ""
1522
- #~ "これは GreyMatter から WordPress へインポートするための基本的なスクリプト"
1523
- #~ "です。"
1524
- #~ msgid "What it does:"
1525
- #~ msgstr "できること:"
1526
- #~ msgid ""
1527
- #~ "Parses gm-authors.cgi to import (new) authors. Everyone is imported at "
1528
- #~ "level 1."
1529
- #~ msgstr ""
1530
- #~ "gm-authors.cgi をパースして (新しい) 投稿者をインポートします。すべての"
1531
- #~ "ユーザーがレベル 1 としてインポートされます。"
1532
- #~ msgid ""
1533
- #~ "Parses the entries cgi files to import posts, comments, and karma on "
1534
- #~ "posts (although karma is not used on WordPress yet).<br />If authors are "
1535
- #~ "found not to be in gm-authors.cgi, imports them at level 0."
1536
- #~ msgstr ""
1537
- #~ "エントリー cgi ファイルをパースして投稿、コメント、投稿のカルマ "
1538
- #~ "(WordPress では使用していませんが) をインポートします。<br />投稿者が gm-"
1539
- #~ "authors.cgi に見当たらない場合は、その投稿者をレベル 0 としてインポートし"
1540
- #~ "ます。"
1541
- #~ msgid ""
1542
- #~ "Detects duplicate entries or comments. If you don't import everything the "
1543
- #~ "first time, or this import should fail in the middle, duplicate entries "
1544
- #~ "will not be made when you try again."
1545
- #~ msgstr ""
1546
- #~ "重複した投稿やコメントを検知します。最初のときにすべてをインポートしなかっ"
1547
- #~ "たり、途中でインポートに失敗しても、再度インポートしたときに投稿やコメント"
1548
- #~ "は重複しません。"
1549
- #~ msgid "What it does not:"
1550
- #~ msgstr "できないこと:"
1551
- #~ msgid ""
1552
- #~ "Parse gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (you can make a CP log "
1553
- #~ "hack if you really feel like it, but I question the need of a CP log)."
1554
- #~ msgstr ""
1555
- #~ "gm-counter.cgi、gm-banlist.cgi、gm-cplog.cgi (もし本当にお望みなら CP log "
1556
- #~ "hack を作成できますが、必要はないでしょう) のパース。"
1557
- #~ msgid "Import gm-templates."
1558
- #~ msgstr "gm-templates のインポート。"
1559
- #~ msgid "Doesn't keep entries on top."
1560
- #~ msgstr "エントリーを一番上に保持しないこと。"
1561
- #~ msgid "Second step: GreyMatter details:"
1562
- #~ msgstr "2 番目のステップ: GreyMatter の詳細:"
1563
- #~ msgid "Path to GM files:"
1564
- #~ msgstr "GM ファイルへのパス:"
1565
- #~ msgid "Path to GM entries:"
1566
- #~ msgstr "GM のエントリーへのパス:"
1567
- #~ msgid "Last entry&#8217;s number:"
1568
- #~ msgstr "最後のエントリーの数:"
1569
- #~ msgid ""
1570
- #~ "This importer will search for files 00000001.cgi to 000-whatever.cgi,<br /"
1571
- #~ ">so you need to enter the number of the last GM post here.<br />(if you "
1572
- #~ "don&#8217;t know that number, just log into your FTP and look it out<br /"
1573
- #~ ">in the entries&#8217; folder)"
1574
- #~ msgstr ""
1575
- #~ "このインポーターでは 00000001.cgi から 000-任意の数.cgi のファイルを検索す"
1576
- #~ "るので<br />GM での投稿の最後の数をここに入力する必要があります。<br /> "
1577
- #~ "(最後の数がわからなければ FTP でログインしてエントリーフォルダを調べてくだ"
1578
- #~ "さい) "
1579
- #~ msgid "Start Importing"
1580
- #~ msgstr "インポートを開始"
1581
- #~ msgid "Wrong path, the path to the GM entries does not exist on the server"
1582
- #~ msgstr "パスが間違っています、このサーバーには GM のエントリーはありません"
1583
- #~ msgid "Wrong path, the path to the GM files does not exist on the server"
1584
- #~ msgstr "パスが間違っています、このサーバーには GM のファイルはありません"
1585
- #~ msgid "The importer is running..."
1586
- #~ msgstr "インポーターを実行中です..."
1587
- #~ msgid "importing users..."
1588
- #~ msgstr "ユーザーをインポート中..."
1589
- #~ msgid "user %s"
1590
- #~ msgstr "ユーザー %s"
1591
- #~ msgid "Already exists"
1592
- #~ msgstr "すでに存在しています"
1593
- #~ msgid "user %s..."
1594
- #~ msgstr "ユーザー %s..."
1595
- #~ msgid "Done"
1596
- #~ msgstr "完了"
1597
- #~ msgid "importing posts, comments, and karma..."
1598
- #~ msgstr "投稿、コメント、カルマをインポート中..."
1599
- #~ msgid "entry # %s : %s : by %s"
1600
- #~ msgstr "エントリー # %s : %s : by %s"
1601
- #~ msgid "(already exists)"
1602
- #~ msgstr "(すでに存在します)"
1603
- #~ msgid "registered deleted user %s at level 0 "
1604
- #~ msgstr "削除したユーザー %s をレベル 0 として登録しました"
1605
- #~ msgid "imported %s comment"
1606
- #~ msgid_plural "imported %s comments"
1607
- #~ msgstr[0] "%s件のコメントをインポートしました。"
1608
- #~ msgid "ignored %s pre-existing comment"
1609
- #~ msgid_plural "ignored %s pre-existing comments"
1610
- #~ msgstr[0] "すでにある%s件のコメントを無視しました"
1611
- #~ msgid "Completed GreyMatter import!"
1612
- #~ msgstr "GreyMatter のインポートを完了 !"
1613
- #~ msgid "GreyMatter"
1614
- #~ msgstr "GreyMatter"
1615
- #~ msgid "Import users, posts, and comments from a Greymatter blog."
1616
- #~ msgstr "GreyMatter ブログからユーザー、投稿、コメントをインポートします。"
1617
- #~ msgid "Import Jerome&#8217;s Keywords"
1618
- #~ msgstr "Jerome&#8217;s Keywords のインポート"
1619
- #~ msgid ""
1620
- #~ "Howdy! This imports tags from Jerome&#8217;s Keywords into WordPress tags."
1621
- #~ msgstr ""
1622
- #~ "こんにちは ! このインポーターは Jerome&#8217;s Keywords のタグを "
1623
- #~ "WordPress のタグにインポートします。"
1624
- #~ msgid "This is suitable for Jerome&#8217;s Keywords version 1.x and 2.0a."
1625
- #~ msgstr ""
1626
- #~ "このインポーターは Jerome&#8217;s Keywords バージョン 1.x と 2.0a 用です。"
1627
- #~ msgid "All existing Jerome&#8217;s Keywords will be removed after import."
1628
- #~ msgstr "インポート後、既存の Jerome&#8217;s Keywords はすべて削除されます。"
1629
- #~ msgid "Import Version 1.x"
1630
- #~ msgstr "バージョン 1.x をインポート"
1631
- #~ msgid "Import Version 2.0a"
1632
- #~ msgstr "バージョン 2.0a をインポート"
1633
- #~ msgid "Reading Jerome&#8217;s Keywords Tags&#8230;"
1634
- #~ msgstr "Jerome&#8217;s Keywords のタグを読み込み中&#8230;"
1635
- #~ msgid "Done! <strong>%s</strong> tag were read."
1636
- #~ msgid_plural "Done! <strong>%s</strong> tags were read."
1637
- #~ msgstr[0] "完了 ! <strong>%s</strong>個のタグが読み込まれました。"
1638
- #~ msgid "Import Jerome&#8217;s Keywords into WordPress tags."
1639
- #~ msgstr "Jerome&#8217;s Keywords を WordPress のタグにインポートします。"
1640
- #~ msgid "Import LiveJournal"
1641
- #~ msgstr "LiveJournal のインポート"
1642
- #~ msgid ""
1643
- #~ "It looks like you attempted to import your LiveJournal posts previously "
1644
- #~ "and got interrupted."
1645
- #~ msgstr ""
1646
- #~ "LiveJournal の投稿を以前にインポートしようとして中断しているようです。"
1647
- #~ msgid "Continue previous import"
1648
- #~ msgstr "前回のインポートを続けます"
1649
- #~ msgid "Cancel &amp; start a new import"
1650
- #~ msgstr "キャンセルして新たにインポートする"
1651
- #~ msgid ""
1652
- #~ "Howdy! This importer allows you to connect directly to LiveJournal and "
1653
- #~ "download all your entries and comments"
1654
- #~ msgstr ""
1655
- #~ "こんにちは ! このインポーターは LiveJournal に直接接続し、すべてのエント"
1656
- #~ "リーとコメントをダウンロードします。"
1657
- #~ msgid ""
1658
- #~ "Enter your LiveJournal username and password below so we can connect to "
1659
- #~ "your account:"
1660
- #~ msgstr ""
1661
- #~ "あなたのアカウントに接続するために、LiveJournal のユーザー名とパスワードを"
1662
- #~ "入力してください:"
1663
- #~ msgid "LiveJournal Username"
1664
- #~ msgstr "LiveJournal ユーザー名"
1665
- #~ msgid "LiveJournal Password"
1666
- #~ msgstr "LiveJournal パスワード"
1667
- #~ msgid ""
1668
- #~ "If you have any entries on LiveJournal which are marked as private, they "
1669
- #~ "will be password-protected when they are imported so that only people who "
1670
- #~ "know the password can see them."
1671
- #~ msgstr ""
1672
- #~ "LiveJournal にプライベートとしてマークされたエントリーがある場合、それらの"
1673
- #~ "エントリーはインポート時にパスワードで保護され、そのパスワードを知っている"
1674
- #~ "人のみが閲覧できるようになります。"
1675
- #~ msgid ""
1676
- #~ "If you don&#8217;t enter a password, ALL ENTRIES from your LiveJournal "
1677
- #~ "will be imported as public posts in WordPress."
1678
- #~ msgstr ""
1679
- #~ "パスワードを入力しないと LiveJournal からのすべてのエントリーが一般に公開"
1680
- #~ "された状態として WordPress にインポートされます。"
1681
- #~ msgid ""
1682
- #~ "Enter the password you would like to use for all protected entries here:"
1683
- #~ msgstr ""
1684
- #~ "保護されたすべてのエントリーに使用するパスワードをこちらに入力してくださ"
1685
- #~ "い:"
1686
- #~ msgid "Protected Post Password"
1687
- #~ msgstr "保護された投稿のパスワード"
1688
- #~ msgid ""
1689
- #~ "<strong>WARNING:</strong> This can take a really long time if you have a "
1690
- #~ "lot of entries in your LiveJournal, or a lot of comments. Ideally, you "
1691
- #~ "should only start this process if you can leave your computer alone while "
1692
- #~ "it finishes the import."
1693
- #~ msgstr ""
1694
- #~ "<strong>注意:</strong> LiveJournal のエントリーやコメントがたくさんある場"
1695
- #~ "合、この処理には長い時間がかかるかもしれません。できれば、インポートが終了"
1696
- #~ "するまでご自分のコンピューターを放置できる場合だけこの処理をスタートさせて"
1697
- #~ "ください。"
1698
- #~ msgid "Connect to LiveJournal and Import"
1699
- #~ msgstr "LiveJournal に接続してインポート"
1700
- #~ msgid ""
1701
- #~ "<strong>NOTE:</strong> If the import process is interrupted for <em>any</"
1702
- #~ "em> reason, come back to this page and it will continue from where it "
1703
- #~ "stopped automatically."
1704
- #~ msgstr ""
1705
- #~ "<strong>メモ:</strong> インポート処理が<em>なんらかの</em>理由で中断された"
1706
- #~ "場合、このページに戻れば自動的に中断された箇所から処理を続けます。"
1707
- #~ msgid ""
1708
- #~ "<strong>NOTE:</strong> You appear to have JavaScript disabled, so you "
1709
- #~ "will need to manually click through each step of this importer. If you "
1710
- #~ "enable JavaScript, it will step through automatically."
1711
- #~ msgstr ""
1712
- #~ "<strong>メモ:</strong> JavaScript が無効になっているようなので、このイン"
1713
- #~ "ポーターの各ステップを手動でクリックする必要があります。JavaScript が有効"
1714
- #~ "になっている場合、このステップは自動で実行されます。"
1715
- #~ msgid "Post metadata has been downloaded, proceeding with posts..."
1716
- #~ msgstr "投稿メタデータをダウンロードしました。投稿の処理を続けます…"
1717
- #~ msgid "Post <strong>%s</strong> already exists."
1718
- #~ msgstr "投稿 <strong>%s</strong> はすでに存在しています。"
1719
- #~ msgid "Imported post <strong>%s</strong>..."
1720
- #~ msgstr "インポートした投稿 <strong>%s</strong>…"
1721
- #~ msgid "Couldn&#8217;t get post ID (creating post failed!)"
1722
- #~ msgstr "post ID を取得できませんでした (投稿の作成に失敗しました !)"
1723
- #~ msgid "Failed to create post."
1724
- #~ msgstr "投稿の作成に失敗しました。"
1725
- #~ msgid "Could not get a cookie from LiveJournal. Please try again soon."
1726
- #~ msgstr ""
1727
- #~ "LiveJournal からの cookie を取得できませんでした。再度お試しください。"
1728
- #~ msgid ""
1729
- #~ "Failed to retrieve comment meta information from LiveJournal. Please try "
1730
- #~ "again soon."
1731
- #~ msgstr ""
1732
- #~ "LiveJournal からのコメントメタ情報の取得に失敗しました。再度お試しくださ"
1733
- #~ "い。"
1734
- #~ msgid "You have no comments to import!"
1735
- #~ msgstr "インポートするコメントはありません !"
1736
- #~ msgid ""
1737
- #~ " Comment metadata downloaded successfully, proceeding with comment "
1738
- #~ "bodies..."
1739
- #~ msgstr ""
1740
- #~ "コメントメタデータのダウンロードに成功しました。続いてコメント本体を処理し"
1741
- #~ "ます…"
1742
- #~ msgid ""
1743
- #~ "Failed to retrieve comment bodies from LiveJournal. Please try again soon."
1744
- #~ msgstr ""
1745
- #~ "LiveJournal からのコメント本文の取得に失敗しました。再度お試しください。"
1746
- #~ msgid "Anonymous"
1747
- #~ msgstr "匿名"
1748
- #~ msgid ""
1749
- #~ "LiveJournal is not responding to authentication requests. Please wait a "
1750
- #~ "while and then try again."
1751
- #~ msgstr ""
1752
- #~ "LiveJournal が認証リクエストに反応しません。しばらくお待ちになり、再度お試"
1753
- #~ "しください。"
1754
- #~ msgid "XML-RPC Request Failed -- "
1755
- #~ msgstr "XML-RPC リクエストに失敗 --"
1756
- #~ msgid ""
1757
- #~ "Please enter your LiveJournal username <em>and</em> password so we can "
1758
- #~ "download your posts and comments."
1759
- #~ msgstr ""
1760
- #~ "LiveJournal のユーザー名<em>と</em>パスワードを入力してください。投稿とコ"
1761
- #~ "メントをダウンロードします。"
1762
- #~ msgid "Start again"
1763
- #~ msgstr "再実行"
1764
- #~ msgid ""
1765
- #~ "Logging in to LiveJournal failed. Check your username and password and "
1766
- #~ "try again."
1767
- #~ msgstr ""
1768
- #~ "LiveJournal へのログインに失敗しました。ユーザー名とパスワードを確認して再"
1769
- #~ "度お試しください。"
1770
- #~ msgid "Importing Posts"
1771
- #~ msgstr "投稿のインポート中"
1772
- #~ msgid "We&#8217;re downloading and importing your LiveJournal posts..."
1773
- #~ msgstr "LiveJournal の投稿をダウンロードしてインポートしています…"
1774
- #~ msgid "Imported post batch %d of <strong>approximately</strong> %d"
1775
- #~ msgstr "%d / <strong>(おおよそ)</strong> %d の投稿をインポートしました"
1776
- #~ msgid ""
1777
- #~ "Uh oh &ndash; LiveJournal has disconnected us because we made too many "
1778
- #~ "requests to their servers too quickly."
1779
- #~ msgstr ""
1780
- #~ "うーん、あまりに短時間に多すぎるリクエストをサーバーに送ったために、"
1781
- #~ "LiveJournal が回線を切断したようです。"
1782
- #~ msgid ""
1783
- #~ "We&#8217;ve saved where you were up to though, so if you come back to "
1784
- #~ "this importer in about 30 minutes, you should be able to continue from "
1785
- #~ "where you were."
1786
- #~ msgstr ""
1787
- #~ "どこまで処理が進んだのか保存しているので、30分以内にこのインポーターに戻っ"
1788
- #~ "てくれば、残りの処理を続けることができます。"
1789
- #~ msgid "Try Again"
1790
- #~ msgstr "もう一度お試しください。"
1791
- #~ msgid "Import the next batch"
1792
- #~ msgstr "次のバッチをインポート"
1793
- #~ msgid ""
1794
- #~ "Your posts have all been imported, but wait &#8211; there&#8217;s more! "
1795
- #~ "Now we need to download &amp; import your comments."
1796
- #~ msgstr ""
1797
- #~ "投稿はすべてインポートされましたが、まだすることがあります ! 今度はコメン"
1798
- #~ "トをダウンロードしてインポートしましょう。"
1799
- #~ msgid "Download my comments &raquo;"
1800
- #~ msgstr "コメントをダウンロード &raquo;"
1801
- #~ msgid "Downloading Comments"
1802
- #~ msgstr "コメントのダウンロード"
1803
- #~ msgid ""
1804
- #~ "Now we will download your comments so we can import them (this could take "
1805
- #~ "a <strong>long</strong> time if you have lots of comments)..."
1806
- #~ msgstr ""
1807
- #~ "ではコメントをダウンロードしてインポートしましょう (コメントがたくさんある"
1808
- #~ "と<strong>時間がかかる</strong>かもしれません)…"
1809
- #~ msgid "Imported comment batch %d of <strong>approximately</strong> %d"
1810
- #~ msgstr "%d / <strong>(おおよそ)</strong> %d のコメントをインポートしました"
1811
- #~ msgid ""
1812
- #~ "Your comments have all been imported now, but we still need to rebuild "
1813
- #~ "your conversation threads."
1814
- #~ msgstr ""
1815
- #~ "コメントはすべてインポートされましたが、コメントのスレッドを再構築する必要"
1816
- #~ "があります。"
1817
- #~ msgid "Rebuild my comment threads &raquo;"
1818
- #~ msgstr "コメントスレッドの再構築 &raquo;"
1819
- #~ msgid "Threading Comments"
1820
- #~ msgstr "コメントのスレッド化"
1821
- #~ msgid ""
1822
- #~ "We are now re-building the threading of your comments (this can also take "
1823
- #~ "a while if you have lots of comments)..."
1824
- #~ msgstr ""
1825
- #~ "コメントのスレッドを再構築しています (コメントがたくさんある場合は時間がか"
1826
- #~ "かるかもしれません)…"
1827
- #~ msgid "Successfully re-threaded %s comments."
1828
- #~ msgstr "%s個のコメントの再スレッド化に成功しました。"
1829
- #~ msgid "Continuing in %d"
1830
- #~ msgstr "処理中: %d"
1831
- #~ msgid "Continuing"
1832
- #~ msgstr "処理中"
1833
- #~ msgid "Processing next batch."
1834
- #~ msgstr "次の処理を実行中。"
1835
- #~ msgid "LiveJournal"
1836
- #~ msgstr "LiveJournal"
1837
- #~ msgid "Import posts from LiveJournal using their API."
1838
- #~ msgstr "LiveJournal から API を利用して投稿をインポートします。"
1839
- #~ msgid "Import Movable Type or TypePad"
1840
- #~ msgstr "Movable Type もしくは Typepad のインポート"
1841
- #~ msgid ""
1842
- #~ "Howdy! We&#8217;re about to begin importing all of your Movable Type or "
1843
- #~ "Typepad entries into WordPress. To begin, either choose a file to upload "
1844
- #~ "and click &#8220;Upload file and import&#8221;, or use FTP to upload your "
1845
- #~ "MT export file as <code>mt-export.txt</code> in your <code>/wp-content/</"
1846
- #~ "code> directory and then click \"Import mt-export.txt\""
1847
- #~ msgstr ""
1848
- #~ "こんにちは ! これからあなたの Movable Type もしくは Typepad エントリーのす"
1849
- #~ "べてを WordPress にインポートする作業を開始します。アップロードするファイ"
1850
- #~ "ルを選択して「ファイルをアップロードしてインポート」をクリックするか、FTP "
1851
- #~ "を使用して <code>mt-export.txt</code> として MT のエクスポートファイルを "
1852
- #~ "<code>/wp-content/</code> にアップロードし、「mt-export.txtのインポート」"
1853
- #~ "をクリックしてください。"
1854
- #~ msgid ""
1855
- #~ "Or use <code>mt-export.txt</code> in your <code>/wp-content/</code> "
1856
- #~ "directory"
1857
- #~ msgstr ""
1858
- #~ "もしくは <code>/wp-content/</code> ディレクトリの <code>mt-export.txt</"
1859
- #~ "code> をお使いください。"
1860
- #~ msgid "Import mt-export.txt"
1861
- #~ msgstr "mt-export.txt のインポート"
1862
- #~ msgid ""
1863
- #~ "The importer is smart enough not to import duplicates, so you can run "
1864
- #~ "this multiple times without worry if&#8212;for whatever reason&#8212;it "
1865
- #~ "doesn&#8217;t finish. If you get an <strong>out of memory</strong> error "
1866
- #~ "try splitting up the import file into pieces."
1867
- #~ msgstr ""
1868
- #~ "このインポーターは優秀なので重複したファイルはインポートしません。したがっ"
1869
- #~ "て何らかの理由でインポート作業が終了できなくても、安心してこのインポーター"
1870
- #~ "を何度でも実行することができます。もし <strong>out of memory</strong> (メ"
1871
- #~ "モリー不足) エラーが発生した場合はインポートするファイルをいくつかに分けて"
1872
- #~ "ください。"
1873
- #~ msgid "- Select -"
1874
- #~ msgstr "- 選択 -"
1875
- #~ msgid "Assign Authors"
1876
- #~ msgstr "投稿者の割り当て"
1877
- #~ msgid ""
1878
- #~ "To make it easier for you to edit and save the imported posts and drafts, "
1879
- #~ "you may want to change the name of the author of the posts. For example, "
1880
- #~ "you may want to import all the entries as admin&#8217;s entries."
1881
- #~ msgstr ""
1882
- #~ "インポートした投稿や下書きの編集と保存を簡単にするために投稿者名を変更する"
1883
- #~ "ことができます。例えば、すべてのエントリーを <code>admin</code> のエント"
1884
- #~ "リーとしてインポートすることができます。"
1885
- #~ msgid ""
1886
- #~ "Below, you can see the names of the authors of the MovableType posts in "
1887
- #~ "<em>italics</em>. For each of these names, you can either pick an author "
1888
- #~ "in your WordPress installation from the menu, or enter a name for the "
1889
- #~ "author in the textbox."
1890
- #~ msgstr ""
1891
- #~ "下記には MovableType の投稿者名が<em>イタリック</em>で表示されています。こ"
1892
- #~ "れらの各投稿者名ごとに、WordPress ブログの投稿者をメニューから選択するか、"
1893
- #~ "あるいはテキストエリアに投稿者名を入力することができます。"
1894
- #~ msgid ""
1895
- #~ "If a new user is created by WordPress, a password will be randomly "
1896
- #~ "generated. Manually change the user&#8217;s details if necessary."
1897
- #~ msgstr ""
1898
- #~ "WordPress によって新しいユーザーが作成されると、パスワードはランダムに生成"
1899
- #~ "されます。必要があれば後で変更してください。"
1900
- #~ msgid "Current author:"
1901
- #~ msgstr "現在の投稿者:"
1902
- #~ msgid "Create user %1$s or map to existing"
1903
- #~ msgstr "ユーザー %1$s を作成もしくは既存のユーザーに割り当て"
1904
- #~ msgid "Submit"
1905
- #~ msgstr "実行"
1906
- #~ msgid "<code>mt-export.txt</code> does not exist"
1907
- #~ msgstr "<code>mt-export.txt</code> がありません"
1908
- #~ msgid "Sorry, there has been an error"
1909
- #~ msgstr "エラーが発生しました。"
1910
- #~ msgid "<br />Adding tags <i>%s</i>..."
1911
- #~ msgstr "<br />次のタグを追加中 <i>%s</i>..."
1912
- #~ msgid "(%s comment)"
1913
- #~ msgid_plural "(%s comments)"
1914
- #~ msgstr[0] "(%s件のコメント)"
1915
- #~ msgid "(%s ping)"
1916
- #~ msgid_plural "(%s pings)"
1917
- #~ msgstr[0] "(%s件のトラックバック/ピンバック)"
1918
- #~ msgid "Movable Type and TypePad"
1919
- #~ msgstr "Movable Type と TypePad"
1920
- #~ msgid "Import posts and comments from a Movable Type or Typepad blog."
1921
- #~ msgstr ""
1922
- #~ "Movable Type もしくは Typepad から投稿とコメントをインポートします。"
1923
- #~ msgid "Import Blogroll"
1924
- #~ msgstr "リンクのインポート"
1925
- #~ msgid "Import your blogroll from another system"
1926
- #~ msgstr "別システムからのリンクのインポート"
1927
- #~ msgid ""
1928
- #~ "If a program or website you use allows you to export your links or "
1929
- #~ "subscriptions as OPML you may import them here."
1930
- #~ msgstr ""
1931
- #~ "お使いのプログラムやサイトがリンク集や購読情報を OPML 形式でエクスポートで"
1932
- #~ "きるなら、このページでインポートすることができます。"
1933
- #~ msgid "Specify an OPML URL:"
1934
- #~ msgstr "OPML URL の指定:"
1935
- #~ msgid "Or choose from your local disk:"
1936
- #~ msgstr "もしくはローカルディスクから選択:"
1937
- #~ msgid "Now select a category you want to put these links in."
1938
- #~ msgstr "取り込むリンクのカテゴリーを選択してください。"
1939
- #~ msgid "Category:"
1940
- #~ msgstr "カテゴリー:"
1941
- #~ msgid "Import OPML File"
1942
- #~ msgstr "OPML をインポート"
1943
- #~ msgid "Inserted <strong>%s</strong>"
1944
- #~ msgstr "<strong>%s</strong>を挿入しました。"
1945
- #~ msgid ""
1946
- #~ "Inserted %1$d links into category %2$s. All done! Go <a href=\"%3$s"
1947
- #~ "\">manage those links</a>."
1948
- #~ msgstr ""
1949
- #~ "%1$d個のリンクをカテゴリー %2$s にインポートしました ! <a href=\"%3$s\">リ"
1950
- #~ "ンクの管理に移動</a>"
1951
- #~ msgid ""
1952
- #~ "You need to supply your OPML url. Press back on your browser and try again"
1953
- #~ msgstr ""
1954
- #~ "OPML URL を入力する必要があります。ブラウザの「戻る」ボタンを押してやり直"
1955
- #~ "してください。"
1956
- #~ msgid "Blogroll"
1957
- #~ msgstr "ブログロール"
1958
- #~ msgid "Import links in OPML format."
1959
- #~ msgstr "リンクを OPML 形式でインポートする。"
1960
- #~ msgid "Import RSS"
1961
- #~ msgstr "RSS のインポート"
1962
- #~ msgid ""
1963
- #~ "Howdy! This importer allows you to extract posts from an RSS 2.0 file "
1964
- #~ "into your blog. This is useful if you want to import your posts from a "
1965
- #~ "system that is not handled by a custom import tool. Pick an RSS file to "
1966
- #~ "upload and click Import."
1967
- #~ msgstr ""
1968
- #~ "こんにちは ! このインポーターは RSS 2.0 ファイルから投稿を抜き出してイン"
1969
- #~ "ポートします。これは、専用のツールが用意されていないシステムから投稿を取り"
1970
- #~ "込みたい場合に役に立ちます。アップロードする RSS ファイルを選択してイン"
1971
- #~ "ポートをクリックしてください。"
1972
- #~ msgid "Importing post..."
1973
- #~ msgstr "投稿のインポート中..."
1974
- #~ msgid "Post already imported"
1975
- #~ msgstr "投稿はすでにインポートされています。"
1976
- #~ msgid "Done !"
1977
- #~ msgstr "完了 !"
1978
- #~ msgid "RSS"
1979
- #~ msgstr "RSS"
1980
- #~ msgid "Import posts from an RSS feed."
1981
- #~ msgstr "RSS フィードから投稿をインポートします。"
1982
- #~ msgid "Import Simple Tagging"
1983
- #~ msgstr "Simple Tagging のインポート"
1984
- #~ msgid ""
1985
- #~ "Howdy! This imports tags from Simple Tagging 1.6.2 into WordPress tags."
1986
- #~ msgstr ""
1987
- #~ "こんにちは ! このインポーターは Simple Tagging 1.6.2 のタグを WordPress の"
1988
- #~ "タグにインポートします。"
1989
- #~ msgid ""
1990
- #~ "This has not been tested on any other versions of Simple Tagging. Mileage "
1991
- #~ "may vary."
1992
- #~ msgstr ""
1993
- #~ "Simple Tagging のこれ以外のバージョンではテストされていません。すべてをイ"
1994
- #~ "ンポートできないかもしれません。"
1995
- #~ msgid ""
1996
- #~ "To accommodate larger databases for those tag-crazy authors out there, we "
1997
- #~ "have made this into an easy 4-step program to help you kick that nasty "
1998
- #~ "Simple Tagging habit. Just keep clicking along and we will let you know "
1999
- #~ "when you are in the clear!"
2000
- #~ msgstr ""
2001
- #~ "タグ付けにハマってしまった方の大きくなったデータベースに対応するため、簡単"
2002
- #~ "な 4 ステップのプログラムで Simple Tagging の悪習を断つお手伝いをします。"
2003
- #~ "指示に従ってクリックし続けてください。あなたが自由の身になったらお知らせし"
2004
- #~ "ます !"
2005
- #~ msgid "Step 1"
2006
- #~ msgstr "ステップ 1"
2007
- #~ msgid "Reading STP Post Tags&#8230;"
2008
- #~ msgstr "STP の投稿タグを読み込み中&#8230;"
2009
- #~ msgid "No posts were found to have tags!"
2010
- #~ msgstr "タグ付けされている投稿は見つかりませんでした !"
2011
- #~ msgid "Done! <strong>%s</strong> tag to post relationships were read."
2012
- #~ msgid_plural ""
2013
- #~ "Done! <strong>%s</strong> tags to post relationships were read."
2014
- #~ msgstr[0] ""
2015
- #~ "完了しました ! <strong>%s</strong>個のタグと投稿の関連付けを読み込みまし"
2016
- #~ "た。"
2017
- #~ msgid "Step 2"
2018
- #~ msgstr "ステップ 2"
2019
- #~ msgid "Adding Tags to Posts&#8230;"
2020
- #~ msgstr "投稿にタグ付け中&#8230;"
2021
- #~ msgid "Done! <strong>%s</strong> tag was added!"
2022
- #~ msgid_plural "Done! <strong>%s</strong> tags were added!"
2023
- #~ msgstr[0] "完了しました ! <strong>%s</strong>個のタグを追加しました !"
2024
- #~ msgid "Step 3"
2025
- #~ msgstr "ステップ 3"
2026
- #~ msgid "OK, so we lied about this being a 4-step program! You&#8217;re done!"
2027
- #~ msgstr ""
2028
- #~ "4 ステップのプログラムがあるといったのはウソでした ! 以上で完了です !"
2029
- #~ msgid "Now wasn&#8217;t that easy?"
2030
- #~ msgstr "簡単だったでしょ ?"
2031
- #~ msgid "Import Simple Tagging tags into WordPress tags."
2032
- #~ msgstr "Simple Tagging のタグを WordPress のタグにインポートします。"
2033
- #~ msgid "Import Textpattern"
2034
- #~ msgstr "Textpattern のインポート"
2035
- #~ msgid ""
2036
- #~ "Howdy! This imports categories, users, posts, comments, and links from "
2037
- #~ "any Textpattern 4.0.2+ into this blog."
2038
- #~ msgstr ""
2039
- #~ "こんにちは ! このインポーターは Textpattern 4.0.2 以上のブログから、カテゴ"
2040
- #~ "リー、ユーザー、投稿、コメント、リンクをインポートします。"
2041
- #~ msgid ""
2042
- #~ "This has not been tested on previous versions of Textpattern. Mileage "
2043
- #~ "may vary."
2044
- #~ msgstr ""
2045
- #~ "Textpattern のこれ以前のバージョンではテストされていません。すべてをイン"
2046
- #~ "ポートできないかもしれません。"
2047
- #~ msgid "Your Textpattern Configuration settings are as follows:"
2048
- #~ msgstr "Textpattern の設定を入力してください:"
2049
- #~ msgid "Done! <strong>%s</strong> link imported"
2050
- #~ msgid_plural "Done! <strong>%s</strong> links imported"
2051
- #~ msgstr[0] "完了 ! <strong>%s</strong>個のリンクをインポートしました"
2052
- #~ msgid ""
2053
- #~ "Welcome to WordPress. We hope (and expect!) that you will find this "
2054
- #~ "platform incredibly rewarding! As a new WordPress user coming from "
2055
- #~ "Textpattern, there are some things that we would like to point out. "
2056
- #~ "Hopefully, they will help your transition go as smoothly as possible."
2057
- #~ msgstr ""
2058
- #~ "WordPress へようこそ。このプラットフォームがあなたにとって大いに実りあるも"
2059
- #~ "のとなることを私たちは望み、そして期待しています。Textpattern から新しく "
2060
- #~ "WordPress ユーザーになったあなたにいくつかお知らせすることがあります。これ"
2061
- #~ "はあなたの移行をできるかぎり円滑に進めるための手助けとなるでしょう。"
2062
- #~ msgid ""
2063
- #~ "You have already setup WordPress and have been assigned an administrative "
2064
- #~ "login and password. Forget it. You didn&#8217;t have that login in "
2065
- #~ "Textpattern, why should you have it here? Instead we have taken care to "
2066
- #~ "import all of your users into our system. Unfortunately there is one "
2067
- #~ "downside. Because both WordPress and Textpattern uses a strong "
2068
- #~ "encryption hash with passwords, it is impossible to decrypt it and we are "
2069
- #~ "forced to assign temporary passwords to all your users. <strong>Every "
2070
- #~ "user has the same username, but their passwords are reset to password123."
2071
- #~ "</strong> So <a href=\"%1$s\">Login</a> and change it."
2072
- #~ msgstr ""
2073
- #~ "あなたはすでに WordPress のセットアップを終え、管理者権限のログインとパス"
2074
- #~ "ワードを割り当てられています。それは忘れてください。Textpattern ではそのロ"
2075
- #~ "グインを持っていなかったのに、どうしてここでそのログインを持っているので"
2076
- #~ "しょう ? その代わり、このインポーターは入念にあなたのすべてのユーザーをこ"
2077
- #~ "のシステムにインポートしました。しかし残念なことに一つだけできないことがあ"
2078
- #~ "りました。WordPress と Textpattern は両方ともパスワードの保存に強力な暗号"
2079
- #~ "化ハッシュを使用しているので、それを復元することは不可能です。したがって、"
2080
- #~ "すべてのユーザーに一時的なパスワードを割り当てざるをえませんでした。"
2081
- #~ "<strong>各ユーザーは Textpattern と同じユーザー名になっていますが、パス"
2082
- #~ "ワードはリセットされて「password123」に変更されています</strong>ので、<a "
2083
- #~ "href=\"%1$s\">ログイン</a>して変更してください。"
2084
- #~ msgid ""
2085
- #~ "Also, since you&#8217;re coming from Textpattern, you probably have been "
2086
- #~ "using Textile to format your comments and posts. If this is the case, we "
2087
- #~ "recommend downloading and installing <a href=\"http://www.huddledmasses."
2088
- #~ "org/category/development/wordpress/textile/\">Textile for WordPress</a>. "
2089
- #~ "Trust me... You&#8217;ll want it."
2090
- #~ msgstr ""
2091
- #~ "また、Textpattern を使用していたのであれば、おそらくコメントや投稿のフォー"
2092
- #~ "マットに Textile を使用していたことと思います。もしそうであれば <a href="
2093
- #~ "\"http://www.huddledmasses.org/category/development/wordpress/textile/"
2094
- #~ "\">Textile for WordPress</a> のダウンロードとインストールをお勧めします。"
2095
- #~ "信じてください……必要になりますから。"
2096
- #~ msgid "Textpattern Database User:"
2097
- #~ msgstr "Textpattern データベースのユーザー:"
2098
- #~ msgid "Textpattern Database Password:"
2099
- #~ msgstr "Textpattern データベースのパスワード:"
2100
- #~ msgid "Textpattern Database Name:"
2101
- #~ msgstr "Textpattern データベース名:"
2102
- #~ msgid "Textpattern Database Host:"
2103
- #~ msgstr "Textpattern データベースホスト:"
2104
- #~ msgid "Textpattern Table prefix (if any):"
2105
- #~ msgstr "Textpattern テーブル接頭語 (もしあれば) :"
2106
- #~ msgid "Textpattern"
2107
- #~ msgstr "Textpattern"
2108
- #~ msgid ""
2109
- #~ "Import categories, users, posts, comments, and links from a Textpattern "
2110
- #~ "blog."
2111
- #~ msgstr ""
2112
- #~ "Textpattern ブログからカテゴリー、ユーザー、投稿、コメント、リンクをイン"
2113
- #~ "ポートします。"
2114
- #~ msgid "Import Ultimate Tag Warrior"
2115
- #~ msgstr "Ultimate Tag Warrior のインポート"
2116
- #~ msgid ""
2117
- #~ "Howdy! This imports tags from Ultimate Tag Warrior 3 into WordPress tags."
2118
- #~ msgstr ""
2119
- #~ "こんにちは ! このインポーターは Ultimate Tag Warrior 3 のタグを WordPress "
2120
- #~ "のタグにインポートします。"
2121
- #~ msgid ""
2122
- #~ "This has not been tested on any other versions of Ultimate Tag Warrior. "
2123
- #~ "Mileage may vary."
2124
- #~ msgstr ""
2125
- #~ "Ultimate Tag Warrior のこれ以外のバージョンではテストされていません。すべ"
2126
- #~ "てをインポートできないかもしれません。"
2127
- #~ msgid ""
2128
- #~ "To accommodate larger databases for those tag-crazy authors out there, we "
2129
- #~ "have made this into an easy 5-step program to help you kick that nasty "
2130
- #~ "UTW habit. Just keep clicking along and we will let you know when you are "
2131
- #~ "in the clear!"
2132
- #~ msgstr ""
2133
- #~ "タグ付けにハマってしまった方の大きくなったデータベースに対応するため、簡単"
2134
- #~ "な 5 ステップのプログラムで UTW の悪習を断つお手伝いをします。指示に従って"
2135
- #~ "クリックし続けてください。あなたが自由の身になったらお知らせします !"
2136
- #~ msgid "Reading UTW Tags&#8230;"
2137
- #~ msgstr "UTW のタグを読み込み中&#8230;"
2138
- #~ msgid "The following tags were found:"
2139
- #~ msgstr "次のタグが見つかりました:"
2140
- #~ msgid ""
2141
- #~ "If you don&#8217;t want to import any of these tags, you should delete "
2142
- #~ "them from the UTW tag management page and then re-run this import."
2143
- #~ msgstr ""
2144
- #~ "インポートしたくないタグが以下にある場合は、UTW のタグ管理ページでそのタグ"
2145
- #~ "を削除してから再度このインポーターを実行してください。"
2146
- #~ msgid "Reading UTW Post Tags&#8230;"
2147
- #~ msgstr "UTW の投稿タグを読み込み中&#8230;"
2148
- #~ msgid "Done! <strong>%s</strong> tag were added!"
2149
- #~ msgid_plural "Done! <strong>%s</strong> tags were added!"
2150
- #~ msgstr[0] "完了しました ! <strong>%s</strong>個のタグを追加しました !"
2151
- #~ msgid "Step 4"
2152
- #~ msgstr "ステップ 4"
2153
- #~ msgid "OK, so we lied about this being a 5-step program! You&#8217;re done!"
2154
- #~ msgstr ""
2155
- #~ "5 ステップのプログラムがあるといったのはウソでした ! 以上で完了です !"
2156
- #~ msgid "Import Ultimate Tag Warrior tags into WordPress tags."
2157
- #~ msgstr "Ultimate Tag Warrior のタグを WordPress のタグにインポートします。"
2158
- #~ msgid "Import WordPress"
2159
- #~ msgstr "WordPress のインポート"
2160
- #~ msgid ""
2161
- #~ "Howdy! Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll "
2162
- #~ "import the posts, pages, comments, custom fields, categories, and tags "
2163
- #~ "into this blog."
2164
- #~ msgstr ""
2165
- #~ "こんにちは ! WordPress eXtended RSS (WXR) ファイルをアップロードしてくださ"
2166
- #~ "い。投稿、ページ、コメント、カスタムフィールド、カテゴリー、タグをこのブロ"
2167
- #~ "グにインポートします。"
2168
- #~ msgid ""
2169
- #~ "Choose a WordPress WXR file to upload, then click Upload file and import."
2170
- #~ msgstr ""
2171
- #~ "アップロードする WordPress WXR ファイルを選択し、「ファイルをアップロード"
2172
- #~ "してインポート」をクリックしてください。"
2173
- #~ msgid ""
2174
- #~ "To make it easier for you to edit and save the imported posts and drafts, "
2175
- #~ "you may want to change the name of the author of the posts. For example, "
2176
- #~ "you may want to import all the entries as <code>admin</code>s entries."
2177
- #~ msgstr ""
2178
- #~ "インポートした投稿や下書きの編集/保存を簡単にするために、投稿者名を変更で"
2179
- #~ "きます。例えば、すべての投稿を <code>admin</code> の投稿としてインポートす"
2180
- #~ "ることができます。"
2181
- #~ msgid "Import author:"
2182
- #~ msgstr "インポートする投稿者:"
2183
- #~ msgid "Import Attachments"
2184
- #~ msgstr "添付ファイルのインポート"
2185
- #~ msgid "Download and import file attachments"
2186
- #~ msgstr "添付ファイルをダウンロードしてインポートする"
2187
- #~ msgid "Map to existing"
2188
- #~ msgstr "既存のユーザーに割り当て"
2189
- #~ msgid "Invalid file"
2190
- #~ msgstr "無効なファイル"
2191
- #~ msgid "Please upload a valid WXR (WordPress eXtended RSS) export file."
2192
- #~ msgstr ""
2193
- #~ "正しい形式の WXR (WordPress eXtended RSS) エクスポートファイルをアップロー"
2194
- #~ "ドしてください。"
2195
- #~ msgid "All done."
2196
- #~ msgstr "すべて完了しました。"
2197
- #~ msgid "Have fun!"
2198
- #~ msgstr "ではお楽しみください !"
2199
- #~ msgid "Importing attachment <em>%s</em>... "
2200
- #~ msgstr "添付ファイル <em>%s</em> のインポート中..."
2201
- #~ msgid "Remote file error: %s"
2202
- #~ msgstr "リモートファイルのエラー: %s"
2203
- #~ msgid "Invalid file type"
2204
- #~ msgstr "無効なファイル形式"
2205
- #~ msgid "Skipping attachment <em>%s</em>"
2206
- #~ msgstr "添付ファイルをスキップ <em>%s</em>"
2207
- #~ msgid "Remote server did not respond"
2208
- #~ msgstr "リモートサーバーからの返答がありません"
2209
- #~ msgid "Remote file returned error response %1$d %2$s"
2210
- #~ msgstr "リモートファイルがエラーを返しました: %1$d %2$s"
2211
- #~ msgid "Remote file is incorrect size"
2212
- #~ msgstr "リモートファイルのサイズが不正です"
2213
- #~ msgid "Remote file is too large, limit is %s"
2214
- #~ msgstr "リモートファイルが大きすぎます。上限は %s です"
2215
- #~ msgid "Sorry, there has been an error."
2216
- #~ msgstr "エラーが発生しました。"
2217
- #~ msgid ""
2218
- #~ "Import <strong>posts, pages, comments, custom fields, categories, and "
2219
- #~ "tags</strong> from a WordPress export file."
2220
- #~ msgstr ""
2221
- #~ "WordPress のエクスポートファイルから<strong>投稿、ページ、コメント、カスタ"
2222
- #~ "ムフィールド、カテゴリー、タグ</strong>をインポートします。"
2223
- #~ msgid "Categories to Tags"
2224
- #~ msgstr "カテゴリーをタグに変換"
2225
- #~ msgid "Tags to Categories"
2226
- #~ msgstr "タグをカテゴリーに変換"
2227
- #~ msgid "Convert Category to Tag."
2228
- #~ msgid_plural "Convert Categories (%d) to Tags."
2229
- #~ msgstr[0] "カテゴリー (%d) をタグに変換します。"
2230
- #~ msgid ""
2231
- #~ "Hey there. Here you can selectively convert existing categories to tags. "
2232
- #~ "To get started, check the categories you wish to be converted, then click "
2233
- #~ "the Convert button."
2234
- #~ msgstr ""
2235
- #~ "こんにちは ! このコンバータは既存のカテゴリーを選択してタグに変換します。"
2236
- #~ "この処理を開始するには、変換したいカテゴリーをチェックをして、変換ボタンを"
2237
- #~ "クリックしてください。"
2238
- #~ msgid ""
2239
- #~ "Keep in mind that if you convert a category with child categories, the "
2240
- #~ "children become top-level orphans."
2241
- #~ msgstr ""
2242
- #~ "注意: 親カテゴリーを変換すると、その子カテゴリーの階層関係設定が削除され、"
2243
- #~ "そのカテゴリーは上の階層に移動します。"
2244
- #~ msgid "You have no categories to convert!"
2245
- #~ msgstr "変換するカテゴリーはありません !"
2246
- #~ msgid "Uncheck All"
2247
- #~ msgstr "すべて選択解除"
2248
- #~ msgid "Check All"
2249
- #~ msgstr "すべて選択"
2250
- #~ msgid ""
2251
- #~ "* This category is also a tag. Converting it will add that tag to all "
2252
- #~ "posts that are currently in the category."
2253
- #~ msgstr ""
2254
- #~ "アスタリスク (*) の付いたカテゴリーは同時にタグでもあります。変換すると、"
2255
- #~ "このカテゴリーのすべての投稿にこのタグを追加します。"
2256
- #~ msgid "Convert Categories to Tags"
2257
- #~ msgstr "カテゴリーをタグに変換"
2258
- #~ msgid "Convert Tag to Category."
2259
- #~ msgid_plural "Convert Tags (%d) to Categories."
2260
- #~ msgstr[0] "タグ (%d) をカテゴリーに変換します。"
2261
- #~ msgid ""
2262
- #~ "Here you can selectively convert existing tags to categories. To get "
2263
- #~ "started, check the tags you wish to be converted, then click the Convert "
2264
- #~ "button."
2265
- #~ msgstr ""
2266
- #~ "このコンバーターは既存のタグを選択してカテゴリーに変換します。この処理を開"
2267
- #~ "始するには、変換したいタグをチェックして変換ボタンをクリックしてください。"
2268
- #~ msgid ""
2269
- #~ "The newly created categories will still be associated with the same posts."
2270
- #~ msgstr ""
2271
- #~ "新しく作られたカテゴリーは依然として同じ投稿に関連づけられています。"
2272
- #~ msgid "You have no tags to convert!"
2273
- #~ msgstr "変換するタグはありません !"
2274
- #~ msgid ""
2275
- #~ "* This tag is also a category. When converted, all posts associated with "
2276
- #~ "the tag will also be in the category."
2277
- #~ msgstr ""
2278
- #~ "アスタリスク (*) の付いたタグはカテゴリーでもあります。変換すると、このタ"
2279
- #~ "グが付けられているすべての投稿がこのカテゴリーにも含まれるようになります。"
2280
- #~ msgid "Convert Tags to Categories"
2281
- #~ msgstr "タグをカテゴリーに変換"
2282
- #~ msgid ""
2283
- #~ "Uh, oh. Something didn&#8217;t work. Please <a href=\"%s\">try again</a>."
2284
- #~ msgstr ""
2285
- #~ "あのー、何かがうまくいかなかったようです。<a href=\"%s\">もう一度お試しく"
2286
- #~ "ださい</a>。"
2287
- #~ msgid "Category %s doesn&#8217;t exist!"
2288
- #~ msgstr "カテゴリー %s はありません !"
2289
- #~ msgid "Converting category <strong>%s</strong> ... "
2290
- #~ msgstr "カテゴリー <strong>%s</strong> を変換中 ... "
2291
- #~ msgid "Converted successfully."
2292
- #~ msgstr "変換に成功しました。"
2293
- #~ msgid "Tag added to all posts in this category."
2294
- #~ msgstr "このカテゴリーのすべての投稿にタグを追加しました。"
2295
- #~ msgid ""
2296
- #~ "* This category is also a tag. The converter has added that tag to all "
2297
- #~ "posts currently in the category. If you want to remove it, please confirm "
2298
- #~ "that all tags were added successfully, then delete it from the <a href=\"%"
2299
- #~ "s\">Manage Categories</a> page."
2300
- #~ msgstr ""
2301
- #~ "アスタリスク (*) の付いたカテゴリーはタグでもあります。この変換により、こ"
2302
- #~ "のカテゴリーに含まれるすべての投稿にこのタグを追加しました。もしこのカテゴ"
2303
- #~ "リーを削除したいときは、すべてのタグが追加されたことを確認し、<a href=\"%s"
2304
- #~ "\">カテゴリー管理</a> ページから削除してください。"
2305
- #~ msgid ""
2306
- #~ "We&#8217;re all done here, but you can always <a href=\"%s\">convert "
2307
- #~ "more</a>."
2308
- #~ msgstr ""
2309
- #~ "これですべて完了です。しかし、いつでも<a href=\"%s\">もっと変換</a>できま"
2310
- #~ "す。"
2311
- #~ msgid "Converting tag <strong>%s</strong> ... "
2312
- #~ msgstr "タグ <strong>%s</strong> を変換中 ... "
2313
- #~ msgid "All posts were added to the category with the same name."
2314
- #~ msgstr "すべての投稿を同じ名称のカテゴリーに追加しました。"
2315
- #~ msgid "Tag #%s doesn&#8217;t exist!"
2316
- #~ msgstr "タグ #%s はありません !"
2317
- #~ msgid ""
2318
- #~ "* This tag is also a category. The converter has added all posts from it "
2319
- #~ "to the category. If you want to remove it, please confirm that all posts "
2320
- #~ "were added successfully, then delete it from the <a href=\"%s\">Manage "
2321
- #~ "Tags</a> page."
2322
- #~ msgstr ""
2323
- #~ "アスタリスク (*) の付いたタグはカテゴリーでもあります。この変換により、こ"
2324
- #~ "のタグが付けられているすべての投稿をこのカテゴリーに含まれるようにしまし"
2325
- #~ "た。もしこのタグを削除したいときは、すべての投稿がこのカテゴリーに含まれた"
2326
- #~ "ことを確認し、<a href=\"%s\">タグ管理</a> ページから削除してください。"
2327
- #~ msgid "Categories and Tags Converter"
2328
- #~ msgstr "カテゴリーとタグの変換"
2329
- #~ msgid ""
2330
- #~ "Convert existing categories to tags or tags to categories, selectively."
2331
- #~ msgstr "既存のカテゴリーをタグ、またはタグをカテゴリーに変換します。"
2332
- #~ msgid "Could not update link in the database"
2333
- #~ msgstr "データベース内のリンクを更新できませんでした。"
2334
- #~ msgid "Could not insert link into the database"
2335
- #~ msgstr "データベースにリンクを追加できませんでした。"
2336
- #~ msgid "Changing to %s"
2337
- #~ msgstr "%s に変更しています"
2338
- #~ msgid "Found %s"
2339
- #~ msgstr "%s が見つかりました"
2340
- #~ msgid "The ftp PHP extension is not available"
2341
- #~ msgstr "PHP の ftp 拡張機能が使用できません"
2342
- #~ msgid "FTP hostname is required"
2343
- #~ msgstr "FTP のホスト名は必須です"
2344
- #~ msgid "FTP username is required"
2345
- #~ msgstr "FTP のユーザー名は必須です"
2346
- #~ msgid "FTP password is required"
2347
- #~ msgstr "FTP のパスワードは必須です"
2348
- #~ msgid "Failed to connect to FTP Server %1$s:%2$s"
2349
- #~ msgstr "FTP サーバー %1$s:%2$s への接続に失敗しました"
2350
- #~ msgid "Username/Password incorrect for %s"
2351
- #~ msgstr "%s のユーザー名/パスワードが正しくありません"
2352
- #~ msgid "The ssh2 PHP extension is not available"
2353
- #~ msgstr "PHP の SSH2 拡張機能が使用できません"
2354
- #~ msgid "The ssh2 PHP extension is available, however requires PHP 5+"
2355
- #~ msgstr "PHP の SSH2 拡張機能は利用可能ですが、PHP 5 以上が必要です。"
2356
- #~ msgid "SSH2 hostname is required"
2357
- #~ msgstr "SSH2 ホスト名は必須です"
2358
- #~ msgid "SSH2 username is required"
2359
- #~ msgstr "SSH2 ユーザー名は必須です"
2360
- #~ msgid "SSH2 password is required"
2361
- #~ msgstr "SSH2 パスワードは必須です"
2362
- #~ msgid "Failed to connect to SSH2 Server %1$s:%2$s"
2363
- #~ msgstr "SSH2 サーバー %1$s:%2$s への接続に失敗しました"
2364
- #~ msgid "Public and Private keys incorrent for %s"
2365
- #~ msgstr "%s の公開鍵と秘密鍵が正しくありません"
2366
- #~ msgid "Unable to perform command: %s"
2367
- #~ msgstr "コマンド %s を実行できません"
2368
- #~ msgid "Invalid Data provided."
2369
- #~ msgstr "無効なデータです。"
2370
- #~ msgid "Could not access filesystem."
2371
- #~ msgstr "ファイルシステムにアクセスできませんでした。"
2372
- #~ msgid "Filesystem error"
2373
- #~ msgstr "ファイルシステムのエラー"
2374
- #~ msgid "Unable to locate WordPress Root directory."
2375
- #~ msgstr "WordPress のルートディレクトリが見つかりません。"
2376
- #~ msgid "Unable to locate WordPress Content directory (wp-content)."
2377
- #~ msgstr "wp-content ディレクトリが見つかりません。"
2378
- #~ msgid "Unable to locate WordPress Plugin directory."
2379
- #~ msgstr "WordPress プラグインディレクトリが見つかりません。"
2380
- #~ msgid "Unable to locate WordPress Theme directory."
2381
- #~ msgstr "WordPress テーマディレクトリが見つかりません。"
2382
- #~ msgid "Unable to locate needed folder (%s)."
2383
- #~ msgstr "必要なフォルダ (%s) が見つかりません。"
2384
- #~ msgid "Download failed."
2385
- #~ msgstr "ダウンロードに失敗しました。"
2386
- #~ msgid "Installing the latest version."
2387
- #~ msgstr "最新のバージョンをインストールしています。"
2388
- #~ msgid "Destination folder already exists."
2389
- #~ msgstr "目的のフォルダはすでに存在しています。"
2390
- #~ msgid "Could not create directory."
2391
- #~ msgstr "ディレクトリを作成できませんでした。"
2392
- #~ msgid "Incompatible Archive"
2393
- #~ msgstr "互換性のないアーカイブ"
2394
- #~ msgid "Enabling Maintenance mode."
2395
- #~ msgstr "メンテナンスモードを有効にしています。"
2396
- #~ msgid "Disabling Maintenance mode."
2397
- #~ msgstr "メンテナンスモードを無効にしています。"
2398
- #~ msgid "The plugin is at the latest version."
2399
- #~ msgstr "プラグインは最新のバージョンです。"
2400
- #~ msgid "Upgrade package not available."
2401
- #~ msgstr "アップグレードパッケージは使用できません。"
2402
- #~ msgid "Downloading update from <span class=\"code\">%s</span>."
2403
- #~ msgstr ""
2404
- #~ "<span class=\"code\">%s</span> からアップデートをダウンロードしています。"
2405
- #~ msgid "Unpacking the update."
2406
- #~ msgstr "更新を解凍しています。"
2407
- #~ msgid "Deactivating the plugin."
2408
- #~ msgstr "プラグインを停止しています。"
2409
- #~ msgid "Removing the old version of the plugin."
2410
- #~ msgstr "プラグインの古いバージョンを削除しています。"
2411
- #~ msgid "Could not remove the old plugin."
2412
- #~ msgstr "古いプラグインを削除できませんでした。"
2413
- #~ msgid "Plugin upgrade Failed."
2414
- #~ msgstr "プラグインのアップグレードに失敗しました。"
2415
- #~ msgid "Plugin upgraded successfully."
2416
- #~ msgstr "プラグインのアップグレードに成功しました。"
2417
- #~ msgid "Install package not available."
2418
- #~ msgstr "インストールパッケージがありません。"
2419
- #~ msgid "Downloading install package from <span class=\"code\">%s</span>."
2420
- #~ msgstr ""
2421
- #~ "<span class=\"code\">%s</span> からインストールパッケージをダウンロードし"
2422
- #~ "ています。"
2423
- #~ msgid "Unpacking the package."
2424
- #~ msgstr "パッケージを展開しています。"
2425
- #~ msgid "Installing the plugin."
2426
- #~ msgstr "プラグインをインストールしています。"
2427
- #~ msgid "Plugin Install Failed."
2428
- #~ msgstr "プラグインのインストールに失敗しました。"
2429
- #~ msgid "Plugin Installed successfully."
2430
- #~ msgstr "プラグインのインストールが完了しました。"
2431
- #~ msgid "The theme is at the latest version."
2432
- #~ msgstr "テーマは最新のバージョンです。"
2433
- #~ msgid "Removing the old version of the theme."
2434
- #~ msgstr "旧バージョンのテーマを削除しています。"
2435
- #~ msgid "Could not remove the old theme."
2436
- #~ msgstr "旧バージョンのテーマを削除できませんでした。"
2437
- #~ msgid "Theme upgrade Failed."
2438
- #~ msgstr "テーマのアップグレードに失敗しました。"
2439
- #~ msgid "Theme upgraded successfully."
2440
- #~ msgstr "テーマのアップグレードが完了しました。"
2441
- #~ msgid "Installing the theme."
2442
- #~ msgstr "テーマをインストールしています。"
2443
- #~ msgid "Theme Install Failed."
2444
- #~ msgstr "テーマのインストールに失敗しました。"
2445
- #~ msgid "Theme Installed successfully."
2446
- #~ msgstr "テーマのインストールが完了しました。"
2447
- #~ msgid "WordPress is at the latest version."
2448
- #~ msgstr "WordPress は最新のバージョンです。"
2449
- #~ msgid "Could not copy files."
2450
- #~ msgstr "ファイルをコピーできませんでした。"
2451
- #~ msgid "Upgrade Plugin"
2452
- #~ msgstr "プラグインのアップグレード"
2453
- #~ msgid "Attempting reactivation of the plugin"
2454
- #~ msgstr "プラグインを再有効化しています。"
2455
- #~ msgid "Activate this plugin"
2456
- #~ msgstr "プラグインを使用する"
2457
- #~ msgid "Activate Plugin"
2458
- #~ msgstr "プラグインを有効化"
2459
- #~ msgid "Goto plugins page"
2460
- #~ msgstr "プラグインページへ移動"
2461
- #~ msgid "Return to Plugins page"
2462
- #~ msgstr "プラグインページへ戻る"
2463
- #~ msgid "Actions:"
2464
- #~ msgstr "操作:"
2465
- #~ msgid "Successfully installed the plugin <strong>%s %s</strong>."
2466
- #~ msgstr "プラグイン <strong>%s %s</strong> のインストールが完了しました。"
2467
- #~ msgid "Return to Plugin Installer"
2468
- #~ msgstr "プラグインインストーラに戻る"
2469
- #~ msgid "Successfully installed the theme <strong>%1$s %2$s</strong>."
2470
- #~ msgstr "テーマ <strong>%1$s %2$s</strong> のインストールが完了しました。"
2471
- #~ msgid "Preview &#8220;%s&#8221;"
2472
- #~ msgstr "&#8220;%s&#8221; をプレビューする"
2473
- #~ msgid "Activate &#8220;%s&#8221;"
2474
- #~ msgstr "&#8220;%s&#8221; を使用する"
2475
- #~ msgid "Activate"
2476
- #~ msgstr "使用する"
2477
- #~ msgid "Return to Theme Installer"
2478
- #~ msgstr "テーマインストーラーへ戻る"
2479
- #~ msgid "Themes page"
2480
- #~ msgstr "テーマのページ"
2481
- #~ msgid "Return to Themes page"
2482
- #~ msgstr "テーマのページに戻る"
2483
- #~ msgid "Upgrade Theme"
2484
- #~ msgstr "テーマのアップグレード"
2485
- #~ msgid "Please select a file"
2486
- #~ msgstr "ファイルを選択してください"
2487
- #~ msgid "The uploaded file could not be moved to %s."
2488
- #~ msgstr "アップロードしたファイルを%sに移動できませんでした。"
2489
- #~ msgid ""
2490
- #~ "You are not allowed to edit comments on this post, so you cannot edit "
2491
- #~ "this comment."
2492
- #~ msgstr ""
2493
- #~ "この投稿へのコメントを編集する権限がないので、このコメントを編集することは"
2494
- #~ "できません。"
2495
- #~ msgid "Right Now"
2496
- #~ msgstr "現在の状況"
2497
- #~ msgid "Recent Comments"
2498
- #~ msgstr "最近のコメント"
2499
- #~ msgid "Incoming Links"
2500
- #~ msgstr "リファラー"
2501
- #~ msgid "Plugins"
2502
- #~ msgstr "プラグイン"
2503
- #~ msgid "QuickPress"
2504
- #~ msgstr "クイック投稿"
2505
- #~ msgid "Recent Drafts"
2506
- #~ msgstr "最近の下書き"
2507
- #~ msgid "http://wordpress.org/development/feed/"
2508
- #~ msgstr "http://ja.wordpress.org/feed/"
2509
- #~ msgid "WordPress Development Blog"
2510
- #~ msgstr "WordPress 開発ブログ"
2511
- #~ msgid "http://planet.wordpress.org/"
2512
- #~ msgstr "http://ja.forums.wordpress.org/"
2513
- #~ msgid "http://planet.wordpress.org/feed/"
2514
- #~ msgstr "http://ja.forums.wordpress.org/rss.php"
2515
- #~ msgid "Other WordPress News"
2516
- #~ msgstr "WordPress フォーラム"
2517
- #~ msgid "View all"
2518
- #~ msgstr "すべて表示"
2519
- #~ msgid "Configure"
2520
- #~ msgstr "設定"
2521
- #~ msgid "At a Glance"
2522
- #~ msgstr "概況"
2523
- #~ msgid "Post"
2524
- #~ msgid_plural "Posts"
2525
- #~ msgstr[0] "投稿"
2526
- #~ msgid "Comment"
2527
- #~ msgid_plural "Comments"
2528
- #~ msgstr[0] "コメント"
2529
- #~ msgid "Page"
2530
- #~ msgid_plural "Pages"
2531
- #~ msgstr[0] "ページ"
2532
- #~ msgid "Approved|Right Now"
2533
- #~ msgid_plural "Approved"
2534
- #~ msgstr[0] "承認済み"
2535
- #~ msgid "Category"
2536
- #~ msgid_plural "Categories"
2537
- #~ msgstr[0] "カテゴリー"
2538
- #~ msgid "Pending"
2539
- #~ msgid_plural "Pending"
2540
- #~ msgstr[0] "承認待ち"
2541
- #~ msgid "Tag"
2542
- #~ msgid_plural "Tags"
2543
- #~ msgstr[0] "タグ"
2544
- #~ msgid "Spam"
2545
- #~ msgid_plural "Spam"
2546
- #~ msgstr[0] "スパム"
2547
- #~ msgid "Change Theme"
2548
- #~ msgstr "テーマの変更"
2549
- #~ msgid ""
2550
- #~ "Theme <span class=\"b\"><a href=\"themes.php\">%1$s</a></span> with <span "
2551
- #~ "class=\"b\"><a href=\"widgets.php\">%2$s Widget</a></span>"
2552
- #~ msgid_plural ""
2553
- #~ "Theme <span class=\"b\"><a href=\"themes.php\">%1$s</a></span> with <span "
2554
- #~ "class=\"b\"><a href=\"widgets.php\">%2$s Widgets</a></span>"
2555
- #~ msgstr[0] ""
2556
- #~ "<span class=\"b\"><a href=\"themes.php\">%1$s</a></span> テーマで <span "
2557
- #~ "class=\"b\"><a href=\"widgets.php\">%2$s個のウィジェット</a>を使用中</"
2558
- #~ "span>"
2559
- #~ msgid ""
2560
- #~ "Theme <span class=\"b\">%1$s</span> with <span class=\"b\">%2$s Widget</"
2561
- #~ "span>"
2562
- #~ msgid_plural ""
2563
- #~ "Theme <span class=\"b\">%1$s</span> with <span class=\"b\">%2$s Widgets</"
2564
- #~ "span>"
2565
- #~ msgstr[0] ""
2566
- #~ "<span class=\"b\">%1$s</span> テーマで <span class=\"b\">%2$s個のウィ"
2567
- #~ "ジェット</span>を使用中"
2568
- #~ msgid ""
2569
- #~ "Post Published. <a href=\"%s\">View post</a> | <a href=\"%s\">Edit post</"
2570
- #~ "a>"
2571
- #~ msgstr ""
2572
- #~ "投稿を公開しました。 <a href=\"%s\">投稿を表示する</a> | <a href=\"%s\">投"
2573
- #~ "稿を編集する</a>"
2574
- #~ msgid ""
2575
- #~ "Post submitted. <a href=\"%s\">Preview post</a> | <a href=\"%s\">Edit "
2576
- #~ "post</a>"
2577
- #~ msgstr ""
2578
- #~ "投稿を送信しました。 <a href=\"%s\">投稿をプレビューする</a> | <a href=\"%"
2579
- #~ "s\">投稿を編集する</a>"
2580
- #~ msgid ""
2581
- #~ "Draft Saved. <a href=\"%s\">Preview post</a> | <a href=\"%s\">Edit post</"
2582
- #~ "a>"
2583
- #~ msgstr ""
2584
- #~ "下書きを保存しました。 <a href=\"%s\">投稿をプレビューする</a> | <a href="
2585
- #~ "\"%s\">投稿を編集する</a>"
2586
- #~ msgid "You can also try %s, easy blogging from anywhere on the Web."
2587
- #~ msgstr ""
2588
- #~ "%s も試してみてください。ウェブのどこからでも簡単にブログ投稿ができます。"
2589
- #~ msgid "Press This"
2590
- #~ msgstr "Press This"
2591
- #~ msgid "Content"
2592
- #~ msgstr "内容"
2593
- #~ msgid "Reset"
2594
- #~ msgstr "リセット"
2595
- #~ msgid "There are no drafts at the moment"
2596
- #~ msgstr "今のところ下書きはありません。"
2597
- #~ msgid "Approve this comment"
2598
- #~ msgstr "このコメントを承認"
2599
- #~ msgid "Unapprove this comment"
2600
- #~ msgstr "このコメントを承認しない"
2601
- #~ msgid "Edit comment"
2602
- #~ msgstr "コメント編集"
2603
- #~ msgid "Reply to this comment"
2604
- #~ msgstr "このコメントに返信する"
2605
- #~ msgid "Reply"
2606
- #~ msgstr "返信"
2607
- #~ msgid "Mark this comment as spam"
2608
- #~ msgstr "このコメントをスパムとしてマーク"
2609
- #~ msgctxt "verb"
2610
- #~ msgid "Spam"
2611
- #~ msgstr "スパム"
2612
- #~ msgid "From %1$s on %2$s%3$s"
2613
- #~ msgstr "%2$s に %1$s より %3$s"
2614
- #~ msgid "[Pending]"
2615
- #~ msgstr "[承認待ち]"
2616
- #~ msgid "Pingback"
2617
- #~ msgstr "ピンバック"
2618
- #~ msgid "Trackback"
2619
- #~ msgstr "トラックバック"
2620
- #~ msgctxt "dashboard"
2621
- #~ msgid "%1$s on %2$s"
2622
- #~ msgstr "%2$s への %1$s"
2623
- #~ msgid "<strong>RSS Error</strong>: %s"
2624
- #~ msgstr "<strong>RSS エラー</strong>: %s"
2625
- #~ msgid ""
2626
- #~ "This dashboard widget queries <a href=\"http://blogsearch.google.com/"
2627
- #~ "\">Google Blog Search</a> so that when another blog links to your site it "
2628
- #~ "will show up here. It has found no incoming links&hellip; yet. It&#8217;s "
2629
- #~ "okay &#8212; there is no rush."
2630
- #~ msgstr ""
2631
- #~ "このダッシュボードウィジェットは <a href=\"http://blogsearch.google.com/"
2632
- #~ "\">Google ブログ検索</a>での検索結果をもとに、このサイトにリンクしているほ"
2633
- #~ "かのブログを表示します。外部からのリンクは見つかりません&hellip; 今のとこ"
2634
- #~ "ろ。大丈夫 &#8212; 急ぐ必要はありませんから。"
2635
- #~ msgid "Somebody"
2636
- #~ msgstr "誰か"
2637
- #~ msgid "%1$s linked here <a href=\"%2$s\">saying</a>, \"%3$s\""
2638
- #~ msgstr "%1$s がここにリンクして<a href=\"%2$s\">述べました</a>: \"%3$s\""
2639
- #~ msgid "%1$s linked here saying, \"%3$s\""
2640
- #~ msgstr "%1$s がここにリンクして述べました: \"%3$s\""
2641
- #~ msgid "on %4$s"
2642
- #~ msgstr ": %4$s"
2643
- #~ msgid "Most Popular"
2644
- #~ msgstr "最も人気が高い"
2645
- #~ msgid "Newest Plugins"
2646
- #~ msgstr "最新のプラグイン"
2647
- #~ msgid "Recently Updated"
2648
- #~ msgstr "最近の更新"
2649
- #~ msgid "Install"
2650
- #~ msgstr "インストール"
2651
- #~ msgid "Loading&#8230;"
2652
- #~ msgstr "読み込み中&#8230;"
2653
- #~ msgid "Unknown Feed"
2654
- #~ msgstr "不明なフィード"
2655
- #~ msgid "Main Index Template"
2656
- #~ msgstr "メインインデックスのテンプレート"
2657
- #~ msgid "Stylesheet"
2658
- #~ msgstr "スタイルシート"
2659
- #~ msgid "RTL Stylesheet"
2660
- #~ msgstr "RTL スタイルシート"
2661
- #~ msgid "Popup Comments"
2662
- #~ msgstr "ポップアップコメント"
2663
- #~ msgid "Footer"
2664
- #~ msgstr "フッター"
2665
- #~ msgid "Header"
2666
- #~ msgstr "ヘッダー"
2667
- #~ msgid "Sidebar"
2668
- #~ msgstr "サイドバー"
2669
- #~ msgid "Archives"
2670
- #~ msgstr "アーカイブ"
2671
- #~ msgid "Category Template"
2672
- #~ msgstr "カテゴリーテンプレート"
2673
- #~ msgid "Search Results"
2674
- #~ msgstr "検索結果"
2675
- #~ msgid "Search Form"
2676
- #~ msgstr "検索フォーム"
2677
- #~ msgid "Single Post"
2678
- #~ msgstr "単一記事の投稿"
2679
- #~ msgid "404 Template"
2680
- #~ msgstr "404 テンプレート"
2681
- #~ msgid "Links Template"
2682
- #~ msgstr "リンクテンプレート"
2683
- #~ msgid "Theme Functions"
2684
- #~ msgstr "テーマのための関数"
2685
- #~ msgid "Attachment Template"
2686
- #~ msgstr "添付ファイルテンプレート"
2687
- #~ msgid "Image Attachment Template"
2688
- #~ msgstr "画像添付テンプレート"
2689
- #~ msgid "Video Attachment Template"
2690
- #~ msgstr "動画添付テンプレート"
2691
- #~ msgid "Audio Attachment Template"
2692
- #~ msgstr "音声添付テンプレート"
2693
- #~ msgid "Application Attachment Template"
2694
- #~ msgstr "アプリケーション添付テンプレート"
2695
- #~ msgid "my-hacks.php (legacy hacks support)"
2696
- #~ msgstr "my-hacks.php (レガシーハックに対応)"
2697
- #~ msgid ".htaccess (for rewrite rules )"
2698
- #~ msgstr ".htaccess (rewrite ルール用)"
2699
- #~ msgid "Comments Template"
2700
- #~ msgstr "コメントテンプレート"
2701
- #~ msgid "Popup Comments Template"
2702
- #~ msgstr "ポップアップコメントのテンプレート"
2703
- #~ msgid ""
2704
- #~ "Sorry, can&#8217;t edit files with &#8220;..&#8221; in the name. If you "
2705
- #~ "are trying to edit a file in your WordPress home directory, you can just "
2706
- #~ "type the name of the file in."
2707
- #~ msgstr ""
2708
- #~ "ファイル名に&#8220;..&#8221; が含まれているファイルは編集できません。"
2709
- #~ "WordPress のホームディレクトリにあるファイルを編集するにはそのファイル名の"
2710
- #~ "みを入力します。"
2711
- #~ msgid "Sorry, can&#8217;t call files with their real path."
2712
- #~ msgstr "絶対パスではファイルを呼び出すことはできません。"
2713
- #~ msgid "Sorry, that file cannot be edited."
2714
- #~ msgstr "このファイルは編集できません。"
2715
- #~ msgid ""
2716
- #~ "The uploaded file exceeds the <code>upload_max_filesize</code> directive "
2717
- #~ "in <code>php.ini</code>."
2718
- #~ msgstr ""
2719
- #~ "アップロードしようとしたファイルは <code>php.ini</code> の "
2720
- #~ "<code>upload_max_filesize</code> で指定されているサイズを超えています。"
2721
- #~ msgid ""
2722
- #~ "The uploaded file exceeds the <em>MAX_FILE_SIZE</em> directive that was "
2723
- #~ "specified in the HTML form."
2724
- #~ msgstr ""
2725
- #~ "アップロードしようとしたファイルは HTML フォームの <em>MAX_FILE_SIZE</em> "
2726
- #~ "で指定されているサイズを超えています。"
2727
- #~ msgid "The uploaded file was only partially uploaded."
2728
- #~ msgstr "部分的にしかアップロードできませんでした。"
2729
- #~ msgid "No file was uploaded."
2730
- #~ msgstr "ファイルをアップロードできませんでした。"
2731
- #~ msgid "Missing a temporary folder."
2732
- #~ msgstr "一時フォルダが見つかりません。"
2733
- #~ msgid "Failed to write file to disk."
2734
- #~ msgstr "ディスクへのファイルの書き込みに失敗しました。"
2735
- #~ msgid "File upload stopped by extension."
2736
- #~ msgstr "拡張モジュールによってファイルアップロードが停止しました。"
2737
- #~ msgid "Invalid form submission."
2738
- #~ msgstr "フォームの送信が正しくありません。"
2739
- #~ msgid ""
2740
- #~ "File is empty. Please upload something more substantial. This error could "
2741
- #~ "also be caused by uploads being disabled in your php.ini."
2742
- #~ msgstr ""
2743
- #~ "ファイルが空です。実体のあるファイルをアップロードしてください。また、この"
2744
- #~ "エラーは php.ini でアップロードが無効にされている場合に発生することもあり"
2745
- #~ "ます。"
2746
- #~ msgid "Specified file failed upload test."
2747
- #~ msgstr "指定されたファイルはアップロードのテストに失敗しました。"
2748
- #~ msgid "File type does not meet security guidelines. Try another."
2749
- #~ msgstr ""
2750
- #~ "ファイルタイプがセキュリティガイドラインを満たしていません。別のファイルタ"
2751
- #~ "イプを試してください。"
2752
- #~ msgid "Specified file does not exist."
2753
- #~ msgstr "指定されたファイルは存在しません。"
2754
- #~ msgid "Invalid URL Provided"
2755
- #~ msgstr "無効な URL"
2756
- #~ msgid "Could not create Temporary file"
2757
- #~ msgstr "一時ファイルを作成できませんでした"
2758
- #~ msgid "Incompatible archive"
2759
- #~ msgstr "互換性のないアーカイブ"
2760
- #~ msgid "Empty archive"
2761
- #~ msgstr "空のアーカイブ"
2762
- #~ msgid "Could not create directory"
2763
- #~ msgstr "ディレクトリを作成できませんでした"
2764
- #~ msgid "Could not copy file"
2765
- #~ msgstr "ファイルをコピーできませんでした"
2766
- #~ msgid ""
2767
- #~ "<strong>Error:</strong> There was an error connecting to the server, "
2768
- #~ "Please verify the settings are correct."
2769
- #~ msgstr ""
2770
- #~ "<strong>エラー:</strong> サーバー接続中にエラーが発生しました。設定を確認"
2771
- #~ "してください。"
2772
- #~ msgid "Connection Information"
2773
- #~ msgstr "接続情報"
2774
- #~ msgid "To perform the requested action, connection information is required."
2775
- #~ msgstr "要求された操作を実行するためには、接続情報が必要です。"
2776
- #~ msgid "Hostname"
2777
- #~ msgstr "ホスト名"
2778
- #~ msgid "Username"
2779
- #~ msgstr "ユーザー名"
2780
- #~ msgid "Password"
2781
- #~ msgstr "パスワード"
2782
- #~ msgid "Authentication Keys"
2783
- #~ msgstr "認証キー"
2784
- #~ msgid "Public Key:"
2785
- #~ msgstr "公開鍵:"
2786
- #~ msgid "Private Key:"
2787
- #~ msgstr "秘密鍵:"
2788
- #~ msgid ""
2789
- #~ "Enter the location on the server where the keys are located. If a "
2790
- #~ "passphrase is needed, enter that in the password field above."
2791
- #~ msgstr ""
2792
- #~ "鍵が存在するサーバー上の位置を入力してください。もしパスフレーズが必要な場"
2793
- #~ "合は、上のパスワードフィールドに記入してください。"
2794
- #~ msgid "Connection Type"
2795
- #~ msgstr "接続形式"
2796
- #~ msgid "FTP"
2797
- #~ msgstr "FTP"
2798
- #~ msgid "FTPS (SSL)"
2799
- #~ msgstr "FTPS (SSL)"
2800
- #~ msgid "SSH"
2801
- #~ msgstr "SSH"
2802
- #~ msgid "Proceed"
2803
- #~ msgstr "開始"
2804
- #~ msgid "File &#8220;%s&#8221; doesn&#8217;t exist?"
2805
- #~ msgstr "ファイル &#8220;%s&#8221; は存在しますか ?"
2806
- #~ msgid "The GD image library is not installed."
2807
- #~ msgstr "GD イメージライブラリがインストールされていません。"
2808
- #~ msgid "File &#8220;%s&#8221; is not an image."
2809
- #~ msgstr "&#8220;%s&#8221; は画像ファイルではありません。"
2810
- #~ msgid "From Computer"
2811
- #~ msgstr "コンピューターから"
2812
- #~ msgid "From URL"
2813
- #~ msgstr "URL から"
2814
- #~ msgid "Gallery"
2815
- #~ msgstr "ギャラリー"
2816
- #~ msgid "Media Library"
2817
- #~ msgstr "メディアライブラリ"
2818
- #~ msgid "Gallery (%s)"
2819
- #~ msgstr "ギャラリー (%s)"
2820
- #~ msgid "Uploads"
2821
- #~ msgstr "アップロード"
2822
- #~ msgid "WordPress"
2823
- #~ msgstr "WordPress"
2824
- #~ msgid "Upload/Insert %s"
2825
- #~ msgstr "アップロード/挿入 %s"
2826
- #~ msgid "Add Media"
2827
- #~ msgstr "メディアを追加"
2828
- #~ msgid "Add an Image"
2829
- #~ msgstr "画像を追加"
2830
- #~ msgid "Add Video"
2831
- #~ msgstr "動画を追加"
2832
- #~ msgid "Add Audio"
2833
- #~ msgstr "音声を追加"
2834
- #~ msgid "Saved."
2835
- #~ msgstr "保存しました。"
2836
- #~ msgid "Left"
2837
- #~ msgstr "左"
2838
- #~ msgid "Center"
2839
- #~ msgstr "中央"
2840
- #~ msgid "Right"
2841
- #~ msgstr "右"
2842
- #~ msgid "Thumbnail"
2843
- #~ msgstr "サムネイル"
2844
- #~ msgid "Medium"
2845
- #~ msgstr "中サイズ"
2846
- #~ msgid "Large"
2847
- #~ msgstr "大サイズ"
2848
- #~ msgid "Full size"
2849
- #~ msgstr "フルサイズ"
2850
- #~ msgid "(%d&nbsp;&times;&nbsp;%d)"
2851
- #~ msgstr "(%d&nbsp;&times;&nbsp;%d)"
2852
- #~ msgid "Size"
2853
- #~ msgstr "サイズ"
2854
- #~ msgid "File URL"
2855
- #~ msgstr "ファイルの URL"
2856
- #~ msgid "Post URL"
2857
- #~ msgstr "投稿の URL"
2858
- #~ msgid "Caption"
2859
- #~ msgstr "キャプション"
2860
- #~ msgid "Also used as alternate text for the image"
2861
- #~ msgstr "画像の代替テキストとしても用いられます"
2862
- #~ msgid "Alignment"
2863
- #~ msgstr "配置"
2864
- #~ msgid "Empty Title filled from filename."
2865
- #~ msgstr "タイトルが空のため、ファイル名を使って補完しました。"
2866
- #~ msgid "Link URL"
2867
- #~ msgstr "リンク URL"
2868
- #~ msgid "Enter a link URL or click above for presets."
2869
- #~ msgstr "リンク URL を入力するか、または上のいずれかをクリックしてください。"
2870
- #~ msgid "Location of the uploaded file."
2871
- #~ msgstr "アップロードされたファイルの場所。"
2872
- #~ msgid "Show"
2873
- #~ msgstr "表示する"
2874
- #~ msgid "Hide"
2875
- #~ msgstr "隠す"
2876
- #~ msgid "Insert into Post"
2877
- #~ msgstr "投稿に挿入"
2878
- #~ msgid "You are about to delete <strong>%s</strong>."
2879
- #~ msgstr "<strong>%s</strong> を削除しようとしています。"
2880
- #~ msgid "Select Files"
2881
- #~ msgstr "ファイルを選択"
2882
- #~ msgid "Choose files to upload"
2883
- #~ msgstr "アップロードするファイルを選択"
2884
- #~ msgid "Cancel Upload"
2885
- #~ msgstr "アップロードをキャンセル"
2886
- #~ msgid "After a file has been uploaded, you can add titles and descriptions."
2887
- #~ msgstr "ファイルのアップロード完了後、タイトルと説明を追加できます。"
2888
- #~ msgid ""
2889
- #~ "If you want to use all capabilities of the uploader, like uploading "
2890
- #~ "multiple files at once, please upgrade to lighttpd 1.5."
2891
- #~ msgstr ""
2892
- #~ "複数ファイルの一括アップロードなど、このアップローダーのすべての機能を使う"
2893
- #~ "には、lighttpd 1.5 へのアップグレードが必要です。"
2894
- #~ msgid "Add media files from your computer"
2895
- #~ msgstr "自分のコンピューターからメディアファイルを追加"
2896
- #~ msgid "Save all changes"
2897
- #~ msgstr "すべての変更を保存"
2898
- #~ msgid "Add media file from URL"
2899
- #~ msgstr "URL からメディアファイルを追加"
2900
- #~ msgid "All Tabs:"
2901
- #~ msgstr "すべてのタブ:"
2902
- #~ msgid "Sort Order:"
2903
- #~ msgstr "ソート順:"
2904
- #~ msgid "Ascending"
2905
- #~ msgstr "昇順"
2906
- #~ msgid "Descending"
2907
- #~ msgstr "降順"
2908
- #~ msgid "Clear"
2909
- #~ msgstr "クリア"
2910
- #~ msgid "Media"
2911
- #~ msgstr "メディア"
2912
- #~ msgid "Gallery Settings"
2913
- #~ msgstr "ギャラリー設定"
2914
- #~ msgid "Link thumbnails to:"
2915
- #~ msgstr "サムネイルのリンク先:"
2916
- #~ msgid "Image File"
2917
- #~ msgstr "画像ファイル"
2918
- #~ msgid "Attachment Page"
2919
- #~ msgstr "添付ファイルのページ"
2920
- #~ msgid "Order images by:"
2921
- #~ msgstr "画像の順序:"
2922
- #~ msgid "Menu order"
2923
- #~ msgstr "メニューの順序"
2924
- #~ msgid "Date/Time"
2925
- #~ msgstr "日付/時間"
2926
- #~ msgid "Random"
2927
- #~ msgstr "ランダム"
2928
- #~ msgid "Order:"
2929
- #~ msgstr "順序:"
2930
- #~ msgid "Gallery columns:"
2931
- #~ msgstr "ギャラリーの列数:"
2932
- #~ msgid "2"
2933
- #~ msgstr "2"
2934
- #~ msgid "3"
2935
- #~ msgstr "3"
2936
- #~ msgid "4"
2937
- #~ msgstr "4"
2938
- #~ msgid "5"
2939
- #~ msgstr "5"
2940
- #~ msgid "6"
2941
- #~ msgstr "6"
2942
- #~ msgid "7"
2943
- #~ msgstr "7"
2944
- #~ msgid "8"
2945
- #~ msgstr "8"
2946
- #~ msgid "9"
2947
- #~ msgstr "9"
2948
- #~ msgid "Insert gallery"
2949
- #~ msgstr "ギャラリーを挿入"
2950
- #~ msgid "Update gallery settings"
2951
- #~ msgstr "ギャラリー設定を更新"
2952
- #~ msgid "Search Media"
2953
- #~ msgstr "メディアを検索"
2954
- #~ msgid "All Types"
2955
- #~ msgstr "すべてのタイプ"
2956
- #~ msgid "Filter &#187;"
2957
- #~ msgstr "フィルター &#187;"
2958
- #~ msgid "Alternate Text"
2959
- #~ msgstr "代替テキスト"
2960
- #~ msgid "Alt text for the image, e.g. &#8220;The Mona Lisa&#8221;"
2961
- #~ msgstr "画像の代替テキスト 例:&#8220;The Mona Lisa&#8221;"
2962
- #~ msgid "Image Caption"
2963
- #~ msgstr "画像のキャプション"
2964
- #~ msgid "Image URL"
2965
- #~ msgstr "画像の URL"
2966
- #~ msgid "Image Title"
2967
- #~ msgstr "画像のタイトル"
2968
- #~ msgid "Link Image To:"
2969
- #~ msgstr "画像のリンク先:"
2970
- #~ msgid "Link to image"
2971
- #~ msgstr "画像へのリンク"
2972
- #~ msgid "Audio File URL"
2973
- #~ msgstr "音声ファイルの URL"
2974
- #~ msgid "Link text, e.g. &#8220;Still Alive by Jonathan Coulton&#8221;"
2975
- #~ msgstr "リンクテキスト 例: &#8220;Still Alive by Jonathan Coulton&#8221;"
2976
- #~ msgid "Video URL"
2977
- #~ msgstr "動画の URL"
2978
- #~ msgid "Link text, e.g. &#8220;Lucy on YouTube&#8220;"
2979
- #~ msgstr "リンクテキスト 例: &#8220;Lucy on YouTube&#8220;"
2980
- #~ msgid "Link text, e.g. &#8220;Ransom Demands (PDF)&#8221;"
2981
- #~ msgstr "リンクテキスト 例: &#8220;Ransom Demands (PDF)&#8221;"
2982
- #~ msgid ""
2983
- #~ "You are using the Flash uploader. Problems? Try the <a href=\"%s"
2984
- #~ "\">Browser uploader</a> instead."
2985
- #~ msgstr ""
2986
- #~ "Flash アップローダーを使用しています。問題がある場合、代わりに<a href=\"%s"
2987
- #~ "\">ブラウザアップローダー</a>を使ってください。"
2988
- #~ msgid "You are using the Browser uploader."
2989
- #~ msgstr "ブラウザアップローダーを使用しています。"
2990
- #~ msgid "Try the <a href=\"%s\">Flash uploader</a> instead."
2991
- #~ msgstr "<a href=\"%s\">Flash アップローダー</a> をお試しください。"
2992
- #~ msgid ""
2993
- #~ "An Unexpected HTTP Error occurred during the API request.</p> <p><a href="
2994
- #~ "\"?\" onclick=\"document.location.reload(); return false;\">Try again</a>"
2995
- #~ msgstr ""
2996
- #~ "API リクエストの間に、予期しない HTTP エラーが発生しました。</p> <p><a "
2997
- #~ "href=\"?\" onclick=\"document.location.reload(); return false;\">再度お試"
2998
- #~ "しください</a>。"
2999
- #~ msgid "An unknown error occurred"
3000
- #~ msgstr "不明なエラーが発生しました。"
3001
- #~ msgid ""
3002
- #~ "Plugins extend and expand the functionality of WordPress. You may "
3003
- #~ "automatically install plugins from the <a href=\"http://wordpress.org/"
3004
- #~ "extend/plugins/\">WordPress Plugin Directory</a> or upload a plugin in ."
3005
- #~ "zip format via this page."
3006
- #~ msgstr ""
3007
- #~ "プラグインを使うと WordPress の機能を拡張することができます。プラグインを"
3008
- #~ "インストールするには、このページから ZIP 形式のファイルをアップロードする"
3009
- #~ "か、<a href=\"http://wordpress.org/extend/plugins/\">WordPress plugin "
3010
- #~ "directory</a> から自動で追加することができます。また <a href=\"http://"
3011
- #~ "wppluginsj.sourceforge.jp/\">WordPress Plugins/JSeries</a> には日本に特有"
3012
- #~ "のものなどがあります。"
3013
- #~ msgid "Search"
3014
- #~ msgstr "検索"
3015
- #~ msgid "Search for plugins by keyword, author, or tag."
3016
- #~ msgstr ""
3017
- #~ "検索するプラグインのキーワード、作成者、もしくはタグを入力してください。"
3018
- #~ msgid "Popular tags"
3019
- #~ msgstr "人気のタグ"
3020
- #~ msgid ""
3021
- #~ "You may also browse based on the most popular tags in the Plugin "
3022
- #~ "Directory:"
3023
- #~ msgstr ""
3024
- #~ "プラグインディレクトリで人気の高いタグからプラグインを見つけることもできま"
3025
- #~ "す。"
3026
- #~ msgid "%d plugin"
3027
- #~ msgstr "プラグイン %d"
3028
- #~ msgid "%d plugins"
3029
- #~ msgstr "プラグイン %d"
3030
- #~ msgid "Term"
3031
- #~ msgstr "キーワード"
3032
- #~ msgctxt "Plugin Installer"
3033
- #~ msgid "Tag"
3034
- #~ msgstr "タグ"
3035
- #~ msgid "Search Plugins"
3036
- #~ msgstr "プラグインの検索"
3037
- #~ msgid "Install a plugin in .zip format"
3038
- #~ msgstr "ZIP 形式のプラグインをインストール"
3039
- #~ msgid ""
3040
- #~ "If you have a plugin in a .zip format, You may install it by uploading it "
3041
- #~ "here."
3042
- #~ msgstr ""
3043
- #~ "ZIP 形式のプラグインファイルをお持ちの場合、こちらからアップロードしてイン"
3044
- #~ "ストールできます。"
3045
- #~ msgid "Plugin zip file"
3046
- #~ msgstr "プラグイン zip ファイル"
3047
- #~ msgid "Install Now"
3048
- #~ msgstr "いますぐインストール"
3049
- #~ msgid "Version"
3050
- #~ msgstr "バージョン"
3051
- #~ msgid "Actions"
3052
- #~ msgstr "操作"
3053
- #~ msgid "No plugins match your request."
3054
- #~ msgstr "マッチするプラグインはありません。"
3055
- #~ msgid "By %s"
3056
- #~ msgstr "作者: %s"
3057
- #~ msgid "(based on %s rating)"
3058
- #~ msgid_plural "(based on %s ratings)"
3059
- #~ msgstr[0] "(%s件の評価に基づく)"
3060
- #~ msgid "5 stars"
3061
- #~ msgstr "5つ星"
3062
- #~ msgid "4 stars"
3063
- #~ msgstr "4つ星"
3064
- #~ msgid "3 stars"
3065
- #~ msgstr "3つ星"
3066
- #~ msgid "2 stars"
3067
- #~ msgstr "2つ星"
3068
- #~ msgid "1 star"
3069
- #~ msgstr "1つ星"
3070
- #~ msgid "Plugin Install"
3071
- #~ msgstr "プラグインインストール"
3072
- #~ msgid "Install Update Now"
3073
- #~ msgstr "今すぐ更新する"
3074
- #~ msgid "Newer Version (%s) Installed"
3075
- #~ msgstr "新しいバージョン (%s) がインストールされています"
3076
- #~ msgid "Latest Version Installed"
3077
- #~ msgstr "最新バージョンがインストールされています"
3078
- #~ msgid "FYI"
3079
- #~ msgstr "情報"
3080
- #~ msgid "Version:"
3081
- #~ msgstr "バージョン:"
3082
- #~ msgid "Author:"
3083
- #~ msgstr "作成者:"
3084
- #~ msgid "Last Updated:"
3085
- #~ msgstr "最後のアップデート:"
3086
- #~ msgid "Requires WordPress Version:"
3087
- #~ msgstr "WordPress の必須バージョン:"
3088
- #~ msgid "%s or higher"
3089
- #~ msgstr "%s以上"
3090
- #~ msgid "Compatible up to:"
3091
- #~ msgstr "対応する最新バージョン:"
3092
- #~ msgid "Downloaded:"
3093
- #~ msgstr "ダウンロード回数:"
3094
- #~ msgid "%s time"
3095
- #~ msgid_plural "%s times"
3096
- #~ msgstr[0] "%s回"
3097
- #~ msgid "WordPress.org Plugin Page &#187;"
3098
- #~ msgstr "WordPress.org プラグインページ &#187;"
3099
- #~ msgid "Plugin Homepage &#187;"
3100
- #~ msgstr "プラグインのホームページ &#187;"
3101
- #~ msgid "Average Rating"
3102
- #~ msgstr "評価の平均"
3103
- #~ msgid ""
3104
- #~ "<strong>Warning:</strong> This plugin has <strong>not been tested</"
3105
- #~ "strong> with your current version of WordPress."
3106
- #~ msgstr ""
3107
- #~ "<strong>注意:</strong> このプラグインは現在使用している WordPress のバー"
3108
- #~ "ジョンでは<strong>テストされていません</strong>。"
3109
- #~ msgid ""
3110
- #~ "<strong>Warning:</strong> This plugin has <strong>not been marked as "
3111
- #~ "compatible</strong> with your version of WordPress."
3112
- #~ msgstr ""
3113
- #~ "<strong>注意:</strong> このプラグインはお使いのバージョンの WordPress での"
3114
- #~ "<strong>互換性は確認されていません</strong>。"
3115
- #~ msgid "Visit plugin homepage"
3116
- #~ msgstr "プラグインのホームページを開く"
3117
- #~ msgid "Visit author homepage"
3118
- #~ msgstr "作者のホームページを開く"
3119
- #~ msgid "One of the plugins is invalid."
3120
- #~ msgstr "プラグインのひとつが不正です。"
3121
- #~ msgid "Could not fully remove the plugin(s) %s"
3122
- #~ msgstr "プラグイン %s を完全に削除できませんでした"
3123
- #~ msgid "Invalid plugin path."
3124
- #~ msgstr "プラグインのパスが間違っています。"
3125
- #~ msgid "Plugin file does not exist."
3126
- #~ msgstr "プラグインファイルが存在しません。"
3127
- #~ msgid "The plugin does not have a valid header."
3128
- #~ msgstr "このプラグインには有効なヘッダーがありません。"
3129
- #~ msgid "You are not allowed to edit pages as this user."
3130
- #~ msgstr "このユーザーではページを編集する権限がありません。"
3131
- #~ msgid "You are not allowed to create pages as this user."
3132
- #~ msgstr "このユーザーではページを作成する権限がありません。"
3133
- #~ msgid "You are not allowed to edit posts as this user."
3134
- #~ msgstr "このユーザーでは投稿を編集する権限がありません。"
3135
- #~ msgid "You are not allowed to post as this user."
3136
- #~ msgstr "このユーザーでは記事を投稿する権限がありません。"
3137
- #~ msgid "You are not allowed to edit pages."
3138
- #~ msgstr "ページを編集する権限がありません。"
3139
- #~ msgid "You are not allowed to edit posts."
3140
- #~ msgstr "投稿を編集する権限がありません。"
3141
- #~ msgid "You are not allowed to create pages on this blog."
3142
- #~ msgstr "このブログで新規ページを作成する権限がありません。"
3143
- #~ msgid "You are not allowed to create posts or drafts on this blog."
3144
- #~ msgstr "このブログで投稿または下書きを作成する権限がありません。"
3145
- #~ msgctxt "post"
3146
- #~ msgid "Published"
3147
- #~ msgstr "公開済み"
3148
- #~ msgid "Published posts"
3149
- #~ msgstr "公開済みの投稿"
3150
- #~ msgid "Published <span class=\"count\">(%s)</span>"
3151
- #~ msgid_plural "Published <span class=\"count\">(%s)</span>"
3152
- #~ msgstr[0] "公開済み <span class=\"count\">(%s)</span>"
3153
- #~ msgctxt "post"
3154
- #~ msgid "Scheduled"
3155
- #~ msgstr "予約済み"
3156
- #~ msgid "Scheduled posts"
3157
- #~ msgstr "予約済みの投稿"
3158
- #~ msgid "Scheduled <span class=\"count\">(%s)</span>"
3159
- #~ msgid_plural "Scheduled <span class=\"count\">(%s)</span>"
3160
- #~ msgstr[0] "公開予約 <span class=\"count\">(%s)</span>"
3161
- #~ msgctxt "post"
3162
- #~ msgid "Pending Review"
3163
- #~ msgstr "レビュー待ち"
3164
- #~ msgid "Pending posts"
3165
- #~ msgstr "保留中の投稿"
3166
- #~ msgid "Pending Review <span class=\"count\">(%s)</span>"
3167
- #~ msgid_plural "Pending Review <span class=\"count\">(%s)</span>"
3168
- #~ msgstr[0] "レビュー待ち <span class=\"count\">(%s)</span>"
3169
- #~ msgctxt "post"
3170
- #~ msgid "Draft"
3171
- #~ msgstr "下書き"
3172
- #~ msgid "Draft <span class=\"count\">(%s)</span>"
3173
- #~ msgid_plural "Drafts <span class=\"count\">(%s)</span>"
3174
- #~ msgstr[0] "下書き <span class=\"count\">(%s)</span>"
3175
- #~ msgctxt "post"
3176
- #~ msgid "Private"
3177
- #~ msgstr "非公開"
3178
- #~ msgid "Private posts"
3179
- #~ msgstr "非公開の投稿"
3180
- #~ msgid "Private <span class=\"count\">(%s)</span>"
3181
- #~ msgid_plural "Private <span class=\"count\">(%s)</span>"
3182
- #~ msgstr[0] "非公開 <span class=\"count\">(%s)</span>"
3183
- #~ msgid "Images"
3184
- #~ msgstr "画像"
3185
- #~ msgid "Manage Images"
3186
- #~ msgstr "画像の管理"
3187
- #~ msgid "Image <span class=\"count\">(%s)</span>"
3188
- #~ msgid_plural "Images <span class=\"count\">(%s)</span>"
3189
- #~ msgstr[0] "画像 <span class=\"count\">(%s)</span>"
3190
- #~ msgid "Audio"
3191
- #~ msgstr "音声"
3192
- #~ msgid "Manage Audio"
3193
- #~ msgstr "音声の管理"
3194
- #~ msgid "Audio <span class=\"count\">(%s)</span>"
3195
- #~ msgid_plural "Audio <span class=\"count\">(%s)</span>"
3196
- #~ msgstr[0] "音声 <span class=\"count\">(%s)</span>"
3197
- #~ msgid "Video"
3198
- #~ msgstr "動画"
3199
- #~ msgid "Manage Video"
3200
- #~ msgstr "動画の管理"
3201
- #~ msgid "Video <span class=\"count\">(%s)</span>"
3202
- #~ msgid_plural "Video <span class=\"count\">(%s)</span>"
3203
- #~ msgstr[0] "動画 <span class=\"count\">(%s)</span>"
3204
- #~ msgid "View Post"
3205
- #~ msgstr "投稿を表示"
3206
- #~ msgid "View Page"
3207
- #~ msgstr "ページを表示"
3208
- #~ msgid "Permalink:"
3209
- #~ msgstr "パーマリンク:"
3210
- #~ msgid "Change Permalinks"
3211
- #~ msgstr "パーマリンクの変更"
3212
- #~ msgid "Click to edit this part of the permalink"
3213
- #~ msgstr "クリックしてパーマリンクのこの部分を編集"
3214
- #~ msgid "Preview not available. Please save as a draft first."
3215
- #~ msgstr "プレビューできません。まず下書きとして保存してください。"
3216
- #~ msgid "My Blog"
3217
- #~ msgstr "私のブログ"
3218
- #~ msgid "Just another WordPress weblog"
3219
- #~ msgstr "Just another WordPress weblog"
3220
- #~ msgid "F j, Y"
3221
- #~ msgstr "Y年n月j日"
3222
- #~ msgid "g:i a"
3223
- #~ msgstr "g:i A"
3224
- #~ msgid "F j, Y g:i a"
3225
- #~ msgstr "Y年n月j日 g:i A"
3226
- #~ msgctxt "User role"
3227
- #~ msgid "Administrator"
3228
- #~ msgstr "管理者"
3229
- #~ msgctxt "User role"
3230
- #~ msgid "Editor"
3231
- #~ msgstr "編集者"
3232
- #~ msgctxt "User role"
3233
- #~ msgid "Author"
3234
- #~ msgstr "作成者"
3235
- #~ msgctxt "User role"
3236
- #~ msgid "Contributor"
3237
- #~ msgstr "寄稿者"
3238
- #~ msgctxt "User role"
3239
- #~ msgid "Subscriber"
3240
- #~ msgstr "購読者"
3241
- #~ msgid "Quick&nbsp;Edit"
3242
- #~ msgstr "クイック編集"
3243
- #~ msgid "Quick Edit"
3244
- #~ msgstr "クイック編集"
3245
- #~ msgid "Slug"
3246
- #~ msgstr "スラッグ"
3247
- #~ msgctxt "column name"
3248
- #~ msgid "Post"
3249
- #~ msgstr "投稿"
3250
- #~ msgctxt "column name"
3251
- #~ msgid "File"
3252
- #~ msgstr "ファイル"
3253
- #~ msgctxt "column name"
3254
- #~ msgid "Attached to"
3255
- #~ msgstr "リンク先:"
3256
- #~ msgctxt "column name"
3257
- #~ msgid "Date"
3258
- #~ msgstr "日付"
3259
- #~ msgid "In Response To"
3260
- #~ msgstr "返信のあった投稿"
3261
- #~ msgid "Relationship"
3262
- #~ msgstr "関係"
3263
- #~ msgid "Visible"
3264
- #~ msgstr "表示"
3265
- #~ msgid "Links"
3266
- #~ msgstr "リンク"
3267
- #~ msgid "Role"
3268
- #~ msgstr "権限"
3269
- #~ msgid "Bulk Edit Pages"
3270
- #~ msgstr "ページの一括編集"
3271
- #~ msgid "Bulk Edit Posts"
3272
- #~ msgstr "投稿の一括編集"
3273
- #~ msgid "- No Change -"
3274
- #~ msgstr "- 変更しない -"
3275
- #~ msgid "&ndash;OR&ndash;"
3276
- #~ msgstr "&ndash;または&ndash;"
3277
- #~ msgid "Private page"
3278
- #~ msgstr "非公開ページ"
3279
- #~ msgid "Private post"
3280
- #~ msgstr "非公開の投稿"
3281
- #~ msgid "[more]"
3282
- #~ msgstr "[拡大表示]"
3283
- #~ msgid "[less]"
3284
- #~ msgstr "[コンパクト表示]"
3285
- #~ msgid "Allow"
3286
- #~ msgstr "許可する"
3287
- #~ msgid "Do not allow"
3288
- #~ msgstr "許可しない"
3289
- #~ msgid "Sticky"
3290
- #~ msgstr "先頭に固定表示"
3291
- #~ msgid "Not Sticky"
3292
- #~ msgstr "通常通り表示"
3293
- #~ msgid "Make this post sticky"
3294
- #~ msgstr "この投稿を先頭に固定表示"
3295
- #~ msgid "Update"
3296
- #~ msgstr "更新"
3297
- #~ msgid "Update Pages"
3298
- #~ msgstr "ページを更新"
3299
- #~ msgid "Update Posts"
3300
- #~ msgstr "投稿を更新"
3301
- #~ msgid "Missed schedule"
3302
- #~ msgstr "予約投稿の失敗"
3303
- #~ msgid "Last Modified"
3304
- #~ msgstr "最終編集日"
3305
- #~ msgid "Edit this post"
3306
- #~ msgstr "この投稿を編集"
3307
- #~ msgid "Edit this post inline"
3308
- #~ msgstr "この投稿をインラインで編集"
3309
- #~ msgid "Delete this post"
3310
- #~ msgstr "この投稿を削除"
3311
- #~ msgid ""
3312
- #~ "You are about to delete this draft '%s'\n"
3313
- #~ " 'Cancel' to stop, 'OK' to delete."
3314
- #~ msgstr ""
3315
- #~ "下書き '%s' を削除しようとしています。\n"
3316
- #~ "削除するには 'OK' を、中止するには 'キャンセル' をクリックしてください。"
3317
- #~ msgid ""
3318
- #~ "You are about to delete this post '%s'\n"
3319
- #~ " 'Cancel' to stop, 'OK' to delete."
3320
- #~ msgstr ""
3321
- #~ "投稿 '%s' を削除しようとしています。\n"
3322
- #~ "削除するには 'OK' を、中止するには 'キャンセル' をクリックしてください。"
3323
- #~ msgid "Uncategorized"
3324
- #~ msgstr "未分類"
3325
- #~ msgid "Parent Page: "
3326
- #~ msgstr "親ページ: "
3327
- #~ msgid "Edit this page"
3328
- #~ msgstr "このページを編集"
3329
- #~ msgid "Delete this page"
3330
- #~ msgstr "このページを削除"
3331
- #~ msgid ""
3332
- #~ "You are about to delete this page '%s'\n"
3333
- #~ " 'Cancel' to stop, 'OK' to delete."
3334
- #~ msgstr ""
3335
- #~ "ページ '%s' を削除しようとしています。\n"
3336
- #~ "削除するには 'OK' を、中止するには 'キャンセル' をクリックしてください。"
3337
- #~ msgid "e-mail: %s"
3338
- #~ msgstr "メールアドレス: %s"
3339
- #~ msgid "View posts by this author"
3340
- #~ msgstr "この投稿者の投稿を表示"
3341
- #~ msgid "Y/m/d \\a\\t g:i A"
3342
- #~ msgstr "Y年n月j日 g:i a"
3343
- #~ msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
3344
- #~ msgstr "投稿日時: <a href=\"%1$s\">%2$s %3$s</a>"
3345
- #~ msgid "g:ia"
3346
- #~ msgstr "g:i A"
3347
- #~ msgid "Y/m/d \\a\\t g:ia"
3348
- #~ msgstr "Y年n月j日 g:i a"
3349
- #~ msgid "Reply to Comment"
3350
- #~ msgstr "コメントに返信"
3351
- #~ msgid "Submit Reply"
3352
- #~ msgstr "返事を送信"
3353
- #~ msgid "Value"
3354
- #~ msgstr "値"
3355
- #~ msgid "Key"
3356
- #~ msgstr "キー"
3357
- #~ msgid "Add new custom field:"
3358
- #~ msgstr "新しいカスタムフィールドを追加:"
3359
- #~ msgid "Enter new"
3360
- #~ msgstr "新規追加"
3361
- #~ msgid "Add Custom Field"
3362
- #~ msgstr "カスタムフィールドを追加"
3363
- #~ msgid "%1$s%2$s, %3$s @ %4$s : %5$s"
3364
- #~ msgstr "%3$s年%1$s%2$s日 @ %4$s : %5$s"
3365
- #~ msgid "WordPress recommends a better browser"
3366
- #~ msgstr "WordPress はもっと良いブラウザを推奨します"
3367
- #~ msgid "Thumbnail linked to file"
3368
- #~ msgstr "ファイルにサムネイルをリンク"
3369
- #~ msgid "Image linked to file"
3370
- #~ msgstr "画像をファイルにリンク"
3371
- #~ msgid "Thumbnail linked to page"
3372
- #~ msgstr "サムネイルをページにリンク"
3373
- #~ msgid "Image linked to page"
3374
- #~ msgstr "画像をページにリンク"
3375
- #~ msgid "Link to file"
3376
- #~ msgstr "ファイルにリンクする"
3377
- #~ msgid "Link to page"
3378
- #~ msgstr "ページにリンクする"
3379
- #~ msgid ""
3380
- #~ "Before you can upload your import file, you will need to fix the "
3381
- #~ "following error:"
3382
- #~ msgstr ""
3383
- #~ "インポートファイルをアップロードする前に次のエラーを修復する必要がありま"
3384
- #~ "す:"
3385
- #~ msgid "Choose a file from your computer:"
3386
- #~ msgstr "自分のコンピューターからファイルを選択する:"
3387
- #~ msgid "Maximum size: %s"
3388
- #~ msgstr "最大サイズ: %s"
3389
- #~ msgid "Upload file and import"
3390
- #~ msgstr "ファイルをアップロードしてインポート"
3391
- #~ msgid "Click to toggle"
3392
- #~ msgstr "クリックで切替"
3393
- #~ msgid "Find Posts or Pages"
3394
- #~ msgstr "投稿またはページを検索"
3395
- #~ msgid "Close"
3396
- #~ msgstr "閉じる"
3397
- #~ msgid "Select"
3398
- #~ msgstr "選択"
3399
- #~ msgid "New Page"
3400
- #~ msgstr "新規ページ"
3401
- #~ msgid "New Media"
3402
- #~ msgstr "新しいメディア"
3403
- #~ msgid "Edit Media"
3404
- #~ msgstr "メディアを編集"
3405
- #~ msgid "New Link"
3406
- #~ msgstr "新しいリンク"
3407
- #~ msgid "Edit Links"
3408
- #~ msgstr "リンクの編集"
3409
- #~ msgid "New User"
3410
- #~ msgstr "新しいユーザー"
3411
- #~ msgid "Edit Users"
3412
- #~ msgstr "ユーザーの編集"
3413
- #~ msgid "Install Plugins"
3414
- #~ msgstr "プラグインのインストール"
3415
- #~ msgid "Manage Plugins"
3416
- #~ msgstr "プラグインの管理"
3417
- #~ msgid "Install Themes"
3418
- #~ msgstr "テーマのインストール"
3419
- #~ msgid "Manage Themes"
3420
- #~ msgstr "テーマの管理"
3421
- #~ msgid "New Post"
3422
- #~ msgstr "新規投稿"
3423
- #~ msgid "Drafts"
3424
- #~ msgstr "下書き"
3425
- #~ msgid "(no title)"
3426
- #~ msgstr "(タイトルなし)"
3427
- #~ msgctxt "post state"
3428
- #~ msgid "Pending"
3429
- #~ msgstr "レビュー待ち"
3430
- #~ msgid ""
3431
- #~ "<a href=\"http://codex.wordpress.org/Writing_Posts\" target=\"_blank"
3432
- #~ "\">Writing Posts</a>"
3433
- #~ msgstr ""
3434
- #~ "<a href=\"http://wpdocs.sourceforge.jp/Writing_Posts\" target=\"_blank\">"
3435
- #~ "記事の投稿</a>"
3436
- #~ msgid ""
3437
- #~ "The modules on this screen can be arranged in several columns. You can "
3438
- #~ "select the number of columns from the Screen Options tab."
3439
- #~ msgstr ""
3440
- #~ "このスクリーン上のモジュールは複数の列にアレンジできます。表示オプションタ"
3441
- #~ "ブから列の数を選択できます。"
3442
- #~ msgid ""
3443
- #~ "<a href=\"http://codex.wordpress.org/Settings_General_SubPanel\" target="
3444
- #~ "\"_blank\">General Settings</a>"
3445
- #~ msgstr ""
3446
- #~ "<a href=\"http://wpdocs.sourceforge.jp/Settings_General_SubPanel\" target="
3447
- #~ "\"_blank\">一般設定</a>"
3448
- #~ msgid "Enable syntax highlighting"
3449
- #~ msgstr "構文強調表示を有効にする"
3450
- #~ msgid "Disable syntax highlighting"
3451
- #~ msgstr "構文強調表示を無効にする"
3452
- #~ msgid "Enable accessibility mode"
3453
- #~ msgstr "アクセシビリティモードを有効にする"
3454
- #~ msgid "Disable accessibility mode"
3455
- #~ msgstr "アクセシビリティモードを無効にする"
3456
- #~ msgid "Show on screen"
3457
- #~ msgstr "表示する項目"
3458
- #~ msgid "Get help with &#8220;%s&#8221;"
3459
- #~ msgstr " &#8220;%s&#8221; のヘルプページを参照"
3460
- #~ msgid "Get help with this page"
3461
- #~ msgstr "この画面のヘルプページを参照"
3462
- #~ msgid "Other Help"
3463
- #~ msgstr "その他のヘルプ"
3464
- #~ msgid "Help"
3465
- #~ msgstr "ヘルプ"
3466
- #~ msgid ""
3467
- #~ "<a href=\"http://codex.wordpress.org/\" target=\"_blank\">Documentation</"
3468
- #~ "a>"
3469
- #~ msgstr ""
3470
- #~ "<a href=\"http://wpdocs.sourceforge.jp/\" target=\"_blank\">ドキュメント</"
3471
- #~ "a>"
3472
- #~ msgid ""
3473
- #~ "<a href=\"http://wordpress.org/support/\" target=\"_blank\">Support "
3474
- #~ "Forums</a>"
3475
- #~ msgstr ""
3476
- #~ "<a href=\"http://ja.forums.wordpress.org/\" target=\"_blank\">サポート"
3477
- #~ "フォーラム</a>"
3478
- #~ msgid "Screen Options"
3479
- #~ msgstr "表示オプション"
3480
- #~ msgid ""
3481
- #~ "Most of the modules on this screen can be moved. If you hover your mouse "
3482
- #~ "over the title bar of a module you&rsquo;ll notice the 4 arrow cursor "
3483
- #~ "appears to let you know it is movable. Click on it, hold down the mouse "
3484
- #~ "button and start dragging the module to a new location. As you drag the "
3485
- #~ "module, notice the dotted gray box that also moves. This box indicates "
3486
- #~ "where the module will be placed when you release the mouse button."
3487
- #~ msgstr ""
3488
- #~ "画面上のほとんどのモジュールは動かすことができます。マウスカーソルをモ"
3489
- #~ "ジュールのタイトルバーに乗せた時に十字矢印に変わるものは動かせます。クリッ"
3490
- #~ "クしてマウスボタンを押したままモジュールを新しい場所まで移動してください。"
3491
- #~ "グレーの点線の枠はマウスボタンを放した時にモジュールが置かれる場所を示しま"
3492
- #~ "す。"
3493
- #~ msgid ""
3494
- #~ "The same modules can be expanded and collapsed by clicking once on their "
3495
- #~ "title bar and also completely hidden from the Screen Options tab."
3496
- #~ msgstr ""
3497
- #~ "モジュールはタイトルバーをクリックすることにより開いたり閉じたりできます。"
3498
- #~ "また表示オプションタブより非表示にすることもできます。"
3499
- #~ msgid "Search help"
3500
- #~ msgstr "検索のヘルプ"
3501
- #~ msgid "You may search based on 3 criteria:"
3502
- #~ msgstr "3 つの条件から検索が可能です:"
3503
- #~ msgid ""
3504
- #~ "<strong>Term:</strong> Searches theme names and descriptions for the "
3505
- #~ "specified term."
3506
- #~ msgstr ""
3507
- #~ "<strong>キーワード:</strong> テーマ名および説明文のキーワードで検索する。"
3508
- #~ msgid "<strong>Tag:</strong> Searches for themes tagged as such."
3509
- #~ msgstr "<strong>タグ:</strong> 該当するタグがついたテーマを検索する。"
3510
- #~ msgid ""
3511
- #~ "<strong>Author:</strong> Searches for themes created by the Author, or "
3512
- #~ "which the Author contributed to."
3513
- #~ msgstr "<strong>作成者:</strong> テーマの作成者もしくは貢献者で検索する。"
3514
- #~ msgid ""
3515
- #~ "Widgets are added and arranged by simple drag &#8217;n&#8217; drop. If "
3516
- #~ "you hover your mouse over the titlebar of a widget, you&#8217;ll see a 4-"
3517
- #~ "arrow cursor which indicates that the widget is movable. Click on the "
3518
- #~ "titlebar, hold down the mouse button and drag the widget to a sidebar. As "
3519
- #~ "you drag, you&#8217;ll see a dotted box that also moves. This box shows "
3520
- #~ "where the widget will go once you drop it."
3521
- #~ msgstr ""
3522
- #~ "ウィジェットはドラッグすることで追加したり配置を変更したりできます。マウス"
3523
- #~ "カーソルをウィジェットのタイトルバーに乗せた時に十字矢印に変わるものは動か"
3524
- #~ "せます。タイトルバーをクリックしてマウスボタンを押したまま、ウィジェットを"
3525
- #~ "サイドバーにドラッグしてください。ウィジェットをドラッグするとグレーの点線"
3526
- #~ "の枠に気づくと思います。これはマウスボタンを放した時にウィジェットが置かれ"
3527
- #~ "る場所を示します。"
3528
- #~ msgid ""
3529
- #~ "To remove a widget from a sidebar, drag it back to Available Widgets or "
3530
- #~ "click on the arrow on its titlebar to reveal its settings, and then click "
3531
- #~ "Remove."
3532
- #~ msgstr ""
3533
- #~ "サイドバーからウィジェットを取り除くには、「利用できるウィジェット」にド"
3534
- #~ "ラッグするか、タイトルバーの矢印をクリックして設定画面を表示させ、削除をク"
3535
- #~ "リックしてください。"
3536
- #~ msgid ""
3537
- #~ "To remove a widget from a sidebar <em>and keep its configuration</em>, "
3538
- #~ "drag it to Inactive Widgets."
3539
- #~ msgstr ""
3540
- #~ "<em>設定を保持したまま</em>ウィジェットを取り除くには、使用停止中のウィ"
3541
- #~ "ジェットにドラッグしてください。"
3542
- #~ msgid ""
3543
- #~ "The Inactive Widgets area stores widgets that are configured but not "
3544
- #~ "curently used. If you change themes and the new theme has fewer sidebars "
3545
- #~ "than the old, all extra widgets will be stored to Inactive Widgets "
3546
- #~ "automatically."
3547
- #~ msgstr ""
3548
- #~ "使用停止中のウィジェットには、設定を保存したまま現在は使用を停止している"
3549
- #~ "ウィジェットが保管されます。もし変更した新しいテーマのサイドバーの数が古い"
3550
- #~ "テーマのサイドバーより少ない場合、すべてのあまったウィジェットは自動的に使"
3551
- #~ "用停止中のウィジェットに保管されます。"
3552
- #~ msgid "Screen Layout"
3553
- #~ msgstr "スクリーンレイアウト"
3554
- #~ msgid "Number of Columns:"
3555
- #~ msgstr "列の数:"
3556
- #~ msgid "Posts per page:"
3557
- #~ msgstr "1ページ内に表示する投稿の数:"
3558
- #~ msgid "Pages per page:"
3559
- #~ msgstr "1ページ内に表示するページの数:"
3560
- #~ msgid "Comments per page:"
3561
- #~ msgstr "1ページ内に表示するコメントの数:"
3562
- #~ msgid "Media items per page:"
3563
- #~ msgstr "1ページ内に表示するメディアの数:"
3564
- #~ msgid "Categories per page:"
3565
- #~ msgstr "1ページ内に表示するカテゴリーの数:"
3566
- #~ msgid "Tags per page:"
3567
- #~ msgstr "1ページ内に表示するタグの数:"
3568
- #~ msgid "Plugins per page:"
3569
- #~ msgstr "1ページ内に表示するプラグインの数:"
3570
- #~ msgid ""
3571
- #~ "An Unexpected HTTP Error occured during the API request.</p> <p><a href="
3572
- #~ "\"?\" onclick=\"document.location.reload(); return false;\">Try again</a>"
3573
- #~ msgstr ""
3574
- #~ "API リクエストの間に、予期しない HTTP エラーが発生しました。</p> <p><a "
3575
- #~ "href=\"?\" onclick=\"document.location.reload(); return false;\">再度お試"
3576
- #~ "しください</a>。"
3577
- #~ msgid "An unknown error occured"
3578
- #~ msgstr "未知のエラーが発生しました"
3579
- #~ msgid "Search for themes by keyword, author, or tag."
3580
- #~ msgstr ""
3581
- #~ "検索するテーマのキーワード、作成者、もしくはタグを入力してください。"
3582
- #~ msgctxt "Theme Installer"
3583
- #~ msgid "Tag"
3584
- #~ msgstr "タグ"
3585
- #~ msgid "Feature Filter"
3586
- #~ msgstr "特徴フィルター"
3587
- #~ msgid "Find a theme based on specific features"
3588
- #~ msgstr "特定の機能をもとにテーマを探します。"
3589
- #~ msgid "Colors"
3590
- #~ msgstr "カラー"
3591
- #~ msgid "Black"
3592
- #~ msgstr "黒"
3593
- #~ msgid "Brown"
3594
- #~ msgstr "茶"
3595
- #~ msgid "Green"
3596
- #~ msgstr "緑"
3597
- #~ msgid "Orange"
3598
- #~ msgstr "オレンジ"
3599
- #~ msgid "Pink"
3600
- #~ msgstr "ピンク"
3601
- #~ msgid "Purple"
3602
- #~ msgstr "紫"
3603
- #~ msgid "Red"
3604
- #~ msgstr "赤"
3605
- #~ msgid "Silver"
3606
- #~ msgstr "シルバー"
3607
- #~ msgid "Tan"
3608
- #~ msgstr "ベージュ"
3609
- #~ msgid "White"
3610
- #~ msgstr "白"
3611
- #~ msgid "Yellow"
3612
- #~ msgstr "黄"
3613
- #~ msgid "Dark"
3614
- #~ msgstr "暗い"
3615
- #~ msgid "Light"
3616
- #~ msgstr "明るい"
3617
- #~ msgid "Columns"
3618
- #~ msgstr "列"
3619
- #~ msgid "One Column"
3620
- #~ msgstr "1列"
3621
- #~ msgid "Two Columns"
3622
- #~ msgstr "2列"
3623
- #~ msgid "Three Columns"
3624
- #~ msgstr "3列"
3625
- #~ msgid "Four Columns"
3626
- #~ msgstr "4列"
3627
- #~ msgid "Left Sidebar"
3628
- #~ msgstr "左サイドバー"
3629
- #~ msgid "Right Sidebar"
3630
- #~ msgstr "右サイドバー"
3631
- #~ msgid "Width"
3632
- #~ msgstr "幅"
3633
- #~ msgid "Fixed Width"
3634
- #~ msgstr "固定幅"
3635
- #~ msgid "Flexible Width"
3636
- #~ msgstr "可変幅"
3637
- #~ msgid "Features"
3638
- #~ msgstr "機能"
3639
- #~ msgid "Custom Colors"
3640
- #~ msgstr "カスタムカラー"
3641
- #~ msgid "Theme Options"
3642
- #~ msgstr "テーマ設定"
3643
- #~ msgid "Threaded Comments"
3644
- #~ msgstr "スレッドコメント"
3645
- #~ msgid "Sticky Post"
3646
- #~ msgstr "固定投稿"
3647
- #~ msgid "Microformats"
3648
- #~ msgstr "Microformats"
3649
- #~ msgid "Subject"
3650
- #~ msgstr "題材"
3651
- #~ msgid "Holiday"
3652
- #~ msgstr "ホリデー"
3653
- #~ msgid "Photoblogging"
3654
- #~ msgstr "フォトブログ"
3655
- #~ msgid "Seasonal"
3656
- #~ msgstr "季節"
3657
- #~ msgid "Find Themes"
3658
- #~ msgstr "テーマを検索"
3659
- #~ msgid "Install a theme in .zip format"
3660
- #~ msgstr "ZIP 形式のテーマをインストール"
3661
- #~ msgid ""
3662
- #~ "If you have a theme in a .zip format, you may install it by uploading it "
3663
- #~ "here."
3664
- #~ msgstr ""
3665
- #~ "ZIP 形式のテーマファイルをお持ちの場合、こちらからアップロードしてインス"
3666
- #~ "トールできます。"
3667
- #~ msgid "Install &#8220;%s&#8221;"
3668
- #~ msgstr "&#8220;%s&#8221; をインストール"
3669
- #~ msgid "Details"
3670
- #~ msgstr "詳細"
3671
- #~ msgid "No themes found"
3672
- #~ msgstr "テーマは見つかりませんでした"
3673
- #~ msgid "Theme Install"
3674
- #~ msgstr "テーマのインストール"
3675
- #~ msgid ""
3676
- #~ "<strong>Error:</strong> This theme is currently not available. Please try "
3677
- #~ "again later."
3678
- #~ msgstr ""
3679
- #~ "<strong>エラー</strong>: このテーマは現在利用できません。後ほど再度お試し"
3680
- #~ "ください。"
3681
- #~ msgid ""
3682
- #~ "<strong>Warning:</strong> This theme has <strong>not been tested</strong> "
3683
- #~ "with your current version of WordPress."
3684
- #~ msgstr ""
3685
- #~ "<strong>注意:</strong> このテーマは現在のバージョンの WordPress では"
3686
- #~ "<strong>テストされていません</strong>。"
3687
- #~ msgid ""
3688
- #~ "<strong>Warning:</strong> This theme has not been marked as "
3689
- #~ "<strong>compatible</strong> with your version of WordPress."
3690
- #~ msgstr ""
3691
- #~ "<strong>注意:</strong> このテーマはお使いのバージョンの WordPress には"
3692
- #~ "<strong>対応していません</strong>。"
3693
- #~ msgid "by %s"
3694
- #~ msgstr " - 作成者: %s"
3695
- #~ msgid "Version: %s"
3696
- #~ msgstr "バージョン: %s"
3697
- #~ msgid "Newer version (%s) is installed."
3698
- #~ msgstr "新しいバージョン (%s) をインストールしました。"
3699
- #~ msgid "This version is already installed."
3700
- #~ msgstr "このバージョンはインストール済みです。"
3701
- #~ msgid "Unable to locate WordPress theme directory."
3702
- #~ msgstr "WordPress テーマディレクトリが見つかりません。"
3703
- #~ msgid "Could not fully remove the theme %s"
3704
- #~ msgstr "テーマ %s を完全に削除できませんでした"
3705
- #~ msgid "Verifying the unpacked files"
3706
- #~ msgstr "展開したファイルをチェックしています…"
3707
- #~ msgid "The update could not be unpacked"
3708
- #~ msgstr "アップグレード用ファイルを展開できませんでした"
3709
- #~ msgid "Installing the latest version"
3710
- #~ msgstr "最新のバージョンをインストールしています"
3711
- #~ msgid "Upgrading database"
3712
- #~ msgstr "データベースをアップグレード"
3713
- #~ msgid "Version %s"
3714
- #~ msgstr "バージョン %s"
3715
- #~ msgid ""
3716
- #~ "You are using a development version (%1$s). Cool! Please <a href=\"%2$s"
3717
- #~ "\">stay updated</a>."
3718
- #~ msgstr ""
3719
- #~ "お使いの WordPress は開発版 (%1$s) です。すばらしい ! どうぞ<a href=\"%2$s"
3720
- #~ "\">最新版を使い続けてください</a>。"
3721
- #~ msgid "<a href=\"%1$s\">Get Version %2$s</a>"
3722
- #~ msgstr "<a href=\"%1$s\">バージョン %2$s を入手</a>"
3723
- #~ msgid "WordPress %1$s is available! <a href=\"%2$s\">Please update now</a>."
3724
- #~ msgstr ""
3725
- #~ "WordPress %1$s が利用可能です ! <a href=\"%2$s\">アップデートしてください"
3726
- #~ "</a>。"
3727
- #~ msgid "WordPress %1$s is available! Please notify the site administrator."
3728
- #~ msgstr "WordPress %1$s が利用可能です ! サイト管理者に連絡してください。"
3729
- #~ msgid "You are using <span class=\"b\">WordPress %s</span>."
3730
- #~ msgstr "<span class=\"b\">WordPress %s</span> を使用中。"
3731
- #~ msgid "Update to %s"
3732
- #~ msgstr "%s にアップデート"
3733
- #~ msgid "Latest"
3734
- #~ msgstr "最新"
3735
- #~ msgid ""
3736
- #~ "There is a new version of %1$s available. <a href=\"%2$s\" class="
3737
- #~ "\"thickbox\" title=\"%3$s\">View version %4$s Details</a>."
3738
- #~ msgstr ""
3739
- #~ "新しいバージョンの %1$s が利用可能です。<a href=\"%2$s\" class=\"thickbox"
3740
- #~ "\" title=\"%3$s\">バージョン %4$s の詳細をご覧ください</a>。"
3741
- #~ msgid ""
3742
- #~ "There is a new version of %1$s available. <a href=\"%2$s\" class="
3743
- #~ "\"thickbox\" title=\"%3$s\">View version %4$s Details</a> <em>automatic "
3744
- #~ "upgrade unavailable for this plugin</em>."
3745
- #~ msgstr ""
3746
- #~ "新しいバージョンの %1$s が利用可能です。<a href=\"%2$s\" class=\"thickbox"
3747
- #~ "\" title=\"%3$s\">バージョン %4$s の詳細をご覧ください</a>。<em>このプラグ"
3748
- #~ "インでは自動アップグレードは利用できません</em>。"
3749
- #~ msgid ""
3750
- #~ "There is a new version of %1$s available. <a href=\"%2$s\" class="
3751
- #~ "\"thickbox\" title=\"%3$s\">View version %4$s Details</a> or <a href=\"%5"
3752
- #~ "$s\">upgrade automatically</a>."
3753
- #~ msgstr ""
3754
- #~ "新しいバージョンの %1$s が利用可能です。<a href=\"%2$s\" class=\"thickbox"
3755
- #~ "\" title=\"%3$s\">バージョン %4$s の詳細を見る</a>か、<a href=\"%5$s\">自"
3756
- #~ "動アップグレード</a>を実行してください。"
3757
- #~ msgid ""
3758
- #~ "An automated WordPress update has failed to complete - <a href=\"%s"
3759
- #~ "\">please attempt the update again now</a>."
3760
- #~ msgstr ""
3761
- #~ "WordPress の自動アップデートに失敗しました。<a href=\"%s\">再度アップデー"
3762
- #~ "トを行ってみてください</a>。"
3763
- #~ msgid ""
3764
- #~ "An automated WordPress update has failed to complete! Please notify the "
3765
- #~ "site administrator."
3766
- #~ msgstr ""
3767
- #~ "WordPress の自動アップデートに失敗しました ! サイト管理者にお知らせくださ"
3768
- #~ "い。"
3769
- #~ msgid ""
3770
- #~ "<strong><em>Note that password</em></strong> carefully! It is a "
3771
- #~ "<em>random</em> password that was generated just for you."
3772
- #~ msgstr ""
3773
- #~ "<strong><em>パスワードを注意深くメモしてください ! </em></strong>このパス"
3774
- #~ "ワードは今回のインストール用に<em>ランダム</em>に生成されたものです。"
3775
- #~ msgid "User already exists. Password inherited."
3776
- #~ msgstr "ユーザーはすでに存在しています。パスワードを引き継ぎました。"
3777
- #~ msgctxt "Default category slug"
3778
- #~ msgid "Uncategorized"
3779
- #~ msgstr "未分類"
3780
- #~ msgctxt "Default link category slug"
3781
- #~ msgid "Blogroll"
3782
- #~ msgstr "ブログロール"
3783
- #~ msgid ""
3784
- #~ "Welcome to WordPress. This is your first post. Edit or delete it, then "
3785
- #~ "start blogging!"
3786
- #~ msgstr ""
3787
- #~ "WordPress へようこそ。これは最初の投稿です。編集もしくは削除してブログを始"
3788
- #~ "めてください !"
3789
- #~ msgid "Hello world!"
3790
- #~ msgstr "Hello world!"
3791
- #~ msgctxt "Default post slug"
3792
- #~ msgid "hello-world"
3793
- #~ msgstr "hello-world"
3794
- #~ msgid "Mr WordPress"
3795
- #~ msgstr "Mr WordPress"
3796
- #~ msgid ""
3797
- #~ "Hi, this is a comment.<br />To delete a comment, just log in and view the "
3798
- #~ "post&#039;s comments. There you will have the option to edit or delete "
3799
- #~ "them."
3800
- #~ msgstr ""
3801
- #~ "こんにちは。これはコメント例です。<br />コメントを削除するには、ログインし"
3802
- #~ "てその投稿のコメントを表示させてください。そこでコメントを編集したり削除し"
3803
- #~ "たりすることができます。"
3804
- #~ msgid ""
3805
- #~ "This is an example of a WordPress page, you could edit this to put "
3806
- #~ "information about yourself or your site so readers know where you are "
3807
- #~ "coming from. You can create as many pages like this one or sub-pages as "
3808
- #~ "you like and manage all of your content inside of WordPress."
3809
- #~ msgstr ""
3810
- #~ "これは固定ページ機能の例です。このページを編集してあなた自身やあなたのサイ"
3811
- #~ "トについての情報を載せれば、読者はあなたがどんな人なのかを知ることができま"
3812
- #~ "す。このようなページや階層化したページは好きな数だけ作成することができ、す"
3813
- #~ "べてのコンテンツを WordPress 内で管理することができます。"
3814
- #~ msgid "About"
3815
- #~ msgstr "紹介"
3816
- #~ msgctxt "Default page slug"
3817
- #~ msgid "about"
3818
- #~ msgstr "about"
3819
- #~ msgid ""
3820
- #~ "Your new WordPress blog has been successfully set up at:\n"
3821
- #~ "\n"
3822
- #~ "%1$s\n"
3823
- #~ "\n"
3824
- #~ "You can log in to the administrator account with the following "
3825
- #~ "information:\n"
3826
- #~ "\n"
3827
- #~ "Username: %2$s\n"
3828
- #~ "Password: %3$s\n"
3829
- #~ "\n"
3830
- #~ "We hope you enjoy your new blog. Thanks!\n"
3831
- #~ "\n"
3832
- #~ "--The WordPress Team\n"
3833
- #~ "http://wordpress.org/\n"
3834
- #~ msgstr ""
3835
- #~ "新しい WordPress ブログの設置に成功しました: \n"
3836
- #~ "\n"
3837
- #~ "%1$s\n"
3838
- #~ "\n"
3839
- #~ "次のユーザー名とパスワードを使って管理アカウントにログインすることができま"
3840
- #~ "す: \n"
3841
- #~ "\n"
3842
- #~ "ユーザー名: %2$s\n"
3843
- #~ "パスワード: %3$s\n"
3844
- #~ "\n"
3845
- #~ "では新しいブログを楽しんでください。 ありがとう !\n"
3846
- #~ "\n"
3847
- #~ "--WordPress チーム\n"
3848
- #~ "http://ja.wordpress.org/\n"
3849
- #~ msgid "New WordPress Blog"
3850
- #~ msgstr "新しい WordPress ブログ"
3851
- #~ msgid "You can&#8217;t give users that role."
3852
- #~ msgstr "ユーザーにこの権限を与えることはできません。"
3853
- #~ msgid "<strong>ERROR</strong>: Please enter a username."
3854
- #~ msgstr "<strong>エラー</strong>: ユーザー名を入力してください。"
3855
- #~ msgid "<strong>ERROR</strong>: You entered your new password only once."
3856
- #~ msgstr ""
3857
- #~ "<strong>エラー</strong>: 新しいパスワードが1回しか入力されていません。"
3858
- #~ msgid "<strong>ERROR</strong>: Please enter your password."
3859
- #~ msgstr "<strong>エラー</strong>: パスワードを入力してください。"
3860
- #~ msgid "<strong>ERROR</strong>: Please enter your password twice."
3861
- #~ msgstr "<strong>エラー</strong>: パスワードは2回入力してください。"
3862
- #~ msgid ""
3863
- #~ "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
3864
- #~ msgstr ""
3865
- #~ "<strong>エラー</strong>: パスワードに文字 \"\\\" を含めることはできませ"
3866
- #~ "ん。"
3867
- #~ msgid ""
3868
- #~ "<strong>ERROR</strong>: Please enter the same password in the two "
3869
- #~ "password fields."
3870
- #~ msgstr ""
3871
- #~ "<strong>エラー</strong>: パスワードは同じものを2回入力してください。"
3872
- #~ msgid ""
3873
- #~ "<strong>ERROR</strong>: This username is invalid. Please enter a valid "
3874
- #~ "username."
3875
- #~ msgstr ""
3876
- #~ "<strong>エラー</strong>: このユーザー名は無効です。有効なユーザー名を入力"
3877
- #~ "してください。"
3878
- #~ msgid ""
3879
- #~ "<strong>ERROR</strong>: This username is already registered. Please "
3880
- #~ "choose another one."
3881
- #~ msgstr ""
3882
- #~ "<strong>エラー</strong>: このユーザー名はすでに登録されています。別のユー"
3883
- #~ "ザー名を選んでください。"
3884
- #~ msgid "<strong>ERROR</strong>: Please enter an e-mail address."
3885
- #~ msgstr "<strong>エラー</strong>: メールアドレスを入力してください。"
3886
- #~ msgid "<strong>ERROR</strong>: The e-mail address isn&#8217;t correct."
3887
- #~ msgstr "<strong>エラー</strong>: メールアドレスが正しくありません。"
3888
- #~ msgid ""
3889
- #~ "<strong>ERROR</strong>: This email is already registered, please choose "
3890
- #~ "another one."
3891
- #~ msgstr ""
3892
- #~ "<strong>エラー</strong>: このメールアドレスはすでに登録されています。別の"
3893
- #~ "メールアドレスを選んでください。"
3894
- #~ msgid "No matching users were found!"
3895
- #~ msgstr "該当のユーザーは見つかりませんでした !"
3896
- #~ msgid ""
3897
- #~ "Notice: you're using the auto-generated password for your account. Would "
3898
- #~ "you like to change it to something you'll remember easier?<br />\n"
3899
- #~ "\t\t\t <a href='%s'>Yes, Take me to my profile page</a> | <a href='%s' "
3900
- #~ "id='default-password-nag-no'>No Thanks, Do not remind me again.</a>"
3901
- #~ msgstr ""
3902
- #~ "お知らせ: 現在使用しているパスワードはあなたのアカウント用に自動的に生成さ"
3903
- #~ "れたものです。より憶えやすいパスワードに変更しますか ?<br />\n"
3904
- #~ "\t\t\t <a href='%s'>はい、プロフィールのページを開いてください</a> | <a "
3905
- #~ "href='%s' id='default-password-nag-no'>いいえ。このお知らせの再表示も必要"
3906
- #~ "ありません。</a>"
3907
- #~ msgid "There are no options for this widget."
3908
- #~ msgstr "このウィジェットにはオプションがありません。"
3909
- #~ msgid "Remove"
3910
- #~ msgstr "削除"
3911
- #~ msgid "Dashboard"
3912
- #~ msgstr "ダッシュボード"
3913
- #~ msgid "WordPress &rsaquo; Installation"
3914
- #~ msgstr "WordPress &rsaquo; インストール"
3915
- #~ msgid "<strong>ERROR</strong>: %s"
3916
- #~ msgstr "<strong>エラー</strong>: %s"
3917
- #~ msgid "Blog Title"
3918
- #~ msgstr "ブログタイトル"
3919
- #~ msgid "Your E-mail"
3920
- #~ msgstr "メールアドレス"
3921
- #~ msgid "Double-check your email address before continuing."
3922
- #~ msgstr "次に進む前にメールアドレスをもう一度確認してください。"
3923
- #~ msgid ""
3924
- #~ "Allow my blog to appear in search engines like Google and Technorati."
3925
- #~ msgstr ""
3926
- #~ "このブログを Google や Technorati などの検索エンジンに表示されるようにす"
3927
- #~ "る。"
3928
- #~ msgid "Install WordPress"
3929
- #~ msgstr "WordPress をインストール"
3930
- #~ msgid "Already Installed"
3931
- #~ msgstr "インストール済み"
3932
- #~ msgid ""
3933
- #~ "You appear to have already installed WordPress. To reinstall please clear "
3934
- #~ "your old database tables first."
3935
- #~ msgstr ""
3936
- #~ "すでに WordPress をインストール済みのようです。再インストールするにはまず"
3937
- #~ "最初に古いデータベーステーブルを削除してください。"
3938
- #~ msgid "Welcome"
3939
- #~ msgstr "ようこそ"
3940
- #~ msgid ""
3941
- #~ "Welcome to the famous five minute WordPress installation process! You may "
3942
- #~ "want to browse the <a href=\"%s\">ReadMe documentation</a> at your "
3943
- #~ "leisure. Otherwise, just fill in the information below and you&#8217;ll "
3944
- #~ "be on your way to using the most extendable and powerful personal "
3945
- #~ "publishing platform in the world."
3946
- #~ msgstr ""
3947
- #~ "5分でできる WordPress の有名なインストールプロセスへようこそ ! <a href=\"%"
3948
- #~ "s\">ReadMe ドキュメント</a>はお暇なときにでもお読みください。下記にいくつ"
3949
- #~ "か情報を入力して、世界で最も拡張的で強力なパーソナルパブリッシングプラット"
3950
- #~ "フォームを使用するための準備を始めましょう。"
3951
- #~ msgid "First Step"
3952
- #~ msgstr "最初のステップ"
3953
- #~ msgid "Information needed"
3954
- #~ msgstr "必要情報"
3955
- #~ msgid ""
3956
- #~ "Please provide the following information. Don&#8217;t worry, you can "
3957
- #~ "always change these settings later."
3958
- #~ msgstr ""
3959
- #~ "次の情報を入力してください。ご心配なく、これらの情報は後からいつでも変更す"
3960
- #~ "ることができます。"
3961
- #~ msgid "you must provide an e-mail address."
3962
- #~ msgstr "メールアドレスを入力してください。"
3963
- #~ msgid ""
3964
- #~ "that isn&#8217;t a valid e-mail address. E-mail addresses look like: "
3965
- #~ "<code>username@example.com</code>"
3966
- #~ msgstr ""
3967
- #~ "有効なメールアドレスではありません。メールアドレスは次のようなものです: "
3968
- #~ "<code>username@example.com</code>"
3969
- #~ msgid "Success!"
3970
- #~ msgstr "成功しました !"
3971
- #~ msgid ""
3972
- #~ "WordPress has been installed. Were you expecting more steps? Sorry to "
3973
- #~ "disappoint."
3974
- #~ msgstr ""
3975
- #~ "WordPress がインストールされました。もっと何か作業をしたかったですか ? "
3976
- #~ "がっかりさせてゴメンナサイ。これだけです !"
3977
- #~ msgid "Log In"
3978
- #~ msgstr "ログイン"
3979
- #~ msgid "Add New Link"
3980
- #~ msgstr "新規リンクの追加"
3981
- #~ msgid ""
3982
- #~ "You do not have sufficient permissions to edit the links for this blog."
3983
- #~ msgstr "このブログでリンクを編集する権限がありません。"
3984
- #~ msgid "%s link deleted."
3985
- #~ msgid_plural "%s links deleted"
3986
- #~ msgstr[0] "%s個のリンクを削除しました。"
3987
- #~ msgid "Search Links"
3988
- #~ msgstr "リンクを検索"
3989
- #~ msgid "View all Categories"
3990
- #~ msgstr "すべてのカテゴリーを表示する"
3991
- #~ msgid "Order by Link ID"
3992
- #~ msgstr "リンク ID 順で並べる"
3993
- #~ msgid "Order by Name"
3994
- #~ msgstr "名前順で並べる"
3995
- #~ msgid "Order by Address"
3996
- #~ msgstr "アドレス順で並べる"
3997
- #~ msgid "Order by Rating"
3998
- #~ msgstr "評価順で並べる"
3999
- #~ msgid "Yes"
4000
- #~ msgstr "はい"
4001
- #~ msgid "Visit %s"
4002
- #~ msgstr "%s を開く"
4003
- #~ msgid "No links found."
4004
- #~ msgstr "リンクは見つかりませんでした。"
4005
- #~ msgid "XML error: %1$s at line %2$s"
4006
- #~ msgstr "XML エラー: %2$s行目の%1$s "
4007
- #~ msgid "Edit Link"
4008
- #~ msgstr "リンクの編集"
4009
- #~ msgid "Link not found."
4010
- #~ msgstr "リンクが見つかりませんでした。"
4011
- #~ msgid "You are not allowed to be here"
4012
- #~ msgstr "このページを表示する権限がありません。"
4013
- #~ msgid "Upload New Media"
4014
- #~ msgstr "メディアのアップロード"
4015
- #~ msgid "You are not allowed to edit this attachment."
4016
- #~ msgstr "この添付ファイルの編集は許可されていません。"
4017
- #~ msgid "Media attachment updated."
4018
- #~ msgstr "メディア添付ファイルを更新しました。"
4019
- #~ msgid "Update Media"
4020
- #~ msgstr "メディアを更新"
4021
- #~ msgctxt "post"
4022
- #~ msgid "Add New"
4023
- #~ msgstr "新規追加"
4024
- #~ msgid "Library"
4025
- #~ msgstr "ライブラリ"
4026
- #~ msgctxt "file"
4027
- #~ msgid "Add New"
4028
- #~ msgstr "新規追加"
4029
- #~ msgctxt "links"
4030
- #~ msgid "Add New"
4031
- #~ msgstr "新規追加"
4032
- #~ msgctxt "page"
4033
- #~ msgid "Add New"
4034
- #~ msgstr "新規追加"
4035
- #~ msgid "Comments %s"
4036
- #~ msgstr "コメント %s"
4037
- #~ msgid "Appearance"
4038
- #~ msgstr "外観"
4039
- #~ msgid "Themes"
4040
- #~ msgstr "テーマ"
4041
- #~ msgid "Editor"
4042
- #~ msgstr "編集"
4043
- #~ msgid "Add New Themes"
4044
- #~ msgstr "新しいテーマの追加"
4045
- #~ msgid "Plugins %s"
4046
- #~ msgstr "プラグイン %s"
4047
- #~ msgid "Installed"
4048
- #~ msgstr "インストール済み"
4049
- #~ msgctxt "plugin"
4050
- #~ msgid "Add New"
4051
- #~ msgstr "新規追加"
4052
- #~ msgid "Profile"
4053
- #~ msgstr "プロフィール"
4054
- #~ msgid "Authors &amp; Users"
4055
- #~ msgstr "投稿者とユーザー"
4056
- #~ msgid "Add New"
4057
- #~ msgstr "新規追加"
4058
- #~ msgid "Your Profile"
4059
- #~ msgstr "あなたのプロフィール"
4060
- #~ msgid "Tools"
4061
- #~ msgstr "ツール"
4062
- #~ msgid "Upgrade"
4063
- #~ msgstr "アップグレード"
4064
- #~ msgid "Settings"
4065
- #~ msgstr "設定"
4066
- #~ msgid "General"
4067
- #~ msgstr "一般"
4068
- #~ msgid "Writing"
4069
- #~ msgstr "投稿設定"
4070
- #~ msgid "Reading"
4071
- #~ msgstr "表示設定"
4072
- #~ msgid "Privacy"
4073
- #~ msgstr "プライバシー"
4074
- #~ msgid "Permalinks"
4075
- #~ msgstr "パーマリンク設定"
4076
- #~ msgid "Miscellaneous"
4077
- #~ msgstr "その他の設定"
4078
- #~ msgid "You do not have sufficient permissions to access this page."
4079
- #~ msgstr "このページにアクセスするための十分なアクセス権がありません。"
4080
- #~ msgid "Discussion Settings"
4081
- #~ msgstr "ディスカッション設定"
4082
- #~ msgid "Default article settings"
4083
- #~ msgstr "投稿のデフォルト設定"
4084
- #~ msgid ""
4085
- #~ "Attempt to notify any blogs linked to from the article (slows down "
4086
- #~ "posting.)"
4087
- #~ msgstr ""
4088
- #~ "投稿中からリンクしたすべてのブログへの通知を試みる (投稿に時間がかかりま"
4089
- #~ "す)"
4090
- #~ msgid ""
4091
- #~ "Allow link notifications from other blogs (pingbacks and trackbacks.)"
4092
- #~ msgstr "他のブログからのリンク通知を許可する (ピンバックとトラックバック)"
4093
- #~ msgid "Allow people to post comments on new articles"
4094
- #~ msgstr "新しい投稿へのコメントを許可する"
4095
- #~ msgid "These settings may be overridden for individual articles."
4096
- #~ msgstr "これらの設定は各投稿の設定が優先されます。"
4097
- #~ msgid "Other comment settings"
4098
- #~ msgstr "他のコメント設定"
4099
- #~ msgid "Comment author must fill out name and e-mail"
4100
- #~ msgstr "名前とメールアドレスの入力を必須にする"
4101
- #~ msgid "Users must be registered and logged in to comment"
4102
- #~ msgstr ""
4103
- #~ "ユーザー登録してログインしたユーザーのみコメントをつけられるようにする"
4104
- #~ msgid "Automatically close comments on articles older than %s days"
4105
- #~ msgstr "%s日以上前の投稿のコメントフォームを自動的に閉じる"
4106
- #~ msgid "Enable threaded (nested) comments %s levels deep"
4107
- #~ msgstr "コメントを %s 階層までのスレッド (入れ子) 形式にする"
4108
- #~ msgid "last"
4109
- #~ msgstr "最後"
4110
- #~ msgid "first"
4111
- #~ msgstr "最初"
4112
- #~ msgid ""
4113
- #~ "Break comments into pages with %1$s comments per page and the %2$s page "
4114
- #~ "displayed by default"
4115
- #~ msgstr ""
4116
- #~ "1ページ当たり %1$s個のコメントで複数ページに分割し、%2$s のページをデフォ"
4117
- #~ "ルトで表示する"
4118
- #~ msgid "older"
4119
- #~ msgstr "古い"
4120
- #~ msgid "newer"
4121
- #~ msgstr "新しい"
4122
- #~ msgid ""
4123
- #~ "Comments should be displayed with the %s comments at the top of each page"
4124
- #~ msgstr "%s コメントを各ページのトップに表示する"
4125
- #~ msgid "E-mail me whenever"
4126
- #~ msgstr "自分宛のメール通知"
4127
- #~ msgid "Anyone posts a comment"
4128
- #~ msgstr "コメントが投稿されたとき"
4129
- #~ msgid "A comment is held for moderation"
4130
- #~ msgstr "承認のためにコメントが保留されたとき"
4131
- #~ msgid "Before a comment appears"
4132
- #~ msgstr "コメント表示条件"
4133
- #~ msgid "An administrator must always approve the comment"
4134
- #~ msgstr "管理者の承認を常に必要とする"
4135
- #~ msgid "Comment author must have a previously approved comment"
4136
- #~ msgstr ""
4137
- #~ "すでに承認されたコメントの投稿者のコメントを許可し、それ以外のコメントを承"
4138
- #~ "認待ちにする"
4139
- #~ msgid "Comment Moderation"
4140
- #~ msgstr "コメント承認"
4141
- #~ msgid ""
4142
- #~ "Hold a comment in the queue if it contains %s or more links. (A common "
4143
- #~ "characteristic of comment spam is a large number of hyperlinks.)"
4144
- #~ msgstr ""
4145
- #~ "%s個以上のリンクを含んでいる場合は承認待ちにする (コメントスパムに共通する"
4146
- #~ "特徴のひとつに多数のハイパーリンクがある) "
4147
- #~ msgid ""
4148
- #~ "When a comment contains any of these words in its content, name, URL, e-"
4149
- #~ "mail, or IP, it will be held in the <a href=\"edit-comments.php?"
4150
- #~ "comment_status=moderated\">moderation queue</a>. One word or IP per line. "
4151
- #~ "It will match inside words, so &#8220;press&#8221; will match &#8220;"
4152
- #~ "WordPress&#8221;."
4153
- #~ msgstr ""
4154
- #~ "コメントの内容、名前、URL、メールアドレス、IP に以下の単語のうちいずれかで"
4155
- #~ "も含んでいる場合、そのコメントは<a href=\"edit-comments.php?"
4156
- #~ "comment_status=moderated\">承認待ち</a>になります。各単語や IP は改行で区"
4157
- #~ "切ってください。単語内に含まれる語句にもマッチします。例: &#8220;"
4158
- #~ "press&#8221; は &#8220;WordPress&#8221; にマッチします。"
4159
- #~ msgid "Comment Blacklist"
4160
- #~ msgstr "コメントブラックリスト"
4161
- #~ msgid ""
4162
- #~ "When a comment contains any of these words in its content, name, URL, e-"
4163
- #~ "mail, or IP, it will be marked as spam. One word or IP per line. It will "
4164
- #~ "match inside words, so &#8220;press&#8221; will match &#8220;"
4165
- #~ "WordPress&#8221;."
4166
- #~ msgstr ""
4167
- #~ "コメントの内容、名前、URL、メールアドレス、IP に以下の単語のうちいずれかで"
4168
- #~ "も含んでいる場合、そのコメントはスパムとしてマークされます。各単語や IP は"
4169
- #~ "改行で区切ってください。単語内に含まれる語句にもマッチします。例: &#8220;"
4170
- #~ "press&#8221; は &#8220;WordPress&#8221; にマッチします。"
4171
- #~ msgid "Avatars"
4172
- #~ msgstr "アバター"
4173
- #~ msgid ""
4174
- #~ "An avatar is an image that follows you from weblog to weblog appearing "
4175
- #~ "beside your name when you comment on avatar enabled sites. Here you can "
4176
- #~ "enable the display of avatars for people who comment on your blog."
4177
- #~ msgstr ""
4178
- #~ "アバターとはアバターが有効にされたブログ上であなたがコメントをしたその名前"
4179
- #~ "の隣に表示される画像のことです。ここであなたのブログでアバター表示を有効に"
4180
- #~ "することができます。"
4181
- #~ msgid "Avatar Display"
4182
- #~ msgstr "アバターの表示"
4183
- #~ msgid "Avatar display"
4184
- #~ msgstr "アバターの表示"
4185
- #~ msgid "Don&#8217;t show Avatars"
4186
- #~ msgstr "アバターを表示しない"
4187
- #~ msgid "Show Avatars"
4188
- #~ msgstr "アバターを表示する"
4189
- #~ msgid "Maximum Rating"
4190
- #~ msgstr "評価による制限"
4191
- #~ msgid "G &#8212; Suitable for all audiences"
4192
- #~ msgstr "G &#8212; あらゆる人に好適"
4193
- #~ msgid "PG &#8212; Possibly offensive, usually for audiences 13 and above"
4194
- #~ msgstr "PG &#8212; 不快感を与える恐れ &#8212; 13歳以上の人向き"
4195
- #~ msgid "R &#8212; Intended for adult audiences above 17"
4196
- #~ msgstr "R &#8212; 18歳以上の成人向き"
4197
- #~ msgid "X &#8212; Even more mature than above"
4198
- #~ msgstr "X &#8212; 最高レベルの制限"
4199
- #~ msgid "Default Avatar"
4200
- #~ msgstr "デフォルトアバター"
4201
- #~ msgid ""
4202
- #~ "For users without a custom avatar of their own, you can either display a "
4203
- #~ "generic logo or a generated one based on their e-mail address."
4204
- #~ msgstr ""
4205
- #~ "独自のアバターをお持ちでないユーザーは汎用ロゴまたはメールアドレスをベース"
4206
- #~ "にして作り出されたものを表示できます。"
4207
- #~ msgid "Mystery Man"
4208
- #~ msgstr "ミステリーマン"
4209
- #~ msgid "Blank"
4210
- #~ msgstr "空白"
4211
- #~ msgid "Gravatar Logo"
4212
- #~ msgstr "Gravatar ロゴ"
4213
- #~ msgid "Identicon (Generated)"
4214
- #~ msgstr "Identicon (自動生成)"
4215
- #~ msgid "Wavatar (Generated)"
4216
- #~ msgstr "Wavatar (自動生成)"
4217
- #~ msgid "MonsterID (Generated)"
4218
- #~ msgstr "MonsterID (自動生成)"
4219
- #~ msgid "General Settings"
4220
- #~ msgstr "一般設定"
4221
- #~ msgctxt "timezone date format"
4222
- #~ msgid "Y-m-d G:i:s"
4223
- #~ msgstr "Y-m-d G:i:s"
4224
- #~ msgid "Tagline"
4225
- #~ msgstr "キャッチフレーズ"
4226
- #~ msgid "In a few words, explain what this blog is about."
4227
- #~ msgstr "このブログの簡単な説明。"
4228
- #~ msgid "WordPress address (URL)"
4229
- #~ msgstr "WordPress のアドレス (URL)"
4230
- #~ msgid "Blog address (URL)"
4231
- #~ msgstr "ブログのアドレス (URL)"
4232
- #~ msgid ""
4233
- #~ "Enter the address here if you want your blog homepage <a href=\"http://"
4234
- #~ "codex.wordpress.org/Giving_WordPress_Its_Own_Directory\">to be different "
4235
- #~ "from the directory</a> you installed WordPress."
4236
- #~ msgstr ""
4237
- #~ "WordPress をインストールしたディレクトリとは<a href=\"http://wpdocs."
4238
- #~ "sourceforge.jp/Giving_WordPress_Its_Own_Directory\">別のディレクトリにホー"
4239
- #~ "ムページを設定</a>する場合、ここにそのアドレスを入力してください。"
4240
- #~ msgid "E-mail address"
4241
- #~ msgstr "メールアドレス"
4242
- #~ msgid "This address is used for admin purposes, like new user notification."
4243
- #~ msgstr ""
4244
- #~ "このアドレスは新規ユーザーのお知らせなどブログ管理のために使用されます。"
4245
- #~ msgid "Membership"
4246
- #~ msgstr "メンバーシップ"
4247
- #~ msgid "Anyone can register"
4248
- #~ msgstr "誰でもユーザー登録ができるようにする"
4249
- #~ msgid "New User Default Role"
4250
- #~ msgstr "新規ユーザーのデフォルト権限"
4251
- #~ msgid "Timezone"
4252
- #~ msgstr "タイムゾーン"
4253
- #~ msgid "UTC %s"
4254
- #~ msgstr "UTC %s"
4255
- #~ msgid "hours"
4256
- #~ msgstr "時間"
4257
- #~ msgid ""
4258
- #~ "<abbr title=\"Coordinated Universal Time\">UTC</abbr> time is <code>%s</"
4259
- #~ "code>"
4260
- #~ msgstr ""
4261
- #~ "<abbr title=\"Coordinated Universal Time\">UTC</abbr> (<a href=\"http://"
4262
- #~ "ja.wikipedia.org/wiki/UTC\" title=\"協定世界時 - Wikipedia\">協定世界時</"
4263
- #~ "a>): <code>%s</code>"
4264
- #~ msgid "UTC %1$s is <code>%2$s</code>"
4265
- #~ msgstr "UTC %1$s では <code>%2$s</code>"
4266
- #~ msgid ""
4267
- #~ "Unfortunately, you have to manually update this for Daylight Savings "
4268
- #~ "Time. Lame, we know, but will be fixed in the future."
4269
- #~ msgstr ""
4270
- #~ "お手数ですが、夏時間の調整はその都度手動で行ってください。これは将来改善さ"
4271
- #~ "れる予定です。"
4272
- #~ msgid "Local time is <code>%1$s</code>"
4273
- #~ msgstr "現地時間: <code>%1$s</code>"
4274
- #~ msgid "Choose a city in the same timezone as you."
4275
- #~ msgstr "設定する時間帯と同じ街を選択してください。"
4276
- #~ msgid "This timezone is currently in daylight savings time."
4277
- #~ msgstr "現在のこの時間帯は夏時間です。"
4278
- #~ msgid "This timezone is currently in standard time."
4279
- #~ msgstr "現在のこの時間帯は標準時です。"
4280
- #~ msgid "Daylight savings time begins on: <code>%s</code>."
4281
- #~ msgstr "夏時間は <code>%s</code> に始まります。"
4282
- #~ msgid "Standard time begins on: <code>%s</code>."
4283
- #~ msgstr "標準時は <code>%s</code> に始まります。"
4284
- #~ msgid "This timezone does not observe daylight savings time."
4285
- #~ msgstr "この時間帯では夏時間を使用していません。"
4286
- #~ msgid "Date Format"
4287
- #~ msgstr "日付フォーマット"
4288
- #~ msgid "Custom:"
4289
- #~ msgstr "カスタム:"
4290
- #~ msgid ""
4291
- #~ "<a href=\"http://codex.wordpress.org/Formatting_Date_and_Time"
4292
- #~ "\">Documentation on date formatting</a>. Click &#8220;Save Changes&#8221; "
4293
- #~ "to update sample output."
4294
- #~ msgstr ""
4295
- #~ "<a href=\"http://wpdocs.sourceforge.jp/Formatting_Date_and_Time\">日時"
4296
- #~ "フォーマットの説明</a>。設定を保存すると表示例が更新されます。"
4297
- #~ msgid "Time Format"
4298
- #~ msgstr "時刻フォーマット"
4299
- #~ msgid "Week Starts On"
4300
- #~ msgstr "週の始まり"
4301
- #~ msgid "Settings saved."
4302
- #~ msgstr "設定を保存しました。"
4303
- #~ msgid "Media Settings"
4304
- #~ msgstr "メディア設定"
4305
- #~ msgid "Image sizes"
4306
- #~ msgstr "画像サイズ"
4307
- #~ msgid ""
4308
- #~ "The sizes listed below determine the maximum dimensions in pixels to use "
4309
- #~ "when inserting an image into the body of a post."
4310
- #~ msgstr "投稿本文に画像を挿入するときに使われる上限寸法を設定できます。"
4311
- #~ msgid "Thumbnail size"
4312
- #~ msgstr "サムネイルのサイズ"
4313
- #~ msgid "Height"
4314
- #~ msgstr "高さ"
4315
- #~ msgid ""
4316
- #~ "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
4317
- #~ msgstr ""
4318
- #~ "サムネイルを実寸法にトリミングする (通常は相対的な縮小によりサムネイルを作"
4319
- #~ "ります)"
4320
- #~ msgid "Medium size"
4321
- #~ msgstr "中サイズ"
4322
- #~ msgid "Max Width"
4323
- #~ msgstr "幅の上限"
4324
- #~ msgid "Max Height"
4325
- #~ msgstr "高さの上限"
4326
- #~ msgid "Large size"
4327
- #~ msgstr "大サイズ"
4328
- #~ msgid "Miscellaneous Settings"
4329
- #~ msgstr "その他の設定"
4330
- #~ msgid "Uploading Files"
4331
- #~ msgstr "ファイルアップロード"
4332
- #~ msgid "Store uploads in this folder"
4333
- #~ msgstr "アップロードするファイルの保存場所"
4334
- #~ msgid "Default is <code>wp-content/uploads</code>"
4335
- #~ msgstr "デフォルトは <code>wp-content/uploads</code>"
4336
- #~ msgid "Full URL path to files"
4337
- #~ msgstr "ファイルへの完全な URL パス"
4338
- #~ msgid "Configuring this is optional. By default, it should be blank."
4339
- #~ msgstr "この設定はオプションです。デフォルトでは空にしておいてください。"
4340
- #~ msgid "Organize my uploads into month- and year-based folders"
4341
- #~ msgstr "アップロードしたファイルを年月ベースのフォルダに整理"
4342
- #~ msgid "Track Links&#8217; Update Times"
4343
- #~ msgstr "リンクの更新時間を追跡"
4344
- #~ msgid "Permalink Settings"
4345
- #~ msgstr "パーマリンク設定"
4346
- #~ msgid "You should update your web.config now"
4347
- #~ msgstr "web.config を更新する必要があります。"
4348
- #~ msgid ""
4349
- #~ "Permalink structure updated. Remove write access on web.config file now!"
4350
- #~ msgstr ""
4351
- #~ "パーマリンク構造を更新しました。web.config ファイルの書き込みアクセスを削"
4352
- #~ "除してください !"
4353
- #~ msgid "Permalink structure updated"
4354
- #~ msgstr "パーマリンク構造を更新しました。"
4355
- #~ msgid "You should update your .htaccess now."
4356
- #~ msgstr ".htaccess を更新する必要があります。"
4357
- #~ msgid "Permalink structure updated."
4358
- #~ msgstr "パーマリンク構造を更新しました。"
4359
- #~ msgid ""
4360
- #~ "By default WordPress uses web <abbr title=\"Universal Resource Locator"
4361
- #~ "\">URL</abbr>s which have question marks and lots of numbers in them, "
4362
- #~ "however WordPress offers you the ability to create a custom URL structure "
4363
- #~ "for your permalinks and archives. This can improve the aesthetics, "
4364
- #~ "usability, and forward-compatibility of your links. A <a href=\"http://"
4365
- #~ "codex.wordpress.org/Using_Permalinks\">number of tags are available</a>, "
4366
- #~ "and here are some examples to get you started."
4367
- #~ msgstr ""
4368
- #~ "初期設定では、WordPress はクエスチョンマークと多くの数字からなる <abbr "
4369
- #~ "title=\"Universal Resource Locator\">URL</abbr> を使用していますが、パーマ"
4370
- #~ "リンクとアーカイブ用にカスタムな URL 構造を作成することもできます。これに"
4371
- #~ "より、リンクの見た目、使いやすさ、そして継続性を改善することができます。"
4372
- #~ "<a href=\"http://wpdocs.sourceforge.jp/Using_Permalinks\">利用可能なタグは"
4373
- #~ "たくさんあります</a>。また、すぐに使用できる例をいくつか用意しました。"
4374
- #~ msgid "Common settings"
4375
- #~ msgstr "一般的な設定"
4376
- #~ msgid "Default"
4377
- #~ msgstr "デフォルト"
4378
- #~ msgid "Day and name"
4379
- #~ msgstr "日付と投稿名"
4380
- #~ msgid "Month and name"
4381
- #~ msgstr "月と投稿名"
4382
- #~ msgid "Numeric"
4383
- #~ msgstr "数字ベース"
4384
- #~ msgid "Custom Structure"
4385
- #~ msgstr "カスタム構造"
4386
- #~ msgid "Optional"
4387
- #~ msgstr "オプション"
4388
- #~ msgid ""
4389
- #~ "If you like, you may enter custom structures for your category and tag "
4390
- #~ "<abbr title=\"Universal Resource Locator\">URL</abbr>s here. For example, "
4391
- #~ "using <kbd>topics</kbd> as your category base would make your category "
4392
- #~ "links like <code>http://example.org/topics/uncategorized/</code>. If you "
4393
- #~ "leave these blank the defaults will be used."
4394
- #~ msgstr ""
4395
- #~ "お望みなら、カテゴリーとタグ <abbr title=\"Universal Resource Locator"
4396
- #~ "\">URL</abbr> 用のカスタム構造を設定することもできます。例えばカテゴリー"
4397
- #~ "ベースとして <code>topics</code> と入力すると、 <code>http://example.org/"
4398
- #~ "topics/uncategorized/</code> のようなカテゴリーリンクが作成されます。この"
4399
- #~ "フィールドが空の場合はデフォルトの設定が使用されます。"
4400
- #~ msgid ""
4401
- #~ "If you like, you may enter custom structures for your category and tag "
4402
- #~ "<abbr title=\"Universal Resource Locator\">URL</abbr>s here. For example, "
4403
- #~ "using <code>topics</code> as your category base would make your category "
4404
- #~ "links like <code>http://example.org/index.php/topics/uncategorized/</"
4405
- #~ "code>. If you leave these blank the defaults will be used."
4406
- #~ msgstr ""
4407
- #~ "お望みなら、カテゴリーとタグ <abbr title=\"Universal Resource Locator"
4408
- #~ "\">URL</abbr> 用のカスタム構造を設定することもできます。例えばカテゴリー"
4409
- #~ "ベースとして <code>topics</code> と入力すると、 <code>http://example.org/"
4410
- #~ "index.php/topics/uncategorized/</code> のようなカテゴリーリンクが作成され"
4411
- #~ "ます。このフィールドが空の場合はデフォルトの設定が使用されます。"
4412
- #~ msgid "Category base"
4413
- #~ msgstr "カテゴリーベース"
4414
- #~ msgid "Tag base"
4415
- #~ msgstr "タグベース"
4416
- #~ msgid ""
4417
- #~ "If your <code>web.config</code> file were <a href=\"http://codex."
4418
- #~ "wordpress.org/Changing_File_Permissions\">writable</a>, we could do this "
4419
- #~ "automatically, but it isn&#8217;t so this is the url rewrite rule you "
4420
- #~ "should have in your <code>web.config</code> file. Click in the field and "
4421
- #~ "press <kbd>CTRL + a</kbd> to select all. Then insert this rule inside of "
4422
- #~ "the <code>/&lt;configuration&gt;/&lt;system.webServer&gt;/&lt;rewrite&gt;/"
4423
- #~ "&lt;rules&gt;</code> element in <code>web.config</code> file."
4424
- #~ msgstr ""
4425
- #~ "あなたの <code>web.config</code> が<a href=\"http://wpdocs.sourceforge.jp/"
4426
- #~ "Changing_File_Permissions\">書き込み可能</a>ならこの操作は自動的に行われま"
4427
- #~ "すが、そうでない場合は <code>web.config</code> ファイルに URL リライトルー"
4428
- #~ "ルを書き込む必要があります。このフィールドをクリックし、<kbd>CTRL + a</"
4429
- #~ "kbd> ですべてのコードを選択して、<code>web.config</code> ファイルの "
4430
- #~ "<code>/&lt;configuration&gt;/&lt;system.webServer&gt;/&lt;rewrite&gt;/&lt;"
4431
- #~ "rules&gt;</code> 要素に挿入してください。"
4432
- #~ msgid ""
4433
- #~ "If you temporarily make your <code>web.config</code> file writable for us "
4434
- #~ "to generate rewrite rules automatically, do not forget to revert the "
4435
- #~ "permissions after rule has been saved."
4436
- #~ msgstr ""
4437
- #~ "リライトルールを自動的に生成するために <code>web.config</code> ファイルを"
4438
- #~ "一時的に書き込み可能にする場合、ルールの保存後に、忘れずに権限を元に戻して"
4439
- #~ "ください。"
4440
- #~ msgid ""
4441
- #~ "If your <code>.htaccess</code> file were <a href=\"http://codex.wordpress."
4442
- #~ "org/Changing_File_Permissions\">writable</a>, we could do this "
4443
- #~ "automatically, but it isn&#8217;t so these are the mod_rewrite rules you "
4444
- #~ "should have in your <code>.htaccess</code> file. Click in the field and "
4445
- #~ "press <kbd>CTRL + a</kbd> to select all."
4446
- #~ msgstr ""
4447
- #~ "あなたの <code>.htaccess</code> が<a href=\"http://wpdocs.sourceforge.jp/"
4448
- #~ "Changing_File_Permissions\">書き込み可能</a>ならこの操作は自動的に行われま"
4449
- #~ "すが、そうでない場合は <code>.htaccess</code> ファイルに mod_rewrite ルー"
4450
- #~ "ルを書き込む必要があります。このフィールドをクリックし、<kbd>CTRL + a</"
4451
- #~ "kbd> ですべてのコードを選択してください。"
4452
- #~ msgid "Privacy Settings"
4453
- #~ msgstr "プライバシー設定"
4454
- #~ msgid "Blog Visibility"
4455
- #~ msgstr "ブログの公開状態"
4456
- #~ msgid ""
4457
- #~ "I would like my blog to be visible to everyone, including search engines "
4458
- #~ "(like Google, Sphere, Technorati) and archivers"
4459
- #~ msgstr ""
4460
- #~ "このブログを、検索エンジン (Google、Sphere、Technorati など) とアーカイブ"
4461
- #~ "サイトを含め、誰でも閲覧できるようにする"
4462
- #~ msgid "I would like to block search engines, but allow normal visitors"
4463
- #~ msgstr "検索エンジンはブロックするが通常の訪問者の閲覧は許可する"
4464
- #~ msgid "Reading Settings"
4465
- #~ msgstr "表示設定"
4466
- #~ msgid "Front page displays"
4467
- #~ msgstr "フロントページの表示"
4468
- #~ msgid "Your latest posts"
4469
- #~ msgstr "最新の投稿"
4470
- #~ msgid "A <a href=\"%s\">static page</a> (select below)"
4471
- #~ msgstr "<a href=\"%s\">固定ページ</a> (以下を選択) "
4472
- #~ msgid "Front page: %s"
4473
- #~ msgstr "フロントページ: %s"
4474
- #~ msgid "Posts page: %s"
4475
- #~ msgstr "投稿ページ: %s"
4476
- #~ msgid "<strong>Warning:</strong> these pages should not be the same!"
4477
- #~ msgstr "<strong>警告:</strong> 同じページは設定できません !"
4478
- #~ msgid "Blog pages show at most"
4479
- #~ msgstr "1ページに表示する最大投稿数"
4480
- #~ msgid "posts"
4481
- #~ msgstr "件"
4482
- #~ msgid "Syndication feeds show the most recent"
4483
- #~ msgstr "RSS/Atom フィードで表示する最新の投稿数"
4484
- #~ msgid "For each article in a feed, show"
4485
- #~ msgstr "RSS/Atom フィードでの各投稿の表示"
4486
- #~ msgid "Full text"
4487
- #~ msgstr "全文を表示"
4488
- #~ msgid "Summary"
4489
- #~ msgstr "抜粋のみを表示"
4490
- #~ msgid "Encoding for pages and feeds"
4491
- #~ msgstr "ページとフィードの文字コード"
4492
- #~ msgid ""
4493
- #~ "The character encoding you write your blog in (UTF-8 is <a href=\"http://"
4494
- #~ "developer.apple.com/documentation/macos8/TextIntlSvcs/"
4495
- #~ "TextEncodingConversionManager/TEC1.5/TEC.b0.html\">recommended</a>)"
4496
- #~ msgstr ""
4497
- #~ "このブログの文字コード (UTF-8 を<a href=\"http://developer.apple.com/"
4498
- #~ "documentation/macos8/TextIntlSvcs/TextEncodingConversionManager/TEC1.5/"
4499
- #~ "TEC.b0.html\">推奨</a>) "
4500
- #~ msgid "Writing Settings"
4501
- #~ msgstr "投稿設定"
4502
- #~ msgid "Size of the post box"
4503
- #~ msgstr "投稿入力欄の大きさ"
4504
- #~ msgid "lines"
4505
- #~ msgstr "行"
4506
- #~ msgid "Formatting"
4507
- #~ msgstr "整形"
4508
- #~ msgid ""
4509
- #~ "Convert emoticons like <code>:-)</code> and <code>:-P</code> to graphics "
4510
- #~ "on display"
4511
- #~ msgstr ""
4512
- #~ "<code>:-)</code> や <code>:-P</code> のような顔文字を画像に変換して表示す"
4513
- #~ "る"
4514
- #~ msgid "WordPress should correct invalidly nested XHTML automatically"
4515
- #~ msgstr "不正にネスト化した XHTML を自動的に修正する"
4516
- #~ msgid "Default Post Category"
4517
- #~ msgstr "投稿用カテゴリーの初期設定"
4518
- #~ msgid "Default Link Category"
4519
- #~ msgstr "リンクカテゴリーの初期設定"
4520
- #~ msgid "Remote Publishing"
4521
- #~ msgstr "リモート投稿"
4522
- #~ msgid ""
4523
- #~ "To post to WordPress from a desktop blogging client or remote website "
4524
- #~ "that uses the Atom Publishing Protocol or one of the XML-RPC publishing "
4525
- #~ "interfaces you must enable them below."
4526
- #~ msgstr ""
4527
- #~ "Atom 投稿プロトコルや XML-RPC パブリッシングインターフェースを利用したデス"
4528
- #~ "クトップのブログクライアントやリモートウェブサイトから WordPress に投稿す"
4529
- #~ "るには、以下の設定を有効にしてください。"
4530
- #~ msgid "Atom Publishing Protocol"
4531
- #~ msgstr "Atom 投稿プロトコル"
4532
- #~ msgid "Enable the Atom Publishing Protocol."
4533
- #~ msgstr "Atom 投稿プロトコルを有効にする。"
4534
- #~ msgid "XML-RPC"
4535
- #~ msgstr "XML-RPC"
4536
- #~ msgid ""
4537
- #~ "Enable the WordPress, Movable Type, MetaWeblog and Blogger XML-RPC "
4538
- #~ "publishing protocols."
4539
- #~ msgstr ""
4540
- #~ "WordPress、 Movable Type、 MetaWeblog および Blogger XML-RPC 投稿プロトコ"
4541
- #~ "ルを有効にする。"
4542
- #~ msgid "Post via e-mail"
4543
- #~ msgstr "メールでの投稿"
4544
- #~ msgid ""
4545
- #~ "To post to WordPress by e-mail you must set up a secret e-mail account "
4546
- #~ "with POP3 access. Any mail received at this address will be posted, so "
4547
- #~ "it&#8217;s a good idea to keep this address very secret. Here are three "
4548
- #~ "random strings you could use: <kbd>%s</kbd>, <kbd>%s</kbd>, <kbd>%s</kbd>."
4549
- #~ msgstr ""
4550
- #~ "メールを利用して WordPress に投稿するには POP3 アクセスができる秘密のメー"
4551
- #~ "ルアカウントを作成してください。そのアドレスで受信されたすべてのメールが投"
4552
- #~ "稿されるので、使用するアドレスは秘密にしておいたほうがいいでしょう。よろし"
4553
- #~ "かったら、以下 3 つのランダムな文字列をご利用ください: <kbd>%s</kbd>, "
4554
- #~ "<kbd>%s</kbd>, <kbd>%s</kbd>"
4555
- #~ msgid "Mail Server"
4556
- #~ msgstr "メールサーバー"
4557
- #~ msgid "Port"
4558
- #~ msgstr "ポート"
4559
- #~ msgid "Login Name"
4560
- #~ msgstr "ログイン名"
4561
- #~ msgid "Default Mail Category"
4562
- #~ msgstr "メール投稿用カテゴリーの初期設定"
4563
- #~ msgid "Update Services"
4564
- #~ msgstr "更新情報サービス"
4565
- #~ msgid ""
4566
- #~ "When you publish a new post, WordPress automatically notifies the "
4567
- #~ "following site update services. For more about this, see <a href=\"http://"
4568
- #~ "codex.wordpress.org/Update_Services\">Update Services</a> on the Codex. "
4569
- #~ "Separate multiple service <abbr title=\"Universal Resource Locator\">URL</"
4570
- #~ "abbr>s with line breaks."
4571
- #~ msgstr ""
4572
- #~ "新しい投稿を公開すると、WordPress は次のサイト更新情報サービスに自動的に通"
4573
- #~ "知します。詳細は Codex の <a href=\"http://wpdocs.sourceforge.jp/"
4574
- #~ "Update_Services\">Update Services</a> を参照してください。複数の <abbr "
4575
- #~ "title=\"Universal Resource Locator\">URL</abbr> を入力する場合は改行で区切"
4576
- #~ "ります。"
4577
- #~ msgid ""
4578
- #~ "WordPress is not notifying any <a href=\"http://codex.wordpress.org/"
4579
- #~ "Update_Services\">Update Services</a> because of your blog&#8217;s <a "
4580
- #~ "href=\"%s\">privacy settings</a>."
4581
- #~ msgstr ""
4582
- #~ "このブログの<a href=\"%s\">プライバシー設定</a>により、WordPress は<a "
4583
- #~ "href=\"http://wpdocs.sourceforge.jp/Update_Services\">更新情報サイト</a>に"
4584
- #~ "お知らせをしません。"
4585
- #~ msgid "Error! Options page not found."
4586
- #~ msgstr "エラー ! 設定ページが見つかりませんでした。"
4587
- #~ msgid "All Settings"
4588
- #~ msgstr "すべての設定"
4589
- #~ msgid "Add New Page"
4590
- #~ msgstr "新規ページ"
4591
- #~ msgid "Edit Page"
4592
- #~ msgstr "ページを編集"
4593
- #~ msgid ""
4594
- #~ "You attempted to edit a page that doesn&#8217;t exist. Perhaps it was "
4595
- #~ "deleted?"
4596
- #~ msgstr "編集しようとしたページはありません。削除されたのかもしれません。"
4597
- #~ msgid "Warning: %s is currently editing this page"
4598
- #~ msgstr "注意: %s さんが現在このページを編集中"
4599
- #~ msgid "Edit Plugins"
4600
- #~ msgstr "プラグイン編集"
4601
- #~ msgid ""
4602
- #~ "You do not have sufficient permissions to edit templates for this blog."
4603
- #~ msgstr "このブログのテンプレートを編集するための十分な権限がありません。"
4604
- #~ msgid ""
4605
- #~ "You do not have sufficient permissions to edit plugins for this blog."
4606
- #~ msgstr "このブログのプラグインを編集するための十分な権限がありません。"
4607
- #~ msgid "No such file exists! Double check the name and try again."
4608
- #~ msgstr ""
4609
- #~ "そのようなファイルは存在しません ! ファイル名をもう一度確認して試してくだ"
4610
- #~ "さい。"
4611
- #~ msgid "Files of this type are not editable."
4612
- #~ msgstr "この種類のファイルは編集できません。"
4613
- #~ msgid "Function Name..."
4614
- #~ msgstr "関数名..."
4615
- #~ msgid "File edited successfully."
4616
- #~ msgstr "ファイルの編集に成功しました。"
4617
- #~ msgid ""
4618
- #~ "This plugin has been deactivated because your changes resulted in a "
4619
- #~ "<strong>fatal error</strong>."
4620
- #~ msgstr ""
4621
- #~ "いまの変更が<strong>重大なエラー</strong>を引き起こしたため、このプラグイ"
4622
- #~ "ンの使用を停止しました。"
4623
- #~ msgid "Select plugin to edit:"
4624
- #~ msgstr "編集するプラグインを選択:"
4625
- #~ msgid "Editing <strong>%s</strong> (active)"
4626
- #~ msgstr "<strong>%s</strong> の編集 (使用中) "
4627
- #~ msgid "Browsing <strong>%s</strong> (active)"
4628
- #~ msgstr "<strong>%s</strong> の閲覧 (使用中) "
4629
- #~ msgid "Editing <strong>%s</strong> (inactive)"
4630
- #~ msgstr "<strong>%s</strong> の編集 (停止中) "
4631
- #~ msgid "Browsing <strong>%s</strong> (inactive)"
4632
- #~ msgstr "<strong>%s</strong> の閲覧 (停止中) "
4633
- #~ msgid "Plugin Files"
4634
- #~ msgstr "プラグインファイル"
4635
- #~ msgid "Documentation:"
4636
- #~ msgstr "ドキュメント:"
4637
- #~ msgid "Lookup"
4638
- #~ msgstr "調べる"
4639
- #~ msgid ""
4640
- #~ "<strong>Warning:</strong> Making changes to active plugins is not "
4641
- #~ "recommended. If your changes cause a fatal error, the plugin will be "
4642
- #~ "automatically deactivated."
4643
- #~ msgstr ""
4644
- #~ "<strong>注意: </strong>使用中のプラグインに対する変更はお勧めしません。も"
4645
- #~ "し変更によって重大なエラーが発生した場合は、自動的にそのプラグインの使用を"
4646
- #~ "停止します。"
4647
- #~ msgid "Update File and Attempt to Reactivate"
4648
- #~ msgstr "ファイルの更新と再有効化"
4649
- #~ msgid "Update File"
4650
- #~ msgstr "ファイルを更新"
4651
- #~ msgid ""
4652
- #~ "You need to make this file writable before you can save your changes. See "
4653
- #~ "<a href=\"http://codex.wordpress.org/Changing_File_Permissions\">the "
4654
- #~ "Codex</a> for more information."
4655
- #~ msgstr ""
4656
- #~ "変更を保存するには事前にこのファイルを書き込み可能にする必要があります。詳"
4657
- #~ "しい情報は <a href=\"http://wpdocs.sourceforge.jp/"
4658
- #~ "Changing_File_Permissions\">Codex</a> を参照してください。"
4659
- #~ msgid ""
4660
- #~ "You do not have sufficient permissions to install plugins on this blog."
4661
- #~ msgstr "このブログにプラグインをインストールする権限がありません。"
4662
- #~ msgid "Featured"
4663
- #~ msgstr "おすすめ"
4664
- #~ msgid "Popular"
4665
- #~ msgstr "人気"
4666
- #~ msgid "Newest"
4667
- #~ msgstr "最新"
4668
- #~ msgid ""
4669
- #~ "You do not have sufficient permissions to delete plugins for this blog."
4670
- #~ msgstr "このブログのプラグインを削除するための十分な権限がありません。"
4671
- #~ msgid "Delete Plugin(s)"
4672
- #~ msgstr "プラグイン削除"
4673
- #~ msgid ""
4674
- #~ "Deleting the selected plugins will remove the following plugin(s) and "
4675
- #~ "their files:"
4676
- #~ msgstr ""
4677
- #~ "選択されたプラグインの削除は次のプラグインとその関連ファイルも削除します:"
4678
- #~ msgid "<strong>%s</strong> by <em>%s</em>"
4679
- #~ msgstr "<strong>%s</strong> - 作者: <em>%s</em>"
4680
- #~ msgid "Are you sure you wish to delete these files?"
4681
- #~ msgstr "本当にこれらのファイルを削除しますか ?"
4682
- #~ msgid "Yes, Delete these files"
4683
- #~ msgstr "はい、これらのファイルを削除します"
4684
- #~ msgid "No, Return me to the plugin list"
4685
- #~ msgstr "いいえ、プラグイン一覧表に戻ります"
4686
- #~ msgid "Click to view entire list of files which will be deleted"
4687
- #~ msgstr "クリックして削除されるファイル一覧を表示"
4688
- #~ msgid ""
4689
- #~ "Plugins extend and expand the functionality of WordPress. Once a plugin "
4690
- #~ "is installed, you may activate it or deactivate it here."
4691
- #~ msgstr ""
4692
- #~ "プラグインは WordPress の機能を拡張します。プラグインディレクトリにファイ"
4693
- #~ "ルをアップロードすれば、このページからそのプラグインを使用/停止させること"
4694
- #~ "ができます。"
4695
- #~ msgid ""
4696
- #~ "If something goes wrong with a plugin and you can&#8217;t use WordPress, "
4697
- #~ "delete or rename that file in the <code>%s</code> directory and it will "
4698
- #~ "be automatically deactivated."
4699
- #~ msgstr ""
4700
- #~ "もしプラグインがうまく動作しなくて WordPress が使用できなくなったら、その"
4701
- #~ "プラグインのファイル名を変更するか、もしくは <code>%s</code> ディレクトリ"
4702
- #~ "から削除してください。そのプラグインは自動的に停止されます。"
4703
- #~ msgid ""
4704
- #~ "You can find additional plugins for your site by using the new <a href=\"%"
4705
- #~ "1$s\">Plugin Browser/Installer</a> functionality or by browsing the <a "
4706
- #~ "href=\"http://wordpress.org/extend/plugins/\">WordPress Plugin Directory</"
4707
- #~ "a> directly and installing manually. To <em>manually</em> install a "
4708
- #~ "plugin you generally just need to upload the plugin file into your <code>%"
4709
- #~ "2$s</code> directory. Once a plugin has been installed, you may activate "
4710
- #~ "it here."
4711
- #~ msgstr ""
4712
- #~ "サイトに追加できるプラグインは新しい<a href=\"%1$s\">プラグインブラウザ/イ"
4713
- #~ "ンストーラ</a>機能で見つけることができます。また、<a href=\"http://"
4714
- #~ "wordpress.org/extend/plugins/\">WordPress Plugin Directory</a> に直接アク"
4715
- #~ "セスして手動でインストールすることもできます。プラグインを <em>手動で</"
4716
- #~ "em> インストールするには、通常は <code>%2$s</code> ディレクトリにプラグイ"
4717
- #~ "ンファイルをアップロードするだけです。インストール後はこのページでプラグイ"
4718
- #~ "ンを利用可能にできます。"
4719
- #~ msgid ""
4720
- #~ "The plugin <code>%s</code> has been <strong>deactivated</strong> due to "
4721
- #~ "an error: %s"
4722
- #~ msgstr ""
4723
- #~ "プラグイン <code>%s</code> はエラーのため<strong>停止</strong>されました。"
4724
- #~ "エラー: %s"
4725
- #~ msgid ""
4726
- #~ "Plugin could not be activated because it triggered a <strong>fatal error</"
4727
- #~ "strong>."
4728
- #~ msgstr ""
4729
- #~ "<strong>重大なエラー</strong>を引き起こしたのでプラグインの有効化はできま"
4730
- #~ "せんでした。"
4731
- #~ msgid "Plugin could not be deleted due to an error: %s"
4732
- #~ msgstr "エラー: %s によりプラグインの削除に失敗しました。"
4733
- #~ msgid "The selected plugins have been <strong>deleted</strong>."
4734
- #~ msgstr "選択されたプラグインを<strong>削除</strong>しました。"
4735
- #~ msgid "Plugin <strong>activated</strong>."
4736
- #~ msgstr "プラグインを<strong>使用開始</strong>しました。"
4737
- #~ msgid "Selected plugins <strong>activated</strong>."
4738
- #~ msgstr "選択されたプラグインを<strong>使用開始</strong>しました。"
4739
- #~ msgid "Plugin <strong>deactivated</strong>."
4740
- #~ msgstr "プラグインを<strong>停止</strong>しました。"
4741
- #~ msgid "Selected plugins <strong>deactivated</strong>."
4742
- #~ msgstr "選択されたプラグインを<strong>停止</strong>しました。"
4743
- #~ msgid "Plugin"
4744
- #~ msgstr "プラグイン"
4745
- #~ msgid "No plugins to show"
4746
- #~ msgstr "プラグインはありません"
4747
- #~ msgid "Deactivate this plugin"
4748
- #~ msgstr "プラグインを停止する"
4749
- #~ msgid "Deactivate"
4750
- #~ msgstr "停止する"
4751
- #~ msgid "Open this file in the Plugin Editor"
4752
- #~ msgstr "プラグインエディターでこのファイルを開く"
4753
- #~ msgid "Delete this plugin"
4754
- #~ msgstr "このプラグインを削除"
4755
- #~ msgid "Visit plugin site"
4756
- #~ msgstr "プラグインのサイトを開く"
4757
- #~ msgid "Clear List"
4758
- #~ msgstr "リストをクリア"
4759
- #~ msgctxt "plugins"
4760
- #~ msgid "All <span class=\"count\">(%s)</span>"
4761
- #~ msgid_plural "All <span class=\"count\">(%s)</span>"
4762
- #~ msgstr[0] "すべて <span class=\"count\">(%s)</span>"
4763
- #~ msgid "Active <span class=\"count\">(%s)</span>"
4764
- #~ msgid_plural "Active <span class=\"count\">(%s)</span>"
4765
- #~ msgstr[0] "使用中 <span class=\"count\">(%s)</span>"
4766
- #~ msgid "Recently Active <span class=\"count\">(%s)</span>"
4767
- #~ msgid_plural "Recently Active <span class=\"count\">(%s)</span>"
4768
- #~ msgstr[0] "最近まで使用 <span class=\"count\">(%s)</span>"
4769
- #~ msgid "Inactive <span class=\"count\">(%s)</span>"
4770
- #~ msgid_plural "Inactive <span class=\"count\">(%s)</span>"
4771
- #~ msgstr[0] "停止中 <span class=\"count\">(%s)</span>"
4772
- #~ msgid "Upgrade Available <span class=\"count\">(%s)</span>"
4773
- #~ msgid_plural "Upgrade Available <span class=\"count\">(%s)</span>"
4774
- #~ msgstr[0] "利用可能なアップグレード <span class=\"count\">(%s)</span>"
4775
- #~ msgid "Search Results <span class=\"count\">(%s)</span>"
4776
- #~ msgid_plural "Search Results <span class=\"count\">(%s)</span>"
4777
- #~ msgstr[0] "検索結果 <span class=\"count\">(%s)</span>"
4778
- #~ msgid "You do not appear to have any plugins available at this time."
4779
- #~ msgstr "現在利用可能なプラグインはないようです。"
4780
- #~ msgid "Add New Post"
4781
- #~ msgstr "新規投稿"
4782
- #~ msgid ""
4783
- #~ "Since you&#8217;re a newcomer, you&#8217;ll have to wait for an admin to "
4784
- #~ "add the <code>edit_posts</code> capability to your user, in order to be "
4785
- #~ "authorized to post.<br />\n"
4786
- #~ "You can also <a href=\"mailto:%s?subject=Promotion?\">e-mail the admin</"
4787
- #~ "a> to ask for a promotion.<br />\n"
4788
- #~ "When you&#8217;re promoted, just reload this page and you&#8217;ll be "
4789
- #~ "able to blog. :)"
4790
- #~ msgstr ""
4791
- #~ "新規登録したばかりなので、投稿できるようになるには管理者があなたのユーザー"
4792
- #~ "権限を上げるまで待つ必要があります。<br />\n"
4793
- #~ "もしくは、ユーザー権限を上げるように<a href=\"mailto:%s?subject=Promotion?"
4794
- #~ "\">管理者にメールを送る</a>こともできます。<br />\n"
4795
- #~ "ユーザー権限が上がったらこのページを再度読み込んでください。投稿できるよう"
4796
- #~ "になります。 :)"
4797
- #~ msgid ""
4798
- #~ "You attempted to edit a post that doesn&#8217;t exist. Perhaps it was "
4799
- #~ "deleted?"
4800
- #~ msgstr "編集しようとした投稿はありません。削除されたのかもしれません。"
4801
- #~ msgid "Warning: %s is currently editing this post"
4802
- #~ msgstr "注意: %s さんが現在この投稿を編集中"
4803
- #~ msgid "Edit Post"
4804
- #~ msgstr "投稿編集"
4805
- #~ msgid "Embed Code"
4806
- #~ msgstr "埋め込むコード"
4807
- #~ msgid "Insert Video"
4808
- #~ msgstr "動画の挿入"
4809
- #~ msgid "Click to insert."
4810
- #~ msgstr "画像をクリックして挿入"
4811
- #~ msgid "Insert Image"
4812
- #~ msgstr "画像の挿入"
4813
- #~ msgid "Unable to retrieve images or no images on page."
4814
- #~ msgstr "画像を取得できない、またはページに画像がありません。"
4815
- #~ msgid "click images to select"
4816
- #~ msgstr "クリックして画像を選択"
4817
- #~ msgid "Add from URL"
4818
- #~ msgstr "URL から追加"
4819
- #~ msgid "Refresh"
4820
- #~ msgstr "リフレッシュ"
4821
- #~ msgid "Loading..."
4822
- #~ msgstr "読み込み中..."
4823
- #~ msgid "Post Tags"
4824
- #~ msgstr "投稿のタグ"
4825
- #~ msgid "Choose from the most used tags in Post Tags"
4826
- #~ msgstr "もっとも使用されている投稿のタグから選択"
4827
- #~ msgid "Close Window"
4828
- #~ msgstr "ウインドウを閉じる"
4829
- #~ msgid "Insert an Image"
4830
- #~ msgstr "画像の挿入"
4831
- #~ msgid "Embed a Video"
4832
- #~ msgstr "動画のコードを埋め込む"
4833
- #~ msgid "HTML"
4834
- #~ msgstr "HTML"
4835
- #~ msgid "Visual"
4836
- #~ msgstr "ビジュアル"
4837
- #~ msgid "via "
4838
- #~ msgstr "引用元: "
4839
- #~ msgid "Compare Revisions of &#8220;%1$s&#8221;"
4840
- #~ msgstr "&#8220;%1$s&#8221;のリビジョン比較"
4841
- #~ msgid "Post Revision for &#8220;%1$s&#8221; created on %2$s"
4842
- #~ msgstr "投稿リビジョン &#8220;%1$s&#8221 - 作成日時 %2$s"
4843
- #~ msgid "Older: %s"
4844
- #~ msgstr "古い: %s"
4845
- #~ msgid "Newer: %s"
4846
- #~ msgstr "新しい: %s"
4847
- #~ msgid "These revisions are identical."
4848
- #~ msgstr "これらのリビジョンはまったく同一のものです。"
4849
- #~ msgid "Post published."
4850
- #~ msgstr "投稿を公開しました。"
4851
- #~ msgid "Title:"
4852
- #~ msgstr "タイトル:"
4853
- #~ msgid "Post:"
4854
- #~ msgstr "投稿:"
4855
- #~ msgid "Tags:"
4856
- #~ msgstr "タグ:"
4857
- #~ msgid "Separate tags with commas"
4858
- #~ msgstr "タグが複数ある場合はコンマで区切ってください"
4859
- #~ msgid "Save as Draft"
4860
- #~ msgstr "下書きとして保存"
4861
- #~ msgid "Edit Themes"
4862
- #~ msgstr "テーマの編集"
4863
- #~ msgid "The requested theme does not exist."
4864
- #~ msgstr "選択したテーマはありません。"
4865
- #~ msgid "You do not have sufficient permissions to edit themes for this blog."
4866
- #~ msgstr "このブログのテーマを編集する権限がありません。"
4867
- #~ msgid "Select theme to edit:"
4868
- #~ msgstr "編集するテーマを選択:"
4869
- #~ msgid "Theme Files"
4870
- #~ msgstr "テーマファイル"
4871
- #~ msgid "Templates"
4872
- #~ msgstr "テンプレート"
4873
- #~ msgctxt "Theme stylesheets in theme editor"
4874
- #~ msgid "Styles"
4875
- #~ msgstr "スタイル"
4876
- #~ msgid ""
4877
- #~ "Oops, no such file exists! Double check the name and try again, merci."
4878
- #~ msgstr ""
4879
- #~ "そのようなファイルは存在しません ! ファイル名をもう一度確認して試してくだ"
4880
- #~ "さい。"
4881
- #~ msgid ""
4882
- #~ "You do not have sufficient permissions to install themes on this blog."
4883
- #~ msgstr "このブログにテーマをインストールする権限がありません。"
4884
- #~ msgid ""
4885
- #~ "Themes give your WordPress style. Once a theme is installed, you may "
4886
- #~ "preview it, activate it or deactivate it here."
4887
- #~ msgstr ""
4888
- #~ "テーマは WordPress にスタイルを提供します。テーマをインストールすれば、こ"
4889
- #~ "のページからそのテーマのプレビュー、使用/停止ができます。"
4890
- #~ msgid ""
4891
- #~ "You can find additional themes for your site by using the new <a href=\"%1"
4892
- #~ "$s\">Theme Browser/Installer</a> functionality or by browsing the <a href="
4893
- #~ "\"http://wordpress.org/extend/themes/\">WordPress Theme Directory</a> "
4894
- #~ "directly and installing manually. To install a theme <em>manually</em>, "
4895
- #~ "<a href=\"%2$s\">upload its ZIP archive with the new uploader</a> or copy "
4896
- #~ "its folder via FTP into your <code>wp-content/themes</code> directory."
4897
- #~ msgstr ""
4898
- #~ "サイトに追加できるテーマは新しい<a href=\"%1$s\">テーマブラウザ/インストー"
4899
- #~ "ラ</a>機能で見つけることができます。また、<a href=\"http://wordpress.org/"
4900
- #~ "extend/themes/\">WordPress Theme Directory</a> に直接アクセスして手動でイ"
4901
- #~ "ンストールすることもできます。テーマを <em>手動で</em> インストールするに"
4902
- #~ "は、<a href=\"%2$s\">新しいアップローダーでそのプラグインの ZIP アーカイブ"
4903
- #~ "をアップロードする</a>か FTP で <code>wp-content/themes</code> ディレクト"
4904
- #~ "リにコピーします。"
4905
- #~ msgid "Once a theme is uploaded, you should see it on this page."
4906
- #~ msgstr ""
4907
- #~ "テーマをアップロードすると、このページでそのテーマが参照できるはずです。"
4908
- #~ msgid "The active theme is broken. Reverting to the default theme."
4909
- #~ msgstr "現在のテーマは壊れています。デフォルトのテーマに戻します。"
4910
- #~ msgid ""
4911
- #~ "New theme activated. This theme supports widgets, please visit the <a "
4912
- #~ "href=\"%s\">widgets settings page</a> to configure them."
4913
- #~ msgstr ""
4914
- #~ "新しいテーマを有効化しました。このテーマはウィジェットをサポートしていま"
4915
- #~ "す。設定するには<a href=\"%s\">ウィジェット設定ページ</a>を開いてくださ"
4916
- #~ "い。 "
4917
- #~ msgid "New theme activated. <a href=\"%s\">Visit site</a>"
4918
- #~ msgstr "新しいテーマを設定しました。<a href=\"%s\">サイトを表示する</a>"
4919
- #~ msgid "Theme deleted."
4920
- #~ msgstr "テーマを削除しました。"
4921
- #~ msgid ""
4922
- #~ "Upgrading this theme will lose any customizations you have made. "
4923
- #~ "'Cancel' to stop, 'OK' to upgrade."
4924
- #~ msgstr ""
4925
- #~ "このテーマをアップグレードすると、すべてのカスタマイズが失われます。 'キャ"
4926
- #~ "ンセル' で中止、'OK' でアップグレードします。"
4927
- #~ msgid ""
4928
- #~ "There is a new version of %1$s available. <a href=\"%2$s\" class="
4929
- #~ "\"thickbox\" title=\"%1$s\">View version %3$s Details</a>."
4930
- #~ msgstr ""
4931
- #~ "新しいバージョンの %1$s が利用可能です。<a href=\"%2$s\" class=\"thickbox"
4932
- #~ "\" title=\"%1$s\">バージョン %3$s の詳細をご覧ください</a>。"
4933
- #~ msgid ""
4934
- #~ "There is a new version of %1$s available. <a href=\"%2$s\" class="
4935
- #~ "\"thickbox\" title=\"%1$s\">View version %3$s Details</a> <em>automatic "
4936
- #~ "upgrade unavailable for this theme</em>."
4937
- #~ msgstr ""
4938
- #~ "新しいバージョンの %1$s が利用可能です。<a href=\"%2$s\" class=\"thickbox"
4939
- #~ "\" title=\"%1$s\">バージョン %3$s の詳細を見る</a> <em>このテーマは自動"
4940
- #~ "アップグレードが利用できません</em>。"
4941
- #~ msgid ""
4942
- #~ "There is a new version of %1$s available. <a href=\"%2$s\" class="
4943
- #~ "\"thickbox\" title=\"%1$s\">View version %3$s Details</a> or <a href=\"%4"
4944
- #~ "$s\" %5$s >upgrade automatically</a>."
4945
- #~ msgstr ""
4946
- #~ "新しいバージョンの %1$s が利用可能です。<a href=\"%2$s\" class=\"thickbox"
4947
- #~ "\" title=\"%1$s\">バージョン %3$s の詳細を見る</a>か、<a href=\"%4$s\" %5"
4948
- #~ "$s >自動アップグレード</a>を実行してください。"
4949
- #~ msgid "Current Theme"
4950
- #~ msgstr "現在のテーマ"
4951
- #~ msgid "Current theme preview"
4952
- #~ msgstr "現在のテーマのプレビュー"
4953
- #~ msgid "%1$s %2$s by %3$s"
4954
- #~ msgstr "%1$s %2$s : %3$s 作"
4955
- #~ msgid ""
4956
- #~ "The template files are located in <code>%2$s</code>. The stylesheet "
4957
- #~ "files are located in <code>%3$s</code>. <strong>%4$s</strong> uses "
4958
- #~ "templates from <strong>%5$s</strong>. Changes made to the templates will "
4959
- #~ "affect both themes."
4960
- #~ msgstr ""
4961
- #~ "このテンプレートのファイルは <code>%2$s</code> にあります。このスタイル"
4962
- #~ "シートのファイルは <code>%3$s</code> にあります。<strong>%4$s</strong> は "
4963
- #~ "<strong>%5$s</strong> のテンプレートを使用しています。このテンプレートに対"
4964
- #~ "する変更は両方のテーマに適用されます。"
4965
- #~ msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
4966
- #~ msgstr "このテーマのすべてのファイルは <code>%2$s</code> にあります。"
4967
- #~ msgid "Available Themes"
4968
- #~ msgstr "利用可能なテーマ"
4969
- #~ msgid "Preview of &#8220;%s&#8221;"
4970
- #~ msgstr "&#8220;%s&#8221; のプレビュー"
4971
- #~ msgid ""
4972
- #~ "You are about to delete this theme '%s'\n"
4973
- #~ " 'Cancel' to stop, 'OK' to delete."
4974
- #~ msgstr ""
4975
- #~ "このテーマ '%s' を削除しようとしています。\n"
4976
- #~ " 'キャンセル' で中止、'OK' で削除します。"
4977
- #~ msgid ""
4978
- #~ "You only have one theme installed at the moment so there is nothing to "
4979
- #~ "show you here. Maybe you should download some more to try out."
4980
- #~ msgstr ""
4981
- #~ "今のところ、テーマは一つしかインストールされていないので、こちらには何も表"
4982
- #~ "示されていません。いくつかダウンロードしてお試しください。"
4983
- #~ msgid "Broken Themes"
4984
- #~ msgstr "壊れているテーマ"
4985
- #~ msgid ""
4986
- #~ "The following themes are installed but incomplete. Themes must have a "
4987
- #~ "stylesheet and a template."
4988
- #~ msgstr ""
4989
- #~ "これらのテーマはインストールされていますが不完全です。テーマにはスタイル"
4990
- #~ "シートとテンプレートが必要です。"
4991
- #~ msgid "Turbo:"
4992
- #~ msgstr "ターボ:"
4993
- #~ msgid "Speed up WordPress"
4994
- #~ msgstr "WordPress をスピードアップ"
4995
- #~ msgid ""
4996
- #~ "WordPress now has support for Gears, which adds new features to your web "
4997
- #~ "browser."
4998
- #~ msgstr ""
4999
- #~ "WordPress は ブラウザに新しい機能 を追加する Gears に対応しています。"
5000
- #~ msgid "More information..."
5001
- #~ msgstr "詳しい情報..."
5002
- #~ msgid ""
5003
- #~ "After you install and enable Gears, most of WordPress&#8217; images, "
5004
- #~ "scripts, and CSS files will be stored locally on your computer. This "
5005
- #~ "speeds up page load time."
5006
- #~ msgstr ""
5007
- #~ "Gears をインストールして有効化すると、WordPress の画像、スクリプトおよび "
5008
- #~ "CSS ファイルのほとんどがローカルのコンピューターに保存されます。これによ"
5009
- #~ "り、ページの読み込みが速くなります。"
5010
- #~ msgid "Don&#8217;t install on a public or shared computer."
5011
- #~ msgstr "公共あるいは共有のコンピューターにインストールしないでください。"
5012
- #~ msgid "Gears Status"
5013
- #~ msgstr "Gears ステータス"
5014
- #~ msgid ""
5015
- #~ "Gears is installed on this computer, but is not enabled for use with "
5016
- #~ "WordPress."
5017
- #~ msgstr ""
5018
- #~ "Gears はこのコンピューターにインストールされていますが、WordPres での利用"
5019
- #~ "は有効化されていません。"
5020
- #~ msgid "To enable it click the button below."
5021
- #~ msgstr "有効化するには下のボタンをクリックしてください。"
5022
- #~ msgid "Note: Do not enable Gears if this is a public or shared computer!"
5023
- #~ msgstr ""
5024
- #~ "メモ: 公共あるいは共有のコンピューターをお使いの場合は Gears を有効にしな"
5025
- #~ "いでください。"
5026
- #~ msgid "Enable Gears"
5027
- #~ msgstr "Gears を有効にする"
5028
- #~ msgid ""
5029
- #~ "Gears is installed and enabled on this computer. You can disable it from "
5030
- #~ "the Under the Hood tab in Chrome&#8217;s Options menu."
5031
- #~ msgstr ""
5032
- #~ "Gears をこのコンピューターにインストールし、有効化しました。無効にするに"
5033
- #~ "は Chrome オプションメニューから行ってください。"
5034
- #~ msgid ""
5035
- #~ "Gears is installed and enabled on this computer. You can disable it from "
5036
- #~ "the Safari menu."
5037
- #~ msgstr ""
5038
- #~ "Gears をこのコンピューターにインストールし、有効化しました。無効にするに"
5039
- #~ "は Safari のメニューから行ってください。"
5040
- #~ msgid ""
5041
- #~ "Gears is installed and enabled on this computer. You can disable it from "
5042
- #~ "your browser&#8217;s Tools menu."
5043
- #~ msgstr ""
5044
- #~ "Gears をこのコンピューターにインストールし、有効化しました。無効にするには"
5045
- #~ "ウェブブラウザのツールメニューから行ってください。"
5046
- #~ msgid ""
5047
- #~ "If there are any errors try disabling Gears, reloading the page, and re-"
5048
- #~ "enabling Gears."
5049
- #~ msgstr ""
5050
- #~ "エラーが何か発生した時は、Gears を無効化してページをリロードした後でもう一"
5051
- #~ "度有効化してみてください。"
5052
- #~ msgid "Local storage status:"
5053
- #~ msgstr "ローカルの保存ファイル状況:"
5054
- #~ msgid "Updating files:"
5055
- #~ msgstr "ファイルのアップデート:"
5056
- #~ msgid ""
5057
- #~ "Your browser&#8217;s settings do not permit this website to use Google "
5058
- #~ "Gears."
5059
- #~ msgstr ""
5060
- #~ "ブラウザ設定でこのウェブサイトの Google Gears の使用が許可されていません。"
5061
- #~ msgid ""
5062
- #~ "To allow it, change the Gears settings in your browser&#8217;s Options, "
5063
- #~ "Under the Hood menu and reload this page."
5064
- #~ msgstr ""
5065
- #~ "許可するには、ブラウザの Gears 設定を変更し、このページをリロードしてくだ"
5066
- #~ "さい。"
5067
- #~ msgid ""
5068
- #~ "To allow it, change the Gears settings in the Safari menu and reload this "
5069
- #~ "page."
5070
- #~ msgstr ""
5071
- #~ "許可するには、Safari メニューの Gears 設定を変更し、このページをリロードし"
5072
- #~ "てください。"
5073
- #~ msgid ""
5074
- #~ "To allow it, change the Gears settings in your browser&#8217;s Tools menu "
5075
- #~ "and reload this page."
5076
- #~ msgstr ""
5077
- #~ "許可するには、ブラウザのツールメニューの Gears 設定を変更し、このページを"
5078
- #~ "リロードしてください。"
5079
- #~ msgid "Turbo is not available for your browser."
5080
- #~ msgstr "お使いのブラウザではターボ機能はご利用できません。"
5081
- #~ msgid ""
5082
- #~ "Press This is a bookmarklet: a little app that runs in your browser and "
5083
- #~ "lets you grab bits of the web."
5084
- #~ msgstr ""
5085
- #~ "Press This はブックマークレットです。ブラウザ上で動作する小さなアプリを"
5086
- #~ "使ってウェブ上の様々なデータを取り込むことができます。"
5087
- #~ msgid ""
5088
- #~ "Use Press This to clip text, images and videos from any web page. Then "
5089
- #~ "edit and add more straight from Press This before you save or publish it "
5090
- #~ "in a post on your blog."
5091
- #~ msgstr ""
5092
- #~ "Press This を使ってテキストや画像、動画をウェブページから切り取ります。投"
5093
- #~ "稿として保存または公開する前に Press This から編集/追加を行ってください。"
5094
- #~ msgid ""
5095
- #~ "Drag-and-drop the following link to your bookmarks bar or right click it "
5096
- #~ "and add it to your favorites for a posting shortcut."
5097
- #~ msgstr ""
5098
- #~ "次のリンクをブックマークバーあるいは右クリックでお気に入りに追加しておけば"
5099
- #~ "投稿ブックマークレットとして使えます。"
5100
- #~ msgid ""
5101
- #~ "You do not have sufficient permissions to update plugins for this blog."
5102
- #~ msgstr "このブログのプラグインを更新するための十分な権限がありません。"
5103
- #~ msgid "Upgrade Automatically"
5104
- #~ msgstr "自動アップグレードを実行"
5105
- #~ msgid ""
5106
- #~ "You are using a development version of WordPress. You can upgrade to the "
5107
- #~ "latest nightly build automatically or download the nightly build and "
5108
- #~ "install it manually:"
5109
- #~ msgstr ""
5110
- #~ "開発版の WordPress をご利用中です。最新のナイトリービルドに自動アップグ"
5111
- #~ "レードするか、手動でナイトリービルドをダウンロードしてインストールすること"
5112
- #~ "ができます。"
5113
- #~ msgid "Download nightly build"
5114
- #~ msgstr "ナイトリービルドをダウンロード"
5115
- #~ msgid ""
5116
- #~ "You have the latest version of WordPress. You do not need to upgrade. "
5117
- #~ "However, if you want to re-install version %s, you can do so "
5118
- #~ "automatically or download the package and re-install manually:"
5119
- #~ msgstr ""
5120
- #~ "最新版の WordPress を利用中です。アップグレードの必要はありません。もし"
5121
- #~ "バージョン %s を再インストールしたい場合は、自動、もしくは手動でパッケージ"
5122
- #~ "をダウンロードして再インストールしてください:"
5123
- #~ msgid "Re-install Automatically"
5124
- #~ msgstr "自動再インストールを実行"
5125
- #~ msgid ""
5126
- #~ "You can upgrade to version %s automatically or download the package and "
5127
- #~ "install it manually:"
5128
- #~ msgstr ""
5129
- #~ "バージョン %s に自動アップグレードするか、パッケージを手動でダウンロードし"
5130
- #~ "てインストールすることができます。"
5131
- #~ msgid "Download %s"
5132
- #~ msgstr "%s をダウンロード"
5133
- #~ msgid "Hide this update"
5134
- #~ msgstr "この変更を非表示にする"
5135
- #~ msgid "Bring back this update"
5136
- #~ msgstr "この更新を元に戻す"
5137
- #~ msgid ""
5138
- #~ "This localized version contains both the translation and various other "
5139
- #~ "localization fixes. You can skip upgrading if you want to keep your "
5140
- #~ "current translation."
5141
- #~ msgstr ""
5142
- #~ "このローカライズ版には翻訳ファイルといくつかのローカライズ用の修正が含まれ"
5143
- #~ "ています。現在使用中の翻訳をそのまま使用したい場合は、アップグレードをス"
5144
- #~ "キップしてもかまいません。"
5145
- #~ msgid "Show hidden updates"
5146
- #~ msgstr "非表示の更新を表示する"
5147
- #~ msgid "Hide hidden updates"
5148
- #~ msgstr "非表示の更新を隠す"
5149
- #~ msgid "Upgrade WordPress"
5150
- #~ msgstr "WordPress のアップグレード"
5151
- #~ msgid "You have the latest version of WordPress. You do not need to upgrade"
5152
- #~ msgstr ""
5153
- #~ "最新バージョンの WordPress をご利用中です。アップグレードの必要はありませ"
5154
- #~ "ん。"
5155
- #~ msgid ""
5156
- #~ "<strong>Important:</strong> before upgrading, please <a href=\"http://"
5157
- #~ "codex.wordpress.org/WordPress_Backups\">backup your database and files</"
5158
- #~ "a>."
5159
- #~ msgstr ""
5160
- #~ "<strong>重要:</strong> アップグレードの前に、<a href=\"http://wpdocs."
5161
- #~ "sourceforge.jp/WordPress_Backups\">データベースとファイルをバックアップし"
5162
- #~ "てください</a>。"
5163
- #~ msgid "There is a new version of WordPress available for upgrade"
5164
- #~ msgstr "新しいバージョンの WordPress にアップグレードが可能です"
5165
- #~ msgid "Installation Failed"
5166
- #~ msgstr "インストール失敗"
5167
- #~ msgid "WordPress upgraded successfully"
5168
- #~ msgstr "WordPress のアップグレードを完了しました。"
5169
- #~ msgid "Feature disabled."
5170
- #~ msgstr "機能停止中。"
5171
- #~ msgid "No links"
5172
- #~ msgstr "リンク無し"
5173
- #~ msgid "Request Failed."
5174
- #~ msgstr "リンクの更新に失敗しました。"
5175
- #~ msgid "Plugin Reactivation"
5176
- #~ msgstr "プラグインの再有効化"
5177
- #~ msgid "Plugin reactivated successfully."
5178
- #~ msgstr "プラグインの再有効化に成功しました。"
5179
- #~ msgid "Plugin failed to reactivate due to a fatal error."
5180
- #~ msgstr "重大なエラーによりプラグインの再有効化に失敗しました。"
5181
- #~ msgid ""
5182
- #~ "You do not have sufficient permissions to install plugins for this blog."
5183
- #~ msgstr "プラグインをインストールするための十分な権限がありません。"
5184
- #~ msgid "Installing Plugin: %s"
5185
- #~ msgstr "インストールしているプラグイン: %s"
5186
- #~ msgid "Upload Plugin"
5187
- #~ msgstr "プラグインのアップロード"
5188
- #~ msgid "Installing Plugin from uploaded file: %s"
5189
- #~ msgstr "アップロードしたファイル %s からプラグインをインストールしています"
5190
- #~ msgid ""
5191
- #~ "You do not have sufficient permissions to update themes for this blog."
5192
- #~ msgstr "テーマをアップデートするための十分な権限がありません。"
5193
- #~ msgid ""
5194
- #~ "You do not have sufficient permissions to install themes for this blog."
5195
- #~ msgstr "テーマをインストールするための十分な権限がありません。"
5196
- #~ msgid "Installing theme: %s"
5197
- #~ msgstr "テーマ %s をインストールしています"
5198
- #~ msgid "Upload Theme"
5199
- #~ msgstr "テーマのアップロード"
5200
- #~ msgid "Installing Theme from uploaded file: %s"
5201
- #~ msgstr "アップロードしたファイル %s からテーマをインストールしています"
5202
- #~ msgid "WordPress &rsaquo; Upgrade"
5203
- #~ msgstr "WordPress &rsaquo; アップグレード"
5204
- #~ msgid "No Upgrade Required"
5205
- #~ msgstr "アップグレードの必要はありません"
5206
- #~ msgid "Your WordPress database is already up-to-date!"
5207
- #~ msgstr "この WordPress のデータベースはすでに最新のものです !"
5208
- #~ msgid "Database Upgrade Required"
5209
- #~ msgstr "データベースのアップグレードが必要です"
5210
- #~ msgid ""
5211
- #~ "WordPress has been updated! Before we send you on your way, we have to "
5212
- #~ "upgrade your database to the newest version."
5213
- #~ msgstr ""
5214
- #~ "WordPress をアップデートしました ! 次に進む前に、データベースを最新のバー"
5215
- #~ "ジョンにアップグレードする必要があります。"
5216
- #~ msgid "The upgrade process may take a little while, so please be patient."
5217
- #~ msgstr ""
5218
- #~ "このアップグレードの処理には少し時間がかかるかもしれません。しばらくお待ち"
5219
- #~ "ください。"
5220
- #~ msgid "Upgrade WordPress Database"
5221
- #~ msgstr "WordPress データベースのアップグレード"
5222
- #~ msgid "Upgrade Complete"
5223
- #~ msgstr "アップグレード完了"
5224
- #~ msgid "Your WordPress database has been successfully upgraded!"
5225
- #~ msgstr "WordPress のデータベースのアップグレードを完了しました !"
5226
- #~ msgid "%s queries"
5227
- #~ msgstr "%s クエリー"
5228
- #~ msgid "%s seconds"
5229
- #~ msgstr "%s秒"
5230
- #~ msgid "You are not allowed to scan for lost attachments."
5231
- #~ msgstr ""
5232
- #~ "投稿に使用されていないメディアファイルをスキャンする権限がありません。"
5233
- #~ msgid "Image (%s)"
5234
- #~ msgid_plural "Images (%s)"
5235
- #~ msgstr[0] "画像 (%s)"
5236
- #~ msgid "Audio (%s)"
5237
- #~ msgid_plural "Audio (%s)"
5238
- #~ msgstr[0] "音声 (%s)"
5239
- #~ msgid "Video (%s)"
5240
- #~ msgid_plural "Video (%s)"
5241
- #~ msgstr[0] "動画 (%s)"
5242
- #~ msgid "Reattached %d attachment"
5243
- #~ msgid_plural "Reattached %d attachments"
5244
- #~ msgstr[0] "%d を再添付しました。"
5245
- #~ msgid "Media deleted."
5246
- #~ msgstr "メディアを削除しました。"
5247
- #~ msgid "Error saving media attachment."
5248
- #~ msgstr "添付メディアの保存の際にエラーが発生しました。"
5249
- #~ msgctxt "uploaded files"
5250
- #~ msgid "All <span class=\"count\">(%s)</span>"
5251
- #~ msgid_plural "All <span class=\"count\">(%s)</span>"
5252
- #~ msgstr[0] "すべて <span class=\"count\">(%s)</span>"
5253
- #~ msgid "Unattached"
5254
- #~ msgstr "使用されていないメディア"
5255
- #~ msgid "Attach to a post"
5256
- #~ msgstr "投稿に添付"
5257
- #~ msgid "Scan for lost attachments"
5258
- #~ msgstr "投稿に使用されていないメディアファイルをスキャン"
5259
- #~ msgctxt "media column name"
5260
- #~ msgid "Media"
5261
- #~ msgstr "メディア"
5262
- #~ msgctxt "media column name"
5263
- #~ msgid "Author"
5264
- #~ msgstr "作成者"
5265
- #~ msgctxt "media column name"
5266
- #~ msgid "Date Added"
5267
- #~ msgstr "追加日"
5268
- #~ msgid "Attach"
5269
- #~ msgstr "投稿に添付"
5270
- #~ msgid "Edit User"
5271
- #~ msgstr "ユーザーの編集"
5272
- #~ msgid "Invalid user ID."
5273
- #~ msgstr "無効なユーザー ID です。"
5274
- #~ msgid "Use https"
5275
- #~ msgstr "https を使用する"
5276
- #~ msgid "Always use https when visiting the admin"
5277
- #~ msgstr "管理画面にアクセスする際、常に HTTPS を利用する"
5278
- #~ msgid "You do not have permission to edit this user."
5279
- #~ msgstr "このユーザーを編集する権限がありません。"
5280
- #~ msgid "User updated."
5281
- #~ msgstr "ユーザーを更新しました。"
5282
- #~ msgid "&larr; Back to Authors and Users"
5283
- #~ msgstr "&larr; 投稿者とユーザーに戻る"
5284
- #~ msgid "Personal Options"
5285
- #~ msgstr "個人設定"
5286
- #~ msgid "Visual Editor"
5287
- #~ msgstr "ビジュアルエディター"
5288
- #~ msgid "Disable the visual editor when writing"
5289
- #~ msgstr "ビジュアルリッチエディターを使用しない"
5290
- #~ msgid "Admin Color Scheme"
5291
- #~ msgstr "管理画面の配色"
5292
- #~ msgid "Keyboard Shortcuts"
5293
- #~ msgstr "キーボードショートカット"
5294
- #~ msgid "Enable keyboard shortcuts for comment moderation."
5295
- #~ msgstr "コメント承認用のキーボードショートカットを有効にする。"
5296
- #~ msgid ""
5297
- #~ "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\">More "
5298
- #~ "information</a>"
5299
- #~ msgstr ""
5300
- #~ "<a href=\"http://wpdocs.sourceforge.jp/Keyboard_Shortcuts\">詳細</a>"
5301
- #~ msgid "Your username cannot be changed."
5302
- #~ msgstr "ユーザー名は変更できません。"
5303
- #~ msgid "Role:"
5304
- #~ msgstr "権限:"
5305
- #~ msgid "&mdash; No role for this blog &mdash;"
5306
- #~ msgstr "&mdash; このブログでの権限なし &mdash;"
5307
- #~ msgid "First name"
5308
- #~ msgstr "名"
5309
- #~ msgid "Last name"
5310
- #~ msgstr "姓"
5311
- #~ msgid "Nickname"
5312
- #~ msgstr "ニックネーム"
5313
- #~ msgid "(required)"
5314
- #~ msgstr " (必須) "
5315
- #~ msgid "Display name publicly as"
5316
- #~ msgstr "ブログ上の表示名"
5317
- #~ msgid "Contact Info"
5318
- #~ msgstr "連絡先情報"
5319
- #~ msgid "Website"
5320
- #~ msgstr "ウェブサイト"
5321
- #~ msgid "AIM"
5322
- #~ msgstr "AIM"
5323
- #~ msgid "Yahoo IM"
5324
- #~ msgstr "Yahoo IM"
5325
- #~ msgid "Jabber / Google Talk"
5326
- #~ msgstr "Jabber / Google Talk"
5327
- #~ msgid "About Yourself"
5328
- #~ msgstr "あなたについて"
5329
- #~ msgid "About the user"
5330
- #~ msgstr "ユーザーについて"
5331
- #~ msgid "Biographical Info"
5332
- #~ msgstr "プロフィール情報"
5333
- #~ msgid ""
5334
- #~ "Share a little biographical information to fill out your profile. This "
5335
- #~ "may be shown publicly."
5336
- #~ msgstr ""
5337
- #~ "プロフィールに添える簡単な自己紹介を書き入れてみましょう。この情報はテンプ"
5338
- #~ "レートを編集すればサイトに表示することができます。"
5339
- #~ msgid "New Password"
5340
- #~ msgstr "新しいパスワード"
5341
- #~ msgid ""
5342
- #~ "If you would like to change the password type a new one. Otherwise leave "
5343
- #~ "this blank."
5344
- #~ msgstr ""
5345
- #~ "パスワードを変更する場合は新しいパスワードを入力し、変更しない場合は空のま"
5346
- #~ "まにしておいてください。"
5347
- #~ msgid "Type your new password again."
5348
- #~ msgstr "もう一度新しいパスワードを入力してください。"
5349
- #~ msgid "Strength indicator"
5350
- #~ msgstr "強度インジケータ"
5351
- #~ msgid ""
5352
- #~ "Hint: The password should be at least seven characters long. To make it "
5353
- #~ "stronger, use upper and lower case letters, numbers and symbols like ! "
5354
- #~ "\" ? $ % ^ &amp; )."
5355
- #~ msgstr ""
5356
- #~ "ヒント: パスワードは 7 文字以上にしてください。より強化するために大文字と"
5357
- #~ "小文字のアルファベット、数字や ! \" ? $ % ^ &amp; ) などの記号を組み合わせ"
5358
- #~ "て使ってください。"
5359
- #~ msgid "Additional Capabilities"
5360
- #~ msgstr "追加機能"
5361
- #~ msgid "Update Profile"
5362
- #~ msgstr "プロフィールを更新"
5363
- #~ msgid "Update User"
5364
- #~ msgstr "ユーザーを更新"
5365
- #~ msgid "You can&#8217;t create users."
5366
- #~ msgstr "ユーザーを登録する権限がありません。"
5367
- #~ msgid "Add New User"
5368
- #~ msgstr "新規ユーザーの追加"
5369
- #~ msgid ""
5370
- #~ "Users can <a href=\"%1$s\">register themselves</a> or you can manually "
5371
- #~ "create users here."
5372
- #~ msgstr ""
5373
- #~ "ユーザーは<a href=\"%1$s\">自分で登録</a>することができます。もしくは、あ"
5374
- #~ "なたがこのページでユーザーを作成することもできます。"
5375
- #~ msgid ""
5376
- #~ "Users cannot currently <a href=\"%1$s\">register themselves</a>, but you "
5377
- #~ "can manually create users here."
5378
- #~ msgstr ""
5379
- #~ "現在の設定では<a href=\"%1$s\">自分でユーザー登録</a>することはできません"
5380
- #~ "が、あなたがこのページでユーザーを作成することはできます。"
5381
- #~ msgid "First Name"
5382
- #~ msgstr "名"
5383
- #~ msgid "Last Name"
5384
- #~ msgstr "姓"
5385
- #~ msgid "(twice, required)"
5386
- #~ msgstr "(2回、必須)"
5387
- #~ msgid "Send Password?"
5388
- #~ msgstr "パスワードを送信しますか ?"
5389
- #~ msgid "Send this password to the new user by email."
5390
- #~ msgstr "新規ユーザーにこのパスワードをメールで送信する。"
5391
- #~ msgid "Add User"
5392
- #~ msgstr "ユーザーを追加"
5393
- #~ msgid "You can&#8217;t edit that user."
5394
- #~ msgstr "このユーザーを編集する権限がありません。"
5395
- #~ msgid "You can&#8217;t delete users."
5396
- #~ msgstr "ユーザーを削除する権限がありません。"
5397
- #~ msgid "You can&#8217;t delete that user."
5398
- #~ msgstr "このユーザーを削除する権限がありません。"
5399
- #~ msgid "Delete Users"
5400
- #~ msgstr "ユーザーの削除"
5401
- #~ msgid "You have specified these users for deletion:"
5402
- #~ msgstr "次のユーザーを削除します:"
5403
- #~ msgid "ID #%1s: %2s <strong>The current user will not be deleted.</strong>"
5404
- #~ msgstr ""
5405
- #~ "ID #%1s: %2s <strong>今現在あなたが使用しているユーザーアカウントなので削"
5406
- #~ "除できません。</strong>"
5407
- #~ msgid "ID #%1s: %2s"
5408
- #~ msgstr "ID #%1s: %2s"
5409
- #~ msgid "What should be done with posts and links owned by this user?"
5410
- #~ msgstr "このユーザーの投稿とリンクはどのように処理しますか ?"
5411
- #~ msgid "Delete all posts and links."
5412
- #~ msgstr "すべての投稿とリンクを削除。"
5413
- #~ msgid "Attribute all posts and links to:"
5414
- #~ msgstr "すべての投稿とリンクを次のユーザーに割り当てる:"
5415
- #~ msgid "Confirm Deletion"
5416
- #~ msgstr "削除を実行"
5417
- #~ msgid "There are no valid users selected for deletion."
5418
- #~ msgstr "削除できるユーザーが選択されていません。"
5419
- #~ msgid "%s user deleted"
5420
- #~ msgid_plural "%s users deleted"
5421
- #~ msgstr[0] "%s 人のユーザーを削除しました"
5422
- #~ msgid "New user created."
5423
- #~ msgstr "新規ユーザーを作成しました。"
5424
- #~ msgid "Changed roles."
5425
- #~ msgstr "権限を変更しました。"
5426
- #~ msgid "The current user&#8217;s role must have user editing capabilities."
5427
- #~ msgstr "現行のユーザーにはユーザーを編集する権限がありません。"
5428
- #~ msgid "Other user roles have been changed."
5429
- #~ msgstr "他のユーザーの権限を変更しました。"
5430
- #~ msgid "You can&#8217;t delete the current user."
5431
- #~ msgstr "あなたは現行のユーザーを削除する権限がありません。"
5432
- #~ msgid "Other users have been deleted."
5433
- #~ msgstr "他のユーザーを削除しました。"
5434
- #~ msgctxt "users"
5435
- #~ msgid "All <span class=\"count\">(%s)</span>"
5436
- #~ msgid_plural "All <span class=\"count\">(%s)</span>"
5437
- #~ msgstr[0] "すべて <span class=\"count\">(%s)</span>"
5438
- #~ msgid "%1$s <span class=\"count\">(%2$s)</span>"
5439
- #~ msgstr "%1$s <span class=\"count\">(%2$s 名)</span>"
5440
- #~ msgid "Search Users"
5441
- #~ msgstr "ユーザーを検索"
5442
- #~ msgid "Change role to&hellip;"
5443
- #~ msgstr "権限を変更&hellip;"
5444
- #~ msgid "Change"
5445
- #~ msgstr "変更"
5446
- #~ msgid "&larr; Back to All Users"
5447
- #~ msgstr "&larr; ユーザー一覧に戻る"
5448
- #~ msgid "Widgets"
5449
- #~ msgstr "ウィジェット"
5450
- #~ msgid "Inactive Widgets"
5451
- #~ msgstr "使用停止中のウィジェット"
5452
- #~ msgid "No Sidebars Defined"
5453
- #~ msgstr "ウィジェットは使用できません"
5454
- #~ msgid ""
5455
- #~ "The theme you are currently using isn&#8217;t widget-aware, meaning that "
5456
- #~ "it has no sidebars that you are able to change. For information on making "
5457
- #~ "your theme widget-aware, please <a href=\"http://codex.wordpress.org/"
5458
- #~ "Widgetizing_Themes\">follow these instructions</a>."
5459
- #~ msgstr ""
5460
- #~ "現在使用中のテーマはウィジェットに対応していないため、このままではサイド"
5461
- #~ "バーの変更はできません。ウィジェットに対応するようにテーマを修正するには"
5462
- #~ "<a href=\"http://wpdocs.sourceforge.jp/Widgetizing_Themes\">こちらの説明を"
5463
- #~ "参照してください</a>。"
5464
- #~ msgid "Widget %s"
5465
- #~ msgstr "ウィジェット %s"
5466
- #~ msgid ""
5467
- #~ "Select both the sidebar for this widget and the position of the widget in "
5468
- #~ "that sidebar."
5469
- #~ msgstr ""
5470
- #~ "このウィジェットを使用するサイドバーと、そのサイドバー内でのウィジェットの"
5471
- #~ "位置を選択してください。"
5472
- #~ msgid "Position"
5473
- #~ msgstr "場所"
5474
- #~ msgid "-- select --"
5475
- #~ msgstr "-- 選択 --"
5476
- #~ msgid "Save Widget"
5477
- #~ msgstr "ウィジェットを保存"
5478
- #~ msgid "Changes saved."
5479
- #~ msgstr "変更を保存しました。"
5480
- #~ msgid "Error while saving."
5481
- #~ msgstr "保存中にエラー発生。"
5482
- #~ msgid "Error in displaying the widget settings form."
5483
- #~ msgstr "ウィジェット設定フォーム表示のエラー。"
5484
- #~ msgid "Available Widgets"
5485
- #~ msgstr "利用できるウィジェット"
5486
- #~ msgid ""
5487
- #~ "Drag widgets from here to a sidebar on the right to activate them. Drag "
5488
- #~ "widgets back here to deactivate them and delete their settings."
5489
- #~ msgstr ""
5490
- #~ "ここから右側のサイドバーにウィジェットをドラッグすると、使用できるようにな"
5491
- #~ "ります。ウィジェットをここにドラッグして戻すと使用を停止し、設定を削除しま"
5492
- #~ "す。"
5493
- #~ msgid ""
5494
- #~ "Drag widgets here to remove them from the sidebar but keep their settings."
5495
- #~ msgstr ""
5496
- #~ "ウィジェットをここにドラッグすると、設定を維持したままウェブサイトから取り"
5497
- #~ "除かれます。"
5498
- #~ msgid ""
5499
- #~ "AtomPub services are disabled on this blog. An admin user can enable "
5500
- #~ "them at %s"
5501
- #~ msgstr ""
5502
- #~ "AtomPub は、このブログでは無効です。管理ユーザーは %s でこれを有効にするこ"
5503
- #~ "とができます。"
5504
- #~ msgid "Sorry, you do not have the right to access this blog."
5505
- #~ msgstr "このブログにアクセスする権限がありません。"
5506
- #~ msgid "Sorry, you do not have the right to edit/publish new posts."
5507
- #~ msgstr "新規投稿の編集/公開をする権限がありません。"
5508
- #~ msgid "Sorry, your entry could not be posted. Something wrong happened."
5509
- #~ msgstr "記事を投稿できませんでした。何か問題が起こりました。"
5510
- #~ msgid "Sorry, you do not have the right to access this post."
5511
- #~ msgstr "この投稿にアクセスする権限がありません。"
5512
- #~ msgid "Sorry, you do not have the right to edit this post."
5513
- #~ msgstr "この投稿を編集する権限はありません。"
5514
- #~ msgid ""
5515
- #~ "For some strange yet very annoying reason, this post could not be edited."
5516
- #~ msgstr ""
5517
- #~ "なにか面妖でとてもうっとうしい理由のため、この投稿は編集できませんでした。"
5518
- #~ msgid "Sorry, you do not have the right to delete this post."
5519
- #~ msgstr "この投稿を削除する権限はありません。"
5520
- #~ msgid ""
5521
- #~ "For some strange yet very annoying reason, this post could not be deleted."
5522
- #~ msgstr ""
5523
- #~ "なにか面妖でとてもうっとうしい理由のため、この投稿は削除できませんでした。"
5524
- #~ msgid "Sorry, you do not have permission to upload files."
5525
- #~ msgstr "ファイルをアップロードをする権限がありません。"
5526
- #~ msgid "Error ocurred while accessing post metadata for file location."
5527
- #~ msgstr ""
5528
- #~ "ファイルの場所を参照するため投稿メタデータにアクセス中、エラーが発生しまし"
5529
- #~ "た。"
5530
- #~ msgid "Sorry, comments are closed for this item."
5531
- #~ msgstr "この投稿へのコメントは受け付けていません。"
5532
- #~ msgid "Sorry, you must be logged in to post a comment."
5533
- #~ msgstr "コメントを投稿するにはログインしてください。"
5534
- #~ msgid "Error: please fill the required fields (name, email)."
5535
- #~ msgstr "エラー: 必須項目 (お名前、メールアドレス) を入力してください。"
5536
- #~ msgid "Error: please enter a valid email address."
5537
- #~ msgstr "エラー: 有効なメールアドレスを入力してください。"
5538
- #~ msgid "Akismet Configuration"
5539
- #~ msgstr "Akismet 設定"
5540
- #~ msgid "Your key has been cleared."
5541
- #~ msgstr "キーを削除しました。"
5542
- #~ msgid "Your key has been verified. Happy blogging!"
5543
- #~ msgstr "あなたのキーは認証されました。ではブログを楽しんでください !"
5544
- #~ msgid "The key you entered is invalid. Please double-check it."
5545
- #~ msgstr "入力されたキーは無効です。 キーを再確認してください。"
5546
- #~ msgid ""
5547
- #~ "The key you entered could not be verified because a connection to akismet."
5548
- #~ "com could not be established. Please check your server configuration."
5549
- #~ msgstr ""
5550
- #~ "akismet.com との接続が確立できなかったため、入力したキーを認証できませんで"
5551
- #~ "した。サーバーの設定を確認してください。"
5552
- #~ msgid ""
5553
- #~ "There was a problem connecting to the Akismet server. Please check your "
5554
- #~ "server configuration."
5555
- #~ msgstr ""
5556
- #~ "Akismet サーバーとの接続に問題が発生しました。サーバーの設定を確認してくだ"
5557
- #~ "さい。"
5558
- #~ msgid ""
5559
- #~ "Please enter an API key. (<a href=\"%s\" style=\"color:#fff\">Get your "
5560
- #~ "key.</a>)"
5561
- #~ msgstr ""
5562
- #~ "API キーを入力してださい。 (<a href=\"%s\" style=\"color:#fff\">キーを取得"
5563
- #~ "する</a>) "
5564
- #~ msgid "This key is valid."
5565
- #~ msgstr "このキーは有効です。"
5566
- #~ msgid ""
5567
- #~ "The key below was previously validated but a connection to akismet.com "
5568
- #~ "can not be established at this time. Please check your server "
5569
- #~ "configuration."
5570
- #~ msgstr ""
5571
- #~ "以下のキーは認証済みですが、akismet.com への接続が確立できませんでした。"
5572
- #~ "サーバーの設定を確認してください。"
5573
- #~ msgid "Options saved."
5574
- #~ msgstr "設定を保存しました。"
5575
- #~ msgid ""
5576
- #~ "For many people, <a href=\"%1$s\">Akismet</a> will greatly reduce or even "
5577
- #~ "completely eliminate the comment and trackback spam you get on your site. "
5578
- #~ "If one does happen to get through, simply mark it as \"spam\" on the "
5579
- #~ "moderation screen and Akismet will learn from the mistakes. If you don't "
5580
- #~ "have a WordPress.com account yet, you can get one at <a href=\"%2$s"
5581
- #~ "\">WordPress.com</a>."
5582
- #~ msgstr ""
5583
- #~ "<a href=\"%1$s\">Akismet</a> はあなたのサイトにやってくるコメントスパムや"
5584
- #~ "トラックバックスパムを大きく減らすか完全に排除します。もしスパムが通過して"
5585
- #~ "しまった場合、コメント承認画面でそのコメントの「スパム」にマークを付ける"
5586
- #~ "と、Akismet はその間違いから学習します。WordPress.com のアカウントをまだ"
5587
- #~ "持っていなければ <a href=\"%2$s\">WordPress.com</a> で取得することができま"
5588
- #~ "す。"
5589
- #~ msgid "WordPress.com API Key"
5590
- #~ msgstr "WordPress.com API キー"
5591
- #~ msgid ""
5592
- #~ "<a href=\"http://faq.wordpress.com/2005/10/19/api-key/\">What is this?</a>"
5593
- #~ msgstr ""
5594
- #~ "<a href=\"http://wpdocs.sourceforge.jp/api-key\">API キーとは何 ? </a>"
5595
- #~ msgid "Why might my key be invalid?"
5596
- #~ msgstr "キーが認証されないのはなぜですか ?"
5597
- #~ msgid ""
5598
- #~ "This can mean one of two things, either you copied the key wrong or that "
5599
- #~ "the plugin is unable to reach the Akismet servers, which is most often "
5600
- #~ "caused by an issue with your web host around firewalls or similar."
5601
- #~ msgstr ""
5602
- #~ "理由は二つ考えられます: キーを間違ってコピーしたか、もしくはプラグインが "
5603
- #~ "Akismet サーバーに接続できないためです。後者の場合、最もよくある原因として"
5604
- #~ "ウェブホストのファイアウォールもしくはその類似機能に問題があることが考えら"
5605
- #~ "れます。"
5606
- #~ msgid "Automatically discard spam comments on posts older than a month."
5607
- #~ msgstr "ひと月以上前の投稿へのスパムコメントを自動的に削除する。"
5608
- #~ msgid "Update options &raquo;"
5609
- #~ msgstr "設定を更新 &raquo;"
5610
- #~ msgid "Akismet Stats"
5611
- #~ msgstr "Akismet 統計"
5612
- #~ msgid "Akismet is almost ready."
5613
- #~ msgstr "Akismet はもうすぐ利用できます。"
5614
- #~ msgid ""
5615
- #~ "You must <a href=\"%1$s\">enter your WordPress.com API key</a> for it to "
5616
- #~ "work."
5617
- #~ msgstr ""
5618
- #~ "作動させるには <a href=\"%1$s\">WordPress.com API キーの入力</a>が必要で"
5619
- #~ "す。"
5620
- #~ msgid "Akismet Spam (%s)"
5621
- #~ msgstr "Akismet スパム (%s) "
5622
- #~ msgid "Akismet Spam"
5623
- #~ msgstr "Akismet スパム"
5624
- #~ msgid "You do not have sufficient permission to moderate comments."
5625
- #~ msgstr "コメントをモデレートするための十分な権限がありません。"
5626
- #~ msgid "%1$s comments recovered."
5627
- #~ msgstr "%1$s件のコメントを元に戻しました。"
5628
- #~ msgid "All spam deleted."
5629
- #~ msgstr "すべてのスパムを削除しました。"
5630
- #~ msgid "Caught Spam"
5631
- #~ msgstr "捕らえたスパム"
5632
- #~ msgid ""
5633
- #~ "Akismet has caught <strong>%1$s spam</strong> for you since you first "
5634
- #~ "installed it."
5635
- #~ msgstr ""
5636
- #~ "Akismet は有効化されてから<strong>%1$s件のスパム</strong>を捕らえました。"
5637
- #~ msgid "You have no spam currently in the queue. Must be your lucky day. :)"
5638
- #~ msgstr "今のところスパムはありません。きっと運のいい日だったのでしょう。 :)"
5639
- #~ msgid ""
5640
- #~ "You can delete all of the spam from your database with a single click. "
5641
- #~ "This operation cannot be undone, so you may wish to check to ensure that "
5642
- #~ "no legitimate comments got through first. Spam is automatically deleted "
5643
- #~ "after 15 days, so don&#8217;t sweat it."
5644
- #~ msgstr ""
5645
- #~ "「すべてを削除」のボタンを押すとすべてのスパムを削除することができます。こ"
5646
- #~ "の操作は取り消すことができないので、削除する前に本物のコメントが誤ってスパ"
5647
- #~ "ムと判定されていないか確かめた方がいいでしょう。スパムは 15日後に自動的に"
5648
- #~ "削除されるので、あまり悩む必要はありません。"
5649
- #~ msgid "There are currently %1$s comments identified as spam."
5650
- #~ msgstr "今のところスパムと判定されたコメントが%1$s件あります。"
5651
- #~ msgid "Delete all"
5652
- #~ msgstr "すべてを削除"
5653
- #~ msgid ""
5654
- #~ "These are the latest comments identified as spam by Akismet. If you see "
5655
- #~ "any mistakes, simply mark the comment as \"not spam\" and Akismet will "
5656
- #~ "learn from the submission. If you wish to recover a comment from spam, "
5657
- #~ "simply select the comment, and click Not Spam. After 15 days we clean out "
5658
- #~ "the junk for you."
5659
- #~ msgstr ""
5660
- #~ "これらは Akismet によってスパムと判定された最新のコメントです。もし間違い"
5661
- #~ "を見つけたらそのコメントの「スパムを解除」にマークを入れてください。"
5662
- #~ "Akismet はあなたの判定から学習していきます。スパムと判定されたコメントを元"
5663
- #~ "に戻すには、そのコメントを選択して一番下の「選択したコメントのスパムを解"
5664
- #~ "除 &raquo;」をクリックしてください。 スパムは 15日後に自動的に削除されま"
5665
- #~ "す。"
5666
- #~ msgid "Search Spam &raquo;"
5667
- #~ msgstr "スパムを検索 &raquo;"
5668
- #~ msgid "&laquo; Previous Page"
5669
- #~ msgstr "&laquo; 前ページへ"
5670
- #~ msgid "Next Page &raquo;"
5671
- #~ msgstr "次ページへ &raquo;"
5672
- #~ msgid "IP:"
5673
- #~ msgstr "IP:"
5674
- #~ msgid "Not Spam"
5675
- #~ msgstr "スパムを解除"
5676
- #~ msgid "De-spam marked comments &raquo;"
5677
- #~ msgstr "選択したコメントのスパムを解除 &raquo;"
5678
- #~ msgid ""
5679
- #~ "Comments you de-spam will be submitted to Akismet as mistakes so it can "
5680
- #~ "learn and get better."
5681
- #~ msgstr ""
5682
- #~ "スパムを解除されたコメントは Akismet へ送信されます。Akismet はその「間違"
5683
- #~ "い」を学習することによってさらに賢くなります"
5684
- #~ msgid ""
5685
- #~ "<a href=\"%1$s\">Akismet</a> has protected your site from <a href=\"%2$s"
5686
- #~ "\">%3$s spam comments</a>."
5687
- #~ msgstr ""
5688
- #~ "<a href=\"%1$s\">Akismet</a> は<a href=\"%2$s\">%3$s件のコメントスパム</a>"
5689
- #~ "からあなたのサイトを保護しました。"
5690
- #~ msgid ""
5691
- #~ "<a href=\"%1$s\">Akismet</a> has protected your site from %2$s spam "
5692
- #~ "comment already,"
5693
- #~ msgid_plural ""
5694
- #~ "<a href=\"%1$s\">Akismet</a> has protected your site from %2$s spam "
5695
- #~ "comments already,"
5696
- #~ msgstr[0] ""
5697
- #~ "<a href=\"%1$s\">Akismet</a> は%2$s件のコメントスパムからあなたのサイトを"
5698
- #~ "保護しました。"
5699
- #~ msgid "<a href=\"%1$s\">Akismet</a> blocks spam from getting to your blog,"
5700
- #~ msgstr ""
5701
- #~ "<a href=\"%1$s\">Akismet</a> があなたのブログをスパムから保護しています。"
5702
- #~ msgid ""
5703
- #~ "and there's <a href=\"%2$s\">%1$s comment</a> in your spam queue right "
5704
- #~ "now."
5705
- #~ msgid_plural ""
5706
- #~ "and there are <a href=\"%2$s\">%1$s comments</a> in your spam queue right "
5707
- #~ "now."
5708
- #~ msgstr[0] ""
5709
- #~ "ただ今<a href=\"%2$s\">%1$s個のコメント</a>をスパムとして捕らえています。"
5710
- #~ msgid ""
5711
- #~ "but there's nothing in your <a href='%1$s'>spam queue</a> at the moment."
5712
- #~ msgstr "でも今のところ <a href='%1$s'>スパム</a> はありません。"
5713
- #~ msgid "%1$s %2$s|akismet_rightnow"
5714
- #~ msgstr "%1$s%2$s|akismet_rightnow"
5715
- #~ msgid "Recheck Queue for Spam"
5716
- #~ msgstr "承認待ちをスパムチェック"
5717
- #~ msgid "Check for Spam"
5718
- #~ msgstr "スパムチェック"
5719
- #~ msgid "%1$s %2$sspam comments%3$s %4$sblocked by%5$s<br />%6$sAkismet%7$s"
5720
- #~ msgstr "%1$s %2$sスパムコメント%3$s %4$sblocked by%5$s<br />%6$sAkismet%7$s"
5721
- #~ msgid "spam comments"
5722
- #~ msgstr "コメントスパム"
5723
- #~ msgid "blocked by"
5724
- #~ msgstr "blocked by"
5725
- #~ msgid "Comments on %s"
5726
- #~ msgstr "%s へのコメント"
5727
- #~ msgid ""
5728
- #~ "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on "
5729
- #~ "this post."
5730
- #~ msgstr ""
5731
- #~ "このコメント欄の <abbr title=\"Really Simple Syndication\">RSS</abbr> "
5732
- #~ "フィード"
5733
- #~ msgid ""
5734
- #~ "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack "
5735
- #~ "this entry is:"
5736
- #~ msgstr ""
5737
- #~ "この投稿へのトラックバック <abbr title=\"Universal Resource Locator"
5738
- #~ "\">URL</abbr>:"
5739
- #~ msgid "by"
5740
- #~ msgstr "by"
5741
- #~ msgid "Leave a comment"
5742
- #~ msgstr "コメントをどうぞ"
5743
- #~ msgid ""
5744
- #~ "Line and paragraph breaks automatic, e-mail address never displayed, "
5745
- #~ "<acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed:"
5746
- #~ msgstr ""
5747
- #~ "改行と段落タグは自動で挿入されます。メールアドレスは表示されません。利用可"
5748
- #~ "能な <acronym title=\"Hypertext Markup Language\">HTML</acronym> タグ:"
5749
- #~ msgid "Logged in as %s."
5750
- #~ msgstr "%s としてログイン中。"
5751
- #~ msgid "Log out of this account"
5752
- #~ msgstr "このアカウントからログアウト"
5753
- #~ msgid "Log out &raquo;"
5754
- #~ msgstr "ログアウト &raquo;"
5755
- #~ msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
5756
- #~ msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>"
5757
- #~ msgid "Your Comment"
5758
- #~ msgstr "コメント"
5759
- #~ msgid "Say It!"
5760
- #~ msgstr "送信する !"
5761
- #~ msgid "Sorry, the comment form is closed at this time."
5762
- #~ msgstr "コメントフォームは現在閉鎖中です。"
5763
- #~ msgid "Close this window."
5764
- #~ msgstr "このウインドウを閉じる。"
5765
- #~ msgid ""
5766
- #~ "<cite>Powered by <a href=\"http://wordpress.org\" title=\"%s"
5767
- #~ "\"><strong>WordPress</strong></a></cite>"
5768
- #~ msgstr ""
5769
- #~ "<cite>Powered by <a href=\"http://wordpress.org\" title=\"%s"
5770
- #~ "\"><strong>WordPress</strong></a></cite>"
5771
- #~ msgid ""
5772
- #~ "Powered by WordPress, state-of-the-art semantic personal publishing "
5773
- #~ "platform."
5774
- #~ msgstr ""
5775
- #~ "Powered by WordPress, state-of-the-art semantic personal publishing "
5776
- #~ "platform."
5777
- #~ msgid "Enter your password to view comments."
5778
- #~ msgstr "コメントを読むにはパスワードを入力してください。"
5779
- #~ msgid "No Comments"
5780
- #~ msgstr "コメントはまだありません"
5781
- #~ msgid "1 Comment"
5782
- #~ msgstr "1件のコメント"
5783
- #~ msgid "% Comments"
5784
- #~ msgstr "%件のコメント"
5785
- #~ msgid "Edit This"
5786
- #~ msgstr "編集"
5787
- #~ msgid "TrackBack <abbr title=\"Universal Resource Locator\">URL</abbr>"
5788
- #~ msgstr ""
5789
- #~ "トラックバック <abbr title=\"Universal Resource Locator\">URL</abbr>"
5790
- #~ msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
5791
- #~ msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。"
5792
- #~ msgid "Mail (will not be published)"
5793
- #~ msgstr "メール (公開されません)"
5794
- #~ msgid "You can use these tags: %s"
5795
- #~ msgstr "次のタグを使用できます: %s"
5796
- #~ msgid "Submit Comment"
5797
- #~ msgstr "コメント送信"
5798
- #~ msgid ""
5799
- #~ "Powered by <a href='http://wordpress.org/' title='%s'><strong>WordPress</"
5800
- #~ "strong></a>"
5801
- #~ msgstr ""
5802
- #~ "Powered by <a href='http://wordpress.org' title='%s'><strong>WordPress</"
5803
- #~ "strong></a>"
5804
- #~ msgid "Filed under:"
5805
- #~ msgstr "カテゴリー:"
5806
- #~ msgid "Tags: "
5807
- #~ msgstr "タグ: "
5808
- #~ msgid "(more...)"
5809
- #~ msgstr "(続きを読む...)"
5810
- #~ msgid "Comments (0)"
5811
- #~ msgstr "コメント (0) "
5812
- #~ msgid "Comments (1)"
5813
- #~ msgstr "コメント (1) "
5814
- #~ msgid "Comments (%)"
5815
- #~ msgstr "コメント (%) "
5816
- #~ msgid "Sorry, no posts matched your criteria."
5817
- #~ msgstr "該当する投稿は見つかりませんでした。"
5818
- #~ msgid "&laquo; Newer Posts"
5819
- #~ msgstr "&laquo; 新しい投稿"
5820
- #~ msgid "Older Posts &raquo;"
5821
- #~ msgstr "古い投稿 &raquo;"
5822
- #~ msgid "Pages:"
5823
- #~ msgstr "ページ:"
5824
- #~ msgid "Categories:"
5825
- #~ msgstr "カテゴリー:"
5826
- #~ msgid "Search:"
5827
- #~ msgstr "検索:"
5828
- #~ msgid "Archives:"
5829
- #~ msgstr "アーカイブ:"
5830
- #~ msgid "Meta:"
5831
- #~ msgstr "メタ情報:"
5832
- #~ msgid "Syndicate this site using RSS"
5833
- #~ msgstr "このサイトを RSS で購読"
5834
- #~ msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr>"
5835
- #~ msgstr "<abbr title=\"Really Simple Syndication\">RSS</abbr>"
5836
- #~ msgid "The latest comments to all posts in RSS"
5837
- #~ msgstr "すべての投稿への最新コメントを RSS で購読"
5838
- #~ msgid "Comments <abbr title=\"Really Simple Syndication\">RSS</abbr>"
5839
- #~ msgstr "コメントの <abbr title=\"Really Simple Syndication\">RSS</abbr>"
5840
- #~ msgid "This page validates as XHTML 1.0 Transitional"
5841
- #~ msgstr "このページが XHTML 1.0 Transitional に準拠しているか確認する"
5842
- #~ msgid ""
5843
- #~ "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
5844
- #~ msgstr ""
5845
- #~ "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
5846
- #~ msgid "Close Color Picker"
5847
- #~ msgstr "カラーピッカーを閉じる"
5848
- #~ msgid "Customize Header"
5849
- #~ msgstr "ヘッダーのカスタマイズ"
5850
- #~ msgid "Font Color:"
5851
- #~ msgstr "フォントの色:"
5852
- #~ msgid "Any CSS color (%s or %s or %s)"
5853
- #~ msgstr "CSS 色指定 (%s 、%s もしくは %s)"
5854
- #~ msgid "Upper Color:"
5855
- #~ msgstr "グラデーション上側の色:"
5856
- #~ msgid "HEX only (%s or %s)"
5857
- #~ msgstr "16 進数のみ (%s もしくは %s)"
5858
- #~ msgid "Lower Color:"
5859
- #~ msgstr "グラデーション下側の色:"
5860
- #~ msgid "Toggle Text"
5861
- #~ msgstr "テキスト表示の切替え"
5862
- #~ msgid "Use Defaults"
5863
- #~ msgstr "デフォルト設定に戻す"
5864
- #~ msgid "Font Color"
5865
- #~ msgstr "フォントの色"
5866
- #~ msgid "Upper Color"
5867
- #~ msgstr "グラデーション上側の色"
5868
- #~ msgid "Lower Color"
5869
- #~ msgstr "グラデーション下側の色"
5870
- #~ msgid "Revert"
5871
- #~ msgstr "取り消し"
5872
- #~ msgid "Update Header"
5873
- #~ msgstr "ヘッダーを更新"
5874
- #~ msgid "Font Color (CSS):"
5875
- #~ msgstr "フォントの色 (CSS):"
5876
- #~ msgid "Upper Color (HEX):"
5877
- #~ msgstr "グラデーション上側の色 (16 進数):"
5878
- #~ msgid "Lower Color (HEX):"
5879
- #~ msgstr "グラデーション下側の色 (16 進数):"
5880
- #~ msgid "Select Default Colors"
5881
- #~ msgstr "デフォルト設定に戻す"
5882
- #~ msgid "Toggle Text Display"
5883
- #~ msgstr "テキスト表示の切替え"
5884
- #~ msgid "XML error: %s at line %d"
5885
- #~ msgstr "XML エラー: %s - %d 行目"
5886
- #~ msgid "Visit %s&#8217;s website"
5887
- #~ msgstr "%s のウェブサイトを開く"
5888
- #~ msgid "Posts by %s"
5889
- #~ msgstr "%s による投稿"
5890
- #~ msgid "Last updated: %s"
5891
- #~ msgstr "最終更新日: %s"
5892
- #~ msgid "Bookmarks"
5893
- #~ msgstr "ブックマーク"
5894
- #~ msgid "View all posts in %s"
5895
- #~ msgstr "%s の投稿をすべて表示"
5896
- #~ msgid "No categories"
5897
- #~ msgstr "カテゴリーなし"
5898
- #~ msgid "%s topic"
5899
- #~ msgid_plural "%s topics"
5900
- #~ msgstr[0] "%s件のトピック"
5901
- #~ msgid "No server specified"
5902
- #~ msgstr "サーバーが設定されていません"
5903
- #~ msgid "Error "
5904
- #~ msgstr "エラー "
5905
- #~ msgid "no login ID submitted"
5906
- #~ msgstr "ログイン ID が入力されていません"
5907
- #~ msgid "connection not established"
5908
- #~ msgstr "接続できません"
5909
- #~ msgid "No password submitted"
5910
- #~ msgstr "パスワードが入力されていません"
5911
- #~ msgid "Authentication failed"
5912
- #~ msgstr "認証失敗"
5913
- #~ msgid "No connection to server"
5914
- #~ msgstr "サーバーに接続されていません"
5915
- #~ msgid "No login ID submitted"
5916
- #~ msgstr "ログイン ID が入力されていません"
5917
- #~ msgid "No server banner"
5918
- #~ msgstr "サーバーバナーなし"
5919
- #~ msgid "abort"
5920
- #~ msgstr "中止"
5921
- #~ msgid "apop authentication failed"
5922
- #~ msgstr "APOP 認証失敗"
5923
- #~ msgid "Premature end of list"
5924
- #~ msgstr "リストの途中終了"
5925
- #~ msgid "Empty command string"
5926
- #~ msgstr "コマンド文字列は空です"
5927
- #~ msgid "connection does not exist"
5928
- #~ msgstr "接続は存在しません"
5929
- #~ msgid "No msg number submitted"
5930
- #~ msgstr "No msg number submitted"
5931
- #~ msgid "Command failed "
5932
- #~ msgstr "コマンドは失敗しました"
5933
- #~ msgid "View all posts filed under %s"
5934
- #~ msgstr "%s に含まれる投稿をすべて表示"
5935
- #~ msgid "Feed for all posts filed under %s"
5936
- #~ msgstr "%s に含まれるすべての投稿のフィード"
5937
- #~ msgid "Comments Off"
5938
- #~ msgstr "コメントは受け付けていません。"
5939
- #~ msgid "Enter your password to view comments"
5940
- #~ msgstr "コメントを読むにはパスワードを入力してください"
5941
- #~ msgid "Comment on %s"
5942
- #~ msgstr "%s へのコメント"
5943
- #~ msgid "Log in to Reply"
5944
- #~ msgstr "ログインして返信する"
5945
- #~ msgid "Leave a Comment"
5946
- #~ msgstr "コメントする"
5947
- #~ msgid "Log in to leave a Comment"
5948
- #~ msgstr "ログインしてコメントする"
5949
- #~ msgid "Leave a Reply"
5950
- #~ msgstr "コメントをどうぞ"
5951
- #~ msgid "Leave a Reply to %s"
5952
- #~ msgstr "%s への返信"
5953
- #~ msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
5954
- #~ msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">より:</span>"
5955
- #~ msgid "Your comment is awaiting moderation."
5956
- #~ msgstr "あなたのコメントは管理者の承認待ちです。"
5957
- #~ msgid "%1$s at %2$s"
5958
- #~ msgstr "%1$s %2$s"
5959
- #~ msgid "(Edit)"
5960
- #~ msgstr "(編集)"
5961
- #~ msgid "Unapproved"
5962
- #~ msgstr "非承認"
5963
- #~ msgid ""
5964
- #~ "Duplicate comment detected; it looks as though you&#8217;ve already said "
5965
- #~ "that!"
5966
- #~ msgstr ""
5967
- #~ "重複しているコメントが見つかりました。同じコメントをすでに投稿しているよう"
5968
- #~ "です。"
5969
- #~ msgid "You are posting comments too quickly. Slow down."
5970
- #~ msgstr "コメントの投稿が早すぎます。ゆっくりどうぞ。"
5971
- #~ msgid "Could not update comment status"
5972
- #~ msgstr "コメントステータスを更新できませんでした"
5973
- #~ msgid "Once Hourly"
5974
- #~ msgstr "1時間ごと"
5975
- #~ msgid "Twice Daily"
5976
- #~ msgstr "毎日2回"
5977
- #~ msgid "Once Daily"
5978
- #~ msgstr "毎日1回"
5979
- #~ msgid "Your blog&#8217;s WordPress Pages"
5980
- #~ msgstr "固定ページのリスト"
5981
- #~ msgid "Sort by:"
5982
- #~ msgstr "並び順:"
5983
- #~ msgid "Page title"
5984
- #~ msgstr "ページタイトル"
5985
- #~ msgid "Page order"
5986
- #~ msgstr "ページ順序"
5987
- #~ msgid "Page ID"
5988
- #~ msgstr "ページ ID"
5989
- #~ msgid "Exclude:"
5990
- #~ msgstr "除外ページ:"
5991
- #~ msgid "Page IDs, separated by commas."
5992
- #~ msgstr "ページ ID を入力。複数の場合はコンマで区切る。"
5993
- #~ msgid "Your blogroll"
5994
- #~ msgstr "リンクを表示"
5995
- #~ msgid "All Links"
5996
- #~ msgstr "すべてのリンク"
5997
- #~ msgid "Select Link Category"
5998
- #~ msgstr "リンクカテゴリーの選択"
5999
- #~ msgid "Show Link Image"
6000
- #~ msgstr "リンクの画像を表示"
6001
- #~ msgid "Show Link Name"
6002
- #~ msgstr "リンク名を表示"
6003
- #~ msgid "Show Link Description"
6004
- #~ msgstr "リンクの概要の表示"
6005
- #~ msgid "Show Link Rating"
6006
- #~ msgstr "リンクの評価を表示"
6007
- #~ msgid "A search form for your blog"
6008
- #~ msgstr "ブログの検索フォーム"
6009
- #~ msgid "A monthly archive of your blog&#8217;s posts"
6010
- #~ msgstr "ブログ投稿の月別アーカイブ"
6011
- #~ msgid "Select Month"
6012
- #~ msgstr "月を選択"
6013
- #~ msgid "Show post counts"
6014
- #~ msgstr "投稿数を表示"
6015
- #~ msgid "Display as a drop down"
6016
- #~ msgstr "ドロップダウンで表示"
6017
- #~ msgid "Log in/out, admin, feed and WordPress links"
6018
- #~ msgstr "ログイン/ログアウト、管理、フィードと WordPress のリンク"
6019
- #~ msgid "Meta"
6020
- #~ msgstr "メタ情報"
6021
- #~ msgid "Syndicate this site using RSS 2.0"
6022
- #~ msgstr "このサイトを RSS2.0 で購読"
6023
- #~ msgid "Entries <abbr title=\"Really Simple Syndication\">RSS</abbr>"
6024
- #~ msgstr "投稿の <abbr title=\"Really Simple Syndication\">RSS</abbr>"
6025
- #~ msgid "A calendar of your blog&#8217;s posts"
6026
- #~ msgstr "ブログ投稿のカレンダー"
6027
- #~ msgid "Calendar"
6028
- #~ msgstr "カレンダー"
6029
- #~ msgid "Arbitrary text or HTML"
6030
- #~ msgstr "任意のテキストと HTML"
6031
- #~ msgid "Text"
6032
- #~ msgstr "テキスト"
6033
- #~ msgid "Automatically add paragraphs."
6034
- #~ msgstr "パラグラフを自動的に追加する。"
6035
- #~ msgid "A list or dropdown of categories"
6036
- #~ msgstr "カテゴリーのリストまたはドロップダウン表示"
6037
- #~ msgid "Select Category"
6038
- #~ msgstr "カテゴリーを選択"
6039
- #~ msgid "Show as dropdown"
6040
- #~ msgstr "ドロップダウンで表示"
6041
- #~ msgid "Show hierarchy"
6042
- #~ msgstr "階層を表示"
6043
- #~ msgid "The most recent posts on your blog"
6044
- #~ msgstr "ブログの最新の投稿"
6045
- #~ msgid "Recent Posts"
6046
- #~ msgstr "最近の投稿"
6047
- #~ msgid "Number of posts to show:"
6048
- #~ msgstr "表示する投稿数:"
6049
- #~ msgid "(at most 15)"
6050
- #~ msgstr "(最大 15)"
6051
- #~ msgid "The most recent comments"
6052
- #~ msgstr "最近のコメント"
6053
- #~ msgctxt "widgets"
6054
- #~ msgid "%1$s on %2$s"
6055
- #~ msgstr "%2$s に %1$s より"
6056
- #~ msgid "Number of comments to show:"
6057
- #~ msgstr "表示するコメント数:"
6058
- #~ msgid "Entries from any RSS or Atom feed"
6059
- #~ msgstr "RSS/Atom フィードから投稿を表示"
6060
- #~ msgid "Syndicate this content"
6061
- #~ msgstr "このサイトを RSS で購読"
6062
- #~ msgid "An error has occurred; the feed is probably down. Try again later."
6063
- #~ msgstr ""
6064
- #~ "エラーが発生しました。ご指定のフィードは現在利用できないようです。後ほど再"
6065
- #~ "度お試しください。"
6066
- #~ msgid "Untitled"
6067
- #~ msgstr "名称未設定"
6068
- #~ msgid "RSS Error: %s"
6069
- #~ msgstr "RSS エラー: %s"
6070
- #~ msgid "Enter the RSS feed URL here:"
6071
- #~ msgstr "RSS フィードの URL:"
6072
- #~ msgid "Give the feed a title (optional):"
6073
- #~ msgstr "このフィードにタイトルをつける (オプション):"
6074
- #~ msgid "How many items would you like to display?"
6075
- #~ msgstr "フィード内の項目をいくつ表示しますか ?"
6076
- #~ msgid "Display item content?"
6077
- #~ msgstr "項目の内容を表示しますか ?"
6078
- #~ msgid "Display item author if available?"
6079
- #~ msgstr "もしあれば項目の作成者を表示しますか ?"
6080
- #~ msgid "Display item date?"
6081
- #~ msgstr "項目の日付を表示しますか ?"
6082
- #~ msgid "Your most used tags in cloud format"
6083
- #~ msgstr "最もよく使われるタグをタグクラウド形式で表示"
6084
- #~ msgid "Tag Cloud"
6085
- #~ msgstr "タグクラウド"
6086
- #~ msgid "new WordPress Loop"
6087
- #~ msgstr "新しい WordPress ループ"
6088
- #~ msgid "Last updated"
6089
- #~ msgstr "最終更新日時"
6090
- #~ msgid "Comments on: %s"
6091
- #~ msgstr "%s へのコメント"
6092
- #~ msgid "Comments for %1$s searching on %2$s"
6093
- #~ msgstr "%1$s へのコメント: %2$s 上の検索"
6094
- #~ msgid "Comments for %s"
6095
- #~ msgstr "%s へのコメント"
6096
- #~ msgid "Comment on %1$s by %2$s"
6097
- #~ msgstr "%2$s より %1$s へのコメント"
6098
- #~ msgid "By: %s"
6099
- #~ msgstr "%s より"
6100
- #~ msgid "Comments for %s searching on %s"
6101
- #~ msgstr "%s へのコメント: %s 上の検索"
6102
- #~ msgid "Protected Comments: Please enter your password to view comments."
6103
- #~ msgstr "コメント保護中: 表示するにはパスワードを入力してください。"
6104
- #~ msgctxt "opening curly quote"
6105
- #~ msgid "&#8220;"
6106
- #~ msgstr "&#8220;"
6107
- #~ msgctxt "closing curly quote"
6108
- #~ msgid "&#8221;"
6109
- #~ msgstr "&#8221;"
6110
- #~ msgid "%s min"
6111
- #~ msgid_plural "%s mins"
6112
- #~ msgstr[0] "%s分"
6113
- #~ msgid "%s hour"
6114
- #~ msgid_plural "%s hours"
6115
- #~ msgstr[0] "%s時間"
6116
- #~ msgid "%s day"
6117
- #~ msgid_plural "%s days"
6118
- #~ msgstr[0] "%s日"
6119
- #~ msgid ", "
6120
- #~ msgstr ", "
6121
- #~ msgid ", and "
6122
- #~ msgstr "、そして "
6123
- #~ msgid " and "
6124
- #~ msgstr " と "
6125
- #~ msgid "%s is a protected WP option and may not be modified"
6126
- #~ msgstr "%s は保護されている WP 設定なので変更できません"
6127
- #~ msgid "ERROR: %s is not a valid feed template"
6128
- #~ msgstr "エラー: %s は正しいフィードテンプレートではありません"
6129
- #~ msgid ""
6130
- #~ "Unable to create directory %s. Is its parent directory writable by the "
6131
- #~ "server?"
6132
- #~ msgstr ""
6133
- #~ "ディレクトリ %s を作成できませんでした。この親ディレクトリのアクセス権は"
6134
- #~ "サーバーによる書き込みを許可していますか ?"
6135
- #~ msgid "Empty filename"
6136
- #~ msgstr "ファイル名が空です"
6137
- #~ msgid "Could not write file %s"
6138
- #~ msgstr "ファイル %s に書き込めません"
6139
- #~ msgid "Your attempt to edit this attachment: &#8220;%s&#8221; has failed."
6140
- #~ msgstr "この添付ファイル: &#8220;%s&#8221; を編集できませんでした。"
6141
- #~ msgid "Your attempt to add this category has failed."
6142
- #~ msgstr "このカテゴリーを追加できませんでした。"
6143
- #~ msgid "Your attempt to delete this category: &#8220;%s&#8221; has failed."
6144
- #~ msgstr "このカテゴリー: &#8220;%s&#8221; を削除できませんでした。"
6145
- #~ msgid "Your attempt to edit this category: &#8220;%s&#8221; has failed."
6146
- #~ msgstr "このカテゴリー: &#8220;%s&#8221; を編集できませんでした。"
6147
- #~ msgid "Your attempt to delete this comment: &#8220;%s&#8221; has failed."
6148
- #~ msgstr "このコメント: &#8220;%s&#8221; を削除できませんでした。"
6149
- #~ msgid "Your attempt to unapprove this comment: &#8220;%s&#8221; has failed."
6150
- #~ msgstr "このコメント: &#8220;%s&#8221; を非承認にできませんでした。"
6151
- #~ msgid "Your attempt to approve this comment: &#8220;%s&#8221; has failed."
6152
- #~ msgstr "このコメント: &#8220;%s&#8221; を承認できませんでした。"
6153
- #~ msgid "Your attempt to edit this comment: &#8220;%s&#8221; has failed."
6154
- #~ msgstr "このコメント: &#8220;%s&#8221; を編集できませんでした。"
6155
- #~ msgid "Your attempt to bulk modify comments has failed."
6156
- #~ msgstr "コメントを一括修正できませんでした。"
6157
- #~ msgid "Your attempt to moderate comments has failed."
6158
- #~ msgstr "コメントを承認できませんでした。"
6159
- #~ msgid "Your attempt to add this link has failed."
6160
- #~ msgstr "このリンクを追加できませんでした。"
6161
- #~ msgid "Your attempt to delete this link: &#8220;%s&#8221; has failed."
6162
- #~ msgstr "このリンク: &#8220;%s&#8221; を削除できませんでした。"
6163
- #~ msgid "Your attempt to edit this link: &#8220;%s&#8221; has failed."
6164
- #~ msgstr "このリンク: &#8220;%s&#8221; を編集できませんでした。"
6165
- #~ msgid "Your attempt to bulk modify links has failed."
6166
- #~ msgstr "リンクを一括修正できませんでした。"
6167
- #~ msgid "Your attempt to add this page has failed."
6168
- #~ msgstr "このページを追加できませんでした。"
6169
- #~ msgid "Your attempt to delete this page: &#8220;%s&#8221; has failed."
6170
- #~ msgstr "このページ: &#8220;%s&#8221; を削除できませんでした。"
6171
- #~ msgid "Your attempt to edit this page: &#8220;%s&#8221; has failed."
6172
- #~ msgstr "このページ: &#8220;%s&#8221; を編集できませんでした。"
6173
- #~ msgid "Your attempt to edit this plugin file: &#8220;%s&#8221; has failed."
6174
- #~ msgstr "このプラグインファイル: &#8220;%s&#8221; を編集できませんでした。"
6175
- #~ msgid "Your attempt to activate this plugin: &#8220;%s&#8221; has failed."
6176
- #~ msgstr "このプラグイン: &#8220;%s&#8221; を有効化できませんでした。"
6177
- #~ msgid "Your attempt to deactivate this plugin: &#8220;%s&#8221; has failed."
6178
- #~ msgstr "このプラグイン: &#8220;%s&#8221; を停止できませんでした。"
6179
- #~ msgid "Your attempt to upgrade this plugin: &#8220;%s&#8221; has failed."
6180
- #~ msgstr "このプラグイン: &#8220;%s&#8221; をアップグレードできませんでした。"
6181
- #~ msgid "Your attempt to add this post has failed."
6182
- #~ msgstr "この投稿を追加できませんでした。"
6183
- #~ msgid "Your attempt to delete this post: &#8220;%s&#8221; has failed."
6184
- #~ msgstr "この投稿: &#8220;%s&#8221; を削除できませんでした。"
6185
- #~ msgid "Your attempt to edit this post: &#8220;%s&#8221; has failed."
6186
- #~ msgstr "この投稿: &#8220;%s&#8221; を編集できませんでした。"
6187
- #~ msgid "Your attempt to add this user has failed."
6188
- #~ msgstr "このユーザーを追加できませんでした。"
6189
- #~ msgid "Your attempt to delete users has failed."
6190
- #~ msgstr "ユーザーを削除できませんでした。"
6191
- #~ msgid "Your attempt to bulk modify users has failed."
6192
- #~ msgstr "ユーザーを一括修正できませんでした。"
6193
- #~ msgid "Your attempt to edit this user: &#8220;%s&#8221; has failed."
6194
- #~ msgstr "このユーザー: &#8220;%s&#8221; を編集できませんでした。"
6195
- #~ msgid "Your attempt to modify the profile for: &#8220;%s&#8221; has failed."
6196
- #~ msgstr "ユーザー: &#8220;%s&#8221; のプロフィールを修正できませんでした。"
6197
- #~ msgid "Your attempt to edit your settings has failed."
6198
- #~ msgstr "自身の設定を編集できませんでした。"
6199
- #~ msgid "Your attempt to change your permalink structure to: %s has failed."
6200
- #~ msgstr "パーマリンク構造を %s に変更できませんでした。"
6201
- #~ msgid "Your attempt to edit this file: &#8220;%s&#8221; has failed."
6202
- #~ msgstr "このファイル: &#8220;%s&#8221; を編集できませんでした。"
6203
- #~ msgid "Your attempt to edit this theme file: &#8220;%s&#8221; has failed."
6204
- #~ msgstr "このテーマファイル: &#8220;%s&#8221; を編集できませんでした。"
6205
- #~ msgid "Your attempt to switch to this theme: &#8220;%s&#8221; has failed."
6206
- #~ msgstr "テーマを &#8220;%s&#8221; に変更できませんでした。"
6207
- #~ msgid "You are attempting to log out of %s"
6208
- #~ msgstr "%s からログアウトしようとしています"
6209
- #~ msgid "Are you sure you want to do this?"
6210
- #~ msgstr "本当に実行していいですか ?"
6211
- #~ msgid "WordPress Failure Notice"
6212
- #~ msgstr "WordPress エラー通知"
6213
- #~ msgid "Please try again."
6214
- #~ msgstr "もう一度お試しください。"
6215
- #~ msgid "Do you really want to <a href='%s'>log out</a>?"
6216
- #~ msgstr "本当に<a href='%s'>ログアウト</a>しますか ?"
6217
- #~ msgid "&laquo; Back"
6218
- #~ msgstr "&laquo; 戻る"
6219
- #~ msgid "WordPress &rsaquo; Error"
6220
- #~ msgstr "WordPress &rsaquo; エラー"
6221
- #~ msgid ""
6222
- #~ "%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead."
6223
- #~ msgstr ""
6224
- #~ "%1$s の使用はバージョン %2$s から<strong>非推奨</strong>になっています! 代"
6225
- #~ "わりに %3$s を使ってください。"
6226
- #~ msgid ""
6227
- #~ "%1$s is <strong>deprecated</strong> since version %2$s with no "
6228
- #~ "alternative available."
6229
- #~ msgstr ""
6230
- #~ "%1$s の使用はバージョン %2$s から<strong>非推奨</strong>になりました。代替"
6231
- #~ "は用意されておりません。"
6232
- #~ msgid "Select a city"
6233
- #~ msgstr "街を選択してください"
6234
- #~ msgid "Search for:"
6235
- #~ msgstr "検索:"
6236
- #~ msgid "Log in"
6237
- #~ msgstr "ログイン"
6238
- #~ msgid "Log out"
6239
- #~ msgstr "ログアウト"
6240
- #~ msgid "Register"
6241
- #~ msgstr "登録"
6242
- #~ msgid "Site Admin"
6243
- #~ msgstr "サイト管理"
6244
- #~ msgid "Search Results %1$s %2$s"
6245
- #~ msgstr "検索結果: %1$s %2$s"
6246
- #~ msgid "Page not found"
6247
- #~ msgstr "ページが見つかりませんでした"
6248
- #~ msgid "%1$s %2$d"
6249
- #~ msgstr "%2$d年%1$s"
6250
- #~ msgctxt "calendar caption"
6251
- #~ msgid "%1$s %2$s"
6252
- #~ msgstr "%2$s年%1$s"
6253
- #~ msgid "View posts for %1$s %2$s"
6254
- #~ msgstr "%2$s年%1$sの投稿を表示"
6255
- #~ msgctxt "feed link"
6256
- #~ msgid "&raquo;"
6257
- #~ msgstr "&raquo;"
6258
- #~ msgid "%1$s %2$s Feed"
6259
- #~ msgstr "%1$s %2$s フィード"
6260
- #~ msgid "%1$s %2$s Comments Feed"
6261
- #~ msgstr "%1$s %2$s コメントフィード"
6262
- #~ msgid "%1$s %2$s %3$s Comments Feed"
6263
- #~ msgstr "%1$s %2$s %3$s のコメントのフィード"
6264
- #~ msgid "%1$s %2$s %3$s Category Feed"
6265
- #~ msgstr "%1$s %2$s %3$s カテゴリーのフィード"
6266
- #~ msgid "%1$s %2$s %3$s Tag Feed"
6267
- #~ msgstr "%1$s %2$s %3$s タグのフィード"
6268
- #~ msgid "%1$s %2$s Posts by %3$s Feed"
6269
- #~ msgstr "%1$s %2$s %3$s による投稿のフィード"
6270
- #~ msgid "%1$s %2$s Search Results for &#8220;%3$s&#8221; Feed"
6271
- #~ msgstr "%1$s %2$s 検索結果: &#8220;%3$s&#8221; フィード"
6272
- #~ msgid "&laquo; Previous"
6273
- #~ msgstr "&laquo; 前ページへ"
6274
- #~ msgid "Next &raquo;"
6275
- #~ msgstr "次ページへ &raquo;"
6276
- #~ msgid "Too many redirects."
6277
- #~ msgstr "リダイレクトが多すぎます。"
6278
- #~ msgid "Malformed URL: %s"
6279
- #~ msgstr "不正な URL: %s"
6280
- #~ msgid "Could not open handle for fopen() to %s"
6281
- #~ msgstr "%s に対する fopen() のハンドラーを開くことができませんでした。"
6282
- #~ msgid "Do you want to use the WYSIWYG mode for this textarea?"
6283
- #~ msgstr "WYSIWYGモードに切り替えますか ?"
6284
- #~ msgid "Insert"
6285
- #~ msgstr "挿入"
6286
- #~ msgid "Browse"
6287
- #~ msgstr "参照"
6288
- #~ msgid "Class"
6289
- #~ msgstr "クラス"
6290
- #~ msgid "-- Not set --"
6291
- #~ msgstr "-- 未設定 --"
6292
- #~ msgid "Copy/Cut/Paste is not available in Mozilla and Firefox."
6293
- #~ msgstr ""
6294
- #~ "コピー/カット/ペースト は Mozilla および Firefox では使用できません。"
6295
- #~ msgid ""
6296
- #~ "Currently not supported by your browser, use keyboard shortcuts instead."
6297
- #~ msgstr ""
6298
- #~ "クリップボード操作はお使いのブラウザには対応しておりません。代わりにキー"
6299
- #~ "ボードのショートカットキーをお使いください。"
6300
- #~ msgid ""
6301
- #~ "Sorry, but we have noticed that your popup-blocker has disabled a window "
6302
- #~ "that provides application functionality. You will need to disable popup "
6303
- #~ "blocking on this site in order to fully utilize this tool."
6304
- #~ msgstr ""
6305
- #~ "ポップアップがブロックされました。すべての機能をご利用になるにはポップアッ"
6306
- #~ "プを許可してください。"
6307
- #~ msgid "Error: Invalid values entered, these are marked in red."
6308
- #~ msgstr "エラー: 入力に誤りがあります (赤字の項目)。"
6309
- #~ msgid "More colors"
6310
- #~ msgstr "その他の色"
6311
- #~ msgid "Full"
6312
- #~ msgstr "均等割付"
6313
- #~ msgid "%Y-%m-%d"
6314
- #~ msgstr "%Y-%m-%d"
6315
- #~ msgid "%H:%M:%S"
6316
- #~ msgstr "%H:%M:%S"
6317
- #~ msgid "Insert date"
6318
- #~ msgstr "日付の挿入"
6319
- #~ msgid "Insert time"
6320
- #~ msgstr "時刻の挿入"
6321
- #~ msgid "January"
6322
- #~ msgstr "1月"
6323
- #~ msgid "February"
6324
- #~ msgstr "2月"
6325
- #~ msgid "March"
6326
- #~ msgstr "3月"
6327
- #~ msgid "April"
6328
- #~ msgstr "4月"
6329
- #~ msgid "May"
6330
- #~ msgstr "5月"
6331
- #~ msgid "June"
6332
- #~ msgstr "6月"
6333
- #~ msgid "July"
6334
- #~ msgstr "7月"
6335
- #~ msgid "August"
6336
- #~ msgstr "8月"
6337
- #~ msgid "September"
6338
- #~ msgstr "9月"
6339
- #~ msgid "October"
6340
- #~ msgstr "10月"
6341
- #~ msgid "November"
6342
- #~ msgstr "11月"
6343
- #~ msgid "December"
6344
- #~ msgstr "12月"
6345
- #~ msgid "Jan_January_abbreviation"
6346
- #~ msgstr "1月_January_abbreviation"
6347
- #~ msgid "Feb_February_abbreviation"
6348
- #~ msgstr "2月_February_abbreviation"
6349
- #~ msgid "Mar_March_abbreviation"
6350
- #~ msgstr "3月_March_abbreviation"
6351
- #~ msgid "Apr_April_abbreviation"
6352
- #~ msgstr "4月_April_abbreviation"
6353
- #~ msgid "May_May_abbreviation"
6354
- #~ msgstr "5月_May_abbreviation"
6355
- #~ msgid "Jun_June_abbreviation"
6356
- #~ msgstr "6月_June_abbreviation"
6357
- #~ msgid "Jul_July_abbreviation"
6358
- #~ msgstr "7月_July_abbreviation"
6359
- #~ msgid "Aug_August_abbreviation"
6360
- #~ msgstr "8月_August_abbreviation"
6361
- #~ msgid "Sep_September_abbreviation"
6362
- #~ msgstr "9月_September_abbreviation"
6363
- #~ msgid "Oct_October_abbreviation"
6364
- #~ msgstr "10月_October_abbreviation"
6365
- #~ msgid "Nov_November_abbreviation"
6366
- #~ msgstr "11月_November_abbreviation"
6367
- #~ msgid "Dec_December_abbreviation"
6368
- #~ msgstr "12月_December_abbreviation"
6369
- #~ msgid "Sunday"
6370
- #~ msgstr "日曜日"
6371
- #~ msgid "Monday"
6372
- #~ msgstr "月曜日"
6373
- #~ msgid "Tuesday"
6374
- #~ msgstr "火曜日"
6375
- #~ msgid "Wednesday"
6376
- #~ msgstr "水曜日"
6377
- #~ msgid "Thursday"
6378
- #~ msgstr "木曜日"
6379
- #~ msgid "Friday"
6380
- #~ msgstr "金曜日"
6381
- #~ msgid "Saturday"
6382
- #~ msgstr "土曜日"
6383
- #~ msgid "Sun"
6384
- #~ msgstr "日"
6385
- #~ msgid "Mon"
6386
- #~ msgstr "月"
6387
- #~ msgid "Tue"
6388
- #~ msgstr "火"
6389
- #~ msgid "Wed"
6390
- #~ msgstr "水"
6391
- #~ msgid "Thu"
6392
- #~ msgstr "木"
6393
- #~ msgid "Fri"
6394
- #~ msgstr "金"
6395
- #~ msgid "Sat"
6396
- #~ msgstr "土"
6397
- #~ msgid "Print"
6398
- #~ msgstr "印刷"
6399
- #~ msgid "Direction left to right"
6400
- #~ msgstr "左から右"
6401
- #~ msgid "Direction right to left"
6402
- #~ msgstr "右から左"
6403
- #~ msgid "Insert new layer"
6404
- #~ msgstr "新規レイヤーの挿入"
6405
- #~ msgid "Move forward"
6406
- #~ msgstr "前面へ移動"
6407
- #~ msgid "Move backward"
6408
- #~ msgstr "背面へ移動"
6409
- #~ msgid "Toggle absolute positioning"
6410
- #~ msgstr "絶対位置指定の切替"
6411
- #~ msgid "New layer..."
6412
- #~ msgstr "新規レイヤー"
6413
- #~ msgid "Cancel all changes"
6414
- #~ msgstr "全ての変更を破棄"
6415
- #~ msgid "Insert non-breaking space character"
6416
- #~ msgstr "改行なしスペースの挿入"
6417
- #~ msgid "Run spell checking"
6418
- #~ msgstr "スペルチェック"
6419
- #~ msgid "ieSpell not detected. Do you want to install it now?"
6420
- #~ msgstr "ieSpellが見つかりません。今すぐインストールしますか ?"
6421
- #~ msgid "Horizontale rule"
6422
- #~ msgstr "水平線"
6423
- #~ msgid "Emotions"
6424
- #~ msgstr "表情アイコン"
6425
- #~ msgid "Find"
6426
- #~ msgstr "検索"
6427
- #~ msgid "Find/Replace"
6428
- #~ msgstr "検索/置換"
6429
- #~ msgid "Insert/edit image"
6430
- #~ msgstr "画像の挿入/編集"
6431
- #~ msgid "Insert/edit link"
6432
- #~ msgstr "リンクの挿入/編集"
6433
- #~ msgid "Citation"
6434
- #~ msgstr "引用"
6435
- #~ msgid "Abbreviation"
6436
- #~ msgstr "略語"
6437
- #~ msgid "Acronym"
6438
- #~ msgstr "頭字語"
6439
- #~ msgid "Deletion"
6440
- #~ msgstr "削除"
6441
- #~ msgid "Insertion"
6442
- #~ msgstr "挿入"
6443
- #~ msgid "Insert/Edit Attributes"
6444
- #~ msgstr "属性の挿入/削除"
6445
- #~ msgid "Edit CSS Style"
6446
- #~ msgstr "CSS編集"
6447
- #~ msgid "Paste as Plain Text"
6448
- #~ msgstr "テキストとして貼り付け"
6449
- #~ msgid "Paste from Word"
6450
- #~ msgstr "Wordから貼り付け"
6451
- #~ msgid "Select All"
6452
- #~ msgstr "全て選択"
6453
- #~ msgid "Use CTRL+V on your keyboard to paste the text into the window."
6454
- #~ msgstr "キーボードでCTRL+Vと入力しテキストを貼り付けてください。"
6455
- #~ msgid "Keep linebreaks"
6456
- #~ msgstr "改行を保持する"
6457
- #~ msgid "Inserts a new table"
6458
- #~ msgstr "表を挿入"
6459
- #~ msgid "Insert row before"
6460
- #~ msgstr "行を上に挿入"
6461
- #~ msgid "Insert row after"
6462
- #~ msgstr "行を下に挿入"
6463
- #~ msgid "Delete row"
6464
- #~ msgstr "行を削除"
6465
- #~ msgid "Insert column before"
6466
- #~ msgstr "列を左に挿入"
6467
- #~ msgid "Insert column after"
6468
- #~ msgstr "列を右に挿入"
6469
- #~ msgid "Remove column"
6470
- #~ msgstr "列を削除"
6471
- #~ msgid "Split merged table cells"
6472
- #~ msgstr "セルの結合を解除"
6473
- #~ msgid "Merge table cells"
6474
- #~ msgstr "セルの結合"
6475
- #~ msgid "Table row properties"
6476
- #~ msgstr "行のプロパティ"
6477
- #~ msgid "Table cell properties"
6478
- #~ msgstr "セルのプロパティ"
6479
- #~ msgid "Table properties"
6480
- #~ msgstr "表のプロパティ"
6481
- #~ msgid "Paste table row before"
6482
- #~ msgstr "行を上に貼り付け"
6483
- #~ msgid "Paste table row after"
6484
- #~ msgstr "行を下に貼り付け"
6485
- #~ msgid "Cut table row"
6486
- #~ msgstr "行の切り取り"
6487
- #~ msgid "Delete table"
6488
- #~ msgstr "表を削除"
6489
- #~ msgid "Row"
6490
- #~ msgstr "行"
6491
- #~ msgid "Column"
6492
- #~ msgstr "列"
6493
- #~ msgid "Cell"
6494
- #~ msgstr "セル"
6495
- #~ msgid ""
6496
- #~ "The changes you made will be lost if you navigate away from this page."
6497
- #~ msgstr "他のページへ移動すると編集データはすべて破棄されます。"
6498
- #~ msgid "Toggle fullscreen mode"
6499
- #~ msgstr "フルスクリーン"
6500
- #~ msgid "Insert / edit embedded media"
6501
- #~ msgstr "埋め込みメディアの挿入/編集"
6502
- #~ msgctxt "media popup width"
6503
- #~ msgid "0"
6504
- #~ msgstr "0"
6505
- #~ msgctxt "media popup height"
6506
- #~ msgid "0"
6507
- #~ msgstr "0"
6508
- #~ msgid "Edit embedded media"
6509
- #~ msgstr "埋め込みメディアの編集"
6510
- #~ msgid "Document properties"
6511
- #~ msgstr "ページ設定"
6512
- #~ msgid "Insert predefined template content"
6513
- #~ msgstr "テンプレートの挿入"
6514
- #~ msgid "Visual control characters on/off."
6515
- #~ msgstr "制御文字の表示"
6516
- #~ msgid "Toggle spellchecker"
6517
- #~ msgstr "スペルチェックOn/Off"
6518
- #~ msgid "Spellchecker settings"
6519
- #~ msgstr "スペルチェック設定"
6520
- #~ msgid "Ignore word"
6521
- #~ msgstr "この単語を無視"
6522
- #~ msgid "Ignore all"
6523
- #~ msgstr "全て無視"
6524
- #~ msgid "Languages"
6525
- #~ msgstr "言語"
6526
- #~ msgid "Please wait..."
6527
- #~ msgstr "しばらくお待ちください..."
6528
- #~ msgid "Suggestions"
6529
- #~ msgstr "候補"
6530
- #~ msgid "No suggestions"
6531
- #~ msgstr "候補はありません"
6532
- #~ msgid "No misspellings found."
6533
- #~ msgstr "スペルミスは見つかりませんでした。"
6534
- #~ msgid "Insert page break."
6535
- #~ msgstr "改ページ挿入"
6536
- #~ msgctxt "TinyMCE font styles"
6537
- #~ msgid "Styles"
6538
- #~ msgstr "スタイル"
6539
- #~ msgid "Font size"
6540
- #~ msgstr "文字サイズ"
6541
- #~ msgid "Font family"
6542
- #~ msgstr "フォント"
6543
- #~ msgid "Format"
6544
- #~ msgstr "フォーマット"
6545
- #~ msgid "Paragraph"
6546
- #~ msgstr "段落"
6547
- #~ msgid "Div"
6548
- #~ msgstr "Div"
6549
- #~ msgid "Address"
6550
- #~ msgstr "アドレス"
6551
- #~ msgid "Preformatted"
6552
- #~ msgstr "整形済み"
6553
- #~ msgid "Heading 1"
6554
- #~ msgstr "見出し1"
6555
- #~ msgid "Heading 2"
6556
- #~ msgstr "見出し2"
6557
- #~ msgid "Heading 3"
6558
- #~ msgstr "見出し3"
6559
- #~ msgid "Heading 4"
6560
- #~ msgstr "見出し4"
6561
- #~ msgid "Heading 5"
6562
- #~ msgstr "見出し5"
6563
- #~ msgid "Heading 6"
6564
- #~ msgstr "見出し6"
6565
- #~ msgid "Blockquote"
6566
- #~ msgstr "引用"
6567
- #~ msgid "Code"
6568
- #~ msgstr "ソースコード"
6569
- #~ msgid "Code sample"
6570
- #~ msgstr "コードサンプル"
6571
- #~ msgid "Definition term "
6572
- #~ msgstr "語句定義"
6573
- #~ msgid "Definition description"
6574
- #~ msgstr "語句説明"
6575
- #~ msgid "Bold"
6576
- #~ msgstr "太字"
6577
- #~ msgid "Italic"
6578
- #~ msgstr "イタリック"
6579
- #~ msgid "Underline"
6580
- #~ msgstr "下線"
6581
- #~ msgid "Strikethrough"
6582
- #~ msgstr "打ち消し"
6583
- #~ msgid "Align left"
6584
- #~ msgstr "左揃え"
6585
- #~ msgid "Align center"
6586
- #~ msgstr "中央揃え"
6587
- #~ msgid "Align right"
6588
- #~ msgstr "右揃え"
6589
- #~ msgid "Align full"
6590
- #~ msgstr "均等割付"
6591
- #~ msgid "Unordered list"
6592
- #~ msgstr "番号なしリスト"
6593
- #~ msgid "Ordered list"
6594
- #~ msgstr "番号つきリスト"
6595
- #~ msgid "Outdent"
6596
- #~ msgstr "インデント解除"
6597
- #~ msgid "Indent"
6598
- #~ msgstr "インデント"
6599
- #~ msgid "Undo"
6600
- #~ msgstr "取り消し"
6601
- #~ msgid "Redo"
6602
- #~ msgstr "やり直し"
6603
- #~ msgctxt "link popup width"
6604
- #~ msgid "0"
6605
- #~ msgstr "0"
6606
- #~ msgctxt "link popup height"
6607
- #~ msgid "0"
6608
- #~ msgstr "0"
6609
- #~ msgid "Unlink"
6610
- #~ msgstr "リンク解除"
6611
- #~ msgctxt "image popup width"
6612
- #~ msgid "0"
6613
- #~ msgstr "0"
6614
- #~ msgctxt "image popup height"
6615
- #~ msgid "0"
6616
- #~ msgstr "0"
6617
- #~ msgid "Cleanup messy code"
6618
- #~ msgstr "コード整形"
6619
- #~ msgid "Edit HTML Source"
6620
- #~ msgstr "HTMLソース編集"
6621
- #~ msgid "Subscript"
6622
- #~ msgstr "下付き"
6623
- #~ msgid "Superscript"
6624
- #~ msgstr "上付き"
6625
- #~ msgid "Insert horizontal ruler"
6626
- #~ msgstr "水平線"
6627
- #~ msgid "Remove formatting"
6628
- #~ msgstr "フォーマット解除"
6629
- #~ msgid "Select text color"
6630
- #~ msgstr "文字色"
6631
- #~ msgid "Select background color"
6632
- #~ msgstr "背景色"
6633
- #~ msgid "Insert custom character"
6634
- #~ msgstr "特殊文字"
6635
- #~ msgid "Toggle guidelines/invisible elements"
6636
- #~ msgstr "ガイドラインと非表示項目の表示切替"
6637
- #~ msgid "Insert/edit anchor"
6638
- #~ msgstr "アンカーの挿入/編集"
6639
- #~ msgid "Cut"
6640
- #~ msgstr "切り取り"
6641
- #~ msgid "Paste"
6642
- #~ msgstr "貼り付け"
6643
- #~ msgid "Image properties"
6644
- #~ msgstr "画像のプロパティ"
6645
- #~ msgid "New document"
6646
- #~ msgstr "新規作成"
6647
- #~ msgid "Path"
6648
- #~ msgstr "パス"
6649
- #~ msgid "Are you sure you want to clear all contents?"
6650
- #~ msgstr "全ての内容を破棄してもいいですか ?"
6651
- #~ msgid ""
6652
- #~ "Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element "
6653
- #~ "path - Alt-X"
6654
- #~ msgstr ""
6655
- #~ "ツールボタンへジャンプ - Alt+Q, エディターにジャンプ - Alt-Z, エレメントパ"
6656
- #~ "スへジャンプ - Alt-X"
6657
- #~ msgctxt "colorpicker popup width"
6658
- #~ msgid "0"
6659
- #~ msgstr "0"
6660
- #~ msgctxt "colorpicker popup height"
6661
- #~ msgid "0"
6662
- #~ msgstr "0"
6663
- #~ msgid "About TinyMCE"
6664
- #~ msgstr "TinyMCE について"
6665
- #~ msgid "License"
6666
- #~ msgstr "ライセンス"
6667
- #~ msgid "Loaded plugins"
6668
- #~ msgstr "読込済みプラグイン"
6669
- #~ msgid "Anchor name"
6670
- #~ msgstr "アンカー名"
6671
- #~ msgid "HTML Source Editor"
6672
- #~ msgstr "HTMLソースエディター"
6673
- #~ msgid "Word wrap"
6674
- #~ msgstr "折り返し"
6675
- #~ msgid "Select a color"
6676
- #~ msgstr "色の選択"
6677
- #~ msgid "Picker"
6678
- #~ msgstr "カラーピッカー"
6679
- #~ msgid "Color picker"
6680
- #~ msgstr "カラーピッカー"
6681
- #~ msgid "Palette"
6682
- #~ msgstr "パレット"
6683
- #~ msgid "Palette colors"
6684
- #~ msgstr "パレット"
6685
- #~ msgid "Named"
6686
- #~ msgstr "既定色"
6687
- #~ msgid "Named colors"
6688
- #~ msgstr "既定色"
6689
- #~ msgid "Color:"
6690
- #~ msgstr "カラー:"
6691
- #~ msgid "Select custom character"
6692
- #~ msgstr "特殊文字"
6693
- #~ msgid "Image description"
6694
- #~ msgstr "画像の説明"
6695
- #~ msgid "Image list"
6696
- #~ msgstr "一覧から選ぶ"
6697
- #~ msgid "Border"
6698
- #~ msgstr "枠線"
6699
- #~ msgid "Dimensions"
6700
- #~ msgstr "サイズ"
6701
- #~ msgid "Vertical space"
6702
- #~ msgstr "上下余白"
6703
- #~ msgid "Horizontal space"
6704
- #~ msgstr "左右余白"
6705
- #~ msgid "Baseline"
6706
- #~ msgstr "Baseline"
6707
- #~ msgid "Top"
6708
- #~ msgstr "上"
6709
- #~ msgid "Middle"
6710
- #~ msgstr "Middle"
6711
- #~ msgid "Bottom"
6712
- #~ msgstr "下"
6713
- #~ msgid "Text top"
6714
- #~ msgstr "Text top"
6715
- #~ msgid "Text bottom"
6716
- #~ msgstr "Text bottom"
6717
- #~ msgid "Open link in the same window"
6718
- #~ msgstr "同じウインドウで開く"
6719
- #~ msgid "Open link in a new window"
6720
- #~ msgstr "新しいウインドウで開く"
6721
- #~ msgid ""
6722
- #~ "The URL you entered seems to be an email address, do you want to add the "
6723
- #~ "required mailto: prefix?"
6724
- #~ msgstr "メールアドレスが入力されました。リンクにmailto:を付加しますか ?"
6725
- #~ msgid ""
6726
- #~ "The URL you entered seems to external link, do you want to add the "
6727
- #~ "required http:// prefix?"
6728
- #~ msgstr "リンクにhttp://を付加しますか ?"
6729
- #~ msgid "Link list"
6730
- #~ msgstr "一覧から選ぶ"
6731
- #~ msgid "File/URL"
6732
- #~ msgstr "ファイル/URL"
6733
- #~ msgid "List"
6734
- #~ msgstr "リスト"
6735
- #~ msgid "Constrain proportions"
6736
- #~ msgstr "縦横比を保存"
6737
- #~ msgid "Type"
6738
- #~ msgstr "Type"
6739
- #~ msgid "Id"
6740
- #~ msgstr "ID"
6741
- #~ msgid "V-Space"
6742
- #~ msgstr "上下余白"
6743
- #~ msgid "H-Space"
6744
- #~ msgstr "左右余白"
6745
- #~ msgid "Auto play"
6746
- #~ msgstr "自動再生"
6747
- #~ msgid "Loop"
6748
- #~ msgstr "繰り返し再生"
6749
- #~ msgid "Show menu"
6750
- #~ msgstr "メニューを表示"
6751
- #~ msgid "Quality"
6752
- #~ msgstr "品質"
6753
- #~ msgid "Scale"
6754
- #~ msgstr "伸縮"
6755
- #~ msgid "Align"
6756
- #~ msgstr "配置"
6757
- #~ msgid "SAlign"
6758
- #~ msgstr "SAlign"
6759
- #~ msgid "WMode"
6760
- #~ msgstr "WMode"
6761
- #~ msgid "Background"
6762
- #~ msgstr "背景色"
6763
- #~ msgid "Base"
6764
- #~ msgstr "Base"
6765
- #~ msgid "Flashvars"
6766
- #~ msgstr "Flashvars"
6767
- #~ msgid "SWLiveConnect"
6768
- #~ msgstr "SWLiveConnect"
6769
- #~ msgid "AutoHREF"
6770
- #~ msgstr "自動読込"
6771
- #~ msgid "Cache"
6772
- #~ msgstr "キャッシュ"
6773
- #~ msgid "Hidden"
6774
- #~ msgstr "非表示"
6775
- #~ msgid "Controller"
6776
- #~ msgstr "コントローラ表示"
6777
- #~ msgid "Kiosk mode"
6778
- #~ msgstr "Kioskモード"
6779
- #~ msgid "Play every frame"
6780
- #~ msgstr "全フレーム再生"
6781
- #~ msgid "Target cache"
6782
- #~ msgstr "ターゲットキャッシュ"
6783
- #~ msgid "No correction"
6784
- #~ msgstr "No correction"
6785
- #~ msgid "Enable JavaScript"
6786
- #~ msgstr "JavaScript を有効にする"
6787
- #~ msgid "Start time"
6788
- #~ msgstr "開始フレーム"
6789
- #~ msgid "End time"
6790
- #~ msgstr "終了フレーム"
6791
- #~ msgid "Href"
6792
- #~ msgstr "Href"
6793
- #~ msgid "Choke speed"
6794
- #~ msgstr "再生データレート"
6795
- #~ msgid "Volume"
6796
- #~ msgstr "音量"
6797
- #~ msgid "Auto start"
6798
- #~ msgstr "自動再生"
6799
- #~ msgid "Enabled"
6800
- #~ msgstr "有効にする"
6801
- #~ msgid "Fullscreen"
6802
- #~ msgstr "フルスクリーン"
6803
- #~ msgid "Invoke URLs"
6804
- #~ msgstr "URLを開く"
6805
- #~ msgid "Mute"
6806
- #~ msgstr "ミュート"
6807
- #~ msgid "Stretch to fit"
6808
- #~ msgstr "自動サイズ変更"
6809
- #~ msgid "Windowless video"
6810
- #~ msgstr "windowless モード"
6811
- #~ msgid "Balance"
6812
- #~ msgstr "ステレオのバランス"
6813
- #~ msgid "Base URL"
6814
- #~ msgstr "Base URL"
6815
- #~ msgid "Captioning id"
6816
- #~ msgstr "キャプション表示要素 ID"
6817
- #~ msgid "Current marker"
6818
- #~ msgstr "マーカー番号"
6819
- #~ msgid "Current position"
6820
- #~ msgstr "再生位置 (秒単位)"
6821
- #~ msgid "Default frame"
6822
- #~ msgstr "デフォルトフレーム"
6823
- #~ msgid "Play count"
6824
- #~ msgstr "再生回数"
6825
- #~ msgid "Rate"
6826
- #~ msgstr "再生レート"
6827
- #~ msgid "UI Mode"
6828
- #~ msgstr "UI 表示モード"
6829
- #~ msgid "Flash options"
6830
- #~ msgstr "Flash オプション"
6831
- #~ msgid "Quicktime options"
6832
- #~ msgstr "QuickTime オプション"
6833
- #~ msgid "Windows media player options"
6834
- #~ msgstr "Windows Media Player オプション"
6835
- #~ msgid "Real media player options"
6836
- #~ msgstr "Real Media Player オプション"
6837
- #~ msgid "Shockwave options"
6838
- #~ msgstr "Shockwave オプション"
6839
- #~ msgid "Auto goto URL"
6840
- #~ msgstr "autogotourl"
6841
- #~ msgid "Image status"
6842
- #~ msgstr "画像ステータス"
6843
- #~ msgid "Maintain aspect"
6844
- #~ msgstr "縦横比保存"
6845
- #~ msgid "No java"
6846
- #~ msgstr "Java を禁止"
6847
- #~ msgid "Prefetch"
6848
- #~ msgstr "プリフェッチ"
6849
- #~ msgid "Shuffle"
6850
- #~ msgstr "シャッフル"
6851
- #~ msgid "Console"
6852
- #~ msgstr "コンソール"
6853
- #~ msgid "Num loops"
6854
- #~ msgstr "繰り返し回数"
6855
- #~ msgid "Controls"
6856
- #~ msgstr "コントローラ表示"
6857
- #~ msgid "Script callbacks"
6858
- #~ msgstr "コールバックイベント"
6859
- #~ msgid "Stretch style"
6860
- #~ msgstr "伸縮"
6861
- #~ msgid "Stretch H-Align"
6862
- #~ msgstr "水平位置"
6863
- #~ msgid "Stretch V-Align"
6864
- #~ msgstr "垂直位置"
6865
- #~ msgid "Sound"
6866
- #~ msgstr "サウンド"
6867
- #~ msgid "Progress"
6868
- #~ msgstr "Progress"
6869
- #~ msgid "QT Src"
6870
- #~ msgstr "QT Src"
6871
- #~ msgid ""
6872
- #~ "Streamed rtsp resources should be added to the QT Src field under the "
6873
- #~ "advanced tab."
6874
- #~ msgstr ""
6875
- #~ "Streamed rtsp resources should be added to the QT Src field under the "
6876
- #~ "advanced tab."
6877
- #~ msgid "Top left"
6878
- #~ msgstr "左上"
6879
- #~ msgid "Top right"
6880
- #~ msgstr "右上"
6881
- #~ msgid "Bottom left"
6882
- #~ msgstr "左下"
6883
- #~ msgid "Bottom right"
6884
- #~ msgstr "右下"
6885
- #~ msgid "Flash video options"
6886
- #~ msgstr "Flash 動画オプション"
6887
- #~ msgid "Scale mode"
6888
- #~ msgstr "伸縮モード"
6889
- #~ msgid "Buffer"
6890
- #~ msgstr "バッファ秒数"
6891
- #~ msgid "Start image"
6892
- #~ msgstr "初期画像 URL"
6893
- #~ msgid "Default volume"
6894
- #~ msgstr "初期音量"
6895
- #~ msgid "Hidden GUI"
6896
- #~ msgstr "コントローラ非表示"
6897
- #~ msgid "Show scale modes"
6898
- #~ msgstr "伸縮切替ボタン表示"
6899
- #~ msgid "Smooth video"
6900
- #~ msgstr "スムージング"
6901
- #~ msgid "JS Callback"
6902
- #~ msgstr "JSコールバック"
6903
- #~ msgid "Show/Hide Kitchen Sink"
6904
- #~ msgstr "アドバンストツールバーの表示/非表示"
6905
- #~ msgid "Insert More tag"
6906
- #~ msgstr "More タグを挿入"
6907
- #~ msgid "Insert Page break"
6908
- #~ msgstr "ページ切り替えを挿入"
6909
- #~ msgid "More..."
6910
- #~ msgstr "もっと読む..."
6911
- #~ msgid "Next page..."
6912
- #~ msgstr "次のページ..."
6913
- #~ msgid "Edit Gallery"
6914
- #~ msgstr "ギャラリーを編集"
6915
- #~ msgid "Delete Gallery"
6916
- #~ msgstr "ギャラリーを削除"
6917
- #~ msgid "Edit Image"
6918
- #~ msgstr "画像を編集"
6919
- #~ msgid "Delete Image"
6920
- #~ msgstr "画像を削除"
6921
- #~ msgid "Advanced Settings"
6922
- #~ msgstr "詳細設定"
6923
- #~ msgid "Full Size"
6924
- #~ msgstr "フルサイズ"
6925
- #~ msgid "Current Link"
6926
- #~ msgstr "現在のリンク"
6927
- #~ msgid "Link to Image"
6928
- #~ msgstr "画像にリンクを張る"
6929
- #~ msgid "Advanced Image Settings"
6930
- #~ msgstr "詳細画像設定"
6931
- #~ msgid "Source"
6932
- #~ msgstr "ソース"
6933
- #~ msgid "Original Size"
6934
- #~ msgstr "元のサイズ"
6935
- #~ msgid "CSS Class"
6936
- #~ msgstr "CSS クラス"
6937
- #~ msgid "Advanced Link Settings"
6938
- #~ msgstr "詳細リンク設定"
6939
- #~ msgid "Link Rel"
6940
- #~ msgstr "リンク rel"
6941
- #~ msgid "60%"
6942
- #~ msgstr "60%"
6943
- #~ msgid "70%"
6944
- #~ msgstr "70%"
6945
- #~ msgid "80%"
6946
- #~ msgstr "80%"
6947
- #~ msgid "90%"
6948
- #~ msgstr "90%"
6949
- #~ msgid "100%"
6950
- #~ msgstr "100%"
6951
- #~ msgid "110%"
6952
- #~ msgstr "110%"
6953
- #~ msgid "120%"
6954
- #~ msgstr "120%"
6955
- #~ msgid "130%"
6956
- #~ msgstr "130%"
6957
- #~ msgid "Edit Image Title"
6958
- #~ msgstr "画像のタイトルを編集"
6959
- #~ msgid "Edit Image Caption"
6960
- #~ msgstr "画像のキャプションを編集"
6961
- #~ msgid "Edit Alternate Text"
6962
- #~ msgstr "代替テキストの編集"
6963
- #~ msgid "Rich Editor Help"
6964
- #~ msgstr "リッチエディターのヘルプ"
6965
- #~ msgid "Basics of Rich Editing"
6966
- #~ msgstr "リッチエディターの基本情報"
6967
- #~ msgid "Basics"
6968
- #~ msgstr "基本情報"
6969
- #~ msgid "Advanced use of the Rich Editor"
6970
- #~ msgstr "リッチエディターの詳細"
6971
- #~ msgid "Hotkeys"
6972
- #~ msgstr "ホットキー"
6973
- #~ msgid "About the software"
6974
- #~ msgstr "このソフトウェアについて"
6975
- #~ msgid "Rich Editing Basics"
6976
- #~ msgstr "リッチエディットの基本情報"
6977
- #~ msgid ""
6978
- #~ "<em>Rich editing</em>, also called WYSIWYG for What You See Is What You "
6979
- #~ "Get, means your text is formatted as you type. The rich editor creates "
6980
- #~ "HTML code behind the scenes while you concentrate on writing. Font "
6981
- #~ "styles, links and images all appear approximately as they will on the "
6982
- #~ "internet."
6983
- #~ msgstr ""
6984
- #~ "<em>リッチエディット</em>は WYSIWYG (What You See Is What You Get) とも呼"
6985
- #~ "ばれ、テキストを入力すると自動的にそのテキストがフォーマットされます。この"
6986
- #~ "リッチエディターはあなたがテキストを書いている間、その後ろで HTML コードを"
6987
- #~ "作成します。フォントスタイル、リンク、そして画像が通常インターネット上で見"
6988
- #~ "るのと同じように表示されます。"
6989
- #~ msgid ""
6990
- #~ "WordPress includes a rich HTML editor that works well in all major web "
6991
- #~ "browsers used today. However editing HTML is not the same as typing text. "
6992
- #~ "Each web page has two major components: the structure, which is the "
6993
- #~ "actual HTML code and is produced by the editor as you type, and the "
6994
- #~ "display, that is applied to it by the currently selected WordPress theme "
6995
- #~ "and is defined in style.css. WordPress is producing valid XHTML 1.0 which "
6996
- #~ "means that inserting multiple line breaks (BR tags) after a paragraph "
6997
- #~ "would not produce white space on the web page. The BR tags will be "
6998
- #~ "removed as invalid by the internal HTML correcting functions."
6999
- #~ msgstr ""
7000
- #~ "WordPress には今日の主要な Web ブラウザすべてで作動するリッチエディターが"
7001
- #~ "組み込まれています。ただし、HTML の編集は普通のテキストのそれとは違う点が"
7002
- #~ "多いということを常に意識してください。ウェブページは2つの主要な構成要素か"
7003
- #~ "ら成り立っています。ひとつは「構造」です。構造はエディター上で作成される "
7004
- #~ "HTML コードそのものです。もうひとつは「表現」です。表現は現在選択されてい"
7005
- #~ "る WordPress テーマにより適用され、style.css により定義されます。"
7006
- #~ "WordPress は妥当な (valid) XHTML 1.0 を出力します。したがって、パラグラフ"
7007
- #~ "の後に複数の改行 (BR タグ) を挿入してもウェブページ上に空白スペースが作ら"
7008
- #~ "れることはありません。内部の HTML 修正機能が BR タグを正しくないものとして"
7009
- #~ "取り去ってしまうでしょう。"
7010
- #~ msgid ""
7011
- #~ "While using the editor, most basic keyboard shortcuts work like in any "
7012
- #~ "other text editor. For example: Shift+Enter inserts line break, Ctrl+C = "
7013
- #~ "copy, Ctrl+X = cut, Ctrl+Z = undo, Ctrl+Y = redo, Ctrl+A = select all, "
7014
- #~ "etc. (on Mac use the Command key instead of Ctrl). See the Hotkeys tab "
7015
- #~ "for all available keyboard shortcuts."
7016
- #~ msgstr ""
7017
- #~ "他のテキストエディターがサポートするようなキーボードショートカットは、基本"
7018
- #~ "的なものはどれも使用できるようになっています。例えば: Shift+Enter で改行を"
7019
- #~ "挿入、Ctrl+C でコピー、Ctrl+X でカット、Ctrl+Z で元に戻す、Ctrl+Y でやり直"
7020
- #~ "し、Ctrl+A ですべて選択、など (Mac の場合は Ctrl の代わりに Command キーを"
7021
- #~ "使います)。利用可能なすべてのキーボードショートカットは「ホットキー」タブ"
7022
- #~ "でご確認ください。"
7023
- #~ msgid ""
7024
- #~ "If you do not like the way the rich editor works, you may turn it off "
7025
- #~ "from Your Profile submenu, under Users in the admin menu."
7026
- #~ msgstr ""
7027
- #~ "もしこのリッチエディターが気に入らなければ、管理画面の「ユーザー」設定の"
7028
- #~ "「あなたのプロフィール」でこの機能を無効にすることができます。"
7029
- #~ msgid "Advanced Rich Editing"
7030
- #~ msgstr "リッチエディターの詳細"
7031
- #~ msgid "Images and Attachments"
7032
- #~ msgstr "画像とファイル"
7033
- #~ msgid ""
7034
- #~ "There is a button in the editor toolbar for inserting images that are "
7035
- #~ "already hosted somewhere on the internet. If you have a URL for an image, "
7036
- #~ "click this button and enter the URL in the box which appears."
7037
- #~ msgstr ""
7038
- #~ "インターネット上にアップロード済みの画像を挿入するためのボタンがエディター"
7039
- #~ "ツールバーにあります。その画像の URL がお分かりなら、このボタンをクリック"
7040
- #~ "して表示されるボックスにその URL を入力してください。"
7041
- #~ msgid ""
7042
- #~ "If you need to upload an image or another media file from your computer, "
7043
- #~ "you can use the Media Library buttons above the editor. The media library "
7044
- #~ "will attempt to create a thumbnail-sized copy from each uploaded image. "
7045
- #~ "To insert your image into the post, first click on the thumbnail to "
7046
- #~ "reveal a menu of options. When you have selected the options you like, "
7047
- #~ "click \"Send to Editor\" and your image or file will appear in the post "
7048
- #~ "you are editing. If you are inserting a movie, there are additional "
7049
- #~ "options in the \"Media\" dialog that can be opened from the second "
7050
- #~ "toolbar row."
7051
- #~ msgstr ""
7052
- #~ "画像ファイルやその他のメディアファイルを自分のコンピューターからアップロー"
7053
- #~ "ドする場合、投稿エディターの上にあるメディアライブラリボタンを使用すること"
7054
- #~ "ができます。画像をアップロードする際、メディアライブラリはその画像のサムネ"
7055
- #~ "イルを作成します。アップロードした画像を投稿に挿入するには、まずサムネイル"
7056
- #~ "をクリックしてオプションを表示させます。オプションを選択し、「エディターに"
7057
- #~ "送る」をクリックすると、その画像もしくはファイルが編集中の投稿に表示されま"
7058
- #~ "す。動画の挿入については、ツールバー2段目の「メディアの挿入/編集」ダイアロ"
7059
- #~ "グに追加のオプションがあります。"
7060
- #~ msgid "HTML in the Rich Editor"
7061
- #~ msgstr "リッチエディター内の HTML"
7062
- #~ msgid ""
7063
- #~ "Any HTML entered directly into the rich editor will show up as text when "
7064
- #~ "the post is viewed. What you see is what you get. When you want to "
7065
- #~ "include HTML elements that cannot be generated with the toolbar buttons, "
7066
- #~ "you must enter it by hand in the HTML editor. Examples are tables and &lt;"
7067
- #~ "code&gt;. To do this, click the HTML tab and edit the code, then switch "
7068
- #~ "back to Visual mode. If the code is valid and understood by the editor, "
7069
- #~ "you should see it rendered immediately."
7070
- #~ msgstr ""
7071
- #~ "リッチエディターに直接入力した HTML コードは、投稿が表示される際にはテキス"
7072
- #~ "トとして表示されます。入力したものがそのまま表示されるわけです。ツールバー"
7073
- #~ "ボタンで入力できない HTML 要素を入力するには、HTML エディターに入力しなけ"
7074
- #~ "ればなりません。例えばテーブルや &lt;code&gt; などです。HTML エディターで"
7075
- #~ "入力するには、HTML タブをクリックしてコードを編集し、その後ビジュアルモー"
7076
- #~ "ドに戻します。そのコードが有効でエディターが理解できれば、レンダリングされ"
7077
- #~ "たものをすぐに見ることができます。"
7078
- #~ msgid "Pasting in the Rich Editor"
7079
- #~ msgstr "リッチエディターへのペースト"
7080
- #~ msgid ""
7081
- #~ "When pasting content from another web page the results can be "
7082
- #~ "inconsistent and depend on your browser and on the web page you are "
7083
- #~ "pasting from. The editor tries to correct any invalid HTML code that was "
7084
- #~ "pasted, but for best results try using the HTML tab or one of the paste "
7085
- #~ "buttons that are on the second row. Alternatively try pasting paragraph "
7086
- #~ "by paragraph. In most browsers to select one paragraph at a time, triple-"
7087
- #~ "click on it."
7088
- #~ msgstr ""
7089
- #~ "別のウェブページの内容をペーストしようとする際、お使いのブラウザや対象の"
7090
- #~ "ウェブページによっては内容に不整合が生じる場合があります。エディターは不正"
7091
- #~ "な HTML コードを修正しようと試みますが、最良の結果を得るには、HTML タブを"
7092
- #~ "使うか、または 2 段目にあるいずれかのペーストボタンを使ってください。ある"
7093
- #~ "いは、段落ごとにペーストするのもよいでしょう。多くのブラウザではテキストを"
7094
- #~ "トリプルクリックすればその段落を選択できます。"
7095
- #~ msgid ""
7096
- #~ "Pasting content from another application, like Word or Excel, is best "
7097
- #~ "done with the Paste from Word button on the second row, or in HTML mode."
7098
- #~ msgstr ""
7099
- #~ "Word や Excel など別のアプリケーションから内容をペーストする場合、最良の方"
7100
- #~ "法は 2 段目にある \"Word から貼り付け\" ボタンを使うことです。HTML モード"
7101
- #~ "で編集するのもよいでしょう。"
7102
- #~ msgid "Writing at Full Speed"
7103
- #~ msgstr "フルスピードで入力"
7104
- #~ msgid ""
7105
- #~ "Rather than reaching for your mouse to click on the toolbar, use these "
7106
- #~ "access keys. Windows and Linux use Ctrl + letter. Macintosh uses Command "
7107
- #~ "+ letter."
7108
- #~ msgstr ""
7109
- #~ "ツールバーをクリックするためにマウスに手を伸ばすよりも次のアクセスキーを使"
7110
- #~ "用してみましょう。Windows と Linux では Ctrl + 文字、Macintosh では "
7111
- #~ "Command + 文字を使用します。"
7112
- #~ msgid "Letter"
7113
- #~ msgstr "キー"
7114
- #~ msgid "Action"
7115
- #~ msgstr "操作"
7116
- #~ msgid "Select all"
7117
- #~ msgstr "すべて選択"
7118
- #~ msgid "Header 1"
7119
- #~ msgstr "ヘッダー 1"
7120
- #~ msgid "Header 2"
7121
- #~ msgstr "ヘッダー 2"
7122
- #~ msgid "Header 3"
7123
- #~ msgstr "ヘッダー 3"
7124
- #~ msgid "Header 4"
7125
- #~ msgstr "ヘッダー 4"
7126
- #~ msgid "Header 5"
7127
- #~ msgstr "ヘッダー 5"
7128
- #~ msgid "Header 6"
7129
- #~ msgstr "ヘッダー 6"
7130
- #~ msgid ""
7131
- #~ "The following shortcuts use different access keys: Alt + Shift + letter."
7132
- #~ msgstr ""
7133
- #~ "以下のショートカットは異なるアクセスキーを使用します: Alt + Shift + 文字"
7134
- #~ msgid "Check Spelling"
7135
- #~ msgstr "スペルをチェック"
7136
- #~ msgid "Align Left"
7137
- #~ msgstr "左揃え"
7138
- #~ msgid "Justify Text"
7139
- #~ msgstr "均等割り付け"
7140
- #~ msgid "Align Center"
7141
- #~ msgstr "中央揃え"
7142
- #~ msgid "Align Right"
7143
- #~ msgstr "右揃え"
7144
- #~ msgid "Insert link"
7145
- #~ msgstr "リンクの挿入"
7146
- #~ msgid "Remove link"
7147
- #~ msgstr "リンクの削除"
7148
- #~ msgid "Quote"
7149
- #~ msgstr "引用"
7150
- #~ msgid "Full Screen"
7151
- #~ msgstr "フルスクリーン"
7152
- #~ msgid "Insert More Tag"
7153
- #~ msgstr "More タグを挿入"
7154
- #~ msgid "Insert Page Break tag"
7155
- #~ msgstr "Page Break タグを挿入"
7156
- #~ msgid "Switch to HTML mode"
7157
- #~ msgstr "HTML モードに切り替え"
7158
- #~ msgid ""
7159
- #~ "TinyMCE is a platform independent web based Javascript HTML WYSIWYG "
7160
- #~ "editor control released as Open Source under %sLGPL</a>\tby Moxiecode "
7161
- #~ "Systems AB. It has the ability to convert HTML TEXTAREA fields or other "
7162
- #~ "HTML elements to editor instances."
7163
- #~ msgstr ""
7164
- #~ "TinyMCE はプラットフォームに依存しないウェブベースの Javascript HTML "
7165
- #~ "WYSIWYG エディターコントロールで、Moxiecode Systems AB より%sLGPL</a>\tの"
7166
- #~ "もとでオープンソースとしてリリースされています。HTML TEXTAREA フィールドや"
7167
- #~ "他の HTML 要素をエディターインスタンスに変換することができます。"
7168
- #~ msgid "GNU Library General Public Licence"
7169
- #~ msgstr "GNU Library General Public Licence"
7170
- #~ msgid ""
7171
- #~ "Copyright &copy; 2003-2007, <a href=\"http://www.moxiecode.com\" target="
7172
- #~ "\"_blank\">Moxiecode Systems AB</a>, All rights reserved."
7173
- #~ msgstr ""
7174
- #~ "Copyright &copy; 2003-2007, <a href=\"http://www.moxiecode.com\" target="
7175
- #~ "\"_blank\">Moxiecode Systems AB</a>, All rights reserved."
7176
- #~ msgid ""
7177
- #~ "For more information about this software visit the <a href=\"http://"
7178
- #~ "tinymce.moxiecode.com\" target=\"_blank\">TinyMCE website</a>."
7179
- #~ msgstr ""
7180
- #~ "このソフトウェアに関する詳細は <a href=\"http://tinymce.moxiecode.com\" "
7181
- #~ "target=\"_blank\">TinyMCE のウェブサイト</a>をご覧ください。"
7182
- #~ msgid "Got Moxie?"
7183
- #~ msgstr "Got Moxie?"
7184
- #~ msgid "Hosted By Sourceforge"
7185
- #~ msgstr "Hosted By Sourceforge"
7186
- #~ msgid "Also on freshmeat"
7187
- #~ msgstr "Also on freshmeat"
7188
- #~ msgid "Comments Feed"
7189
- #~ msgstr "コメントフィード"
7190
- #~ msgid "Edit tag"
7191
- #~ msgstr "タグの編集"
7192
- #~ msgid "Edit link"
7193
- #~ msgstr "リンクの編集"
7194
- #~ msgid "Previous Post"
7195
- #~ msgstr "前の投稿へ"
7196
- #~ msgid "Next Post"
7197
- #~ msgstr "次の投稿へ"
7198
- #~ msgid "First Post"
7199
- #~ msgstr "最初の投稿"
7200
- #~ msgid "Last Post"
7201
- #~ msgstr "最新の投稿"
7202
- #~ msgid "Newer Comments &raquo;"
7203
- #~ msgstr "新しいコメント &raquo;"
7204
- #~ msgid "&laquo; Older Comments"
7205
- #~ msgstr "&laquo; 古いコメント"
7206
- #~ msgid "S_Sunday_initial"
7207
- #~ msgstr "日_Sunday_initial"
7208
- #~ msgid "M_Monday_initial"
7209
- #~ msgstr "月_Monday_initial"
7210
- #~ msgid "T_Tuesday_initial"
7211
- #~ msgstr "火_Tuesday_initial"
7212
- #~ msgid "W_Wednesday_initial"
7213
- #~ msgstr "水_Wednesday_initial"
7214
- #~ msgid "T_Thursday_initial"
7215
- #~ msgstr "木_Thursday_initial"
7216
- #~ msgid "F_Friday_initial"
7217
- #~ msgstr "金_Friday_initial"
7218
- #~ msgid "S_Saturday_initial"
7219
- #~ msgstr "土_Saturday_initial"
7220
- #~ msgid "am"
7221
- #~ msgstr "am"
7222
- #~ msgid "pm"
7223
- #~ msgstr "pm"
7224
- #~ msgid "AM"
7225
- #~ msgstr "AM"
7226
- #~ msgid "PM"
7227
- #~ msgstr "PM"
7228
- #~ msgid "number_format_decimals"
7229
- #~ msgstr "number_format_decimals"
7230
- #~ msgid "number_format_decimal_point"
7231
- #~ msgstr "number_format_decimal_point"
7232
- #~ msgid "number_format_thousands_sep"
7233
- #~ msgstr "number_format_thousands_sep"
7234
- #~ msgid "Resize path invalid"
7235
- #~ msgstr "リサイズのパスが無効です"
7236
- #~ msgid "<strong>ERROR</strong>: Invalid username or incorrect password."
7237
- #~ msgstr ""
7238
- #~ "<strong>エラー</strong>: 無効なユーザー名またはパスワードが間違っていま"
7239
- #~ "す。"
7240
- #~ msgid "New comment on your post #%1$s \"%2$s\""
7241
- #~ msgstr "投稿 #%1$s \"%2$s\" に新しいコメントがありました"
7242
- #~ msgid "Author : %1$s (IP: %2$s , %3$s)"
7243
- #~ msgstr "投稿者: %1$s (IP: %2$s , %3$s)"
7244
- #~ msgid "E-mail : %s"
7245
- #~ msgstr "メール: %s"
7246
- #~ msgid "URL : %s"
7247
- #~ msgstr "URL: %s"
7248
- #~ msgid "Whois : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s"
7249
- #~ msgstr "Whois: http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s"
7250
- #~ msgid "Comment: "
7251
- #~ msgstr "コメント: "
7252
- #~ msgid "You can see all comments on this post here: "
7253
- #~ msgstr "この投稿へのすべてのコメントは次の URL で見ることができます: "
7254
- #~ msgid "[%1$s] Comment: \"%2$s\""
7255
- #~ msgstr "[%1$s] コメント: \"%2$s\""
7256
- #~ msgid "New trackback on your post #%1$s \"%2$s\""
7257
- #~ msgstr "投稿 #%1$s \"%2$s\" に新しいトラックバックがありました"
7258
- #~ msgid "Website: %1$s (IP: %2$s , %3$s)"
7259
- #~ msgstr "ウェブサイト: %1$s (IP: %2$s , %3$s)"
7260
- #~ msgid "Excerpt: "
7261
- #~ msgstr "抜粋: "
7262
- #~ msgid "You can see all trackbacks on this post here: "
7263
- #~ msgstr "この投稿へのすべてのトラックバックは次の URL で見ることができます: "
7264
- #~ msgid "[%1$s] Trackback: \"%2$s\""
7265
- #~ msgstr "[%1$s] トラックバック: \"%2$s\""
7266
- #~ msgid "New pingback on your post #%1$s \"%2$s\""
7267
- #~ msgstr "投稿 #%1$s \"%2$s\" に新しいピンバックがありました"
7268
- #~ msgid "You can see all pingbacks on this post here: "
7269
- #~ msgstr "この投稿へのすべてのピンバックは次の URL で見ることができます: "
7270
- #~ msgid "[%1$s] Pingback: \"%2$s\""
7271
- #~ msgstr "[%1$s] ピンバック: \"%2$s\""
7272
- #~ msgid "Delete it: %s"
7273
- #~ msgstr "削除する: %s"
7274
- #~ msgid "Spam it: %s"
7275
- #~ msgstr "スパムとしてマークする: %s"
7276
- #~ msgid ""
7277
- #~ "A new trackback on the post #%1$s \"%2$s\" is waiting for your approval"
7278
- #~ msgstr "投稿 #%1$s \"%2$s\" への新しいトラックバックが承認待ちです。"
7279
- #~ msgid "Website : %1$s (IP: %2$s , %3$s)"
7280
- #~ msgstr "ウェブサイト: %1$s (IP: %2$s , %3$s)"
7281
- #~ msgid "Trackback excerpt: "
7282
- #~ msgstr "トラックバック抜粋:"
7283
- #~ msgid ""
7284
- #~ "A new pingback on the post #%1$s \"%2$s\" is waiting for your approval"
7285
- #~ msgstr "投稿 #%1$s \"%2$s\" への新しいピンバックが承認待ちです。"
7286
- #~ msgid "Pingback excerpt: "
7287
- #~ msgstr "ピンバック抜粋:"
7288
- #~ msgid ""
7289
- #~ "A new comment on the post #%1$s \"%2$s\" is waiting for your approval"
7290
- #~ msgstr "投稿 #%1$s \"%2$s\" への新しいコメントが承認待ちです。"
7291
- #~ msgid "Approve it: %s"
7292
- #~ msgstr "承認する: %s"
7293
- #~ msgid ""
7294
- #~ "Currently %s comment is waiting for approval. Please visit the moderation "
7295
- #~ "panel:"
7296
- #~ msgid_plural ""
7297
- #~ "Currently %s comments are waiting for approval. Please visit the "
7298
- #~ "moderation panel:"
7299
- #~ msgstr[0] ""
7300
- #~ "現在%s件のコメントが承認待ちです。承認を行うには次のコメント承認画面を開い"
7301
- #~ "てください:"
7302
- #~ msgid "[%1$s] Please moderate: \"%2$s\""
7303
- #~ msgstr "[%1$s] モデレートしてください: \"%2$s\""
7304
- #~ msgid "Password Lost and Changed for user: %s"
7305
- #~ msgstr "%s のパスワード紛失/変更"
7306
- #~ msgid "[%s] Password Lost/Changed"
7307
- #~ msgstr "[%s] パスワード紛失/変更"
7308
- #~ msgid "New user registration on your blog %s:"
7309
- #~ msgstr "ブログ「 %s 」の新規ユーザー登録:"
7310
- #~ msgid "Username: %s"
7311
- #~ msgstr "ユーザー名: %s"
7312
- #~ msgid "E-mail: %s"
7313
- #~ msgstr "メールアドレス: %s"
7314
- #~ msgid "[%s] New User Registration"
7315
- #~ msgstr "[%s] 新規ユーザー登録"
7316
- #~ msgid "Password: %s"
7317
- #~ msgstr "パスワード: %s"
7318
- #~ msgid "[%s] Your username and password"
7319
- #~ msgstr "[%s] あなたのユーザー名とパスワード"
7320
- #~ msgid "Protected: %s"
7321
- #~ msgstr "保護中: %s"
7322
- #~ msgid "Private: %s"
7323
- #~ msgstr "非公開: %s"
7324
- #~ msgid "There is no excerpt because this is a protected post."
7325
- #~ msgstr "この投稿は保護されているので抜粋文はありません。"
7326
- #~ msgid "Next page"
7327
- #~ msgstr "次ページへ"
7328
- #~ msgid "Previous page"
7329
- #~ msgstr "前ページへ"
7330
- #~ msgid "Home"
7331
- #~ msgstr "ホーム"
7332
- #~ msgid "Missing Attachment"
7333
- #~ msgstr "添付ファイルが見つかりません"
7334
- #~ msgid ""
7335
- #~ "This post is password protected. To view it please enter your password "
7336
- #~ "below:"
7337
- #~ msgstr ""
7338
- #~ "この投稿はパスワードで保護されています。表示するにはパスワードを入力してく"
7339
- #~ "ださい:"
7340
- #~ msgctxt "revision date format"
7341
- #~ msgid "j F, Y @ G:i"
7342
- #~ msgstr "Y年n月j日 @ G:i"
7343
- #~ msgid "%1$s [Autosave]"
7344
- #~ msgstr "%1$s [自動保存]"
7345
- #~ msgid "%1$s [Current Revision]"
7346
- #~ msgstr "%1$s [現在のリビジョン]"
7347
- #~ msgctxt "post revision"
7348
- #~ msgid "%1$s by %2$s"
7349
- #~ msgstr "%2$s @ %1$s "
7350
- #~ msgid "Restore"
7351
- #~ msgstr "復元"
7352
- #~ msgid "Compare Revisions"
7353
- #~ msgstr "リビジョン比較"
7354
- #~ msgid "Date Created"
7355
- #~ msgstr "作成日"
7356
- #~ msgid "Content, title, and excerpt are empty."
7357
- #~ msgstr "本文、タイトル、抜粋が空欄です。"
7358
- #~ msgid "Could not update post in the database"
7359
- #~ msgstr "データベース内の投稿を更新できませんでした"
7360
- #~ msgid "Could not insert post into the database"
7361
- #~ msgstr "データベースに投稿を追加できませんでした"
7362
- #~ msgid "The page template is invalid."
7363
- #~ msgstr "ページテンプレートが不正です。"
7364
- #~ msgid "Cannot create a revision of a revision"
7365
- #~ msgstr "リビジョンのリビジョンは作成できません"
7366
- #~ msgid "You do not have permission to preview drafts."
7367
- #~ msgstr "下書きをプレビューする権限はありません。"
7368
- #~ msgid ""
7369
- #~ "An error has occurred, which probably means the feed is down. Try again "
7370
- #~ "later."
7371
- #~ msgstr ""
7372
- #~ "エラーが発生しました。ご指定のフィードは現在利用できないようです。後ほど再"
7373
- #~ "度お試しください。"
7374
- #~ msgid ""
7375
- #~ "You are about to delete the selected items.\n"
7376
- #~ " 'Cancel' to stop, 'OK' to delete."
7377
- #~ msgstr ""
7378
- #~ "選択した項目を削除しようとしています。\n"
7379
- #~ " 'キャンセル' で中止、'OK' で削除します。"
7380
- #~ msgid "(Quick Links)"
7381
- #~ msgstr "(クイックリンク)"
7382
- #~ msgid "Enter a word to look up:"
7383
- #~ msgstr "調べる単語を入力:"
7384
- #~ msgid "Dictionary lookup"
7385
- #~ msgstr "辞書を参照"
7386
- #~ msgid "lookup"
7387
- #~ msgstr "検索"
7388
- #~ msgid "Close all open tags"
7389
- #~ msgstr "開いているすべてのタグを閉じる"
7390
- #~ msgid "close tags"
7391
- #~ msgstr "タグを閉じる"
7392
- #~ msgid "Enter the URL"
7393
- #~ msgstr "URL を入力してください"
7394
- #~ msgid "Enter the URL of the image"
7395
- #~ msgstr "画像の URL を入力してください"
7396
- #~ msgid "Enter a description of the image"
7397
- #~ msgstr "画像の説明を入力してください"
7398
- #~ msgid "You do not have permission to do that."
7399
- #~ msgstr "これを実行する権限はありません。"
7400
- #~ msgid "An unidentified error has occurred."
7401
- #~ msgstr "未確認のエラーが発生しました。"
7402
- #~ msgid "You have attempted to queue too many files."
7403
- #~ msgstr "キューに入れたファイルが多すぎます。"
7404
- #~ msgid "This file is too big. Your php.ini upload_max_filesize is %s."
7405
- #~ msgstr ""
7406
- #~ "このファイルは大きすぎます。php.ini で設定されている upload_max_filesize "
7407
- #~ "は %s です。"
7408
- #~ msgid "This file is empty. Please try another."
7409
- #~ msgstr "このファイルは空です。別のファイルをお試しください。"
7410
- #~ msgid "This file type is not allowed. Please try another."
7411
- #~ msgstr ""
7412
- #~ "このファイルタイプは許可されていません。別のファイルをお試しください。"
7413
- #~ msgid "An error occurred in the upload. Please try again later."
7414
- #~ msgstr "アップロード中にエラーが発生しました。後ほど再度お試しください。"
7415
- #~ msgid ""
7416
- #~ "There was a configuration error. Please contact the server administrator."
7417
- #~ msgstr "設定にエラーがありました。サーバー管理者にお問い合わせください。"
7418
- #~ msgid "You may only upload 1 file."
7419
- #~ msgstr "ファイルは1個に限りアップロードできます。"
7420
- #~ msgid "HTTP error."
7421
- #~ msgstr "HTTP エラー。"
7422
- #~ msgid "Upload failed."
7423
- #~ msgstr "アップロードに失敗しました。"
7424
- #~ msgid "IO error."
7425
- #~ msgstr "IO エラー。"
7426
- #~ msgid "Security error."
7427
- #~ msgstr "セキュリティエラー。"
7428
- #~ msgid "File cancelled."
7429
- #~ msgstr "ファイルをキャンセルしました。"
7430
- #~ msgid "Upload stopped."
7431
- #~ msgstr "アップロードを中止しました。"
7432
- #~ msgid "Dismiss"
7433
- #~ msgstr "却下"
7434
- #~ msgid "Crunching&hellip;"
7435
- #~ msgstr "処理中&hellip;"
7436
- #~ msgid "Deleted"
7437
- #~ msgstr "削除"
7438
- #~ msgid "Separate multiple categories with commas."
7439
- #~ msgstr "カテゴリーが複数ある場合はコンマで区切ってください。"
7440
- #~ msgid "Very weak"
7441
- #~ msgstr "非常に弱い"
7442
- #~ msgid "Weak"
7443
- #~ msgstr "弱い"
7444
- #~ msgctxt "password strength"
7445
- #~ msgid "Medium"
7446
- #~ msgstr "中サイズ"
7447
- #~ msgid "Strong"
7448
- #~ msgstr "強力"
7449
- #~ msgid "Tags used on this post:"
7450
- #~ msgstr "この投稿で使われるタグ:"
7451
- #~ msgid "Publish on:"
7452
- #~ msgstr "公開日:"
7453
- #~ msgid "Schedule for:"
7454
- #~ msgstr "公開予定日時:"
7455
- #~ msgid "Published on:"
7456
- #~ msgstr "公開日時:"
7457
- #~ msgid "Show more comments"
7458
- #~ msgstr "コメントをもっと見る"
7459
- #~ msgid "No more comments found."
7460
- #~ msgstr "これ以外のコメントは見つかりません。"
7461
- #~ msgid "Password Protected"
7462
- #~ msgstr "パスワード保護"
7463
- #~ msgid "Submitted on:"
7464
- #~ msgstr "投稿日:"
7465
- #~ msgid "Word count: %d"
7466
- #~ msgstr "単語数: %d"
7467
- #~ msgid "Update completed."
7468
- #~ msgstr "更新完了"
7469
- #~ msgid "Error:"
7470
- #~ msgstr "エラー: "
7471
- #~ msgid "Error while saving the changes."
7472
- #~ msgstr "変更を保存する際にエラーが発生しました。"
7473
- #~ msgid "Remove From Bulk Edit"
7474
- #~ msgstr "一括編集から除く"
7475
- #~ msgid "Plugin Information:"
7476
- #~ msgstr "プラグイン情報:"
7477
- #~ msgid "Preview this Page"
7478
- #~ msgstr "このページをプレビュー"
7479
- #~ msgid "Preview this Post"
7480
- #~ msgstr "この投稿をプレビュー"
7481
- #~ msgid "Saving Draft&#8230;"
7482
- #~ msgstr "下書きを保存しています&#8230;"
7483
- #~ msgid "Invalid Taxonomy"
7484
- #~ msgstr "無効な分類"
7485
- #~ msgid "Empty Term"
7486
- #~ msgstr "キーワードなし"
7487
- #~ msgid "Invalid term ID"
7488
- #~ msgstr "無効な単語 ID"
7489
- #~ msgid "A name is required for this term"
7490
- #~ msgstr "この項目に名前は必須です"
7491
- #~ msgid "Could not insert term into the database"
7492
- #~ msgstr "語句をデータベースに追加できませんでした"
7493
- #~ msgid "The slug &#8220;%s&#8221; is already in use by another term"
7494
- #~ msgstr "このスラッグ &#8220;%s&#8221; はすでに他のタグで使用されています"
7495
- #~ msgid "Invalid object ID"
7496
- #~ msgstr "無効なオブジェクト ID です。"
7497
- #~ msgid "Stylesheet is missing."
7498
- #~ msgstr "スタイルシートが見つかりません。"
7499
- #~ msgid "File not readable."
7500
- #~ msgstr "ファイルが読み込めません。"
7501
- #~ msgid "Template is missing."
7502
- #~ msgstr "テンプレートが見つかりません。"
7503
- #~ msgid "<strong>ERROR</strong>: The username field is empty."
7504
- #~ msgstr "<strong>エラー</strong>: ユーザー名を入力してください。"
7505
- #~ msgid "<strong>ERROR</strong>: The password field is empty."
7506
- #~ msgstr "<strong>エラー</strong>: パスワードを入力してください。"
7507
- #~ msgid ""
7508
- #~ "<strong>ERROR</strong>: Invalid username. <a href=\"%s\" title=\"Password "
7509
- #~ "Lost and Found\">Lost your password</a>?"
7510
- #~ msgstr ""
7511
- #~ "<strong>エラー</strong>: 無効なユーザー名です。<a href=\"%s\" title=\"パス"
7512
- #~ "ワード再発行\">パスワードをお忘れですか</a> ?"
7513
- #~ msgid ""
7514
- #~ "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title="
7515
- #~ "\"Password Lost and Found\">Lost your password</a>?"
7516
- #~ msgstr ""
7517
- #~ "<strong>エラー</strong>: パスワードが違います。<a href=\"%s\" title=\"パス"
7518
- #~ "ワード再発行\">パスワードをお忘れですか</a> ?"
7519
- #~ msgid "Please log in again."
7520
- #~ msgstr "もう一度ログインしてください。"
7521
- #~ msgid "Sidebar %d"
7522
- #~ msgstr "サイドバー %d"
7523
- #~ msgid "<strong>ERROR</strong>: WordPress %s requires MySQL 4.0.0 or higher"
7524
- #~ msgstr ""
7525
- #~ "<strong>エラー</strong>: WordPress %s には MySQL 4.0.0 以上が必要です。"
7526
- #~ msgid "Powered by WordPress"
7527
- #~ msgstr "Powered by WordPress"
7528
- #~ msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
7529
- #~ msgstr ""
7530
- #~ "<strong>エラー</strong>: ユーザー名かメールアドレスを入力してください。"
7531
- #~ msgid ""
7532
- #~ "<strong>ERROR</strong>: There is no user registered with that email "
7533
- #~ "address."
7534
- #~ msgstr ""
7535
- #~ "<strong>エラー</strong>: そのメールアドレスのユーザーは登録されておりませ"
7536
- #~ "ん。"
7537
- #~ msgid "<strong>ERROR</strong>: Invalid username or e-mail."
7538
- #~ msgstr "<strong>エラー</strong>: 無効なユーザー名またはメールアドレスです。"
7539
- #~ msgid "Password reset is not allowed for this user"
7540
- #~ msgstr "あなたのユーザー権限ではパスワードの初期化はできません。"
7541
- #~ msgid ""
7542
- #~ "Someone has asked to reset the password for the following site and "
7543
- #~ "username."
7544
- #~ msgstr "次のサイトとユーザー名のパスワードのリセットが要請されました。"
7545
- #~ msgid ""
7546
- #~ "To reset your password visit the following address, otherwise just ignore "
7547
- #~ "this email and nothing will happen."
7548
- #~ msgstr ""
7549
- #~ "パスワードをリセットするには次のアドレスを開いてください。リセットしない場"
7550
- #~ "合はこのメールを無視してください。"
7551
- #~ msgid "[%s] Password Reset"
7552
- #~ msgstr "[%s] パスワードのリセット"
7553
- #~ msgid "The e-mail could not be sent."
7554
- #~ msgstr "メールを送信できませんでした。"
7555
- #~ msgid "Possible reason: your host may have disabled the mail() function..."
7556
- #~ msgstr ""
7557
- #~ "考えられる理由: あなたのサーバーでは mail() 関数が有効になっていないのかも"
7558
- #~ "しれません。"
7559
- #~ msgid "Invalid key"
7560
- #~ msgstr "無効なキー"
7561
- #~ msgid "[%s] Your new password"
7562
- #~ msgstr "[%s] 新しいパスワード"
7563
- #~ msgid ""
7564
- #~ "<strong>ERROR</strong>: This username is invalid. Please enter a valid "
7565
- #~ "username."
7566
- #~ msgstr ""
7567
- #~ "<strong>エラー</strong>: このユーザー名は無効です。有効なユーザー名を入力"
7568
- #~ "してください。"
7569
- #~ msgid ""
7570
- #~ "<strong>ERROR</strong>: This username is already registered, please "
7571
- #~ "choose another one."
7572
- #~ msgstr ""
7573
- #~ "<strong>エラー</strong>: このユーザー名はすでに登録されています。別のユー"
7574
- #~ "ザー名を選んでください。"
7575
- #~ msgid "<strong>ERROR</strong>: Please type your e-mail address."
7576
- #~ msgstr "<strong>エラー</strong>: メールアドレスを入力してください。"
7577
- #~ msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
7578
- #~ msgstr "<strong>エラー</strong>: メールアドレスが正しくありません。"
7579
- #~ msgid ""
7580
- #~ "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the "
7581
- #~ "<a href=\"mailto:%s\">webmaster</a> !"
7582
- #~ msgstr ""
7583
- #~ "<strong>エラー</strong>: 登録できませんでした… <a href=\"mailto:%s\">管理"
7584
- #~ "者</a>に連絡してください !"
7585
- #~ msgid "Sorry, that key does not appear to be valid."
7586
- #~ msgstr "そのキーは無効なもののようです。"
7587
- #~ msgid "Lost Password"
7588
- #~ msgstr "パスワード紛失"
7589
- #~ msgid ""
7590
- #~ "Please enter your username or e-mail address. You will receive a new "
7591
- #~ "password via e-mail."
7592
- #~ msgstr ""
7593
- #~ "ユーザー名かメールアドレスを入力してください。新しいパスワードをメールで送"
7594
- #~ "信します。"
7595
- #~ msgid "Username or E-mail:"
7596
- #~ msgstr "ユーザー名またはメールアドレス:"
7597
- #~ msgid "Get New Password"
7598
- #~ msgstr "新しいパスワードを取得"
7599
- #~ msgid "Are you lost?"
7600
- #~ msgstr "迷子になってしまいましたか ?"
7601
- #~ msgid "&larr; Back to %s"
7602
- #~ msgstr "&larr; %s へ戻る"
7603
- #~ msgid "Registration Form"
7604
- #~ msgstr "登録フォーム"
7605
- #~ msgid "Register For This Site"
7606
- #~ msgstr "このブログに登録"
7607
- #~ msgid "A password will be e-mailed to you."
7608
- #~ msgstr "パスワードをあなたのメールアドレスに送信します。"
7609
- #~ msgid "Password Lost and Found"
7610
- #~ msgstr "パスワード紛失取り扱い"
7611
- #~ msgid "Lost your password?"
7612
- #~ msgstr "パスワードをお忘れですか ?"
7613
- #~ msgid ""
7614
- #~ "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
7615
- #~ "browser. You must <a href='http://www.google.com/cookies.html'>enable "
7616
- #~ "cookies</a> to use WordPress."
7617
- #~ msgstr ""
7618
- #~ "<strong>エラー</strong>: お使いのブラウザはクッキーをサポートしないかまた"
7619
- #~ "は受け付けていません。WordPress を使うには<a href='http://www.google.co."
7620
- #~ "jp/cookies.html'>クッキーを有効にする</a>ことが必要です。"
7621
- #~ msgid "You are now logged out."
7622
- #~ msgstr "ログアウトしました。"
7623
- #~ msgid "User registration is currently not allowed."
7624
- #~ msgstr "現在、ユーザー登録はできません"
7625
- #~ msgid "Check your e-mail for the confirmation link."
7626
- #~ msgstr "確認用のリンクをメールで送信しましたので、ご確認ください。"
7627
- #~ msgid "Check your e-mail for your new password."
7628
- #~ msgstr "新しいパスワードをメールで送信しましたので、ご確認ください。"
7629
- #~ msgid "Registration complete. Please check your e-mail."
7630
- #~ msgstr "登録を完了しました。メールを確認してください。"
7631
- #~ msgid "Remember Me"
7632
- #~ msgstr "ログイン情報を記憶"
7633
- #~ msgid "There doesn&#8217;t seem to be any new mail."
7634
- #~ msgstr "新しいメールはありません。"
7635
- #~ msgid "Author is %s"
7636
- #~ msgstr "作成者は %s です。"
7637
- #~ msgid "<strong>Author:</strong> %s"
7638
- #~ msgstr "<strong>作成者:</strong> %s"
7639
- #~ msgid "<strong>Posted title:</strong> %s"
7640
- #~ msgstr "<strong>投稿したタイトル:</strong> %s"
7641
- #~ msgid "Oops: %s"
7642
- #~ msgstr "エラー: %s"
7643
- #~ msgid "Mission complete. Message <strong>%s</strong> deleted."
7644
- #~ msgstr "任務完了。メッセージ <strong>%s</strong> を削除しました。"
7645
- #~ msgid ""
7646
- #~ "XML-RPC services are disabled on this blog. An admin user can enable "
7647
- #~ "them at %s"
7648
- #~ msgstr ""
7649
- #~ "XML-RPC は、このブログでは無効です。管理者ユーザーは %s でこれを有効にする"
7650
- #~ "ことができます。"
7651
- #~ msgid "Bad login/pass combination."
7652
- #~ msgstr "誤ったログイン/パスワードの組み合わせ。"
7653
- #~ msgid "Software Name"
7654
- #~ msgstr "ソフト名"
7655
- #~ msgid "Software Version"
7656
- #~ msgstr "バージョン"
7657
- #~ msgid "Time Zone"
7658
- #~ msgstr "タイムゾーン"
7659
- #~ msgid "Blog Tagline"
7660
- #~ msgstr "キャッチフレーズ"
7661
- #~ msgid "Sorry, you cannot edit this page."
7662
- #~ msgstr "このページは編集できません。"
7663
- #~ msgid "Sorry, no such page."
7664
- #~ msgstr "そのようなページはありません。"
7665
- #~ msgid "Sorry, you cannot edit pages."
7666
- #~ msgstr "ページの編集はできません。"
7667
- #~ msgid "Sorry, you cannot add new pages."
7668
- #~ msgstr "新しいページの追加はできません。"
7669
- #~ msgid "Sorry, you do not have the right to delete this page."
7670
- #~ msgstr "このページを削除する権限はありません。"
7671
- #~ msgid "Failed to delete the page."
7672
- #~ msgstr "このページの削除に失敗しました。"
7673
- #~ msgid "Sorry, you do not have the right to edit this page."
7674
- #~ msgstr "このページを編集する権限はありません。"
7675
- #~ msgid "Sorry, you cannot edit posts on this blog."
7676
- #~ msgstr "このブログの投稿は編集できません。"
7677
- #~ msgid ""
7678
- #~ "Sorry, you must be able to edit posts on this blog in order to view tags."
7679
- #~ msgstr "タグを表示するにはこのブログの投稿を編集する権限が必要です。"
7680
- #~ msgid "Sorry, you do not have the right to add a category."
7681
- #~ msgstr "カテゴリー追加の権限がありません。"
7682
- #~ msgid "Sorry, the new category failed."
7683
- #~ msgstr "新しいカテゴリーの追加に失敗しました。"
7684
- #~ msgid "Sorry, you do not have the right to delete a category."
7685
- #~ msgstr "カテゴリーを削除する権限がありません。"
7686
- #~ msgid ""
7687
- #~ "Sorry, you must be able to edit posts to this blog in order to view "
7688
- #~ "categories."
7689
- #~ msgstr "カテゴリーを表示するにはこのブログでの投稿編集の権限が必要です。"
7690
- #~ msgid "You are not allowed to moderate comments on this blog."
7691
- #~ msgstr "このブログでコメントを承認する権限がありません。"
7692
- #~ msgid "Invalid comment ID."
7693
- #~ msgstr "無効なコメント ID です。"
7694
- #~ msgid "Sorry, you cannot edit comments."
7695
- #~ msgstr "コメントの編集はできません。"
7696
- #~ msgid "Invalid comment status."
7697
- #~ msgstr "無効なコメントステータスです。"
7698
- #~ msgid "Sorry, the comment could not be edited. Something wrong happened."
7699
- #~ msgstr ""
7700
- #~ "すみませんが、コメントを編集できませんでした。何か問題が起こりました。"
7701
- #~ msgid "You must be registered to comment"
7702
- #~ msgstr "コメントするにはユーザー登録する必要があります"
7703
- #~ msgid "Invalid post ID."
7704
- #~ msgstr "無効な投稿 ID です。"
7705
- #~ msgid "Comment author name and email are required"
7706
- #~ msgstr "名前とメールアドレスの入力を必須にする"
7707
- #~ msgid "A valid email address is required"
7708
- #~ msgstr "有効なメールアドレスを入力してください"
7709
- #~ msgid "You are not allowed access to details about this blog."
7710
- #~ msgstr "当ブログの詳細へのアクセスは許可されていません。"
7711
- #~ msgid "You are not allowed access to details about comments."
7712
- #~ msgstr "コメントの詳細へのアクセスは許可されていません。"
7713
- #~ msgid "You are not allowed to update options."
7714
- #~ msgstr "設定の更新は許可されていません。"
7715
- #~ msgid "Sorry, you do not have access to user data on this blog."
7716
- #~ msgstr "このブログのユーザーデータにアクセスできません。"
7717
- #~ msgid "Sorry, you cannot edit this post."
7718
- #~ msgstr "この投稿の編集はできません。"
7719
- #~ msgid "Either there are no posts, or something went wrong."
7720
- #~ msgstr "投稿がないか、何かがうまくいきませんでした。"
7721
- #~ msgid "Sorry, this user can not edit the template."
7722
- #~ msgstr "このユーザーではテンプレートの編集はできません。"
7723
- #~ msgid "Sorry, this user cannot edit the template."
7724
- #~ msgstr "このユーザーではテンプレートの編集はできません。"
7725
- #~ msgid ""
7726
- #~ "Either the file is not writable, or something wrong happened. The file "
7727
- #~ "has not been updated."
7728
- #~ msgstr ""
7729
- #~ "ファイルが書き込み不可になっているか、何か問題が起こったようです。このファ"
7730
- #~ "イルは更新されませんでした。。"
7731
- #~ msgid "Sorry, you are not allowed to post on this blog."
7732
- #~ msgstr "当ブログへの投稿は許可されていません。"
7733
- #~ msgid "Sorry, no such post."
7734
- #~ msgstr "そのような投稿はありません。"
7735
- #~ msgid "Sorry, you do not have the right to publish this post."
7736
- #~ msgstr "この投稿を公開する権限はありません。"
7737
- #~ msgid "Sorry, you are not allowed to publish posts on this blog."
7738
- #~ msgstr "このブログでの投稿の公開は許可されていません。"
7739
- #~ msgid "Sorry, you are not allowed to publish pages on this blog."
7740
- #~ msgstr "このブログでのページの公開は許可されていません。"
7741
- #~ msgid "Invalid post type."
7742
- #~ msgstr "無効な投稿形式。"
7743
- #~ msgid "You are not allowed to post as this user"
7744
- #~ msgstr "このユーザーでの投稿は許可されていません。"
7745
- #~ msgid "You are not allowed to create pages as this user"
7746
- #~ msgstr "このユーザーでのページの作成は許可されていません。"
7747
- #~ msgid "You are not allowed to change the post author as this user."
7748
- #~ msgstr "このユーザーでの投稿作成者の変更は許可されていません。"
7749
- #~ msgid "You are not allowed to change the page author as this user."
7750
- #~ msgstr "このユーザーでのページ作成者の変更は許可されていません。"
7751
- #~ msgid "Sorry, you do not have the right to publish this page."
7752
- #~ msgstr "このページを公開する権限はありません。"
7753
- #~ msgid "Sorry, your entry could not be edited. Something wrong happened."
7754
- #~ msgstr "投稿を編集できませんでした。何か問題が起こりました。"
7755
- #~ msgid ""
7756
- #~ "Sorry, you must be able to edit posts on this blog in order to view "
7757
- #~ "categories."
7758
- #~ msgstr "カテゴリーを表示するにはこのブログの投稿を編集する権限が必要です。"
7759
- #~ msgid "You are not allowed to upload files to this site."
7760
- #~ msgstr "このサイトにファイルをアップロードする権限はありません。"
7761
- #~ msgid "Could not write file %1$s (%2$s)"
7762
- #~ msgstr "ファイル %1$s (%2$s) に書き込めません"
7763
- #~ msgid "Sorry, you can not edit this post."
7764
- #~ msgstr "この投稿の編集はできません。"
7765
- #~ msgid "Is there no link to us?"
7766
- #~ msgstr "私たちへのリンクはないのですか ?"
7767
- #~ msgid ""
7768
- #~ "The specified target URL cannot be used as a target. It either "
7769
- #~ "doesn&#8217;t exist, or it is not a pingback-enabled resource."
7770
- #~ msgstr ""
7771
- #~ "指定されたターゲット URL はターゲットとして使用できません。この URL は存在"
7772
- #~ "しないかピンバックが有効になっていません。"
7773
- #~ msgid ""
7774
- #~ "The source URL and the target URL cannot both point to the same resource."
7775
- #~ msgstr "ソース URL とターゲット URL は同じリソースを指すことはできません。"
7776
- #~ msgid "The pingback has already been registered."
7777
- #~ msgstr "このピンバックはすでに登録済みです。"
7778
- #~ msgid "The source URL does not exist."
7779
- #~ msgstr "ソース URL が存在しません。"
7780
- #~ msgid "We cannot find a title on that page."
7781
- #~ msgstr "このページのタイトルが見つかりませんでした。"
7782
- #~ msgid ""
7783
- #~ "The source URL does not contain a link to the target URL, and so cannot "
7784
- #~ "be used as a source."
7785
- #~ msgstr ""
7786
- #~ "ソース URL にターゲット URL へのリンクが含まれていないので、ソースとして使"
7787
- #~ "用することができません。"
7788
- #~ msgid "Pingback from %1$s to %2$s registered. Keep the web talking! :-)"
7789
- #~ msgstr ""
7790
- #~ "%1$s より %2$s へのピンバックが登録されました。ウェブでの会話を続けてくだ"
7791
- #~ "さい ! :-)"
7792
- #~ msgid "The specified target URL does not exist."
7793
- #~ msgstr "指定したターゲット URL が存在しません。"
7794
- #~ msgid ""
7795
- #~ "\n"
7796
- #~ "<h1>Error establishing a database connection</h1>\n"
7797
- #~ "<p>This either means that the username and password information in your "
7798
- #~ "<code>wp-config.php</code> file is incorrect or we can't contact the "
7799
- #~ "database server at <code>%s</code>. This could mean your host's database "
7800
- #~ "server is down.</p>\n"
7801
- #~ "<ul>\n"
7802
- #~ "\t<li>Are you sure you have the correct username and password?</li>\n"
7803
- #~ "\t<li>Are you sure that you have typed the correct hostname?</li>\n"
7804
- #~ "\t<li>Are you sure that the database server is running?</li>\n"
7805
- #~ "</ul>\n"
7806
- #~ "<p>If you're unsure what these terms mean you should probably contact "
7807
- #~ "your host. If you still need help you can always visit the <a "
7808
- #~ "href='http://wordpress.org/support/'>WordPress Support Forums</a>.</p>\n"
7809
- #~ msgstr ""
7810
- #~ "\n"
7811
- #~ "<h1>データベース接続確立のエラー</h1>\n"
7812
- #~ "<p>これは <code>wp-config.php</code> ファイルのユーザー名とパスワードが間"
7813
- #~ "違っているか、<code>%s</code> のデータベースサーバーに接続できないかのどち"
7814
- #~ "らかを意味します。ホストのデータベースサーバーがダウンしているのかもしれま"
7815
- #~ "せん。</p>\n"
7816
- #~ "<ul>\n"
7817
- #~ "\t<li>ユーザー名とパスワードに間違いはありませんか ?</li>\n"
7818
- #~ "\t<li>ホスト名に間違いはありませんか ?</li>\n"
7819
- #~ "\t<li>データベースサーバーは動いていますか ?</li>\n"
7820
- #~ "</ul>\n"
7821
- #~ "<p>上記の用語がよく分からなければ<strong>サーバーの管理者にお問い合わせく"
7822
- #~ "ださい</strong>。助言が必要であれば <a href='http://ja.forums.wordpress."
7823
- #~ "org/'>WordPress 日本語フォーラム</a>を訪れるといいでしょう。(訳注: オリジ"
7824
- #~ "ナルのリンク先は<a href='http://wordpress.org/support/'>WordPress サポート"
7825
- #~ "フォーラム (英語)</a>)</p>\n"
7826
- #~ msgid "Invalid database prefix"
7827
- #~ msgstr "不正なデータベース接頭辞"
7828
- #~ msgid ""
7829
- #~ "\n"
7830
- #~ "<h1>Can&#8217;t select database</h1>\n"
7831
- #~ "<p>We were able to connect to the database server (which means your "
7832
- #~ "username and password is okay) but not able to select the <code>%1$s</"
7833
- #~ "code> database.</p>\n"
7834
- #~ "<ul>\n"
7835
- #~ "<li>Are you sure it exists?</li>\n"
7836
- #~ "<li>Does the user <code>%2$s</code> have permission to use the <code>%1"
7837
- #~ "$s</code> database?</li>\n"
7838
- #~ "<li>On some systems the name of your database is prefixed with your "
7839
- #~ "username, so it would be like <code>username_%1$s</code>. Could that be "
7840
- #~ "the problem?</li>\n"
7841
- #~ "</ul>\n"
7842
- #~ "<p>If you don't know how to setup a database you should <strong>contact "
7843
- #~ "your host</strong>. If all else fails you may find help at the <a href="
7844
- #~ "\"http://wordpress.org/support/\">WordPress Support Forums</a>.</p>"
7845
- #~ msgstr ""
7846
- #~ "\n"
7847
- #~ "<h1>データベースを選択できません</h1>\n"
7848
- #~ "<p>データベースサーバーへ接続することはできましたが (ユーザー名とパスワー"
7849
- #~ "ドは正しいということです)、<code>%1$s</code> データベースを選択することが"
7850
- #~ "できませんでした。</p>\n"
7851
- #~ "<ul>\n"
7852
- #~ "<li>そのデータベースは作成済みですか ?</li>\n"
7853
- #~ "<li>ユーザー <code>%2$s</code> に <code>%1$s</code> データベースを使用する"
7854
- #~ "権限はありますか ?</li>\n"
7855
- #~ "<li>システムによっては、例えば <code>username_%1$s</code> のように、データ"
7856
- #~ "ベース名の前にユーザー名が付加される場合があります。その可能性はありません"
7857
- #~ "か ?</li>\n"
7858
- #~ "</ul>\n"
7859
- #~ "<p>データベースのセットアップ方法が分からなければ<strong>お使いのサーバー"
7860
- #~ "管理者</strong>にお問い合わせください。もし何をしてもうまくいかなければ、"
7861
- #~ "<a href=\"http://ja.forums.wordpress.org/\">WordPress 日本語フォーラム</a>"
7862
- #~ "で助言がもらえるかもしれません。(訳注: オリジナルのリンク先は<a "
7863
- #~ "href='http://wordpress.org/support/'>WordPress サポートフォーラム (英語)</"
7864
- #~ "a>)</p>"
7865
- #~ msgid "WordPress database error %1$s for query %2$s made by %3$s"
7866
- #~ msgstr "WordPress データベースエラー: %1$s for query %2$s made by %3$s"
7867
- #~ msgid "WordPress database error %1$s for query %2$s"
7868
- #~ msgstr "WordPress データベースエラー: %1$s for query %2$s"
7869
- #~ msgid ""
7870
- #~ " $db->get_row(string query, output type, int offset) -- Output type must "
7871
- #~ "be one of: OBJECT, ARRAY_A, ARRAY_N"
7872
- #~ msgstr ""
7873
- #~ " $db->get_row(string query, output type, int offset) -- 出力の型は次のいず"
7874
- #~ "れかでなければなりません: OBJECT, ARRAY_A, ARRAY_N"
7875
- #~ msgid ""
7876
- #~ "Your server is running PHP version %s but WordPress requires at least 4.3."
7877
- #~ msgstr ""
7878
- #~ "<サーバーの PHP のバージョンは %s です。WordPress は 4.3 以上でご利用にな"
7879
- #~ "れます。"
7880
- #~ msgid ""
7881
- #~ "Your PHP installation appears to be missing the MySQL extension which is "
7882
- #~ "required by WordPress."
7883
- #~ msgstr "お使いのサーバーの PHP では MySQL 拡張を利用できないようです。"
7884
- #~ msgid ""
7885
- #~ "<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config."
7886
- #~ "php</code> can only contain numbers, letters, and underscores."
7887
- #~ msgstr ""
7888
- #~ "<strong>エラー</strong>: <code>wp-config.php</code> 内の <code>"
7889
- #~ "$table_prefix</code> には半角英数字と下線のみしか使えません。"
7890
- #~ msgid "ltr"
7891
- #~ msgstr "ltr"
7892
- #~ msgid ""
7893
- #~ "There doesn't seem to be a <code>wp-config.php</code> file. I need this "
7894
- #~ "before we can get started. Need more help? <a href='http://codex."
7895
- #~ "wordpress.org/Editing_wp-config.php'>We got it</a>. You can create a "
7896
- #~ "<code>wp-config.php</code> file through a web interface, but this doesn't "
7897
- #~ "work for all server setups. The safest way is to manually create the file."
7898
- #~ "</p><p><a href='%ssetup-config.php' class='button'>Create a Configuration "
7899
- #~ "File</a>"
7900
- #~ msgstr ""
7901
- #~ "ファイルが見つかりません。インストールを開始するには <code>wp-config.php</"
7902
- #~ "code> ファイルが必要です。お困りでしたら<a href='http://wpdocs."
7903
- #~ "sourceforge.jp/wp-config.php_%%E3%%81%%AE%%E7%%B7%%A8%%E9%%9B%%86'>「wp-"
7904
- #~ "config.php の編集」</a> を参照してください。ウィザード形式で <code>wp-"
7905
- #~ "config.php</code> ファイルを作成することもできますが、すべてのサーバーにお"
7906
- #~ "いて正常に動作するわけではありません。最も安全な方法は手動でファイルを作成"
7907
- #~ "することです。</p><p><a href='%ssetup-config.php' class='button'><code>wp-"
7908
- #~ "config.php</code> ファイルを作成する</a>"
7909
- #~ msgid ""
7910
- #~ "Enable keyboard shortcuts for comment moderation. <a href=\"http://codex."
7911
- #~ "wordpress.org/Keyboard_Shortcuts\">More information</a>"
7912
- #~ msgstr ""
7913
- #~ "コメント承認のキーボードショートカットを使う。<a href=\"http://wpdocs."
7914
- #~ "sourceforge.jp/Keyboard_Shortcuts\">詳細</a>"
7915
- #~ msgid "Return to Theme Installer."
7916
- #~ msgstr "テーマインストーラに戻る"
7917
- #~ msgid ""
7918
- #~ "<p>There is a new version of %1$s available. <a href=\"%2$s\" class="
7919
- #~ "\"thickbox\" title=\"%1$s\">View version %3$s Details</a>.</p>"
7920
- #~ msgstr ""
7921
- #~ "<p>新しいバージョンの %1$s が利用可能です。 <a href=\"%2$s\" class="
7922
- #~ "\"thickbox\" title=\"%1$s\">バージョン %3$s の詳細をご覧ください</a>。</p>"
7923
- #~ msgid "%s Feed"
7924
- #~ msgstr "%s フィード"
7925
- #~ msgid "%s Comments Feed"
7926
- #~ msgstr "%s コメントフィード"
7927
- #~ msgid "(Password not shown)"
7928
- #~ msgstr "(パスワード非表示)"
7929
-
1
+ # Japanese translation for duplicate-post
2
+ # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
3
+ # This file is distributed under the same license as the duplicate-post package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
  #
6
  msgid ""
7
  msgstr ""
8
+ "Project-Id-Version: duplicate-post\n"
9
+ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10
+ "POT-Creation-Date: 2010-05-21 10:01+0000\n"
11
+ "PO-Revision-Date: 2010-05-19 13:23+0000\n"
12
+ "Last-Translator: Enrico Battocchi <Unknown>\n"
13
+ "Language-Team: Japanese <ja@li.org>\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
18
+ "X-Generator: Launchpad (build Unknown)\n"
 
 
 
 
 
19
 
20
  #: duplicate-post.php:39
21
  msgid "No post to duplicate has been supplied!"
29
  msgid "No page to duplicate has been supplied!"
30
  msgstr "複製元のページが指定されていません !"
31
 
32
+ #: duplicate-post.php:164 duplicate-post.php:195
33
  msgid "Make a duplicate from this post"
34
  msgstr "この投稿を元に複製を作成"
35
 
36
+ #: duplicate-post.php:165 duplicate-post.php:179 duplicate-post.php:196
37
+ #: duplicate-post.php:207
38
  msgid "Duplicate"
39
  msgstr "複製"
40
 
41
+ #: duplicate-post.php:178 duplicate-post.php:206
42
  msgid "Make a duplicate from this page"
43
  msgstr "この投稿を元に複製を作成"
44
 
45
+ #: duplicate-post.php:225
46
  msgid "Copy to a new draft"
47
  msgstr "新規下書きとしてコピー"
48
 
49
+ #: duplicate-post.php:519
50
+ msgid "Duplicate Post Options"
51
+ msgstr "Duplicate Post 設定"
52
+
53
+ #. #-#-#-#-# plugin.pot (Duplicate Post 1.1) #-#-#-#-#
54
+ #. Plugin Name of the plugin/theme
55
+ #: duplicate-post.php:519 duplicate-post.php:525
56
  msgid "Duplicate Post"
57
  msgstr "Duplicate Post"
58
 
59
+ #: duplicate-post.php:532
60
+ msgid "Copy post/page date also"
61
+ msgstr ""
62
+
63
+ #: duplicate-post.php:534
64
+ msgid ""
65
+ "Normally, the new draft has publication date set to current time: check the "
66
+ "box to copy the original post/page date"
67
+ msgstr ""
68
+
69
+ #: duplicate-post.php:538
70
+ msgid "Do not copy these fields"
71
+ msgstr "これらの項目はコピーしないでください"
72
+
73
+ #: duplicate-post.php:541
74
+ msgid ""
75
+ "Comma-separated list of meta fields that must not be copied when cloning a "
76
+ "post/page"
77
+ msgstr ""
78
+
79
+ #: duplicate-post.php:545
80
+ msgid "Title prefix"
81
+ msgstr ""
82
+
83
+ #: duplicate-post.php:548
84
+ msgid ""
85
+ "Prefix to be added before the original title when cloning a post/page, e.g. "
86
+ "\"Copy of\" (blank for no prefix)"
87
+ msgstr ""
88
+
89
+ #: duplicate-post.php:552
90
+ msgid "Minimum level to copy posts"
91
+ msgstr ""
92
+
93
+ #: duplicate-post.php:576
94
+ msgid ""
95
+ "Warning: users will be able to copy all posts, even those of higher level "
96
+ "users"
97
+ msgstr ""
98
+
99
+ #: duplicate-post.php:583
100
+ msgid "Save Changes"
101
+ msgstr "変更を保存"
102
 
103
+ #: duplicate-post.php:595
104
+ msgid "Donate"
105
+ msgstr "寄付"
106
+
107
+ #: duplicate-post.php:596
108
+ msgid "Translate"
109
+ msgstr ""
110
+
111
+ #. Plugin URI of the plugin/theme
112
+ msgid "http://www.lopo.it/duplicate-post-plugin/"
113
+ msgstr "http://www.lopo.it/duplicate-post-plugin/"
114
+
115
+ #. Description of the plugin/theme
116
  msgid "Creates a copy of a post."
117
  msgstr "投稿の複製を作成します。"
118
 
119
+ #. Author of the plugin/theme
120
  msgid "Enrico Battocchi"
121
  msgstr "Enrico Battocchi"
122
 
123
+ #. Author URI of the plugin/theme
124
  msgid "http://www.lopo.it"
125
  msgstr "http://www.lopo.it"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/duplicate-post-pl_PL.mo ADDED
Binary file
languages/duplicate-post-pl_PL.po ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Polish translation for duplicate-post
2
+ # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
3
+ # This file is distributed under the same license as the duplicate-post package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: duplicate-post\n"
9
+ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10
+ "POT-Creation-Date: 2010-05-21 10:01+0000\n"
11
+ "PO-Revision-Date: 2010-06-07 21:29+0000\n"
12
+ "Last-Translator: Adam Skiba <Unknown>\n"
13
+ "Language-Team: Polish <pl@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
18
+ "X-Generator: Launchpad (build Unknown)\n"
19
+
20
+ #: duplicate-post.php:39
21
+ msgid "No post to duplicate has been supplied!"
22
+ msgstr "Niedostraczono postu do zduplikowania!"
23
+
24
+ #: duplicate-post.php:58 duplicate-post.php:86
25
+ msgid "Post creation failed, could not find original post:"
26
+ msgstr ""
27
+ "Stworzenie postu niepowiodło się, nie można było znaleźć oryginalnego postu:"
28
+
29
+ #: duplicate-post.php:67
30
+ msgid "No page to duplicate has been supplied!"
31
+ msgstr "Niedostraczono strony do zduplikowania!"
32
+
33
+ #: duplicate-post.php:164 duplicate-post.php:195
34
+ msgid "Make a duplicate from this post"
35
+ msgstr "Stwórz duplikat tego postu."
36
+
37
+ #: duplicate-post.php:165 duplicate-post.php:179 duplicate-post.php:196
38
+ #: duplicate-post.php:207
39
+ msgid "Duplicate"
40
+ msgstr "Duplikuj"
41
+
42
+ #: duplicate-post.php:178 duplicate-post.php:206
43
+ msgid "Make a duplicate from this page"
44
+ msgstr "Stwórz duplikat tej strony."
45
+
46
+ #: duplicate-post.php:225
47
+ msgid "Copy to a new draft"
48
+ msgstr "Skopiuj do nowego szkicu"
49
+
50
+ #: duplicate-post.php:519
51
+ msgid "Duplicate Post Options"
52
+ msgstr "Opcje Duplicate Post"
53
+
54
+ #. #-#-#-#-# plugin.pot (Duplicate Post 1.1) #-#-#-#-#
55
+ #. Plugin Name of the plugin/theme
56
+ #: duplicate-post.php:519 duplicate-post.php:525
57
+ msgid "Duplicate Post"
58
+ msgstr "Duplikuj wpis"
59
+
60
+ #: duplicate-post.php:532
61
+ msgid "Copy post/page date also"
62
+ msgstr "Kopiuj również datę wpisu/strony"
63
+
64
+ #: duplicate-post.php:534
65
+ msgid ""
66
+ "Normally, the new draft has publication date set to current time: check the "
67
+ "box to copy the original post/page date"
68
+ msgstr ""
69
+ "Normalnie, nowy szkic ma datę publikacji ustawioną na aktualną datę: zaznacz "
70
+ "pole wyboru aby skopiować oryginalną datę wpisu/strony."
71
+
72
+ #: duplicate-post.php:538
73
+ msgid "Do not copy these fields"
74
+ msgstr "Nie kopiuj tych pól"
75
+
76
+ #: duplicate-post.php:541
77
+ msgid ""
78
+ "Comma-separated list of meta fields that must not be copied when cloning a "
79
+ "post/page"
80
+ msgstr ""
81
+
82
+ #: duplicate-post.php:545
83
+ msgid "Title prefix"
84
+ msgstr ""
85
+
86
+ #: duplicate-post.php:548
87
+ msgid ""
88
+ "Prefix to be added before the original title when cloning a post/page, e.g. "
89
+ "\"Copy of\" (blank for no prefix)"
90
+ msgstr ""
91
+
92
+ #: duplicate-post.php:552
93
+ msgid "Minimum level to copy posts"
94
+ msgstr ""
95
+
96
+ #: duplicate-post.php:576
97
+ msgid ""
98
+ "Warning: users will be able to copy all posts, even those of higher level "
99
+ "users"
100
+ msgstr ""
101
+ "Uwaga: użytkownicy będą mieli możliwość kopiowania wszystkich postów, nawet "
102
+ "tych od użytkowników z wyższymi prawami."
103
+
104
+ #: duplicate-post.php:583
105
+ msgid "Save Changes"
106
+ msgstr "Zapisz zmiany"
107
+
108
+ #: duplicate-post.php:595
109
+ msgid "Donate"
110
+ msgstr "Wesprzyj"
111
+
112
+ #: duplicate-post.php:596
113
+ msgid "Translate"
114
+ msgstr "Przetłumacz"
115
+
116
+ #. Plugin URI of the plugin/theme
117
+ msgid "http://www.lopo.it/duplicate-post-plugin/"
118
+ msgstr "http://www.lopo.it/duplicate-post-plugin/"
119
+
120
+ #. Description of the plugin/theme
121
+ msgid "Creates a copy of a post."
122
+ msgstr "Tworzy kopię postu."
123
+
124
+ #. Author of the plugin/theme
125
+ msgid "Enrico Battocchi"
126
+ msgstr "Enrico Battocchi"
127
+
128
+ #. Author URI of the plugin/theme
129
+ msgid "http://www.lopo.it"
130
+ msgstr "http://www.lopo.it"
languages/duplicate-post-ro_RO.mo ADDED
Binary file
languages/duplicate-post-ro_RO.po ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Romanian translation for duplicate-post
2
+ # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
3
+ # This file is distributed under the same license as the duplicate-post package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: duplicate-post\n"
9
+ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10
+ "POT-Creation-Date: 2010-05-21 10:01+0000\n"
11
+ "PO-Revision-Date: 2010-05-24 15:40+0000\n"
12
+ "Last-Translator: Enrico Battocchi <Unknown>\n"
13
+ "Language-Team: Romanian <ro@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
18
+ "X-Generator: Launchpad (build Unknown)\n"
19
+
20
+ #: duplicate-post.php:39
21
+ msgid "No post to duplicate has been supplied!"
22
+ msgstr "Nu a fost furnizat nici un articol pentru a fi duplicat!"
23
+
24
+ #: duplicate-post.php:58 duplicate-post.php:86
25
+ msgid "Post creation failed, could not find original post:"
26
+ msgstr "Articolul nu a putut fi creat deoarece nu am găsit articolul sursă:"
27
+
28
+ #: duplicate-post.php:67
29
+ msgid "No page to duplicate has been supplied!"
30
+ msgstr "Nu a fost furnizată nici o pagină pentru a fi duplicată!"
31
+
32
+ #: duplicate-post.php:164 duplicate-post.php:195
33
+ msgid "Make a duplicate from this post"
34
+ msgstr "Crează o copie a acestui articol"
35
+
36
+ #: duplicate-post.php:165 duplicate-post.php:179 duplicate-post.php:196
37
+ #: duplicate-post.php:207
38
+ msgid "Duplicate"
39
+ msgstr "Duplicare"
40
+
41
+ #: duplicate-post.php:178 duplicate-post.php:206
42
+ msgid "Make a duplicate from this page"
43
+ msgstr "Crează o copie a acestei pagini"
44
+
45
+ #: duplicate-post.php:225
46
+ msgid "Copy to a new draft"
47
+ msgstr "Copiază într-o ciornă nouă"
48
+
49
+ #: duplicate-post.php:519
50
+ msgid "Duplicate Post Options"
51
+ msgstr "Opţiuni duplicare articole"
52
+
53
+ #. #-#-#-#-# plugin.pot (Duplicate Post 1.1) #-#-#-#-#
54
+ #. Plugin Name of the plugin/theme
55
+ #: duplicate-post.php:519 duplicate-post.php:525
56
+ msgid "Duplicate Post"
57
+ msgstr "Duplicare articol"
58
+
59
+ #: duplicate-post.php:532
60
+ msgid "Copy post/page date also"
61
+ msgstr "Copiază şi data articolului/paginii"
62
+
63
+ #: duplicate-post.php:534
64
+ msgid ""
65
+ "Normally, the new draft has publication date set to current time: check the "
66
+ "box to copy the original post/page date"
67
+ msgstr ""
68
+ "În mod normal copia are data publicării setată la timpul curent: bifaţi "
69
+ "pentru a copia data publicării a originalului"
70
+
71
+ #: duplicate-post.php:538
72
+ msgid "Do not copy these fields"
73
+ msgstr "Nu copia aceste câmpuri"
74
+
75
+ #: duplicate-post.php:541
76
+ msgid ""
77
+ "Comma-separated list of meta fields that must not be copied when cloning a "
78
+ "post/page"
79
+ msgstr ""
80
+ "Lista separată prin virgule a câmpurilor care nu trebuie copiate la clonarea "
81
+ "unui articol sau unei pagini"
82
+
83
+ #: duplicate-post.php:545
84
+ msgid "Title prefix"
85
+ msgstr "Prefix titlu"
86
+
87
+ #: duplicate-post.php:548
88
+ msgid ""
89
+ "Prefix to be added before the original title when cloning a post/page, e.g. "
90
+ "\"Copy of\" (blank for no prefix)"
91
+ msgstr ""
92
+ "Prefix pentru adăugarea înaintea titlului original când se clonează un "
93
+ "articol sau o pagină. Exemplu \"Copie după\" (nu completa dacă nu doreşti "
94
+ "adăugarea unui prefix)"
95
+
96
+ #: duplicate-post.php:552
97
+ msgid "Minimum level to copy posts"
98
+ msgstr "Nivel minim pentru copierea unui articol"
99
+
100
+ #: duplicate-post.php:576
101
+ msgid ""
102
+ "Warning: users will be able to copy all posts, even those of higher level "
103
+ "users"
104
+ msgstr ""
105
+ "Atenţie: utilizatorii vor putea copia toate articolele, inclusiv cele ale "
106
+ "utilizatorilor cu nivel de acces ridicat"
107
+
108
+ #: duplicate-post.php:583
109
+ msgid "Save Changes"
110
+ msgstr "Salvare modificări"
111
+
112
+ #: duplicate-post.php:595
113
+ msgid "Donate"
114
+ msgstr "Donează"
115
+
116
+ #: duplicate-post.php:596
117
+ msgid "Translate"
118
+ msgstr "Traducere"
119
+
120
+ #. Plugin URI of the plugin/theme
121
+ msgid "http://www.lopo.it/duplicate-post-plugin/"
122
+ msgstr "http://www.lopo.it/duplicate-post-plugin/"
123
+
124
+ #. Description of the plugin/theme
125
+ msgid "Creates a copy of a post."
126
+ msgstr "Crează o copie a articolului"
127
+
128
+ #. Author of the plugin/theme
129
+ msgid "Enrico Battocchi"
130
+ msgstr "Enrico Battocchi"
131
+
132
+ #. Author URI of the plugin/theme
133
+ msgid "http://www.lopo.it"
134
+ msgstr "http://www.lopo.it"
languages/duplicate-post-sv_SE.mo ADDED
Binary file
languages/duplicate-post-sv_SE.po ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Swedish translation for duplicate-post
2
+ # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
3
+ # This file is distributed under the same license as the duplicate-post package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: duplicate-post\n"
9
+ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10
+ "POT-Creation-Date: 2010-05-21 10:01+0000\n"
11
+ "PO-Revision-Date: 2010-05-25 07:38+0000\n"
12
+ "Last-Translator: Magnus Anemo <Unknown>\n"
13
+ "Language-Team: Swedish <sv@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
18
+ "X-Generator: Launchpad (build Unknown)\n"
19
+
20
+ #: duplicate-post.php:39
21
+ msgid "No post to duplicate has been supplied!"
22
+ msgstr "Inget inlägg att kopiera har valts!"
23
+
24
+ #: duplicate-post.php:58 duplicate-post.php:86
25
+ msgid "Post creation failed, could not find original post:"
26
+ msgstr ""
27
+ "Skapandet av inlägget misslyckades; kunde inte hitta ursprungsinlägget:"
28
+
29
+ #: duplicate-post.php:67
30
+ msgid "No page to duplicate has been supplied!"
31
+ msgstr "Ingen sida att kopiera har valts!"
32
+
33
+ #: duplicate-post.php:164 duplicate-post.php:195
34
+ msgid "Make a duplicate from this post"
35
+ msgstr "Skapa en kopia av detta inlägg"
36
+
37
+ #: duplicate-post.php:165 duplicate-post.php:179 duplicate-post.php:196
38
+ #: duplicate-post.php:207
39
+ msgid "Duplicate"
40
+ msgstr "Kopiera"
41
+
42
+ #: duplicate-post.php:178 duplicate-post.php:206
43
+ msgid "Make a duplicate from this page"
44
+ msgstr "Skapa en kopia av denna sida"
45
+
46
+ #: duplicate-post.php:225
47
+ msgid "Copy to a new draft"
48
+ msgstr "Kopiera till ett nytt utkast"
49
+
50
+ #: duplicate-post.php:519
51
+ msgid "Duplicate Post Options"
52
+ msgstr "Duplicate Post Inställningar"
53
+
54
+ #. #-#-#-#-# plugin.pot (Duplicate Post 1.1) #-#-#-#-#
55
+ #. Plugin Name of the plugin/theme
56
+ #: duplicate-post.php:519 duplicate-post.php:525
57
+ msgid "Duplicate Post"
58
+ msgstr "Duplicate Post"
59
+
60
+ #: duplicate-post.php:532
61
+ msgid "Copy post/page date also"
62
+ msgstr "Kopiera även inläggs/sidors datum"
63
+
64
+ #: duplicate-post.php:534
65
+ msgid ""
66
+ "Normally, the new draft has publication date set to current time: check the "
67
+ "box to copy the original post/page date"
68
+ msgstr ""
69
+ "Vanligtvis har det nya utkastet publiceringsdatumet satt till nuvarande "
70
+ "tidpunkt: markera detta val för att behålla datumet för det ursprungliga "
71
+ "inlägget/sidan"
72
+
73
+ #: duplicate-post.php:538
74
+ msgid "Do not copy these fields"
75
+ msgstr "Kopiera inte dessa fält"
76
+
77
+ #: duplicate-post.php:541
78
+ msgid ""
79
+ "Comma-separated list of meta fields that must not be copied when cloning a "
80
+ "post/page"
81
+ msgstr ""
82
+ "Kommaseparerad lista med metafält som inte ska kopieras vid kopiering av "
83
+ "inlägg/sida"
84
+
85
+ #: duplicate-post.php:545
86
+ msgid "Title prefix"
87
+ msgstr "Titelprefix"
88
+
89
+ #: duplicate-post.php:548
90
+ msgid ""
91
+ "Prefix to be added before the original title when cloning a post/page, e.g. "
92
+ "\"Copy of\" (blank for no prefix)"
93
+ msgstr ""
94
+ "Prefix som läggs till i början av originaltiteln när ett inlägg eller en "
95
+ "sida kopieras, t.ex. \"Kopia av\" (lämna tomt för utelämna prefix)"
96
+
97
+ #: duplicate-post.php:552
98
+ msgid "Minimum level to copy posts"
99
+ msgstr "Lägsta nivå för att kopiera inlägg"
100
+
101
+ #: duplicate-post.php:576
102
+ msgid ""
103
+ "Warning: users will be able to copy all posts, even those of higher level "
104
+ "users"
105
+ msgstr ""
106
+ "Varning: användare kommer att kunna kopiera alla inlägg, även de som tillhör "
107
+ "användare med högre nivå/fler rättigheter"
108
+
109
+ #: duplicate-post.php:583
110
+ msgid "Save Changes"
111
+ msgstr "Spara ändringar"
112
+
113
+ #: duplicate-post.php:595
114
+ msgid "Donate"
115
+ msgstr "Donera"
116
+
117
+ #: duplicate-post.php:596
118
+ msgid "Translate"
119
+ msgstr "Översätt"
120
+
121
+ #. Plugin URI of the plugin/theme
122
+ msgid "http://www.lopo.it/duplicate-post-plugin/"
123
+ msgstr "http://www.lopo.it/duplicate-post-plugin/"
124
+
125
+ #. Description of the plugin/theme
126
+ msgid "Creates a copy of a post."
127
+ msgstr "Skapar en kopia av ett inlägg."
128
+
129
+ #. Author of the plugin/theme
130
+ msgid "Enrico Battocchi"
131
+ msgstr "Enrico Battocchi"
132
+
133
+ #. Author URI of the plugin/theme
134
+ msgid "http://www.lopo.it"
135
+ msgstr "http://www.lopo.it"
languages/duplicate-post.pot CHANGED
@@ -1,20 +1,17 @@
1
- # Duplicate Post plugin for WordPress
2
- # Copyright (C) 2009 Enrico Battocchi
3
- # This file is distributed under the same license as the Duplicate Post package.
4
- # Enrico Battocchi <enrico.battocchi@gmail.com>, 2009.
5
- #
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
- "Project-Id-Version: Duplicate Post 1.0\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/duplicate-post\n"
11
- "POT-Creation-Date: 2009-12-03 14:26+0000\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
  "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=CHARSET\n"
17
  "Content-Transfer-Encoding: 8bit\n"
 
 
18
 
19
  #: duplicate-post.php:39
20
  msgid "No post to duplicate has been supplied!"
@@ -28,39 +25,97 @@ msgstr ""
28
  msgid "No page to duplicate has been supplied!"
29
  msgstr ""
30
 
31
- #: duplicate-post.php:171
32
  msgid "Make a duplicate from this post"
33
  msgstr ""
34
 
35
- #: duplicate-post.php:172 duplicate-post.php:186 duplicate-post.php:203
36
- #: duplicate-post.php:214
37
  msgid "Duplicate"
38
  msgstr ""
39
 
40
- #: duplicate-post.php:185
41
  msgid "Make a duplicate from this page"
42
  msgstr ""
43
 
44
- #: duplicate-post.php:232
45
  msgid "Copy to a new draft"
46
  msgstr ""
47
 
48
- #. Plugin Name of an extension
 
 
 
 
 
 
49
  msgid "Duplicate Post"
50
  msgstr ""
51
 
52
- #. Plugin URI of an extension
53
- msgid "http://wordpress.org/extend/plugins/duplicate-post/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  msgstr ""
55
 
56
- #. Description of an extension
57
  msgid "Creates a copy of a post."
58
  msgstr ""
59
 
60
- #. Author of an extension
61
  msgid "Enrico Battocchi"
62
  msgstr ""
63
 
64
- #. Author URI of an extension
65
  msgid "http://www.lopo.it"
66
  msgstr ""
 
 
 
 
 
1
  #, fuzzy
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Duplicate Post 1.1\n"
5
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/duplicate-post\n"
6
+ "POT-Creation-Date: 2010-05-21 10:01+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: LANGUAGE <LL@li.org>\n"
10
  "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=utf-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
14
+ "X-Generator: Launchpad (build Unknown)\n"
15
 
16
  #: duplicate-post.php:39
17
  msgid "No post to duplicate has been supplied!"
25
  msgid "No page to duplicate has been supplied!"
26
  msgstr ""
27
 
28
+ #: duplicate-post.php:164 duplicate-post.php:195
29
  msgid "Make a duplicate from this post"
30
  msgstr ""
31
 
32
+ #: duplicate-post.php:165 duplicate-post.php:179 duplicate-post.php:196
33
+ #: duplicate-post.php:207
34
  msgid "Duplicate"
35
  msgstr ""
36
 
37
+ #: duplicate-post.php:178 duplicate-post.php:206
38
  msgid "Make a duplicate from this page"
39
  msgstr ""
40
 
41
+ #: duplicate-post.php:225
42
  msgid "Copy to a new draft"
43
  msgstr ""
44
 
45
+ #: duplicate-post.php:519
46
+ msgid "Duplicate Post Options"
47
+ msgstr ""
48
+
49
+ #. #-#-#-#-# plugin.pot (Duplicate Post 1.1) #-#-#-#-#
50
+ #. Plugin Name of the plugin/theme
51
+ #: duplicate-post.php:519 duplicate-post.php:525
52
  msgid "Duplicate Post"
53
  msgstr ""
54
 
55
+ #: duplicate-post.php:532
56
+ msgid "Copy post/page date also"
57
+ msgstr ""
58
+
59
+ #: duplicate-post.php:534
60
+ msgid ""
61
+ "Normally, the new draft has publication date set to current time: check the "
62
+ "box to copy the original post/page date"
63
+ msgstr ""
64
+
65
+ #: duplicate-post.php:538
66
+ msgid "Do not copy these fields"
67
+ msgstr ""
68
+
69
+ #: duplicate-post.php:541
70
+ msgid ""
71
+ "Comma-separated list of meta fields that must not be copied when cloning a "
72
+ "post/page"
73
+ msgstr ""
74
+
75
+ #: duplicate-post.php:545
76
+ msgid "Title prefix"
77
+ msgstr ""
78
+
79
+ #: duplicate-post.php:548
80
+ msgid ""
81
+ "Prefix to be added before the original title when cloning a post/page, e.g. "
82
+ "\"Copy of\" (blank for no prefix)"
83
+ msgstr ""
84
+
85
+ #: duplicate-post.php:552
86
+ msgid "Minimum level to copy posts"
87
+ msgstr ""
88
+
89
+ #: duplicate-post.php:576
90
+ msgid ""
91
+ "Warning: users will be able to copy all posts, even those of higher level "
92
+ "users"
93
+ msgstr ""
94
+
95
+ #: duplicate-post.php:583
96
+ msgid "Save Changes"
97
+ msgstr ""
98
+
99
+ #: duplicate-post.php:595
100
+ msgid "Donate"
101
+ msgstr ""
102
+
103
+ #: duplicate-post.php:596
104
+ msgid "Translate"
105
+ msgstr ""
106
+
107
+ #. Plugin URI of the plugin/theme
108
+ msgid "http://www.lopo.it/duplicate-post-plugin/"
109
  msgstr ""
110
 
111
+ #. Description of the plugin/theme
112
  msgid "Creates a copy of a post."
113
  msgstr ""
114
 
115
+ #. Author of the plugin/theme
116
  msgid "Enrico Battocchi"
117
  msgstr ""
118
 
119
+ #. Author URI of the plugin/theme
120
  msgid "http://www.lopo.it"
121
  msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: lopo
3
  Donate link: http://www.lopo.it/duplicate-post-plugin/
4
  Tags: duplicate, post, copy
5
  Requires at least: 2.7
6
- Tested up to: 2.9
7
- Stable tag: 1.0
8
 
9
  Creates a copy of a post.
10
 
@@ -16,20 +16,21 @@ Allows to create a draft copy of a post (or page) in two ways:
16
 
17
  Both ways lead to the edit page for the new draft: change what you want, click on 'Publish' and you're done.
18
 
19
- Duplicate post is natively in English, but it is shipped with some other language files. Now there is a [Launchpad translation project](https://translations.launchpad.net/duplicate-post/) available to help translating this plugin: feel free to contribute (you can also send me an e-mail using the form on my website).
 
 
 
 
20
 
21
- If you're a plugin developer, I suggest to read the section made just for you under "Other Notes", to ensure compatibility between your plugin(s) and mine!
22
 
23
- This plugin used to be tested on at least WP 2.6.5. From version 1.0 onwards, it uses some APIs first introduced with WP 2.7 to achieve better integration with the new WordPress interface.
24
 
25
- Credit must be given to the (great) [Post Template](http://post-templates.vincentprat.info) plugin by Vincent Prat: I made this by hacking his work to get something more focused to a sporadic use, without the need to create and manage templates just to make simple copies of some posts every now and then. If my plugin doesn't fits your needs (and even if it does) check Vincent's.
26
 
27
- Thanks for all the suggestions and bug reports, mainly:
28
 
29
- * Franz, for giving me some hints on where to search to fix the bug with WP 2.8.1;
30
- * Ben ter Stal, for WPMU compatibility and some fixes;
31
- * [Naoko McCracken](http://blog.detlog.org), for helping me with i18n and for the Japanese language files
32
- * [Simon Wheatley](http://www.simonwheatley.co.uk/), for his suggestions, especially about adding actions for other developers to use.
33
 
34
  An example of use: I started this for a small movie theater website which I'm building. Every Friday there's a new movie showing with a new timetable, and thus a new post: but sometimes a movie stays for more than a week, so I need to copy the last post and change only the dates, leaving movie title, director's and actors' names etc. unchanged.
35
  The website is http://www.kino-desse.org and the cinema is located in Livorno, Italy.
@@ -38,6 +39,7 @@ The website is http://www.kino-desse.org and the cinema is located in Livorno, I
38
 
39
  1. Upload `duplicate-post` directory to the `/wp-content/plugins/` directory
40
  2. Activate the plugin through the 'Plugins' menu in WordPress
 
41
 
42
  == For plugin developers ==
43
 
@@ -59,12 +61,21 @@ Please refer to the [Plugin API](http://codex.wordpress.org/Plugin_API) for ever
59
  If you find this useful and you if you want to contribute, there are three ways:
60
 
61
  1. You can [write me](http://www.lopo.it/contatti/) and submit your bug reports, suggestions and requests for features;
62
- 2. If you want to translate it to your language (there are just a few lines of text), you can [contact me](http://www.lopo.it/contatti/) and I’ll send you the .pot catalogue; your translation could be featured in next releases;
63
  3. Using the plugin is free, but if you want you can send me some bucks with PayPal [here](http://www.lopo.it/duplicate-post-plugin/)
64
 
 
 
 
 
65
 
66
  == Changelog ==
67
 
 
 
 
 
 
68
  = 1.0 =
69
  * Better integration with WP 2.7+ interface
70
  * Added actions for plugins which store post metadata in self-managed tables
3
  Donate link: http://www.lopo.it/duplicate-post-plugin/
4
  Tags: duplicate, post, copy
5
  Requires at least: 2.7
6
+ Tested up to: 3.0
7
+ Stable tag: 1.1
8
 
9
  Creates a copy of a post.
10
 
16
 
17
  Both ways lead to the edit page for the new draft: change what you want, click on 'Publish' and you're done.
18
 
19
+ In the Options page it is now possible to choose:
20
+ * if the original post/page date must be copied too
21
+ * which custom fields must not be copied
22
+ * a prefix to place before the title of the cloned post/page
23
+ * the minimum user level to clone posts or pages
24
 
25
+ Duplicate post is natively in English, but it's shipped with translations in 10 other languages (though some are incomplete). Now there is a [Launchpad translation project](https://translations.launchpad.net/duplicate-post/) available to help translating this plugin: feel free to contribute (you can also send me an e-mail using the form on my website).
26
 
27
+ If you're a plugin developer, I suggest to read the section made just for you under "Other Notes", to ensure compatibility between your plugin(s) and mine!
28
 
29
+ The plugin has been tested against versions 2.7 -> 3.0. It should be compatible with the Custom Post Type and Custom Taxonomies features of WP 3.0. It's not yet been tested with the multiblog feature active (but it used to work with WPMU).
30
 
31
+ Thanks for all the suggestions, bug reports, translations and donations: Franz, Ben ter Stal, [Naoko McCracken](http://blog.detlog.org), [Simon Wheatley](http://www.simonwheatley.co.uk/), [Magnus Anemo](http://www.anemo.se/en), Michelle Drumm, Richard Vencu, [el_libre](http://www.catmidia.cat/), Antoine Jouve, Sebastian, Yaron, Hiroshi Tagawa, Adam Skiba, Bartosz Kaszubowski, Braiam Peguero, Jonay, tam, my friends Livia, Alessandra, Ada and anybody else that I may have forgotten (sorry!)
32
 
33
+ Credit must be given to the (great) [Post Template](http://post-templates.vincentprat.info) plugin by Vincent Prat: I made this by hacking his work to get something more focused to a sporadic use, without the need to create and manage templates just to make simple copies of some posts every now and then. If my plugin doesn't fits your needs (and even if it does) check Vincent's.
 
 
 
34
 
35
  An example of use: I started this for a small movie theater website which I'm building. Every Friday there's a new movie showing with a new timetable, and thus a new post: but sometimes a movie stays for more than a week, so I need to copy the last post and change only the dates, leaving movie title, director's and actors' names etc. unchanged.
36
  The website is http://www.kino-desse.org and the cinema is located in Livorno, Italy.
39
 
40
  1. Upload `duplicate-post` directory to the `/wp-content/plugins/` directory
41
  2. Activate the plugin through the 'Plugins' menu in WordPress
42
+ 3. Go to Options -> Duplicate Post and customize behaviour as needed
43
 
44
  == For plugin developers ==
45
 
61
  If you find this useful and you if you want to contribute, there are three ways:
62
 
63
  1. You can [write me](http://www.lopo.it/contatti/) and submit your bug reports, suggestions and requests for features;
64
+ 2. If you want to translate it to your language (there are just a few lines of text), you can use the [Launchpad translation project](https://translations.launchpad.net/duplicate-post/), or [contact me](http://www.lopo.it/contatti/) and I’ll send you the .pot catalogue; your translation could be featured in next releases;
65
  3. Using the plugin is free, but if you want you can send me some bucks with PayPal [here](http://www.lopo.it/duplicate-post-plugin/)
66
 
67
+ == Upgrade Notice ==
68
+
69
+ = 1.1 =
70
+ New features and customization, WP 3.0 compatibility: you should upgrade if you want to copy Custom Posts with Custom Taxonomies.
71
 
72
  == Changelog ==
73
 
74
+ = 1.1 =
75
+ * WP 3.0 compatibility (not tested against multiblog feature, so beware)
76
+ * Option page: minimum user level, title prefix, fields not to be copied, copy post/page date also
77
+ * Added German, Swedish, Romanian, Hebrew, Catalan (incomplete) and Polish (incomplete) language files
78
+
79
  = 1.0 =
80
  * Better integration with WP 2.7+ interface
81
  * Added actions for plugins which store post metadata in self-managed tables
todo.txt CHANGED
@@ -1,2 +1 @@
1
- - Role manager compatibility
2
- - Configuration page with a list of meta fields which must not be copied (for compatibility with some other plugins)
1
+ - Unify post/page split