Flamingo - Version 1.0.2

Version Description

  • Fixed: Array fields are not displayed correctly on the Inbound Message page.
  • New: Bulk action for deleting contacts.
  • New: Exporting contact information as a CSV file.
  • Translations for Turkish and Hebrew have been created.
Download this release

Release Info

Developer takayukister
Plugin Icon 128x128 Flamingo
Version 1.0.2
Comparing to
See all releases

Code changes from version 1.0.1 to 1.0.2

admin/admin.php CHANGED
@@ -64,6 +64,8 @@ function flamingo_admin_updated_message() {
64
  if ( ! empty( $_REQUEST['message'] ) ) {
65
  if ( 'contactupdated' == $_REQUEST['message'] )
66
  $updated_message = esc_html( __( 'Contact updated.', 'flamingo' ) );
 
 
67
  elseif ( 'inboundtrashed' == $_REQUEST['message'] )
68
  $updated_message = esc_html( __( 'Messages trashed.', 'flamingo' ) );
69
  elseif ( 'inbounduntrashed' == $_REQUEST['message'] )
@@ -120,6 +122,89 @@ function flamingo_load_contact_admin() {
120
  exit();
121
  }
122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  $post_id = ! empty( $_REQUEST['post'] ) ? $_REQUEST['post'] : '';
124
 
125
  if ( Flamingo_Contact::post_type == get_post_type( $post_id ) ) {
64
  if ( ! empty( $_REQUEST['message'] ) ) {
65
  if ( 'contactupdated' == $_REQUEST['message'] )
66
  $updated_message = esc_html( __( 'Contact updated.', 'flamingo' ) );
67
+ elseif ( 'contactdeleted' == $_REQUEST['message'] )
68
+ $updated_message = esc_html( __( 'Contact deleted.', 'flamingo' ) );
69
  elseif ( 'inboundtrashed' == $_REQUEST['message'] )
70
  $updated_message = esc_html( __( 'Messages trashed.', 'flamingo' ) );
71
  elseif ( 'inbounduntrashed' == $_REQUEST['message'] )
122
  exit();
123
  }
124
 
125
+ if ( 'delete' == $action && ! empty( $_REQUEST['post'] ) ) {
126
+ if ( ! is_array( $_REQUEST['post'] ) )
127
+ check_admin_referer( 'flamingo-delete-contact_' . $_REQUEST['post'] );
128
+ else
129
+ check_admin_referer( 'bulk-posts' );
130
+
131
+ $deleted = 0;
132
+
133
+ foreach ( (array) $_REQUEST['post'] as $post ) {
134
+ $post = new Flamingo_Contact( $post );
135
+
136
+ if ( empty( $post ) )
137
+ continue;
138
+
139
+ if ( ! current_user_can( 'flamingo_delete_contact', $post->id ) )
140
+ wp_die( __( 'You are not allowed to delete this item.', 'flamingo' ) );
141
+
142
+ if ( ! $post->delete() )
143
+ wp_die( __( 'Error in deleting.', 'flamingo' ) );
144
+
145
+ $deleted += 1;
146
+ }
147
+
148
+ if ( ! empty( $deleted ) )
149
+ $redirect_to = add_query_arg( array( 'message' => 'contactdeleted' ), $redirect_to );
150
+
151
+ wp_safe_redirect( $redirect_to );
152
+ exit();
153
+ }
154
+
155
+ if ( ! empty( $_GET['export'] ) ) {
156
+ $sitename = sanitize_key( get_bloginfo( 'name' ) );
157
+
158
+ $filename = ( empty( $sitename ) ? '' : $sitename . '-' )
159
+ . sprintf( 'flamingo-contact-%s.csv', date( 'Y-m-d' ) );
160
+
161
+ header( 'Content-Description: File Transfer' );
162
+ header( "Content-Disposition: attachment; filename=$filename" );
163
+ header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true );
164
+
165
+ $labels = array(
166
+ __( 'Email', 'flamingo' ), __( 'Full name', 'flamingo' ),
167
+ __( 'First name', 'flamingo' ), __( 'Last name', 'flamingo' ) );
168
+
169
+ echo flamingo_csv_row( $labels );
170
+
171
+ $args = array(
172
+ 'posts_per_page' => -1,
173
+ 'orderby' => 'meta_value',
174
+ 'order' => 'ASC',
175
+ 'meta_key' => '_email' );
176
+
177
+ if ( ! empty( $_GET['s'] ) )
178
+ $args['s'] = $_GET['s'];
179
+
180
+ if ( ! empty( $_GET['orderby'] ) ) {
181
+ if ( 'email' == $_GET['orderby'] )
182
+ $args['meta_key'] = '_email';
183
+ elseif ( 'name' == $_GET['orderby'] )
184
+ $args['meta_key'] = '_name';
185
+ }
186
+
187
+ if ( ! empty( $_GET['order'] ) && 'asc' == strtolower( $_GET['order'] ) )
188
+ $args['order'] = 'ASC';
189
+
190
+ if ( ! empty( $_GET['contact_tag_id'] ) )
191
+ $args['contact_tag_id'] = explode( ',', $_GET['contact_tag_id'] );
192
+
193
+ $items = Flamingo_Contact::find( $args );
194
+
195
+ foreach ( $items as $item ) {
196
+ $row = array(
197
+ $item->email,
198
+ $item->get_prop( 'name' ),
199
+ $item->get_prop( 'first_name' ),
200
+ $item->get_prop( 'last_name' ) );
201
+
202
+ echo "\r\n" . flamingo_csv_row( $row );
203
+ }
204
+
205
+ exit();
206
+ }
207
+
208
  $post_id = ! empty( $_REQUEST['post'] ) ? $_REQUEST['post'] : '';
209
 
210
  if ( Flamingo_Contact::post_type == get_post_type( $post_id ) ) {
admin/includes/class-contacts-list-table.php CHANGED
@@ -19,8 +19,8 @@ class Flamingo_Contacts_List_Table extends WP_List_Table {
19
 
20
  function __construct() {
21
  parent::__construct( array(
22
- 'singular' => 'contact',
23
- 'plural' => 'contacts',
24
  'ajax' => false ) );
25
  }
26
 
@@ -79,7 +79,7 @@ class Flamingo_Contacts_List_Table extends WP_List_Table {
79
 
80
  function get_bulk_actions() {
81
  $actions = array(
82
- 'send_mail' => __( 'Send Mail', 'flamingo' ) );
83
 
84
  return $actions;
85
  }
@@ -111,6 +111,8 @@ class Flamingo_Contacts_List_Table extends WP_List_Table {
111
 
112
  submit_button( __( 'Filter', 'flamingo' ),
113
  'secondary', false, false, array( 'id' => 'post-query-submit' ) );
 
 
114
  }
115
  ?>
116
  </div>
19
 
20
  function __construct() {
21
  parent::__construct( array(
22
+ 'singular' => 'post',
23
+ 'plural' => 'posts',
24
  'ajax' => false ) );
25
  }
26
 
79
 
80
  function get_bulk_actions() {
81
  $actions = array(
82
+ 'delete' => __( 'Delete', 'flamingo' ) );
83
 
84
  return $actions;
85
  }
111
 
112
  submit_button( __( 'Filter', 'flamingo' ),
113
  'secondary', false, false, array( 'id' => 'post-query-submit' ) );
114
+
115
+ submit_button( __( 'Export', 'flamingo' ), 'secondary', 'export', false );
116
  }
117
  ?>
118
  </div>
admin/includes/meta-boxes.php CHANGED
@@ -5,6 +5,18 @@ function flamingo_contact_submit_meta_box( $post ) {
5
  <div class="submitbox" id="submitlink">
6
  <div id="major-publishing-actions">
7
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  <div id="publishing-action">
9
  <?php if ( ! empty( $post->id ) ) : ?>
10
  <input name="save" type="submit" class="button-primary" id="publish" tabindex="4" accesskey="p" value="<?php echo esc_attr( __( 'Update Contact', 'flamingo' ) ); ?>" />
@@ -152,7 +164,7 @@ function flamingo_inbound_fields_meta_box( $post ) {
152
  <?php foreach ( (array) $post->fields as $key => $value ) : $alt = 0; ?>
153
  <tr<?php $alt = 1 - $alt; echo $alt ? ' class="alt"' : ''; ?>>
154
  <td class="field-title"><?php echo esc_html( $key ); ?></td>
155
- <td class="field-value"><?php echo wpautop( esc_html( $value ) ); ?></td>
156
  </tr>
157
  <?php endforeach; ?>
158
 
5
  <div class="submitbox" id="submitlink">
6
  <div id="major-publishing-actions">
7
 
8
+ <div id="delete-action">
9
+ <?php
10
+ if ( current_user_can( 'flamingo_delete_contact', $post->id ) ) {
11
+ $delete_text = __( 'Delete', 'flamingo' );
12
+
13
+ $delete_link = admin_url(
14
+ sprintf( 'admin.php?page=flamingo&post=%s&action=delete', $post->id ) );
15
+ $delete_link = wp_nonce_url( $delete_link, 'flamingo-delete-contact_' . $post->id );
16
+
17
+ ?><a class="submitdelete deletion" href="<?php echo $delete_link; ?>" onclick="if (confirm('<?php echo esc_js( sprintf( __( "You are about to delete this contact '%s'\n 'Cancel' to stop, 'OK' to delete." ), $post->email ) ); ?>')) {return true;} return false;"><?php echo esc_html( $delete_text ); ?></a><?php } ?>
18
+ </div>
19
+
20
  <div id="publishing-action">
21
  <?php if ( ! empty( $post->id ) ) : ?>
22
  <input name="save" type="submit" class="button-primary" id="publish" tabindex="4" accesskey="p" value="<?php echo esc_attr( __( 'Update Contact', 'flamingo' ) ); ?>" />
164
  <?php foreach ( (array) $post->fields as $key => $value ) : $alt = 0; ?>
165
  <tr<?php $alt = 1 - $alt; echo $alt ? ' class="alt"' : ''; ?>>
166
  <td class="field-title"><?php echo esc_html( $key ); ?></td>
167
+ <td class="field-value"><?php echo flamingo_htmlize( $value ); ?></td>
168
  </tr>
169
  <?php endforeach; ?>
170
 
admin/style.css CHANGED
@@ -33,4 +33,13 @@ table.message-fields td {
33
  table.message-fields td.field-title {
34
  font-weight: bold;
35
  width: 24%;
 
 
 
 
 
 
 
 
 
36
  }
33
  table.message-fields td.field-title {
34
  font-weight: bold;
35
  width: 24%;
36
+ }
37
+
38
+ table.message-fields td.field-value ul {
39
+ margin: 0;
40
+ }
41
+
42
+ table.message-fields td.field-value li {
43
+ list-style: disc;
44
+ margin-left: 1em;
45
  }
flamingo.php CHANGED
@@ -6,10 +6,10 @@ Description: Flamingo manages your contact list on WordPress.
6
  Author: Takayuki Miyoshi
7
  Text Domain: flamingo
8
  Domain Path: /languages/
9
- Version: 1.0.1
10
  */
11
 
12
- define( 'FLAMINGO_VERSION', '1.0.1' );
13
 
14
  define( 'FLAMINGO_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
15
 
@@ -20,6 +20,7 @@ define( 'FLAMINGO_PLUGIN_DIR', untrailingslashit( dirname( __FILE__ ) ) );
20
  define( 'FLAMINGO_PLUGIN_URL', untrailingslashit( plugins_url( '', __FILE__ ) ) );
21
 
22
  require_once FLAMINGO_PLUGIN_DIR . '/includes/functions.php';
 
23
  require_once FLAMINGO_PLUGIN_DIR . '/includes/capabilities.php';
24
  require_once FLAMINGO_PLUGIN_DIR . '/includes/class-contact.php';
25
  require_once FLAMINGO_PLUGIN_DIR . '/includes/class-inbound-message.php';
6
  Author: Takayuki Miyoshi
7
  Text Domain: flamingo
8
  Domain Path: /languages/
9
+ Version: 1.0.2
10
  */
11
 
12
+ define( 'FLAMINGO_VERSION', '1.0.2' );
13
 
14
  define( 'FLAMINGO_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
15
 
20
  define( 'FLAMINGO_PLUGIN_URL', untrailingslashit( plugins_url( '', __FILE__ ) ) );
21
 
22
  require_once FLAMINGO_PLUGIN_DIR . '/includes/functions.php';
23
+ require_once FLAMINGO_PLUGIN_DIR . '/includes/formatting.php';
24
  require_once FLAMINGO_PLUGIN_DIR . '/includes/capabilities.php';
25
  require_once FLAMINGO_PLUGIN_DIR . '/includes/class-contact.php';
26
  require_once FLAMINGO_PLUGIN_DIR . '/includes/class-inbound-message.php';
includes/capabilities.php CHANGED
@@ -6,6 +6,7 @@ function flamingo_map_meta_cap( $caps, $cap, $user_id, $args ) {
6
  $meta_caps = array(
7
  'flamingo_edit_contacts' => 'edit_users',
8
  'flamingo_edit_contact' => 'edit_users',
 
9
  'flamingo_edit_inbound_messages' => 'edit_users',
10
  'flamingo_delete_inbound_message' => 'edit_users',
11
  'flamingo_delete_inbound_messages' => 'edit_users' );
6
  $meta_caps = array(
7
  'flamingo_edit_contacts' => 'edit_users',
8
  'flamingo_edit_contact' => 'edit_users',
9
+ 'flamingo_delete_contact' => 'edit_users',
10
  'flamingo_edit_inbound_messages' => 'edit_users',
11
  'flamingo_delete_inbound_message' => 'edit_users',
12
  'flamingo_delete_inbound_messages' => 'edit_users' );
includes/class-contact.php CHANGED
@@ -172,6 +172,16 @@ class Flamingo_Contact {
172
  return '';
173
  }
174
 
 
 
 
 
 
 
 
 
 
 
175
  }
176
 
177
  ?>
172
  return '';
173
  }
174
 
175
+ public function delete() {
176
+ if ( empty( $this->id ) )
177
+ return;
178
+
179
+ if ( $post = wp_delete_post( $this->id, true ) )
180
+ $this->id = 0;
181
+
182
+ return (bool) $post;
183
+ }
184
+
185
  }
186
 
187
  ?>
includes/class-inbound-message.php CHANGED
@@ -15,6 +15,7 @@ class Flamingo_Inbound_Message {
15
  public $from_name;
16
  public $from_email;
17
  public $fields;
 
18
 
19
  public static function register_post_type() {
20
  register_post_type( self::post_type, array(
@@ -84,7 +85,8 @@ class Flamingo_Inbound_Message {
84
  'from' => '',
85
  'from_name' => '',
86
  'from_email' => '',
87
- 'fields' => array() );
 
88
 
89
  $args = wp_parse_args( $args, $defaults );
90
 
@@ -96,6 +98,7 @@ class Flamingo_Inbound_Message {
96
  $obj->from_name = $args['from_name'];
97
  $obj->from_email = $args['from_email'];
98
  $obj->fields = $args['fields'];
 
99
 
100
  $obj->save();
101
 
@@ -112,6 +115,7 @@ class Flamingo_Inbound_Message {
112
  $this->from_name = get_post_meta( $post->ID, '_from_name', true );
113
  $this->from_email = get_post_meta( $post->ID, '_from_email', true );
114
  $this->fields = get_post_meta( $post->ID, '_fields', true );
 
115
 
116
  $terms = wp_get_object_terms( $this->id, self::channel_taxonomy );
117
 
@@ -147,6 +151,7 @@ class Flamingo_Inbound_Message {
147
  update_post_meta( $post_id, '_from_name', $this->from_name );
148
  update_post_meta( $post_id, '_from_email', $this->from_email );
149
  update_post_meta( $post_id, '_fields', $this->fields );
 
150
 
151
  if ( term_exists( $this->channel, self::channel_taxonomy ) )
152
  wp_set_object_terms( $this->id, $this->channel, self::channel_taxonomy );
15
  public $from_name;
16
  public $from_email;
17
  public $fields;
18
+ public $meta;
19
 
20
  public static function register_post_type() {
21
  register_post_type( self::post_type, array(
85
  'from' => '',
86
  'from_name' => '',
87
  'from_email' => '',
88
+ 'fields' => array(),
89
+ 'meta' => array() );
90
 
91
  $args = wp_parse_args( $args, $defaults );
92
 
98
  $obj->from_name = $args['from_name'];
99
  $obj->from_email = $args['from_email'];
100
  $obj->fields = $args['fields'];
101
+ $obj->meta = $args['meta'];
102
 
103
  $obj->save();
104
 
115
  $this->from_name = get_post_meta( $post->ID, '_from_name', true );
116
  $this->from_email = get_post_meta( $post->ID, '_from_email', true );
117
  $this->fields = get_post_meta( $post->ID, '_fields', true );
118
+ $this->meta = get_post_meta( $post->ID, '_meta', true );
119
 
120
  $terms = wp_get_object_terms( $this->id, self::channel_taxonomy );
121
 
151
  update_post_meta( $post_id, '_from_name', $this->from_name );
152
  update_post_meta( $post_id, '_from_email', $this->from_email );
153
  update_post_meta( $post_id, '_fields', $this->fields );
154
+ update_post_meta( $post_id, '_meta', $this->meta );
155
 
156
  if ( term_exists( $this->channel, self::channel_taxonomy ) )
157
  wp_set_object_terms( $this->id, $this->channel, self::channel_taxonomy );
includes/formatting.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ function flamingo_htmlize( $val ) {
4
+ if ( is_array( $val ) ) {
5
+ $result = '';
6
+
7
+ foreach ( $val as $v )
8
+ $result .= '<li>' . flamingo_htmlize( $v ) . '</li>';
9
+
10
+ return '<ul>' . $result . '</ul>';
11
+ }
12
+
13
+ return wpautop( esc_html( (string) $val ) );
14
+ }
15
+
16
+ function flamingo_csv_row( $inputs = array() ) {
17
+ $row = array();
18
+
19
+ foreach ( $inputs as $input ) {
20
+ $input = preg_replace( '/(?<!\r)\n/', "\r\n", $input );
21
+ $input = esc_sql( $input );
22
+ $input = sprintf( '"%s"', $input );
23
+ $row[] = $input;
24
+ }
25
+
26
+ return implode( ',', $row );
27
+ }
28
+
29
+ ?>
languages/flamingo-he_IL.mo ADDED
Binary file
languages/flamingo-he_IL.po ADDED
@@ -0,0 +1,319 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Flamingo\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-06 00:47+0900\n"
6
+ "PO-Revision-Date: 2012-07-26 21:11+0200\n"
7
+ "Last-Translator: Dan Stramer <d.stramer@hotmail.com>\n"
8
+ "Language-Team: Dan Stramer <dan@dmdesign.co.il>\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-SourceCharset: utf-8\n"
13
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n"
14
+ "X-Poedit-Basepath: ../..\n"
15
+ "Plural-Forms: nplurals=1; plural=0;\n"
16
+ "X-Poedit-Language: Hebrew\n"
17
+ "X-Poedit-Country: ISRAEL\n"
18
+ "X-Poedit-SearchPath-0: flamingo\n"
19
+
20
+ #: flamingo/flamingo.php:5
21
+ msgid "Flamingo manages your contact list on WordPress."
22
+ msgstr "פלמינגו מנהלת את רשימת אנשי הקשר שלך בוורדפרס"
23
+
24
+ #: flamingo/admin/admin.php:9
25
+ #: flamingo/admin/admin.php:14
26
+ #: flamingo/admin/admin.php:154
27
+ msgid "Flamingo Address Book"
28
+ msgstr "ספר כתובות פלמינגו"
29
+
30
+ #: flamingo/admin/admin.php:9
31
+ msgid "Flamingo"
32
+ msgstr "פלמינגו"
33
+
34
+ #: flamingo/admin/admin.php:14
35
+ msgid "Address Book"
36
+ msgstr "ספר כתובות"
37
+
38
+ #: flamingo/admin/admin.php:20
39
+ #: flamingo/includes/class-inbound-message.php:22
40
+ msgid "Flamingo Inbound Messages"
41
+ msgstr "הודעות נכנסות פלמינגו"
42
+
43
+ #: flamingo/admin/admin.php:20
44
+ #: flamingo/admin/admin.php:323
45
+ msgid "Inbound Messages"
46
+ msgstr "הודעות נכנסות"
47
+
48
+ #: flamingo/admin/admin.php:64
49
+ msgid "Contact updated."
50
+ msgstr "אישר קשר עודכן"
51
+
52
+ #: flamingo/admin/admin.php:66
53
+ msgid "Messages trashed."
54
+ msgstr "הודעות נזרקו לאשפה"
55
+
56
+ #: flamingo/admin/admin.php:68
57
+ msgid "Messages restored."
58
+ msgstr "הודעות שוחזרו."
59
+
60
+ #: flamingo/admin/admin.php:70
61
+ msgid "Messages deleted."
62
+ msgstr "הודעות נמחקו."
63
+
64
+ #: flamingo/admin/admin.php:97
65
+ msgid "You are not allowed to edit this item."
66
+ msgstr "אינך מורשה לערוך את הפריט הזה"
67
+
68
+ #: flamingo/admin/admin.php:130
69
+ msgid "Contacts"
70
+ msgstr "אנשי קשר"
71
+
72
+ #: flamingo/admin/admin.php:158
73
+ #: flamingo/admin/admin.php:327
74
+ #, php-format
75
+ msgid "Search results for &#8220;%s&#8221;"
76
+ msgstr "תוצאות חיפוש עבור &#8220;%s&#8221;"
77
+
78
+ #: flamingo/admin/admin.php:167
79
+ msgid "Search Contacts"
80
+ msgstr "חפש אנשי קשר"
81
+
82
+ #: flamingo/admin/admin.php:208
83
+ msgid "You are not allowed to move this item to the Trash."
84
+ msgstr "אינך מורשה להעביר פריט זה לאשפה"
85
+
86
+ #: flamingo/admin/admin.php:211
87
+ msgid "Error in moving to Trash."
88
+ msgstr "שגיאה בהעברה לאשפה"
89
+
90
+ #: flamingo/admin/admin.php:238
91
+ msgid "You are not allowed to restore this item from the Trash."
92
+ msgstr "אינך מורשה לשחזר פריט זה מהאשפה"
93
+
94
+ #: flamingo/admin/admin.php:241
95
+ msgid "Error in restoring from Trash."
96
+ msgstr "שגיאה בשחזור מהאשפה."
97
+
98
+ #: flamingo/admin/admin.php:275
99
+ msgid "You are not allowed to delete this item."
100
+ msgstr "אינך מורשה למחוק פריט זה."
101
+
102
+ #: flamingo/admin/admin.php:278
103
+ msgid "Error in deleting."
104
+ msgstr "שגיאה במחיקה."
105
+
106
+ #: flamingo/admin/admin.php:299
107
+ msgid "Messages"
108
+ msgstr "הודעות"
109
+
110
+ #: flamingo/admin/admin.php:338
111
+ msgid "Search Messages"
112
+ msgstr "חפש הודעות"
113
+
114
+ #: flamingo/admin/edit-contact-form.php:13
115
+ #: flamingo/admin/edit-inbound-form.php:13
116
+ msgid "Save"
117
+ msgstr "שמירה"
118
+
119
+ #: flamingo/admin/edit-contact-form.php:16
120
+ #: flamingo/admin/includes/class-contacts-list-table.php:13
121
+ msgid "Tags"
122
+ msgstr "תגיות"
123
+
124
+ #: flamingo/admin/edit-contact-form.php:19
125
+ #: flamingo/admin/includes/class-contacts-list-table.php:12
126
+ msgid "Name"
127
+ msgstr "שם"
128
+
129
+ #: flamingo/admin/edit-contact-form.php:26
130
+ msgid "Edit Contact"
131
+ msgstr "ערוך איש קשר"
132
+
133
+ #: flamingo/admin/edit-contact-form.php:52
134
+ msgid "Enter email here"
135
+ msgstr "הכנס כתובת מייל כאן"
136
+
137
+ #: flamingo/admin/edit-inbound-form.php:16
138
+ msgid "Fields"
139
+ msgstr "שדות"
140
+
141
+ #: flamingo/admin/edit-inbound-form.php:23
142
+ msgid "Inbound Message"
143
+ msgstr "הודעה נכנסת"
144
+
145
+ #: flamingo/admin/edit-inbound-form.php:48
146
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:14
147
+ msgid "Date"
148
+ msgstr "תאריך"
149
+
150
+ #: flamingo/admin/edit-inbound-form.php:53
151
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:11
152
+ msgid "Subject"
153
+ msgstr "נושא"
154
+
155
+ #: flamingo/admin/edit-inbound-form.php:58
156
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:12
157
+ msgid "From"
158
+ msgstr "מאת"
159
+
160
+ #: flamingo/admin/includes/class-contacts-list-table.php:11
161
+ msgid "Email"
162
+ msgstr "מייל"
163
+
164
+ #: flamingo/admin/includes/class-contacts-list-table.php:14
165
+ msgid "History"
166
+ msgstr "היסטוריה"
167
+
168
+ #: flamingo/admin/includes/class-contacts-list-table.php:15
169
+ msgid "Last Contact"
170
+ msgstr "איש קשר אחרון"
171
+
172
+ #: flamingo/admin/includes/class-contacts-list-table.php:82
173
+ msgid "Send Mail"
174
+ msgstr "שלח מייל"
175
+
176
+ #: flamingo/admin/includes/class-contacts-list-table.php:106
177
+ msgid "View all tags"
178
+ msgstr "צפה בכל התגיות"
179
+
180
+ #: flamingo/admin/includes/class-contacts-list-table.php:112
181
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:173
182
+ msgid "Filter"
183
+ msgstr "פילטר"
184
+
185
+ #: flamingo/admin/includes/class-contacts-list-table.php:136
186
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:205
187
+ msgid "Edit"
188
+ msgstr "ערוך"
189
+
190
+ #: flamingo/admin/includes/class-contacts-list-table.php:140
191
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:209
192
+ #, php-format
193
+ msgid "Edit &#8220;%s&#8221;"
194
+ msgstr "ערוך &#8220;%s&#8221;"
195
+
196
+ #: flamingo/admin/includes/class-contacts-list-table.php:152
197
+ msgid "No Tags"
198
+ msgstr "אין תגיות"
199
+
200
+ #: flamingo/admin/includes/class-contacts-list-table.php:181
201
+ msgid "User"
202
+ msgstr "משתמש"
203
+
204
+ #: flamingo/admin/includes/class-contacts-list-table.php:194
205
+ #, php-format
206
+ msgid "Comment (%d)"
207
+ msgstr "תגובה(%d)"
208
+
209
+ #: flamingo/admin/includes/class-contacts-list-table.php:233
210
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:242
211
+ #: flamingo/includes/class-inbound-message.php:107
212
+ msgid "Y/m/d g:i:s A"
213
+ msgstr ""
214
+
215
+ #: flamingo/admin/includes/class-contacts-list-table.php:240
216
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:249
217
+ #, php-format
218
+ msgid "%s ago"
219
+ msgstr "לפני %s"
220
+
221
+ #: flamingo/admin/includes/class-contacts-list-table.php:242
222
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:251
223
+ msgid "Y/m/d"
224
+ msgstr "שנה/חודש/יום"
225
+
226
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:13
227
+ msgid "Channel"
228
+ msgstr "ערוץ"
229
+
230
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:131
231
+ msgid "Restore"
232
+ msgstr "שחזר"
233
+
234
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:134
235
+ #: flamingo/admin/includes/meta-boxes.php:95
236
+ msgid "Delete Permanently"
237
+ msgstr "מחק לתמיד"
238
+
239
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:136
240
+ #: flamingo/admin/includes/meta-boxes.php:97
241
+ msgid "Move to Trash"
242
+ msgstr "העבר לאשפה"
243
+
244
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:167
245
+ msgid "View all channels"
246
+ msgstr "צפה בכל הערוצים"
247
+
248
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:178
249
+ msgid "Empty Trash"
250
+ msgstr "רוקן אשפה"
251
+
252
+ #: flamingo/admin/includes/meta-boxes.php:10
253
+ msgid "Update Contact"
254
+ msgstr "עדכן איש קשר"
255
+
256
+ #: flamingo/admin/includes/meta-boxes.php:12
257
+ msgid "Add Contact"
258
+ msgstr "הוסף איש קשר"
259
+
260
+ #: flamingo/admin/includes/meta-boxes.php:56
261
+ msgid "Separate tags with commas"
262
+ msgstr "הפרד תגיות בפסיקים"
263
+
264
+ #: flamingo/admin/includes/meta-boxes.php:59
265
+ msgid "Choose from the most used tags"
266
+ msgstr "בחר תגית מהנפוצות ביותר"
267
+
268
+ #: flamingo/admin/includes/meta-boxes.php:108
269
+ msgid "Update Message"
270
+ msgstr "עדכן הודעה"
271
+
272
+ #: flamingo/admin/includes/meta-boxes.php:110
273
+ msgid "Add Message"
274
+ msgstr "הוסף הודעה"
275
+
276
+ #: flamingo/admin/includes/meta-boxes.php:128
277
+ msgid "Full name"
278
+ msgstr "שם מלא"
279
+
280
+ #: flamingo/admin/includes/meta-boxes.php:133
281
+ msgid "First name"
282
+ msgstr "שם פרטי"
283
+
284
+ #: flamingo/admin/includes/meta-boxes.php:138
285
+ msgid "Last name"
286
+ msgstr "שם משפחה"
287
+
288
+ #: flamingo/includes/class-contact.php:20
289
+ msgid "Flamingo Contacts"
290
+ msgstr "אנשי קשר פלמינגו"
291
+
292
+ #: flamingo/includes/class-contact.php:21
293
+ msgid "Flamingo Contact"
294
+ msgstr "איש קשר פלמינגו"
295
+
296
+ #: flamingo/includes/class-contact.php:25
297
+ msgid "Flamingo Contact Tags"
298
+ msgstr "תגיות איש קשר פלמינגו"
299
+
300
+ #: flamingo/includes/class-contact.php:26
301
+ msgid "Flamingo Contact Tag"
302
+ msgstr "תגית איש קשר פלמינגו"
303
+
304
+ #: flamingo/includes/class-inbound-message.php:23
305
+ msgid "Flamingo Inbound Message"
306
+ msgstr "הודעה נכנסת פלמינגו"
307
+
308
+ #: flamingo/includes/class-inbound-message.php:27
309
+ msgid "Flamingo Inbound Message Channels"
310
+ msgstr "ערוצי הודעות נכנסות פלמינגו"
311
+
312
+ #: flamingo/includes/class-inbound-message.php:28
313
+ msgid "Flamingo Inbound Message Channel"
314
+ msgstr "ערוץ הודעות נכנסות פלמינגו"
315
+
316
+ #: flamingo/includes/class-inbound-message.php:125
317
+ msgid "(No Title)"
318
+ msgstr "(ללא כותרת)"
319
+
languages/flamingo-tr_TR.mo ADDED
Binary file
languages/flamingo-tr_TR.po ADDED
@@ -0,0 +1,319 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Flamingo\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-06 00:47+0900\n"
6
+ "PO-Revision-Date: 2012-07-20 10:48+0200\n"
7
+ "Last-Translator: Ömür Yanıkoğlu <hayatbiralem@gmail.com>\n"
8
+ "Language-Team: Ömür YANIKOĞLU <hayatbiralem@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-SourceCharset: utf-8\n"
13
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n"
14
+ "X-Poedit-Basepath: ../..\n"
15
+ "Plural-Forms: nplurals=1; plural=0;\n"
16
+ "X-Poedit-Language: Turkish\n"
17
+ "X-Poedit-Country: TURKEY\n"
18
+ "X-Poedit-SearchPath-0: flamingo\n"
19
+
20
+ #: flamingo/flamingo.php:5
21
+ msgid "Flamingo manages your contact list on WordPress."
22
+ msgstr "Flamingo, WordPress üzerindeki iletişim listenizi yönetir."
23
+
24
+ #: flamingo/admin/admin.php:9
25
+ #: flamingo/admin/admin.php:14
26
+ #: flamingo/admin/admin.php:154
27
+ msgid "Flamingo Address Book"
28
+ msgstr "Flamigo Adres Defteri"
29
+
30
+ #: flamingo/admin/admin.php:9
31
+ msgid "Flamingo"
32
+ msgstr ""
33
+
34
+ #: flamingo/admin/admin.php:14
35
+ msgid "Address Book"
36
+ msgstr "Adres Defteri"
37
+
38
+ #: flamingo/admin/admin.php:20
39
+ #: flamingo/includes/class-inbound-message.php:22
40
+ msgid "Flamingo Inbound Messages"
41
+ msgstr "Flamingo Gelen Mesajlar"
42
+
43
+ #: flamingo/admin/admin.php:20
44
+ #: flamingo/admin/admin.php:323
45
+ msgid "Inbound Messages"
46
+ msgstr "Gelen Mesajlar"
47
+
48
+ #: flamingo/admin/admin.php:64
49
+ msgid "Contact updated."
50
+ msgstr "İletişim bilgisi güncellendi."
51
+
52
+ #: flamingo/admin/admin.php:66
53
+ msgid "Messages trashed."
54
+ msgstr "Mesaj Çöp Kutusuna gönderildi."
55
+
56
+ #: flamingo/admin/admin.php:68
57
+ msgid "Messages restored."
58
+ msgstr "Mesaj eski haline getirildi."
59
+
60
+ #: flamingo/admin/admin.php:70
61
+ msgid "Messages deleted."
62
+ msgstr "Mesaj silindi."
63
+
64
+ #: flamingo/admin/admin.php:97
65
+ msgid "You are not allowed to edit this item."
66
+ msgstr "Bu öğeyi düzenlemek için izniniz bulunmuyor."
67
+
68
+ #: flamingo/admin/admin.php:130
69
+ msgid "Contacts"
70
+ msgstr "Kişiler"
71
+
72
+ #: flamingo/admin/admin.php:158
73
+ #: flamingo/admin/admin.php:327
74
+ #, php-format
75
+ msgid "Search results for &#8220;%s&#8221;"
76
+ msgstr "&#8220;%s&#8221; için arama sonuçları"
77
+
78
+ #: flamingo/admin/admin.php:167
79
+ msgid "Search Contacts"
80
+ msgstr "Kişilerde Ara"
81
+
82
+ #: flamingo/admin/admin.php:208
83
+ msgid "You are not allowed to move this item to the Trash."
84
+ msgstr "Bu öğeyi Çöp Kutusuna göndermek için izniniz buunmuyor."
85
+
86
+ #: flamingo/admin/admin.php:211
87
+ msgid "Error in moving to Trash."
88
+ msgstr "Öğe Çöp Kutusuna gönderilirken bir hata ile karşılaşıldı."
89
+
90
+ #: flamingo/admin/admin.php:238
91
+ msgid "You are not allowed to restore this item from the Trash."
92
+ msgstr "Bu öğeyi eski haline getirmek için izniniz bulunmuyor."
93
+
94
+ #: flamingo/admin/admin.php:241
95
+ msgid "Error in restoring from Trash."
96
+ msgstr "Öğe Gelen Kutusuna gönderilirken bir hata ile karşılaşıldı."
97
+
98
+ #: flamingo/admin/admin.php:275
99
+ msgid "You are not allowed to delete this item."
100
+ msgstr "Bu öğeyi silmek için izniniz bulunmuyor."
101
+
102
+ #: flamingo/admin/admin.php:278
103
+ msgid "Error in deleting."
104
+ msgstr "Öğe silinirken bir hata ile karşılaşıldı."
105
+
106
+ #: flamingo/admin/admin.php:299
107
+ msgid "Messages"
108
+ msgstr "Mesajlar"
109
+
110
+ #: flamingo/admin/admin.php:338
111
+ msgid "Search Messages"
112
+ msgstr "Mesajlarda ara"
113
+
114
+ #: flamingo/admin/edit-contact-form.php:13
115
+ #: flamingo/admin/edit-inbound-form.php:13
116
+ msgid "Save"
117
+ msgstr "Kaydet"
118
+
119
+ #: flamingo/admin/edit-contact-form.php:16
120
+ #: flamingo/admin/includes/class-contacts-list-table.php:13
121
+ msgid "Tags"
122
+ msgstr "Etiketler"
123
+
124
+ #: flamingo/admin/edit-contact-form.php:19
125
+ #: flamingo/admin/includes/class-contacts-list-table.php:12
126
+ msgid "Name"
127
+ msgstr "İsim"
128
+
129
+ #: flamingo/admin/edit-contact-form.php:26
130
+ msgid "Edit Contact"
131
+ msgstr "Kişiyi Düzenle"
132
+
133
+ #: flamingo/admin/edit-contact-form.php:52
134
+ msgid "Enter email here"
135
+ msgstr "E-posta adresini giriniz"
136
+
137
+ #: flamingo/admin/edit-inbound-form.php:16
138
+ msgid "Fields"
139
+ msgstr "Alanlar"
140
+
141
+ #: flamingo/admin/edit-inbound-form.php:23
142
+ msgid "Inbound Message"
143
+ msgstr "Gelen Mesaj"
144
+
145
+ #: flamingo/admin/edit-inbound-form.php:48
146
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:14
147
+ msgid "Date"
148
+ msgstr "Tarih"
149
+
150
+ #: flamingo/admin/edit-inbound-form.php:53
151
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:11
152
+ msgid "Subject"
153
+ msgstr "Konu"
154
+
155
+ #: flamingo/admin/edit-inbound-form.php:58
156
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:12
157
+ msgid "From"
158
+ msgstr "Gönderen"
159
+
160
+ #: flamingo/admin/includes/class-contacts-list-table.php:11
161
+ msgid "Email"
162
+ msgstr "E-posta"
163
+
164
+ #: flamingo/admin/includes/class-contacts-list-table.php:14
165
+ msgid "History"
166
+ msgstr "Geçmiş"
167
+
168
+ #: flamingo/admin/includes/class-contacts-list-table.php:15
169
+ msgid "Last Contact"
170
+ msgstr "Son İletişim"
171
+
172
+ #: flamingo/admin/includes/class-contacts-list-table.php:82
173
+ msgid "Send Mail"
174
+ msgstr "Mesaj Gönder"
175
+
176
+ #: flamingo/admin/includes/class-contacts-list-table.php:106
177
+ msgid "View all tags"
178
+ msgstr "Tüm etiketleri görüntüle"
179
+
180
+ #: flamingo/admin/includes/class-contacts-list-table.php:112
181
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:173
182
+ msgid "Filter"
183
+ msgstr "Filtre"
184
+
185
+ #: flamingo/admin/includes/class-contacts-list-table.php:136
186
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:205
187
+ msgid "Edit"
188
+ msgstr "Düzenle"
189
+
190
+ #: flamingo/admin/includes/class-contacts-list-table.php:140
191
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:209
192
+ #, php-format
193
+ msgid "Edit &#8220;%s&#8221;"
194
+ msgstr "Düzenle &#8220;%s&#8221;"
195
+
196
+ #: flamingo/admin/includes/class-contacts-list-table.php:152
197
+ msgid "No Tags"
198
+ msgstr "Etiket Yok"
199
+
200
+ #: flamingo/admin/includes/class-contacts-list-table.php:181
201
+ msgid "User"
202
+ msgstr "Kullanıcı"
203
+
204
+ #: flamingo/admin/includes/class-contacts-list-table.php:194
205
+ #, php-format
206
+ msgid "Comment (%d)"
207
+ msgstr "Yorum (%d)"
208
+
209
+ #: flamingo/admin/includes/class-contacts-list-table.php:233
210
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:242
211
+ #: flamingo/includes/class-inbound-message.php:107
212
+ msgid "Y/m/d g:i:s A"
213
+ msgstr "d F Y H:i:s"
214
+
215
+ #: flamingo/admin/includes/class-contacts-list-table.php:240
216
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:249
217
+ #, php-format
218
+ msgid "%s ago"
219
+ msgstr "%s önce"
220
+
221
+ #: flamingo/admin/includes/class-contacts-list-table.php:242
222
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:251
223
+ msgid "Y/m/d"
224
+ msgstr "d F Y"
225
+
226
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:13
227
+ msgid "Channel"
228
+ msgstr "Kanal"
229
+
230
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:131
231
+ msgid "Restore"
232
+ msgstr "Eski Haline Getir"
233
+
234
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:134
235
+ #: flamingo/admin/includes/meta-boxes.php:95
236
+ msgid "Delete Permanently"
237
+ msgstr "Kalıcı Olarak Sil"
238
+
239
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:136
240
+ #: flamingo/admin/includes/meta-boxes.php:97
241
+ msgid "Move to Trash"
242
+ msgstr "Çöpe Taşı"
243
+
244
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:167
245
+ msgid "View all channels"
246
+ msgstr "Tüm kanalları göster"
247
+
248
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:178
249
+ msgid "Empty Trash"
250
+ msgstr "Çöp Kutusu Boş"
251
+
252
+ #: flamingo/admin/includes/meta-boxes.php:10
253
+ msgid "Update Contact"
254
+ msgstr "Kişiyi Güncelle"
255
+
256
+ #: flamingo/admin/includes/meta-boxes.php:12
257
+ msgid "Add Contact"
258
+ msgstr "Kişi Ekle"
259
+
260
+ #: flamingo/admin/includes/meta-boxes.php:56
261
+ msgid "Separate tags with commas"
262
+ msgstr "Etiketleri virgülle ayırınız"
263
+
264
+ #: flamingo/admin/includes/meta-boxes.php:59
265
+ msgid "Choose from the most used tags"
266
+ msgstr "En çok kullanılan etiketlerden seçin"
267
+
268
+ #: flamingo/admin/includes/meta-boxes.php:108
269
+ msgid "Update Message"
270
+ msgstr "Mesajı Gğncelle"
271
+
272
+ #: flamingo/admin/includes/meta-boxes.php:110
273
+ msgid "Add Message"
274
+ msgstr "Mesaj Ekle"
275
+
276
+ #: flamingo/admin/includes/meta-boxes.php:128
277
+ msgid "Full name"
278
+ msgstr "Tam isim"
279
+
280
+ #: flamingo/admin/includes/meta-boxes.php:133
281
+ msgid "First name"
282
+ msgstr "Ad"
283
+
284
+ #: flamingo/admin/includes/meta-boxes.php:138
285
+ msgid "Last name"
286
+ msgstr "Soyad"
287
+
288
+ #: flamingo/includes/class-contact.php:20
289
+ msgid "Flamingo Contacts"
290
+ msgstr "Flamingo Kişiler"
291
+
292
+ #: flamingo/includes/class-contact.php:21
293
+ msgid "Flamingo Contact"
294
+ msgstr "Flamingo Kişi"
295
+
296
+ #: flamingo/includes/class-contact.php:25
297
+ msgid "Flamingo Contact Tags"
298
+ msgstr "Flamingo Kişi Etiketleri"
299
+
300
+ #: flamingo/includes/class-contact.php:26
301
+ msgid "Flamingo Contact Tag"
302
+ msgstr "Flamingo Kişi Etiketi"
303
+
304
+ #: flamingo/includes/class-inbound-message.php:23
305
+ msgid "Flamingo Inbound Message"
306
+ msgstr "Flamingo Gelen Kutusu"
307
+
308
+ #: flamingo/includes/class-inbound-message.php:27
309
+ msgid "Flamingo Inbound Message Channels"
310
+ msgstr "Flamingo Gelen Kutusu Kanalları"
311
+
312
+ #: flamingo/includes/class-inbound-message.php:28
313
+ msgid "Flamingo Inbound Message Channel"
314
+ msgstr "Flamingo Gelen Kutusu Kanalı"
315
+
316
+ #: flamingo/includes/class-inbound-message.php:125
317
+ msgid "(No Title)"
318
+ msgstr "(Başlık Yok)"
319
+
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: takayukister, megumithemes
3
  Tags: bird, contact, mail, crm
4
  Requires at least: 3.3
5
  Tested up to: 3.4.1
6
- Stable tag: 1.0.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -17,7 +17,9 @@ Flamingo is a WordPress plugin created to be a total CRM package. With this vers
17
 
18
  * Brazilian Portuguese (pt_BR) - [Ilton Alberto Junior](https://twitter.com/iltonalberto)
19
  * Dutch (nl_NL) - [TenSheep](http://tensheep.nl/)
 
20
  * Japanese (ja) - [Takayuki Miyoshi](http://ideasilo.wordpress.com)
 
21
 
22
  If you have created your own language pack, or have an update of an existing one, you can send [gettext PO and MO files](http://codex.wordpress.org/Translating_WordPress) to [me](http://ideasilo.wordpress.com/about/) so that I can bundle it into Flamingo. You can download the latest [POT file](http://plugins.svn.wordpress.org/flamingo/trunk/languages/flamingo.pot).
23
 
@@ -36,6 +38,13 @@ If you have created your own language pack, or have an update of an existing one
36
 
37
  == Changelog ==
38
 
 
 
 
 
 
 
 
39
  = 1.0.1 =
40
 
41
  * Fixed: Updating irrelevant posts when adding inbound messages.
3
  Tags: bird, contact, mail, crm
4
  Requires at least: 3.3
5
  Tested up to: 3.4.1
6
+ Stable tag: 1.0.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
17
 
18
  * Brazilian Portuguese (pt_BR) - [Ilton Alberto Junior](https://twitter.com/iltonalberto)
19
  * Dutch (nl_NL) - [TenSheep](http://tensheep.nl/)
20
+ * Hebrew (he_IL) - [Dan Stramer](http://www.dmdesign.co.il/)
21
  * Japanese (ja) - [Takayuki Miyoshi](http://ideasilo.wordpress.com)
22
+ * Turkish (tr_TR) - Ömür YANIKOĞLU
23
 
24
  If you have created your own language pack, or have an update of an existing one, you can send [gettext PO and MO files](http://codex.wordpress.org/Translating_WordPress) to [me](http://ideasilo.wordpress.com/about/) so that I can bundle it into Flamingo. You can download the latest [POT file](http://plugins.svn.wordpress.org/flamingo/trunk/languages/flamingo.pot).
25
 
38
 
39
  == Changelog ==
40
 
41
+ = 1.0.2 =
42
+
43
+ * Fixed: Array fields are not displayed correctly on the Inbound Message page.
44
+ * New: Bulk action for deleting contacts.
45
+ * New: Exporting contact information as a CSV file.
46
+ * Translations for Turkish and Hebrew have been created.
47
+
48
  = 1.0.1 =
49
 
50
  * Fixed: Updating irrelevant posts when adding inbound messages.