Meta Box - Version 4.5.2

Version Description

  • Improvement: Add Persian (Farsi) language. Thank Ahmad Azimi.
  • Improvement: Update Spanish translation. Thank David Perez.
  • Fix: Cloning text fields
  • Fix: rwmb_meta works incorrectly for image fields if multiple=false
Download this release

Release Info

Developer rilwis
Plugin Icon 128x128 Meta Box
Version 4.5.2
Comparing to
See all releases

Code changes from version 4.5.1 to 4.5.2

Files changed (22) hide show
  1. css/select2/spinner.gif +0 -0
  2. inc/field.php +14 -4
  3. inc/helpers.php +5 -4
  4. lang/ar.po +0 -122
  5. lang/de_DE.po +0 -160
  6. lang/default.pot +0 -174
  7. lang/es.mo +0 -0
  8. lang/es.po +0 -121
  9. lang/es_ES.mo +0 -0
  10. lang/es_ES.po +0 -127
  11. lang/fa_IR.mo +0 -0
  12. lang/fr_FR.po +0 -456
  13. lang/it_IT.po +0 -126
  14. lang/nb_NO.po +0 -149
  15. lang/nl.po +0 -130
  16. lang/pt_BR.po +0 -124
  17. lang/sv_SE.po +0 -118
  18. lang/tr_TR.po +0 -384
  19. lang/vi.po +0 -411
  20. lang/zh_CN.po +0 -384
  21. meta-box.php +2 -2
  22. readme.txt +7 -1
css/select2/spinner.gif DELETED
Binary file
inc/field.php CHANGED
@@ -65,10 +65,12 @@ if ( ! class_exists( 'RWMB_Field ' ) )
65
  // Cloneable fields
66
  if ( $field['clone'] )
67
  {
68
- $meta = (array) $meta;
69
-
70
  $field_html = '';
71
 
 
 
 
 
72
  foreach ( $meta as $index => $sub_meta )
73
  {
74
  $sub_field = $field;
@@ -271,7 +273,15 @@ if ( ! class_exists( 'RWMB_Field ' ) )
271
  // Make sure meta value is an array for clonable and multiple fields
272
  if ( $field['clone'] || $field['multiple'] )
273
  {
274
- $meta = is_array( $meta ) ? $meta : array();
 
 
 
 
 
 
 
 
275
  }
276
 
277
  return $meta;
@@ -412,7 +422,7 @@ if ( ! class_exists( 'RWMB_Field ' ) )
412
  // Make sure meta value is an array for clonable and multiple fields
413
  if ( $field['clone'] || $field['multiple'] )
414
  {
415
- $value = (array) $value;
416
  }
417
  }
418
 
65
  // Cloneable fields
66
  if ( $field['clone'] )
67
  {
 
 
68
  $field_html = '';
69
 
70
+ /**
71
+ * Note: $meta must contain value so that the foreach loop runs!
72
+ * @see self::meta()
73
+ */
74
  foreach ( $meta as $index => $sub_meta )
75
  {
76
  $sub_field = $field;
273
  // Make sure meta value is an array for clonable and multiple fields
274
  if ( $field['clone'] || $field['multiple'] )
275
  {
276
+ if ( empty( $meta ) || ! is_array( $meta ) )
277
+ {
278
+ /**
279
+ * Note: if field is clonable, $meta must be an array with values
280
+ * so that the foreach loop in self::show() runs properly
281
+ * @see self::show()
282
+ */
283
+ $meta = $field['clone'] ? array( '' ) : array();
284
+ }
285
  }
286
 
287
  return $meta;
422
  // Make sure meta value is an array for clonable and multiple fields
423
  if ( $field['clone'] || $field['multiple'] )
424
  {
425
+ $value = is_array( $value ) && $value ? $value : array();
426
  }
427
  }
428
 
inc/helpers.php CHANGED
@@ -57,13 +57,14 @@ if ( ! class_exists( 'RWMB_Helper' ) )
57
  {
58
  $post_id = empty( $post_id ) ? get_the_ID() : $post_id;
59
  $args = wp_parse_args( $args, array(
60
- 'type' => 'text',
 
61
  ) );
62
 
63
- // Set 'multiple' for fields based on 'type'
64
- if ( ! isset( $args['multiple'] ) )
65
  {
66
- $args['multiple'] = in_array( $args['type'], array( 'checkbox_list', 'file', 'file_advanced', 'image', 'image_advanced', 'plupload_image', 'thickbox_image' ) );
67
  }
68
 
69
  $meta = get_post_meta( $post_id, $key, ! $args['multiple'] );
57
  {
58
  $post_id = empty( $post_id ) ? get_the_ID() : $post_id;
59
  $args = wp_parse_args( $args, array(
60
+ 'type' => 'text',
61
+ 'multiple' => false,
62
  ) );
63
 
64
+ // Always set 'multiple' true for following field types
65
+ if ( in_array( $args['type'], array( 'checkbox_list', 'file', 'file_advanced', 'image', 'image_advanced', 'plupload_image', 'thickbox_image' ) ) )
66
  {
67
+ $args['multiple'] = true;
68
  }
69
 
70
  $meta = get_post_meta( $post_id, $key, ! $args['multiple'] );
lang/ar.po DELETED
@@ -1,122 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-03 15:09+0700\n"
6
- "PO-Revision-Date: 2012-12-29 23:40-0500\n"
7
- "Last-Translator: Adel Qalieh <aqalieh95@gmail.com>\n"
8
- "Language-Team: Adel Qalieh <aqalieh95@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;_x:2c,1;_n:1,2;_n_noop:1,2;_nx:1,2;"
13
- "_nx_noop:1,2\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
17
- "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
18
- "X-Language: ar\n"
19
- "X-Source-Language: en\n"
20
- "Language: ar\n"
21
- "X-Poedit-SearchPath-0: ..\n"
22
- "X-Poedit-SearchPath-1: ../inc/fields\n"
23
-
24
- #: ../meta-box.php:79
25
- msgid "RW_Meta_Box Debug:"
26
- msgstr "RW_Meta_Box Debug:"
27
-
28
- #: ../inc/classes/meta-box.php:316
29
- msgid "+"
30
- msgstr "+"
31
-
32
- #: ../inc/classes/meta-box.php:340
33
- msgid "&#8211;"
34
- msgstr "&#8211;"
35
-
36
- #: ../inc/fields/file.php:69
37
- msgid "Error: Cannot delete file"
38
- msgstr "خطأ: لا يمكن حذف الملف"
39
-
40
- #: ../inc/fields/file.php:83
41
- msgctxt "file upload"
42
- msgid "Uploaded files"
43
- msgstr "ملفات محملة"
44
-
45
- #: ../inc/fields/file.php:84
46
- msgctxt "file upload"
47
- msgid "Delete this file"
48
- msgstr "حذف هذا الملف"
49
-
50
- #: ../inc/fields/file.php:85
51
- msgctxt "file upload"
52
- msgid "Delete"
53
- msgstr "حذف"
54
-
55
- #: ../inc/fields/file.php:86
56
- msgctxt "file upload"
57
- msgid "Upload files"
58
- msgstr "تحميل الملفات"
59
-
60
- #: ../inc/fields/file.php:87
61
- msgctxt "file upload"
62
- msgid "+ Add new file"
63
- msgstr "+ إضافة ملف جديد"
64
-
65
- #: ../inc/fields/image.php:75
66
- msgid "Order saved"
67
- msgstr "حفظ الترتيب"
68
-
69
- #: ../inc/fields/image.php:91 ../inc/fields/plupload-image.php:156
70
- msgctxt "image upload"
71
- msgid "Uploaded files"
72
- msgstr "ملفات محملة"
73
-
74
- #: ../inc/fields/image.php:92 ../inc/fields/plupload-image.php:112
75
- msgctxt "image upload"
76
- msgid "Delete this file"
77
- msgstr "حذف هذا الملف"
78
-
79
- #: ../inc/fields/image.php:93 ../inc/fields/plupload-image.php:113
80
- msgctxt "image upload"
81
- msgid "Delete"
82
- msgstr "حذف"
83
-
84
- #: ../inc/fields/image.php:94 ../inc/fields/plupload-image.php:114
85
- msgctxt "image upload"
86
- msgid "Edit"
87
- msgstr "حرر"
88
-
89
- #: ../inc/fields/image.php:95 ../inc/fields/plupload-image.php:157
90
- msgctxt "image upload"
91
- msgid "Upload files"
92
- msgstr "تحميل الملفات"
93
-
94
- #: ../inc/fields/image.php:96
95
- msgctxt "image upload"
96
- msgid "+ Add new image"
97
- msgstr "إضافة صورة جديدة"
98
-
99
- #: ../inc/fields/plupload-image.php:95
100
- msgctxt "image upload"
101
- msgid "Allowed Image Files"
102
- msgstr "أنواع الصور المسموحة"
103
-
104
- #: ../inc/fields/plupload-image.php:160
105
- msgctxt "image upload"
106
- msgid "Drop images here"
107
- msgstr "إفلت الصور هنا"
108
-
109
- #: ../inc/fields/plupload-image.php:161
110
- msgctxt "image upload"
111
- msgid "or"
112
- msgstr "أو"
113
-
114
- #: ../inc/fields/plupload-image.php:162
115
- msgctxt "image upload"
116
- msgid "Select Files"
117
- msgstr "إختر الملفات"
118
-
119
- #: ../inc/fields/thickbox-image.php:45
120
- msgctxt "image upload"
121
- msgid "Upload image"
122
- msgstr "حمل الصورة"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/de_DE.po DELETED
@@ -1,160 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-03-23 22:08+0100\n"
6
- "PO-Revision-Date: 2013-03-23 22:21+0100\n"
7
- "Last-Translator: Johann Kratzik <johann@kratzik.com>\n"
8
- "Language-Team: Johann Kratzik <info@zoomdrive.at>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_x:2c,1;_n:1,2;_n_noop:1,2;_nx:1,2;_nx_noop:1,2\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-Language: German\n"
15
- "X-Poedit-Country: AUSTRIA\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
- "X-Poedit-SearchPath-1: ../inc/fields\n"
19
-
20
- #: ../inc/classes/meta-box.php:296
21
- msgid "Please correct the errors highlighted below and try again."
22
- msgstr "Bitte beheben Sie die unten angeführten Fehler und versuchen Sie es erneut."
23
-
24
- #: ../inc/classes/meta-box.php:357
25
- msgid "+"
26
- msgstr "+"
27
-
28
- #: ../inc/classes/meta-box.php:379
29
- msgid "&#8211;"
30
- msgstr "&#8211;"
31
-
32
- #: ../inc/fields/file-advanced.php:59
33
- msgctxt "file upload"
34
- msgid "Select Files"
35
- msgstr "Dateien auswählen"
36
-
37
- #: ../inc/fields/file.php:66
38
- msgid "Error: Cannot delete file"
39
- msgstr "Fehler: Datei kann nicht gelöscht werden"
40
-
41
- #: ../inc/fields/file.php:80
42
- msgctxt "file upload"
43
- msgid "Upload Files"
44
- msgstr "Dateien hochladen"
45
-
46
- #: ../inc/fields/file.php:81
47
- msgctxt "file upload"
48
- msgid "+ Add new file"
49
- msgstr "+ Neue Datei hinzufügen"
50
-
51
- #: ../inc/fields/file.php:133
52
- msgctxt "file upload"
53
- msgid "Delete"
54
- msgstr "Löschen"
55
-
56
- #: ../inc/fields/file.php:134
57
- msgctxt "file upload"
58
- msgid "Edit"
59
- msgstr "Bearbeiten"
60
-
61
- #: ../inc/fields/image-advanced.php:63
62
- msgctxt "image upload"
63
- msgid "Select or Upload Images"
64
- msgstr "Bilder auswählen oder hochladen"
65
-
66
- #: ../inc/fields/image.php:64
67
- msgid "Order saved"
68
- msgstr "Reihenfolge gespeichert"
69
-
70
- #: ../inc/fields/image.php:78
71
- msgctxt "image upload"
72
- msgid "Upload Images"
73
- msgstr "Bilder hochladen"
74
-
75
- #: ../inc/fields/image.php:79
76
- msgctxt "image upload"
77
- msgid "+ Add new image"
78
- msgstr "+ Neues Bild hinzufügen"
79
-
80
- #: ../inc/fields/image.php:144
81
- msgctxt "image upload"
82
- msgid "Delete"
83
- msgstr "Löschen"
84
-
85
- #: ../inc/fields/image.php:145
86
- msgctxt "image upload"
87
- msgid "Edit"
88
- msgstr "Bearbeiten"
89
-
90
- #: ../inc/fields/map.php:46
91
- msgid "Find Address"
92
- msgstr "Adresse finden"
93
-
94
- #: ../inc/fields/plupload-image.php:104
95
- msgctxt "image upload"
96
- msgid "Drop images here"
97
- msgstr "Bilder hierher ziehen"
98
-
99
- #: ../inc/fields/plupload-image.php:105
100
- msgctxt "image upload"
101
- msgid "or"
102
- msgstr "oder"
103
-
104
- #: ../inc/fields/plupload-image.php:106
105
- msgctxt "image upload"
106
- msgid "Select Files"
107
- msgstr "Dateien auswählen"
108
-
109
- #: ../inc/fields/plupload-image.php:181
110
- msgctxt "image upload"
111
- msgid "Allowed Image Files"
112
- msgstr "Erlaubte Typen von Bilddateien"
113
-
114
- #: ../inc/fields/posts.php:54
115
- msgid "Post"
116
- msgstr "Beitrag"
117
-
118
- #: ../inc/fields/posts.php:64
119
- #: ../inc/fields/taxonomy.php:42
120
- #, php-format
121
- msgid "Select a %s"
122
- msgstr "%s auswählen"
123
-
124
- #: ../inc/fields/select-advanced.php:69
125
- msgid "Select a value"
126
- msgstr "Einen Wert wählen"
127
-
128
- #, fuzzy
129
- #~ msgctxt "file upload"
130
-
131
- #~ msgid "Uploaded files"
132
- #~ msgstr "Dateien fertig geladen"
133
- #~ msgctxt "file upload"
134
-
135
- #~ msgid "Delete this file"
136
- #~ msgstr "Datei löschen"
137
-
138
- #, fuzzy
139
- #~ msgctxt "image upload"
140
-
141
- #~ msgid "Uploaded files"
142
- #~ msgstr "Dateien fertig geladen"
143
- #~ msgctxt "image upload"
144
-
145
- #~ msgid "Delete this file"
146
- #~ msgstr "Datei löschen"
147
- #~ msgctxt "image upload"
148
-
149
- #~ msgid "Upload files"
150
- #~ msgstr "Dateien hochladen"
151
- #~ msgctxt "image upload"
152
-
153
- #~ msgid "Add another file"
154
- #~ msgstr "Weitere Datei"
155
-
156
- #~ msgid "Cannot delete file. Something's wrong."
157
- #~ msgstr "Fehler: Datei kann nicht gelöscht werden."
158
-
159
- #~ msgid "Upload new files"
160
- #~ msgstr "Neue Dateien hochladen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/default.pot DELETED
@@ -1,174 +0,0 @@
1
- # <!=Copyright (C) 2014 Rilwis
2
- # This file is distributed under the GPL2+.=!>
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Meta Box 4.3.10\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/meta-box\n"
7
- "POT-Creation-Date: 2014-09-13 10:50:22+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: 2014-MO-DA HO:MI+ZONE\n"
12
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
14
-
15
- #: inc/field.php:225
16
- msgid "+"
17
- msgstr ""
18
-
19
- #: inc/field.php:235
20
- msgid "&#8211;"
21
- msgstr ""
22
-
23
- #: inc/fields/button.php:35
24
- msgid "Click me"
25
- msgstr ""
26
-
27
- #: inc/fields/file-advanced.php:23
28
- msgid "Select Files"
29
- msgstr ""
30
-
31
- #: inc/fields/file-advanced.php:66
32
- msgctxt "file upload"
33
- msgid "Select or Upload Files"
34
- msgstr ""
35
-
36
- #: inc/fields/file-advanced.php:103 inc/fields/file.php:168
37
- msgctxt "file upload"
38
- msgid "Delete"
39
- msgstr ""
40
-
41
- #: inc/fields/file-advanced.php:104 inc/fields/file.php:169
42
- msgctxt "file upload"
43
- msgid "Edit"
44
- msgstr ""
45
-
46
- #: inc/fields/file-input.php:17
47
- msgid "Select File"
48
- msgstr ""
49
-
50
- #: inc/fields/file-input.php:40
51
- msgid "Select"
52
- msgstr ""
53
-
54
- #: inc/fields/file-input.php:42
55
- msgid "Remove"
56
- msgstr ""
57
-
58
- #: inc/fields/file.php:19
59
- msgid "You may only upload maximum %d file"
60
- msgstr ""
61
-
62
- #: inc/fields/file.php:20
63
- msgid "You may only upload maximum %d files"
64
- msgstr ""
65
-
66
- #: inc/fields/file.php:98
67
- msgid "Error: Cannot delete file"
68
- msgstr ""
69
-
70
- #: inc/fields/file.php:111
71
- msgctxt "file upload"
72
- msgid "Upload Files"
73
- msgstr ""
74
-
75
- #: inc/fields/file.php:112
76
- msgctxt "file upload"
77
- msgid "+ Add new file"
78
- msgstr ""
79
-
80
- #: inc/fields/image-advanced.php:23
81
- msgid "Select Images"
82
- msgstr ""
83
-
84
- #: inc/fields/image-advanced.php:71
85
- msgctxt "image upload"
86
- msgid "Select or Upload Images"
87
- msgstr ""
88
-
89
- #: inc/fields/image-advanced.php:108 inc/fields/image.php:136
90
- msgctxt "image upload"
91
- msgid "Delete"
92
- msgstr ""
93
-
94
- #: inc/fields/image-advanced.php:109 inc/fields/image.php:137
95
- msgctxt "image upload"
96
- msgid "Edit"
97
- msgstr ""
98
-
99
- #: inc/fields/image.php:70 inc/fields/thickbox-image.php:34
100
- msgctxt "image upload"
101
- msgid "Upload Images"
102
- msgstr ""
103
-
104
- #: inc/fields/image.php:71
105
- msgctxt "image upload"
106
- msgid "+ Add new image"
107
- msgstr ""
108
-
109
- #: inc/fields/map.php:48
110
- msgid "Find Address"
111
- msgstr ""
112
-
113
- #: inc/fields/oembed.php:55
114
- msgid "Embed HTML not available."
115
- msgstr ""
116
-
117
- #: inc/fields/oembed.php:77
118
- msgid "Preview"
119
- msgstr ""
120
-
121
- #: inc/fields/plupload-image.php:105
122
- msgctxt "image upload"
123
- msgid "Drop images here"
124
- msgstr ""
125
-
126
- #: inc/fields/plupload-image.php:106
127
- msgctxt "image upload"
128
- msgid "or"
129
- msgstr ""
130
-
131
- #: inc/fields/plupload-image.php:107
132
- msgctxt "image upload"
133
- msgid "Select Files"
134
- msgstr ""
135
-
136
- #: inc/fields/plupload-image.php:183
137
- msgctxt "image upload"
138
- msgid "Allowed Image Files"
139
- msgstr ""
140
-
141
- #: inc/fields/post.php:52
142
- msgid "Post"
143
- msgstr ""
144
-
145
- #: inc/fields/post.php:66 inc/fields/taxonomy.php:40 inc/fields/user.php:62
146
- msgid "Select a %s"
147
- msgstr ""
148
-
149
- #: inc/fields/user.php:54
150
- msgid "User"
151
- msgstr ""
152
-
153
- #: inc/meta-box.php:245
154
- msgid "Please correct the errors highlighted below and try again."
155
- msgstr ""
156
- #. Plugin Name of the plugin/theme
157
- msgid "Meta Box"
158
- msgstr ""
159
-
160
- #. Plugin URI of the plugin/theme
161
- msgid "http://www.deluxeblogtips.com/meta-box"
162
- msgstr ""
163
-
164
- #. Description of the plugin/theme
165
- msgid "Create meta box for editing pages in WordPress. Compatible with custom post types since WP 3.0"
166
- msgstr ""
167
-
168
- #. Author of the plugin/theme
169
- msgid "Rilwis"
170
- msgstr ""
171
-
172
- #. Author URI of the plugin/theme
173
- msgid "http://www.deluxeblogtips.com"
174
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/es.mo DELETED
Binary file
lang/es.po DELETED
@@ -1,121 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-03 15:09+0700\n"
6
- "PO-Revision-Date: 2012-12-29 23:42-0500\n"
7
- "Last-Translator: Adel Qalieh <aqalieh95@gmail.com>\n"
8
- "Language-Team: Adel Qalieh <aqalieh95@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;_x:2c,1;_n:1,2;_n_noop:1,2;_nx:1,2;"
13
- "_nx_noop:1,2\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "Plural-Forms: nplurals=2; plural=(n != 1)\n"
17
- "X-Language: es\n"
18
- "X-Source-Language: en\n"
19
- "Language: es\n"
20
- "X-Poedit-SearchPath-0: ..\n"
21
- "X-Poedit-SearchPath-1: ../inc/fields\n"
22
-
23
- #: ../meta-box.php:79
24
- msgid "RW_Meta_Box Debug:"
25
- msgstr "RW_Meta_Box Debug:"
26
-
27
- #: ../inc/classes/meta-box.php:316
28
- msgid "+"
29
- msgstr "+"
30
-
31
- #: ../inc/classes/meta-box.php:340
32
- msgid "&#8211;"
33
- msgstr "&#8211;"
34
-
35
- #: ../inc/fields/file.php:69
36
- msgid "Error: Cannot delete file"
37
- msgstr "Error: No se puede eliminar el archivo"
38
-
39
- #: ../inc/fields/file.php:83
40
- msgctxt "file upload"
41
- msgid "Uploaded files"
42
- msgstr "Archivos subidos"
43
-
44
- #: ../inc/fields/file.php:84
45
- msgctxt "file upload"
46
- msgid "Delete this file"
47
- msgstr "Eliminar este archivo"
48
-
49
- #: ../inc/fields/file.php:85
50
- msgctxt "file upload"
51
- msgid "Delete"
52
- msgstr "Eliminar"
53
-
54
- #: ../inc/fields/file.php:86
55
- msgctxt "file upload"
56
- msgid "Upload files"
57
- msgstr "Subir archivos"
58
-
59
- #: ../inc/fields/file.php:87
60
- msgctxt "file upload"
61
- msgid "+ Add new file"
62
- msgstr "+ Añadir un archivo nuevo"
63
-
64
- #: ../inc/fields/image.php:75
65
- msgid "Order saved"
66
- msgstr "El orden guardado"
67
-
68
- #: ../inc/fields/image.php:91 ../inc/fields/plupload-image.php:156
69
- msgctxt "image upload"
70
- msgid "Uploaded files"
71
- msgstr "Archivos subidos"
72
-
73
- #: ../inc/fields/image.php:92 ../inc/fields/plupload-image.php:112
74
- msgctxt "image upload"
75
- msgid "Delete this file"
76
- msgstr "Eliminar este archivo"
77
-
78
- #: ../inc/fields/image.php:93 ../inc/fields/plupload-image.php:113
79
- msgctxt "image upload"
80
- msgid "Delete"
81
- msgstr "Eliminar"
82
-
83
- #: ../inc/fields/image.php:94 ../inc/fields/plupload-image.php:114
84
- msgctxt "image upload"
85
- msgid "Edit"
86
- msgstr "Edit"
87
-
88
- #: ../inc/fields/image.php:95 ../inc/fields/plupload-image.php:157
89
- msgctxt "image upload"
90
- msgid "Upload files"
91
- msgstr "Subir archivos"
92
-
93
- #: ../inc/fields/image.php:96
94
- msgctxt "image upload"
95
- msgid "+ Add new image"
96
- msgstr "+ Añadir un archivo nuevo"
97
-
98
- #: ../inc/fields/plupload-image.php:95
99
- msgctxt "image upload"
100
- msgid "Allowed Image Files"
101
- msgstr "Archivos de imágenes permitidos"
102
-
103
- #: ../inc/fields/plupload-image.php:160
104
- msgctxt "image upload"
105
- msgid "Drop images here"
106
- msgstr "Soltar imágenes aquí"
107
-
108
- #: ../inc/fields/plupload-image.php:161
109
- msgctxt "image upload"
110
- msgid "or"
111
- msgstr "o"
112
-
113
- #: ../inc/fields/plupload-image.php:162
114
- msgctxt "image upload"
115
- msgid "Select Files"
116
- msgstr "Seleccionar Archivos"
117
-
118
- #: ../inc/fields/thickbox-image.php:45
119
- msgctxt "image upload"
120
- msgid "Upload image"
121
- msgstr "Subir imágenes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/es_ES.mo CHANGED
Binary file
lang/es_ES.po DELETED
@@ -1,127 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-03 15:09+0700\n"
6
- "PO-Revision-Date: 2015-04-28 18:18+0100\n"
7
- "Last-Translator: David <david@closemarketing.es>\n"
8
- "Language-Team: Adel Qalieh <aqalieh95@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;_x:2c,1;_n:1,2;_n_noop:1,2;_nx:1,2;"
13
- "_nx_noop:1,2\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Language: es\n"
18
- "X-Source-Language: en\n"
19
- "Language: es\n"
20
- "X-Generator: Poedit 1.7.6\n"
21
- "X-Poedit-SearchPath-0: ..\n"
22
- "X-Poedit-SearchPath-1: ../inc/fields\n"
23
-
24
- #: ../meta-box.php:79
25
- msgid "RW_Meta_Box Debug:"
26
- msgstr "RW_Meta_Box Debug:"
27
-
28
- #: ../inc/classes/meta-box.php:316
29
- msgid "+"
30
- msgstr "+"
31
-
32
- #: ../inc/classes/meta-box.php:340
33
- msgid "&#8211;"
34
- msgstr "&#8211;"
35
-
36
- #: ../inc/fields/file.php:69
37
- msgid "Error: Cannot delete file"
38
- msgstr "Error: No se puede eliminar el archivo"
39
-
40
- #: ../inc/fields/file.php:83
41
- msgctxt "file upload"
42
- msgid "Uploaded files"
43
- msgstr "Archivos subidos"
44
-
45
- #: ../inc/fields/file.php:84
46
- msgctxt "file upload"
47
- msgid "Delete this file"
48
- msgstr "Eliminar este archivo"
49
-
50
- #: ../inc/fields/file.php:85
51
- msgctxt "file upload"
52
- msgid "Delete"
53
- msgstr "Eliminar"
54
-
55
- #: ../inc/fields/file.php:86
56
- msgctxt "file upload"
57
- msgid "Upload files"
58
- msgstr "Subir archivos"
59
-
60
- #: ../inc/fields/file.php:87
61
- msgctxt "file upload"
62
- msgid "+ Add new file"
63
- msgstr "+ Añadir un archivo nuevo"
64
-
65
- #: ../inc/fields/image.php:75
66
- msgid "Order saved"
67
- msgstr "El orden guardado"
68
-
69
- #: ../inc/fields/image.php:91
70
- #: ../inc/fields/plupload-image.php:156
71
- msgctxt "image upload"
72
- msgid "Uploaded files"
73
- msgstr "Archivos subidos"
74
-
75
- #: ../inc/fields/image.php:92
76
- #: ../inc/fields/plupload-image.php:112
77
- msgctxt "image upload"
78
- msgid "Delete this file"
79
- msgstr "Eliminar este archivo"
80
-
81
- #: ../inc/fields/image.php:93
82
- #: ../inc/fields/plupload-image.php:113
83
- msgctxt "image upload"
84
- msgid "Delete"
85
- msgstr "Eliminar"
86
-
87
- #: ../inc/fields/image.php:94
88
- #: ../inc/fields/plupload-image.php:114
89
- msgctxt "image upload"
90
- msgid "Edit"
91
- msgstr "Editar"
92
-
93
- #: ../inc/fields/image.php:95
94
- #: ../inc/fields/plupload-image.php:157
95
- msgctxt "image upload"
96
- msgid "Upload files"
97
- msgstr "Subir archivos"
98
-
99
- #: ../inc/fields/image.php:96
100
- msgctxt "image upload"
101
- msgid "+ Add new image"
102
- msgstr "+ Añadir un archivo nuevo"
103
-
104
- #: ../inc/fields/plupload-image.php:95
105
- msgctxt "image upload"
106
- msgid "Allowed Image Files"
107
- msgstr "Archivos de imágenes permitidos"
108
-
109
- #: ../inc/fields/plupload-image.php:160
110
- msgctxt "image upload"
111
- msgid "Drop images here"
112
- msgstr "Soltar imágenes aquí"
113
-
114
- #: ../inc/fields/plupload-image.php:161
115
- msgctxt "image upload"
116
- msgid "or"
117
- msgstr "o"
118
-
119
- #: ../inc/fields/plupload-image.php:162
120
- msgctxt "image upload"
121
- msgid "Select Files"
122
- msgstr "Seleccionar Archivos"
123
-
124
- #: ../inc/fields/thickbox-image.php:45
125
- msgctxt "image upload"
126
- msgid "Upload image"
127
- msgstr "Subir imágenes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/fa_IR.mo ADDED
Binary file
lang/fr_FR.po DELETED
@@ -1,456 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box\n"
4
- "POT-Creation-Date: 2015-02-27 16:16+0100\n"
5
- "PO-Revision-Date: 2015-02-28 09:09+0100\n"
6
- "Last-Translator: \n"
7
- "Language-Team: Frédéric Serva <fred.serva@gmail.com>\n"
8
- "Language: fr\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.4\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
17
- "_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPathExcluded-0: *.js\n"
21
-
22
- #: demo/all-custom-post-types.php:15
23
- msgid "Personal Information"
24
- msgstr "Informations personnelles"
25
-
26
- #: demo/all-custom-post-types.php:20
27
- msgid "Full name"
28
- msgstr "Nom et prénom"
29
-
30
- #: demo/better-include.php:16 demo/include-by-ID-or-page-template.php:8
31
- msgid "Meta Box Title"
32
- msgstr "Titre de la Meta Box"
33
-
34
- #: demo/better-include.php:19 demo/include-by-ID-or-page-template.php:14
35
- msgid "Your images"
36
- msgstr "Vos images"
37
-
38
- #: demo/date-time-js-options.php:8
39
- msgid "Date Time Picker With JS Options"
40
- msgstr "Sélecteur Date et Heure avec Options JS"
41
-
42
- #: demo/date-time-js-options.php:12
43
- msgid "Date"
44
- msgstr "Date"
45
-
46
- #: demo/date-time-js-options.php:18 demo/demo.php:193
47
- msgid "(yyyy-mm-dd)"
48
- msgstr "(yyyy-mm-dd)"
49
-
50
- #: demo/date-time-js-options.php:20
51
- msgid "Select Date"
52
- msgstr "Sélectionnez la date"
53
-
54
- #: demo/date-time-js-options.php:21 demo/demo.php:194
55
- msgid "yy-mm-dd"
56
- msgstr "yy-mm-dd"
57
-
58
- #: demo/date-time-js-options.php:27
59
- msgid "Datetime"
60
- msgstr "Date & Heure combinées"
61
-
62
- #: demo/date-time-js-options.php:38
63
- msgid "Time"
64
- msgstr "Heure"
65
-
66
- #: demo/demo.php:42
67
- msgid "Standard Fields"
68
- msgstr "Champs standards"
69
-
70
- #: demo/demo.php:61
71
- msgid "Text"
72
- msgstr "Texte"
73
-
74
- #: demo/demo.php:65
75
- msgid "Text description"
76
- msgstr "Description du texte"
77
-
78
- #: demo/demo.php:68
79
- msgid "Default text value"
80
- msgstr "Valeur texte par défaut"
81
-
82
- #: demo/demo.php:74
83
- msgid "Checkbox"
84
- msgstr "Case à cocher"
85
-
86
- #: demo/demo.php:82
87
- msgid "Radio"
88
- msgstr "Bouton Radio"
89
-
90
- #: demo/demo.php:88 demo/demo.php:99 demo/demo.php:242 demo/demo.php:253
91
- #: demo/demo.php:302
92
- msgid "Label1"
93
- msgstr "Étiquette1"
94
-
95
- #: demo/demo.php:89 demo/demo.php:100 demo/demo.php:243 demo/demo.php:254
96
- #: demo/demo.php:303
97
- msgid "Label2"
98
- msgstr "Étiquette2"
99
-
100
- #: demo/demo.php:94 demo/demo.php:297 inc/fields/file-input.php:40
101
- msgid "Select"
102
- msgstr "Choisissez"
103
-
104
- #: demo/demo.php:105 demo/demo.php:308 demo/demo.php:333
105
- msgid "Select an Item"
106
- msgstr "Choisissez un élément"
107
-
108
- #: demo/demo.php:112
109
- msgid "Hidden value"
110
- msgstr "Valeur cachée"
111
-
112
- #: demo/demo.php:116
113
- msgid "Password"
114
- msgstr "Mot de passe"
115
-
116
- #: demo/demo.php:122
117
- msgid "Textarea"
118
- msgstr "Zone de texte"
119
-
120
- #: demo/demo.php:123
121
- msgid "Textarea description"
122
- msgstr "Description de la zone de texte"
123
-
124
- #: demo/demo.php:140
125
- msgid "Password is required"
126
- msgstr "Mot de passe requis"
127
-
128
- #: demo/demo.php:141
129
- msgid "Password must be at least 7 characters"
130
- msgstr "Le mot de passe doit comporter au moins 7 caractères."
131
-
132
- #: demo/demo.php:149
133
- msgid "Advanced Fields"
134
- msgstr "Champs spéciaux"
135
-
136
- #: demo/demo.php:155
137
- msgid "Heading"
138
- msgstr "Intertitre"
139
-
140
- #: demo/demo.php:157
141
- msgid "Optional description for this heading"
142
- msgstr "Description facultative pour cet intertitre"
143
-
144
- #: demo/demo.php:161 demo/slider.php:9
145
- msgid "Slider"
146
- msgstr "Slider"
147
-
148
- #: demo/demo.php:166 demo/slider.php:14
149
- msgid "$"
150
- msgstr "$"
151
-
152
- #: demo/demo.php:167 demo/slider.php:15
153
- msgid " USD"
154
- msgstr " USD"
155
-
156
- #: demo/demo.php:178
157
- msgid "Number"
158
- msgstr "Nombre"
159
-
160
- #: demo/demo.php:187
161
- msgid "Date picker"
162
- msgstr "Sélecteur de date"
163
-
164
- #: demo/demo.php:202
165
- msgid "Datetime picker"
166
- msgstr "Sélecteur de Date & Heure combinées"
167
-
168
- #: demo/demo.php:216
169
- msgid "Time picker"
170
- msgstr "Sélecteur d'heure"
171
-
172
- #: demo/demo.php:231
173
- msgid "Color picker"
174
- msgstr "Sélecteur de couleur"
175
-
176
- #: demo/demo.php:237
177
- msgid "Checkbox list"
178
- msgstr "liste de cases à cocher"
179
-
180
- #: demo/demo.php:248
181
- msgid "Autocomplete"
182
- msgstr "Complétion automatique"
183
-
184
- #: demo/demo.php:263
185
- msgid "Email"
186
- msgstr "Email"
187
-
188
- #: demo/demo.php:265
189
- msgid "Email description"
190
- msgstr "Description de l'email"
191
-
192
- #: demo/demo.php:271
193
- msgid "Range"
194
- msgstr "Fourchette"
195
-
196
- #: demo/demo.php:273
197
- msgid "Range description"
198
- msgstr "Description de la fourchette"
199
-
200
- #: demo/demo.php:282
201
- msgid "URL"
202
- msgstr "URL"
203
-
204
- #: demo/demo.php:284
205
- msgid "URL description"
206
- msgstr "Description de l'URL"
207
-
208
- #: demo/demo.php:290
209
- msgid "oEmbed"
210
- msgstr "oEmbed"
211
-
212
- #: demo/demo.php:292
213
- msgid "oEmbed description"
214
- msgstr "Description oEmbed"
215
-
216
- #: demo/demo.php:312
217
- msgid "Taxonomy"
218
- msgstr "Taxonomie"
219
-
220
- #: demo/demo.php:326
221
- msgid "Posts (Pages)"
222
- msgstr "Articles (Pages)"
223
-
224
- #: demo/demo.php:342
225
- msgid "WYSIWYG / Rich Text Editor"
226
- msgstr "Éditeur de texte (WYSIWYG)"
227
-
228
- #: demo/demo.php:347
229
- msgid "WYSIWYG default value"
230
- msgstr "Valeur par défaut WYSIWYG"
231
-
232
- #: demo/demo.php:363 demo/force-delete.php:12
233
- msgid "File Upload"
234
- msgstr "Mise en ligne d'un fichier"
235
-
236
- #: demo/demo.php:369
237
- msgid "File Advanced Upload"
238
- msgstr "Mise en ligne avancée d'un fichier"
239
-
240
- #: demo/demo.php:377 demo/force-delete.php:19
241
- msgid "Image Upload"
242
- msgstr "Mise en ligne d'une image"
243
-
244
- #: demo/demo.php:383 demo/force-delete.php:25
245
- msgid "Thickbox Image Upload"
246
- msgstr "Mise en ligne d'une image (Thickbox)"
247
-
248
- #: demo/demo.php:389 demo/force-delete.php:32
249
- msgid "Plupload Image Upload"
250
- msgstr "Mise en ligne d'une image (Plupload)"
251
-
252
- #: demo/demo.php:396
253
- msgid "Image Advanced Upload"
254
- msgstr "Mise en ligne avancée d'une image"
255
-
256
- #: demo/force-delete.php:8
257
- msgid "Test Meta Box"
258
- msgstr "Test de Meta Box"
259
-
260
- #: demo/image-select.php:6
261
- msgid "Image Select Demo"
262
- msgstr "Démo de Sélection d'image"
263
-
264
- #: demo/image-select.php:10
265
- msgid "Layout"
266
- msgstr "Disposition:"
267
-
268
- #: demo/map.php:6
269
- msgid "Google Map"
270
- msgstr "Google Map"
271
-
272
- #: demo/map.php:10
273
- msgid "Address"
274
- msgstr "Adresse"
275
-
276
- #: demo/map.php:12
277
- msgid "Hanoi, Vietnam"
278
- msgstr "Hanoi, Vietnam"
279
-
280
- #: demo/map.php:16
281
- msgid "Location"
282
- msgstr "Localisation"
283
-
284
- #: demo/oembed.php:6
285
- msgid "oEmbed Demo"
286
- msgstr "oEmbed Démo"
287
-
288
- #: demo/oembed.php:10
289
- msgid "oEmbed(s)"
290
- msgstr "oEmbed (s)"
291
-
292
- #: demo/slider.php:6
293
- msgid "Slider Demo"
294
- msgstr "Démo de Slider"
295
-
296
- #: demo/url.php:6
297
- msgid "URL Demo"
298
- msgstr "Démo d'URL"
299
-
300
- #: demo/url.php:10
301
- msgid "URL(s)"
302
- msgstr "URL(s)"
303
-
304
- #: inc/common.php:53
305
- msgid "Documentation"
306
- msgstr "Documentation"
307
-
308
- #: inc/common.php:54
309
- msgid "Extensions"
310
- msgstr "Extensions"
311
-
312
- #: inc/field.php:225
313
- msgid "+"
314
- msgstr "+"
315
-
316
- #: inc/field.php:235
317
- msgid "&#8211;"
318
- msgstr "&#8211;"
319
-
320
- #: inc/fields/autocomplete.php:18 inc/fields/autocomplete.php:72
321
- msgid "Delete"
322
- msgstr "Supprimer"
323
-
324
- #: inc/fields/button.php:35
325
- msgid "Click me"
326
- msgstr "Cliquez-ici"
327
-
328
- #: inc/fields/file-advanced.php:23
329
- msgid "Select Files"
330
- msgstr "Sélectionnez les fichiers"
331
-
332
- #: inc/fields/file-advanced.php:66
333
- msgctxt "file upload"
334
- msgid "Select or Upload Files"
335
- msgstr "Sélectionnez ou mettez en ligne des fichiers"
336
-
337
- #: inc/fields/file-advanced.php:103 inc/fields/file.php:168
338
- msgctxt "file upload"
339
- msgid "Delete"
340
- msgstr "Supprimer"
341
-
342
- #: inc/fields/file-advanced.php:104 inc/fields/file.php:169
343
- msgctxt "file upload"
344
- msgid "Edit"
345
- msgstr "Modifier"
346
-
347
- #: inc/fields/file-input.php:17
348
- msgid "Select File"
349
- msgstr "Choisissez un fichier"
350
-
351
- #: inc/fields/file-input.php:42
352
- msgid "Remove"
353
- msgstr "Supprimer"
354
-
355
- #: inc/fields/file.php:19
356
- #, php-format
357
- msgid "You may only upload maximum %d file"
358
- msgstr "Vous ne pouvez mettre en ligne qu'un fichier de %d maximum"
359
-
360
- #: inc/fields/file.php:20
361
- #, php-format
362
- msgid "You may only upload maximum %d files"
363
- msgstr "Vous ne pouvez mettre en ligne que des fichiers de %d maximum"
364
-
365
- #: inc/fields/file.php:98
366
- msgid "Error: Cannot delete file"
367
- msgstr "Erreur : Impossible de supprimer le fichier"
368
-
369
- #: inc/fields/file.php:111
370
- msgctxt "file upload"
371
- msgid "Upload Files"
372
- msgstr "Mettez en ligne des fichiers"
373
-
374
- #: inc/fields/file.php:112
375
- msgctxt "file upload"
376
- msgid "+ Add new file"
377
- msgstr "+ Ajouter un nouveau fichier"
378
-
379
- #: inc/fields/image-advanced.php:23
380
- msgid "Select Images"
381
- msgstr "Sélectionner des images"
382
-
383
- #: inc/fields/image-advanced.php:71
384
- msgctxt "image upload"
385
- msgid "Select or Upload Images"
386
- msgstr "Sélectionnez ou mettez en ligne des images"
387
-
388
- #: inc/fields/image-advanced.php:108 inc/fields/image.php:136
389
- msgctxt "image upload"
390
- msgid "Delete"
391
- msgstr "Supprimer"
392
-
393
- #: inc/fields/image-advanced.php:109 inc/fields/image.php:137
394
- msgctxt "image upload"
395
- msgid "Edit"
396
- msgstr "Modifier"
397
-
398
- #: inc/fields/image.php:70 inc/fields/thickbox-image.php:34
399
- msgctxt "image upload"
400
- msgid "Upload Images"
401
- msgstr "Mettez en ligne des images"
402
-
403
- #: inc/fields/image.php:71
404
- msgctxt "image upload"
405
- msgid "+ Add new image"
406
- msgstr "+ Ajouter une nouvelle image"
407
-
408
- #: inc/fields/map.php:48
409
- msgid "Find Address"
410
- msgstr "Trouver une adresse"
411
-
412
- #: inc/fields/oembed.php:55
413
- msgid "Embed HTML not available."
414
- msgstr "Intégration du code HTML non disponible."
415
-
416
- #: inc/fields/oembed.php:77
417
- msgid "Preview"
418
- msgstr "Aperçu"
419
-
420
- #: inc/fields/plupload-image.php:105
421
- msgctxt "image upload"
422
- msgid "Drop images here"
423
- msgstr "Déposez des images ici"
424
-
425
- #: inc/fields/plupload-image.php:106
426
- msgctxt "image upload"
427
- msgid "or"
428
- msgstr "ou"
429
-
430
- #: inc/fields/plupload-image.php:107
431
- msgctxt "image upload"
432
- msgid "Select Files"
433
- msgstr "Sélectionnez des fichiers"
434
-
435
- #: inc/fields/plupload-image.php:182
436
- msgctxt "image upload"
437
- msgid "Allowed Image Files"
438
- msgstr "Types d'images autorisés"
439
-
440
- #: inc/fields/post.php:52
441
- msgid "Post"
442
- msgstr "Article"
443
-
444
- #: inc/fields/post.php:66 inc/fields/taxonomy.php:40 inc/fields/user.php:62
445
- #, php-format
446
- msgid "Select a %s"
447
- msgstr "Choisissez un %s"
448
-
449
- #: inc/fields/user.php:54
450
- msgid "User"
451
- msgstr "Utilisateur"
452
-
453
- #: inc/meta-box.php:245
454
- msgid "Please correct the errors highlighted below and try again."
455
- msgstr ""
456
- "Merci de corriger les erreurs mises en évidence ci-dessous et de réessayer."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/it_IT.po DELETED
@@ -1,126 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-02 14:08+0700\n"
6
- "PO-Revision-Date: 2012-03-02 14:08+0700\n"
7
- "Last-Translator: name <email@domain.com>\n"
8
- "Language-Team: Rilwis <rilwis@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_n:1,2;_n_noop:1,2;_nx:1,2;_nx_noop:1,2;_x:2c,1\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-Language: English\n"
15
- "X-Poedit-Country: UNITED STATES\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
- "X-Poedit-SearchPath-1: ../inc/fields\n"
20
-
21
- #: ../meta-box.php:334
22
- msgid "+"
23
- msgstr ""
24
-
25
- #: ../meta-box.php:358
26
- msgid "&#8211;"
27
- msgstr ""
28
-
29
- #: ../meta-box.php:691
30
- msgid "RW_Meta_Box Debug:"
31
- msgstr ""
32
-
33
- #: ../inc/fields/color.php:45
34
- msgid "Select a color"
35
- msgstr "Seleziona un colore"
36
-
37
- #: ../inc/fields/file.php:69
38
- msgid "Error: Cannot delete file"
39
- msgstr "Errore: impossibile cancellare il file"
40
-
41
- #: ../inc/fields/file.php:83
42
- msgctxt "file upload"
43
- msgid "Uploaded files"
44
- msgstr "Carica i files"
45
-
46
- #: ../inc/fields/file.php:84
47
- msgctxt "file upload"
48
- msgid "Delete this file"
49
- msgstr "Elimina file"
50
-
51
- #: ../inc/fields/file.php:85
52
- msgctxt "file upload"
53
- msgid "Delete"
54
- msgstr "Elimina"
55
-
56
- #: ../inc/fields/file.php:86
57
- msgctxt "file upload"
58
- msgid "Upload files"
59
- msgstr "Carica files"
60
-
61
- #: ../inc/fields/file.php:87
62
- msgctxt "file upload"
63
- msgid "Add another file"
64
- msgstr "Aggiungi altro file"
65
-
66
- #: ../inc/fields/image.php:68
67
- msgid "Order saved"
68
- msgstr "Ordine salvato"
69
-
70
- #: ../inc/fields/image.php:84
71
- #: ../inc/fields/plupload-image.php:178
72
- msgctxt "image upload"
73
- msgid "Uploaded files"
74
- msgstr "Files caricati"
75
-
76
- #: ../inc/fields/image.php:85
77
- #: ../inc/fields/plupload-image.php:140
78
- msgctxt "image upload"
79
- msgid "Delete this file"
80
- msgstr "Elimina file"
81
-
82
- #: ../inc/fields/image.php:86
83
- #: ../inc/fields/plupload-image.php:141
84
- msgctxt "image upload"
85
- msgid "Delete"
86
- msgstr "Cancella"
87
-
88
- #: ../inc/fields/image.php:87
89
- #: ../inc/fields/plupload-image.php:142
90
- msgctxt "image upload"
91
- msgid "Edit"
92
- msgstr ""
93
-
94
- #: ../inc/fields/image.php:88
95
- #: ../inc/fields/plupload-image.php:179
96
- msgctxt "image upload"
97
- msgid "Upload files"
98
- msgstr "Carica files"
99
-
100
- #: ../inc/fields/image.php:89
101
- #: ../inc/fields/plupload-image.php:180
102
- msgctxt "image upload"
103
- msgid "Add another file"
104
- msgstr "Aggiungi altro file"
105
-
106
- #: ../inc/fields/plupload-image.php:112
107
- msgctxt "image upload"
108
- msgid "Allowed Image Files"
109
- msgstr ""
110
-
111
- #: ../inc/fields/plupload-image.php:183
112
- msgctxt "image upload"
113
- msgid "Drop images here"
114
- msgstr ""
115
-
116
- #: ../inc/fields/plupload-image.php:184
117
- msgctxt "image upload"
118
- msgid "or"
119
- msgstr ""
120
-
121
- #: ../inc/fields/plupload-image.php:185
122
- #, fuzzy
123
- msgctxt "image upload"
124
- msgid "Select Files"
125
- msgstr "Seleziona un colore"
126
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/nb_NO.po DELETED
@@ -1,149 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-02 14:08+0700\n"
6
- "PO-Revision-Date: 2012-03-05 22:32+0100\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Magnus Kolstad <mrkolby@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_n:1,2;_n_noop:1,2;_nx:1,2;_nx_noop:1,2;_x:2c,1\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-Language: Norwegian (Bokmål)\n"
15
- "X-Poedit-Country: Norwegian\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
- "X-Poedit-SearchPath-1: ../inc/fields\n"
20
-
21
- #: ../meta-box.php:334
22
- msgid "+"
23
- msgstr "+"
24
-
25
- #: ../meta-box.php:358
26
- msgid "&#8211;"
27
- msgstr "&#8211;"
28
-
29
- #: ../meta-box.php:691
30
- msgid "RW_Meta_Box Debug:"
31
- msgstr "RW_Meta_Box-debug"
32
-
33
- #: ../inc/fields/color.php:45
34
- msgid "Select a color"
35
- msgstr "Velg en farge"
36
-
37
- #: ../inc/fields/file.php:69
38
- msgid "Error: Cannot delete file"
39
- msgstr "Feil: Kan ikke slette fil"
40
-
41
- #: ../inc/fields/file.php:83
42
- msgctxt "file upload"
43
- msgid "Uploaded files"
44
- msgstr "Opplastede filer"
45
-
46
- #: ../inc/fields/file.php:84
47
- msgctxt "file upload"
48
- msgid "Delete this file"
49
- msgstr "Slett denne filen"
50
-
51
- #: ../inc/fields/file.php:85
52
- msgctxt "file upload"
53
- msgid "Delete"
54
- msgstr "Slett"
55
-
56
- #: ../inc/fields/file.php:86
57
- msgctxt "file upload"
58
- msgid "Upload files"
59
- msgstr "Last opp filer"
60
-
61
- #: ../inc/fields/file.php:87
62
- msgctxt "file upload"
63
- msgid "Add another file"
64
- msgstr "Legg til en fil"
65
-
66
- #: ../inc/fields/image.php:68
67
- msgid "Order saved"
68
- msgstr "Sortering lagret"
69
-
70
- #: ../inc/fields/image.php:84
71
- #: ../inc/fields/plupload-image.php:178
72
- msgctxt "image upload"
73
- msgid "Uploaded files"
74
- msgstr "Opplastede filer"
75
-
76
- #: ../inc/fields/image.php:85
77
- #: ../inc/fields/plupload-image.php:140
78
- msgctxt "image upload"
79
- msgid "Delete this file"
80
- msgstr "Slett denne filen"
81
-
82
- #: ../inc/fields/image.php:86
83
- #: ../inc/fields/plupload-image.php:141
84
- msgctxt "image upload"
85
- msgid "Delete"
86
- msgstr "Slett"
87
-
88
- #: ../inc/fields/image.php:87
89
- #: ../inc/fields/plupload-image.php:142
90
- msgctxt "image upload"
91
- msgid "Edit"
92
- msgstr "Endre"
93
-
94
- #: ../inc/fields/image.php:88
95
- #: ../inc/fields/plupload-image.php:179
96
- msgctxt "image upload"
97
- msgid "Upload files"
98
- msgstr "Last opp filer"
99
-
100
- #: ../inc/fields/image.php:89
101
- #: ../inc/fields/plupload-image.php:180
102
- msgctxt "image upload"
103
- msgid "Add another file"
104
- msgstr "Legg til en fil"
105
-
106
- #: ../inc/fields/plupload-image.php:112
107
- msgctxt "image upload"
108
- msgid "Allowed Image Files"
109
- msgstr "Tillate bilde-filer"
110
-
111
- #: ../inc/fields/plupload-image.php:183
112
- msgctxt "image upload"
113
- msgid "Drop images here"
114
- msgstr "Slipp bildene her"
115
-
116
- #: ../inc/fields/plupload-image.php:184
117
- msgctxt "image upload"
118
- msgid "or"
119
- msgstr "eller"
120
-
121
- #: ../inc/fields/plupload-image.php:185
122
- #, fuzzy
123
- msgctxt "image upload"
124
- msgid "Select Files"
125
- msgstr "Velg en farge"
126
-
127
- #~ msgid "Cannot delete file. Something's wrong."
128
- #~ msgstr "Kan ikke slette filen. Noe er galt."
129
-
130
- #~ msgid "Uploaded files"
131
- #~ msgstr "Opplastede filer."
132
-
133
- #~ msgid "Delete"
134
- #~ msgstr "Slett"
135
-
136
- #~ msgid "Upload new files"
137
- #~ msgstr "Last opp nye filer"
138
-
139
- #~ msgid "Add more file"
140
- #~ msgstr "Legg til flere filer"
141
-
142
- #~ msgid "Uploaded images"
143
- #~ msgstr "Opplastede bilder"
144
-
145
- #~ msgid "Delete this image"
146
- #~ msgstr "Slett dette bildet"
147
-
148
- #~ msgid "Upload new images"
149
- #~ msgstr "Last opp nye bilder"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/nl.po DELETED
@@ -1,130 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-21 01:56+0100\n"
6
- "PO-Revision-Date: 2013-04-21 01:56+0100\n"
7
- "Last-Translator: Cor van Noorloos <info@webvorm.nl>\n"
8
- "Language-Team: Rilwis <rilwis@gmail.com>\n"
9
- "Language: nl_NL\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e;_x:2c,1;_n:1,2;_n_noop:1,2;_nx:1,2;"
14
- "_nx_noop:1,2\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Generator: Poedit 1.5.5\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
- "X-Poedit-SearchPath-1: ../inc/fields\n"
20
-
21
- #: ../inc/classes/meta-box.php:299
22
- msgid "Please correct the errors highlighted below and try again."
23
- msgstr "Corrigeer de fouten hieronder gemarkeerd en probeer opnieuw."
24
-
25
- #: ../inc/classes/meta-box.php:360
26
- msgid "+"
27
- msgstr "+"
28
-
29
- #: ../inc/classes/meta-box.php:382
30
- msgid "&#8211;"
31
- msgstr "&#8211;"
32
-
33
- #: ../inc/fields/file-advanced.php:62
34
- msgctxt "file upload"
35
- msgid "Select or Upload Files"
36
- msgstr "Bestanden selecteren of uploaden"
37
-
38
- #: ../inc/fields/file.php:66
39
- msgid "Error: Cannot delete file"
40
- msgstr "Foutmelding: Kan bestand niet verwijderen"
41
-
42
- #: ../inc/fields/file.php:80
43
- msgctxt "file upload"
44
- msgid "Upload Files"
45
- msgstr "Bestanden uploaden"
46
-
47
- #: ../inc/fields/file.php:81
48
- msgctxt "file upload"
49
- msgid "+ Add new file"
50
- msgstr "+ Nieuw bestand toevoegen"
51
-
52
- #: ../inc/fields/file.php:133
53
- msgctxt "file upload"
54
- msgid "Delete"
55
- msgstr "Verwijderen"
56
-
57
- #: ../inc/fields/file.php:134
58
- msgctxt "file upload"
59
- msgid "Edit"
60
- msgstr "Bewerken"
61
-
62
- #: ../inc/fields/image-advanced.php:68
63
- msgctxt "image upload"
64
- msgid "Select or Upload Images"
65
- msgstr "Afbeeldingen selecteren of uploaden"
66
-
67
- #: ../inc/fields/image.php:64
68
- msgid "Order saved"
69
- msgstr "Volgorde opgeslagen"
70
-
71
- #: ../inc/fields/image.php:78 ../inc/fields/thickbox-image.php:35
72
- msgctxt "image upload"
73
- msgid "Upload Images"
74
- msgstr "Afbeeldingen uploaden"
75
-
76
- #: ../inc/fields/image.php:79
77
- msgctxt "image upload"
78
- msgid "+ Add new image"
79
- msgstr "+ Nieuwe afbeelding toevoegen"
80
-
81
- #: ../inc/fields/image.php:144
82
- msgctxt "image upload"
83
- msgid "Delete"
84
- msgstr "Verwijderen"
85
-
86
- #: ../inc/fields/image.php:145
87
- msgctxt "image upload"
88
- msgid "Edit"
89
- msgstr "Bewerken"
90
-
91
- #: ../inc/fields/map.php:46
92
- msgid "Find Address"
93
- msgstr "Adres vinden"
94
-
95
- #: ../inc/fields/plupload-image.php:104
96
- msgctxt "image upload"
97
- msgid "Drop images here"
98
- msgstr "Afbeeldingen naar hier verslepen"
99
-
100
- #: ../inc/fields/plupload-image.php:105
101
- msgctxt "image upload"
102
- msgid "or"
103
- msgstr "of"
104
-
105
- #: ../inc/fields/plupload-image.php:106
106
- msgctxt "image upload"
107
- msgid "Select Files"
108
- msgstr "Bestanden selecteren"
109
-
110
- #: ../inc/fields/plupload-image.php:181
111
- msgctxt "image upload"
112
- msgid "Allowed Image Files"
113
- msgstr "Toegestane afbeeldingsbestanden"
114
-
115
- #: ../inc/fields/post.php:54
116
- msgid "Post"
117
- msgstr "Bericht"
118
-
119
- #: ../inc/fields/post.php:68 ../inc/fields/taxonomy.php:40
120
- #, php-format
121
- msgid "Select a %s"
122
- msgstr "Een %s selecteren"
123
-
124
- #: ../inc/fields/select-advanced.php:71
125
- msgid "Select a value"
126
- msgstr "Een waarde selecteren"
127
-
128
- #~ msgctxt "file upload"
129
- #~ msgid "Select Files"
130
- #~ msgstr "Bestanden selecteren"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/pt_BR.po DELETED
@@ -1,124 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-02 14:08+0700\n"
6
- "PO-Revision-Date: 2012-03-19 02:59-0300\n"
7
- "Last-Translator: name <email@domain.com>\n"
8
- "Language-Team: Rilwis <rilwis@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;_x:2c,1;_n:1,2;_n_noop:1,2;_nx:1,2;_nx_noop:1,2\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-Language: English\n"
15
- "X-Poedit-Country: VIET NAM\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
- "X-Poedit-SearchPath-1: ../inc/fields\n"
19
-
20
- #: ../meta-box.php:334
21
- msgid "+"
22
- msgstr ""
23
-
24
- #: ../meta-box.php:358
25
- msgid "&#8211;"
26
- msgstr ""
27
-
28
- #: ../meta-box.php:691
29
- msgid "RW_Meta_Box Debug:"
30
- msgstr ""
31
-
32
- #: ../inc/fields/color.php:45
33
- msgid "Select a color"
34
- msgstr "Selecione a cor"
35
-
36
- #: ../inc/fields/file.php:69
37
- msgid "Error: Cannot delete file"
38
- msgstr ""
39
-
40
- #: ../inc/fields/file.php:83
41
- msgctxt "file upload"
42
- msgid "Uploaded files"
43
- msgstr "Arquivos carregados"
44
-
45
- #: ../inc/fields/file.php:84
46
- msgctxt "file upload"
47
- msgid "Delete this file"
48
- msgstr "Deletar esse arquivo"
49
-
50
- #: ../inc/fields/file.php:85
51
- msgctxt "file upload"
52
- msgid "Delete"
53
- msgstr "Deletar"
54
-
55
- #: ../inc/fields/file.php:86
56
- msgctxt "file upload"
57
- msgid "Upload files"
58
- msgstr "Carregar arquivos"
59
-
60
- #: ../inc/fields/file.php:87
61
- msgctxt "file upload"
62
- msgid "Add another file"
63
- msgstr "Adicionar outro arquivo"
64
-
65
- #: ../inc/fields/image.php:68
66
- msgid "Order saved"
67
- msgstr "Salvar ordem"
68
-
69
- #: ../inc/fields/image.php:84
70
- #: ../inc/fields/plupload-image.php:178
71
- msgctxt "image upload"
72
- msgid "Uploaded files"
73
- msgstr "Arquivos carregados"
74
-
75
- #: ../inc/fields/image.php:85
76
- #: ../inc/fields/plupload-image.php:140
77
- msgctxt "image upload"
78
- msgid "Delete this file"
79
- msgstr "Deletar esse arquivo"
80
-
81
- #: ../inc/fields/image.php:86
82
- #: ../inc/fields/plupload-image.php:141
83
- msgctxt "image upload"
84
- msgid "Delete"
85
- msgstr "Deletar"
86
-
87
- #: ../inc/fields/image.php:87
88
- #: ../inc/fields/plupload-image.php:142
89
- msgctxt "image upload"
90
- msgid "Edit"
91
- msgstr "Editar"
92
-
93
- #: ../inc/fields/image.php:88
94
- #: ../inc/fields/plupload-image.php:179
95
- msgctxt "image upload"
96
- msgid "Upload files"
97
- msgstr "Carregar arquivos"
98
-
99
- #: ../inc/fields/image.php:89
100
- #: ../inc/fields/plupload-image.php:180
101
- msgctxt "image upload"
102
- msgid "Add another file"
103
- msgstr "Adicionar outro arquivo"
104
-
105
- #: ../inc/fields/plupload-image.php:112
106
- msgctxt "image upload"
107
- msgid "Allowed Image Files"
108
- msgstr "Arquivos de imagem permetidos"
109
-
110
- #: ../inc/fields/plupload-image.php:183
111
- msgctxt "image upload"
112
- msgid "Drop images here"
113
- msgstr "Largue as imagens aqui"
114
-
115
- #: ../inc/fields/plupload-image.php:184
116
- msgctxt "image upload"
117
- msgid "or"
118
- msgstr "ou"
119
-
120
- #: ../inc/fields/plupload-image.php:185
121
- msgctxt "image upload"
122
- msgid "Select Files"
123
- msgstr "Selecione os arquivos"
124
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/sv_SE.po DELETED
@@ -1,118 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-03 15:09+0700\n"
6
- "PO-Revision-Date: 2012-08-09 16:15+0100\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Rilwis <rilwis@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;_x:2c,1;_n:1,2;_n_noop:1,2;_nx:1,2;"
13
- "_nx_noop:1,2\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "Language: en_VN\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
- "X-Poedit-SearchPath-1: ../inc/fields\n"
19
-
20
- #: ../meta-box.php:79
21
- msgid "RW_Meta_Box Debug:"
22
- msgstr ""
23
-
24
- #: ../inc/classes/meta-box.php:316
25
- msgid "+"
26
- msgstr ""
27
-
28
- #: ../inc/classes/meta-box.php:340
29
- msgid "&#8211;"
30
- msgstr ""
31
-
32
- #: ../inc/fields/file.php:69
33
- msgid "Error: Cannot delete file"
34
- msgstr "Fel: Kan inte radera filen"
35
-
36
- #: ../inc/fields/file.php:83
37
- msgctxt "file upload"
38
- msgid "Uploaded files"
39
- msgstr "Uppladdade filer"
40
-
41
- #: ../inc/fields/file.php:84
42
- msgctxt "file upload"
43
- msgid "Delete this file"
44
- msgstr "Radera den här filen"
45
-
46
- #: ../inc/fields/file.php:85
47
- msgctxt "file upload"
48
- msgid "Delete"
49
- msgstr "Radera"
50
-
51
- #: ../inc/fields/file.php:86
52
- msgctxt "file upload"
53
- msgid "Upload files"
54
- msgstr "Ladda upp"
55
-
56
- #: ../inc/fields/file.php:87
57
- msgctxt "file upload"
58
- msgid "+ Add new file"
59
- msgstr "+ Lägg till ny fil"
60
-
61
- #: ../inc/fields/image.php:75
62
- msgid "Order saved"
63
- msgstr "Ordning sparad"
64
-
65
- #: ../inc/fields/image.php:91 ../inc/fields/plupload-image.php:156
66
- msgctxt "image upload"
67
- msgid "Uploaded files"
68
- msgstr "Uppladdade filer"
69
-
70
- #: ../inc/fields/image.php:92 ../inc/fields/plupload-image.php:112
71
- msgctxt "image upload"
72
- msgid "Delete this file"
73
- msgstr "Radera den här filen"
74
-
75
- #: ../inc/fields/image.php:93 ../inc/fields/plupload-image.php:113
76
- msgctxt "image upload"
77
- msgid "Delete"
78
- msgstr "Radera"
79
-
80
- #: ../inc/fields/image.php:94 ../inc/fields/plupload-image.php:114
81
- msgctxt "image upload"
82
- msgid "Edit"
83
- msgstr "Redigera"
84
-
85
- #: ../inc/fields/image.php:95 ../inc/fields/plupload-image.php:157
86
- msgctxt "image upload"
87
- msgid "Upload files"
88
- msgstr "Ladda upp filer"
89
-
90
- #: ../inc/fields/image.php:96
91
- msgctxt "image upload"
92
- msgid "+ Add new image"
93
- msgstr "+ Lägg till ny bild"
94
-
95
- #: ../inc/fields/plupload-image.php:95
96
- msgctxt "image upload"
97
- msgid "Allowed Image Files"
98
- msgstr "Tillåtna bildformat"
99
-
100
- #: ../inc/fields/plupload-image.php:160
101
- msgctxt "image upload"
102
- msgid "Drop images here"
103
- msgstr "Släpp bilder här"
104
-
105
- #: ../inc/fields/plupload-image.php:161
106
- msgctxt "image upload"
107
- msgid "or"
108
- msgstr "eller"
109
-
110
- #: ../inc/fields/plupload-image.php:162
111
- msgctxt "image upload"
112
- msgid "Select Files"
113
- msgstr "Välj filer"
114
-
115
- #: ../inc/fields/thickbox-image.php:45
116
- msgctxt "image upload"
117
- msgid "Upload image"
118
- msgstr "Ladda upp bild"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/tr_TR.po DELETED
@@ -1,384 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-06-03 22:19+0700\n"
6
- "PO-Revision-Date: 2013-07-13 01:40+0200\n"
7
- "Last-Translator: Rilwis <rilwis@gmail.com>\n"
8
- "Language-Team: Rilwis <rilwis@gmail.com>\n"
9
- "Language: en_EN\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e;_x:2c,1;_n:1,2;_n_noop:1,2;_nx:1,2;"
14
- "_nx_noop:1,2\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Generator: Poedit 1.5.5\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
- "X-Poedit-SearchPath-1: ../inc/fields\n"
20
-
21
- #: ../demo/all-custom-post-types.php:20
22
- msgid "Personal Information"
23
- msgstr "Kişisel Bilgiler"
24
-
25
- #: ../demo/all-custom-post-types.php:25
26
- msgid "Full name"
27
- msgstr "Tam İsminiz"
28
-
29
- #: ../demo/better-include.php:16 ../demo/include-by-ID-or-page-template.php:8
30
- msgid "Meta Box Title"
31
- msgstr "Meta Box Başlığı"
32
-
33
- #: ../demo/better-include.php:19 ../demo/include-by-ID-or-page-template.php:14
34
- msgid "Your images"
35
- msgstr "Resiminiz"
36
-
37
- #: ../demo/date-time-js-options.php:11
38
- msgid "Date Time Picker With JS Options"
39
- msgstr "JS Seçenekleriyle Tarih Saat Seçici"
40
-
41
- #: ../demo/date-time-js-options.php:15
42
- msgid "Date"
43
- msgstr "Tarih"
44
-
45
- #: ../demo/date-time-js-options.php:21 ../demo/demo.php:177
46
- msgid "(yyyy-mm-dd)"
47
- msgstr "(yyyy-aa-gg)"
48
-
49
- #: ../demo/date-time-js-options.php:23
50
- msgid "Select Date"
51
- msgstr "Tarih Seç"
52
-
53
- #: ../demo/date-time-js-options.php:24 ../demo/demo.php:178
54
- msgid "yy-mm-dd"
55
- msgstr "yy-aa-gg"
56
-
57
- #: ../demo/date-time-js-options.php:30
58
- msgid "Datetime"
59
- msgstr "Tarihsaat"
60
-
61
- #: ../demo/date-time-js-options.php:41
62
- msgid "Time"
63
- msgstr "Saat"
64
-
65
- #: ../demo/demo.php:34
66
- msgid "Standard Fields"
67
- msgstr "Standart Alanlar"
68
-
69
- #: ../demo/demo.php:53
70
- msgid "Text"
71
- msgstr "Yazı"
72
-
73
- #: ../demo/demo.php:57
74
- msgid "Text description"
75
- msgstr "Yazı Açıklaması"
76
-
77
- #: ../demo/demo.php:60
78
- msgid "Default text value"
79
- msgstr "Varsayılan yazı değeri"
80
-
81
- #: ../demo/demo.php:66
82
- msgid "Checkbox"
83
- msgstr "Onay Kutusu"
84
-
85
- #: ../demo/demo.php:74
86
- msgid "Radio"
87
- msgstr "Seçim Kutusu"
88
-
89
- #: ../demo/demo.php:80 ../demo/demo.php:91 ../demo/demo.php:226
90
- msgid "Label1"
91
- msgstr "Etiket1"
92
-
93
- #: ../demo/demo.php:81 ../demo/demo.php:92 ../demo/demo.php:227
94
- msgid "Label2"
95
- msgstr "Etiket2"
96
-
97
- #: ../demo/demo.php:86
98
- msgid "Select"
99
- msgstr "Seç"
100
-
101
- #: ../demo/demo.php:96
102
- msgid "Select an Item"
103
- msgstr "Bir Nesne Seçin"
104
-
105
- #: ../demo/demo.php:103
106
- msgid "Hidden value"
107
- msgstr "Gizli Alan"
108
-
109
- #: ../demo/demo.php:107
110
- msgid "Password"
111
- msgstr "Parola"
112
-
113
- #: ../demo/demo.php:113
114
- msgid "Textarea"
115
- msgstr "Yazı Alanı"
116
-
117
- #: ../demo/demo.php:114
118
- msgid "Textarea description"
119
- msgstr "Yazı Alanı Açıklaması"
120
-
121
- #: ../demo/demo.php:131
122
- msgid "Password is required"
123
- msgstr "Parola Gerekli"
124
-
125
- #: ../demo/demo.php:132
126
- msgid "Password must be at least 7 characters"
127
- msgstr "Parolanız 7 karakterden fazla olmalıdır"
128
-
129
- #: ../demo/demo.php:140
130
- msgid "Advanced Fields"
131
- msgstr "Gelişmiş Alanlar"
132
-
133
- #: ../demo/demo.php:145
134
- msgid "Slider"
135
- msgstr "Slider"
136
-
137
- #: ../demo/demo.php:150
138
- msgid "$"
139
- msgstr "$"
140
-
141
- #: ../demo/demo.php:151
142
- msgid " USD"
143
- msgstr "USD"
144
-
145
- #: ../demo/demo.php:162
146
- msgid "Number"
147
- msgstr "Numara"
148
-
149
- #: ../demo/demo.php:171
150
- msgid "Date picker"
151
- msgstr "Tarih Seçici"
152
-
153
- #: ../demo/demo.php:186
154
- msgid "Datetime picker"
155
- msgstr "Tarih Saat Seçici"
156
-
157
- #: ../demo/demo.php:200
158
- msgid "Time picker"
159
- msgstr "Saat Seçici"
160
-
161
- #: ../demo/demo.php:215
162
- msgid "Color picker"
163
- msgstr "Renk Seçici"
164
-
165
- #: ../demo/demo.php:221
166
- msgid "Checkbox list"
167
- msgstr "Onay Kutusu Litesi"
168
-
169
- #: ../demo/demo.php:232
170
- msgid "Email"
171
- msgstr "E-Posta"
172
-
173
- #: ../demo/demo.php:234
174
- msgid "Email description"
175
- msgstr "E-Posta Açıklaması"
176
-
177
- #: ../demo/demo.php:240
178
- msgid "Range"
179
- msgstr "Aralık"
180
-
181
- #: ../demo/demo.php:242
182
- msgid "Range description"
183
- msgstr "Aralık Açıklması"
184
-
185
- #: ../demo/demo.php:251
186
- msgid "URL"
187
- msgstr "URL"
188
-
189
- #: ../demo/demo.php:253
190
- msgid "URL description"
191
- msgstr "URL Açıklaması"
192
-
193
- #: ../demo/demo.php:259
194
- msgid "oEmbed"
195
- msgstr "oEmbed"
196
-
197
- #: ../demo/demo.php:261
198
- msgid "oEmbed description"
199
- msgstr "oEmbed Açıklaması"
200
-
201
- #: ../demo/demo.php:266
202
- msgid "Taxonomy"
203
- msgstr "Taxonomy"
204
-
205
- #: ../demo/demo.php:280
206
- msgid "Posts (Pages)"
207
- msgstr "Yazılar (Sayfalar)"
208
-
209
- #: ../demo/demo.php:296
210
- msgid "WYSIWYG / Rich Text Editor"
211
- msgstr "WYSIWYG / Gelişmiş Yazı Editörü"
212
-
213
- #: ../demo/demo.php:301
214
- msgid "WYSIWYG default value"
215
- msgstr "WYSIWYG varsayılan değer"
216
-
217
- #: ../demo/demo.php:312 ../demo/force-delete.php:15
218
- msgid "File Upload"
219
- msgstr "Dosya Yükleme"
220
-
221
- #: ../demo/demo.php:318
222
- msgid "File Advanced Upload"
223
- msgstr "Gelişmiş Dosya Yükleme"
224
-
225
- #: ../demo/demo.php:326 ../demo/force-delete.php:22
226
- msgid "Image Upload"
227
- msgstr "Resim Yükleme"
228
-
229
- #: ../demo/demo.php:332 ../demo/force-delete.php:28
230
- msgid "Thickbox Image Upload"
231
- msgstr "Thickbox Resim Yükleme"
232
-
233
- #: ../demo/demo.php:338 ../demo/force-delete.php:35
234
- msgid "Plupload Image Upload"
235
- msgstr "Plupload Resim Yükleme"
236
-
237
- #: ../demo/demo.php:345
238
- msgid "Image Advanced Upload"
239
- msgstr "Gelişmiş Resim Yükleme"
240
-
241
- #: ../demo/force-delete.php:11
242
- msgid "Test Meta Box"
243
- msgstr "Test Meta Box"
244
-
245
- #: ../demo/map.php:9
246
- msgid "Google Map"
247
- msgstr "Google Haritalar"
248
-
249
- #: ../demo/map.php:13
250
- msgid "Address"
251
- msgstr "Adres"
252
-
253
- #: ../demo/map.php:15
254
- msgid "Hanoi, Vietnam"
255
- msgstr "Hanoi, Vietnam"
256
-
257
- #: ../demo/map.php:19
258
- msgid "Location"
259
- msgstr "Yer Bilgisi"
260
-
261
- #: ../inc/classes/meta-box.php:220
262
- msgid "Please correct the errors highlighted below and try again."
263
- msgstr "Lütfen işaretlenmiş alanları düzeltin ve tekrar deneyin."
264
-
265
- #: ../inc/classes/meta-box.php:394
266
- msgid "+"
267
- msgstr "+"
268
-
269
- #: ../inc/classes/meta-box.php:416
270
- msgid "&#8211;"
271
- msgstr "&#8211;"
272
-
273
- #: ../inc/fields/file-advanced.php:23
274
- #, php-format
275
- msgid "You may only upload maximum %d file"
276
- msgstr "Yükleme yapabileceğiniz maksimum dosya sayısı %d dır"
277
-
278
- #: ../inc/fields/file-advanced.php:24
279
- #, php-format
280
- msgid "You may only upload maximum %d files"
281
- msgstr "Yükleme yapabileceğiniz maksimum dosya sayısı %d dır"
282
-
283
- #: ../inc/fields/file-advanced.php:25
284
- msgid "Select Files"
285
- msgstr "Dosya Seç"
286
-
287
- #: ../inc/fields/file-advanced.php:68
288
- msgctxt "file upload"
289
- msgid "Select or Upload Files"
290
- msgstr "Seç veya Dosya Yükle"
291
-
292
- #: ../inc/fields/file-advanced.php:104 ../inc/fields/file.php:133
293
- msgctxt "file upload"
294
- msgid "Delete"
295
- msgstr "Sil"
296
-
297
- #: ../inc/fields/file-advanced.php:105 ../inc/fields/file.php:134
298
- msgctxt "file upload"
299
- msgid "Edit"
300
- msgstr "Düzenle"
301
-
302
- #: ../inc/fields/file.php:66
303
- msgid "Error: Cannot delete file"
304
- msgstr "Hata: Dosya Silinemedi"
305
-
306
- #: ../inc/fields/file.php:80
307
- msgctxt "file upload"
308
- msgid "Upload Files"
309
- msgstr "Dosya Yükleme"
310
-
311
- #: ../inc/fields/file.php:81
312
- msgctxt "file upload"
313
- msgid "+ Add new file"
314
- msgstr "+ Yeni Dosya Ekle"
315
-
316
- #: ../inc/fields/image-advanced.php:22
317
- msgid "Select Images"
318
- msgstr "Resim Seç"
319
-
320
- #: ../inc/fields/image-advanced.php:71
321
- msgctxt "image upload"
322
- msgid "Select or Upload Images"
323
- msgstr "Seç veya Resim Yükle"
324
-
325
- #: ../inc/fields/image-advanced.php:107 ../inc/fields/image.php:144
326
- msgctxt "image upload"
327
- msgid "Delete"
328
- msgstr "Sil"
329
-
330
- #: ../inc/fields/image-advanced.php:108 ../inc/fields/image.php:145
331
- msgctxt "image upload"
332
- msgid "Edit"
333
- msgstr "Düzenle"
334
-
335
- #: ../inc/fields/image.php:64
336
- msgid "Order saved"
337
- msgstr "Görev Kaydedildi"
338
-
339
- #: ../inc/fields/image.php:78 ../inc/fields/thickbox-image.php:35
340
- msgctxt "image upload"
341
- msgid "Upload Images"
342
- msgstr "Resim Yükle"
343
-
344
- #: ../inc/fields/image.php:79
345
- msgctxt "image upload"
346
- msgid "+ Add new image"
347
- msgstr "+ Yeni Resim Ekle"
348
-
349
- #: ../inc/fields/map.php:48
350
- msgid "Find Address"
351
- msgstr "Adres Bul"
352
-
353
- #: ../inc/fields/plupload-image.php:104
354
- msgctxt "image upload"
355
- msgid "Drop images here"
356
- msgstr "Resimi Buraya Sürükleyin"
357
-
358
- #: ../inc/fields/plupload-image.php:105
359
- msgctxt "image upload"
360
- msgid "or"
361
- msgstr "veya"
362
-
363
- #: ../inc/fields/plupload-image.php:106
364
- msgctxt "image upload"
365
- msgid "Select Files"
366
- msgstr "Dosya Seçin"
367
-
368
- #: ../inc/fields/plupload-image.php:181
369
- msgctxt "image upload"
370
- msgid "Allowed Image Files"
371
- msgstr "İzin Verilen Resim Tipleri"
372
-
373
- #: ../inc/fields/post.php:54
374
- msgid "Post"
375
- msgstr "Yazı"
376
-
377
- #: ../inc/fields/post.php:68 ../inc/fields/taxonomy.php:40
378
- #, php-format
379
- msgid "Select a %s"
380
- msgstr "Seç bir %s"
381
-
382
- #: ../inc/fields/select-advanced.php:71
383
- msgid "Select a value"
384
- msgstr "Bir değer seçin"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/vi.po DELETED
@@ -1,411 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-06-03 22:18+0700\n"
6
- "PO-Revision-Date: 2013-06-03 22:19+0700\n"
7
- "Last-Translator: Rilwis <rilwis@gmail.com>\n"
8
- "Language-Team: Rilwis <rilwis@gmail.com>\n"
9
- "Language: en_VN\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e;_x:2c,1;_n:1,2;_n_noop:1,2;_nx:1,2;"
14
- "_nx_noop:1,2\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Generator: Poedit 1.5.5\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
- "X-Poedit-SearchPath-1: ../inc/fields\n"
20
-
21
- #: ../demo/all-custom-post-types.php:20
22
- msgid "Personal Information"
23
- msgstr ""
24
-
25
- #: ../demo/all-custom-post-types.php:25
26
- msgid "Full name"
27
- msgstr ""
28
-
29
- #: ../demo/better-include.php:16 ../demo/include-by-ID-or-page-template.php:8
30
- msgid "Meta Box Title"
31
- msgstr ""
32
-
33
- #: ../demo/better-include.php:19 ../demo/include-by-ID-or-page-template.php:14
34
- msgid "Your images"
35
- msgstr ""
36
-
37
- #: ../demo/date-time-js-options.php:11
38
- msgid "Date Time Picker With JS Options"
39
- msgstr ""
40
-
41
- #: ../demo/date-time-js-options.php:15
42
- msgid "Date"
43
- msgstr ""
44
-
45
- #: ../demo/date-time-js-options.php:21 ../demo/demo.php:177
46
- msgid "(yyyy-mm-dd)"
47
- msgstr ""
48
-
49
- #: ../demo/date-time-js-options.php:23
50
- msgid "Select Date"
51
- msgstr "Chọn ngày"
52
-
53
- #: ../demo/date-time-js-options.php:24 ../demo/demo.php:178
54
- msgid "yy-mm-dd"
55
- msgstr ""
56
-
57
- #: ../demo/date-time-js-options.php:30
58
- msgid "Datetime"
59
- msgstr ""
60
-
61
- #: ../demo/date-time-js-options.php:41
62
- msgid "Time"
63
- msgstr ""
64
-
65
- #: ../demo/demo.php:34
66
- msgid "Standard Fields"
67
- msgstr ""
68
-
69
- #: ../demo/demo.php:53
70
- msgid "Text"
71
- msgstr ""
72
-
73
- #: ../demo/demo.php:57
74
- msgid "Text description"
75
- msgstr ""
76
-
77
- #: ../demo/demo.php:60
78
- msgid "Default text value"
79
- msgstr "Giá trị text mặc định"
80
-
81
- #: ../demo/demo.php:66
82
- msgid "Checkbox"
83
- msgstr ""
84
-
85
- #: ../demo/demo.php:74
86
- msgid "Radio"
87
- msgstr ""
88
-
89
- #: ../demo/demo.php:80 ../demo/demo.php:91 ../demo/demo.php:226
90
- msgid "Label1"
91
- msgstr ""
92
-
93
- #: ../demo/demo.php:81 ../demo/demo.php:92 ../demo/demo.php:227
94
- msgid "Label2"
95
- msgstr ""
96
-
97
- #: ../demo/demo.php:86
98
- msgid "Select"
99
- msgstr "Chọn"
100
-
101
- #: ../demo/demo.php:96
102
- msgid "Select an Item"
103
- msgstr "Chọn một giá trị"
104
-
105
- #: ../demo/demo.php:103
106
- msgid "Hidden value"
107
- msgstr ""
108
-
109
- #: ../demo/demo.php:107
110
- msgid "Password"
111
- msgstr ""
112
-
113
- #: ../demo/demo.php:113
114
- msgid "Textarea"
115
- msgstr ""
116
-
117
- #: ../demo/demo.php:114
118
- msgid "Textarea description"
119
- msgstr ""
120
-
121
- #: ../demo/demo.php:131
122
- msgid "Password is required"
123
- msgstr ""
124
-
125
- #: ../demo/demo.php:132
126
- msgid "Password must be at least 7 characters"
127
- msgstr ""
128
-
129
- #: ../demo/demo.php:140
130
- msgid "Advanced Fields"
131
- msgstr ""
132
-
133
- #: ../demo/demo.php:145
134
- msgid "Slider"
135
- msgstr ""
136
-
137
- #: ../demo/demo.php:150
138
- msgid "$"
139
- msgstr ""
140
-
141
- #: ../demo/demo.php:151
142
- msgid " USD"
143
- msgstr ""
144
-
145
- #: ../demo/demo.php:162
146
- msgid "Number"
147
- msgstr ""
148
-
149
- #: ../demo/demo.php:171
150
- msgid "Date picker"
151
- msgstr ""
152
-
153
- #: ../demo/demo.php:186
154
- msgid "Datetime picker"
155
- msgstr ""
156
-
157
- #: ../demo/demo.php:200
158
- msgid "Time picker"
159
- msgstr ""
160
-
161
- #: ../demo/demo.php:215
162
- msgid "Color picker"
163
- msgstr ""
164
-
165
- #: ../demo/demo.php:221
166
- msgid "Checkbox list"
167
- msgstr ""
168
-
169
- #: ../demo/demo.php:232
170
- msgid "Email"
171
- msgstr ""
172
-
173
- #: ../demo/demo.php:234
174
- msgid "Email description"
175
- msgstr ""
176
-
177
- #: ../demo/demo.php:240
178
- msgid "Range"
179
- msgstr ""
180
-
181
- #: ../demo/demo.php:242
182
- msgid "Range description"
183
- msgstr ""
184
-
185
- #: ../demo/demo.php:251
186
- msgid "URL"
187
- msgstr ""
188
-
189
- #: ../demo/demo.php:253
190
- msgid "URL description"
191
- msgstr ""
192
-
193
- #: ../demo/demo.php:259
194
- msgid "oEmbed"
195
- msgstr ""
196
-
197
- #: ../demo/demo.php:261
198
- msgid "oEmbed description"
199
- msgstr ""
200
-
201
- #: ../demo/demo.php:266
202
- msgid "Taxonomy"
203
- msgstr ""
204
-
205
- #: ../demo/demo.php:280
206
- msgid "Posts (Pages)"
207
- msgstr ""
208
-
209
- #: ../demo/demo.php:296
210
- msgid "WYSIWYG / Rich Text Editor"
211
- msgstr ""
212
-
213
- #: ../demo/demo.php:301
214
- msgid "WYSIWYG default value"
215
- msgstr ""
216
-
217
- #: ../demo/demo.php:312 ../demo/force-delete.php:15
218
- msgid "File Upload"
219
- msgstr ""
220
-
221
- #: ../demo/demo.php:318
222
- msgid "File Advanced Upload"
223
- msgstr ""
224
-
225
- #: ../demo/demo.php:326 ../demo/force-delete.php:22
226
- msgid "Image Upload"
227
- msgstr ""
228
-
229
- #: ../demo/demo.php:332 ../demo/force-delete.php:28
230
- msgid "Thickbox Image Upload"
231
- msgstr ""
232
-
233
- #: ../demo/demo.php:338 ../demo/force-delete.php:35
234
- #, fuzzy
235
- msgid "Plupload Image Upload"
236
- msgstr "Tải file"
237
-
238
- #: ../demo/demo.php:345
239
- msgid "Image Advanced Upload"
240
- msgstr ""
241
-
242
- #: ../demo/force-delete.php:11
243
- msgid "Test Meta Box"
244
- msgstr ""
245
-
246
- #: ../demo/map.php:9
247
- msgid "Google Map"
248
- msgstr ""
249
-
250
- #: ../demo/map.php:13
251
- msgid "Address"
252
- msgstr "Địa chỉ"
253
-
254
- #: ../demo/map.php:15
255
- msgid "Hanoi, Vietnam"
256
- msgstr ""
257
-
258
- #: ../demo/map.php:19
259
- msgid "Location"
260
- msgstr "Địa điểm"
261
-
262
- #: ../inc/classes/meta-box.php:220
263
- msgid "Please correct the errors highlighted below and try again."
264
- msgstr "Vui lòng sửa các lỗi dưới đây và thử lại"
265
-
266
- #: ../inc/classes/meta-box.php:394
267
- msgid "+"
268
- msgstr ""
269
-
270
- #: ../inc/classes/meta-box.php:416
271
- msgid "&#8211;"
272
- msgstr ""
273
-
274
- #: ../inc/fields/file-advanced.php:23
275
- #, php-format
276
- msgid "You may only upload maximum %d file"
277
- msgstr "Bạn chỉ được phép upload tối đa %d file"
278
-
279
- #: ../inc/fields/file-advanced.php:24
280
- #, php-format
281
- msgid "You may only upload maximum %d files"
282
- msgstr "Bạn chỉ được phép upload tối đa %d file"
283
-
284
- #: ../inc/fields/file-advanced.php:25
285
- #, fuzzy
286
- msgid "Select Files"
287
- msgstr "Chọn file"
288
-
289
- #: ../inc/fields/file-advanced.php:68
290
- #, fuzzy
291
- msgctxt "file upload"
292
- msgid "Select or Upload Files"
293
- msgstr "Chọn hoặc tải file"
294
-
295
- #: ../inc/fields/file-advanced.php:104 ../inc/fields/file.php:133
296
- msgctxt "file upload"
297
- msgid "Delete"
298
- msgstr "Xóa"
299
-
300
- #: ../inc/fields/file-advanced.php:105 ../inc/fields/file.php:134
301
- msgctxt "file upload"
302
- msgid "Edit"
303
- msgstr "Sửa"
304
-
305
- #: ../inc/fields/file.php:66
306
- msgid "Error: Cannot delete file"
307
- msgstr "Lỗi: Không xóa được file"
308
-
309
- #: ../inc/fields/file.php:80
310
- msgctxt "file upload"
311
- msgid "Upload Files"
312
- msgstr "Tải file"
313
-
314
- #: ../inc/fields/file.php:81
315
- msgctxt "file upload"
316
- msgid "+ Add new file"
317
- msgstr "+ Thêm file mới"
318
-
319
- #: ../inc/fields/image-advanced.php:22
320
- msgid "Select Images"
321
- msgstr "Chọn hình ảnh"
322
-
323
- #: ../inc/fields/image-advanced.php:71
324
- msgctxt "image upload"
325
- msgid "Select or Upload Images"
326
- msgstr "Chọn hoặc tải file"
327
-
328
- #: ../inc/fields/image-advanced.php:107 ../inc/fields/image.php:144
329
- msgctxt "image upload"
330
- msgid "Delete"
331
- msgstr "Xóa"
332
-
333
- #: ../inc/fields/image-advanced.php:108 ../inc/fields/image.php:145
334
- msgctxt "image upload"
335
- msgid "Edit"
336
- msgstr "Sửa"
337
-
338
- #: ../inc/fields/image.php:64
339
- msgid "Order saved"
340
- msgstr "Đã lưu thứ tự"
341
-
342
- #: ../inc/fields/image.php:78 ../inc/fields/thickbox-image.php:35
343
- msgctxt "image upload"
344
- msgid "Upload Images"
345
- msgstr "Tải file"
346
-
347
- #: ../inc/fields/image.php:79
348
- msgctxt "image upload"
349
- msgid "+ Add new image"
350
- msgstr "+ Thêm hình mới"
351
-
352
- #: ../inc/fields/map.php:48
353
- msgid "Find Address"
354
- msgstr "Tìm địa chỉ"
355
-
356
- #: ../inc/fields/plupload-image.php:104
357
- msgctxt "image upload"
358
- msgid "Drop images here"
359
- msgstr "Kéo thả hình ảnh vào đây"
360
-
361
- #: ../inc/fields/plupload-image.php:105
362
- msgctxt "image upload"
363
- msgid "or"
364
- msgstr "hoặc"
365
-
366
- #: ../inc/fields/plupload-image.php:106
367
- msgctxt "image upload"
368
- msgid "Select Files"
369
- msgstr "Chọn file"
370
-
371
- #: ../inc/fields/plupload-image.php:181
372
- msgctxt "image upload"
373
- msgid "Allowed Image Files"
374
- msgstr "Các file hình ảnh được cho phép"
375
-
376
- #: ../inc/fields/post.php:54
377
- msgid "Post"
378
- msgstr "Bài viết"
379
-
380
- #: ../inc/fields/post.php:68 ../inc/fields/taxonomy.php:40
381
- #, php-format
382
- msgid "Select a %s"
383
- msgstr "Chọn %s"
384
-
385
- #: ../inc/fields/select-advanced.php:71
386
- msgid "Select a value"
387
- msgstr "Chọn một màu"
388
-
389
- #~ msgctxt "file upload"
390
- #~ msgid "Uploaded files"
391
- #~ msgstr "Các file đã tải lên"
392
-
393
- #~ msgctxt "file upload"
394
- #~ msgid "Delete this file"
395
- #~ msgstr "Xóa file"
396
-
397
- #~ msgctxt "image upload"
398
- #~ msgid "Uploaded files"
399
- #~ msgstr "Các file đã tải lên"
400
-
401
- #~ msgctxt "image upload"
402
- #~ msgid "Delete this file"
403
- #~ msgstr "Xóa file"
404
-
405
- #~ msgctxt "image upload"
406
- #~ msgid "Upload files"
407
- #~ msgstr "Tải file"
408
-
409
- #~ msgctxt "image upload"
410
- #~ msgid "Add another file"
411
- #~ msgstr "Thêm file mới"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/zh_CN.po DELETED
@@ -1,384 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-06-03 22:19+0700\n"
6
- "PO-Revision-Date: 2013-11-25 12:07+0800\n"
7
- "Last-Translator: Amos Lee <iwillhappy1314@gmail.com>\n"
8
- "Language-Team: Rilwis <rilwis@gmail.com>\n"
9
- "Language: en_EN\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e;_x:2c,1;_n:1,2;_n_noop:1,2;_nx:1,2;"
14
- "_nx_noop:1,2\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Generator: Poedit 1.5.7\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
- "X-Poedit-SearchPath-1: ../inc/fields\n"
20
-
21
- #: ../demo/all-custom-post-types.php:20
22
- msgid "Personal Information"
23
- msgstr "个人信息"
24
-
25
- #: ../demo/all-custom-post-types.php:25
26
- msgid "Full name"
27
- msgstr "全名"
28
-
29
- #: ../demo/better-include.php:16 ../demo/include-by-ID-or-page-template.php:8
30
- msgid "Meta Box Title"
31
- msgstr "元数据盒子标题"
32
-
33
- #: ../demo/better-include.php:19 ../demo/include-by-ID-or-page-template.php:14
34
- msgid "Your images"
35
- msgstr "你的图片"
36
-
37
- #: ../demo/date-time-js-options.php:11
38
- msgid "Date Time Picker With JS Options"
39
- msgstr "日期时间选择"
40
-
41
- #: ../demo/date-time-js-options.php:15
42
- msgid "Date"
43
- msgstr "日期"
44
-
45
- #: ../demo/date-time-js-options.php:21 ../demo/demo.php:177
46
- msgid "(yyyy-mm-dd)"
47
- msgstr "(yyyy-mm-dd)"
48
-
49
- #: ../demo/date-time-js-options.php:23
50
- msgid "Select Date"
51
- msgstr "选择日期"
52
-
53
- #: ../demo/date-time-js-options.php:24 ../demo/demo.php:178
54
- msgid "yy-mm-dd"
55
- msgstr "yy-mm-dd"
56
-
57
- #: ../demo/date-time-js-options.php:30
58
- msgid "Datetime"
59
- msgstr "日期时间"
60
-
61
- #: ../demo/date-time-js-options.php:41
62
- msgid "Time"
63
- msgstr "时间"
64
-
65
- #: ../demo/demo.php:34
66
- msgid "Standard Fields"
67
- msgstr "标准字段"
68
-
69
- #: ../demo/demo.php:53
70
- msgid "Text"
71
- msgstr "文本"
72
-
73
- #: ../demo/demo.php:57
74
- msgid "Text description"
75
- msgstr "文本描述"
76
-
77
- #: ../demo/demo.php:60
78
- msgid "Default text value"
79
- msgstr "默认文本值"
80
-
81
- #: ../demo/demo.php:66
82
- msgid "Checkbox"
83
- msgstr "多选"
84
-
85
- #: ../demo/demo.php:74
86
- msgid "Radio"
87
- msgstr "单选"
88
-
89
- #: ../demo/demo.php:80 ../demo/demo.php:91 ../demo/demo.php:226
90
- msgid "Label1"
91
- msgstr "标签1"
92
-
93
- #: ../demo/demo.php:81 ../demo/demo.php:92 ../demo/demo.php:227
94
- msgid "Label2"
95
- msgstr "标签1"
96
-
97
- #: ../demo/demo.php:86
98
- msgid "Select"
99
- msgstr "选择"
100
-
101
- #: ../demo/demo.php:96
102
- msgid "Select an Item"
103
- msgstr "选择一项"
104
-
105
- #: ../demo/demo.php:103
106
- msgid "Hidden value"
107
- msgstr "隐藏值"
108
-
109
- #: ../demo/demo.php:107
110
- msgid "Password"
111
- msgstr "米秒"
112
-
113
- #: ../demo/demo.php:113
114
- msgid "Textarea"
115
- msgstr "文本段落"
116
-
117
- #: ../demo/demo.php:114
118
- msgid "Textarea description"
119
- msgstr "段落描述"
120
-
121
- #: ../demo/demo.php:131
122
- msgid "Password is required"
123
- msgstr "密码为必填项"
124
-
125
- #: ../demo/demo.php:132
126
- msgid "Password must be at least 7 characters"
127
- msgstr "密码至少为7个字符"
128
-
129
- #: ../demo/demo.php:140
130
- msgid "Advanced Fields"
131
- msgstr "高级字段"
132
-
133
- #: ../demo/demo.php:145
134
- msgid "Slider"
135
- msgstr "滑块"
136
-
137
- #: ../demo/demo.php:150
138
- msgid "$"
139
- msgstr "$"
140
-
141
- #: ../demo/demo.php:151
142
- msgid " USD"
143
- msgstr "USD"
144
-
145
- #: ../demo/demo.php:162
146
- msgid "Number"
147
- msgstr "数字"
148
-
149
- #: ../demo/demo.php:171
150
- msgid "Date picker"
151
- msgstr "日期选择器"
152
-
153
- #: ../demo/demo.php:186
154
- msgid "Datetime picker"
155
- msgstr "日期时间选择器"
156
-
157
- #: ../demo/demo.php:200
158
- msgid "Time picker"
159
- msgstr "时间选择器"
160
-
161
- #: ../demo/demo.php:215
162
- msgid "Color picker"
163
- msgstr "颜色选择器"
164
-
165
- #: ../demo/demo.php:221
166
- msgid "Checkbox list"
167
- msgstr "选择列表"
168
-
169
- #: ../demo/demo.php:232
170
- msgid "Email"
171
- msgstr "邮件"
172
-
173
- #: ../demo/demo.php:234
174
- msgid "Email description"
175
- msgstr "邮件描述"
176
-
177
- #: ../demo/demo.php:240
178
- msgid "Range"
179
- msgstr "区间"
180
-
181
- #: ../demo/demo.php:242
182
- msgid "Range description"
183
- msgstr "区间描述"
184
-
185
- #: ../demo/demo.php:251
186
- msgid "URL"
187
- msgstr "URL"
188
-
189
- #: ../demo/demo.php:253
190
- msgid "URL description"
191
- msgstr "URL描述"
192
-
193
- #: ../demo/demo.php:259
194
- msgid "oEmbed"
195
- msgstr "oEmbed嵌入"
196
-
197
- #: ../demo/demo.php:261
198
- msgid "oEmbed description"
199
- msgstr "oEmbed嵌入描述"
200
-
201
- #: ../demo/demo.php:266
202
- msgid "Taxonomy"
203
- msgstr "分类法"
204
-
205
- #: ../demo/demo.php:280
206
- msgid "Posts (Pages)"
207
- msgstr "文章(页面)"
208
-
209
- #: ../demo/demo.php:296
210
- msgid "WYSIWYG / Rich Text Editor"
211
- msgstr "可视化编辑器"
212
-
213
- #: ../demo/demo.php:301
214
- msgid "WYSIWYG default value"
215
- msgstr "可视化编辑器默认值"
216
-
217
- #: ../demo/demo.php:312 ../demo/force-delete.php:15
218
- msgid "File Upload"
219
- msgstr "文件上传"
220
-
221
- #: ../demo/demo.php:318
222
- msgid "File Advanced Upload"
223
- msgstr "高级文件上传"
224
-
225
- #: ../demo/demo.php:326 ../demo/force-delete.php:22
226
- msgid "Image Upload"
227
- msgstr "图片上选"
228
-
229
- #: ../demo/demo.php:332 ../demo/force-delete.php:28
230
- msgid "Thickbox Image Upload"
231
- msgstr "默认上传"
232
-
233
- #: ../demo/demo.php:338 ../demo/force-delete.php:35
234
- msgid "Plupload Image Upload"
235
- msgstr "拖拽上传"
236
-
237
- #: ../demo/demo.php:345
238
- msgid "Image Advanced Upload"
239
- msgstr "图片高级上传"
240
-
241
- #: ../demo/force-delete.php:11
242
- msgid "Test Meta Box"
243
- msgstr "测试元数据盒子"
244
-
245
- #: ../demo/map.php:9
246
- msgid "Google Map"
247
- msgstr "谷歌地图"
248
-
249
- #: ../demo/map.php:13
250
- msgid "Address"
251
- msgstr "地址"
252
-
253
- #: ../demo/map.php:15
254
- msgid "Hanoi, Vietnam"
255
- msgstr "河南,郑州"
256
-
257
- #: ../demo/map.php:19
258
- msgid "Location"
259
- msgstr "位置"
260
-
261
- #: ../inc/classes/meta-box.php:220
262
- msgid "Please correct the errors highlighted below and try again."
263
- msgstr "请检查并修正高亮错误处,然后重试 。"
264
-
265
- #: ../inc/classes/meta-box.php:394
266
- msgid "+"
267
- msgstr "+"
268
-
269
- #: ../inc/classes/meta-box.php:416
270
- msgid "&#8211;"
271
- msgstr "&#8211;"
272
-
273
- #: ../inc/fields/file-advanced.php:23
274
- #, php-format
275
- msgid "You may only upload maximum %d file"
276
- msgstr "最多能上传%d 个文件"
277
-
278
- #: ../inc/fields/file-advanced.php:24
279
- #, php-format
280
- msgid "You may only upload maximum %d files"
281
- msgstr "最多能上传%d 个文件"
282
-
283
- #: ../inc/fields/file-advanced.php:25
284
- msgid "Select Files"
285
- msgstr "选择文件"
286
-
287
- #: ../inc/fields/file-advanced.php:68
288
- msgctxt "file upload"
289
- msgid "Select or Upload Files"
290
- msgstr "选择或上传文件"
291
-
292
- #: ../inc/fields/file-advanced.php:104 ../inc/fields/file.php:133
293
- msgctxt "file upload"
294
- msgid "Delete"
295
- msgstr "删除【上传文件】"
296
-
297
- #: ../inc/fields/file-advanced.php:105 ../inc/fields/file.php:134
298
- msgctxt "file upload"
299
- msgid "Edit"
300
- msgstr "编辑【上传文件】"
301
-
302
- #: ../inc/fields/file.php:66
303
- msgid "Error: Cannot delete file"
304
- msgstr "错误:不能删除文件"
305
-
306
- #: ../inc/fields/file.php:80
307
- msgctxt "file upload"
308
- msgid "Upload Files"
309
- msgstr "上传文件"
310
-
311
- #: ../inc/fields/file.php:81
312
- msgctxt "file upload"
313
- msgid "+ Add new file"
314
- msgstr "+ 添加新文件"
315
-
316
- #: ../inc/fields/image-advanced.php:22
317
- msgid "Select Images"
318
- msgstr "选择图片"
319
-
320
- #: ../inc/fields/image-advanced.php:71
321
- msgctxt "image upload"
322
- msgid "Select or Upload Images"
323
- msgstr "选择或上传图片"
324
-
325
- #: ../inc/fields/image-advanced.php:107 ../inc/fields/image.php:144
326
- msgctxt "image upload"
327
- msgid "Delete"
328
- msgstr "删除"
329
-
330
- #: ../inc/fields/image-advanced.php:108 ../inc/fields/image.php:145
331
- msgctxt "image upload"
332
- msgid "Edit"
333
- msgstr "编辑"
334
-
335
- #: ../inc/fields/image.php:64
336
- msgid "Order saved"
337
- msgstr "排序已保存"
338
-
339
- #: ../inc/fields/image.php:78 ../inc/fields/thickbox-image.php:35
340
- msgctxt "image upload"
341
- msgid "Upload Images"
342
- msgstr "上传图像"
343
-
344
- #: ../inc/fields/image.php:79
345
- msgctxt "image upload"
346
- msgid "+ Add new image"
347
- msgstr "+ 添加新图像"
348
-
349
- #: ../inc/fields/map.php:48
350
- msgid "Find Address"
351
- msgstr "查找地址"
352
-
353
- #: ../inc/fields/plupload-image.php:104
354
- msgctxt "image upload"
355
- msgid "Drop images here"
356
- msgstr "拖放图像到这里"
357
-
358
- #: ../inc/fields/plupload-image.php:105
359
- msgctxt "image upload"
360
- msgid "or"
361
- msgstr "或"
362
-
363
- #: ../inc/fields/plupload-image.php:106
364
- msgctxt "image upload"
365
- msgid "Select Files"
366
- msgstr "选择文件"
367
-
368
- #: ../inc/fields/plupload-image.php:181
369
- msgctxt "image upload"
370
- msgid "Allowed Image Files"
371
- msgstr "选择图像文件"
372
-
373
- #: ../inc/fields/post.php:54
374
- msgid "Post"
375
- msgstr "文章"
376
-
377
- #: ../inc/fields/post.php:68 ../inc/fields/taxonomy.php:40
378
- #, php-format
379
- msgid "Select a %s"
380
- msgstr "选择%s"
381
-
382
- #: ../inc/fields/select-advanced.php:71
383
- msgid "Select a value"
384
- msgstr "选择值"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
meta-box.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Meta Box
4
  Plugin URI: http://metabox.io
5
  Description: Create meta box for editing pages in WordPress. Compatible with custom post types since WP 3.0
6
- Version: 4.5.1
7
  Author: Rilwis
8
  Author URI: http://www.deluxeblogtips.com
9
  License: GPL2+
@@ -13,7 +13,7 @@ License: GPL2+
13
  defined( 'ABSPATH' ) || exit;
14
 
15
  // Script version, used to add version for scripts and styles
16
- define( 'RWMB_VER', '4.5.1' );
17
 
18
  // Define plugin URLs, for fast enqueuing scripts and styles
19
  if ( ! defined( 'RWMB_URL' ) )
3
  Plugin Name: Meta Box
4
  Plugin URI: http://metabox.io
5
  Description: Create meta box for editing pages in WordPress. Compatible with custom post types since WP 3.0
6
+ Version: 4.5.2
7
  Author: Rilwis
8
  Author URI: http://www.deluxeblogtips.com
9
  License: GPL2+
13
  defined( 'ABSPATH' ) || exit;
14
 
15
  // Script version, used to add version for scripts and styles
16
+ define( 'RWMB_VER', '4.5.2' );
17
 
18
  // Define plugin URLs, for fast enqueuing scripts and styles
19
  if ( ! defined( 'RWMB_URL' ) )
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.deluxeblogtips.com/donate
4
  Tags: meta-box, custom-fields, custom-field, meta, meta-boxes
5
  Requires at least: 3.5
6
  Tested up to: 4.2.1
7
- Stable tag: 4.5.1
8
  License: GPLv2 or later
9
 
10
  Meta Box plugin is a complete tool to create meta box and custom fields in WordPress: lightweight, powerful and easy-to-use.
@@ -69,6 +69,12 @@ To getting started with the plugin API, please read [this tutorial](http://metab
69
 
70
  == Changelog ==
71
 
 
 
 
 
 
 
72
  = 4.5.1 =
73
  * Improvement: Add ability to use multiple post types for `post` field
74
  * Fix: Duplicated description for `checkbox` field
4
  Tags: meta-box, custom-fields, custom-field, meta, meta-boxes
5
  Requires at least: 3.5
6
  Tested up to: 4.2.1
7
+ Stable tag: 4.5.2
8
  License: GPLv2 or later
9
 
10
  Meta Box plugin is a complete tool to create meta box and custom fields in WordPress: lightweight, powerful and easy-to-use.
69
 
70
  == Changelog ==
71
 
72
+ = 4.5.2 =
73
+ * Improvement: Add Persian (Farsi) language. Thank Ahmad Azimi.
74
+ * Improvement: Update Spanish translation. Thank David Perez.
75
+ * Fix: Cloning text fields
76
+ * Fix: rwmb_meta works incorrectly for image fields if multiple=false
77
+
78
  = 4.5.1 =
79
  * Improvement: Add ability to use multiple post types for `post` field
80
  * Fix: Duplicated description for `checkbox` field