Markup (JSON-LD) structured in schema.org - Version 2.4.1

Version Description

(2016-03-01) =

  • Updated : Translation.
Download this release

Release Info

Developer miiitaka
Plugin Icon 128x128 Markup (JSON-LD) structured in schema.org
Version 2.4.1
Comparing to
See all releases

Code changes from version 2.4.0 to 2.4.1

includes/wp-structuring-admin-list.php CHANGED
@@ -33,7 +33,7 @@ class Structuring_Markup_Admin_List {
33
  * LIST Page HTML Render.
34
  *
35
  * @since 1.0.0
36
- * @version 2.3.3
37
  */
38
  private function page_render () {
39
  $post_url = 'admin.php?page=' . $this->text_domain . '-post';
@@ -47,10 +47,10 @@ class Structuring_Markup_Admin_List {
47
  $html = '<hr>';
48
  $html .= '<table class="wp-list-table widefat fixed striped posts schema-admin-table-list">';
49
  $html .= '<tr>';
50
- $html .= '<th scope="row">' . esc_html__( 'Status', $this->text_domain ) . '</th>';
51
- $html .= '<th scope="row">' . esc_html__( 'Schema Type', $this->text_domain ) . '</th>';
52
- $html .= '<th scope="row">' . esc_html__( 'Output Page', $this->text_domain ) . '</th>';
53
- $html .= '<th scope="row">' . esc_html__( 'ShortCode', $this->text_domain ) . '</th>';
54
  $html .= '<th scope="row">&nbsp;</th>';
55
  $html .= '</tr>';
56
  echo $html;
33
  * LIST Page HTML Render.
34
  *
35
  * @since 1.0.0
36
+ * @version 2.4.1
37
  */
38
  private function page_render () {
39
  $post_url = 'admin.php?page=' . $this->text_domain . '-post';
47
  $html = '<hr>';
48
  $html .= '<table class="wp-list-table widefat fixed striped posts schema-admin-table-list">';
49
  $html .= '<tr>';
50
+ $html .= '<th scope="row">' . esc_html__( 'Status', $this->text_domain ) . '</th>';
51
+ $html .= '<th scope="row">' . esc_html__( 'Schema.org Type', $this->text_domain ) . '</th>';
52
+ $html .= '<th scope="row">' . esc_html__( 'Output On', $this->text_domain ) . '</th>';
53
+ $html .= '<th scope="row">' . esc_html__( 'ShortCode', $this->text_domain ) . '</th>';
54
  $html .= '<th scope="row">&nbsp;</th>';
55
  $html .= '</tr>';
56
  echo $html;
includes/wp-structuring-admin-post.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Kazuya Takami
6
  * @since 1.0.0
7
- * @version 2.4.0
8
  */
9
  class Structuring_Markup_Admin_Post {
10
 
@@ -80,7 +80,7 @@ class Structuring_Markup_Admin_Post {
80
  * Setting Page of the Admin Screen.
81
  *
82
  * @since 1.0.0
83
- * @version 2.4.0
84
  * @param array $options
85
  * @param string $status
86
  */
@@ -112,12 +112,12 @@ class Structuring_Markup_Admin_Post {
112
  $html .= '<input type="checkbox" name="activate" value="on"';
113
  $html .= ( isset( $options['activate'] ) && $options['activate'] === "on" ) ? ' checked' : '';
114
  $html .= '></td></tr>';
115
- $html .= '<tr><th>' . esc_html__( 'Output Page', $this->text_domain ) . ' : </th><td>';
116
  echo $html;
117
 
118
  switch ( $options['type'] ) {
119
  case 'article':
120
- $html = $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Post Page', $this->text_domain ) );
121
  $html .= '</td></tr></table><hr>';
122
  echo $html;
123
 
@@ -125,7 +125,7 @@ class Structuring_Markup_Admin_Post {
125
  new Structuring_Markup_Type_Article( $options['option'] );
126
  break;
127
  case 'blog_posting':
128
- $html = $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Post Page', $this->text_domain ) );
129
  $html .= '</td></tr></table><hr>';
130
  echo $html;
131
 
@@ -133,7 +133,7 @@ class Structuring_Markup_Admin_Post {
133
  new Structuring_Markup_Type_Blog_Posting( $options['option'] );
134
  break;
135
  case 'breadcrumb':
136
- $html = $this->output_checkbox_render( $options['output'], "all", "All", esc_html__( 'All Page', $this->text_domain ) );
137
  $html .= '</td></tr></table><hr>';
138
  echo $html;
139
 
@@ -141,7 +141,7 @@ class Structuring_Markup_Admin_Post {
141
  new Structuring_Markup_Type_Breadcrumb( $options['option'] );
142
  break;
143
  case 'event':
144
- $html = $this->output_checkbox_render( $options['output'], "event", "Event Post", esc_html__( 'Event Post Page', $this->text_domain ) );
145
  $html .= '</td></tr></table><hr>';
146
  echo $html;
147
 
@@ -149,10 +149,10 @@ class Structuring_Markup_Admin_Post {
149
  new Structuring_Markup_Type_Event();
150
  break;
151
  case 'local_business':
152
- $html = $this->output_checkbox_render( $options['output'], "all", "All", esc_html__( 'All Page', $this->text_domain ) );
153
- $html .= $this->output_checkbox_render( $options['output'], "home", "Top", esc_html__( 'Top Page', $this->text_domain ) );
154
- $html .= $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Post Page', $this->text_domain ) );
155
- $html .= $this->output_checkbox_render( $options['output'], "page", "Fixed", esc_html__( 'Fixed Page', $this->text_domain ) );
156
  $html .= '</td></tr></table><hr>';
157
  echo $html;
158
 
@@ -160,7 +160,7 @@ class Structuring_Markup_Admin_Post {
160
  new Structuring_Markup_Type_LocalBusiness( $options['option'] );
161
  break;
162
  case 'news_article':
163
- $html = $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Post Page', $this->text_domain ) );
164
  $html .= '</td></tr></table><hr>';
165
  echo $html;
166
 
@@ -168,10 +168,10 @@ class Structuring_Markup_Admin_Post {
168
  new Structuring_Markup_Type_NewsArticle( $options['option'] );
169
  break;
170
  case 'organization':
171
- $html = $this->output_checkbox_render( $options['output'], "all", "All", esc_html__( 'All Page', $this->text_domain ) );
172
- $html .= $this->output_checkbox_render( $options['output'], "home", "Top", esc_html__( 'Top Page', $this->text_domain ) );
173
- $html .= $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Post Page', $this->text_domain ) );
174
- $html .= $this->output_checkbox_render( $options['output'], "page", "Fixed", esc_html__( 'Fixed Page', $this->text_domain ) );
175
  $html .= '</td></tr></table><hr>';
176
  echo $html;
177
 
@@ -179,10 +179,10 @@ class Structuring_Markup_Admin_Post {
179
  new Structuring_Markup_Type_Organization( $options['option'] );
180
  break;
181
  case 'person':
182
- $html = $this->output_checkbox_render( $options['output'], "all", "All", esc_html__( 'All Page', $this->text_domain ) );
183
- $html .= $this->output_checkbox_render( $options['output'], "home", "Top", esc_html__( 'Top Page', $this->text_domain ) );
184
- $html .= $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Post Page', $this->text_domain ) );
185
- $html .= $this->output_checkbox_render( $options['output'], "page", "Fixed", esc_html__( 'Fixed Page', $this->text_domain ) );
186
  $html .= '</td></tr></table><hr>';
187
  echo $html;
188
 
@@ -190,10 +190,10 @@ class Structuring_Markup_Admin_Post {
190
  new Structuring_Markup_Type_Person( $options['option'] );
191
  break;
192
  case 'website':
193
- $html = $this->output_checkbox_render( $options['output'], "all", "All", esc_html__( 'All Page', $this->text_domain ) );
194
- $html .= $this->output_checkbox_render( $options['output'], "home", "Top", esc_html__( 'Top Page', $this->text_domain ) );
195
- $html .= $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Post Page', $this->text_domain ) );
196
- $html .= $this->output_checkbox_render( $options['output'], "page", "Fixed", esc_html__( 'Fixed Page', $this->text_domain ) );
197
  $html .= '</td></tr></table><hr>';
198
  echo $html;
199
 
4
  *
5
  * @author Kazuya Takami
6
  * @since 1.0.0
7
+ * @version 2.4.1
8
  */
9
  class Structuring_Markup_Admin_Post {
10
 
80
  * Setting Page of the Admin Screen.
81
  *
82
  * @since 1.0.0
83
+ * @version 2.4.1
84
  * @param array $options
85
  * @param string $status
86
  */
112
  $html .= '<input type="checkbox" name="activate" value="on"';
113
  $html .= ( isset( $options['activate'] ) && $options['activate'] === "on" ) ? ' checked' : '';
114
  $html .= '></td></tr>';
115
+ $html .= '<tr><th>' . esc_html__( 'Output On', $this->text_domain ) . ' : </th><td>';
116
  echo $html;
117
 
118
  switch ( $options['type'] ) {
119
  case 'article':
120
+ $html = $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Posts', $this->text_domain ) );
121
  $html .= '</td></tr></table><hr>';
122
  echo $html;
123
 
125
  new Structuring_Markup_Type_Article( $options['option'] );
126
  break;
127
  case 'blog_posting':
128
+ $html = $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Posts', $this->text_domain ) );
129
  $html .= '</td></tr></table><hr>';
130
  echo $html;
131
 
133
  new Structuring_Markup_Type_Blog_Posting( $options['option'] );
134
  break;
135
  case 'breadcrumb':
136
+ $html = $this->output_checkbox_render( $options['output'], "all", "All", esc_html__( 'All Pages (In Header)', $this->text_domain ) );
137
  $html .= '</td></tr></table><hr>';
138
  echo $html;
139
 
141
  new Structuring_Markup_Type_Breadcrumb( $options['option'] );
142
  break;
143
  case 'event':
144
+ $html = $this->output_checkbox_render( $options['output'], "event", "Event Post", esc_html__( 'Event Post Page', $this->text_domain ) );
145
  $html .= '</td></tr></table><hr>';
146
  echo $html;
147
 
149
  new Structuring_Markup_Type_Event();
150
  break;
151
  case 'local_business':
152
+ $html = $this->output_checkbox_render( $options['output'], "all", "All", esc_html__( 'All Pages (In Header)', $this->text_domain ) );
153
+ $html .= $this->output_checkbox_render( $options['output'], "home", "Top", esc_html__( 'Homepage', $this->text_domain ) );
154
+ $html .= $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Posts', $this->text_domain ) );
155
+ $html .= $this->output_checkbox_render( $options['output'], "page", "Fixed", esc_html__( 'Pages', $this->text_domain ) );
156
  $html .= '</td></tr></table><hr>';
157
  echo $html;
158
 
160
  new Structuring_Markup_Type_LocalBusiness( $options['option'] );
161
  break;
162
  case 'news_article':
163
+ $html = $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Posts', $this->text_domain ) );
164
  $html .= '</td></tr></table><hr>';
165
  echo $html;
166
 
168
  new Structuring_Markup_Type_NewsArticle( $options['option'] );
169
  break;
170
  case 'organization':
171
+ $html = $this->output_checkbox_render( $options['output'], "all", "All", esc_html__( 'All Pages (In Header)', $this->text_domain ) );
172
+ $html .= $this->output_checkbox_render( $options['output'], "home", "Top", esc_html__( 'Homepage', $this->text_domain ) );
173
+ $html .= $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Posts', $this->text_domain ) );
174
+ $html .= $this->output_checkbox_render( $options['output'], "page", "Fixed", esc_html__( 'Pages', $this->text_domain ) );
175
  $html .= '</td></tr></table><hr>';
176
  echo $html;
177
 
179
  new Structuring_Markup_Type_Organization( $options['option'] );
180
  break;
181
  case 'person':
182
+ $html = $this->output_checkbox_render( $options['output'], "all", "All", esc_html__( 'All Pages (In Header)', $this->text_domain ) );
183
+ $html .= $this->output_checkbox_render( $options['output'], "home", "Top", esc_html__( 'Homepage', $this->text_domain ) );
184
+ $html .= $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Posts', $this->text_domain ) );
185
+ $html .= $this->output_checkbox_render( $options['output'], "page", "Fixed", esc_html__( 'Pages', $this->text_domain ) );
186
  $html .= '</td></tr></table><hr>';
187
  echo $html;
188
 
190
  new Structuring_Markup_Type_Person( $options['option'] );
191
  break;
192
  case 'website':
193
+ $html = $this->output_checkbox_render( $options['output'], "all", "All", esc_html__( 'All Pages (In Header)', $this->text_domain ) );
194
+ $html .= $this->output_checkbox_render( $options['output'], "home", "Top", esc_html__( 'Homepage', $this->text_domain ) );
195
+ $html .= $this->output_checkbox_render( $options['output'], "post", "Post", esc_html__( 'Posts', $this->text_domain ) );
196
+ $html .= $this->output_checkbox_render( $options['output'], "page", "Fixed", esc_html__( 'Pages', $this->text_domain ) );
197
  $html .= '</td></tr></table><hr>';
198
  echo $html;
199
 
languages/wp-structuring-markup-ja.mo CHANGED
Binary file
languages/wp-structuring-markup-ja.po CHANGED
@@ -1,14 +1,14 @@
1
- # Copyright (C) 2015 Markup (JSON-LD) structured in schema.org
2
  # This file is distributed under the same license as the Markup (JSON-LD) structured in schema.org package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Markup (JSON-LD) structured in schema.org 2.1.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-structuring-markup\n"
7
- "POT-Creation-Date: 2015-12-03 08:59:46+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: Kazuya Takami <foundationmeister@outlook.com>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
@@ -21,19 +21,19 @@ msgid "Status"
21
  msgstr "Status"
22
 
23
  #: includes/wp-structuring-admin-list.php:51
24
- msgid "Schema Type"
25
- msgstr "Schema タイプ"
26
 
27
  #: includes/wp-structuring-admin-list.php:52
28
- #: includes/wp-structuring-admin-post.php:112
29
- msgid "Output Page"
30
  msgstr "出力ページ"
31
 
32
  #: includes/wp-structuring-admin-list.php:53
33
  msgid "ShortCode"
34
  msgstr "ショートコード"
35
 
36
- #: includes/wp-structuring-admin-list.php:81 wp-structuring-markup.php:134
37
  msgid "Edit"
38
  msgstr "編集"
39
 
@@ -41,36 +41,44 @@ msgstr "編集"
41
  msgid "Without registration."
42
  msgstr "登録されていません。"
43
 
44
- #: includes/wp-structuring-admin-post.php:87
45
  msgid "Schema.org Register"
46
  msgstr "Schema.org 登録"
47
 
48
- #: includes/wp-structuring-admin-post.php:117
49
- #: includes/wp-structuring-admin-post.php:125
50
- #: includes/wp-structuring-admin-post.php:149
51
- #: includes/wp-structuring-admin-post.php:159
52
- #: includes/wp-structuring-admin-post.php:170
53
- msgid "Post Page"
 
 
54
  msgstr "投稿ページ"
55
 
56
- #: includes/wp-structuring-admin-post.php:133
57
- #: includes/wp-structuring-admin-post.php:157
58
- #: includes/wp-structuring-admin-post.php:168
59
- msgid "All Page"
60
- msgstr "全てのページ"
 
 
61
 
62
- #: includes/wp-structuring-admin-post.php:141
63
  msgid "Event Post Page"
64
  msgstr "イベント投稿ページ"
65
 
66
- #: includes/wp-structuring-admin-post.php:158
67
- #: includes/wp-structuring-admin-post.php:169
68
- msgid "Top Page"
69
- msgstr "トップページ"
70
-
71
- #: includes/wp-structuring-admin-post.php:160
72
- #: includes/wp-structuring-admin-post.php:171
73
- msgid "Fixed Page"
 
 
 
 
74
  msgstr "固定ページ"
75
 
76
  #: includes/wp-structuring-custom-post-event.php:34
@@ -78,52 +86,51 @@ msgstr "固定ページ"
78
  msgid "Event Posts"
79
  msgstr "イベント投稿"
80
 
81
- #: includes/wp-structuring-custom-post-event.php:68
82
  msgid "Schema.org Type Event"
83
  msgstr "Schema.org Type Event"
84
 
85
- #: includes/wp-structuring-custom-post-event.php:90
86
- #: includes/wp-structuring-display.php:224
87
  msgid "USD"
88
  msgstr "JPY"
89
 
90
- #: includes/wp-structuring-custom-post-event.php:95
91
  msgid "Event Name"
92
  msgstr "イベント名"
93
 
94
- #: includes/wp-structuring-custom-post-event.php:100
95
  msgid "Start Date"
96
  msgstr "開始日"
97
 
98
- #: includes/wp-structuring-custom-post-event.php:106
99
  msgid "Event URL"
100
  msgstr "イベントURL"
101
 
102
- #: includes/wp-structuring-custom-post-event.php:111
103
  msgid "Place Name"
104
  msgstr "場所名"
105
 
106
- #: includes/wp-structuring-custom-post-event.php:116
107
  msgid "Place URL"
108
  msgstr "会場URL"
109
 
110
- #: includes/wp-structuring-custom-post-event.php:121
111
  msgid "Place Address"
112
  msgstr "会場住所"
113
 
114
- #: includes/wp-structuring-custom-post-event.php:126
115
  msgid "Price"
116
- msgstr "参加料"
117
 
118
- #: includes/wp-structuring-custom-post-event.php:131
119
  msgid "Currency"
120
  msgstr "通貨"
121
 
122
- #: wp-structuring-markup.php:125 wp-structuring-markup.php:126
123
  msgid "Schema.org Settings"
124
  msgstr "Schema.org 設定"
125
 
126
- #: wp-structuring-markup.php:133
127
  msgid "Schema.org Setting Edit"
128
  msgstr "Schema.org 設定編集"
129
 
@@ -136,10 +143,8 @@ msgid "https://wordpress.org/plugins/wp-structuring-markup/"
136
  msgstr "https://wordpress.org/plugins/wp-structuring-markup/"
137
 
138
  #. Description of the plugin/theme
139
- msgid ""
140
- "It is plug in to implement structured markup (JSON-LD syntax) by schema.org "
141
- "definition on an article or the fixed page."
142
- msgstr "このプラグインは、投稿ページ、固定ページなどにschema.org定義の構造化マークアップ( JSON -LDの構文)を実装するプラグインです。"
143
 
144
  #. Author of the plugin/theme
145
  msgid "Kazuya Takami"
1
+ # Copyright (C) 2016 Markup (JSON-LD) structured in schema.org
2
  # This file is distributed under the same license as the Markup (JSON-LD) structured in schema.org package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Markup (JSON-LD) structured in schema.org 2.4.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-structuring-markup\n"
7
+ "POT-Creation-Date: 2016-03-01 08:58:28+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: Kazuya Takami <foundationmeister@outlook.com>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
21
  msgstr "Status"
22
 
23
  #: includes/wp-structuring-admin-list.php:51
24
+ msgid "Schema.org Type"
25
+ msgstr "Schema.org タイプ"
26
 
27
  #: includes/wp-structuring-admin-list.php:52
28
+ #: includes/wp-structuring-admin-post.php:115
29
+ msgid "Output On"
30
  msgstr "出力ページ"
31
 
32
  #: includes/wp-structuring-admin-list.php:53
33
  msgid "ShortCode"
34
  msgstr "ショートコード"
35
 
36
+ #: includes/wp-structuring-admin-list.php:81 wp-structuring-markup.php:155
37
  msgid "Edit"
38
  msgstr "編集"
39
 
41
  msgid "Without registration."
42
  msgstr "登録されていません。"
43
 
44
+ #: includes/wp-structuring-admin-post.php:90
45
  msgid "Schema.org Register"
46
  msgstr "Schema.org 登録"
47
 
48
+ #: includes/wp-structuring-admin-post.php:120
49
+ #: includes/wp-structuring-admin-post.php:128
50
+ #: includes/wp-structuring-admin-post.php:154
51
+ #: includes/wp-structuring-admin-post.php:163
52
+ #: includes/wp-structuring-admin-post.php:173
53
+ #: includes/wp-structuring-admin-post.php:184
54
+ #: includes/wp-structuring-admin-post.php:195
55
+ msgid "Posts"
56
  msgstr "投稿ページ"
57
 
58
+ #: includes/wp-structuring-admin-post.php:136
59
+ #: includes/wp-structuring-admin-post.php:152
60
+ #: includes/wp-structuring-admin-post.php:171
61
+ #: includes/wp-structuring-admin-post.php:182
62
+ #: includes/wp-structuring-admin-post.php:193
63
+ msgid "All Pages (In Header)"
64
+ msgstr "全てのページ(ヘッダー)"
65
 
66
+ #: includes/wp-structuring-admin-post.php:144
67
  msgid "Event Post Page"
68
  msgstr "イベント投稿ページ"
69
 
70
+ #: includes/wp-structuring-admin-post.php:153
71
+ #: includes/wp-structuring-admin-post.php:172
72
+ #: includes/wp-structuring-admin-post.php:183
73
+ #: includes/wp-structuring-admin-post.php:194
74
+ msgid "Homepage"
75
+ msgstr "ホームページ"
76
+
77
+ #: includes/wp-structuring-admin-post.php:155
78
+ #: includes/wp-structuring-admin-post.php:174
79
+ #: includes/wp-structuring-admin-post.php:185
80
+ #: includes/wp-structuring-admin-post.php:196
81
+ msgid "Pages"
82
  msgstr "固定ページ"
83
 
84
  #: includes/wp-structuring-custom-post-event.php:34
86
  msgid "Event Posts"
87
  msgstr "イベント投稿"
88
 
89
+ #: includes/wp-structuring-custom-post-event.php:73
90
  msgid "Schema.org Type Event"
91
  msgstr "Schema.org Type Event"
92
 
93
+ #: includes/wp-structuring-custom-post-event.php:95
 
94
  msgid "USD"
95
  msgstr "JPY"
96
 
97
+ #: includes/wp-structuring-custom-post-event.php:100
98
  msgid "Event Name"
99
  msgstr "イベント名"
100
 
101
+ #: includes/wp-structuring-custom-post-event.php:105
102
  msgid "Start Date"
103
  msgstr "開始日"
104
 
105
+ #: includes/wp-structuring-custom-post-event.php:111
106
  msgid "Event URL"
107
  msgstr "イベントURL"
108
 
109
+ #: includes/wp-structuring-custom-post-event.php:116
110
  msgid "Place Name"
111
  msgstr "場所名"
112
 
113
+ #: includes/wp-structuring-custom-post-event.php:121
114
  msgid "Place URL"
115
  msgstr "会場URL"
116
 
117
+ #: includes/wp-structuring-custom-post-event.php:126
118
  msgid "Place Address"
119
  msgstr "会場住所"
120
 
121
+ #: includes/wp-structuring-custom-post-event.php:131
122
  msgid "Price"
123
+ msgstr "参加費"
124
 
125
+ #: includes/wp-structuring-custom-post-event.php:136
126
  msgid "Currency"
127
  msgstr "通貨"
128
 
129
+ #: wp-structuring-markup.php:146 wp-structuring-markup.php:147
130
  msgid "Schema.org Settings"
131
  msgstr "Schema.org 設定"
132
 
133
+ #: wp-structuring-markup.php:154
134
  msgid "Schema.org Setting Edit"
135
  msgstr "Schema.org 設定編集"
136
 
143
  msgstr "https://wordpress.org/plugins/wp-structuring-markup/"
144
 
145
  #. Description of the plugin/theme
146
+ msgid "Allows you to include Schema.org JSON-LD syntax markup on your website"
147
+ msgstr "ウェブサイト上でSchema.orgをJSON-LD構文で簡単に導入することができます"
 
 
148
 
149
  #. Author of the plugin/theme
150
  msgid "Kazuya Takami"
languages/wp-structuring-markup.pot CHANGED
@@ -1,15 +1,15 @@
1
- # Copyright (C) 2015 Markup (JSON-LD) structured in schema.org
2
  # This file is distributed under the same license as the Markup (JSON-LD) structured in schema.org package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Markup (JSON-LD) structured in schema.org 2.1.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-structuring-"
7
  "markup\n"
8
- "POT-Creation-Date: 2015-12-03 08:59:46+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
 
@@ -26,15 +26,15 @@ msgid "Schema Type"
26
  msgstr ""
27
 
28
  #: includes/wp-structuring-admin-list.php:52
29
- #: includes/wp-structuring-admin-post.php:112
30
- msgid "Output Page"
31
  msgstr ""
32
 
33
  #: includes/wp-structuring-admin-list.php:53
34
  msgid "ShortCode"
35
  msgstr ""
36
 
37
- #: includes/wp-structuring-admin-list.php:81 wp-structuring-markup.php:134
38
  msgid "Edit"
39
  msgstr ""
40
 
@@ -42,36 +42,44 @@ msgstr ""
42
  msgid "Without registration."
43
  msgstr ""
44
 
45
- #: includes/wp-structuring-admin-post.php:87
46
  msgid "Schema.org Register"
47
  msgstr ""
48
 
49
- #: includes/wp-structuring-admin-post.php:117
50
- #: includes/wp-structuring-admin-post.php:125
51
- #: includes/wp-structuring-admin-post.php:149
52
- #: includes/wp-structuring-admin-post.php:159
53
- #: includes/wp-structuring-admin-post.php:170
54
- msgid "Post Page"
 
 
55
  msgstr ""
56
 
57
- #: includes/wp-structuring-admin-post.php:133
58
- #: includes/wp-structuring-admin-post.php:157
59
- #: includes/wp-structuring-admin-post.php:168
60
- msgid "All Page"
 
 
61
  msgstr ""
62
 
63
- #: includes/wp-structuring-admin-post.php:141
64
  msgid "Event Post Page"
65
  msgstr ""
66
 
67
- #: includes/wp-structuring-admin-post.php:158
68
- #: includes/wp-structuring-admin-post.php:169
69
- msgid "Top Page"
 
 
70
  msgstr ""
71
 
72
- #: includes/wp-structuring-admin-post.php:160
73
- #: includes/wp-structuring-admin-post.php:171
74
- msgid "Fixed Page"
 
 
75
  msgstr ""
76
 
77
  #: includes/wp-structuring-custom-post-event.php:34
@@ -79,52 +87,51 @@ msgstr ""
79
  msgid "Event Posts"
80
  msgstr ""
81
 
82
- #: includes/wp-structuring-custom-post-event.php:68
83
  msgid "Schema.org Type Event"
84
  msgstr ""
85
 
86
- #: includes/wp-structuring-custom-post-event.php:90
87
- #: includes/wp-structuring-display.php:224
88
  msgid "USD"
89
  msgstr ""
90
 
91
- #: includes/wp-structuring-custom-post-event.php:95
92
  msgid "Event Name"
93
  msgstr ""
94
 
95
- #: includes/wp-structuring-custom-post-event.php:100
96
  msgid "Start Date"
97
  msgstr ""
98
 
99
- #: includes/wp-structuring-custom-post-event.php:106
100
  msgid "Event URL"
101
  msgstr ""
102
 
103
- #: includes/wp-structuring-custom-post-event.php:111
104
  msgid "Place Name"
105
  msgstr ""
106
 
107
- #: includes/wp-structuring-custom-post-event.php:116
108
  msgid "Place URL"
109
  msgstr ""
110
 
111
- #: includes/wp-structuring-custom-post-event.php:121
112
  msgid "Place Address"
113
  msgstr ""
114
 
115
- #: includes/wp-structuring-custom-post-event.php:126
116
  msgid "Price"
117
  msgstr ""
118
 
119
- #: includes/wp-structuring-custom-post-event.php:131
120
  msgid "Currency"
121
  msgstr ""
122
 
123
- #: wp-structuring-markup.php:125 wp-structuring-markup.php:126
124
  msgid "Schema.org Settings"
125
  msgstr ""
126
 
127
- #: wp-structuring-markup.php:133
128
  msgid "Schema.org Setting Edit"
129
  msgstr ""
130
 
@@ -137,9 +144,7 @@ msgid "https://wordpress.org/plugins/wp-structuring-markup/"
137
  msgstr ""
138
 
139
  #. Description of the plugin/theme
140
- msgid ""
141
- "It is plug in to implement structured markup (JSON-LD syntax) by schema.org "
142
- "definition on an article or the fixed page."
143
  msgstr ""
144
 
145
  #. Author of the plugin/theme
1
+ # Copyright (C) 2016 Markup (JSON-LD) structured in schema.org
2
  # This file is distributed under the same license as the Markup (JSON-LD) structured in schema.org package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Markup (JSON-LD) structured in schema.org 2.4.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-structuring-"
7
  "markup\n"
8
+ "POT-Creation-Date: 2016-03-01 08:58:28+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
 
26
  msgstr ""
27
 
28
  #: includes/wp-structuring-admin-list.php:52
29
+ #: includes/wp-structuring-admin-post.php:115
30
+ msgid "Output On"
31
  msgstr ""
32
 
33
  #: includes/wp-structuring-admin-list.php:53
34
  msgid "ShortCode"
35
  msgstr ""
36
 
37
+ #: includes/wp-structuring-admin-list.php:81 wp-structuring-markup.php:155
38
  msgid "Edit"
39
  msgstr ""
40
 
42
  msgid "Without registration."
43
  msgstr ""
44
 
45
+ #: includes/wp-structuring-admin-post.php:90
46
  msgid "Schema.org Register"
47
  msgstr ""
48
 
49
+ #: includes/wp-structuring-admin-post.php:120
50
+ #: includes/wp-structuring-admin-post.php:128
51
+ #: includes/wp-structuring-admin-post.php:154
52
+ #: includes/wp-structuring-admin-post.php:163
53
+ #: includes/wp-structuring-admin-post.php:173
54
+ #: includes/wp-structuring-admin-post.php:184
55
+ #: includes/wp-structuring-admin-post.php:195
56
+ msgid "Posts"
57
  msgstr ""
58
 
59
+ #: includes/wp-structuring-admin-post.php:136
60
+ #: includes/wp-structuring-admin-post.php:152
61
+ #: includes/wp-structuring-admin-post.php:171
62
+ #: includes/wp-structuring-admin-post.php:182
63
+ #: includes/wp-structuring-admin-post.php:193
64
+ msgid "All Pages (In Header)"
65
  msgstr ""
66
 
67
+ #: includes/wp-structuring-admin-post.php:144
68
  msgid "Event Post Page"
69
  msgstr ""
70
 
71
+ #: includes/wp-structuring-admin-post.php:153
72
+ #: includes/wp-structuring-admin-post.php:172
73
+ #: includes/wp-structuring-admin-post.php:183
74
+ #: includes/wp-structuring-admin-post.php:194
75
+ msgid "Homepage"
76
  msgstr ""
77
 
78
+ #: includes/wp-structuring-admin-post.php:155
79
+ #: includes/wp-structuring-admin-post.php:174
80
+ #: includes/wp-structuring-admin-post.php:185
81
+ #: includes/wp-structuring-admin-post.php:196
82
+ msgid "Pages"
83
  msgstr ""
84
 
85
  #: includes/wp-structuring-custom-post-event.php:34
87
  msgid "Event Posts"
88
  msgstr ""
89
 
90
+ #: includes/wp-structuring-custom-post-event.php:73
91
  msgid "Schema.org Type Event"
92
  msgstr ""
93
 
94
+ #: includes/wp-structuring-custom-post-event.php:95
 
95
  msgid "USD"
96
  msgstr ""
97
 
98
+ #: includes/wp-structuring-custom-post-event.php:100
99
  msgid "Event Name"
100
  msgstr ""
101
 
102
+ #: includes/wp-structuring-custom-post-event.php:105
103
  msgid "Start Date"
104
  msgstr ""
105
 
106
+ #: includes/wp-structuring-custom-post-event.php:111
107
  msgid "Event URL"
108
  msgstr ""
109
 
110
+ #: includes/wp-structuring-custom-post-event.php:116
111
  msgid "Place Name"
112
  msgstr ""
113
 
114
+ #: includes/wp-structuring-custom-post-event.php:121
115
  msgid "Place URL"
116
  msgstr ""
117
 
118
+ #: includes/wp-structuring-custom-post-event.php:126
119
  msgid "Place Address"
120
  msgstr ""
121
 
122
+ #: includes/wp-structuring-custom-post-event.php:131
123
  msgid "Price"
124
  msgstr ""
125
 
126
+ #: includes/wp-structuring-custom-post-event.php:136
127
  msgid "Currency"
128
  msgstr ""
129
 
130
+ #: wp-structuring-markup.php:146 wp-structuring-markup.php:147
131
  msgid "Schema.org Settings"
132
  msgstr ""
133
 
134
+ #: wp-structuring-markup.php:154
135
  msgid "Schema.org Setting Edit"
136
  msgstr ""
137
 
144
  msgstr ""
145
 
146
  #. Description of the plugin/theme
147
+ msgid "Allows you to include schema.org JSON-LD syntax markup on your website"
 
 
148
  msgstr ""
149
 
150
  #. Author of the plugin/theme
readme.txt CHANGED
@@ -52,6 +52,10 @@ if ( shortcode_exists( 'wp-structuring-markup-breadcrumb' ) ) {
52
 
53
  == Changelog ==
54
 
 
 
 
 
55
  = 2.4.0 (2016-02-06) =
56
 
57
  * Added : Schema.org type "Person".
52
 
53
  == Changelog ==
54
 
55
+ = 2.4.1 (2016-03-01) =
56
+
57
+ * Updated : Translation.
58
+
59
  = 2.4.0 (2016-02-06) =
60
 
61
  * Added : Schema.org type "Person".
wp-structuring-markup.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Markup (JSON-LD) structured in schema.org
4
  Plugin URI: https://wordpress.org/plugins/wp-structuring-markup/
5
  Description: Allows you to include schema.org JSON-LD syntax markup on your website
6
- Version: 2.4.0
7
  Author: Kazuya Takami
8
  Author URI: http://programp.com/
9
  License: GPLv2 or later
3
  Plugin Name: Markup (JSON-LD) structured in schema.org
4
  Plugin URI: https://wordpress.org/plugins/wp-structuring-markup/
5
  Description: Allows you to include schema.org JSON-LD syntax markup on your website
6
+ Version: 2.4.1
7
  Author: Kazuya Takami
8
  Author URI: http://programp.com/
9
  License: GPLv2 or later