Flamingo - Version 1.0.1

Version Description

  • Fixed: Updating irrelevant posts when adding inbound messages.
  • Fixed: Issues relating to post boxes and admin screen options.
  • Fixed: Generating unnecessary rewrite rules.
  • Translations for Dutch and Brazilian Portuguese have been created.

=

Download this release

Release Info

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

Code changes from version 1.0 to 1.0.1

admin/admin.php CHANGED
@@ -42,16 +42,18 @@ function flamingo_admin_enqueue_scripts( $hook_suffix ) {
42
  if ( false === strpos( $hook_suffix, 'flamingo' ) )
43
  return;
44
 
45
- wp_enqueue_script( 'thickbox' );
46
- wp_enqueue_script( 'postbox' );
 
47
 
48
  wp_enqueue_script( 'flamingo-admin',
49
  flamingo_plugin_url( 'admin/script.js' ),
50
- array( 'jquery' ), FLAMINGO_VERSION, true );
51
 
52
- wp_enqueue_style( 'flamingo-admin',
53
- flamingo_plugin_url( 'admin/style.css' ),
54
- array(), FLAMINGO_VERSION, 'all' );
 
55
  }
56
 
57
  /* Updated Message */
@@ -118,29 +120,40 @@ function flamingo_load_contact_admin() {
118
  exit();
119
  }
120
 
121
- $current_screen = get_current_screen();
 
 
 
 
122
 
123
- if ( ! class_exists( 'Flamingo_Contacts_List_Table' ) )
124
- require_once FLAMINGO_PLUGIN_DIR . '/admin/includes/class-contacts-list-table.php';
125
 
126
- add_filter( 'manage_' . $current_screen->id . '_columns',
127
- array( 'Flamingo_Contacts_List_Table', 'define_columns' ) );
 
 
 
 
128
 
129
- add_screen_option( 'per_page', array(
130
- 'label' => __( 'Contacts', 'flamingo' ),
131
- 'default' => 20 ) );
 
 
 
 
 
 
132
  }
133
 
134
  function flamingo_contact_admin_page() {
135
- if ( ! empty( $_REQUEST['action'] ) && ! empty( $_REQUEST['post'] ) ) {
136
- $post_id = absint( $_REQUEST['post'] );
137
-
138
- if ( Flamingo_Contact::post_type == get_post_type( $post_id ) ) {
139
- if ( 'edit' == $_REQUEST['action'] ) {
140
- flamingo_contact_edit_page();
141
- return;
142
- }
143
- }
144
  }
145
 
146
  $list_table = new Flamingo_Contacts_List_Table();
@@ -287,29 +300,37 @@ function flamingo_load_inbound_admin() {
287
  exit();
288
  }
289
 
290
- $current_screen = get_current_screen();
 
 
 
 
 
 
 
291
 
292
- if ( ! class_exists( 'Flamingo_Inbound_Messages_List_Table' ) )
293
- require_once FLAMINGO_PLUGIN_DIR . '/admin/includes/class-inbound-messages-list-table.php';
 
 
 
294
 
295
- add_filter( 'manage_' . $current_screen->id . '_columns',
296
- array( 'Flamingo_Inbound_Messages_List_Table', 'define_columns' ) );
297
 
298
- add_screen_option( 'per_page', array(
299
- 'label' => __( 'Messages', 'flamingo' ),
300
- 'default' => 20 ) );
 
301
  }
302
 
303
  function flamingo_inbound_admin_page() {
304
- if ( ! empty( $_REQUEST['action'] ) && ! empty( $_REQUEST['post'] ) ) {
305
- $post_id = absint( $_REQUEST['post'] );
306
-
307
- if ( Flamingo_Inbound_Message::post_type == get_post_type( $post_id ) ) {
308
- if ( 'edit' == $_REQUEST['action'] ) {
309
- flamingo_inbound_edit_page();
310
- return;
311
- }
312
- }
313
  }
314
 
315
  $list_table = new Flamingo_Inbound_Messages_List_Table();
42
  if ( false === strpos( $hook_suffix, 'flamingo' ) )
43
  return;
44
 
45
+ wp_enqueue_style( 'flamingo-admin',
46
+ flamingo_plugin_url( 'admin/style.css' ),
47
+ array(), FLAMINGO_VERSION, 'all' );
48
 
49
  wp_enqueue_script( 'flamingo-admin',
50
  flamingo_plugin_url( 'admin/script.js' ),
51
+ array( 'postbox' ), FLAMINGO_VERSION, true );
52
 
53
+ $current_screen = get_current_screen();
54
+
55
+ wp_localize_script( 'flamingo-admin', '_flamingo', array(
56
+ 'screenId' => $current_screen->id ) );
57
  }
58
 
59
  /* Updated Message */
120
  exit();
121
  }
122
 
123
+ $post_id = ! empty( $_REQUEST['post'] ) ? $_REQUEST['post'] : '';
124
+
125
+ if ( Flamingo_Contact::post_type == get_post_type( $post_id ) ) {
126
+ add_meta_box( 'submitdiv', __( 'Save', 'flamingo' ),
127
+ 'flamingo_contact_submit_meta_box', null, 'side', 'core' );
128
 
129
+ add_meta_box( 'contacttagsdiv', __( 'Tags', 'flamingo' ),
130
+ 'flamingo_contact_tags_meta_box', null, 'side', 'core' );
131
 
132
+ add_meta_box( 'contactnamediv', __( 'Name', 'flamingo' ),
133
+ 'flamingo_contact_name_meta_box', null, 'normal', 'core' );
134
+
135
+ } else {
136
+ if ( ! class_exists( 'Flamingo_Contacts_List_Table' ) )
137
+ require_once FLAMINGO_PLUGIN_DIR . '/admin/includes/class-contacts-list-table.php';
138
 
139
+ $current_screen = get_current_screen();
140
+
141
+ add_filter( 'manage_' . $current_screen->id . '_columns',
142
+ array( 'Flamingo_Contacts_List_Table', 'define_columns' ) );
143
+
144
+ add_screen_option( 'per_page', array(
145
+ 'label' => __( 'Contacts', 'flamingo' ),
146
+ 'default' => 20 ) );
147
+ }
148
  }
149
 
150
  function flamingo_contact_admin_page() {
151
+ $action = flamingo_current_action();
152
+ $post_id = ! empty( $_REQUEST['post'] ) ? $_REQUEST['post'] : '';
153
+
154
+ if ( 'edit' == $action && Flamingo_Contact::post_type == get_post_type( $post_id ) ) {
155
+ flamingo_contact_edit_page();
156
+ return;
 
 
 
157
  }
158
 
159
  $list_table = new Flamingo_Contacts_List_Table();
300
  exit();
301
  }
302
 
303
+ $post_id = ! empty( $_REQUEST['post'] ) ? $_REQUEST['post'] : '';
304
+
305
+ if ( Flamingo_Inbound_Message::post_type == get_post_type( $post_id ) ) {
306
+ add_meta_box( 'submitdiv', __( 'Save', 'flamingo' ),
307
+ 'flamingo_inbound_submit_meta_box', null, 'side', 'core' );
308
+
309
+ add_meta_box( 'inboundfieldsdiv', __( 'Fields', 'flamingo' ),
310
+ 'flamingo_inbound_fields_meta_box', null, 'normal', 'core' );
311
 
312
+ } else {
313
+ if ( ! class_exists( 'Flamingo_Inbound_Messages_List_Table' ) )
314
+ require_once FLAMINGO_PLUGIN_DIR . '/admin/includes/class-inbound-messages-list-table.php';
315
+
316
+ $current_screen = get_current_screen();
317
 
318
+ add_filter( 'manage_' . $current_screen->id . '_columns',
319
+ array( 'Flamingo_Inbound_Messages_List_Table', 'define_columns' ) );
320
 
321
+ add_screen_option( 'per_page', array(
322
+ 'label' => __( 'Messages', 'flamingo' ),
323
+ 'default' => 20 ) );
324
+ }
325
  }
326
 
327
  function flamingo_inbound_admin_page() {
328
+ $action = flamingo_current_action();
329
+ $post_id = ! empty( $_REQUEST['post'] ) ? $_REQUEST['post'] : '';
330
+
331
+ if ( 'edit' == $action && Flamingo_Inbound_Message::post_type == get_post_type( $post_id ) ) {
332
+ flamingo_inbound_edit_page();
333
+ return;
 
 
 
334
  }
335
 
336
  $list_table = new Flamingo_Inbound_Messages_List_Table();
admin/edit-contact-form.php CHANGED
@@ -10,15 +10,6 @@ if ( ! empty( $post->id ) ) {
10
  $nonce_action = 'flamingo-add-contact';
11
  }
12
 
13
- add_meta_box( 'contactsubmitdiv', __( 'Save', 'flamingo' ),
14
- 'flamingo_contact_submit_meta_box', 'flamingo-contact', 'side', 'core' );
15
-
16
- add_meta_box( 'contacttagsdiv', __( 'Tags', 'flamingo' ),
17
- 'flamingo_contact_tags_meta_box', 'flamingo-contact', 'side', 'core' );
18
-
19
- add_meta_box( 'contactnamediv', __( 'Name', 'flamingo' ),
20
- 'flamingo_contact_name_meta_box', 'flamingo-contact', 'normal', 'core' );
21
-
22
  ?>
23
  <div class="wrap columns-2">
24
  <?php screen_icon(); ?>
@@ -37,7 +28,7 @@ wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
37
  <div id="poststuff" class="metabox-holder has-right-sidebar">
38
  <div id="side-info-column" class="inner-sidebar">
39
  <?php
40
- do_meta_boxes( 'flamingo-contact', 'side', $post );
41
  ?>
42
  </div><!-- #side-info-column -->
43
 
@@ -56,8 +47,8 @@ do_meta_boxes( 'flamingo-contact', 'side', $post );
56
  </div>
57
 
58
  <?php
59
- do_meta_boxes( 'flamingo-contact', 'normal', $post );
60
- do_meta_boxes( 'flamingo-contact', 'advanced', $post );
61
  ?>
62
  </div><!-- #post-body-content -->
63
  </div><!-- #post-body -->
10
  $nonce_action = 'flamingo-add-contact';
11
  }
12
 
 
 
 
 
 
 
 
 
 
13
  ?>
14
  <div class="wrap columns-2">
15
  <?php screen_icon(); ?>
28
  <div id="poststuff" class="metabox-holder has-right-sidebar">
29
  <div id="side-info-column" class="inner-sidebar">
30
  <?php
31
+ do_meta_boxes( null, 'side', $post );
32
  ?>
33
  </div><!-- #side-info-column -->
34
 
47
  </div>
48
 
49
  <?php
50
+ do_meta_boxes( null, 'normal', $post );
51
+ do_meta_boxes( null, 'advanced', $post );
52
  ?>
53
  </div><!-- #post-body-content -->
54
  </div><!-- #post-body -->
admin/edit-inbound-form.php CHANGED
@@ -10,12 +10,6 @@ if ( ! empty( $post->id ) ) {
10
  $nonce_action = 'flamingo-add-inbound';
11
  }
12
 
13
- add_meta_box( 'inboundsubmitdiv', __( 'Save', 'flamingo' ),
14
- 'flamingo_inbound_submit_meta_box', 'flamingo-inbound', 'side', 'core' );
15
-
16
- add_meta_box( 'inboundfieldsdiv', __( 'Fields', 'flamingo' ),
17
- 'flamingo_inbound_fields_meta_box', 'flamingo-inbound', 'normal', 'core' );
18
-
19
  ?>
20
  <div class="wrap columns-2">
21
  <?php screen_icon(); ?>
@@ -34,7 +28,7 @@ wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
34
  <div id="poststuff" class="metabox-holder has-right-sidebar">
35
  <div id="side-info-column" class="inner-sidebar">
36
  <?php
37
- do_meta_boxes( 'flamingo-inbound', 'side', $post );
38
  ?>
39
  </div><!-- #side-info-column -->
40
 
@@ -65,8 +59,8 @@ do_meta_boxes( 'flamingo-inbound', 'side', $post );
65
  <br class="clear" />
66
 
67
  <?php
68
- do_meta_boxes( 'flamingo-inbound', 'normal', $post );
69
- do_meta_boxes( 'flamingo-inbound', 'advanced', $post );
70
  ?>
71
  </div><!-- #post-body-content -->
72
  </div><!-- #post-body -->
10
  $nonce_action = 'flamingo-add-inbound';
11
  }
12
 
 
 
 
 
 
 
13
  ?>
14
  <div class="wrap columns-2">
15
  <?php screen_icon(); ?>
28
  <div id="poststuff" class="metabox-holder has-right-sidebar">
29
  <div id="side-info-column" class="inner-sidebar">
30
  <?php
31
+ do_meta_boxes( null, 'side', $post );
32
  ?>
33
  </div><!-- #side-info-column -->
34
 
59
  <br class="clear" />
60
 
61
  <?php
62
+ do_meta_boxes( null, 'normal', $post );
63
+ do_meta_boxes( null, 'advanced', $post );
64
  ?>
65
  </div><!-- #post-body-content -->
66
  </div><!-- #post-body -->
admin/script.js CHANGED
@@ -1,7 +1,7 @@
1
  (function($) {
2
 
3
  $(function() {
4
- postboxes.add_postbox_toggles('flamingoEditContact');
5
  });
6
 
7
  })(jQuery);
1
  (function($) {
2
 
3
  $(function() {
4
+ postboxes.add_postbox_toggles(_flamingo.screenId);
5
  });
6
 
7
  })(jQuery);
admin/style.css CHANGED
@@ -6,7 +6,7 @@ ul.contact-history {
6
  margin: 0;
7
  }
8
 
9
- #poststuff #inboundsubmitdiv .inside, #poststuff #contactsubmitdiv .inside {
10
  margin: 0;
11
  padding: 0;
12
  }
6
  margin: 0;
7
  }
8
 
9
+ #poststuff #submitdiv .inside {
10
  margin: 0;
11
  padding: 0;
12
  }
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
10
  */
11
 
12
- define( 'FLAMINGO_VERSION', '1.0' );
13
 
14
  define( 'FLAMINGO_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
15
 
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
 
includes/capabilities.php CHANGED
@@ -12,7 +12,7 @@ function flamingo_map_meta_cap( $caps, $cap, $user_id, $args ) {
12
 
13
  $caps = array_diff( $caps, array_keys( $meta_caps ) );
14
 
15
- if ( array_key_exists( $cap, $meta_caps ) )
16
  $caps[] = $meta_caps[$cap];
17
 
18
  return $caps;
12
 
13
  $caps = array_diff( $caps, array_keys( $meta_caps ) );
14
 
15
+ if ( isset( $meta_caps[$cap] ) )
16
  $caps[] = $meta_caps[$cap];
17
 
18
  return $caps;
includes/class-contact.php CHANGED
@@ -18,13 +18,17 @@ class Flamingo_Contact {
18
  register_post_type( self::post_type, array(
19
  'labels' => array(
20
  'name' => __( 'Flamingo Contacts', 'flamingo' ),
21
- 'singular_name' => __( 'Flamingo Contact', 'flamingo' ) ) ) );
 
 
22
 
23
  register_taxonomy( self::contact_tag_taxonomy, self::post_type, array(
24
  'labels' => array(
25
  'name' => __( 'Flamingo Contact Tags', 'flamingo' ),
26
  'singular_name' => __( 'Flamingo Contact Tag', 'flamingo' ) ),
27
- 'public' => false ) );
 
 
28
  }
29
 
30
  public static function find( $args = '' ) {
@@ -108,9 +112,7 @@ class Flamingo_Contact {
108
  }
109
 
110
  public function __construct( $post = null ) {
111
- $post = get_post( $post );
112
-
113
- if ( $post ) {
114
  $this->id = $post->ID;
115
  $this->email = get_post_meta( $post->ID, '_email', true );
116
  $this->name = get_post_meta( $post->ID, '_name', true );
18
  register_post_type( self::post_type, array(
19
  'labels' => array(
20
  'name' => __( 'Flamingo Contacts', 'flamingo' ),
21
+ 'singular_name' => __( 'Flamingo Contact', 'flamingo' ) ),
22
+ 'rewrite' => false,
23
+ 'query_var' => false ) );
24
 
25
  register_taxonomy( self::contact_tag_taxonomy, self::post_type, array(
26
  'labels' => array(
27
  'name' => __( 'Flamingo Contact Tags', 'flamingo' ),
28
  'singular_name' => __( 'Flamingo Contact Tag', 'flamingo' ) ),
29
+ 'public' => false,
30
+ 'rewrite' => false,
31
+ 'query_var' => false ) );
32
  }
33
 
34
  public static function find( $args = '' ) {
112
  }
113
 
114
  public function __construct( $post = null ) {
115
+ if ( ! empty( $post ) && ( $post = get_post( $post ) ) ) {
 
 
116
  $this->id = $post->ID;
117
  $this->email = get_post_meta( $post->ID, '_email', true );
118
  $this->name = get_post_meta( $post->ID, '_name', true );
includes/class-inbound-message.php CHANGED
@@ -20,13 +20,17 @@ class Flamingo_Inbound_Message {
20
  register_post_type( self::post_type, array(
21
  'labels' => array(
22
  'name' => __( 'Flamingo Inbound Messages', 'flamingo' ),
23
- 'singular_name' => __( 'Flamingo Inbound Message', 'flamingo' ) ) ) );
 
 
24
 
25
  register_taxonomy( self::channel_taxonomy, self::post_type, array(
26
  'labels' => array(
27
  'name' => __( 'Flamingo Inbound Message Channels', 'flamingo' ),
28
  'singular_name' => __( 'Flamingo Inbound Message Channel', 'flamingo' ) ),
29
- 'public' => false ) );
 
 
30
  }
31
 
32
  public static function find( $args = '' ) {
@@ -99,9 +103,7 @@ class Flamingo_Inbound_Message {
99
  }
100
 
101
  public function __construct( $post = null ) {
102
- $post = get_post( $post );
103
-
104
- if ( $post ) {
105
  $this->id = $post->ID;
106
 
107
  $this->date = get_the_time( __( 'Y/m/d g:i:s A', 'flamingo' ), $this->id );
20
  register_post_type( self::post_type, array(
21
  'labels' => array(
22
  'name' => __( 'Flamingo Inbound Messages', 'flamingo' ),
23
+ 'singular_name' => __( 'Flamingo Inbound Message', 'flamingo' ) ),
24
+ 'rewrite' => false,
25
+ 'query_var' => false ) );
26
 
27
  register_taxonomy( self::channel_taxonomy, self::post_type, array(
28
  'labels' => array(
29
  'name' => __( 'Flamingo Inbound Message Channels', 'flamingo' ),
30
  'singular_name' => __( 'Flamingo Inbound Message Channel', 'flamingo' ) ),
31
+ 'public' => false,
32
+ 'rewrite' => false,
33
+ 'query_var' => false ) );
34
  }
35
 
36
  public static function find( $args = '' ) {
103
  }
104
 
105
  public function __construct( $post = null ) {
106
+ if ( ! empty( $post ) && ( $post = get_post( $post ) ) ) {
 
 
107
  $this->id = $post->ID;
108
 
109
  $this->date = get_the_time( __( 'Y/m/d g:i:s A', 'flamingo' ), $this->id );
languages/flamingo-nl_NL.mo ADDED
Binary file
languages/flamingo-nl_NL.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-06-13 12:44+0100\n"
7
+ "Last-Translator: Martijn <martijn@tensheep.nl>\n"
8
+ "Language-Team: \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: Dutch\n"
17
+ "X-Poedit-Country: NETHERLANDS\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 beheert de contactgegevens in WordPress."
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 "Flamingo adresboek"
29
+
30
+ #: flamingo/admin/admin.php:9
31
+ msgid "Flamingo"
32
+ msgstr "Flamingo"
33
+
34
+ #: flamingo/admin/admin.php:14
35
+ msgid "Address Book"
36
+ msgstr "Adresboek"
37
+
38
+ #: flamingo/admin/admin.php:20
39
+ #: flamingo/includes/class-inbound-message.php:22
40
+ msgid "Flamingo Inbound Messages"
41
+ msgstr "Flamingo inkomende berichten"
42
+
43
+ #: flamingo/admin/admin.php:20
44
+ #: flamingo/admin/admin.php:323
45
+ msgid "Inbound Messages"
46
+ msgstr "Inkomende berichten"
47
+
48
+ #: flamingo/admin/admin.php:64
49
+ msgid "Contact updated."
50
+ msgstr "Contact bijgewerkt."
51
+
52
+ #: flamingo/admin/admin.php:66
53
+ msgid "Messages trashed."
54
+ msgstr "Berichten verwijderd."
55
+
56
+ #: flamingo/admin/admin.php:68
57
+ msgid "Messages restored."
58
+ msgstr "Berichten terug gezet."
59
+
60
+ #: flamingo/admin/admin.php:70
61
+ msgid "Messages deleted."
62
+ msgstr "Berichten verwijderd."
63
+
64
+ #: flamingo/admin/admin.php:97
65
+ msgid "You are not allowed to edit this item."
66
+ msgstr "Je hebt geen rechten om dit item te bewerken."
67
+
68
+ #: flamingo/admin/admin.php:130
69
+ msgid "Contacts"
70
+ msgstr "Contacten"
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 "Zoekresultaten voor &#8220;%s&#8221;"
77
+
78
+ #: flamingo/admin/admin.php:167
79
+ msgid "Search Contacts"
80
+ msgstr "Zoek contacten"
81
+
82
+ #: flamingo/admin/admin.php:208
83
+ msgid "You are not allowed to move this item to the Trash."
84
+ msgstr "Je hebt geen rechten om dit item in de prullenbak te doen."
85
+
86
+ #: flamingo/admin/admin.php:211
87
+ msgid "Error in moving to Trash."
88
+ msgstr "Er is een fout opgetreden tijdens het verwijderen."
89
+
90
+ #: flamingo/admin/admin.php:238
91
+ msgid "You are not allowed to restore this item from the Trash."
92
+ msgstr "Je hebt geen rechten om dit item terug te zetten vanuit de prullenbak."
93
+
94
+ #: flamingo/admin/admin.php:241
95
+ msgid "Error in restoring from Trash."
96
+ msgstr "Er is iets fout gegaan bij het herstellen vanuit de prullenbak."
97
+
98
+ #: flamingo/admin/admin.php:275
99
+ msgid "You are not allowed to delete this item."
100
+ msgstr "Je hebt geen rechten om dit item te verwijderen."
101
+
102
+ #: flamingo/admin/admin.php:278
103
+ msgid "Error in deleting."
104
+ msgstr "Er is een fout opgetreden bij het verwijderen."
105
+
106
+ #: flamingo/admin/admin.php:299
107
+ msgid "Messages"
108
+ msgstr "Berichten"
109
+
110
+ #: flamingo/admin/admin.php:338
111
+ msgid "Search Messages"
112
+ msgstr "Zoek berichten"
113
+
114
+ #: flamingo/admin/edit-contact-form.php:13
115
+ #: flamingo/admin/edit-inbound-form.php:13
116
+ msgid "Save"
117
+ msgstr "Bewaar"
118
+
119
+ #: flamingo/admin/edit-contact-form.php:16
120
+ #: flamingo/admin/includes/class-contacts-list-table.php:13
121
+ msgid "Tags"
122
+ msgstr "Tags"
123
+
124
+ #: flamingo/admin/edit-contact-form.php:19
125
+ #: flamingo/admin/includes/class-contacts-list-table.php:12
126
+ msgid "Name"
127
+ msgstr "Naam"
128
+
129
+ #: flamingo/admin/edit-contact-form.php:26
130
+ msgid "Edit Contact"
131
+ msgstr "Bewerk contact"
132
+
133
+ #: flamingo/admin/edit-contact-form.php:52
134
+ msgid "Enter email here"
135
+ msgstr "Voer hier het e-mailadres in"
136
+
137
+ #: flamingo/admin/edit-inbound-form.php:16
138
+ msgid "Fields"
139
+ msgstr "Velden"
140
+
141
+ #: flamingo/admin/edit-inbound-form.php:23
142
+ msgid "Inbound Message"
143
+ msgstr "Inkomende berichten"
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 "Datum"
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 "Onderwerp"
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 "Van"
159
+
160
+ #: flamingo/admin/includes/class-contacts-list-table.php:11
161
+ msgid "Email"
162
+ msgstr "E-mailadres"
163
+
164
+ #: flamingo/admin/includes/class-contacts-list-table.php:14
165
+ msgid "History"
166
+ msgstr "Geschiedenis"
167
+
168
+ #: flamingo/admin/includes/class-contacts-list-table.php:15
169
+ msgid "Last Contact"
170
+ msgstr "Laatste contact"
171
+
172
+ #: flamingo/admin/includes/class-contacts-list-table.php:82
173
+ msgid "Send Mail"
174
+ msgstr "Verzend bericht"
175
+
176
+ #: flamingo/admin/includes/class-contacts-list-table.php:106
177
+ msgid "View all tags"
178
+ msgstr "Bekijk alle tags"
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 "Filter"
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 "Bewerk"
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 "Bewerk &#8220;%s&#8221;"
195
+
196
+ #: flamingo/admin/includes/class-contacts-list-table.php:152
197
+ msgid "No Tags"
198
+ msgstr "Geen tags"
199
+
200
+ #: flamingo/admin/includes/class-contacts-list-table.php:181
201
+ msgid "User"
202
+ msgstr "Gebruiker"
203
+
204
+ #: flamingo/admin/includes/class-contacts-list-table.php:194
205
+ #, php-format
206
+ msgid "Comment (%d)"
207
+ msgstr "Reactie (%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 "j F Y om g:i"
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 geleden"
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 "j F Y"
225
+
226
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:13
227
+ msgid "Channel"
228
+ msgstr "Kanaal"
229
+
230
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:131
231
+ msgid "Restore"
232
+ msgstr "Herstel"
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 "Verwijder definitief"
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 "Verplaats naar prullenbak"
243
+
244
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:167
245
+ msgid "View all channels"
246
+ msgstr "Bekijk alle kanalen"
247
+
248
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:178
249
+ msgid "Empty Trash"
250
+ msgstr "Leeg prullenbak"
251
+
252
+ #: flamingo/admin/includes/meta-boxes.php:10
253
+ msgid "Update Contact"
254
+ msgstr "Werk contact bij"
255
+
256
+ #: flamingo/admin/includes/meta-boxes.php:12
257
+ msgid "Add Contact"
258
+ msgstr "Voeg contact toe"
259
+
260
+ #: flamingo/admin/includes/meta-boxes.php:56
261
+ msgid "Separate tags with commas"
262
+ msgstr "Scheid tags door middel van een comma"
263
+
264
+ #: flamingo/admin/includes/meta-boxes.php:59
265
+ msgid "Choose from the most used tags"
266
+ msgstr "Kies vanuit de meest gebruikte tags"
267
+
268
+ #: flamingo/admin/includes/meta-boxes.php:108
269
+ msgid "Update Message"
270
+ msgstr "Werk bericht bij"
271
+
272
+ #: flamingo/admin/includes/meta-boxes.php:110
273
+ msgid "Add Message"
274
+ msgstr "Voeg bericht toe"
275
+
276
+ #: flamingo/admin/includes/meta-boxes.php:128
277
+ msgid "Full name"
278
+ msgstr "Volledige naam"
279
+
280
+ #: flamingo/admin/includes/meta-boxes.php:133
281
+ msgid "First name"
282
+ msgstr "Voornaam"
283
+
284
+ #: flamingo/admin/includes/meta-boxes.php:138
285
+ msgid "Last name"
286
+ msgstr "Achternaam"
287
+
288
+ #: flamingo/includes/class-contact.php:20
289
+ msgid "Flamingo Contacts"
290
+ msgstr "Flamingo contacten"
291
+
292
+ #: flamingo/includes/class-contact.php:21
293
+ msgid "Flamingo Contact"
294
+ msgstr "Flamingo contact"
295
+
296
+ #: flamingo/includes/class-contact.php:25
297
+ msgid "Flamingo Contact Tags"
298
+ msgstr "Flamingo contact tags"
299
+
300
+ #: flamingo/includes/class-contact.php:26
301
+ msgid "Flamingo Contact Tag"
302
+ msgstr "Flamingo contact tag"
303
+
304
+ #: flamingo/includes/class-inbound-message.php:23
305
+ msgid "Flamingo Inbound Message"
306
+ msgstr "Flamingo inkomende berichten"
307
+
308
+ #: flamingo/includes/class-inbound-message.php:27
309
+ msgid "Flamingo Inbound Message Channels"
310
+ msgstr "Flamingo inkomend bericht kanalen"
311
+
312
+ #: flamingo/includes/class-inbound-message.php:28
313
+ msgid "Flamingo Inbound Message Channel"
314
+ msgstr "Flamingo inkomend bericht kanaal"
315
+
316
+ #: flamingo/includes/class-inbound-message.php:125
317
+ msgid "(No Title)"
318
+ msgstr "(Geen titel)"
319
+
languages/flamingo-pt_BR.mo ADDED
Binary file
languages/flamingo-pt_BR.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-06-15 04:01+0900\n"
7
+ "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
+ "Language-Team: Ilton Alberto Junior.\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: Portuguese\n"
17
+ "X-Poedit-Country: BRAZIL\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 gerencia sua lista de contatos no WordPress"
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 "Livro de Endereços Flamingo"
29
+
30
+ #: flamingo/admin/admin.php:9
31
+ msgid "Flamingo"
32
+ msgstr "Flamingo"
33
+
34
+ #: flamingo/admin/admin.php:14
35
+ msgid "Address Book"
36
+ msgstr "Livro de Endereços"
37
+
38
+ #: flamingo/admin/admin.php:20
39
+ #: flamingo/includes/class-inbound-message.php:22
40
+ msgid "Flamingo Inbound Messages"
41
+ msgstr "Mensagens de Entrada Flamingo"
42
+
43
+ #: flamingo/admin/admin.php:20
44
+ #: flamingo/admin/admin.php:323
45
+ msgid "Inbound Messages"
46
+ msgstr "Mensagens de Entrada"
47
+
48
+ #: flamingo/admin/admin.php:64
49
+ msgid "Contact updated."
50
+ msgstr "Contato atualizado."
51
+
52
+ #: flamingo/admin/admin.php:66
53
+ msgid "Messages trashed."
54
+ msgstr "Mensagens na lixeira."
55
+
56
+ #: flamingo/admin/admin.php:68
57
+ msgid "Messages restored."
58
+ msgstr "Mensagens restauradas."
59
+
60
+ #: flamingo/admin/admin.php:70
61
+ msgid "Messages deleted."
62
+ msgstr "Mensagens deletadas."
63
+
64
+ #: flamingo/admin/admin.php:97
65
+ msgid "You are not allowed to edit this item."
66
+ msgstr "Você não tem permissão para editar este item."
67
+
68
+ #: flamingo/admin/admin.php:130
69
+ msgid "Contacts"
70
+ msgstr "Contatos"
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 "Resultados de busca para &#8220;%s&#8221;"
77
+
78
+ #: flamingo/admin/admin.php:167
79
+ msgid "Search Contacts"
80
+ msgstr "Buscar Contatos"
81
+
82
+ #: flamingo/admin/admin.php:208
83
+ msgid "You are not allowed to move this item to the Trash."
84
+ msgstr "Você não tem permissão para mover este item para a lixeira."
85
+
86
+ #: flamingo/admin/admin.php:211
87
+ msgid "Error in moving to Trash."
88
+ msgstr "Erro ao mover para a lixeira."
89
+
90
+ #: flamingo/admin/admin.php:238
91
+ msgid "You are not allowed to restore this item from the Trash."
92
+ msgstr "Você não tem permissão para restaurar este item da lixeira."
93
+
94
+ #: flamingo/admin/admin.php:241
95
+ msgid "Error in restoring from Trash."
96
+ msgstr "Erro ao restaurar da lixeira."
97
+
98
+ #: flamingo/admin/admin.php:275
99
+ msgid "You are not allowed to delete this item."
100
+ msgstr "Você não tem permissão para deletar este item."
101
+
102
+ #: flamingo/admin/admin.php:278
103
+ msgid "Error in deleting."
104
+ msgstr "Erro ao deletar."
105
+
106
+ #: flamingo/admin/admin.php:299
107
+ msgid "Messages"
108
+ msgstr "Mensagens"
109
+
110
+ #: flamingo/admin/admin.php:338
111
+ msgid "Search Messages"
112
+ msgstr "Buscar Mensagens"
113
+
114
+ #: flamingo/admin/edit-contact-form.php:13
115
+ #: flamingo/admin/edit-inbound-form.php:13
116
+ msgid "Save"
117
+ msgstr "Salvar"
118
+
119
+ #: flamingo/admin/edit-contact-form.php:16
120
+ #: flamingo/admin/includes/class-contacts-list-table.php:13
121
+ msgid "Tags"
122
+ msgstr "Tags"
123
+
124
+ #: flamingo/admin/edit-contact-form.php:19
125
+ #: flamingo/admin/includes/class-contacts-list-table.php:12
126
+ msgid "Name"
127
+ msgstr "Nome"
128
+
129
+ #: flamingo/admin/edit-contact-form.php:26
130
+ msgid "Edit Contact"
131
+ msgstr "Editar Contato"
132
+
133
+ #: flamingo/admin/edit-contact-form.php:52
134
+ msgid "Enter email here"
135
+ msgstr "Digite o email aqui"
136
+
137
+ #: flamingo/admin/edit-inbound-form.php:16
138
+ msgid "Fields"
139
+ msgstr "Campos"
140
+
141
+ #: flamingo/admin/edit-inbound-form.php:23
142
+ msgid "Inbound Message"
143
+ msgstr "Mensagens de Entrada"
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 "Data"
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 "Assunto"
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 "De"
159
+
160
+ #: flamingo/admin/includes/class-contacts-list-table.php:11
161
+ msgid "Email"
162
+ msgstr "Email"
163
+
164
+ #: flamingo/admin/includes/class-contacts-list-table.php:14
165
+ msgid "History"
166
+ msgstr "Histórico"
167
+
168
+ #: flamingo/admin/includes/class-contacts-list-table.php:15
169
+ msgid "Last Contact"
170
+ msgstr "Último Contato"
171
+
172
+ #: flamingo/admin/includes/class-contacts-list-table.php:82
173
+ msgid "Send Mail"
174
+ msgstr "Enviar Email"
175
+
176
+ #: flamingo/admin/includes/class-contacts-list-table.php:106
177
+ msgid "View all tags"
178
+ msgstr "Ver todas as tags"
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 "Filtro"
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 "Editar"
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 "Editar &#8220;%s&#8221;"
195
+
196
+ #: flamingo/admin/includes/class-contacts-list-table.php:152
197
+ msgid "No Tags"
198
+ msgstr "Sem Tags"
199
+
200
+ #: flamingo/admin/includes/class-contacts-list-table.php:181
201
+ msgid "User"
202
+ msgstr "Usuário"
203
+
204
+ #: flamingo/admin/includes/class-contacts-list-table.php:194
205
+ #, php-format
206
+ msgid "Comment (%d)"
207
+ msgstr "Comentários (%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/m/Y g:i:s A"
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 atrá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 "d/m/Y"
225
+
226
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:13
227
+ msgid "Channel"
228
+ msgstr "Canal"
229
+
230
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:131
231
+ msgid "Restore"
232
+ msgstr "Restaurar"
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 "Deletar Permanentemente"
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 "Mover para a lixeira"
243
+
244
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:167
245
+ msgid "View all channels"
246
+ msgstr "Ver todos os canais"
247
+
248
+ #: flamingo/admin/includes/class-inbound-messages-list-table.php:178
249
+ msgid "Empty Trash"
250
+ msgstr "Lixeira vazia"
251
+
252
+ #: flamingo/admin/includes/meta-boxes.php:10
253
+ msgid "Update Contact"
254
+ msgstr "Atualizar contato"
255
+
256
+ #: flamingo/admin/includes/meta-boxes.php:12
257
+ msgid "Add Contact"
258
+ msgstr "Adicionar Contato"
259
+
260
+ #: flamingo/admin/includes/meta-boxes.php:56
261
+ msgid "Separate tags with commas"
262
+ msgstr "Separar tags com vírgulas"
263
+
264
+ #: flamingo/admin/includes/meta-boxes.php:59
265
+ msgid "Choose from the most used tags"
266
+ msgstr "Escolha entre as tags mais usadas"
267
+
268
+ #: flamingo/admin/includes/meta-boxes.php:108
269
+ msgid "Update Message"
270
+ msgstr "Atualizar Mensagem"
271
+
272
+ #: flamingo/admin/includes/meta-boxes.php:110
273
+ msgid "Add Message"
274
+ msgstr "Adicionar Mensagem"
275
+
276
+ #: flamingo/admin/includes/meta-boxes.php:128
277
+ msgid "Full name"
278
+ msgstr "Nome Completo"
279
+
280
+ #: flamingo/admin/includes/meta-boxes.php:133
281
+ msgid "First name"
282
+ msgstr "Primeiro nome"
283
+
284
+ #: flamingo/admin/includes/meta-boxes.php:138
285
+ msgid "Last name"
286
+ msgstr "Último nome"
287
+
288
+ #: flamingo/includes/class-contact.php:20
289
+ msgid "Flamingo Contacts"
290
+ msgstr "Contatos Flamingo"
291
+
292
+ #: flamingo/includes/class-contact.php:21
293
+ msgid "Flamingo Contact"
294
+ msgstr "Contato Flamingo"
295
+
296
+ #: flamingo/includes/class-contact.php:25
297
+ msgid "Flamingo Contact Tags"
298
+ msgstr "Tags de Contato Flamingo"
299
+
300
+ #: flamingo/includes/class-contact.php:26
301
+ msgid "Flamingo Contact Tag"
302
+ msgstr "Tag de Contato Flamingo"
303
+
304
+ #: flamingo/includes/class-inbound-message.php:23
305
+ msgid "Flamingo Inbound Message"
306
+ msgstr "Mensagem de Entrada Flamingo"
307
+
308
+ #: flamingo/includes/class-inbound-message.php:27
309
+ msgid "Flamingo Inbound Message Channels"
310
+ msgstr "Canais de Mensagem de Entrada Flamingo"
311
+
312
+ #: flamingo/includes/class-inbound-message.php:28
313
+ msgid "Flamingo Inbound Message Channel"
314
+ msgstr "Canal de Mensagem de Entrada Flamingo"
315
+
316
+ #: flamingo/includes/class-inbound-message.php:125
317
+ msgid "(No Title)"
318
+ msgstr "(Sem Título)"
319
+
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: takayukister, megumithemes
3
  Tags: bird, contact, mail, crm
4
  Requires at least: 3.3
5
- Tested up to: 3.3.2
6
- Stable tag: 1.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -15,6 +15,8 @@ Flamingo is a WordPress plugin created to be a total CRM package. With this vers
15
 
16
  = Translators =
17
 
 
 
18
  * Japanese (ja) - [Takayuki Miyoshi](http://ideasilo.wordpress.com)
19
 
20
  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).
@@ -34,4 +36,11 @@ If you have created your own language pack, or have an update of an existing one
34
 
35
  == Changelog ==
36
 
 
 
 
 
 
 
 
37
  == Upgrade Notice ==
2
  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
 
15
 
16
  = Translators =
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).
36
 
37
  == Changelog ==
38
 
39
+ = 1.0.1 =
40
+
41
+ * Fixed: Updating irrelevant posts when adding inbound messages.
42
+ * Fixed: Issues relating to post boxes and admin screen options.
43
+ * Fixed: Generating unnecessary rewrite rules.
44
+ * Translations for Dutch and Brazilian Portuguese have been created.
45
+
46
  == Upgrade Notice ==