diff --git a/classes/class-wp-stream-admin.php b/classes/class-wp-stream-admin.php index ee20f11e3..f3155cfdf 100644 --- a/classes/class-wp-stream-admin.php +++ b/classes/class-wp-stream-admin.php @@ -251,7 +251,7 @@ public static function register_menu() { self::$screen_id['settings'] = add_submenu_page( self::RECORDS_PAGE_SLUG, __( 'Stream Settings', 'stream' ), - __( 'Settings', 'default' ), + __( 'Settings', 'stream' ), self::SETTINGS_CAP, self::SETTINGS_PAGE_SLUG, array( __CLASS__, 'render_settings_page' ) @@ -260,7 +260,7 @@ public static function register_menu() { self::$screen_id['account'] = add_submenu_page( self::RECORDS_PAGE_SLUG, __( 'Stream Account', 'stream' ), - __( 'Account', 'default' ), + __( 'Account', 'stream' ), self::SETTINGS_CAP, self::ACCOUNT_PAGE_SLUG, array( __CLASS__, 'render_account_page' ) @@ -537,7 +537,7 @@ public static function plugin_action_links( $links, $file ) { if ( plugin_basename( WP_STREAM_DIR . 'stream.php' ) === $file ) { $admin_page_url = add_query_arg( array( 'page' => self::SETTINGS_PAGE_SLUG ), admin_url( self::ADMIN_PARENT_PAGE ) ); - $links[] = sprintf( '%s', esc_url( $admin_page_url ), esc_html__( 'Settings', 'default' ) ); + $links[] = sprintf( '%s', esc_url( $admin_page_url ), esc_html__( 'Settings', 'stream' ) ); } return $links; diff --git a/classes/class-wp-stream-dashboard-widget.php b/classes/class-wp-stream-dashboard-widget.php index cefb5bb5a..0a56861d2 100644 --- a/classes/class-wp-stream-dashboard-widget.php +++ b/classes/class-wp-stream-dashboard-widget.php @@ -98,7 +98,7 @@ public static function pagination( $args = array() ) { 'view-all', esc_attr__( 'View all records', 'stream' ), esc_url( $records_link ), - esc_html__( 'View All', 'default' ) + esc_html__( 'View All', 'stream' ) ); $page_links = array(); @@ -116,7 +116,7 @@ public static function pagination( $args = array() ) { $page_links[] = sprintf( '%s', 'first-page' . $disable_first, - esc_attr__( 'Go to the first page', 'default' ), + esc_attr__( 'Go to the first page', 'stream' ), esc_url( remove_query_arg( 'paged', $records_link ) ), '«' ); @@ -124,7 +124,7 @@ public static function pagination( $args = array() ) { $page_links[] = sprintf( '%s', 'prev-page' . $disable_first, - esc_attr__( 'Go to the previous page', 'default' ), + esc_attr__( 'Go to the previous page', 'stream' ), esc_url( add_query_arg( 'paged', max( 1, $current - 1 ), $records_link ) ), max( 1, $current - 1 ), '‹' @@ -136,7 +136,7 @@ public static function pagination( $args = array() ) { $page_links[] = sprintf( '%s', 'next-page' . $disable_last, - esc_attr__( 'Go to the next page', 'default' ), + esc_attr__( 'Go to the next page', 'stream' ), esc_url( add_query_arg( 'paged', min( $total_pages, $current + 1 ), $records_link ) ), min( $total_pages, $current + 1 ), '›' @@ -145,7 +145,7 @@ public static function pagination( $args = array() ) { $page_links[] = sprintf( '%s', 'last-page' . $disable_last, - esc_attr__( 'Go to the last page', 'default' ), + esc_attr__( 'Go to the last page', 'stream' ), esc_url( add_query_arg( 'paged', $total_pages, $records_link ) ), $total_pages, '»' diff --git a/classes/class-wp-stream-date-interval.php b/classes/class-wp-stream-date-interval.php index e0cbc1d23..45d0d5165 100644 --- a/classes/class-wp-stream-date-interval.php +++ b/classes/class-wp-stream-date-interval.php @@ -45,7 +45,7 @@ public function get_predefined_intervals() { 'wp_stream_predefined_date_intervals', array( 'today' => array( - 'label' => esc_html__( 'Today', 'default' ), + 'label' => esc_html__( 'Today', 'stream' ), 'start' => Carbon::today( $timezone )->startOfDay(), 'end' => Carbon::today( $timezone )->endOfDay(), ), diff --git a/classes/class-wp-stream-list-table.php b/classes/class-wp-stream-list-table.php index b0d13bb6e..7a2052f03 100644 --- a/classes/class-wp-stream-list-table.php +++ b/classes/class-wp-stream-list-table.php @@ -65,9 +65,9 @@ function get_columns(){ return apply_filters( 'wp_stream_list_table_columns', array( - 'date' => __( 'Date', 'default' ), - 'summary' => __( 'Summary', 'default' ), - 'author' => __( 'Author', 'default' ), + 'date' => __( 'Date', 'stream' ), + 'summary' => __( 'Summary', 'stream' ), + 'author' => __( 'Author', 'stream' ), 'context' => __( 'Context', 'stream' ), 'action' => __( 'Action', 'stream' ), 'ip' => __( 'IP Address', 'stream' ), @@ -603,7 +603,7 @@ function filters_form() { } } - $filters_string .= sprintf( '', __( 'Filter', 'default' ) ); + $filters_string .= sprintf( '', __( 'Filter', 'stream' ) ); $url = self_admin_url( WP_Stream_Admin::ADMIN_PARENT_PAGE ); @@ -718,7 +718,7 @@ function filter_date( $items ) { +
- +
diff --git a/classes/class-wp-stream-settings.php b/classes/class-wp-stream-settings.php index 9b1193ec1..4172ce6ee 100644 --- a/classes/class-wp-stream-settings.php +++ b/classes/class-wp-stream-settings.php @@ -205,7 +205,7 @@ public static function get_fields() { if ( empty( self::$fields ) ) { $fields = array( 'general' => array( - 'title' => esc_html__( 'General', 'default' ), + 'title' => esc_html__( 'General', 'stream' ), 'fields' => array( array( 'name' => 'role_access', diff --git a/connectors/class-wp-stream-connector-acf.php b/connectors/class-wp-stream-connector-acf.php index 814d5bdcc..1d5f274ff 100644 --- a/connectors/class-wp-stream-connector-acf.php +++ b/connectors/class-wp-stream-connector-acf.php @@ -68,7 +68,7 @@ public static function is_dependency_satisfied() { * @return string Translated connector label */ public static function get_label() { - return __( 'ACF', 'acf' ); + return _x( 'ACF', 'acf', 'stream' ); } /** @@ -78,10 +78,10 @@ public static function get_label() { */ public static function get_action_labels() { return array( - 'created' => __( 'Created', 'stream' ), - 'updated' => __( 'Updated', 'stream' ), - 'added' => __( 'Added', 'stream' ), - 'deleted' => __( 'Deleted', 'stream' ), + 'created' => __( 'Created', 'acf', 'stream' ), + 'updated' => __( 'Updated', 'acf', 'stream' ), + 'added' => __( 'Added', 'acf', 'stream' ), + 'deleted' => __( 'Deleted', 'acf', 'stream' ), ); } @@ -249,9 +249,9 @@ public static function check_meta( $type, $action, $meta_id, $object_id, $meta_k } $options = array( - 'acf_after_title' => __( 'High (after title)', 'acf' ), - 'normal' => __( 'Normal (after content)', 'acf' ), - 'side' => __( 'Side', 'acf' ), + 'acf_after_title' => _x( 'High (after title)', 'acf', 'stream' ), + 'normal' => _x( 'Normal (after content)', 'acf', 'stream' ), + 'side' => _x( 'Side', 'acf', 'stream' ), ); self::log( @@ -274,8 +274,8 @@ public static function check_meta( $type, $action, $meta_id, $object_id, $meta_k } $options = array( - 'no_box' => __( 'Seamless (no metabox)', 'acf' ), - 'default' => __( 'Standard (WP metabox)', 'acf' ), + 'no_box' => _x( 'Seamless (no metabox)', 'acf', 'stream' ), + 'default' => _x( 'Standard (WP metabox)', 'acf', 'stream' ), ); self::log( @@ -298,20 +298,20 @@ public static function check_meta( $type, $action, $meta_id, $object_id, $meta_k } $options = array( - 'permalink' => __( 'Permalink', 'acf' ), - 'the_content' => __( 'Content Editor', 'acf' ), - 'excerpt' => __( 'Excerpt', 'default' ), - 'custom_fields' => __( 'Custom Fields', 'acf' ), - 'discussion' => __( 'Discussion', 'acf' ), - 'comments' => __( 'Comments', 'default' ), - 'revisions' => __( 'Revisions', 'default' ), - 'slug' => __( 'Slug', 'acf' ), - 'author' => __( 'Author', 'default' ), - 'format' => __( 'Format', 'default' ), - 'featured_image' => __( 'Featured Image', 'acf' ), - 'categories' => __( 'Categories', 'default' ), - 'tags' => __( 'Tags', 'default' ), - 'send-trackbacks' => __( 'Send Trackbacks', 'acf' ), + 'permalink' => _x( 'Permalink', 'acf', 'stream' ), + 'the_content' => _x( 'Content Editor', 'acf', 'stream' ), + 'excerpt' => _x( 'Excerpt', 'acf', 'stream' ), + 'custom_fields' => _x( 'Custom Fields', 'acf', 'stream' ), + 'discussion' => _x( 'Discussion', 'acf', 'stream' ), + 'comments' => _x( 'Comments', 'acf', 'stream' ), + 'revisions' => _x( 'Revisions', 'acf', 'stream' ), + 'slug' => _x( 'Slug', 'acf', 'stream' ), + 'author' => _x( 'Author', 'acf', 'stream' ), + 'format' => _x( 'Format', 'acf', 'stream' ), + 'featured_image' => _x( 'Featured Image', 'acf', 'stream' ), + 'categories' => _x( 'Categories', 'acf', 'stream' ), + 'tags' => _x( 'Tags', 'acf', 'stream' ), + 'send-trackbacks' => _x( 'Send Trackbacks', 'acf', 'stream' ), ); if ( count( $options ) === count( $meta_value ) ) { @@ -380,7 +380,7 @@ public static function check_meta_values( $type, $action, $meta_id, $object_id, } elseif ( 'user' === $type ) { $user = new WP_User( $object_id ); $title = $user->get( 'display_name' ); - $type_name = __( 'user', 'default' ); + $type_name = __( 'user', 'stream' ); } elseif ( 'taxonomy' === $type ) { $term = get_term( $term_id, $taxonomy ); $title = $term->name; diff --git a/connectors/class-wp-stream-connector-bbpress.php b/connectors/class-wp-stream-connector-bbpress.php index 5c47b17b7..5af468e29 100644 --- a/connectors/class-wp-stream-connector-bbpress.php +++ b/connectors/class-wp-stream-connector-bbpress.php @@ -75,7 +75,7 @@ public static function is_dependency_satisfied() { * @return string Translated connector label */ public static function get_label() { - return __( 'bbPress', 'bbpress' ); + return _x( 'bbPress', 'bbpress', 'stream' ); } /** @@ -85,22 +85,22 @@ public static function get_label() { */ public static function get_action_labels() { return array( - 'created' => __( 'Created', 'stream' ), - 'updated' => __( 'Updated', 'stream' ), - 'activated' => __( 'Activated', 'stream' ), - 'deactivated' => __( 'Deactivated', 'stream' ), - 'deleted' => __( 'Deleted', 'stream' ), - 'trashed' => __( 'Trashed', 'stream' ), - 'untrashed' => __( 'Restored', 'stream' ), - 'generated' => __( 'Generated', 'stream' ), - 'imported' => __( 'Imported', 'stream' ), - 'exported' => __( 'Exported', 'stream' ), - 'closed' => __( 'Closed', 'stream' ), - 'opened' => __( 'Opened', 'stream' ), - 'sticked' => __( 'Sticked', 'stream' ), - 'unsticked' => __( 'Unsticked', 'stream' ), - 'spammed' => __( 'Marked as spam', 'stream' ), - 'unspammed' => __( 'Unmarked as spam', 'stream' ), + 'created' => _x( 'Created', 'bbpress', 'stream' ), + 'updated' => _x( 'Updated', 'bbpress', 'stream' ), + 'activated' => _x( 'Activated', 'bbpress', 'stream' ), + 'deactivated' => _x( 'Deactivated', 'bbpress', 'stream' ), + 'deleted' => _x( 'Deleted', 'bbpress', 'stream' ), + 'trashed' => _x( 'Trashed', 'bbpress', 'stream' ), + 'untrashed' => _x( 'Restored', 'bbpress', 'stream' ), + 'generated' => _x( 'Generated', 'bbpress', 'stream' ), + 'imported' => _x( 'Imported', 'bbpress', 'stream' ), + 'exported' => _x( 'Exported', 'bbpress', 'stream' ), + 'closed' => _x( 'Closed', 'bbpress', 'stream' ), + 'opened' => _x( 'Opened', 'bbpress', 'stream' ), + 'sticked' => _x( 'Sticked', 'bbpress', 'stream' ), + 'unsticked' => _x( 'Unsticked', 'bbpress', 'stream' ), + 'spammed' => _x( 'Marked as spam', 'bbpress', 'stream' ), + 'unspammed' => _x( 'Unmarked as spam', 'bbpress', 'stream' ), ); } @@ -111,7 +111,7 @@ public static function get_action_labels() { */ public static function get_context_labels() { return array( - 'settings' => __( 'Settings', 'stream' ), + 'settings' => _x( 'Settings', 'bbpress', 'stream' ), ); } @@ -149,7 +149,7 @@ public static function log_override( array $data ) { $settings = bbp_admin_get_settings_fields(); /* fix for missing title for this single field */ - $settings['bbp_settings_features']['_bbp_allow_threaded_replies']['title'] = __( 'Reply Threading', 'bbpress' ); + $settings['bbp_settings_features']['_bbp_allow_threaded_replies']['title'] = __( 'Reply Threading', 'stream' ); $option = $data['args']['option']; foreach ( $settings as $section => $fields ) { diff --git a/connectors/class-wp-stream-connector-buddypress.php b/connectors/class-wp-stream-connector-buddypress.php index 598cb95b0..98876cafe 100644 --- a/connectors/class-wp-stream-connector-buddypress.php +++ b/connectors/class-wp-stream-connector-buddypress.php @@ -110,7 +110,7 @@ public static function is_dependency_satisfied() { * @return string Translated connector label */ public static function get_label() { - return __( 'BuddyPress', 'buddypress' ); + return _x( 'BuddyPress', 'buddypress', 'stream' ); } /** @@ -120,15 +120,15 @@ public static function get_label() { */ public static function get_action_labels() { return array( - 'created' => __( 'Created', 'stream' ), - 'updated' => __( 'Updated', 'stream' ), - 'activated' => __( 'Activated', 'stream' ), - 'deactivated' => __( 'Deactivated', 'stream' ), - 'deleted' => __( 'Deleted', 'stream' ), - 'spammed' => __( 'Marked as spam', 'stream' ), - 'unspammed' => __( 'Unmarked as spam', 'stream' ), - 'promoted' => __( 'Promoted', 'stream' ), - 'demoted' => __( 'Demoted', 'stream' ), + 'created' => _x( 'Created', 'buddypress', 'stream' ), + 'updated' => _x( 'Updated', 'buddypress', 'stream' ), + 'activated' => _x( 'Activated', 'buddypress', 'stream' ), + 'deactivated' => _x( 'Deactivated', 'buddypress', 'stream' ), + 'deleted' => _x( 'Deleted', 'buddypress', 'stream' ), + 'spammed' => _x( 'Marked as spam', 'buddypress', 'stream' ), + 'unspammed' => _x( 'Unmarked as spam', 'buddypress', 'stream' ), + 'promoted' => _x( 'Promoted', 'buddypress', 'stream' ), + 'demoted' => _x( 'Demoted', 'buddypress', 'stream' ), ); } @@ -139,10 +139,10 @@ public static function get_action_labels() { */ public static function get_context_labels() { return array( - 'components' => __( 'Components', 'stream' ), - 'groups' => __( 'Groups', 'stream' ), - 'activity' => __( 'Activity', 'stream' ), - 'profile_fields' => __( 'Profile fields', 'stream' ), + 'components' => _x( 'Components', 'buddypress', 'stream' ), + 'groups' => _x( 'Groups', 'buddypress', 'stream' ), + 'activity' => _x( 'Activity', 'buddypress', 'stream' ), + 'profile_fields' => _x( 'Profile fields', 'buddypress', 'stream' ), ); } @@ -281,43 +281,43 @@ public static function register() { self::$options, array( 'hide-loggedout-adminbar' => array( - 'label' => __( 'Toolbar', 'buddypress' ), + 'label' => _x( 'Toolbar', 'buddypress', 'stream' ), 'page' => 'bp-settings', ), '_bp_force_buddybar' => array( - 'label' => __( 'Toolbar', 'buddypress' ), + 'label' => _x( 'Toolbar', 'buddypress', 'stream' ), 'page' => 'bp-settings', ), 'bp-disable-account-deletion' => array( - 'label' => __( 'Account Deletion', 'buddypress' ), + 'label' => _x( 'Account Deletion', 'buddypress', 'stream' ), 'page' => 'bp-settings', ), 'bp-disable-profile-sync' => array( - 'label' => __( 'Profile Syncing', 'buddypress' ), + 'label' => _x( 'Profile Syncing', 'buddypress', 'stream' ), 'page' => 'bp-settings', ), 'bp_restrict_group_creation' => array( - 'label' => __( 'Group Creation', 'buddypress' ), + 'label' => _x( 'Group Creation', 'buddypress', 'stream' ), 'page' => 'bp-settings', ), 'bb-config-location' => array( - 'label' => __( 'bbPress Configuration', 'buddypress' ), + 'label' => _x( 'bbPress Configuration', 'buddypress', 'stream' ), 'page' => 'bp-settings', ), 'bp-disable-blogforum-comments' => array( - 'label' => __( 'Blog & Forum Comments', 'buddypress' ), + 'label' => _x( 'Blog & Forum Comments', 'buddypress', 'stream' ), 'page' => 'bp-settings', ), '_bp_enable_heartbeat_refresh' => array( - 'label' => __( 'Activity auto-refresh', 'buddypress' ), + 'label' => _x( 'Activity auto-refresh', 'buddypress', 'stream' ), 'page' => 'bp-settings', ), '_bp_enable_akismet' => array( - 'label' => __( 'Akismet', 'buddypress' ), + 'label' => _x( 'Akismet', 'buddypress', 'stream' ), 'page' => 'bp-settings', ), 'bp-disable-avatar-uploads' => array( - 'label' => __( 'Avatar Uploads', 'buddypress' ), + 'label' => _x( 'Avatar Uploads', 'buddypress', 'stream' ), 'page' => 'bp-settings', ), ) @@ -429,8 +429,8 @@ public static function check_bp_pages( $old_value, $new_value ) { $pages = array_merge( self::bp_get_directory_pages(), array( - 'register' => __( 'Register', 'buddypress' ), - 'activate' => __( 'Activate', 'buddypress' ), + 'register' => _x( 'Register', 'buddypress', 'stream' ), + 'activate' => _x( 'Activate', 'buddypress', 'stream' ), ) ); @@ -662,8 +662,8 @@ public static function callback_groups_promote_member( $group_id, $user_id, $sta $group = groups_get_group( array( 'group_id' => $group_id ) ); $user = new WP_User( $user_id ); $roles = array( - 'admin' => __( 'Administrator', 'buddypress' ), - 'mod' => __( 'Moderator', 'buddypress' ), + 'admin' => _x( 'Administrator', 'buddypress', 'stream' ), + 'mod' => _x( 'Moderator', 'buddypress', 'stream' ), ); $message = sprintf( __( 'Promoted "%s" to "%s" in "%s"', 'stream' ), @@ -679,7 +679,7 @@ public static function callback_groups_demote_member( $group_id, $user_id ) { $message = sprintf( __( 'Demoted "%s" to "%s" in "%s"', 'stream' ), $user->display_name, - __( 'Member', 'buddypress' ), + _x( 'Member', 'buddypress', 'stream' ), $group->name ); self::group_action( $group_id, 'demoted', compact( 'user_id' ), $message ); diff --git a/connectors/class-wp-stream-connector-comments.php b/connectors/class-wp-stream-connector-comments.php index 6e98656b8..055f5aeb3 100644 --- a/connectors/class-wp-stream-connector-comments.php +++ b/connectors/class-wp-stream-connector-comments.php @@ -33,7 +33,7 @@ class WP_Stream_Connector_Comments extends WP_Stream_Connector { * @return string Translated connector label */ public static function get_label() { - return __( 'Comments', 'default' ); + return __( 'Comments', 'stream' ); } /** @@ -65,7 +65,7 @@ public static function get_action_labels() { */ public static function get_context_labels() { return array( - 'comments' => __( 'Comments', 'default' ), + 'comments' => __( 'Comments', 'stream' ), ); } @@ -78,9 +78,9 @@ public static function get_comment_type_labels() { return apply_filters( 'wp_stream_comments_comment_type_labels', array( - 'comment' => __( 'Comment', 'default' ), - 'trackback' => __( 'Trackback', 'default' ), - 'pingback' => __( 'Pingback', 'default' ), + 'comment' => __( 'Comment', 'stream' ), + 'trackback' => __( 'Trackback', 'stream' ), + 'pingback' => __( 'Pingback', 'stream' ), ) ); } @@ -121,7 +121,7 @@ public static function action_links( $links, $record ) { $del_nonce = wp_create_nonce( "delete-comment_$comment->comment_ID" ); $approve_nonce = wp_create_nonce( "approve-comment_$comment->comment_ID" ); - $links[ __( 'Edit', 'default' ) ] = admin_url( "comment.php?action=editcomment&c=$comment->comment_ID" ); + $links[ __( 'Edit', 'stream' ) ] = admin_url( "comment.php?action=editcomment&c=$comment->comment_ID" ); if ( 1 === $comment->comment_approved ) { $links[ __( 'Unapprove', 'stream' ) ] = admin_url( diff --git a/connectors/class-wp-stream-connector-edd.php b/connectors/class-wp-stream-connector-edd.php index 8d04a10e6..bf4cbcd9d 100644 --- a/connectors/class-wp-stream-connector-edd.php +++ b/connectors/class-wp-stream-connector-edd.php @@ -95,7 +95,7 @@ public static function is_dependency_satisfied() { * @return string Translated connector label */ public static function get_label() { - return __( 'Easy Digital Downloads', 'edd' ); + return _x( 'Easy Digital Downloads', 'edd', 'stream' ); } /** @@ -105,16 +105,16 @@ public static function get_label() { */ public static function get_action_labels() { return array( - 'created' => __( 'Created', 'stream' ), - 'updated' => __( 'Updated', 'stream' ), - 'added' => __( 'Added', 'stream' ), - 'deleted' => __( 'Deleted', 'stream' ), - 'trashed' => __( 'Trashed', 'stream' ), - 'untrashed' => __( 'Restored', 'stream' ), - 'generated' => __( 'Generated', 'stream' ), - 'imported' => __( 'Imported', 'stream' ), - 'exported' => __( 'Exported', 'stream' ), - 'revoked' => __( 'Revoked', 'edd' ), + 'created' => _x( 'Created', 'edd', 'stream' ), + 'updated' => _x( 'Updated', 'edd', 'stream' ), + 'added' => _x( 'Added', 'edd', 'stream' ), + 'deleted' => _x( 'Deleted', 'edd', 'stream' ), + 'trashed' => _x( 'Trashed', 'edd', 'stream' ), + 'untrashed' => _x( 'Restored', 'edd', 'stream' ), + 'generated' => _x( 'Generated', 'edd', 'stream' ), + 'imported' => _x( 'Imported', 'edd', 'stream' ), + 'exported' => _x( 'Exported', 'edd', 'stream' ), + 'revoked' => _x( 'Revoked', 'edd', 'stream' ), ); } @@ -125,13 +125,13 @@ public static function get_action_labels() { */ public static function get_context_labels() { return array( - 'downloads' => __( 'Downloads', 'edd' ), - 'download_category' => __( 'Categories', 'default' ), - 'download_tag' => __( 'Tags', 'default' ), - 'discounts' => __( 'Discounts', 'edd' ), - 'reports' => __( 'Reports', 'edd' ), - 'api_keys' => __( 'API Keys', 'edd' ), - //'payments' => __( 'Payments', 'edd' ), + 'downloads' => _x( 'Downloads', 'edd', 'stream' ), + 'download_category' => _x( 'Categories', 'edd', 'stream' ), + 'download_tag' => _x( 'Tags', 'edd', 'stream' ), + 'discounts' => _x( 'Discounts', 'edd', 'stream' ), + 'reports' => _x( 'Reports', 'edd', 'stream' ), + 'api_keys' => _x( 'API Keys', 'edd', 'stream' ), + //'payments' => _x( 'Payments', 'edd', 'stream' ), ); } @@ -152,7 +152,7 @@ public static function action_links( $links, $record ) { $post_type_label = get_post_type_labels( get_post_type_object( 'edd_discount' ) )->singular_name; $base = admin_url( 'edit.php?post_type=download&page=edd-discounts' ); - $links[ sprintf( __( 'Edit %s', 'default' ), $post_type_label ) ] = add_query_arg( + $links[ sprintf( __( 'Edit %s', 'stream' ), $post_type_label ) ] = add_query_arg( array( 'edd-action' => 'edit_discount', 'discount' => $record->object_id, @@ -179,16 +179,16 @@ public static function action_links( $links, $record ) { } } elseif ( in_array( $record->context, array( 'download_category', 'download_tag' ) ) ) { $tax_label = get_taxonomy_labels( get_taxonomy( $record->context ) )->singular_name; - $links[ sprintf( __( 'Edit %s', 'default' ), $tax_label ) ] = get_edit_term_link( $record->object_id, wp_stream_get_meta( $record, 'taxonomy', true ) ); + $links[ sprintf( __( 'Edit %s', 'stream' ), $tax_label ) ] = get_edit_term_link( $record->object_id, wp_stream_get_meta( $record, 'taxonomy', true ) ); } elseif ( 'api_keys' === $record->context ) { $user = new WP_User( $record->object_id ); if ( apply_filters( 'edd_api_log_requests', true ) ) { - $links[ __( 'View API Log', 'edd' ) ] = add_query_arg( array( 'view' => 'api_requests', 'post_type' => 'download', 'page' => 'edd-reports', 'tab' => 'logs', 's' => $user->user_email ), 'edit.php' ); + $links[ __( 'View API Log', 'stream' ) ] = add_query_arg( array( 'view' => 'api_requests', 'post_type' => 'download', 'page' => 'edd-reports', 'tab' => 'logs', 's' => $user->user_email ), 'edit.php' ); } - $links[ __( 'Revoke', 'edd' ) ] = add_query_arg( array( 'post_type' => 'download', 'user_id' => $record->object_id, 'edd_action' => 'process_api_key', 'edd_api_process' => 'revoke' ), 'edit.php' ); - $links[ __( 'Reissue', 'edd' ) ] = add_query_arg( array( 'post_type' => 'download', 'user_id' => $record->object_id, 'edd_action' => 'process_api_key', 'edd_api_process' => 'regenerate' ), 'edit.php' ); + $links[ __( 'Revoke', 'stream' ) ] = add_query_arg( array( 'post_type' => 'download', 'user_id' => $record->object_id, 'edd_action' => 'process_api_key', 'edd_api_process' => 'revoke' ), 'edit.php' ); + $links[ __( 'Reissue', 'stream' ) ] = add_query_arg( array( 'post_type' => 'download', 'user_id' => $record->object_id, 'edd_action' => 'process_api_key', 'edd_api_process' => 'regenerate' ), 'edit.php' ); } return $links; @@ -270,7 +270,7 @@ public static function check_edd_settings( $old_value, $new_value ) { if ( 'banned_email' === $option ) { $field = array( - 'name' => __( 'Banned emails', 'edd' ), + 'name' => _x( 'Banned emails', 'edd', 'stream' ), ); $page = 'edd-tools'; $tab = 'general'; diff --git a/connectors/class-wp-stream-connector-editor.php b/connectors/class-wp-stream-connector-editor.php index c4aa6258c..ee1257fee 100644 --- a/connectors/class-wp-stream-connector-editor.php +++ b/connectors/class-wp-stream-connector-editor.php @@ -41,7 +41,7 @@ public static function register() { * @return string Translated connector label */ public static function get_label() { - return __( 'Editor', 'default' ); + return __( 'Editor', 'stream' ); } /** @@ -69,8 +69,8 @@ public static function get_context_labels() { return apply_filters( 'wp_stream_editor_context_labels', array( - 'themes' => __( 'Themes', 'default' ), - 'plugins' => __( 'Plugins', 'default' ), + 'themes' => __( 'Themes', 'stream' ), + 'plugins' => __( 'Plugins', 'stream' ), ) ); } @@ -145,7 +145,7 @@ public static function action_links( $links, $record ) { self_admin_url( 'theme-editor.php' ) ); - $links[ __( 'Theme Details', 'default' ) ] = add_query_arg( + $links[ __( 'Theme Details', 'stream' ) ] = add_query_arg( array( 'theme' => urlencode( $theme_slug ), ), diff --git a/connectors/class-wp-stream-connector-gravityforms.php b/connectors/class-wp-stream-connector-gravityforms.php index ec60757b3..f9f6f3f21 100644 --- a/connectors/class-wp-stream-connector-gravityforms.php +++ b/connectors/class-wp-stream-connector-gravityforms.php @@ -85,7 +85,7 @@ public static function is_dependency_satisfied() { * @return string Translated connector label */ public static function get_label() { - return __( 'Gravity Forms', 'gravityforms' ); + return _x( 'Gravity Forms', 'gravityforms', 'stream' ); } /** @@ -95,15 +95,15 @@ public static function get_label() { */ public static function get_action_labels() { return array( - 'created' => __( 'Created', 'stream' ), - 'updated' => __( 'Updated', 'stream' ), - 'exported' => __( 'Exported', 'stream' ), - 'imported' => __( 'Imported', 'stream' ), - 'added' => __( 'Added', 'stream' ), - 'deleted' => __( 'Deleted', 'stream' ), - 'trashed' => __( 'Trashed', 'stream' ), - 'untrashed' => __( 'Restored', 'stream' ), - 'duplicated' => __( 'Duplicated', 'stream' ), + 'created' => _x( 'Created', 'gravityforms', 'stream' ), + 'updated' => _x( 'Updated', 'gravityforms', 'stream' ), + 'exported' => _x( 'Exported', 'gravityforms', 'stream' ), + 'imported' => _x( 'Imported', 'gravityforms', 'stream' ), + 'added' => _x( 'Added', 'gravityforms', 'stream' ), + 'deleted' => _x( 'Deleted', 'gravityforms', 'stream' ), + 'trashed' => _x( 'Trashed', 'gravityforms', 'stream' ), + 'untrashed' => _x( 'Restored', 'gravityforms', 'stream' ), + 'duplicated' => _x( 'Duplicated', 'gravityforms', 'stream' ), ); } @@ -114,11 +114,11 @@ public static function get_action_labels() { */ public static function get_context_labels() { return array( - 'forms' => __( 'Forms', 'gravityforms' ), - 'settings' => __( 'Settings', 'gravityforms' ), - 'export' => __( 'Import/Export', 'gravityforms' ), - 'entries' => __( 'Entries', 'gravityforms' ), - 'notes' => __( 'Notes', 'gravityforms' ), + 'forms' => _x( 'Forms', 'gravityforms', 'stream' ), + 'settings' => _x( 'Settings', 'gravityforms', 'stream' ), + 'export' => _x( 'Import/Export', 'gravityforms', 'stream' ), + 'entries' => _x( 'Entries', 'gravityforms', 'stream' ), + 'notes' => _x( 'Notes', 'gravityforms', 'stream' ), ); } @@ -134,7 +134,7 @@ public static function get_context_labels() { */ public static function action_links( $links, $record ) { if ( 'forms' === $record->context ) { - $links[ __( 'Edit', 'gravityforms' ) ] = add_query_arg( + $links[ __( 'Edit', 'stream' ) ] = add_query_arg( array( 'page' => 'gf_edit_forms', 'id' => $record->object_id, @@ -142,7 +142,7 @@ public static function action_links( $links, $record ) { admin_url( 'admin.php' ) ); } elseif ( 'entries' === $record->context ) { - $links[ __( 'View', 'gravityforms' ) ] = add_query_arg( + $links[ __( 'View', 'stream' ) ] = add_query_arg( array( 'page' => 'gf_entries', 'view' => 'entry', @@ -152,7 +152,7 @@ public static function action_links( $links, $record ) { admin_url( 'admin.php' ) ); } elseif ( 'notes' === $record->context ) { - $links[ __( 'View', 'gravityforms' ) ] = add_query_arg( + $links[ __( 'View', 'stream' ) ] = add_query_arg( array( 'page' => 'gf_entries', 'view' => 'entry', @@ -178,22 +178,22 @@ public static function register() { self::$options = array( 'rg_gforms_disable_css' => array( - 'label' => __( 'Output CSS', 'gravityforms' ), + 'label' => _x( 'Output CSS', 'gravityforms', 'stream' ), ), 'rg_gforms_enable_html5' => array( - 'label' => __( 'Output HTML5', 'gravityforms' ), + 'label' => _x( 'Output HTML5', 'gravityforms', 'stream' ), ), 'gform_enable_noconflict' => array( - 'label' => __( 'No-Conflict Mode', 'gravityforms' ), + 'label' => _x( 'No-Conflict Mode', 'gravityforms', 'stream' ), ), 'rg_gforms_currency' => array( - 'label' => __( 'Currency', 'gravityforms' ), + 'label' => _x( 'Currency', 'gravityforms', 'stream' ), ), 'rg_gforms_captcha_public_key' => array( - 'label' => __( 'reCAPTCHA Public Key', 'gravityforms' ), + 'label' => _x( 'reCAPTCHA Public Key', 'gravityforms', 'stream' ), ), 'rg_gforms_captcha_private_key' => array( - 'label' => __( 'reCAPTCHA Private Key', 'gravityforms' ), + 'label' => _x( 'reCAPTCHA Private Key', 'gravityforms', 'stream' ), ), 'rg_gforms_key' => null, ); @@ -421,8 +421,8 @@ public static function callback_gform_form_status_change( $id, $action ) { $actions = array( 'activated' => __( 'Activated', 'stream' ), 'deactivated' => __( 'Deactivated', 'stream' ), - 'trashed' => __( 'Trashed', 'default' ), - 'untrashed' => __( 'Restored', 'default' ), + 'trashed' => __( 'Trashed', 'stream' ), + 'untrashed' => __( 'Restored', 'stream' ), ); self::log( diff --git a/connectors/class-wp-stream-connector-installer.php b/connectors/class-wp-stream-connector-installer.php index ae0e7905c..8490c83d6 100644 --- a/connectors/class-wp-stream-connector-installer.php +++ b/connectors/class-wp-stream-connector-installer.php @@ -56,9 +56,9 @@ public static function get_action_labels() { */ public static function get_context_labels() { return array( - 'plugins' => __( 'Plugins', 'default' ), - 'themes' => __( 'Themes', 'default' ), - 'wordpress' => __( 'WordPress', 'default' ), + 'plugins' => __( 'Plugins', 'stream' ), + 'themes' => __( 'Themes', 'stream' ), + 'wordpress' => __( 'WordPress', 'stream' ), ); } diff --git a/connectors/class-wp-stream-connector-jetpack.php b/connectors/class-wp-stream-connector-jetpack.php index 5cc04b751..590ec1702 100644 --- a/connectors/class-wp-stream-connector-jetpack.php +++ b/connectors/class-wp-stream-connector-jetpack.php @@ -66,7 +66,7 @@ public static function is_dependency_satisfied() { * @return string Translated connector label */ public static function get_label() { - return __( 'Jetpack', 'jetpack' ); + return _x( 'Jetpack', 'jetpack', 'stream' ); } /** @@ -76,15 +76,15 @@ public static function get_label() { */ public static function get_action_labels() { return array( - 'activated' => __( 'Activated', 'stream' ), - 'deactivated' => __( 'Dectivated', 'stream' ), - 'register' => __( 'Connected', 'stream' ), - 'disconnect' => __( 'Disconnected', 'stream' ), - 'authorize' => __( 'Link', 'stream' ), - 'unlink' => __( 'Unlink', 'jetpack' ), - 'updated' => __( 'Updated', 'stream' ), - 'added' => __( 'Added', 'stream' ), - 'removed' => __( 'Removed', 'stream' ), + 'activated' => _x( 'Activated', 'jetpack', 'stream' ), + 'deactivated' => _x( 'Dectivated', 'jetpack', 'stream' ), + 'register' => _x( 'Connected', 'jetpack', 'stream' ), + 'disconnect' => _x( 'Disconnected', 'jetpack', 'stream' ), + 'authorize' => _x( 'Link', 'jetpack', 'stream' ), + 'unlink' => _x( 'Unlink', 'jetpack', 'stream' ), + 'updated' => _x( 'Updated', 'jetpack', 'stream' ), + 'added' => _x( 'Added', 'jetpack', 'stream' ), + 'removed' => _x( 'Removed', 'jetpack', 'stream' ), ); } @@ -95,28 +95,28 @@ public static function get_action_labels() { */ public static function get_context_labels() { return array( - 'modules' => __( 'Modules', 'jetpack' ), - 'blogs' => __( 'Blogs', 'default' ), - 'users' => __( 'Users', 'default' ), - 'options' => __( 'Options', 'default' ), - 'sharedaddy' => __( 'Sharing', 'jetpack' ), - 'publicize' => __( 'Publicize', 'jetpack' ), - 'gplus-authorship' => __( 'Google+ Profile', 'jetpack' ), - 'stats' => __( 'WordPress.com Stats', 'jetpack' ), - 'carousel' => __( 'Carousel', 'jetpack' ), - 'custom-css' => __( 'Custom CSS', 'jetpack' ), - 'subscriptions' => __( 'Subscriptions', 'jetpack' ), - 'jetpack-comments' => __( 'Comments', 'default' ), - 'infinite-scroll' => __( 'Infinite Scroll', 'jetpack' ), - 'sso' => __( 'SSO', 'stream' ), - 'likes' => __( 'Likes', 'stream' ), - 'minileven' => __( 'Mobile', 'stream' ), - 'monitor' => __( 'Monitor', 'stream' ), - 'post-by-email' => __( 'Post by Email', 'jetpack' ), - 'related-posts' => __( 'Related Posts', 'jetpack' ), - 'verification-tools' => __( 'Site Verification', 'jetpack' ), - 'tiled-gallery' => __( 'Tiled Galleries', 'jetpack' ), - 'videopress' => __( 'VideoPress', 'jetpack' ), + 'modules' => _x( 'Modules', 'jetpack', 'stream' ), + 'blogs' => _x( 'Blogs', 'jetpack', 'stream' ), + 'users' => _x( 'Users', 'jetpack', 'stream' ), + 'options' => _x( 'Options', 'jetpack', 'stream' ), + 'sharedaddy' => _x( 'Sharing', 'jetpack', 'stream' ), + 'publicize' => _x( 'Publicize', 'jetpack', 'stream' ), + 'gplus-authorship' => _x( 'Google+ Profile', 'jetpack', 'stream' ), + 'stats' => _x( 'WordPress.com Stats', 'jetpack', 'stream' ), + 'carousel' => _x( 'Carousel', 'jetpack', 'stream' ), + 'custom-css' => _x( 'Custom CSS', 'jetpack', 'stream' ), + 'subscriptions' => _x( 'Subscriptions', 'jetpack', 'stream' ), + 'jetpack-comments' => _x( 'Comments', 'jetpack', 'stream' ), + 'infinite-scroll' => _x( 'Infinite Scroll', 'jetpack', 'stream' ), + 'sso' => _x( 'SSO', 'jetpack', 'stream' ), + 'likes' => _x( 'Likes', 'jetpack', 'stream' ), + 'minileven' => _x( 'Mobile', 'jetpack', 'stream' ), + 'monitor' => _x( 'Monitor', 'jetpack', 'stream' ), + 'post-by-email' => _x( 'Post by Email', 'jetpack', 'stream' ), + 'related-posts' => _x( 'Related Posts', 'jetpack', 'stream' ), + 'verification-tools' => _x( 'Site Verification', 'jetpack', 'stream' ), + 'tiled-gallery' => _x( 'Tiled Galleries', 'jetpack', 'stream' ), + 'videopress' => _x( 'VideoPress', 'jetpack', 'stream' ), ); } @@ -142,10 +142,10 @@ public static function action_links( $links, $record ) { if ( Jetpack::is_module_active( $slug ) ) { if ( apply_filters( 'jetpack_module_configurable_' . $slug, false ) ) { - $links[ __( 'Configure', 'jetpack' ) ] = Jetpack::module_configuration_url( $slug );; + $links[ __( 'Configure', 'stream' ) ] = Jetpack::module_configuration_url( $slug );; } - $links[ __( 'Deactivate', 'jetpack' ) ] = wp_nonce_url( + $links[ __( 'Deactivate', 'stream' ) ] = wp_nonce_url( add_query_arg( array( 'action' => 'deactivate', @@ -156,7 +156,7 @@ public static function action_links( $links, $record ) { 'jetpack_deactivate-' . sanitize_title( $slug ) ); } else { - $links[ __( 'Activate', 'jetpack' ) ] = wp_nonce_url( + $links[ __( 'Activate', 'stream' ) ] = wp_nonce_url( add_query_arg( array( 'action' => 'activate', @@ -205,7 +205,7 @@ public static function register() { ), // Comments 'jetpack_comment_form_color_scheme' => array( - 'label' => __( 'Color Scheme', 'jetpack' ), + 'label' => __( 'Color Scheme', 'stream' ), 'context' => 'jetpack-comments', ), // Likes @@ -227,39 +227,39 @@ public static function register() { self::$options_override = array( // Carousel Module 'carousel_background_color' => array( - 'label' => __( 'Background color', 'jetpack' ), + 'label' => __( 'Background color', 'stream' ), 'context' => 'carousel', ), 'carousel_display_exif' => array( - 'label' => __( 'Metadata', 'jetpack' ), + 'label' => __( 'Metadata', 'stream' ), 'context' => 'carousel', ), // Subscriptions 'stb_enabled' => array( - 'label' => __( 'Follow blog comment form button', 'jetpack' ), + 'label' => __( 'Follow blog comment form button', 'stream' ), 'context' => 'subscriptions', ), 'stc_enabled' => array( - 'label' => __( 'Follow comments form button', 'jetpack' ), + 'label' => __( 'Follow comments form button', 'stream' ), 'context' => 'subscriptions', ), // Jetpack comments 'highlander_comment_form_prompt' => array( - 'label' => __( 'Greeting Text', 'jetpack' ), + 'label' => __( 'Greeting Text', 'stream' ), 'context' => 'jetpack-comments', ), // Infinite Scroll 'infinite_scroll_google_analytics' => array( - 'label' => __( 'Infinite Scroll Google Analytics', 'jetpack' ), + 'label' => __( 'Infinite Scroll Google Analytics', 'stream' ), 'context' => 'infinite-scroll', ), // SSO 'jetpack_sso_require_two_step' => array( - 'label' => __( 'Require Two-Step Authentication', 'jetpack' ), + 'label' => __( 'Require Two-Step Authentication', 'stream' ), 'context' => 'sso', ), 'jetpack_sso_match_by_email' => array( - 'label' => __( 'Match by Email', 'jetpack' ), + 'label' => __( 'Match by Email', 'stream' ), 'context' => 'sso', ), // Related posts @@ -290,7 +290,7 @@ public static function register() { ), // Tiled galleries 'tiled_galleries' => array( - 'label' => __( 'Tiled Galleries', 'jetpack' ), + 'label' => __( 'Tiled Galleries', 'stream' ), 'context' => 'tiled-gallery', ), ); @@ -640,10 +640,10 @@ private static function get_settings_def( $key, $value = null ) { } elseif ( 0 === strpos( $key, 'videopress::' ) ) { $name = str_replace( 'videopress::', '', $key ); $options = array( - 'access' => __( 'Video Library Access', 'jetpack' ), - 'upload' => __( 'Allow users to upload videos', 'jetpack' ), - 'freedom' => __( 'Free formats', 'jetpack' ), - 'hd' => __( 'Default quality', 'jetpack' ), + 'access' => __( 'Video Library Access', 'stream' ), + 'upload' => __( 'Allow users to upload videos', 'stream' ), + 'freedom' => __( 'Free formats', 'stream' ), + 'hd' => __( 'Default quality', 'stream' ), ); if ( ! isset( $options[ $name ] ) ) { diff --git a/connectors/class-wp-stream-connector-media.php b/connectors/class-wp-stream-connector-media.php index 47507ffa2..1ec05f377 100644 --- a/connectors/class-wp-stream-connector-media.php +++ b/connectors/class-wp-stream-connector-media.php @@ -28,7 +28,7 @@ class WP_Stream_Connector_Media extends WP_Stream_Connector { * @return string Translated connector label */ public static function get_label() { - return __( 'Media', 'default' ); + return __( 'Media', 'stream' ); } /** @@ -56,15 +56,15 @@ public static function get_action_labels() { */ public static function get_context_labels() { return array( - 'image' => __( 'Image', 'default' ), - 'audio' => __( 'Audio', 'default' ), - 'video' => __( 'Video', 'default' ), + 'image' => __( 'Image', 'stream' ), + 'audio' => __( 'Audio', 'stream' ), + 'video' => __( 'Video', 'stream' ), 'document' => __( 'Document', 'stream' ), 'spreadsheet' => __( 'Spreadsheet', 'stream' ), 'interactive' => __( 'Interactive', 'stream' ), - 'text' => __( 'Text', 'default' ), - 'archive' => __( 'Archive', 'default' ), - 'code' => __( 'Code', 'default' ), + 'text' => __( 'Text', 'stream' ), + 'archive' => __( 'Archive', 'stream' ), + 'code' => __( 'Code', 'stream' ), ); } @@ -104,10 +104,10 @@ public static function get_attachment_type( $file_uri ) { public static function action_links( $links, $record ) { if ( $record->object_id ) { if ( $link = get_edit_post_link( $record->object_id ) ) { - $links[ __( 'Edit Media', 'default' ) ] = $link; + $links[ __( 'Edit Media', 'stream' ) ] = $link; } if ( $link = get_permalink( $record->object_id ) ) { - $links[ __( 'View', 'default' ) ] = $link; + $links[ __( 'View', 'stream' ) ] = $link; } } diff --git a/connectors/class-wp-stream-connector-menus.php b/connectors/class-wp-stream-connector-menus.php index fb42e01f2..a2b322ed1 100644 --- a/connectors/class-wp-stream-connector-menus.php +++ b/connectors/class-wp-stream-connector-menus.php @@ -26,7 +26,7 @@ class WP_Stream_Connector_Menus extends WP_Stream_Connector { * @return string Translated connector label */ public static function get_label() { - return __( 'Menus', 'default' ); + return __( 'Menus', 'stream' ); } /** diff --git a/connectors/class-wp-stream-connector-posts.php b/connectors/class-wp-stream-connector-posts.php index 3d530508c..00bc1d0ee 100644 --- a/connectors/class-wp-stream-connector-posts.php +++ b/connectors/class-wp-stream-connector-posts.php @@ -25,7 +25,7 @@ class WP_Stream_Connector_Posts extends WP_Stream_Connector { * @return string Translated connector label */ public static function get_label() { - return __( 'Posts', 'default' ); + return __( 'Posts', 'stream' ); } /** @@ -103,11 +103,11 @@ public static function action_links( $links, $record ) { $links[ sprintf( esc_html_x( 'Edit %s', 'Post type singular name', 'stream' ), $post_type_name ) ] = get_edit_post_link( $post->ID ); if ( $view_link = get_permalink( $post->ID ) ) { - $links[ esc_html__( 'View', 'default' ) ] = $view_link; + $links[ esc_html__( 'View', 'stream' ) ] = $view_link; } if ( $revision_id = wp_stream_get_meta( $record, 'revision_id', true ) ) { - $links[ esc_html__( 'Revision', 'default' ) ] = get_edit_post_link( $revision_id ); + $links[ esc_html__( 'Revision', 'stream' ) ] = get_edit_post_link( $revision_id ); } } } @@ -288,7 +288,7 @@ public static function get_excluded_post_types() { * @return string Post type label */ public static function get_post_type_name( $post_type_slug ) { - $name = __( 'Post', 'default' ); // Default + $name = __( 'Post', 'stream' ); // Default if ( post_type_exists( $post_type_slug ) ) { $post_type = get_post_type_object( $post_type_slug ); diff --git a/connectors/class-wp-stream-connector-settings.php b/connectors/class-wp-stream-connector-settings.php index c3b1edea8..00088b9f8 100644 --- a/connectors/class-wp-stream-connector-settings.php +++ b/connectors/class-wp-stream-connector-settings.php @@ -97,7 +97,7 @@ public static function log_theme_modification( $old_value, $new_value ) { * @return string Translated context label */ public static function get_label() { - return __( 'Settings', 'default' ); + return __( 'Settings', 'stream' ); } /** @@ -118,17 +118,17 @@ public static function get_action_labels() { */ public static function get_context_labels() { $context_labels = array( - 'settings' => __( 'Settings', 'default' ), - 'general' => __( 'General', 'default' ), - 'writing' => __( 'Writing', 'default' ), - 'reading' => __( 'Reading', 'default' ), - 'discussion' => __( 'Discussion', 'default' ), - 'media' => __( 'Media', 'default' ), - 'permalink' => __( 'Permalinks', 'default' ), - 'network' => __( 'Network', 'default' ), + 'settings' => __( 'Settings', 'stream' ), + 'general' => __( 'General', 'stream' ), + 'writing' => __( 'Writing', 'stream' ), + 'reading' => __( 'Reading', 'stream' ), + 'discussion' => __( 'Discussion', 'stream' ), + 'media' => __( 'Media', 'stream' ), + 'permalink' => __( 'Permalinks', 'stream' ), + 'network' => __( 'Network', 'stream' ), 'wp_stream' => __( 'Stream', 'stream' ), - 'custom_background' => __( 'Custom Background', 'default' ), - 'custom_header' => __( 'Custom Header', 'default' ), + 'custom_background' => __( 'Custom Background', 'stream' ), + 'custom_header' => __( 'Custom Header', 'stream' ), ); if ( is_network_admin() ) { @@ -230,95 +230,95 @@ public static function is_key_option_group( $key, $old_value, $value ) { public static function get_field_label( $field_key ) { $labels = array( // General - 'blogname' => __( 'Site Title', 'default' ), - 'blogdescription' => __( 'Tagline', 'default' ), - 'siteurl' => __( 'WordPress Address (URL)', 'default' ), - 'home' => __( 'Site Address (URL)', 'default' ), - 'admin_email' => __( 'E-mail Address', 'default' ), - 'users_can_register' => __( 'Membership', 'default' ), - 'default_role' => __( 'New User Default Role', 'default' ), - 'timezone_string' => __( 'Timezone', 'default' ), - 'date_format' => __( 'Date Format', 'default' ), - 'time_format' => __( 'Time Format', 'default' ), - 'start_of_week' => __( 'Week Starts On', 'default' ), + 'blogname' => __( 'Site Title', 'stream' ), + 'blogdescription' => __( 'Tagline', 'stream' ), + 'siteurl' => __( 'WordPress Address (URL)', 'stream' ), + 'home' => __( 'Site Address (URL)', 'stream' ), + 'admin_email' => __( 'E-mail Address', 'stream' ), + 'users_can_register' => __( 'Membership', 'stream' ), + 'default_role' => __( 'New User Default Role', 'stream' ), + 'timezone_string' => __( 'Timezone', 'stream' ), + 'date_format' => __( 'Date Format', 'stream' ), + 'time_format' => __( 'Time Format', 'stream' ), + 'start_of_week' => __( 'Week Starts On', 'stream' ), // Writing - 'use_smilies' => __( 'Formatting', 'default' ), - 'use_balanceTags' => __( 'Formatting', 'default' ), - 'default_category' => __( 'Default Post Category', 'default' ), - 'default_post_format' => __( 'Default Post Format', 'default' ), - 'mailserver_url' => __( 'Mail Server', 'default' ), - 'mailserver_login' => __( 'Login Name', 'default' ), - 'mailserver_pass' => __( 'Password', 'default' ), - 'default_email_category' => __( 'Default Mail Category', 'default' ), - 'ping_sites' => __( 'Update Services', 'default' ), + 'use_smilies' => __( 'Formatting', 'stream' ), + 'use_balanceTags' => __( 'Formatting', 'stream' ), + 'default_category' => __( 'Default Post Category', 'stream' ), + 'default_post_format' => __( 'Default Post Format', 'stream' ), + 'mailserver_url' => __( 'Mail Server', 'stream' ), + 'mailserver_login' => __( 'Login Name', 'stream' ), + 'mailserver_pass' => __( 'Password', 'stream' ), + 'default_email_category' => __( 'Default Mail Category', 'stream' ), + 'ping_sites' => __( 'Update Services', 'stream' ), // Reading - 'show_on_front' => __( 'Front page displays', 'default' ), - 'page_on_front' => __( 'Front page displays', 'default' ), - 'page_for_posts' => __( 'Front page displays', 'default' ), - 'posts_per_page' => __( 'Blog pages show at most', 'default' ), - 'posts_per_rss' => __( 'Syndication feeds show the most recent', 'default' ), - 'rss_use_excerpt' => __( 'For each article in a feed, show', 'default' ), - 'blog_public' => __( 'Search Engine Visibility', 'default' ), + 'show_on_front' => __( 'Front page displays', 'stream' ), + 'page_on_front' => __( 'Front page displays', 'stream' ), + 'page_for_posts' => __( 'Front page displays', 'stream' ), + 'posts_per_page' => __( 'Blog pages show at most', 'stream' ), + 'posts_per_rss' => __( 'Syndication feeds show the most recent', 'stream' ), + 'rss_use_excerpt' => __( 'For each article in a feed, show', 'stream' ), + 'blog_public' => __( 'Search Engine Visibility', 'stream' ), // Discussion - 'default_pingback_flag' => __( 'Default article settings', 'default' ), - 'default_ping_status' => __( 'Default article settings', 'default' ), - 'default_comment_status' => __( 'Default article settings', 'default' ), - 'require_name_email' => __( 'Other comment settings', 'default' ), - 'comment_registration' => __( 'Other comment settings', 'default' ), - 'close_comments_for_old_posts' => __( 'Other comment settings', 'default' ), - 'close_comments_days_old' => __( 'Other comment settings', 'default' ), - 'thread_comments' => __( 'Other comment settings', 'default' ), - 'thread_comments_depth' => __( 'Other comment settings', 'default' ), - 'page_comments' => __( 'Other comment settings', 'default' ), - 'comments_per_page' => __( 'Other comment settings', 'default' ), - 'default_comments_page' => __( 'Other comment settings', 'default' ), - 'comment_order' => __( 'Other comment settings', 'default' ), - 'comments_notify' => __( 'E-mail me whenever', 'default' ), - 'moderation_notify' => __( 'E-mail me whenever', 'default' ), - 'comment_moderation' => __( 'Before a comment appears', 'default' ), - 'comment_whitelist' => __( 'Before a comment appears', 'default' ), - 'comment_max_links' => __( 'Comment Moderation', 'default' ), - 'moderation_keys' => __( 'Comment Moderation', 'default' ), - 'blacklist_keys' => __( 'Comment Blacklist', 'default' ), - 'show_avatars' => __( 'Show Avatars', 'default' ), - 'avatar_rating' => __( 'Maximum Rating', 'default' ), - 'avatar_default' => __( 'Default Avatar', 'default' ), + 'default_pingback_flag' => __( 'Default article settings', 'stream' ), + 'default_ping_status' => __( 'Default article settings', 'stream' ), + 'default_comment_status' => __( 'Default article settings', 'stream' ), + 'require_name_email' => __( 'Other comment settings', 'stream' ), + 'comment_registration' => __( 'Other comment settings', 'stream' ), + 'close_comments_for_old_posts' => __( 'Other comment settings', 'stream' ), + 'close_comments_days_old' => __( 'Other comment settings', 'stream' ), + 'thread_comments' => __( 'Other comment settings', 'stream' ), + 'thread_comments_depth' => __( 'Other comment settings', 'stream' ), + 'page_comments' => __( 'Other comment settings', 'stream' ), + 'comments_per_page' => __( 'Other comment settings', 'stream' ), + 'default_comments_page' => __( 'Other comment settings', 'stream' ), + 'comment_order' => __( 'Other comment settings', 'stream' ), + 'comments_notify' => __( 'E-mail me whenever', 'stream' ), + 'moderation_notify' => __( 'E-mail me whenever', 'stream' ), + 'comment_moderation' => __( 'Before a comment appears', 'stream' ), + 'comment_whitelist' => __( 'Before a comment appears', 'stream' ), + 'comment_max_links' => __( 'Comment Moderation', 'stream' ), + 'moderation_keys' => __( 'Comment Moderation', 'stream' ), + 'blacklist_keys' => __( 'Comment Blacklist', 'stream' ), + 'show_avatars' => __( 'Show Avatars', 'stream' ), + 'avatar_rating' => __( 'Maximum Rating', 'stream' ), + 'avatar_default' => __( 'Default Avatar', 'stream' ), // Media - 'thumbnail_size_w' => __( 'Thumbnail size', 'default' ), - 'thumbnail_size_h' => __( 'Thumbnail size', 'default' ), - 'thumbnail_crop' => __( 'Thumbnail size', 'default' ), - 'medium_size_w' => __( 'Medium size', 'default' ), - 'medium_size_h' => __( 'Medium size', 'default' ), - 'large_size_w' => __( 'Large size', 'default' ), - 'large_size_h' => __( 'Large size', 'default' ), - 'uploads_use_yearmonth_folders' => __( 'Uploading Files', 'default' ), + 'thumbnail_size_w' => __( 'Thumbnail size', 'stream' ), + 'thumbnail_size_h' => __( 'Thumbnail size', 'stream' ), + 'thumbnail_crop' => __( 'Thumbnail size', 'stream' ), + 'medium_size_w' => __( 'Medium size', 'stream' ), + 'medium_size_h' => __( 'Medium size', 'stream' ), + 'large_size_w' => __( 'Large size', 'stream' ), + 'large_size_h' => __( 'Large size', 'stream' ), + 'uploads_use_yearmonth_folders' => __( 'Uploading Files', 'stream' ), // Permalinks - 'permalink_structure' => __( 'Permalink Settings', 'default' ), - 'category_base' => __( 'Category base', 'default' ), - 'tag_base' => __( 'Tag base', 'default' ), + 'permalink_structure' => __( 'Permalink Settings', 'stream' ), + 'category_base' => __( 'Category base', 'stream' ), + 'tag_base' => __( 'Tag base', 'stream' ), // Network - 'registrationnotification' => __( 'Registration notification', 'default' ), - 'registration' => __( 'Allow new registrations', 'default' ), - 'add_new_users' => __( 'Add New Users', 'default' ), - 'menu_items' => __( 'Enable administration menus', 'default' ), - 'upload_space_check_disabled' => __( 'Site upload space check', 'default' ), - 'blog_upload_space' => __( 'Site upload space', 'default' ), - 'upload_filetypes' => __( 'Upload file types', 'default' ), - 'site_name' => __( 'Network Title', 'default' ), - 'first_post' => __( 'First Post', 'default' ), - 'first_page' => __( 'First Page', 'default' ), - 'first_comment' => __( 'First Comment', 'default' ), - 'first_comment_url' => __( 'First Comment URL', 'default' ), - 'first_comment_author' => __( 'First Comment Author', 'default' ), - 'welcome_email' => __( 'Welcome Email', 'default' ), - 'welcome_user_email' => __( 'Welcome User Email', 'default' ), - 'fileupload_maxk' => __( 'Max upload file size', 'default' ), - 'global_terms_enabled' => __( 'Terms Enabled', 'default' ), - 'illegal_names' => __( 'Banned Names', 'default' ), - 'limited_email_domains' => __( 'Limited Email Registrations', 'default' ), - 'banned_email_domains' => __( 'Banned Email Domains', 'default' ), - 'WPLANG' => __( 'Network Language', 'default' ), - 'admin_email' => __( 'Network Admin Email', 'default' ), + 'registrationnotification' => __( 'Registration notification', 'stream' ), + 'registration' => __( 'Allow new registrations', 'stream' ), + 'add_new_users' => __( 'Add New Users', 'stream' ), + 'menu_items' => __( 'Enable administration menus', 'stream' ), + 'upload_space_check_disabled' => __( 'Site upload space check', 'stream' ), + 'blog_upload_space' => __( 'Site upload space', 'stream' ), + 'upload_filetypes' => __( 'Upload file types', 'stream' ), + 'site_name' => __( 'Network Title', 'stream' ), + 'first_post' => __( 'First Post', 'stream' ), + 'first_page' => __( 'First Page', 'stream' ), + 'first_comment' => __( 'First Comment', 'stream' ), + 'first_comment_url' => __( 'First Comment URL', 'stream' ), + 'first_comment_author' => __( 'First Comment Author', 'stream' ), + 'welcome_email' => __( 'Welcome Email', 'stream' ), + 'welcome_user_email' => __( 'Welcome User Email', 'stream' ), + 'fileupload_maxk' => __( 'Max upload file size', 'stream' ), + 'global_terms_enabled' => __( 'Terms Enabled', 'stream' ), + 'illegal_names' => __( 'Banned Names', 'stream' ), + 'limited_email_domains' => __( 'Limited Email Registrations', 'stream' ), + 'banned_email_domains' => __( 'Banned Email Domains', 'stream' ), + 'WPLANG' => __( 'Network Language', 'stream' ), + 'admin_email' => __( 'Network Admin Email', 'stream' ), 'user_count' => __( 'User Count', 'stream' ), // Other 'wp_stream_db' => __( 'Stream Database Version', 'stream' ), @@ -351,14 +351,14 @@ public static function get_serialized_field_label( $option_name, $field_key ) { $labels = array( 'theme_mods' => array( // Custom Background - 'background_image' => __( 'Background Image', 'default' ), - 'background_position_x' => __( 'Background Position', 'default' ), - 'background_repeat' => __( 'Background Repeat', 'default' ), - 'background_attachment' => __( 'Background Attachment', 'default' ), - 'background_color' => __( 'Background Color', 'default' ), + 'background_image' => __( 'Background Image', 'stream' ), + 'background_position_x' => __( 'Background Position', 'stream' ), + 'background_repeat' => __( 'Background Repeat', 'stream' ), + 'background_attachment' => __( 'Background Attachment', 'stream' ), + 'background_color' => __( 'Background Color', 'stream' ), // Custom Header - 'header_image' => __( 'Header Image', 'default' ), - 'header_textcolor' => __( 'Text Color', 'default' ), + 'header_image' => __( 'Header Image', 'stream' ), + 'header_textcolor' => __( 'Text Color', 'stream' ), ), ); diff --git a/connectors/class-wp-stream-connector-users.php b/connectors/class-wp-stream-connector-users.php index ffff7b016..fb9e51158 100644 --- a/connectors/class-wp-stream-connector-users.php +++ b/connectors/class-wp-stream-connector-users.php @@ -40,7 +40,7 @@ class WP_Stream_Connector_Users extends WP_Stream_Connector { * @return string Translated connector label */ public static function get_label() { - return __( 'Users', 'default' ); + return __( 'Users', 'stream' ); } /** @@ -53,10 +53,10 @@ public static function get_action_labels() { 'updated' => __( 'Updated', 'stream' ), 'created' => __( 'Created', 'stream' ), 'deleted' => __( 'Deleted', 'stream' ), - 'password-reset' => __( 'Password Reset', 'default' ), - 'forgot-password' => __( 'Lost Password', 'default' ), - 'login' => __( 'Log In', 'default' ), - 'logout' => __( 'Log Out', 'default' ), + 'password-reset' => __( 'Password Reset', 'stream' ), + 'forgot-password' => __( 'Lost Password', 'stream' ), + 'login' => __( 'Log In', 'stream' ), + 'logout' => __( 'Log Out', 'stream' ), ); } @@ -67,7 +67,7 @@ public static function get_action_labels() { */ public static function get_context_labels() { return array( - 'users' => __( 'Users', 'default' ), + 'users' => __( 'Users', 'stream' ), 'sessions' => __( 'Sessions', 'stream' ), 'profiles' => __( 'Profiles', 'stream' ), ); @@ -86,7 +86,7 @@ public static function get_context_labels() { public static function action_links( $links, $record ) { if ( $record->object_id ) { if ( $link = get_edit_user_link( $record->object_id ) ) { - $links [ __( 'Edit User', 'default' ) ] = $link; + $links [ __( 'Edit User', 'stream' ) ] = $link; } } diff --git a/connectors/class-wp-stream-connector-widgets.php b/connectors/class-wp-stream-connector-widgets.php index 1535eaa0d..ad0ffe4c2 100644 --- a/connectors/class-wp-stream-connector-widgets.php +++ b/connectors/class-wp-stream-connector-widgets.php @@ -42,7 +42,7 @@ class WP_Stream_Connector_Widgets extends WP_Stream_Connector { * @return string Translated connector label */ public static function get_label() { - return __( 'Widgets', 'default' ); + return __( 'Widgets', 'stream' ); } /** @@ -78,7 +78,7 @@ public static function get_context_labels() { $labels[ $sidebar['id'] ] = $sidebar['name']; } - $labels['wp_inactive_widgets'] = __( 'Inactive Widgets', 'default' ); + $labels['wp_inactive_widgets'] = __( 'Inactive Widgets', 'stream' ); $labels['orphaned_widgets'] = __( 'Orphaned Widgets', 'stream' ); return $labels; diff --git a/connectors/class-wp-stream-connector-woocommerce.php b/connectors/class-wp-stream-connector-woocommerce.php index 254dfd0ee..b49cf1ef0 100644 --- a/connectors/class-wp-stream-connector-woocommerce.php +++ b/connectors/class-wp-stream-connector-woocommerce.php @@ -86,7 +86,7 @@ public static function is_dependency_satisfied() { * @return string Translated context label */ public static function get_label() { - return __( 'WooCommerce', 'woocommerce' ); + return _x( 'WooCommerce', 'woocommerce', 'stream' ); } /** @@ -96,10 +96,10 @@ public static function get_label() { */ public static function get_action_labels() { return array( - 'updated' => __( 'Updated', 'stream' ), - 'created' => __( 'Created', 'stream' ), - 'trashed' => __( 'Trashed', 'stream' ), - 'deleted' => __( 'Deleted', 'stream' ), + 'updated' => _x( 'Updated', 'woocommerce', 'stream' ), + 'created' => _x( 'Created', 'woocommerce', 'stream' ), + 'trashed' => _x( 'Trashed', 'woocommerce', 'stream' ), + 'deleted' => _x( 'Deleted', 'woocommerce', 'stream' ), ); } @@ -119,7 +119,7 @@ public static function get_context_labels() { } $custom_context_labels = array( - 'attributes' => __( 'Attributes', 'stream' ), + 'attributes' => _x( 'Attributes', 'woocommerce', 'stream' ), ); $context_labels = array_merge( @@ -690,7 +690,7 @@ function( $item ) { // Provide additional context for each of the settings pages array_walk( $settings_pages, function( &$value ) { - $value .= ' ' . __( 'Settings', 'woocommerce' ); + $value .= ' ' . __( 'Settings', 'stream' ); }); // Load Payment Gateway Settings @@ -752,7 +752,7 @@ function( $item ) { // Tools page $tools_page = array( - 'tools' => __( 'Tools', 'default' ) + 'tools' => __( 'Tools', 'stream' ) ); $settings_pages = array_merge( $settings_pages, $tools_page ); diff --git a/connectors/class-wp-stream-connector-wordpress-seo.php b/connectors/class-wp-stream-connector-wordpress-seo.php index 97bccaff8..79050c701 100644 --- a/connectors/class-wp-stream-connector-wordpress-seo.php +++ b/connectors/class-wp-stream-connector-wordpress-seo.php @@ -43,19 +43,11 @@ class WP_Stream_Connector_WordPress_SEO extends WP_Stream_Connector { * @return bool */ public static function is_dependency_satisfied() { - if ( ! defined( 'WPSEO_VERSION' ) ) { - //WP_Stream::notice( - // sprintf( __( 'Stream WordPress SEO Connector requires the WordPress SEO plugin to be installed and activated.', 'stream' ), esc_url( 'http://wordpress.org/plugins/wordpress-seo/' ) ), - // true - //); - } elseif ( version_compare( WPSEO_VERSION, self::PLUGIN_MIN_VERSION, '<' ) ) { - //WP_Stream::notice( - // sprintf( __( 'Please install WordPress SEO version %2$s or higher for the Stream WordPress SEO Connector plugin to work properly.', 'stream' ), esc_url( 'http://wordpress.org/plugins/wordpress-seo/' ), self::PLUGIN_MIN_VERSION ), - // true - //); - } else { + if ( defined( 'WPSEO_VERSION' ) && version_compare( WPSEO_VERSION, self::PLUGIN_MIN_VERSION, '>=' ) ) { return true; } + + return false; } /** @@ -64,7 +56,7 @@ public static function is_dependency_satisfied() { * @return string Translated connector label */ public static function get_label() { - return __( 'WordPress SEO', 'wordpress-seo' ); + return _x( 'WordPress SEO', 'wordpress-seo', 'stream' ); } /** @@ -74,12 +66,12 @@ public static function get_label() { */ public static function get_action_labels() { return array( - 'created' => __( 'Created', 'stream' ), - 'updated' => __( 'Updated', 'stream' ), - 'added' => __( 'Added', 'stream' ), - 'deleted' => __( 'Deleted', 'stream' ), - 'exported' => __( 'Exported', 'stream' ), - 'imported' => __( 'Imported', 'stream' ), + 'created' => _x( 'Created', 'wordpress-seo', 'stream' ), + 'updated' => _x( 'Updated', 'wordpress-seo', 'stream' ), + 'added' => _x( 'Added', 'wordpress-seo', 'stream' ), + 'deleted' => _x( 'Deleted', 'wordpress-seo', 'stream' ), + 'exported' => _x( 'Exported', 'wordpress-seo', 'stream' ), + 'imported' => _x( 'Imported', 'wordpress-seo', 'stream' ), ); } @@ -90,19 +82,18 @@ public static function get_action_labels() { */ public static function get_context_labels() { return array( - 'wpseo_dashboard' => __( 'Dashboard', 'wordpress-seo' ), - 'wpseo_titles' => __( 'Titles & Metas', 'wordpress-seo' ), - 'wpseo_social' => __( 'Social', 'wordpress-seo' ), - 'wpseo_xml' => __( 'XML Sitemaps', 'wordpress-seo' ), - 'wpseo_permalinks' => __( 'Permalinks', 'wordpress-seo' ), - 'wpseo_internal-links' => __( 'Internal Links', 'wordpress-seo' ), - 'wpseo_rss' => __( 'RSS', 'wordpress-seo' ), - 'wpseo_import' => __( 'Import & Export', 'wordpress-seo' ), - 'wpseo_bulk-title-editor' => __( 'Bulk Title Editor', 'wordpress-seo' ), - 'wpseo_bulk-description-editor' => __( 'Bulk Description Editor', 'wordpress-seo' ), - - 'wpseo_files' => __( 'Files', 'wordpress-seo' ), - 'wpseo_meta' => __( 'Content', 'wordpress-seo' ), + 'wpseo_dashboard' => _x( 'Dashboard', 'wordpress-seo', 'stream' ), + 'wpseo_titles' => _x( 'Titles & Metas', 'wordpress-seo', 'stream' ), + 'wpseo_social' => _x( 'Social', 'wordpress-seo', 'stream' ), + 'wpseo_xml' => _x( 'XML Sitemaps', 'wordpress-seo', 'stream' ), + 'wpseo_permalinks' => _x( 'Permalinks', 'wordpress-seo', 'stream' ), + 'wpseo_internal-links' => _x( 'Internal Links', 'wordpress-seo', 'stream' ), + 'wpseo_rss' => _x( 'RSS', 'wordpress-seo', 'stream' ), + 'wpseo_import' => _x( 'Import & Export', 'wordpress-seo', 'stream' ), + 'wpseo_bulk-title-editor' => _x( 'Bulk Title Editor', 'wordpress-seo', 'stream' ), + 'wpseo_bulk-description-editor' => _x( 'Bulk Description Editor', 'wordpress-seo', 'stream' ), + 'wpseo_files' => _x( 'Files', 'wordpress-seo', 'stream' ), + 'wpseo_meta' => _x( 'Content', 'wordpress-seo', 'stream' ), ); } @@ -123,14 +114,14 @@ public static function action_links( $links, $record ) { if ( $option = wp_stream_get_meta( $record, 'option', true ) ) { $key = wp_stream_get_meta( $record, 'option_key', true ); - $links[ __( 'Edit', 'default' ) ] = add_query_arg( + $links[ __( 'Edit', 'stream' ) ] = add_query_arg( array( 'page' => $record->context, ), admin_url( 'admin.php' ) ) . '#stream-highlight-' . esc_attr( $key ); } elseif ( 'wpseo_files' === $record->context ) { - $links[ __( 'Edit', 'default' ) ] = add_query_arg( + $links[ __( 'Edit', 'stream' ) ] = add_query_arg( array( 'page' => $record->context, ), @@ -171,11 +162,11 @@ public static function action_links( $links, $record ) { $links[ sprintf( esc_html_x( 'Edit %s', 'Post type singular name', 'stream' ), $post_type_name ) ] = get_edit_post_link( $post->ID ); if ( $view_link = get_permalink( $post->ID ) ) { - $links[ esc_html__( 'View', 'default' ) ] = $view_link; + $links[ esc_html__( 'View', 'stream' ) ] = $view_link; } if ( $revision_id = wp_stream_get_meta( $record, 'revision_id', true ) ) { - $links[ esc_html__( 'Revision', 'default' ) ] = get_edit_post_link( $revision_id ); + $links[ esc_html__( 'Revision', 'stream' ) ] = get_edit_post_link( $revision_id ); } } } @@ -386,90 +377,90 @@ public static function log_override( array $data ) { private static function settings_labels( $option ) { $labels = array( // wp-content/plugins/wordpress-seo/admin/pages/dashboard.php: - 'yoast_tracking' => __( 'Allow tracking of this WordPress install\'s anonymous data.', 'wordpress-seo' ), # type = checkbox - 'disableadvanced_meta' => __( 'Disable the Advanced part of the WordPress SEO meta box', 'wordpress-seo' ), # type = checkbox - 'alexaverify' => __( 'Alexa Verification ID', 'wordpress-seo' ), # type = textinput - 'msverify' => __( 'Bing Webmaster Tools', 'wordpress-seo' ), # type = textinput - 'googleverify' => __( 'Google Webmaster Tools', 'wordpress-seo' ), # type = textinput - 'pinterestverify' => __( 'Pinterest', 'wordpress-seo' ), # type = textinput - 'yandexverify' => __( 'Yandex Webmaster Tools', 'wordpress-seo' ), # type = textinput + 'yoast_tracking' => _x( 'Allow tracking of this WordPress install\'s anonymous data.', 'wordpress-seo', 'stream' ), # type = checkbox + 'disableadvanced_meta' => _x( 'Disable the Advanced part of the WordPress SEO meta box', 'wordpress-seo', 'stream' ), # type = checkbox + 'alexaverify' => _x( 'Alexa Verification ID', 'wordpress-seo', 'stream' ), # type = textinput + 'msverify' => _x( 'Bing Webmaster Tools', 'wordpress-seo', 'stream' ), # type = textinput + 'googleverify' => _x( 'Google Webmaster Tools', 'wordpress-seo', 'stream' ), # type = textinput + 'pinterestverify' => _x( 'Pinterest', 'wordpress-seo', 'stream' ), # type = textinput + 'yandexverify' => _x( 'Yandex Webmaster Tools', 'wordpress-seo', 'stream' ), # type = textinput // wp-content/plugins/wordpress-seo/admin/pages/internal-links.php: - 'breadcrumbs-enable' => __( 'Enable Breadcrumbs', 'wordpress-seo' ), # type = checkbox - 'breadcrumbs-sep' => __( 'Separator between breadcrumbs', 'wordpress-seo' ), # type = textinput - 'breadcrumbs-home' => __( 'Anchor text for the Homepage', 'wordpress-seo' ), # type = textinput - 'breadcrumbs-prefix' => __( 'Prefix for the breadcrumb path', 'wordpress-seo' ), # type = textinput - 'breadcrumbs-archiveprefix' => __( 'Prefix for Archive breadcrumbs', 'wordpress-seo' ), # type = textinput - 'breadcrumbs-searchprefix' => __( 'Prefix for Search Page breadcrumbs', 'wordpress-seo' ), # type = textinput - 'breadcrumbs-404crumb' => __( 'Breadcrumb for 404 Page', 'wordpress-seo' ), # type = textinput - 'breadcrumbs-blog-remove' => __( 'Remove Blog page from Breadcrumbs', 'wordpress-seo' ), # type = checkbox - 'breadcrumbs-boldlast' => __( 'Bold the last page in the breadcrumb', 'wordpress-seo' ), # type = checkbox + 'breadcrumbs-enable' => _x( 'Enable Breadcrumbs', 'wordpress-seo', 'stream' ), # type = checkbox + 'breadcrumbs-sep' => _x( 'Separator between breadcrumbs', 'wordpress-seo', 'stream' ), # type = textinput + 'breadcrumbs-home' => _x( 'Anchor text for the Homepage', 'wordpress-seo', 'stream' ), # type = textinput + 'breadcrumbs-prefix' => _x( 'Prefix for the breadcrumb path', 'wordpress-seo', 'stream' ), # type = textinput + 'breadcrumbs-archiveprefix' => _x( 'Prefix for Archive breadcrumbs', 'wordpress-seo', 'stream' ), # type = textinput + 'breadcrumbs-searchprefix' => _x( 'Prefix for Search Page breadcrumbs', 'wordpress-seo', 'stream' ), # type = textinput + 'breadcrumbs-404crumb' => _x( 'Breadcrumb for 404 Page', 'wordpress-seo', 'stream' ), # type = textinput + 'breadcrumbs-blog-remove' => _x( 'Remove Blog page from Breadcrumbs', 'wordpress-seo', 'stream' ), # type = checkbox + 'breadcrumbs-boldlast' => _x( 'Bold the last page in the breadcrumb', 'wordpress-seo', 'stream' ), # type = checkbox // wp-content/plugins/wordpress-seo/admin/pages/metas.php: - 'forcerewritetitle' => __( 'Force rewrite titles', 'wordpress-seo' ), # type = checkbox - 'noindex-subpages-wpseo' => __( 'Noindex subpages of archives', 'wordpress-seo' ), # type = checkbox - 'usemetakeywords' => __( 'Use meta keywords tag?', 'wordpress-seo' ), # type = checkbox - 'noodp' => __( 'Add noodp meta robots tag sitewide', 'wordpress-seo' ), # type = checkbox - 'noydir' => __( 'Add noydir meta robots tag sitewide', 'wordpress-seo' ), # type = checkbox - 'hide-rsdlink' => __( 'Hide RSD Links', 'wordpress-seo' ), # type = checkbox - 'hide-wlwmanifest' => __( 'Hide WLW Manifest Links', 'wordpress-seo' ), # type = checkbox - 'hide-shortlink' => __( 'Hide Shortlink for posts', 'wordpress-seo' ), # type = checkbox - 'hide-feedlinks' => __( 'Hide RSS Links', 'wordpress-seo' ), # type = checkbox - 'disable-author' => __( 'Disable the author archives', 'wordpress-seo' ), # type = checkbox - 'disable-date' => __( 'Disable the date-based archives', 'wordpress-seo' ), # type = checkbox + 'forcerewritetitle' => _x( 'Force rewrite titles', 'wordpress-seo', 'stream' ), # type = checkbox + 'noindex-subpages-wpseo' => _x( 'Noindex subpages of archives', 'wordpress-seo', 'stream' ), # type = checkbox + 'usemetakeywords' => _x( 'Use meta keywords tag?', 'wordpress-seo', 'stream' ), # type = checkbox + 'noodp' => _x( 'Add noodp meta robots tag sitewide', 'wordpress-seo', 'stream' ), # type = checkbox + 'noydir' => _x( 'Add noydir meta robots tag sitewide', 'wordpress-seo', 'stream' ), # type = checkbox + 'hide-rsdlink' => _x( 'Hide RSD Links', 'wordpress-seo', 'stream' ), # type = checkbox + 'hide-wlwmanifest' => _x( 'Hide WLW Manifest Links', 'wordpress-seo', 'stream' ), # type = checkbox + 'hide-shortlink' => _x( 'Hide Shortlink for posts', 'wordpress-seo', 'stream' ), # type = checkbox + 'hide-feedlinks' => _x( 'Hide RSS Links', 'wordpress-seo', 'stream' ), # type = checkbox + 'disable-author' => _x( 'Disable the author archives', 'wordpress-seo', 'stream' ), # type = checkbox + 'disable-date' => _x( 'Disable the date-based archives', 'wordpress-seo', 'stream' ), # type = checkbox // wp-content/plugins/wordpress-seo/admin/pages/network.php: - 'access' => __( 'Who should have access to the WordPress SEO settings', 'wordpress-seo' ), # type = select - 'defaultblog' => __( 'New blogs get the SEO settings from this blog', 'wordpress-seo' ), # type = textinput - 'restoreblog' => __( 'Blog ID', 'wordpress-seo' ), # type = textinput + 'access' => _x( 'Who should have access to the WordPress SEO settings', 'wordpress-seo', 'stream' ), # type = select + 'defaultblog' => _x( 'New blogs get the SEO settings from this blog', 'wordpress-seo', 'stream' ), # type = textinput + 'restoreblog' => _x( 'Blog ID', 'wordpress-seo', 'stream' ), # type = textinput // wp-content/plugins/wordpress-seo/admin/pages/permalinks.php: - 'stripcategorybase' => __( 'Strip the category base (usually /category/) from the category URL.', 'wordpress-seo' ), # type = checkbox - 'trailingslash' => __( 'Enforce a trailing slash on all category and tag URL\'s', 'wordpress-seo' ), # type = checkbox - 'cleanslugs' => __( 'Remove stop words from slugs.', 'wordpress-seo' ), # type = checkbox - 'redirectattachment' => __( 'Redirect attachment URL\'s to parent post URL.', 'wordpress-seo' ), # type = checkbox - 'cleanreplytocom' => __( 'Remove the ?replytocom variables.', 'wordpress-seo' ), # type = checkbox - 'cleanpermalinks' => __( 'Redirect ugly URL\'s to clean permalinks. (Not recommended in many cases!)', 'wordpress-seo' ), # type = checkbox - 'force_transport' => __( 'Force Transport', 'wordpress-seo' ), # type = select - 'cleanpermalink-googlesitesearch' => __( 'Prevent cleaning out Google Site Search URL\'s.', 'wordpress-seo' ), # type = checkbox - 'cleanpermalink-googlecampaign' => __( 'Prevent cleaning out Google Analytics Campaign & Google AdWords Parameters.', 'wordpress-seo' ), # type = checkbox - 'cleanpermalink-extravars' => __( 'Other variables not to clean', 'wordpress-seo' ), # type = textinput + 'stripcategorybase' => _x( 'Strip the category base (usually /category/) from the category URL.', 'wordpress-seo', 'stream' ), # type = checkbox + 'trailingslash' => _x( 'Enforce a trailing slash on all category and tag URL\'s', 'wordpress-seo', 'stream' ), # type = checkbox + 'cleanslugs' => _x( 'Remove stop words from slugs.', 'wordpress-seo', 'stream' ), # type = checkbox + 'redirectattachment' => _x( 'Redirect attachment URL\'s to parent post URL.', 'wordpress-seo', 'stream' ), # type = checkbox + 'cleanreplytocom' => _x( 'Remove the ?replytocom variables.', 'wordpress-seo', 'stream' ), # type = checkbox + 'cleanpermalinks' => _x( 'Redirect ugly URL\'s to clean permalinks. (Not recommended in many cases!)', 'wordpress-seo', 'stream' ), # type = checkbox + 'force_transport' => _x( 'Force Transport', 'wordpress-seo', 'stream' ), # type = select + 'cleanpermalink-googlesitesearch' => _x( 'Prevent cleaning out Google Site Search URL\'s.', 'wordpress-seo', 'stream' ), # type = checkbox + 'cleanpermalink-googlecampaign' => _x( 'Prevent cleaning out Google Analytics Campaign & Google AdWords Parameters.', 'wordpress-seo', 'stream' ), # type = checkbox + 'cleanpermalink-extravars' => _x( 'Other variables not to clean', 'wordpress-seo', 'stream' ), # type = textinput // wp-content/plugins/wordpress-seo/admin/pages/social.php: - 'opengraph' => __( 'Add Open Graph meta data', 'wordpress-seo' ), # type = checkbox - 'facebook_site' => __( 'Facebook Page URL', 'wordpress-seo' ), # type = textinput - 'og_frontpage_image' => __( 'Image URL', 'wordpress-seo' ), # type = textinput - 'og_frontpage_desc' => __( 'Description', 'wordpress-seo' ), # type = textinput - 'og_default_image' => __( 'Image URL', 'wordpress-seo' ), # type = textinput - 'twitter' => __( 'Add Twitter card meta data', 'wordpress-seo' ), # type = checkbox - 'twitter_site' => __( 'Site Twitter Username', 'wordpress-seo' ), # type = textinput - 'twitter_card_type' => __( 'The default card type to use', 'wordpress-seo' ), # type = select - 'googleplus' => __( 'Add Google+ specific post meta data (excluding author metadata)', 'wordpress-seo' ), # type = checkbox - 'plus-publisher' => __( 'Google Publisher Page', 'wordpress-seo' ), # type = textinput + 'opengraph' => _x( 'Add Open Graph meta data', 'wordpress-seo', 'stream' ), # type = checkbox + 'facebook_site' => _x( 'Facebook Page URL', 'wordpress-seo', 'stream' ), # type = textinput + 'og_frontpage_image' => _x( 'Image URL', 'wordpress-seo', 'stream' ), # type = textinput + 'og_frontpage_desc' => _x( 'Description', 'wordpress-seo', 'stream' ), # type = textinput + 'og_default_image' => _x( 'Image URL', 'wordpress-seo', 'stream' ), # type = textinput + 'twitter' => _x( 'Add Twitter card meta data', 'wordpress-seo', 'stream' ), # type = checkbox + 'twitter_site' => _x( 'Site Twitter Username', 'wordpress-seo', 'stream' ), # type = textinput + 'twitter_card_type' => _x( 'The default card type to use', 'wordpress-seo', 'stream' ), # type = select + 'googleplus' => _x( 'Add Google+ specific post meta data (excluding author metadata)', 'wordpress-seo', 'stream' ), # type = checkbox + 'plus-publisher' => _x( 'Google Publisher Page', 'wordpress-seo', 'stream' ), # type = textinput // wp-content/plugins/wordpress-seo/admin/pages/xml-sitemaps.php: - 'enablexmlsitemap' => __( 'Check this box to enable XML sitemap functionality.', 'wordpress-seo' ), # type = checkbox - 'disable_author_sitemap' => __( 'Disable author/user sitemap', 'wordpress-seo' ), # type = checkbox - 'xml_ping_yahoo' => __( 'Ping Yahoo!', 'wordpress-seo' ), # type = checkbox - 'xml_ping_ask' => __( 'Ping Ask.com', 'wordpress-seo' ), # type = checkbox - 'entries-per-page' => __( 'Max entries per sitemap page', 'wordpress-seo' ), # type = textinput + 'enablexmlsitemap' => _x( 'Check this box to enable XML sitemap functionality.', 'wordpress-seo', 'stream' ), # type = checkbox + 'disable_author_sitemap' => _x( 'Disable author/user sitemap', 'wordpress-seo', 'stream' ), # type = checkbox + 'xml_ping_yahoo' => _x( 'Ping Yahoo!', 'wordpress-seo', 'stream' ), # type = checkbox + 'xml_ping_ask' => _x( 'Ping Ask.com', 'wordpress-seo', 'stream' ), # type = checkbox + 'entries-per-page' => _x( 'Max entries per sitemap page', 'wordpress-seo', 'stream' ), # type = textinput // Added manually - 'rssbefore' => __( 'Content to put before each post in the feed', 'wordpress-seo' ), - 'rssafter' => __( 'Content to put after each post', 'wordpress-seo' ), + 'rssbefore' => _x( 'Content to put before each post in the feed', 'wordpress-seo', 'stream' ), + 'rssafter' => _x( 'Content to put after each post', 'wordpress-seo', 'stream' ), ); $ast_labels = array( - 'title-' => __( 'Title template', 'wordpress-seo' ), # type = textinput - 'metadesc-' => __( 'Meta description template', 'wordpress-seo' ), # type = textarea - 'metakey-' => __( 'Meta keywords template', 'wordpress-seo' ), # type = textinput - 'noindex-' => __( 'Meta Robots', 'wordpress-seo' ), # type = checkbox - 'noauthorship-' => __( 'Authorship', 'wordpress-seo' ), # type = checkbox - 'showdate-' => __( 'Show date in snippet preview?', 'wordpress-seo' ), # type = checkbox - 'hideeditbox-' => __( 'WordPress SEO Meta Box', 'wordpress-seo' ), # type = checkbox - 'bctitle-' => __( 'Breadcrumbs Title', 'wordpress-seo' ), # type = textinput - 'post_types-' => __( 'Post types', 'wordpress-seo' ), # type = checkbox - 'taxonomies-' => __( 'Taxonomies', 'wordpress-seo' ), # type = checkbox + 'title-' => _x( 'Title template', 'wordpress-seo', 'stream' ), # type = textinput + 'metadesc-' => _x( 'Meta description template', 'wordpress-seo', 'stream' ), # type = textarea + 'metakey-' => _x( 'Meta keywords template', 'wordpress-seo', 'stream' ), # type = textinput + 'noindex-' => _x( 'Meta Robots', 'wordpress-seo', 'stream' ), # type = checkbox + 'noauthorship-' => _x( 'Authorship', 'wordpress-seo', 'stream' ), # type = checkbox + 'showdate-' => _x( 'Show date in snippet preview?', 'wordpress-seo', 'stream' ), # type = checkbox + 'hideeditbox-' => _x( 'WordPress SEO Meta Box', 'wordpress-seo', 'stream' ), # type = checkbox + 'bctitle-' => _x( 'Breadcrumbs Title', 'wordpress-seo', 'stream' ), # type = textinput + 'post_types-' => _x( 'Post types', 'wordpress-seo', 'stream' ), # type = checkbox + 'taxonomies-' => _x( 'Taxonomies', 'wordpress-seo', 'stream' ), # type = checkbox ); if ( $option ) { diff --git a/extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php b/extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php index f5f61e29b..725172c4b 100644 --- a/extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php +++ b/extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php @@ -3,84 +3,84 @@ class WP_Stream_Notification_Adapter_SMS extends WP_Stream_Notifications_Adapter { public static function register( $title = '' ) { - parent::register( __( 'SMS', 'stream-notifications' ) ); + parent::register( __( 'SMS', 'stream' ) ); } public static function fields() { return array( 'mobile_number' => array( - 'title' => __( 'Send to Mobile Number', 'stream-notifications' ), + 'title' => __( 'Send to Mobile Number', 'stream' ), 'type' => 'text', 'multiple' => false, 'tags' => true, - 'hint' => __( 'Enter mobile numbers without dashes (ex: 8885550000)', 'stream-notifications' ), + 'hint' => __( 'Enter mobile numbers without dashes (ex: 8885550000)', 'stream' ), ), 'carrier' => array( - 'title' => __( 'Carrier', 'stream-notifications' ), + 'title' => __( 'Carrier', 'stream' ), 'type' => 'select', - 'hint' => __( 'Select your mobile service provider.', 'stream-notifications' ), + 'hint' => __( 'Select your mobile service provider.', 'stream' ), 'ajax' => false, 'options' => array( - '@sms.3rivers.net' => esc_html__( '3 River Wireless', 'stream-notifications' ), - '@paging.acswireless.com' => esc_html__( 'ACS Wireless', 'stream-notifications' ), - '@message.alltel.com' => esc_html__( 'Alltel', 'stream-notifications' ), - '@txt.att.net' => esc_html__( 'AT&T, Cingular, Net10 or Tracfone', 'stream-notifications' ), - '@bellmobility.ca' => esc_html__( 'Bell Canada', 'stream-notifications' ), - '@txt.bell.ca' => esc_html__( 'Bell Mobility (Canada), Presidents Choice or Solo Mobile', 'stream-notifications' ), - '@txt.bellmobility.ca' => esc_html__( 'Bell Mobility', 'stream-notifications' ), - '@blueskyfrog.com' => esc_html__( 'Blue Sky Frog', 'stream-notifications' ), - '@sms.bluecell.com' => esc_html__( 'Bluegrass Cellular', 'stream-notifications' ), - '@myboostmobile.com' => esc_html__( 'Boost Mobile', 'stream-notifications' ), - '@bplmobile.com' => esc_html__( 'BPL Mobile', 'stream-notifications' ), - '@cwwsms.com' => esc_html__( 'Carolina West Wireless', 'stream-notifications' ), - '@mobile.celloneusa.com' => esc_html__( 'Cellular One', 'stream-notifications' ), - '@csouth1.com' => esc_html__( 'Cellular South', 'stream-notifications' ), - '@messaging.centurytel.net' => esc_html__( 'CenturyTel', 'stream-notifications' ), - '@msg.clearnet.com' => esc_html__( 'Clearnet', 'stream-notifications' ), - '@comcastpcs.textmsg.com' => esc_html__( 'Comcast', 'stream-notifications' ), - '@corrwireless.net' => esc_html__( 'Corr Wireless Communications', 'stream-notifications' ), - '@sms.mycricket.com' => esc_html__( 'Cricket', 'stream-notifications' ), - '@mobile.dobson.net' => esc_html__( 'Dobson', 'stream-notifications' ), - '@sms.edgewireless.com' => esc_html__( 'Edge Wireless', 'stream-notifications' ), - '@fido.ca' => esc_html__( 'Fido', 'stream-notifications' ), - '@sms.goldentele.com' => esc_html__( 'Golden Telecom', 'stream-notifications' ), - '@text.houstoncellular.net' => esc_html__( 'Houston Cellular', 'stream-notifications' ), - '@ideacellular.net' => esc_html__( 'Idea Cellular', 'stream-notifications' ), - '@ivctext.com' => esc_html__( 'Illinois Valley Cellular', 'stream-notifications' ), - '@inlandlink.com' => esc_html__( 'Inland Cellular Telephone', 'stream-notifications' ), - '@pagemci.com' => esc_html__( 'MCI', 'stream-notifications' ), - '@page.metrocall.com' => esc_html__( 'Metrocall', 'stream-notifications' ), - '@my2way.com' => esc_html__( 'Metrocall 2-way', 'stream-notifications' ), - '@mymetropcs.com' => esc_html__( 'Metro PCS', 'stream-notifications' ), - '@clearlydigital.com' => esc_html__( 'Midwest Wireless', 'stream-notifications' ), - '@mobilecomm.net' => esc_html__( 'Mobilcomm', 'stream-notifications' ), - '@text.mtsmobility.com' => esc_html__( 'MTS', 'stream-notifications' ), - '@messaging.nextel.com' => esc_html__( 'Nextel', 'stream-notifications' ), - '@onlinebeep.net' => esc_html__( 'OnlineBeep', 'stream-notifications' ), - '@pcsone.net' => esc_html__( 'PCS One', 'stream-notifications' ), - '@sms.pscel.com' => esc_html__( 'Public Service Cellular', 'stream-notifications' ), - '@qwestmp.com' => esc_html__( 'Qwest', 'stream-notifications' ), - '@pcs.rogers.com' => esc_html__( 'Rogers AT&T Wireless and Rogers Canada', 'stream-notifications' ), - '@satellink.net' => esc_html__( 'Satellink', 'stream-notifications' ), - '@messaging.sprintpcs.com' => esc_html__( 'Sprint or Helio', 'stream-notifications' ), - '@tms.suncom.com' => esc_html__( 'Suncom and Triton', 'stream-notifications' ), - '@mobile.surewest.com' => esc_html__( 'Surewest Communications', 'stream-notifications' ), - '@tmomail.net' => esc_html__( 'T-Mobile', 'stream-notifications' ), - '@msg.telus.com' => esc_html__( 'Telus', 'stream-notifications' ), - '@utext.com' => esc_html__( 'Unicel', 'stream-notifications' ), - '@email.uscc.net' => esc_html__( 'US Cellular', 'stream-notifications' ), - '@uswestdatamail.com' => esc_html__( 'US West', 'stream-notifications' ), - '@vtext.com' => esc_html__( 'Verizon or Straight Talk', 'stream-notifications' ), - '@vmobl.com' => esc_html__( 'Virgin Mobile', 'stream-notifications' ), - '@vmobile.ca' => esc_html__( 'Virgin Mobile Canada', 'stream-notifications' ), - '@sms.wcc.net' => esc_html__( 'West Central Wireless', 'stream-notifications' ), - '@cellularonewest.com' => esc_html__( 'Western Wireless', 'stream-notifications' ), + '@sms.3rivers.net' => esc_html__( '3 River Wireless', 'stream' ), + '@paging.acswireless.com' => esc_html__( 'ACS Wireless', 'stream' ), + '@message.alltel.com' => esc_html__( 'Alltel', 'stream' ), + '@txt.att.net' => esc_html__( 'AT&T, Cingular, Net10 or Tracfone', 'stream' ), + '@bellmobility.ca' => esc_html__( 'Bell Canada', 'stream' ), + '@txt.bell.ca' => esc_html__( 'Bell Mobility (Canada), Presidents Choice or Solo Mobile', 'stream' ), + '@txt.bellmobility.ca' => esc_html__( 'Bell Mobility', 'stream' ), + '@blueskyfrog.com' => esc_html__( 'Blue Sky Frog', 'stream' ), + '@sms.bluecell.com' => esc_html__( 'Bluegrass Cellular', 'stream' ), + '@myboostmobile.com' => esc_html__( 'Boost Mobile', 'stream' ), + '@bplmobile.com' => esc_html__( 'BPL Mobile', 'stream' ), + '@cwwsms.com' => esc_html__( 'Carolina West Wireless', 'stream' ), + '@mobile.celloneusa.com' => esc_html__( 'Cellular One', 'stream' ), + '@csouth1.com' => esc_html__( 'Cellular South', 'stream' ), + '@messaging.centurytel.net' => esc_html__( 'CenturyTel', 'stream' ), + '@msg.clearnet.com' => esc_html__( 'Clearnet', 'stream' ), + '@comcastpcs.textmsg.com' => esc_html__( 'Comcast', 'stream' ), + '@corrwireless.net' => esc_html__( 'Corr Wireless Communications', 'stream' ), + '@sms.mycricket.com' => esc_html__( 'Cricket', 'stream' ), + '@mobile.dobson.net' => esc_html__( 'Dobson', 'stream' ), + '@sms.edgewireless.com' => esc_html__( 'Edge Wireless', 'stream' ), + '@fido.ca' => esc_html__( 'Fido', 'stream' ), + '@sms.goldentele.com' => esc_html__( 'Golden Telecom', 'stream' ), + '@text.houstoncellular.net' => esc_html__( 'Houston Cellular', 'stream' ), + '@ideacellular.net' => esc_html__( 'Idea Cellular', 'stream' ), + '@ivctext.com' => esc_html__( 'Illinois Valley Cellular', 'stream' ), + '@inlandlink.com' => esc_html__( 'Inland Cellular Telephone', 'stream' ), + '@pagemci.com' => esc_html__( 'MCI', 'stream' ), + '@page.metrocall.com' => esc_html__( 'Metrocall', 'stream' ), + '@my2way.com' => esc_html__( 'Metrocall 2-way', 'stream' ), + '@mymetropcs.com' => esc_html__( 'Metro PCS', 'stream' ), + '@clearlydigital.com' => esc_html__( 'Midwest Wireless', 'stream' ), + '@mobilecomm.net' => esc_html__( 'Mobilcomm', 'stream' ), + '@text.mtsmobility.com' => esc_html__( 'MTS', 'stream' ), + '@messaging.nextel.com' => esc_html__( 'Nextel', 'stream' ), + '@onlinebeep.net' => esc_html__( 'OnlineBeep', 'stream' ), + '@pcsone.net' => esc_html__( 'PCS One', 'stream' ), + '@sms.pscel.com' => esc_html__( 'Public Service Cellular', 'stream' ), + '@qwestmp.com' => esc_html__( 'Qwest', 'stream' ), + '@pcs.rogers.com' => esc_html__( 'Rogers AT&T Wireless and Rogers Canada', 'stream' ), + '@satellink.net' => esc_html__( 'Satellink', 'stream' ), + '@messaging.sprintpcs.com' => esc_html__( 'Sprint or Helio', 'stream' ), + '@tms.suncom.com' => esc_html__( 'Suncom and Triton', 'stream' ), + '@mobile.surewest.com' => esc_html__( 'Surewest Communications', 'stream' ), + '@tmomail.net' => esc_html__( 'T-Mobile', 'stream' ), + '@msg.telus.com' => esc_html__( 'Telus', 'stream' ), + '@utext.com' => esc_html__( 'Unicel', 'stream' ), + '@email.uscc.net' => esc_html__( 'US Cellular', 'stream' ), + '@uswestdatamail.com' => esc_html__( 'US West', 'stream' ), + '@vtext.com' => esc_html__( 'Verizon or Straight Talk', 'stream' ), + '@vmobl.com' => esc_html__( 'Virgin Mobile', 'stream' ), + '@vmobile.ca' => esc_html__( 'Virgin Mobile Canada', 'stream' ), + '@sms.wcc.net' => esc_html__( 'West Central Wireless', 'stream' ), + '@cellularonewest.com' => esc_html__( 'Western Wireless', 'stream' ), ), ), 'message' => array( - 'title' => __( 'Message', 'stream-notifications' ), + 'title' => __( 'Message', 'stream' ), 'type' => 'textarea', - 'hint' => __( 'Data tags are allowed. HTML is not allowed.', 'stream-notifications' ), + 'hint' => __( 'Data tags are allowed. HTML is not allowed.', 'stream' ), ), ); } diff --git a/extensions/reports/includes/class-wp-stream-reports-meta-boxes.php b/extensions/reports/includes/class-wp-stream-reports-meta-boxes.php index d81a6f851..894385134 100644 --- a/extensions/reports/includes/class-wp-stream-reports-meta-boxes.php +++ b/extensions/reports/includes/class-wp-stream-reports-meta-boxes.php @@ -688,7 +688,7 @@ public function chart_height_display( $status, $args ) { ob_start(); ?>
-
+
diff --git a/languages/stream-de_DE.mo b/languages/stream-de_DE.mo index fc840f3f7..a8e70a80b 100644 Binary files a/languages/stream-de_DE.mo and b/languages/stream-de_DE.mo differ diff --git a/languages/stream-de_DE.po b/languages/stream-de_DE.po index 6f11682e4..9cd45509e 100644 --- a/languages/stream-de_DE.po +++ b/languages/stream-de_DE.po @@ -1,15 +1,15 @@ msgid "" msgstr "" "Project-Id-Version: Stream\n" -"POT-Creation-Date: 2014-09-27 03:35+1000\n" -"PO-Revision-Date: 2014-09-27 03:35+1000\n" -"Last-Translator: Luke Carbis \n" +"POT-Creation-Date: 2014-10-01 20:35+1000\n" +"PO-Revision-Date: 2014-10-01 20:38+1000\n" +"Last-Translator: Frankie Jarrett \n" "Language-Team: Pascal Kläres \n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.3\n" +"X-Generator: Poedit 1.6.9\n" "X-Poedit-Basepath: .\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-KeywordsList: __;_e;_x;_ngettext;_n;_gettext_noop;_nx;_nx_noop;_ex;" @@ -18,106 +18,76 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: ..\n" -#: ../stream.php:100 -msgid "Stream: Could not load chosen DB driver." -msgstr "" - -#: ../stream.php:156 -msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." -msgstr "" - -#: ../stream.php:197 ../stream.php:212 -msgid "Deprecated Plugins Found" -msgstr "" - -#: ../stream.php:198 -msgid "" -"The following plugins are deprecated and will be deactivated in order to " -"activate" -msgstr "" - -#: ../stream.php:207 -#, fuzzy -msgid "Continue" -msgstr "Kontext" - #: ../classes/class-wp-stream-admin.php:144 -msgid "Dismiss this notice and deactivate Stream." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:152 -#: ../classes/class-wp-stream-admin.php:284 -#: ../classes/class-wp-stream-admin.php:862 +#: ../classes/class-wp-stream-admin.php:270 +#: ../classes/class-wp-stream-admin.php:837 #, fuzzy msgid "Connect to Stream" msgstr "Bereich" -#: ../classes/class-wp-stream-admin.php:156 +#: ../classes/class-wp-stream-admin.php:148 msgid "Stream is almost ready!" msgstr "" -#: ../classes/class-wp-stream-admin.php:160 -#: ../classes/class-wp-stream-admin.php:866 +#: ../classes/class-wp-stream-admin.php:152 +#: ../classes/class-wp-stream-admin.php:841 #, php-format msgid "" -"Stream uses your WordPress.com ID to authorize your account. You can sign up " -"for free at %swordpress.com/signup%s." +"Stream only uses your WordPress.com ID during sign up to authorize your " +"account. You can sign up for free at %swordpress.com/signup%s." msgstr "" -#: ../classes/class-wp-stream-admin.php:166 +#: ../classes/class-wp-stream-admin.php:158 #, php-format msgid "" "Connect to Stream with your %sWordPress.com ID%s to see every change made to " "your site in beautifully organized detail." msgstr "" -#: ../classes/class-wp-stream-admin.php:195 +#: ../classes/class-wp-stream-admin.php:187 #, fuzzy msgid "All site settings have been successfully reset." msgstr "Alle Einträge wurden erfolgreich gelöscht." -#: ../classes/class-wp-stream-admin.php:201 +#: ../classes/class-wp-stream-admin.php:193 msgid "You have successfully connected to Stream!" msgstr "" -#: ../classes/class-wp-stream-admin.php:202 +#: ../classes/class-wp-stream-admin.php:194 msgid "" "Check back here regularly to see a history of the changes being made to this " "site." msgstr "" -#: ../classes/class-wp-stream-admin.php:254 -#: ../classes/class-wp-stream-admin.php:255 -#: ../classes/class-wp-stream-admin.php:285 -#: ../classes/class-wp-stream-network.php:115 +#: ../classes/class-wp-stream-admin.php:242 +#: ../classes/class-wp-stream-admin.php:243 +#: ../classes/class-wp-stream-admin.php:271 #: ../connectors/class-wp-stream-connector-settings.php:129 msgid "Stream" msgstr "Stream" -#: ../classes/class-wp-stream-admin.php:265 +#: ../classes/class-wp-stream-admin.php:253 msgid "Stream Settings" msgstr "Stream Einstellungen" -#: ../classes/class-wp-stream-admin.php:266 -#: ../classes/class-wp-stream-admin.php:565 -#: ../connectors/class-wp-stream-connector-bbpress.php:114 -#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#: ../classes/class-wp-stream-admin.php:254 +#: ../classes/class-wp-stream-admin.php:540 #: ../connectors/class-wp-stream-connector-settings.php:100 #: ../connectors/class-wp-stream-connector-settings.php:121 #: ../connectors/class-wp-stream-connector-woocommerce.php:693 msgid "Settings" msgstr "Einstellungen" -#: ../classes/class-wp-stream-admin.php:275 +#: ../classes/class-wp-stream-admin.php:262 #, fuzzy msgid "Stream Account" msgstr "Stream Aktivitäten" -#: ../classes/class-wp-stream-admin.php:276 +#: ../classes/class-wp-stream-admin.php:263 msgid "Account" msgstr "" -#: ../classes/class-wp-stream-admin.php:354 +#: ../classes/class-wp-stream-admin.php:340 #, fuzzy msgid "" "Are you sure you want to reset all site settings to default? This cannot be " @@ -126,54 +96,54 @@ msgstr "" "Sind Sie sicher, dass Sie alle Stream Aktivitäts-Aufzeichnungen aus der " "Datenbank löschen möchten? Dies kann nicht rückgängig gemacht werden." -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 #, php-format msgid "This will take about %d minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 msgid "This could take a few minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:385 +#: ../classes/class-wp-stream-admin.php:371 #, fuzzy msgid "Migrating Stream Records" msgstr "Stream Aufzeichnungen" -#: ../classes/class-wp-stream-admin.php:386 +#: ../classes/class-wp-stream-admin.php:372 #, fuzzy msgid "Deleting Stream Records" msgstr "Stream Aufzeichnungen" -#: ../classes/class-wp-stream-admin.php:387 +#: ../classes/class-wp-stream-admin.php:373 msgid "" "An unknown error occurred during migration. Please try again later or " "contact support." msgstr "" -#: ../classes/class-wp-stream-admin.php:388 -#: ../classes/class-wp-stream-admin.php:389 +#: ../classes/class-wp-stream-admin.php:374 +#: ../classes/class-wp-stream-admin.php:375 msgid "Please do not exit this page until the process has completed." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 #, php-format msgid "Please note: This process will take about %d minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 msgid "Please note: This process could take a few minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:391 +#: ../classes/class-wp-stream-admin.php:377 msgid "" "Please note: Your existing records will not appear in Stream until you have " "migrated them to your account." msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, fuzzy, php-format msgid "" "Are you sure you want to delete all %s existing Stream records without " @@ -182,172 +152,152 @@ msgstr "" "Sind Sie sicher, dass Sie alle Stream Aktivitäts-Aufzeichnungen aus der " "Datenbank löschen möchten? Dies kann nicht rückgängig gemacht werden." -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, fuzzy, php-format msgid "about %d" msgstr "About" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 msgid "a few" msgstr "" -#: ../classes/class-wp-stream-admin.php:421 +#: ../classes/class-wp-stream-admin.php:407 #, php-format msgid "" "Are you sure you want to perform bulk actions on over %d items? This process " "could take a while to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:422 +#: ../classes/class-wp-stream-admin.php:408 msgid "" "The Stream plugin must be deactivated before you can bulk import content " "into WordPress." msgstr "" -#: ../classes/class-wp-stream-admin.php:751 +#: ../classes/class-wp-stream-admin.php:726 msgid "Error retrieving account details." msgstr "" -#: ../classes/class-wp-stream-admin.php:753 +#: ../classes/class-wp-stream-admin.php:728 msgid "" "If this problem persists, please disconnect from Stream and try connecting " "again." msgstr "" -#: ../classes/class-wp-stream-admin.php:760 +#: ../classes/class-wp-stream-admin.php:735 msgid "Free" msgstr "" -#: ../classes/class-wp-stream-admin.php:764 +#: ../classes/class-wp-stream-admin.php:739 msgid "Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:766 +#: ../classes/class-wp-stream-admin.php:741 msgid "Standard" msgstr "" -#: ../classes/class-wp-stream-admin.php:772 +#: ../classes/class-wp-stream-admin.php:747 #, fuzzy, php-format +msgctxt "1: Price, 2: Renewal date" msgid "$%1$s on %2$s" msgstr "Edited %1$s: %2$s" -#: ../classes/class-wp-stream-admin.php:774 +#: ../classes/class-wp-stream-admin.php:749 #: ../classes/class-wp-stream-author.php:64 #: ../classes/class-wp-stream-author.php:72 #: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:127 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:287 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:471 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:279 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:433 msgid "N/A" msgstr "n.v." -#: ../classes/class-wp-stream-admin.php:781 +#: ../classes/class-wp-stream-admin.php:756 msgid "Unlimited" msgstr "" -#: ../classes/class-wp-stream-admin.php:784 +#: ../classes/class-wp-stream-admin.php:759 +#, php-format msgid "1 Day" -msgstr "" +msgid_plural "%s Days" +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-admin.php:794 +#: ../classes/class-wp-stream-admin.php:769 msgid "Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:798 +#: ../classes/class-wp-stream-admin.php:773 #, fuzzy msgid "Activity History" msgstr "Speiche Protokoll für" -#: ../classes/class-wp-stream-admin.php:803 +#: ../classes/class-wp-stream-admin.php:778 msgid "Next Billing" msgstr "" -#: ../classes/class-wp-stream-admin.php:808 +#: ../classes/class-wp-stream-admin.php:783 #: ../connectors/class-wp-stream-connector-acf.php:81 -#: ../connectors/class-wp-stream-connector-bbpress.php:88 -#: ../connectors/class-wp-stream-connector-blogs.php:50 -#: ../connectors/class-wp-stream-connector-buddypress.php:123 #: ../connectors/class-wp-stream-connector-comments.php:46 -#: ../connectors/class-wp-stream-connector-edd.php:108 -#: ../connectors/class-wp-stream-connector-gravityforms.php:98 #: ../connectors/class-wp-stream-connector-menus.php:39 #: ../connectors/class-wp-stream-connector-posts.php:39 #: ../connectors/class-wp-stream-connector-taxonomies.php:54 #: ../connectors/class-wp-stream-connector-users.php:54 #: ../connectors/class-wp-stream-connector-widgets.php:58 -#: ../connectors/class-wp-stream-connector-woocommerce.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:77 msgid "Created" msgstr "Erstellt" -#: ../classes/class-wp-stream-admin.php:812 +#: ../classes/class-wp-stream-admin.php:787 msgid "Site ID" msgstr "" -#: ../classes/class-wp-stream-admin.php:818 +#: ../classes/class-wp-stream-admin.php:793 msgid "API Key" msgstr "" -#: ../classes/class-wp-stream-admin.php:828 +#: ../classes/class-wp-stream-admin.php:803 #: ../classes/class-wp-stream-list-table.php:49 -#: ../extensions/notifications/class-wp-stream-notifications.php:155 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:133 +#: ../extensions/notifications/class-wp-stream-notifications.php:136 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:125 msgid "Upgrade to Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:830 +#: ../classes/class-wp-stream-admin.php:805 msgid "Modify This Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:872 +#: ../classes/class-wp-stream-admin.php:847 #, php-format msgid "with your %sWordPress.com ID%s" msgstr "" -#: ../classes/class-wp-stream-admin.php:890 +#: ../classes/class-wp-stream-admin.php:865 +msgctxt "Haiku line 1" msgid "A transformation" msgstr "" -#: ../classes/class-wp-stream-admin.php:891 +#: ../classes/class-wp-stream-admin.php:866 +msgctxt "Haiku line 2" msgid "Like brook, to river, to sea" msgstr "" -#: ../classes/class-wp-stream-admin.php:901 +#: ../classes/class-wp-stream-admin.php:876 +msgctxt "Haiku line 3" msgid "I have a secret" msgstr "" -#: ../classes/class-wp-stream-admin.php:917 -#: ../classes/class-wp-stream-admin.php:931 -#: ../classes/class-wp-stream-admin.php:933 +#: ../classes/class-wp-stream-admin.php:892 +#: ../classes/class-wp-stream-admin.php:898 msgid "Stream Records" msgstr "Stream Aufzeichnungen" -#: ../classes/class-wp-stream-admin.php:928 -msgid " (1 site)" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:942 -msgid "Get started with Stream for Multisite!" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:943 -msgid "" -"Welcome to your Network Stream! Each site on your network must be connected " -"individually by an admin on that site for it to show here." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:954 -msgid "Stream for Multisite is coming soon!" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:955 -msgid "Access to all the Stream feeds in your network is currently disabled." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:1104 +#: ../classes/class-wp-stream-admin.php:1038 +#, fuzzy, php-format msgid "One more result..." -msgstr "Ein weiteres Resultat ..." +msgid_plural "%d more results..." +msgstr[0] "Ein weiteres Resultat ..." +msgstr[1] "Ein weiteres Resultat ..." -#: ../classes/class-wp-stream-api.php:360 +#: ../classes/class-wp-stream-api.php:356 msgid "Stream API Error." msgstr "" @@ -359,16 +309,11 @@ msgstr "" msgid "during WP Cron" msgstr "" -#: ../classes/class-wp-stream-connectors.php:102 +#: ../classes/class-wp-stream-connectors.php:98 #, php-format msgid "%s class wasn't loaded because it doesn't extends the %s class." msgstr "" -#: ../classes/class-wp-stream-dashboard-widget.php:25 -#, fuzzy -msgid "Network Stream Activity" -msgstr "Stream Aktivitäten" - #: ../classes/class-wp-stream-dashboard-widget.php:25 msgid "Stream Activity" msgstr "Stream Aktivitäten" @@ -398,6 +343,7 @@ msgstr "" #: ../classes/class-wp-stream-dashboard-widget.php:134 #, fuzzy, php-format +msgctxt "paging" msgid "%1$s of %2$s" msgstr "Edited %1$s: %2$s" @@ -421,6 +367,7 @@ msgstr "Live-Updates" #: ../classes/class-wp-stream-dashboard-widget.php:209 #, php-format +msgctxt "1: Time, 2: User profile URL, 3: User display name" msgid "%1$s ago by %3$s" msgstr "" @@ -462,39 +409,39 @@ msgstr "" msgid "Last Year" msgstr "" -#: ../classes/class-wp-stream-feeds.php:126 +#: ../classes/class-wp-stream-feeds.php:109 msgid "Stream Feeds Key" msgstr "Stream Feeds Sicherheitsschlüssel" -#: ../classes/class-wp-stream-feeds.php:131 +#: ../classes/class-wp-stream-feeds.php:114 msgid "Generate new key" msgstr "neuen Schlüsselcode erstellen" -#: ../classes/class-wp-stream-feeds.php:134 +#: ../classes/class-wp-stream-feeds.php:117 msgid "" "This is your private key used for accessing feeds of Stream Records " "securely. You can change your key at any time by generating a new one using " "the link above." msgstr "" -#: ../classes/class-wp-stream-feeds.php:136 +#: ../classes/class-wp-stream-feeds.php:119 msgid "RSS Feed" msgstr "RSS Feed" -#: ../classes/class-wp-stream-feeds.php:138 +#: ../classes/class-wp-stream-feeds.php:121 #, fuzzy msgid "ATOM Feed" msgstr "JSON Feed" -#: ../classes/class-wp-stream-feeds.php:140 +#: ../classes/class-wp-stream-feeds.php:123 msgid "JSON Feed" msgstr "JSON Feed" -#: ../classes/class-wp-stream-feeds.php:188 +#: ../classes/class-wp-stream-feeds.php:171 msgid "Access Denied" msgstr "Zugriff verweigert" -#: ../classes/class-wp-stream-feeds.php:189 +#: ../classes/class-wp-stream-feeds.php:172 msgid "" "You don't have permission to view this feed, please contact your site " "Administrator." @@ -511,8 +458,13 @@ msgid "Filter not supported." msgstr "" #: ../classes/class-wp-stream-list-table.php:48 +#, php-format msgid "Your free account is limited to viewing 24 hours of activity history." -msgstr "" +msgid_plural "" +"Your free account is limited to viewing %d days of activity " +"history." +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-list-table.php:68 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:507 @@ -525,29 +477,28 @@ msgid "Summary" msgstr "Zusammenfassung" #: ../classes/class-wp-stream-list-table.php:70 -#: ../connectors/class-wp-stream-connector-acf.php:309 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:492 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:406 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:368 msgid "Author" msgstr "Autor" #: ../classes/class-wp-stream-list-table.php:71 -#: ../classes/class-wp-stream-settings.php:629 +#: ../classes/class-wp-stream-settings.php:603 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:553 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:409 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:371 msgid "Context" msgstr "Kontext" #: ../classes/class-wp-stream-list-table.php:72 -#: ../classes/class-wp-stream-settings.php:630 +#: ../classes/class-wp-stream-settings.php:604 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:560 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:405 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:367 msgid "Action" msgstr "Aktion" #: ../classes/class-wp-stream-list-table.php:73 -#: ../classes/class-wp-stream-settings.php:631 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:410 +#: ../classes/class-wp-stream-settings.php:605 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:372 msgid "IP Address" msgstr "IP Adresse" @@ -618,8 +569,7 @@ msgid "Live updates" msgstr "Live-Updates" #: ../classes/class-wp-stream-list-table.php:836 -#: ../classes/class-wp-stream-network.php:303 -#: ../classes/class-wp-stream-settings.php:255 +#: ../classes/class-wp-stream-settings.php:237 msgid "Enabled" msgstr "Aktiviert" @@ -632,8 +582,11 @@ msgid "" msgstr "" #: ../classes/class-wp-stream-live-update.php:176 +#, php-format msgid "1 item" -msgstr "" +msgid_plural "%s items" +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-migrate.php:121 #, fuzzy @@ -686,77 +639,6 @@ msgstr "" msgid "All existing records have been deleted from the database." msgstr "Alle Einträge wurden erfolgreich gelöscht." -#: ../classes/class-wp-stream-network.php:129 -msgid "Network Admin" -msgstr "" - -#: ../classes/class-wp-stream-network.php:169 -#, fuzzy -msgid "Stream Network Settings" -msgstr "Stream Einstellungen" - -#: ../classes/class-wp-stream-network.php:170 -#, fuzzy -msgid "Network Settings" -msgstr "Stream Einstellungen" - -#: ../classes/class-wp-stream-network.php:179 -#, fuzzy -msgid "New Site Settings" -msgstr "Stream Einstellungen" - -#: ../classes/class-wp-stream-network.php:180 -msgid "Site Defaults" -msgstr "" - -#: ../classes/class-wp-stream-network.php:234 -msgid "These settings apply to all sites on the network." -msgstr "" - -#: ../classes/class-wp-stream-network.php:237 -msgid "" -"These default settings will apply to new sites created on the network. These " -"settings do not alter existing sites." -msgstr "" - -#: ../classes/class-wp-stream-network.php:302 -#, fuzzy -msgid "Enable Site Access" -msgstr "Zugriff für Benutzerrolle" - -#: ../classes/class-wp-stream-network.php:305 -msgid "" -"When site access is disabled Stream can only be accessed from the network " -"administration." -msgstr "" - -#: ../classes/class-wp-stream-network.php:321 -#, fuzzy -msgid "Reset Site Settings" -msgstr "Stream Einstellungen" - -#: ../classes/class-wp-stream-network.php:324 -#, fuzzy -msgid "Warning: Clicking this will override all site settings with defaults." -msgstr "" -"Achtung: Alle gespeicherten Aufzeichnungen werden bei Klick auf den Link " -"endgültig aus der Datenbank gelöscht." - -#: ../classes/class-wp-stream-network.php:408 -#, fuzzy -msgid "Settings saved." -msgstr "Einstellungen" - -#: ../classes/class-wp-stream-network.php:463 -msgid "sites" -msgstr "" - -#: ../classes/class-wp-stream-network.php:480 -#: ../classes/class-wp-stream-network.php:530 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:428 -msgid "Site" -msgstr "" - #: ../classes/class-wp-stream-pointers.php:144 #, fuzzy msgid "Stream Extensions" @@ -770,11 +652,11 @@ msgstr "" msgid "Could not validate record data." msgstr "" -#: ../classes/class-wp-stream-settings.php:85 +#: ../classes/class-wp-stream-settings.php:75 msgid "There was an error in the request" msgstr "" -#: ../classes/class-wp-stream-settings.php:129 +#: ../classes/class-wp-stream-settings.php:119 #, php-format msgid "" "ID: %d\n" @@ -783,24 +665,24 @@ msgid "" "Role: %s" msgstr "" -#: ../classes/class-wp-stream-settings.php:148 +#: ../classes/class-wp-stream-settings.php:138 msgid "" "Actions performed by the system when a user is not logged in (e.g. auto site " "upgrader, or invoking WP-CLI without --user)" msgstr "" -#: ../classes/class-wp-stream-settings.php:226 +#: ../classes/class-wp-stream-settings.php:208 #: ../connectors/class-wp-stream-connector-settings.php:122 msgid "General" msgstr "Allgemein" -#: ../classes/class-wp-stream-settings.php:230 +#: ../classes/class-wp-stream-settings.php:212 #: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:36 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:60 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:55 msgid "Role Access" msgstr "Zugriff für Benutzerrolle" -#: ../classes/class-wp-stream-settings.php:232 +#: ../classes/class-wp-stream-settings.php:214 msgid "" "Users from the selected roles above will have permission to view Stream " "Records. However, only site Administrators can access Stream Settings." @@ -809,11 +691,11 @@ msgstr "" "Einträge aufrufen. Die Stream Einstellungen allerdings können nur von " "Administratoren aufgerufen werden." -#: ../classes/class-wp-stream-settings.php:238 +#: ../classes/class-wp-stream-settings.php:220 msgid "Private Feeds" msgstr "Private Feeds" -#: ../classes/class-wp-stream-settings.php:241 +#: ../classes/class-wp-stream-settings.php:223 #, php-format msgid "" "Users from the selected roles above will be given a private key found in " @@ -821,93 +703,90 @@ msgid "" "%sflush rewrite rules%s on your site after changing this setting." msgstr "" -#: ../classes/class-wp-stream-settings.php:245 +#: ../classes/class-wp-stream-settings.php:227 msgid "View Profile" msgstr "Profil anzeigen" -#: ../classes/class-wp-stream-settings.php:251 +#: ../classes/class-wp-stream-settings.php:233 #, fuzzy msgid "View Codex" msgstr "Profil anzeigen" -#: ../classes/class-wp-stream-settings.php:261 +#: ../classes/class-wp-stream-settings.php:243 msgid "Exclude" msgstr "" -#: ../classes/class-wp-stream-settings.php:265 +#: ../classes/class-wp-stream-settings.php:247 msgid "Exclude Rules" msgstr "" -#: ../classes/class-wp-stream-settings.php:267 +#: ../classes/class-wp-stream-settings.php:249 msgid "" "Create rules for excluding certain kinds of records from appearing in Stream." msgstr "" -#: ../classes/class-wp-stream-settings.php:595 +#: ../classes/class-wp-stream-settings.php:569 #, php-format msgid "Any %s" msgstr "" -#: ../classes/class-wp-stream-settings.php:610 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +#: ../classes/class-wp-stream-settings.php:584 msgid "Add New Rule" msgstr "" -#: ../classes/class-wp-stream-settings.php:611 +#: ../classes/class-wp-stream-settings.php:585 #, fuzzy msgid "Delete Selected Rules" msgstr "Lösche alle Aufzeichnungen" -#: ../classes/class-wp-stream-settings.php:628 +#: ../classes/class-wp-stream-settings.php:602 #, fuzzy msgid "Author or Role" msgstr "Autor" -#: ../classes/class-wp-stream-settings.php:632 +#: ../classes/class-wp-stream-settings.php:606 #, fuzzy msgid "Filters" msgstr "filtern" -#: ../classes/class-wp-stream-settings.php:656 +#: ../classes/class-wp-stream-settings.php:630 +#, php-format msgid "1 user" -msgstr "" +msgid_plural "%s users" +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-settings.php:679 +#: ../classes/class-wp-stream-settings.php:653 msgid "Any Author or Role" msgstr "" -#: ../classes/class-wp-stream-settings.php:720 +#: ../classes/class-wp-stream-settings.php:694 #, fuzzy msgid "Any Context" msgstr "Kontext" -#: ../classes/class-wp-stream-settings.php:739 +#: ../classes/class-wp-stream-settings.php:713 #, fuzzy msgid "Any Action" msgstr "Aktion" -#: ../classes/class-wp-stream-settings.php:750 +#: ../classes/class-wp-stream-settings.php:724 #, fuzzy msgid "Any IP Address" msgstr "IP Adresse" -#: ../classes/class-wp-stream-settings.php:787 +#: ../classes/class-wp-stream-settings.php:761 msgid "No rules found." msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:71 +msgctxt "acf" msgid "ACF" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:82 -#: ../connectors/class-wp-stream-connector-bbpress.php:89 -#: ../connectors/class-wp-stream-connector-blogs.php:49 -#: ../connectors/class-wp-stream-connector-buddypress.php:124 -#: ../connectors/class-wp-stream-connector-edd.php:109 #: ../connectors/class-wp-stream-connector-editor.php:54 -#: ../connectors/class-wp-stream-connector-gravityforms.php:99 #: ../connectors/class-wp-stream-connector-installer.php:48 -#: ../connectors/class-wp-stream-connector-jetpack.php:85 #: ../connectors/class-wp-stream-connector-media.php:43 #: ../connectors/class-wp-stream-connector-menus.php:40 #: ../connectors/class-wp-stream-connector-posts.php:38 @@ -915,27 +794,16 @@ msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:55 #: ../connectors/class-wp-stream-connector-users.php:53 #: ../connectors/class-wp-stream-connector-widgets.php:62 -#: ../connectors/class-wp-stream-connector-woocommerce.php:99 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:78 msgid "Updated" msgstr "Aktuallisiert" #: ../connectors/class-wp-stream-connector-acf.php:83 -#: ../connectors/class-wp-stream-connector-edd.php:110 -#: ../connectors/class-wp-stream-connector-gravityforms.php:102 -#: ../connectors/class-wp-stream-connector-jetpack.php:86 #: ../connectors/class-wp-stream-connector-widgets.php:55 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:79 msgid "Added" msgstr "Hinzugefügt" #: ../connectors/class-wp-stream-connector-acf.php:84 -#: ../connectors/class-wp-stream-connector-bbpress.php:92 -#: ../connectors/class-wp-stream-connector-blogs.php:52 -#: ../connectors/class-wp-stream-connector-buddypress.php:127 #: ../connectors/class-wp-stream-connector-comments.php:55 -#: ../connectors/class-wp-stream-connector-edd.php:111 -#: ../connectors/class-wp-stream-connector-gravityforms.php:103 #: ../connectors/class-wp-stream-connector-installer.php:47 #: ../connectors/class-wp-stream-connector-media.php:44 #: ../connectors/class-wp-stream-connector-menus.php:41 @@ -943,142 +811,173 @@ msgstr "Hinzugefügt" #: ../connectors/class-wp-stream-connector-taxonomies.php:56 #: ../connectors/class-wp-stream-connector-users.php:55 #: ../connectors/class-wp-stream-connector-widgets.php:59 -#: ../connectors/class-wp-stream-connector-woocommerce.php:102 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:80 msgid "Deleted" msgstr "Gelöscht" #: ../connectors/class-wp-stream-connector-acf.php:95 +#, fuzzy +msgctxt "acf" msgid "Field Groups" -msgstr "" +msgstr "\"%s\" gelöscht" #: ../connectors/class-wp-stream-connector-acf.php:96 +msgctxt "acf" msgid "Fields" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:97 +msgctxt "acf" msgid "Rules" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:98 -#: ../connectors/class-wp-stream-connector-jetpack.php:101 #, fuzzy +msgctxt "acf" msgid "Options" msgstr "Aktionen" #: ../connectors/class-wp-stream-connector-acf.php:99 +msgctxt "acf" msgid "Values" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:224 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" field in \"%2$s\" %3$s" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-acf.php:252 +msgctxt "acf" msgid "High (after title)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:253 +msgctxt "acf" msgid "Normal (after content)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:254 +msgctxt "acf" msgid "Side" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:258 -#, php-format +#, fuzzy, php-format +msgctxt "acf" msgid "Position of \"%1$s\" updated to \"%2$s\"" -msgstr "" +msgstr "\"%1$s\" mit \"%2$s\" verbunden" #: ../connectors/class-wp-stream-connector-acf.php:277 +msgctxt "acf" msgid "Seamless (no metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:278 +msgctxt "acf" msgid "Standard (WP metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:282 #, fuzzy, php-format +msgctxt "acf" msgid "Style of \"%1$s\" updated to \"%2$s\"" msgstr "\"%1$s\" mit \"%2$s\" verbunden" #: ../connectors/class-wp-stream-connector-acf.php:301 #, fuzzy +msgctxt "acf" msgid "Permalink" msgstr "Permalinks" #: ../connectors/class-wp-stream-connector-acf.php:302 +#, fuzzy +msgctxt "acf" msgid "Content Editor" -msgstr "" +msgstr "Kontext" #: ../connectors/class-wp-stream-connector-acf.php:303 +msgctxt "acf" msgid "Excerpt" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:304 +msgctxt "acf" msgid "Custom Fields" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:305 -#: ../connectors/class-wp-stream-connector-settings.php:125 +#, fuzzy +msgctxt "acf" msgid "Discussion" msgstr "Diskussion" #: ../connectors/class-wp-stream-connector-acf.php:306 -#: ../connectors/class-wp-stream-connector-comments.php:36 -#: ../connectors/class-wp-stream-connector-comments.php:68 -#: ../connectors/class-wp-stream-connector-jetpack.php:109 +#, fuzzy +msgctxt "acf" msgid "Comments" msgstr "Kommentare" #: ../connectors/class-wp-stream-connector-acf.php:307 #, fuzzy +msgctxt "acf" msgid "Revisions" msgstr "Revision" #: ../connectors/class-wp-stream-connector-acf.php:308 +msgctxt "acf" msgid "Slug" msgstr "" +#: ../connectors/class-wp-stream-connector-acf.php:309 +#, fuzzy +msgctxt "acf" +msgid "Author" +msgstr "Autor" + #: ../connectors/class-wp-stream-connector-acf.php:310 #, fuzzy +msgctxt "acf" msgid "Format" msgstr "Formatierung" #: ../connectors/class-wp-stream-connector-acf.php:311 +msgctxt "acf" msgid "Featured Image" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:312 -#: ../connectors/class-wp-stream-connector-edd.php:129 #, fuzzy +msgctxt "acf" msgid "Categories" msgstr "Kategorie-Basis" #: ../connectors/class-wp-stream-connector-acf.php:313 -#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "acf" msgid "Tags" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:314 +msgctxt "acf" msgid "Send Trackbacks" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:318 +#, fuzzy +msgctxt "acf" msgid "All screens" -msgstr "" +msgstr "Aktion" #: ../connectors/class-wp-stream-connector-acf.php:320 +msgctxt "acf" msgid "No screens" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:326 -#, php-format +#, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" set to display on \"%2$s\"" -msgstr "" +msgstr "\"%1$s\" mit \"%2$s\" verbunden" #: ../connectors/class-wp-stream-connector-acf.php:383 msgid "user" @@ -1086,11 +985,13 @@ msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:396 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" of \"%2$s\" %3$s updated" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-acf.php:434 #, php-format +msgctxt "acf" msgid "Updated rules of \"%1$s\" (%2$d added, %3$d deleted)" msgstr "" @@ -1098,102 +999,116 @@ msgstr "" msgid "field group" msgstr "" -#: ../connectors/class-wp-stream-connector-acf.php:494 -#, php-format +#: ../connectors/class-wp-stream-connector-acf.php:495 +#, fuzzy, php-format +msgctxt "acf" msgid "Updated Order of \"%1$s\" from %2$d to %3$d" -msgstr "" +msgstr "\"%1$s\" mit \"%2$s\" verbunden" #: ../connectors/class-wp-stream-connector-bbpress.php:78 #, fuzzy +msgctxt "bbpress" msgid "bbPress" msgstr "WordPress" +#: ../connectors/class-wp-stream-connector-bbpress.php:88 +#, fuzzy +msgctxt "bbpress" +msgid "Created" +msgstr "Erstellt" + +#: ../connectors/class-wp-stream-connector-bbpress.php:89 +#, fuzzy +msgctxt "bbpress" +msgid "Updated" +msgstr "Aktuallisiert" + #: ../connectors/class-wp-stream-connector-bbpress.php:90 -#: ../connectors/class-wp-stream-connector-buddypress.php:125 -#: ../connectors/class-wp-stream-connector-gravityforms.php:422 -#: ../connectors/class-wp-stream-connector-installer.php:45 -#: ../connectors/class-wp-stream-connector-jetpack.php:79 +#, fuzzy +msgctxt "bbpress" msgid "Activated" msgstr "Aktiviert" #: ../connectors/class-wp-stream-connector-bbpress.php:91 -#: ../connectors/class-wp-stream-connector-buddypress.php:126 -#: ../connectors/class-wp-stream-connector-gravityforms.php:423 -#: ../connectors/class-wp-stream-connector-installer.php:46 -#: ../connectors/class-wp-stream-connector-widgets.php:60 +#, fuzzy +msgctxt "bbpress" msgid "Deactivated" msgstr "Deaktiviert" +#: ../connectors/class-wp-stream-connector-bbpress.php:92 +#, fuzzy +msgctxt "bbpress" +msgid "Deleted" +msgstr "Gelöscht" + #: ../connectors/class-wp-stream-connector-bbpress.php:93 -#: ../connectors/class-wp-stream-connector-comments.php:51 -#: ../connectors/class-wp-stream-connector-edd.php:112 -#: ../connectors/class-wp-stream-connector-gravityforms.php:104 -#: ../connectors/class-wp-stream-connector-gravityforms.php:424 -#: ../connectors/class-wp-stream-connector-posts.php:40 -#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +#, fuzzy +msgctxt "bbpress" msgid "Trashed" msgstr "Weggeworfen" #: ../connectors/class-wp-stream-connector-bbpress.php:94 -#: ../connectors/class-wp-stream-connector-comments.php:52 -#: ../connectors/class-wp-stream-connector-edd.php:113 -#: ../connectors/class-wp-stream-connector-gravityforms.php:105 -#: ../connectors/class-wp-stream-connector-gravityforms.php:425 -#: ../connectors/class-wp-stream-connector-posts.php:41 +#, fuzzy +msgctxt "bbpress" msgid "Restored" msgstr "Wiederhergestellt" #: ../connectors/class-wp-stream-connector-bbpress.php:95 -#: ../connectors/class-wp-stream-connector-edd.php:114 #, fuzzy +msgctxt "bbpress" msgid "Generated" msgstr "Allgemein" #: ../connectors/class-wp-stream-connector-bbpress.php:96 -#: ../connectors/class-wp-stream-connector-edd.php:115 -#: ../connectors/class-wp-stream-connector-gravityforms.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:82 #, fuzzy +msgctxt "bbpress" msgid "Imported" msgstr "Sortiert" #: ../connectors/class-wp-stream-connector-bbpress.php:97 -#: ../connectors/class-wp-stream-connector-edd.php:116 -#: ../connectors/class-wp-stream-connector-gravityforms.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:81 #, fuzzy +msgctxt "bbpress" msgid "Exported" msgstr "Sortiert" #: ../connectors/class-wp-stream-connector-bbpress.php:98 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgctxt "bbpress" msgid "Closed" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:99 +msgctxt "bbpress" msgid "Opened" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:100 +msgctxt "bbpress" msgid "Sticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:101 +msgctxt "bbpress" msgid "Unsticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:102 -#: ../connectors/class-wp-stream-connector-buddypress.php:128 #, fuzzy +msgctxt "bbpress" msgid "Marked as spam" msgstr "Markiert als „kein Spam“" #: ../connectors/class-wp-stream-connector-bbpress.php:103 -#: ../connectors/class-wp-stream-connector-buddypress.php:129 #, fuzzy +msgctxt "bbpress" msgid "Unmarked as spam" msgstr "Markiert als „kein Spam“" +#: ../connectors/class-wp-stream-connector-bbpress.php:114 +#, fuzzy +msgctxt "bbpress" +msgid "Settings" +msgstr "Einstellungen" + #: ../connectors/class-wp-stream-connector-bbpress.php:131 #: ../connectors/class-wp-stream-connector-buddypress.php:164 #: ../connectors/class-wp-stream-connector-buddypress.php:223 @@ -1201,8 +1116,8 @@ msgstr "Markiert als „kein Spam“" #: ../connectors/class-wp-stream-connector-buddypress.php:254 #: ../connectors/class-wp-stream-connector-comments.php:124 #: ../connectors/class-wp-stream-connector-gravityforms.php:137 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:126 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:133 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:117 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:124 msgid "Edit" msgstr "Bearbeiten" @@ -1223,133 +1138,88 @@ msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:209 #, fuzzy, php-format +msgctxt "1: Action, 2: Topic title" msgid "%1$s \"%2$s\" topic" msgstr "\"%1$s\" %2$s aktualisiert" -#: ../connectors/class-wp-stream-connector-blogs.php:39 -msgid "Sites" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:51 -msgid "Archived" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:85 -#: ../connectors/class-wp-stream-connector-blogs.php:90 +#: ../connectors/class-wp-stream-connector-buddypress.php:113 #, fuzzy -msgid "Site Admin" -msgstr "Seitentitel" +msgctxt "buddypress" +msgid "BuddyPress" +msgstr "WordPress" -#: ../connectors/class-wp-stream-connector-blogs.php:101 +#: ../connectors/class-wp-stream-connector-buddypress.php:123 #, fuzzy -msgid "Site Settings" -msgstr "Stream Einstellungen" - -#: ../connectors/class-wp-stream-connector-blogs.php:116 -#, php-format -msgid "A new site called \"%1$s\" has been created." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:139 -#, php-format -msgid "A new site called \"%1$s\" has been registered." -msgstr "" +msgctxt "buddypress" +msgid "Created" +msgstr "Erstellt" -#: ../connectors/class-wp-stream-connector-blogs.php:170 -#, php-format -msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." -msgstr "" +#: ../connectors/class-wp-stream-connector-buddypress.php:124 +#, fuzzy +msgctxt "buddypress" +msgid "Updated" +msgstr "Aktuallisiert" -#: ../connectors/class-wp-stream-connector-blogs.php:201 -#, php-format -msgid "%1$s has been removed from the site \"%2$s\"." -msgstr "" +#: ../connectors/class-wp-stream-connector-buddypress.php:125 +#, fuzzy +msgctxt "buddypress" +msgid "Activated" +msgstr "Aktiviert" -#: ../connectors/class-wp-stream-connector-blogs.php:220 -#: ../connectors/class-wp-stream-connector-gravityforms.php:650 +#: ../connectors/class-wp-stream-connector-buddypress.php:126 #, fuzzy -msgid "marked as spam" -msgstr "Markiert als „kein Spam“" +msgctxt "buddypress" +msgid "Deactivated" +msgstr "Deaktiviert" -#: ../connectors/class-wp-stream-connector-blogs.php:228 +#: ../connectors/class-wp-stream-connector-buddypress.php:127 #, fuzzy -msgid "marked as not spam" -msgstr "Markiert als „kein Spam“" +msgctxt "buddypress" +msgid "Deleted" +msgstr "Gelöscht" -#: ../connectors/class-wp-stream-connector-blogs.php:236 +#: ../connectors/class-wp-stream-connector-buddypress.php:128 #, fuzzy -msgid "marked as mature" +msgctxt "buddypress" +msgid "Marked as spam" msgstr "Markiert als „kein Spam“" -#: ../connectors/class-wp-stream-connector-blogs.php:244 +#: ../connectors/class-wp-stream-connector-buddypress.php:129 #, fuzzy -msgid "marked as not mature" +msgctxt "buddypress" +msgid "Unmarked as spam" msgstr "Markiert als „kein Spam“" -#: ../connectors/class-wp-stream-connector-blogs.php:252 -msgid "archived" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:260 -msgid "restored from archive" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:268 -#: ../connectors/class-wp-stream-connector-gravityforms.php:497 -#, fuzzy -msgid "deleted" -msgstr "Gelöscht" - -#: ../connectors/class-wp-stream-connector-blogs.php:276 -#: ../connectors/class-wp-stream-connector-gravityforms.php:652 -#, fuzzy -msgid "restored" -msgstr "Wiederhergestellt" - -#: ../connectors/class-wp-stream-connector-blogs.php:286 -#, fuzzy -msgid "marked as public" -msgstr "Markiert als „kein Spam“" - -#: ../connectors/class-wp-stream-connector-blogs.php:288 -#, fuzzy -msgid "marked as private" -msgstr "Markiert als „kein Spam“" - -#: ../connectors/class-wp-stream-connector-blogs.php:302 -#, php-format -msgid "\"%1$s\" has been %2$s." -msgstr "" - -#: ../connectors/class-wp-stream-connector-buddypress.php:113 -#, fuzzy -msgid "BuddyPress" -msgstr "WordPress" - -#: ../connectors/class-wp-stream-connector-buddypress.php:130 -msgid "Promoted" +#: ../connectors/class-wp-stream-connector-buddypress.php:130 +msgctxt "buddypress" +msgid "Promoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:131 +msgctxt "buddypress" msgid "Demoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:142 #, fuzzy +msgctxt "buddypress" msgid "Components" msgstr "Kommentare" #: ../connectors/class-wp-stream-connector-buddypress.php:143 +msgctxt "buddypress" msgid "Groups" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:144 #, fuzzy +msgctxt "buddypress" msgid "Activity" msgstr "Aktiviert" #: ../connectors/class-wp-stream-connector-buddypress.php:145 #, fuzzy +msgctxt "buddypress" msgid "Profile fields" msgstr "Profil bearbeiten" @@ -1371,7 +1241,7 @@ msgstr "Profil bearbeiten" #: ../connectors/class-wp-stream-connector-posts.php:106 #: ../connectors/class-wp-stream-connector-taxonomies.php:94 #: ../connectors/class-wp-stream-connector-woocommerce.php:220 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:174 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:165 msgid "View" msgstr "Anzeigen" @@ -1403,47 +1273,57 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:263 #: ../extensions/notifications/views/form-templates.php:19 #: ../extensions/notifications/views/form-templates.php:78 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:181 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:173 #, fuzzy msgid "Delete" msgstr "Gelöscht" #: ../connectors/class-wp-stream-connector-buddypress.php:284 #: ../connectors/class-wp-stream-connector-buddypress.php:288 +msgctxt "buddypress" msgid "Toolbar" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:292 +msgctxt "buddypress" msgid "Account Deletion" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:296 #, fuzzy +msgctxt "buddypress" msgid "Profile Syncing" msgstr "Profil bearbeiten" #: ../connectors/class-wp-stream-connector-buddypress.php:300 +msgctxt "buddypress" msgid "Group Creation" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:304 +msgctxt "buddypress" msgid "bbPress Configuration" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:308 +msgctxt "buddypress" msgid "Blog & Forum Comments" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:312 +#, fuzzy +msgctxt "buddypress" msgid "Activity auto-refresh" -msgstr "" +msgstr "Speiche Protokoll für" #: ../connectors/class-wp-stream-connector-buddypress.php:316 +msgctxt "buddypress" msgid "Akismet" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:320 #, fuzzy +msgctxt "buddypress" msgid "Avatar Uploads" msgstr "Avataranzeige" @@ -1484,13 +1364,13 @@ msgid "\"%1$s\" component %2$s" msgstr "Edited %1$s: %2$s" #: ../connectors/class-wp-stream-connector-buddypress.php:432 +msgctxt "buddypress" msgid "Register" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:433 -#: ../connectors/class-wp-stream-connector-jetpack.php:159 -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 #, fuzzy +msgctxt "buddypress" msgid "Activate" msgstr "Aktiviert" @@ -1569,10 +1449,12 @@ msgid "Removed \"%2$s\" from \"%1$s\"" msgstr "\"%1$s\" mit \"%2$s\" verbunden" #: ../connectors/class-wp-stream-connector-buddypress.php:665 +msgctxt "buddypress" msgid "Administrator" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:666 +msgctxt "buddypress" msgid "Moderator" msgstr "" @@ -1588,6 +1470,7 @@ msgstr "\"%1$s\" mit \"%2$s\" verbunden" #: ../connectors/class-wp-stream-connector-buddypress.php:682 #, fuzzy +msgctxt "buddypress" msgid "Member" msgstr "Mitgliedschaft" @@ -1621,6 +1504,11 @@ msgstr "" msgid "Deleted profile field group \"%s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:36 +#: ../connectors/class-wp-stream-connector-comments.php:68 +msgid "Comments" +msgstr "Kommentare" + #: ../connectors/class-wp-stream-connector-comments.php:47 msgid "Edited" msgstr "Bearbeitet" @@ -1637,6 +1525,18 @@ msgstr "Genehmigt" msgid "Unapproved" msgstr "Untertitel" +#: ../connectors/class-wp-stream-connector-comments.php:51 +#: ../connectors/class-wp-stream-connector-gravityforms.php:424 +#: ../connectors/class-wp-stream-connector-posts.php:40 +msgid "Trashed" +msgstr "Weggeworfen" + +#: ../connectors/class-wp-stream-connector-comments.php:52 +#: ../connectors/class-wp-stream-connector-gravityforms.php:425 +#: ../connectors/class-wp-stream-connector-posts.php:41 +msgid "Restored" +msgstr "Wiederhergestellt" + #: ../connectors/class-wp-stream-connector-comments.php:53 msgid "Marked as Spam" msgstr "als Spam markiert" @@ -1713,88 +1613,166 @@ msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:248 #, php-format +msgctxt "" +"1: Parent comment's author, 2: Comment author, 3: Post title, 4: Comment " +"status, 5: Comment type" msgid "Reply to %1$s's %5$s by %2$s on %3$s %4$s" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:261 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title 3: Comment status, 4: Comment type" msgid "New %4$s by %1$s on %2$s %3$s" -msgstr "" +msgstr "Edited %1$s: %2$s" #: ../connectors/class-wp-stream-connector-comments.php:295 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s edited" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-comments.php:327 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s deleted permanently" -msgstr "" +msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-comments.php:359 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s trashed" msgstr "Entwurf: \"%1$s\" in %2$s erstellt " #: ../connectors/class-wp-stream-connector-comments.php:391 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s restored" msgstr "\"%1$s\" %2$s erstellt" #: ../connectors/class-wp-stream-connector-comments.php:423 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s marked as spam" -msgstr "" +msgstr "Entwurf: \"%1$s\" in %2$s erstellt " #: ../connectors/class-wp-stream-connector-comments.php:455 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s unmarked as spam" -msgstr "" +msgstr "Entwurf: \"%1$s\" in %2$s erstellt " #: ../connectors/class-wp-stream-connector-comments.php:489 #, fuzzy, php-format +msgctxt "" +"Comment status transition. 1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s %2$s" msgstr "Edited %1$s: %2$s" #: ../connectors/class-wp-stream-connector-comments.php:524 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "Duplicate %3$s by %1$s prevented on %2$s" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:98 +msgctxt "edd" msgid "Easy Digital Downloads" msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:108 +#, fuzzy +msgctxt "edd" +msgid "Created" +msgstr "Erstellt" + +#: ../connectors/class-wp-stream-connector-edd.php:109 +#, fuzzy +msgctxt "edd" +msgid "Updated" +msgstr "Aktuallisiert" + +#: ../connectors/class-wp-stream-connector-edd.php:110 +#, fuzzy +msgctxt "edd" +msgid "Added" +msgstr "Hinzugefügt" + +#: ../connectors/class-wp-stream-connector-edd.php:111 +#, fuzzy +msgctxt "edd" +msgid "Deleted" +msgstr "Gelöscht" + +#: ../connectors/class-wp-stream-connector-edd.php:112 +#, fuzzy +msgctxt "edd" +msgid "Trashed" +msgstr "Weggeworfen" + +#: ../connectors/class-wp-stream-connector-edd.php:113 +#, fuzzy +msgctxt "edd" +msgid "Restored" +msgstr "Wiederhergestellt" + +#: ../connectors/class-wp-stream-connector-edd.php:114 +#, fuzzy +msgctxt "edd" +msgid "Generated" +msgstr "Allgemein" + +#: ../connectors/class-wp-stream-connector-edd.php:115 +#, fuzzy +msgctxt "edd" +msgid "Imported" +msgstr "Sortiert" + +#: ../connectors/class-wp-stream-connector-edd.php:116 +#, fuzzy +msgctxt "edd" +msgid "Exported" +msgstr "Sortiert" + #: ../connectors/class-wp-stream-connector-edd.php:117 +msgctxt "edd" msgid "Revoked" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:128 +msgctxt "edd" msgid "Downloads" msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:129 +#, fuzzy +msgctxt "edd" +msgid "Categories" +msgstr "Kategorie-Basis" + +#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "edd" +msgid "Tags" +msgstr "" + #: ../connectors/class-wp-stream-connector-edd.php:131 #, fuzzy +msgctxt "edd" msgid "Discounts" msgstr "Bereiche" #: ../connectors/class-wp-stream-connector-edd.php:132 -#: ../extensions/reports/class-wp-stream-reports.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:146 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:56 +#, fuzzy +msgctxt "edd" msgid "Reports" -msgstr "" +msgstr "Stream Aufzeichnungen" #: ../connectors/class-wp-stream-connector-edd.php:133 +msgctxt "edd" msgid "API Keys" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:155 #: ../connectors/class-wp-stream-connector-edd.php:182 -#: ../connectors/class-wp-stream-connector-posts.php:103 -#: ../connectors/class-wp-stream-connector-taxonomies.php:93 -#: ../connectors/class-wp-stream-connector-woocommerce.php:216 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:171 #, php-format msgid "Edit %s" msgstr "%s bearbeiten" @@ -1823,6 +1801,7 @@ msgid "Reissue" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:273 +msgctxt "edd" msgid "Banned emails" msgstr "" @@ -1916,6 +1895,7 @@ msgstr "Plugins" #: ../connectors/class-wp-stream-connector-editor.php:112 #, fuzzy, php-format +msgctxt "1: File name, 2: Theme/plugin name" msgid "\"%1$s\" in \"%2$s\" updated" msgstr "\"%1$s\" %2$s aktualisiert" @@ -1931,27 +1911,88 @@ msgid "Theme Details" msgstr "Themes" #: ../connectors/class-wp-stream-connector-gravityforms.php:88 +msgctxt "gravityforms" msgid "Gravity Forms" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:98 +#, fuzzy +msgctxt "gravityforms" +msgid "Created" +msgstr "Erstellt" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:99 +#, fuzzy +msgctxt "gravityforms" +msgid "Updated" +msgstr "Aktuallisiert" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:100 +#, fuzzy +msgctxt "gravityforms" +msgid "Exported" +msgstr "Sortiert" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:101 +#, fuzzy +msgctxt "gravityforms" +msgid "Imported" +msgstr "Sortiert" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:102 +#, fuzzy +msgctxt "gravityforms" +msgid "Added" +msgstr "Hinzugefügt" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:103 +#, fuzzy +msgctxt "gravityforms" +msgid "Deleted" +msgstr "Gelöscht" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:104 +#, fuzzy +msgctxt "gravityforms" +msgid "Trashed" +msgstr "Weggeworfen" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:105 +#, fuzzy +msgctxt "gravityforms" +msgid "Restored" +msgstr "Wiederhergestellt" + #: ../connectors/class-wp-stream-connector-gravityforms.php:106 #, fuzzy +msgctxt "gravityforms" msgid "Duplicated" msgstr "Duplikat" #: ../connectors/class-wp-stream-connector-gravityforms.php:117 +#, fuzzy +msgctxt "gravityforms" msgid "Forms" -msgstr "" +msgstr "Formatierung" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#, fuzzy +msgctxt "gravityforms" +msgid "Settings" +msgstr "Einstellungen" #: ../connectors/class-wp-stream-connector-gravityforms.php:119 +msgctxt "gravityforms" msgid "Import/Export" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:120 +msgctxt "gravityforms" msgid "Entries" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:121 +msgctxt "gravityforms" msgid "Notes" msgstr "" @@ -1961,26 +2002,32 @@ msgid "Edit Settings" msgstr "Bearbeite %s Einstellungen" #: ../connectors/class-wp-stream-connector-gravityforms.php:181 +msgctxt "gravityforms" msgid "Output CSS" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:184 +msgctxt "gravityforms" msgid "Output HTML5" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:187 +msgctxt "gravityforms" msgid "No-Conflict Mode" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:190 +msgctxt "gravityforms" msgid "Currency" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:193 +msgctxt "gravityforms" msgid "reCAPTCHA Public Key" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:196 +msgctxt "gravityforms" msgid "reCAPTCHA Private Key" msgstr "" @@ -2025,11 +2072,27 @@ msgstr "%s's Password wurde zurückgesetzt" msgid "\"%1$s\" notification %2$s from \"%3$s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:422 +#: ../connectors/class-wp-stream-connector-installer.php:45 +msgid "Activated" +msgstr "Aktiviert" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:423 +#: ../connectors/class-wp-stream-connector-installer.php:46 +#: ../connectors/class-wp-stream-connector-widgets.php:60 +msgid "Deactivated" +msgstr "Deaktiviert" + #: ../connectors/class-wp-stream-connector-gravityforms.php:496 #, php-format msgid "Gravity Forms license key %s" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:497 +#, fuzzy +msgid "deleted" +msgstr "Gelöscht" + #: ../connectors/class-wp-stream-connector-gravityforms.php:510 #, php-format msgid "\"%s\" form exported" @@ -2069,11 +2132,21 @@ msgstr "" msgid "Note #%1$d deleted from lead #%2$d on \"%3$s\" form" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:650 +#, fuzzy +msgid "marked as spam" +msgstr "Markiert als „kein Spam“" + #: ../connectors/class-wp-stream-connector-gravityforms.php:651 #, fuzzy msgid "trashed" msgstr "Weggeworfen" +#: ../connectors/class-wp-stream-connector-gravityforms.php:652 +#, fuzzy +msgid "restored" +msgstr "Wiederhergestellt" + #: ../connectors/class-wp-stream-connector-gravityforms.php:661 #: ../connectors/class-wp-stream-connector-gravityforms.php:708 #, php-format @@ -2123,14 +2196,20 @@ msgid "View Release Notes" msgstr "Release Notes anzeigen" #: ../connectors/class-wp-stream-connector-installer.php:149 -#, php-format +#, fuzzy, php-format +msgctxt "" +"Plugin/theme installation. 1: Type (plugin/theme), 2: Plugin/theme name, 3: " +"Plugin/theme version" msgid "Installed %1$s: %2$s %3$s" -msgstr "" +msgstr "Edited %1$s: %2$s" #: ../connectors/class-wp-stream-connector-installer.php:157 -#, php-format +#, fuzzy, php-format +msgctxt "" +"Plugin/theme update. 1: Type (plugin/theme), 2: Plugin/theme name, 3: Plugin/" +"theme version" msgid "Updated %1$s: %2$s %3$s" -msgstr "" +msgstr "\"%1$s\" mit \"%2$s\" verbunden" #: ../connectors/class-wp-stream-connector-installer.php:221 #: ../connectors/class-wp-stream-connector-installer.php:239 @@ -2139,14 +2218,16 @@ msgid "network wide" msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:225 -#, php-format +#, fuzzy, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin activated %2$s" -msgstr "" +msgstr "\"%1$s\" mit \"%2$s\" verbunden" #: ../connectors/class-wp-stream-connector-installer.php:243 -#, php-format +#, fuzzy, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin deactivated %2$s" -msgstr "" +msgstr "\"%1$s\" mit \"%2$s\" verbunden" #: ../connectors/class-wp-stream-connector-installer.php:258 #, php-format @@ -2174,129 +2255,184 @@ msgid "WordPress updated to %s" msgstr "WordPress aktualisiert auf %s" #: ../connectors/class-wp-stream-connector-jetpack.php:69 +msgctxt "jetpack" msgid "Jetpack" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:79 +#, fuzzy +msgctxt "jetpack" +msgid "Activated" +msgstr "Aktiviert" + #: ../connectors/class-wp-stream-connector-jetpack.php:80 #, fuzzy +msgctxt "jetpack" msgid "Dectivated" msgstr "Deaktiviert" #: ../connectors/class-wp-stream-connector-jetpack.php:81 #, fuzzy +msgctxt "jetpack" msgid "Connected" msgstr "Bereich" #: ../connectors/class-wp-stream-connector-jetpack.php:82 #, fuzzy +msgctxt "jetpack" msgid "Disconnected" msgstr "Bereiche" #: ../connectors/class-wp-stream-connector-jetpack.php:83 +msgctxt "jetpack" msgid "Link" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:84 +msgctxt "jetpack" msgid "Unlink" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:85 +#, fuzzy +msgctxt "jetpack" +msgid "Updated" +msgstr "Aktuallisiert" + +#: ../connectors/class-wp-stream-connector-jetpack.php:86 +#, fuzzy +msgctxt "jetpack" +msgid "Added" +msgstr "Hinzugefügt" + #: ../connectors/class-wp-stream-connector-jetpack.php:87 -#: ../connectors/class-wp-stream-connector-widgets.php:56 +#, fuzzy +msgctxt "jetpack" msgid "Removed" -msgstr "" +msgstr "Genehmigt" #: ../connectors/class-wp-stream-connector-jetpack.php:98 +msgctxt "jetpack" msgid "Modules" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:99 +msgctxt "jetpack" msgid "Blogs" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:100 -#: ../connectors/class-wp-stream-connector-users.php:43 -#: ../connectors/class-wp-stream-connector-users.php:70 +#, fuzzy +msgctxt "jetpack" msgid "Users" msgstr "Benutzer" +#: ../connectors/class-wp-stream-connector-jetpack.php:101 +#, fuzzy +msgctxt "jetpack" +msgid "Options" +msgstr "Aktionen" + #: ../connectors/class-wp-stream-connector-jetpack.php:102 +msgctxt "jetpack" msgid "Sharing" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:103 +msgctxt "jetpack" msgid "Publicize" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:104 #, fuzzy +msgctxt "jetpack" msgid "Google+ Profile" msgstr "Profil anzeigen" #: ../connectors/class-wp-stream-connector-jetpack.php:105 -#: ../connectors/class-wp-stream-connector-jetpack.php:203 #, fuzzy +msgctxt "jetpack" msgid "WordPress.com Stats" msgstr "WordPress" #: ../connectors/class-wp-stream-connector-jetpack.php:106 +msgctxt "jetpack" msgid "Carousel" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:107 +msgctxt "jetpack" msgid "Custom CSS" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:108 #, fuzzy +msgctxt "jetpack" msgid "Subscriptions" msgstr "Aktionen" +#: ../connectors/class-wp-stream-connector-jetpack.php:109 +#, fuzzy +msgctxt "jetpack" +msgid "Comments" +msgstr "Kommentare" + #: ../connectors/class-wp-stream-connector-jetpack.php:110 +msgctxt "jetpack" msgid "Infinite Scroll" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:111 +msgctxt "jetpack" msgid "SSO" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:112 +msgctxt "jetpack" msgid "Likes" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:113 +msgctxt "jetpack" msgid "Mobile" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:114 +#, fuzzy +msgctxt "jetpack" msgid "Monitor" -msgstr "" +msgstr "Bearbeiten" #: ../connectors/class-wp-stream-connector-jetpack.php:115 +msgctxt "jetpack" msgid "Post by Email" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:116 +msgctxt "jetpack" msgid "Related Posts" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:117 #, fuzzy +msgctxt "jetpack" msgid "Site Verification" msgstr "Stream Einstellungen" #: ../connectors/class-wp-stream-connector-jetpack.php:118 -#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgctxt "jetpack" msgid "Tiled Galleries" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:119 #, fuzzy +msgctxt "jetpack" msgid "VideoPress" msgstr "WordPress" #: ../connectors/class-wp-stream-connector-jetpack.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:222 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:182 +#: ../extensions/reports/class-wp-stream-reports.php:220 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:174 msgid "Configure" msgstr "" @@ -2306,7 +2442,13 @@ msgstr "" msgid "Deactivate" msgstr "Deaktiviert" -#: ../connectors/class-wp-stream-connector-jetpack.php:174 +#: ../connectors/class-wp-stream-connector-jetpack.php:159 +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 +#, fuzzy +msgid "Activate" +msgstr "Aktiviert" + +#: ../connectors/class-wp-stream-connector-jetpack.php:174 msgid "Configure module" msgstr "" @@ -2318,6 +2460,11 @@ msgstr "" msgid "Twitter site tag" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:203 +#, fuzzy +msgid "WordPress.com Stats" +msgstr "WordPress" + #: ../connectors/class-wp-stream-connector-jetpack.php:208 msgid "Color Scheme" msgstr "" @@ -2386,6 +2533,10 @@ msgstr "" msgid "Pinterest Site Verification Token" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgid "Tiled Galleries" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:322 #, fuzzy, php-format msgid "%1$s module %2$s" @@ -2593,7 +2744,8 @@ msgid "Edit Media" msgstr "bearbeite Media" #: ../connectors/class-wp-stream-connector-media.php:126 -#, php-format +#, fuzzy, php-format +msgctxt "1: Attachment title, 2: Parent post title" msgid "Attached \"%1$s\" to \"%2$s\"" msgstr "\"%1$s\" mit \"%2$s\" verbunden" @@ -2608,7 +2760,6 @@ msgid "Updated \"%s\"" msgstr "Aktualiesierte \"%s\"" #: ../connectors/class-wp-stream-connector-media.php:179 -#: ../connectors/class-wp-stream-connector-menus.php:141 #, php-format msgid "Deleted \"%s\"" msgstr "\"%s\" gelöscht" @@ -2632,78 +2783,102 @@ msgid "Created new menu \"%s\"" msgstr "" #: ../connectors/class-wp-stream-connector-menus.php:123 -#, php-format +#, fuzzy, php-format +msgctxt "Menu name" msgid "Updated menu \"%s\"" -msgstr "" +msgstr "Aktualiesierte \"%s\"" + +#: ../connectors/class-wp-stream-connector-menus.php:141 +#, fuzzy, php-format +msgctxt "Menu name" +msgid "Deleted \"%s\"" +msgstr "\"%s\" gelöscht" #: ../connectors/class-wp-stream-connector-menus.php:181 -#, php-format +#, fuzzy, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been unassigned from \"%2$s\"" -msgstr "" +msgstr "\"%1$s\" mit \"%2$s\" verbunden" #: ../connectors/class-wp-stream-connector-menus.php:189 -#, php-format +#, fuzzy, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been assigned to \"%2$s\"" -msgstr "" +msgstr "\"%1$s\" mit \"%2$s\" verbunden" #: ../connectors/class-wp-stream-connector-posts.php:28 msgid "Posts" msgstr "Inhalte" #: ../connectors/class-wp-stream-connector-posts.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:168 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:159 #, fuzzy, php-format +msgctxt "Post type singular name" msgid "Restore %s" msgstr "Wiederhergestellt" #: ../connectors/class-wp-stream-connector-posts.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 -#, php-format +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:160 +#, fuzzy, php-format +msgctxt "Post type singular name" msgid "Delete %s Permenantly" -msgstr "" +msgstr "\"%s\" gelöscht" + +#: ../connectors/class-wp-stream-connector-posts.php:103 +#: ../connectors/class-wp-stream-connector-woocommerce.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:162 +#, fuzzy, php-format +msgctxt "Post type singular name" +msgid "Edit %s" +msgstr "%s bearbeiten" #: ../connectors/class-wp-stream-connector-posts.php:110 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:178 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 msgid "Revision" msgstr "Revision" #: ../connectors/class-wp-stream-connector-posts.php:147 -#, php-format +#, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s drafted" msgstr "Entwurf: \"%1$s\" in %2$s erstellt " #: ../connectors/class-wp-stream-connector-posts.php:154 #: ../connectors/class-wp-stream-connector-posts.php:161 -#, php-format +#, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s published" msgstr "\"%1$s\" %2$s veröffentlicht" #: ../connectors/class-wp-stream-connector-posts.php:167 -#, php-format +#, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s unpublished" msgstr "\"%1$s\" %2$s unveröffentlicht" #: ../connectors/class-wp-stream-connector-posts.php:173 -#, php-format +#, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s trashed" -msgstr "" +msgstr "Entwurf: \"%1$s\" in %2$s erstellt " #: ../connectors/class-wp-stream-connector-posts.php:180 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s restored from trash" msgstr "\"%1$s\" %2$s erstellt" #: ../connectors/class-wp-stream-connector-posts.php:187 -#: ../connectors/class-wp-stream-connector-taxonomies.php:200 -#: ../connectors/class-wp-stream-connector-woocommerce.php:611 -#, php-format +#, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s updated" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-posts.php:254 -#, php-format +#, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s deleted from trash" -msgstr "" +msgstr "\"%1$s\" %2$s erstellt" #: ../connectors/class-wp-stream-connector-posts.php:291 msgid "Post" @@ -2717,8 +2892,11 @@ msgstr "Schreiben" msgid "Reading" msgstr "Lesen" +#: ../connectors/class-wp-stream-connector-settings.php:125 +msgid "Discussion" +msgstr "Diskussion" + #: ../connectors/class-wp-stream-connector-settings.php:127 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:97 msgid "Permalinks" msgstr "Permalinks" @@ -3079,20 +3257,38 @@ msgid "\"%s\" setting was updated" msgstr "\"%s\" Einstellung wurde aktualisiert" #: ../connectors/class-wp-stream-connector-taxonomies.php:44 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:472 msgid "Taxonomies" msgstr "Taxonomien" +#: ../connectors/class-wp-stream-connector-taxonomies.php:93 +#, fuzzy, php-format +msgctxt "Term singular name" +msgid "Edit %s" +msgstr "%s bearbeiten" + #: ../connectors/class-wp-stream-connector-taxonomies.php:136 -#, php-format +#, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s created" msgstr "\"%1$s\" %2$s erstellt" #: ../connectors/class-wp-stream-connector-taxonomies.php:163 -#, php-format +#, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s deleted" msgstr "\"%1$s\" %2$s gelöscht" +#: ../connectors/class-wp-stream-connector-taxonomies.php:200 +#, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" +msgid "\"%1$s\" %2$s updated" +msgstr "\"%1$s\" %2$s aktualisiert" + +#: ../connectors/class-wp-stream-connector-users.php:43 +#: ../connectors/class-wp-stream-connector-users.php:70 +msgid "Users" +msgstr "Benutzer" + #: ../connectors/class-wp-stream-connector-users.php:56 msgid "Password Reset" msgstr "Passwort zurückgesetzt" @@ -3130,7 +3326,8 @@ msgid "New user registration" msgstr "Neue Benutzer Registrierung" #: ../connectors/class-wp-stream-connector-users.php:140 -#, php-format +#, fuzzy, php-format +msgctxt "1: User display name, 2: User role" msgid "New user account created for %1$s (%2$s)" msgstr "Neues Benutzerkonto für %1$s (%2$s)" @@ -3140,7 +3337,8 @@ msgid "%s's profile was updated" msgstr "%s’s Profil wurde aktualisiert" #: ../connectors/class-wp-stream-connector-users.php:191 -#, php-format +#, fuzzy, php-format +msgctxt "1: User display name, 2: Old role, 3: New role" msgid "%1$s's role was changed from %2$s to %3$s" msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" @@ -3165,7 +3363,8 @@ msgid "%s logged out" msgstr "%s hat sich abgemeldet" #: ../connectors/class-wp-stream-connector-users.php:314 -#, php-format +#, fuzzy, php-format +msgctxt "1: User display name, 2: User roles" msgid "%1$s's account was deleted (%2$s)" msgstr "%1$s's Benutzerkonto wurde gelöscht (%2$s)" @@ -3178,6 +3377,10 @@ msgstr "Benutzerkonto #%d wurde gelöscht" msgid "Widgets" msgstr "Widgets" +#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgid "Removed" +msgstr "" + #: ../connectors/class-wp-stream-connector-widgets.php:57 #, fuzzy msgid "Moved" @@ -3207,175 +3410,234 @@ msgid "Edit Widget Area" msgstr "Bearbeite Widgets Bereich" #: ../connectors/class-wp-stream-connector-widgets.php:196 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" from \"%3$s\" deactivated" -msgstr "" +msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:199 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget from \"%3$s\" deactivated" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:202 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" from \"%3$s\" deactivated" -msgstr "" +msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:205 -#, php-format +#, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget from \"%3$s\" deactivated" -msgstr "" +msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:245 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" reactivated" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:248 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget reactivated" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:251 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" reactivated" -msgstr "" +msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:254 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget reactivated" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:301 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" removed from \"%3$s\"" -msgstr "" +msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" #: ../connectors/class-wp-stream-connector-widgets.php:304 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget removed from \"%3$s\"" -msgstr "" +msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" #: ../connectors/class-wp-stream-connector-widgets.php:307 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" removed from \"%3$s\"" -msgstr "" +msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" #: ../connectors/class-wp-stream-connector-widgets.php:310 -#, php-format +#, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget removed from \"%3$s\"" -msgstr "" +msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" #: ../connectors/class-wp-stream-connector-widgets.php:354 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" added to \"%3$s\"" -msgstr "" +msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" #: ../connectors/class-wp-stream-connector-widgets.php:357 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget added to \"%3$s\"" -msgstr "" +msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:360 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" added to \"%3$s\"" -msgstr "" +msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" #: ../connectors/class-wp-stream-connector-widgets.php:363 -#, php-format +#, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget added to \"%3$s\"" -msgstr "" +msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:405 #, fuzzy, php-format +msgctxt "Sidebar name" msgid "Widgets reordered in \"%s\"" msgstr "\"%s\" Widgets wurden neu sortiert" #: ../connectors/class-wp-stream-connector-widgets.php:460 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" #: ../connectors/class-wp-stream-connector-widgets.php:463 #, fuzzy, php-format +msgctxt "1: Name, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" #: ../connectors/class-wp-stream-connector-widgets.php:466 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "Unknown widget type named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" -msgstr "" +msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" #: ../connectors/class-wp-stream-connector-widgets.php:469 #, fuzzy, php-format +msgctxt "3: Widget ID, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%3$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" #: ../connectors/class-wp-stream-connector-widgets.php:581 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" in \"%3$s\" updated" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:584 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget in \"%3$s\" updated" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:587 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" in \"%3$s\" updated" -msgstr "" +msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:590 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget in \"%3$s\" updated" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:621 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" created" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:624 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget created" msgstr "\"%1$s\" %2$s erstellt" #: ../connectors/class-wp-stream-connector-widgets.php:627 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" created" -msgstr "" +msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:630 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget created" msgstr "\"%1$s\" %2$s erstellt" #: ../connectors/class-wp-stream-connector-widgets.php:651 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" deleted" msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:654 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget deleted" msgstr "\"%1$s\" %2$s gelöscht" #: ../connectors/class-wp-stream-connector-widgets.php:657 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" deleted" -msgstr "" +msgstr "\"%1$s\" %2$s aktualisiert" #: ../connectors/class-wp-stream-connector-widgets.php:660 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget deleted" msgstr "\"%1$s\" %2$s gelöscht" #: ../connectors/class-wp-stream-connector-woocommerce.php:89 +msgctxt "woocommerce" msgid "WooCommerce" msgstr "" +#: ../connectors/class-wp-stream-connector-woocommerce.php:99 +#, fuzzy +msgctxt "woocommerce" +msgid "Updated" +msgstr "Aktuallisiert" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:100 +#, fuzzy +msgctxt "woocommerce" +msgid "Created" +msgstr "Erstellt" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +#, fuzzy +msgctxt "woocommerce" +msgid "Trashed" +msgstr "Weggeworfen" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:102 +#, fuzzy +msgctxt "woocommerce" +msgid "Deleted" +msgstr "Gelöscht" + #: ../connectors/class-wp-stream-connector-woocommerce.php:122 +msgctxt "woocommerce" msgid "Attributes" msgstr "" @@ -3435,21 +3697,25 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:301 #, fuzzy, php-format +msgctxt "Order title" msgid "%s created" msgstr "Erstellt" #: ../connectors/class-wp-stream-connector-woocommerce.php:308 #, fuzzy, php-format +msgctxt "Order title" msgid "%s trashed" msgstr "Weggeworfen" #: ../connectors/class-wp-stream-connector-woocommerce.php:315 #, fuzzy, php-format +msgctxt "Order title" msgid "%s restored from the trash" msgstr "\"%1$s\" %2$s erstellt" #: ../connectors/class-wp-stream-connector-woocommerce.php:322 #, fuzzy, php-format +msgctxt "Order title" msgid "%s updated" msgstr "Aktuallisiert" @@ -3467,44 +3733,57 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:377 #, fuzzy, php-format +msgctxt "Order title" msgid "\"%s\" deleted from trash" msgstr "\"%1$s\" %2$s erstellt" #: ../connectors/class-wp-stream-connector-woocommerce.php:411 #, fuzzy, php-format +msgctxt "1. Order title, 2. Old status, 3. New status" msgid "%1$s status changed from %2$s to %3$s" msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" #: ../connectors/class-wp-stream-connector-woocommerce.php:447 -#, php-format +#, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute created" -msgstr "" +msgstr "\"%1$s\" %2$s erstellt" #: ../connectors/class-wp-stream-connector-woocommerce.php:466 -#, php-format +#, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute updated" -msgstr "" +msgstr "\"%s\" Einstellung wurde aktualisiert" #: ../connectors/class-wp-stream-connector-woocommerce.php:485 -#, php-format +#, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute deleted" -msgstr "" +msgstr "\"%1$s\" %2$s gelöscht" #: ../connectors/class-wp-stream-connector-woocommerce.php:506 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate created" msgstr "\"%1$s\" %2$s erstellt" #: ../connectors/class-wp-stream-connector-woocommerce.php:525 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate updated" msgstr "\"%s\" Einstellung wurde aktualisiert" #: ../connectors/class-wp-stream-connector-woocommerce.php:555 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%s\" tax rate deleted" msgstr "\"%1$s\" %2$s gelöscht" +#: ../connectors/class-wp-stream-connector-woocommerce.php:611 +#, php-format +msgid "\"%1$s\" %2$s updated" +msgstr "\"%1$s\" %2$s aktualisiert" + #: ../connectors/class-wp-stream-connector-woocommerce.php:709 msgid "payment gateway" msgstr "" @@ -3521,1244 +3800,1395 @@ msgstr "" msgid "Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:67 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:59 #, fuzzy +msgctxt "wordpress-seo" msgid "WordPress SEO" msgstr "WordPress" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:69 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Created" +msgstr "Erstellt" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:70 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Updated" +msgstr "Aktuallisiert" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:71 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Added" +msgstr "Hinzugefügt" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:72 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Deleted" +msgstr "Gelöscht" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:73 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Exported" +msgstr "Sortiert" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:74 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Imported" +msgstr "Sortiert" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:85 +msgctxt "wordpress-seo" msgid "Dashboard" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:86 +msgctxt "wordpress-seo" msgid "Titles & Metas" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:87 +msgctxt "wordpress-seo" msgid "Social" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:88 +msgctxt "wordpress-seo" msgid "XML Sitemaps" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:98 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:89 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Permalinks" +msgstr "Permalinks" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:90 #, fuzzy +msgctxt "wordpress-seo" msgid "Internal Links" msgstr "Permalinks" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:99 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:91 +msgctxt "wordpress-seo" msgid "RSS" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:100 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:92 +msgctxt "wordpress-seo" msgid "Import & Export" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:101 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +msgctxt "wordpress-seo" msgid "Bulk Title Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:102 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +msgctxt "wordpress-seo" msgid "Bulk Description Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:104 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 #, fuzzy +msgctxt "wordpress-seo" msgid "Files" msgstr "Profil bearbeiten" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:105 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 #, fuzzy +msgctxt "wordpress-seo" msgid "Content" msgstr "Kontext" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:214 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:205 msgid "HeadSpace2" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:215 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:206 msgid "All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:207 msgid "OLD All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:217 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:208 msgid "WooThemes SEO framework" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:218 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:209 msgid "Robots Meta (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:219 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:210 msgid "RSS Footer (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:211 msgid "Yoast Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:229 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 #, php-format msgid "Imported settings from %1$s%2$s" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:231 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:222 msgid ", and deleted old data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:251 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:242 #, fuzzy, php-format msgid "Exported settings%s" msgstr "Bearbeite %s Einstellungen" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:252 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:243 msgid ", including taxonomy meta" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:264 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:255 #, php-format msgid "Tried importing settings from \"%s\"" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:279 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:270 msgid "Tried creating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:281 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:272 msgid "Tried updating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:283 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:274 msgid "Tried updating htaccess file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:334 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:325 #, fuzzy, php-format msgid "Updated \"%1$s\" of \"%2$s\" %3$s" msgstr "\"%1$s\" mit \"%2$s\" verbunden" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:373 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:364 #, fuzzy, php-format msgid "%s settings updated" msgstr "\"%s\" Einstellung wurde aktualisiert" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:380 +msgctxt "wordpress-seo" msgid "Allow tracking of this WordPress install's anonymous data." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:381 +msgctxt "wordpress-seo" msgid "Disable the Advanced part of the WordPress SEO meta box" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:382 +#, fuzzy +msgctxt "wordpress-seo" msgid "Alexa Verification ID" -msgstr "" +msgstr "Stream Einstellungen" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:383 +msgctxt "wordpress-seo" msgid "Bing Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:384 +msgctxt "wordpress-seo" msgid "Google Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:385 +msgctxt "wordpress-seo" msgid "Pinterest" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:386 +msgctxt "wordpress-seo" msgid "Yandex Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:398 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +msgctxt "wordpress-seo" msgid "Enable Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:399 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +msgctxt "wordpress-seo" msgid "Separator between breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +msgctxt "wordpress-seo" msgid "Anchor text for the Homepage" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +msgctxt "wordpress-seo" msgid "Prefix for the breadcrumb path" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +msgctxt "wordpress-seo" msgid "Prefix for Archive breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +msgctxt "wordpress-seo" msgid "Prefix for Search Page breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +msgctxt "wordpress-seo" msgid "Breadcrumb for 404 Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:396 +msgctxt "wordpress-seo" msgid "Remove Blog page from Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:397 +msgctxt "wordpress-seo" msgid "Bold the last page in the breadcrumb" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +msgctxt "wordpress-seo" msgid "Force rewrite titles" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +msgctxt "wordpress-seo" msgid "Noindex subpages of archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:411 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +msgctxt "wordpress-seo" msgid "Use meta keywords tag?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:412 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +msgctxt "wordpress-seo" msgid "Add noodp meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +msgctxt "wordpress-seo" msgid "Add noydir meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +msgctxt "wordpress-seo" msgid "Hide RSD Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +msgctxt "wordpress-seo" msgid "Hide WLW Manifest Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:416 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:407 +msgctxt "wordpress-seo" msgid "Hide Shortlink for posts" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:417 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:408 +msgctxt "wordpress-seo" msgid "Hide RSS Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +msgctxt "wordpress-seo" msgid "Disable the author archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +msgctxt "wordpress-seo" msgid "Disable the date-based archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +msgctxt "wordpress-seo" msgid "Who should have access to the WordPress SEO settings" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +msgctxt "wordpress-seo" msgid "New blogs get the SEO settings from this blog" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +msgctxt "wordpress-seo" msgid "Blog ID" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +msgctxt "wordpress-seo" msgid "" "Strip the category base (usually /category/) from the category " "URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:428 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +msgctxt "wordpress-seo" msgid "Enforce a trailing slash on all category and tag URL's" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:429 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:420 +msgctxt "wordpress-seo" msgid "Remove stop words from slugs." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:421 +msgctxt "wordpress-seo" msgid "Redirect attachment URL's to parent post URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +msgctxt "wordpress-seo" msgid "Remove the ?replytocom variables." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +msgctxt "wordpress-seo" msgid "" "Redirect ugly URL's to clean permalinks. (Not recommended in many cases!)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +msgctxt "wordpress-seo" msgid "Force Transport" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:425 +msgctxt "wordpress-seo" msgid "Prevent cleaning out Google Site Search URL's." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:426 +msgctxt "wordpress-seo" msgid "" "Prevent cleaning out Google Analytics Campaign & Google AdWords Parameters." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +msgctxt "wordpress-seo" msgid "Other variables not to clean" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +msgctxt "wordpress-seo" msgid "Add Open Graph meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:440 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +msgctxt "wordpress-seo" msgid "Facebook Page URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:441 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +msgctxt "wordpress-seo" msgid "Image URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#, fuzzy +msgctxt "wordpress-seo" msgid "Description" -msgstr "" +msgstr "Aktionen" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +msgctxt "wordpress-seo" msgid "Add Twitter card meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +msgctxt "wordpress-seo" msgid "Site Twitter Username" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:437 +msgctxt "wordpress-seo" msgid "The default card type to use" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:447 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:438 +msgctxt "wordpress-seo" msgid "Add Google+ specific post meta data (excluding author metadata)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:448 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +msgctxt "wordpress-seo" msgid "Google Publisher Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:451 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +msgctxt "wordpress-seo" msgid "Check this box to enable XML sitemap functionality." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:452 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +msgctxt "wordpress-seo" msgid "Disable author/user sitemap" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:453 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +msgctxt "wordpress-seo" msgid "Ping Yahoo!" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +msgctxt "wordpress-seo" msgid "Ping Ask.com" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +msgctxt "wordpress-seo" msgid "Max entries per sitemap page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:449 +msgctxt "wordpress-seo" msgid "Content to put before each post in the feed" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:450 +msgctxt "wordpress-seo" msgid "Content to put after each post" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +msgctxt "wordpress-seo" msgid "Title template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:464 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +msgctxt "wordpress-seo" msgid "Meta description template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:465 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:456 +msgctxt "wordpress-seo" msgid "Meta keywords template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:466 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:457 +msgctxt "wordpress-seo" msgid "Meta Robots" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:467 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 #, fuzzy +msgctxt "wordpress-seo" msgid "Authorship" msgstr "Autor" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:468 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +msgctxt "wordpress-seo" msgid "Show date in snippet preview?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:469 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:460 +#, fuzzy +msgctxt "wordpress-seo" msgid "WordPress SEO Meta Box" -msgstr "" +msgstr "WordPress" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:470 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:461 +msgctxt "wordpress-seo" msgid "Breadcrumbs Title" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:471 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:462 #, fuzzy +msgctxt "wordpress-seo" msgid "Post types" msgstr "Inhalte" -#: ../extensions/notifications/class-wp-stream-notifications.php:147 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Taxonomies" +msgstr "Taxonomien" + +#: ../extensions/notifications/class-wp-stream-notifications.php:128 #, fuzzy msgid "Stream Notifications" msgstr "Stream Einstellungen" -#: ../extensions/notifications/class-wp-stream-notifications.php:148 +#: ../extensions/notifications/class-wp-stream-notifications.php:129 msgid "Get notified instantly when important changes are made on your site." msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:150 +#: ../extensions/notifications/class-wp-stream-notifications.php:131 msgid "Create notification rules quickly and easily" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:132 msgid "Smart and powerful trigger matching" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:152 +#: ../extensions/notifications/class-wp-stream-notifications.php:133 msgid "Fully customized e-mail and SMS alerts" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:153 +#: ../extensions/notifications/class-wp-stream-notifications.php:134 msgid "Push alerts to your smartphone or tablet" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:170 -#: ../extensions/notifications/class-wp-stream-notifications.php:171 +#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:152 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:48 #: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:32 #, fuzzy msgid "Notifications" msgstr "Aktionen" -#: ../extensions/notifications/class-wp-stream-notifications.php:218 +#: ../extensions/notifications/class-wp-stream-notifications.php:199 msgid "Sample Rule" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:272 +#: ../extensions/notifications/class-wp-stream-notifications.php:253 #, fuzzy, php-format msgid "[Site Activity Alert] %s" msgstr "Stream Aktivitäten" -#: ../extensions/notifications/class-wp-stream-notifications.php:273 +#: ../extensions/notifications/class-wp-stream-notifications.php:254 #, php-format msgid "The following just happened on your site: %s by %s Date of action: %s" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:49 -msgid "Type" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 +msgid "Email" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:50 -msgid "Occurrences" -msgstr "" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 +#, fuzzy +msgid "Send to Users" +msgstr "%s bearbeiten" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 -msgid "Publish" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 +msgid "Alert specific users via email." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 -msgid "Unpublish" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 +msgid "Send to Emails" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 -msgid "Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 +msgid "Alert any arbitrary email address not tied to a specific user." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 -#, fuzzy -msgid "Stream Notification Rules" -msgstr "Stream Einstellungen" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 +msgid "Subject" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 -msgid "New Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 +msgid "Data tags are allowed." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 -msgid "New Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 +msgid "Message" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 -msgid "Edit Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 +msgid "HTML and data tags are allowed." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 -msgid "View Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 +msgid "Push" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 -#, fuzzy -msgid "Search Rules" -msgstr "Durchsuche Aufzeichnungen" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 +msgid "Missing Required Plugin" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 -msgid "No notification rules found." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 +#, php-format +msgid "Please install and activate the %1$s plugin to enable push alerts." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 -msgid "No notification rules found in Trash." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 +msgid "Pushover Notifications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 -msgid "Triggers" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 +msgid "Required Plugin Not Activated" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 -msgid "Alerts" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 +#, php-format +msgid "Please activate the %1$s plugin to enable push alerts." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 -msgid "Data Tags" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 +msgid "Alert specific users via push." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:121 -#: ../extensions/notifications/views/form-templates.php:34 -msgid "+ Add Trigger" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 +#, php-format +msgid "Only those users with a %s in their profile can be selected." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:122 -#: ../extensions/notifications/views/form-templates.php:35 -msgid "+ Add Group" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 +msgid "Pushover User Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:129 -msgid "+ Add Alert" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 +msgid "Application key is missing" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 #, php-format -msgid "This rule has occurred %1$s time." +msgid "Please provide your Application key on %1$s." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:168 -msgid "Reset Count" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 +msgid "Pushover Notifications settings page" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 -msgid "Basic" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 +msgid "Application API Token/Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 -msgid "Summary message of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 +msgid "Your User Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 -msgid "User ID of the triggered record author." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 +#, fuzzy +msgid "New Users" +msgstr "Benutzer" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 +msgid "New Posts are Published" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 -msgid "Connector of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 +msgid "Roles to Notify" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 -msgid "Context of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 +#, fuzzy +msgid "New Comments" +msgstr "Kommentare" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 +msgid "Notify the Post Author (for multi-author blogs)" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 -msgid "Action of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 +msgid "Notify users when password resets are requested for their accounts" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 -msgid "Timestamp of triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 +msgid "WordPress Core Update is Available" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 -msgid "IP of the triggered record author." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 +msgid "Plugin & Theme Updates are Available" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 -msgid "Object ID of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 +msgid "Use Multiple Application Keys" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 -msgid "Advanced" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 +msgid "Verify SSL from api.pushover.net" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 -msgid "" -"Specific object data of the record, relative to what the object type is:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more Post values\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.name}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.taxonomy}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.description}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more Term values" -msgstr "" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 +#, fuzzy +msgid "Enable Logging" +msgstr "Login fehlgeschlagen" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:210 -msgid "" -"Specific user data of the record author:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{author.display_name}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{author.user_email}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{author.user_login}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more User values" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 +msgid "SMS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:221 -msgid "" -"Specific meta data of the record, used to display specific meta values " -"created by Connectors.\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\tExample: {meta.old_theme} to display " -"the old theme name when a new theme is activated." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 +msgid "Send to Mobile Number" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 -msgid "Invalid nonce" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 +msgid "Enter mobile numbers without dashes (ex: 8885550000)" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 -msgid "Invalid record ID" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 +msgid "Carrier" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 -msgid "is" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 +msgid "Select your mobile service provider." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 -msgid "is not" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:24 +msgid "3 River Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 -#, fuzzy -msgid "contains" -msgstr "Kontexte" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 -msgid "does not contain" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:25 +msgid "ACS Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 -msgid "starts with" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:26 +msgid "Alltel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 -msgid "ends with" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:27 +msgid "AT&T, Cingular, Net10 or Tracfone" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 -msgid "regex" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:28 +msgid "Bell Canada" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 -msgid "equals" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:29 +msgid "Bell Mobility (Canada), Presidents Choice or Solo Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 -msgid "not equal" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:30 +msgid "Bell Mobility" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 -msgid "less than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:31 +msgid "Blue Sky Frog" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 -msgid "equal or less than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:32 +msgid "Bluegrass Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 -msgid "greater than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:33 +msgid "Boost Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 -msgid "equal or greater than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:34 +msgid "BPL Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 -msgid "Object ID" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:35 +msgid "Carolina West Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:407 -#, fuzzy -msgid "Author Role" -msgstr "Autor" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 -msgid "IP" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:36 +msgid "Cellular One" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 -msgid "is on" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:37 +msgid "Cellular South" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 -msgid "is not on" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:38 +msgid "CenturyTel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 -msgid "is before" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:39 +msgid "Clearnet" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 -msgid "is on or before" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:40 +msgid "Comcast" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 -msgid "is after" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:41 +msgid "Corr Wireless Communications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 -msgid "is on or after" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:42 +msgid "Cricket" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 -msgid "Day of Week" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:43 +msgid "Dobson" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:408 -msgid "Connector" -msgstr "Bereich" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 -#, fuzzy -msgid "- Post" -msgstr "Inhalte" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:44 +msgid "Edge Wireless" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 -#, fuzzy -msgid "- Post: Title" -msgstr "Seitentitel" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:45 +msgid "Fido" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 -msgid "- Post: Slug" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:46 +msgid "Golden Telecom" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 -msgid "- Post: Content" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:47 +msgid "Houston Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 -msgid "- Post: Excerpt" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:48 +msgid "Idea Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 -#, fuzzy -msgid "- Post: Author" -msgstr "Autor" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:49 +msgid "Illinois Valley Cellular" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 -msgid "- Post: Status" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:50 +msgid "Inland Cellular Telephone" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 -#, fuzzy -msgid "- Post: Format" -msgstr "Standard-Beitrags-Formatvorlage" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:51 +msgid "MCI" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 -msgid "- Post: Parent" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:52 +msgid "Metrocall" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 -msgid "- Post: Featured Image" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:53 +msgid "Metrocall 2-way" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 -msgid "None" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:54 +msgid "Metro PCS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 -msgid "Has one" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:55 +msgid "Midwest Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 -msgid "- Post: Comment Status" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:56 +msgid "Mobilcomm" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 -msgid "Open" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:57 +msgid "MTS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 -msgid "- Post: Comment Count" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:58 +msgid "Nextel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 -#, fuzzy -msgid "- User" -msgstr "Benutzer" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:59 +msgid "OnlineBeep" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 -#, fuzzy -msgid "- User: Role" -msgstr "Standardrolle eines neuen Benutzers" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:60 +msgid "PCS One" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 -#, fuzzy -msgid "- Taxonomy" -msgstr "Taxonomien" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:61 +msgid "Public Service Cellular" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 -msgid "- Term" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:62 +msgid "Qwest" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 -msgid "- Term: Parent" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:63 +msgid "Rogers AT&T Wireless and Rogers Canada" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 -msgid "You cannot save a rule without any triggers." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:64 +msgid "Satellink" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 -msgid "You cannot save a rule with an empty first trigger." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:65 +msgid "Sprint or Helio" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 -msgid "There was an error submitting your request, please try again." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:66 +msgid "Suncom and Triton" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 -#, fuzzy -msgid "" -"Are you sure you want to reset occurrences for this rule? This cannot be " -"undone." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:67 +msgid "Surewest Communications" msgstr "" -"Sind Sie sicher, dass Sie alle Stream Aktivitäts-Aufzeichnungen aus der " -"Datenbank löschen möchten? Dies kann nicht rückgängig gemacht werden." -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 -msgid "Enter Rule Title here" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:68 +msgid "T-Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 -#, fuzzy -msgid "" -"Users from the selected roles above will have permission to view, create and " -"edit Stream Notifications. However, only site Administrators can access " -"Stream Notifications Settings." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:69 +msgid "Telus" msgstr "" -"Nur die hier ausgewählten Benutzer können die von Stream protokollierten " -"Einträge aufrufen. Die Stream Einstellungen allerdings können nur von " -"Administratoren aufgerufen werden." -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 -msgid "Email" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:70 +msgid "Unicel" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 -#, fuzzy -msgid "Send to Users" -msgstr "%s bearbeiten" - -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 -msgid "Alert specific users via email." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:71 +msgid "US Cellular" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 -msgid "Send to Emails" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:72 +msgid "US West" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 -msgid "Alert any arbitrary email address not tied to a specific user." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:73 +msgid "Verizon or Straight Talk" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 -msgid "Subject" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:74 +msgid "Virgin Mobile" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 -msgid "Data tags are allowed." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:75 +msgid "Virgin Mobile Canada" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 -msgid "Message" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:76 +msgid "West Central Wireless" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 -msgid "HTML and data tags are allowed." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:77 +msgid "Western Wireless" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 -msgid "Push" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 +msgid "Data tags are allowed. HTML is not allowed." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 -msgid "Missing Required Plugin" +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:49 +msgid "Type" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 -#, php-format -msgid "Please install and activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:50 +msgid "Occurrences" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 -msgid "Pushover Notifications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 +msgid "Publish" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 -msgid "Required Plugin Not Activated" +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 +msgid "Unpublish" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 -#, php-format -msgid "Please activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 +msgid "Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 -msgid "Alert specific users via push." -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 +#, fuzzy +msgid "Stream Notification Rules" +msgstr "Stream Einstellungen" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 -#, php-format -msgid "Only those users with a %s in their profile can be selected." -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 +#, fuzzy +msgctxt "Stream Notifications" +msgid "New Rule" +msgstr "Durchsuche Aufzeichnungen" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 -msgid "Pushover User Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +msgctxt "Stream Notifications" +msgid "Add New Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 -msgid "Application key is missing" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 +#, fuzzy +msgctxt "Stream Notifications" +msgid "New Stream Notification Rule" +msgstr "Stream Einstellungen" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 -#, php-format -msgid "Please provide your Application key on %1$s." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 +#, fuzzy +msgctxt "Stream Notifications" +msgid "Edit Stream Notification Rule" +msgstr "Stream Einstellungen" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 +#, fuzzy +msgctxt "Stream Notifications" +msgid "View Stream Notification Rule" +msgstr "Stream Einstellungen" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 +#, fuzzy +msgctxt "Stream Notifications" +msgid "Search Rules" +msgstr "Durchsuche Aufzeichnungen" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 +#, fuzzy +msgctxt "Stream Notifications" +msgid "No notification rules found." +msgstr "Stream Einstellungen" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 +msgctxt "Stream Notifications" +msgid "No notification rules found in Trash." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 -msgid "Pushover Notifications settings page" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 +msgid "Triggers" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 -msgid "Application API Token/Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 +msgid "Alerts" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 -msgid "Your User Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 +msgid "Data Tags" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 -#, fuzzy -msgid "New Users" -msgstr "Benutzer" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:121 +#: ../extensions/notifications/views/form-templates.php:34 +msgid "+ Add Trigger" +msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 -msgid "New Posts are Published" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:122 +#: ../extensions/notifications/views/form-templates.php:35 +msgid "+ Add Group" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 -msgid "Roles to Notify" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:129 +msgid "+ Add Alert" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 -#, fuzzy -msgid "New Comments" -msgstr "Kommentare" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 +#, php-format +msgid "This rule has occurred %1$s time." +msgid_plural "This rule has occurred %1$s times." +msgstr[0] "" +msgstr[1] "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 -msgid "Notify the Post Author (for multi-author blogs)" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:168 +msgid "Reset Count" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 -msgid "Notify users when password resets are requested for their accounts" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 +msgid "Basic" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 -msgid "WordPress Core Update is Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 +msgid "Summary message of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 -msgid "Plugin & Theme Updates are Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 +msgid "User ID of the triggered record author." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 -msgid "Use Multiple Application Keys" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 +msgid "Connector of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 -msgid "Verify SSL from api.pushover.net" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 +msgid "Context of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 -#, fuzzy -msgid "Enable Logging" -msgstr "Login fehlgeschlagen" - -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 -msgid "SMS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 +msgid "Action of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 -msgid "Send to Mobile Number" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 +msgid "Timestamp of triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 -msgid "Enter mobile numbers without dashes (ex: 8885550000)" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 +msgid "IP of the triggered record author." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 -msgid "Carrier" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 +msgid "Object ID of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 -msgid "Select your mobile service provider." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 +msgid "Advanced" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:24 -msgid "3 River Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 +msgid "" +"Specific object data of the record, relative to what the object type is:\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more Post values\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{object.name}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.taxonomy}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.description}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more Term values" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:25 -msgid "ACS Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:210 +msgid "" +"Specific user data of the record author:\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{author.display_name}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{author.user_email}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{author.user_login}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more User values" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:26 -msgid "Alltel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:221 +msgid "" +"Specific meta data of the record, used to display specific meta values " +"created by Connectors.\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\tExample: {meta.old_theme} to display " +"the old theme name when a new theme is activated." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:27 -msgid "AT&T, Cingular, Net10 or Tracfone" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 +msgid "Invalid nonce" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:28 -msgid "Bell Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 +msgid "Invalid record ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:29 -msgid "Bell Mobility (Canada), Presidents Choice or Solo Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 +msgid "is" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:30 -msgid "Bell Mobility" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 +msgid "is not" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:31 -msgid "Blue Sky Frog" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 +#, fuzzy +msgid "contains" +msgstr "Kontexte" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:32 -msgid "Bluegrass Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 +msgid "does not contain" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:33 -msgid "Boost Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 +msgid "starts with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:34 -msgid "BPL Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 +msgid "ends with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:35 -msgid "Carolina West Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 +msgid "regex" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:36 -msgid "Cellular One" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 +msgid "equals" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:37 -msgid "Cellular South" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 +msgid "not equal" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:38 -msgid "CenturyTel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 +msgid "less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:39 -msgid "Clearnet" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 +msgid "equal or less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:40 -msgid "Comcast" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 +msgid "greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:41 -msgid "Corr Wireless Communications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 +msgid "equal or greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:42 -msgid "Cricket" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 +msgid "Object ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:43 -msgid "Dobson" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:369 +#, fuzzy +msgid "Author Role" +msgstr "Autor" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:44 -msgid "Edge Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 +msgid "IP" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:45 -msgid "Fido" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 +msgid "is on" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:46 -msgid "Golden Telecom" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 +msgid "is not on" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:47 -msgid "Houston Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 +msgid "is before" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:48 -msgid "Idea Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 +msgid "is on or before" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:49 -msgid "Illinois Valley Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 +msgid "is after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:50 -msgid "Inland Cellular Telephone" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 +msgid "is on or after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:51 -msgid "MCI" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 +msgid "Day of Week" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:52 -msgid "Metrocall" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:370 +msgid "Connector" +msgstr "Bereich" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:53 -msgid "Metrocall 2-way" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 +#, fuzzy +msgid "- Post" +msgstr "Inhalte" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:54 -msgid "Metro PCS" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 +#, fuzzy +msgid "- Post: Title" +msgstr "Seitentitel" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:55 -msgid "Midwest Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 +msgid "- Post: Slug" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:56 -msgid "Mobilcomm" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 +msgid "- Post: Content" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:57 -msgid "MTS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 +msgid "- Post: Excerpt" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:58 -msgid "Nextel" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 +#, fuzzy +msgid "- Post: Author" +msgstr "Autor" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:59 -msgid "OnlineBeep" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 +msgid "- Post: Status" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:60 -msgid "PCS One" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 +#, fuzzy +msgid "- Post: Format" +msgstr "Standard-Beitrags-Formatvorlage" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:61 -msgid "Public Service Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 +msgid "- Post: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:62 -msgid "Qwest" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 +msgid "- Post: Featured Image" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:63 -msgid "Rogers AT&T Wireless and Rogers Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 +msgid "None" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:64 -msgid "Satellink" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 +msgid "Has one" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:65 -msgid "Sprint or Helio" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 +msgid "- Post: Comment Status" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:66 -msgid "Suncom and Triton" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 +msgid "Open" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:67 -msgid "Surewest Communications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgid "Closed" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:68 -msgid "T-Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 +msgid "- Post: Comment Count" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:69 -msgid "Telus" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 +#, fuzzy +msgid "- User" +msgstr "Benutzer" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:70 -msgid "Unicel" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 +#, fuzzy +msgid "- User: Role" +msgstr "Standardrolle eines neuen Benutzers" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:71 -msgid "US Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 +#, fuzzy +msgid "- Taxonomy" +msgstr "Taxonomien" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 +msgid "- Term" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:72 -msgid "US West" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 +msgid "- Term: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:73 -msgid "Verizon or Straight Talk" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 +msgid "You cannot save a rule without any triggers." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:74 -msgid "Virgin Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 +msgid "You cannot save a rule with an empty first trigger." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:75 -msgid "Virgin Mobile Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 +msgid "There was an error submitting your request, please try again." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:76 -msgid "West Central Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 +#, fuzzy +msgid "" +"Are you sure you want to reset occurrences for this rule? This cannot be " +"undone." msgstr "" +"Sind Sie sicher, dass Sie alle Stream Aktivitäts-Aufzeichnungen aus der " +"Datenbank löschen möchten? Dies kann nicht rückgängig gemacht werden." -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:77 -msgid "Western Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 +msgid "Enter Rule Title here" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 -msgid "Data tags are allowed. HTML is not allowed." +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 +#, fuzzy +msgid "" +"Users from the selected roles above will have permission to view, create and " +"edit Stream Notifications. However, only site Administrators can access " +"Stream Notifications Settings." msgstr "" +"Nur die hier ausgewählten Benutzer können die von Stream protokollierten " +"Einträge aufrufen. Die Stream Einstellungen allerdings können nur von " +"Administratoren aufgerufen werden." #: ../extensions/notifications/views/form-templates.php:7 #: ../extensions/notifications/views/form-templates.php:30 @@ -4775,22 +5205,28 @@ msgstr "" msgid "Delete Group" msgstr "\"%s\" gelöscht" -#: ../extensions/reports/class-wp-stream-reports.php:125 +#: ../extensions/reports/class-wp-stream-reports.php:123 msgid "Cheating huh?" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:223 +#: ../extensions/reports/class-wp-stream-reports.php:143 +#: ../extensions/reports/class-wp-stream-reports.php:144 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:51 +msgid "Reports" +msgstr "" + +#: ../extensions/reports/class-wp-stream-reports.php:221 msgid "Cancel" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:224 +#: ../extensions/reports/class-wp-stream-reports.php:222 #, fuzzy msgid "Do you really want to delete this section? This cannot be undone." msgstr "" "Sind Sie sicher, dass Sie alle Stream Aktivitäts-Aufzeichnungen aus der " "Datenbank löschen möchten? Dies kann nicht rückgängig gemacht werden." -#: ../extensions/reports/class-wp-stream-reports.php:280 +#: ../extensions/reports/class-wp-stream-reports.php:278 #, php-format msgid "" "There's nothing here! Do you want to create some reports?" @@ -4800,135 +5236,137 @@ msgstr "" msgid "That time interval is not available." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:76 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:68 #, fuzzy msgid "All Activity by Author" msgstr "Speiche Protokoll für" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:82 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:74 msgid "All Activity by Action" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:88 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:80 msgid "All Activity by Author Role" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:95 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:87 msgid "Comments Activity by Action" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:126 -#: ../extensions/reports/views/all.php:10 -#: ../extensions/reports/views/all.php:19 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:118 +#: ../extensions/reports/views/all.php:3 #: ../extensions/reports/views/examples.php:2 #, fuzzy msgid "Stream Reports" msgstr "Stream Aufzeichnungen" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:127 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:119 msgid "" "Generate stunning visuals of logged-in user activity and share them with " "stakeholders or your clients." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:129 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:121 msgid "Fully-interactive charts" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:130 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:122 msgid "Monitor team contributions" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:131 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:123 msgid "Responsive for any screen size" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:275 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:267 msgid "All Others" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:285 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:277 #, php-format msgid "User ID: %d" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:326 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:309 #, fuzzy msgid "All Activity" msgstr "Stream Aktivitäten" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:328 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:311 #, fuzzy msgid "Connector Activity" msgstr "Stream Aktivitäten" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:336 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:319 #, fuzzy msgid "Context Activity" msgstr "Stream Aktivitäten" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:344 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:327 #, fuzzy msgid "Actions Activity" msgstr "Stream Aktivitäten" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:379 -#, fuzzy -msgid "Site Activity" -msgstr "Stream Aktivitäten" +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:390 +msgid "Site" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:473 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:435 msgid "Unknown" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:472 #, php-format msgid "Report %d" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:529 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:491 #, fuzzy, php-format +msgctxt "1: Action 2: Dataset 3: Selector" msgid "%1$s in %2$s by %3$s" msgstr "Edited %1$s: %2$s" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:535 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:497 #, fuzzy, php-format +msgctxt "1: Action 3: Selector" msgid "All %1$s by %3$s" msgstr "Edited %1$s: %2$s" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:542 -#, php-format +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:504 +#, fuzzy, php-format +msgctxt "2: Dataset 3: Selector" msgid "All Activity in %2$s by %3$s" -msgstr "" +msgstr "Edited %1$s: %2$s" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:548 -#, php-format +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 +#, fuzzy, php-format +msgctxt "3: Selector" msgid "All Activity by %3$s" -msgstr "" +msgstr "Speiche Protokoll für" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:729 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:691 msgid "Chart height" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:735 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:697 msgid "px" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:737 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:699 msgid "Apply" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:783 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:745 #, fuzzy msgid "All Contexts" msgstr "Kontext" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:797 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:759 #, fuzzy msgid "All Actions" msgstr "Aktion" -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:62 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:57 #, fuzzy msgid "" "Users from the selected roles above will have permission to view and edit " @@ -4939,33 +5377,28 @@ msgstr "" "Einträge aufrufen. Die Stream Einstellungen allerdings können nur von " "Administratoren aufgerufen werden." -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:243 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:238 msgid "Uh no! This wasn't suppose to happen :(" msgstr "" -#: ../extensions/reports/views/all.php:6 -msgid "1 site" -msgstr "" - -#: ../extensions/reports/views/all.php:13 -#: ../extensions/reports/views/all.php:21 +#: ../extensions/reports/views/all.php:5 msgid "New Report" msgstr "" -#: ../extensions/reports/views/all.php:38 +#: ../extensions/reports/views/all.php:20 msgid "Well, this is embarrassing. There are no reports yet!" msgstr "" -#: ../extensions/reports/views/all.php:41 +#: ../extensions/reports/views/all.php:23 msgid "Add a new one" msgstr "" -#: ../extensions/reports/views/all.php:43 +#: ../extensions/reports/views/all.php:25 #, fuzzy msgid "or" msgstr "mehr" -#: ../extensions/reports/views/all.php:45 +#: ../extensions/reports/views/all.php:27 #, fuzzy msgid "Generate some for me" msgstr "neuen Schlüsselcode erstellen" @@ -5012,6 +5445,106 @@ msgstr "" msgid "Stream Feed" msgstr "Stream Feed" +#: ../stream.php:100 +msgid "Stream: Could not load chosen DB driver." +msgstr "" + +#: ../stream.php:151 +msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." +msgstr "" + +#: ../stream.php:192 ../stream.php:207 +msgid "Deprecated Plugins Found" +msgstr "" + +#: ../stream.php:193 +msgid "" +"The following plugins are deprecated and will be deactivated in order to " +"activate" +msgstr "" + +#: ../stream.php:202 +#, fuzzy +msgid "Continue" +msgstr "Kontext" + +#, fuzzy +#~ msgid "Network Stream Activity" +#~ msgstr "Stream Aktivitäten" + +#, fuzzy +#~ msgid "Stream Network Settings" +#~ msgstr "Stream Einstellungen" + +#, fuzzy +#~ msgid "Network Settings" +#~ msgstr "Stream Einstellungen" + +#, fuzzy +#~ msgid "New Site Settings" +#~ msgstr "Stream Einstellungen" + +#, fuzzy +#~ msgid "Enable Site Access" +#~ msgstr "Zugriff für Benutzerrolle" + +#, fuzzy +#~ msgid "Reset Site Settings" +#~ msgstr "Stream Einstellungen" + +#, fuzzy +#~ msgid "" +#~ "Warning: Clicking this will override all site settings with defaults." +#~ msgstr "" +#~ "Achtung: Alle gespeicherten Aufzeichnungen werden bei Klick auf den Link " +#~ "endgültig aus der Datenbank gelöscht." + +#, fuzzy +#~ msgid "Settings saved." +#~ msgstr "Einstellungen" + +#, fuzzy +#~ msgid "Site Admin" +#~ msgstr "Seitentitel" + +#, fuzzy +#~ msgid "Site Settings" +#~ msgstr "Stream Einstellungen" + +#, fuzzy +#~ msgctxt "1. User's name, 2. Site name" +#~ msgid "%1$s has been removed from the site \"%2$s\"." +#~ msgstr "%1$s's Benutzerrolle wurde von %2$s zu %3$s geändert" + +#, fuzzy +#~ msgid "marked as not spam" +#~ msgstr "Markiert als „kein Spam“" + +#, fuzzy +#~ msgid "marked as mature" +#~ msgstr "Markiert als „kein Spam“" + +#, fuzzy +#~ msgid "marked as not mature" +#~ msgstr "Markiert als „kein Spam“" + +#, fuzzy +#~ msgid "marked as public" +#~ msgstr "Markiert als „kein Spam“" + +#, fuzzy +#~ msgid "marked as private" +#~ msgstr "Markiert als „kein Spam“" + +#, fuzzy +#~ msgctxt "1. Site name, 2. Status" +#~ msgid "\"%1$s\" has been %2$s." +#~ msgstr "Edited %1$s: %2$s" + +#, fuzzy +#~ msgid "Site Activity" +#~ msgstr "Stream Aktivitäten" + #, fuzzy #~ msgid "The following table is not present in the WordPress database:" #~ msgstr "" @@ -5092,9 +5625,6 @@ msgstr "Stream Feed" #~ msgid "Edit Theme" #~ msgstr "Menü bearbeiten" -#~ msgid "Edited %1$s: %2$s" -#~ msgstr "Edited %1$s: %2$s" - #~ msgid "Mail Server Login Name" #~ msgstr "Mailserver Login-Name" diff --git a/languages/stream-es_ES.mo b/languages/stream-es_ES.mo index dbcb8442d..08dc2f844 100644 Binary files a/languages/stream-es_ES.mo and b/languages/stream-es_ES.mo differ diff --git a/languages/stream-es_ES.po b/languages/stream-es_ES.po index dbdd309a0..67b9e25bf 100644 --- a/languages/stream-es_ES.po +++ b/languages/stream-es_ES.po @@ -1,82 +1,90 @@ msgid "" msgstr "" "Project-Id-Version: Stream\n" -"POT-Creation-Date: 2014-09-27 01:02+1000\n" -"PO-Revision-Date: 2014-09-27 03:35+1000\n" -"Last-Translator: Luke Carbis \n" +"POT-Creation-Date: 2014-10-01 20:35+1000\n" +"PO-Revision-Date: 2014-10-01 20:38+1000\n" +"Last-Translator: Frankie Jarrett \n" "Language-Team: \n" "Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.3\n" +"X-Generator: Poedit 1.6.9\n" "X-Poedit-Basepath: .\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: ..\n" -#: ../stream.php:100 -msgid "Stream: Could not load chosen DB driver." -msgstr "" +#: ../classes/class-wp-stream-admin.php:144 +#: ../classes/class-wp-stream-admin.php:270 +#: ../classes/class-wp-stream-admin.php:837 +#, fuzzy +msgid "Connect to Stream" +msgstr "Conector" -#: ../stream.php:156 -msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." +#: ../classes/class-wp-stream-admin.php:148 +msgid "Stream is almost ready!" msgstr "" -"Stream necesita de una version de PHP de 5.3+, el plugin NO ESTA ACTIVO" -#: ../stream.php:197 ../stream.php:212 -msgid "Deprecated Plugins Found" +#: ../classes/class-wp-stream-admin.php:152 +#: ../classes/class-wp-stream-admin.php:841 +#, php-format +msgid "" +"Stream only uses your WordPress.com ID during sign up to authorize your " +"account. You can sign up for free at %swordpress.com/signup%s." msgstr "" -#: ../stream.php:198 +#: ../classes/class-wp-stream-admin.php:158 +#, php-format msgid "" -"The following plugins are deprecated and will be deactivated in order to " -"activate" +"Connect to Stream with your %sWordPress.com ID%s to see every change made to " +"your site in beautifully organized detail." msgstr "" -#: ../stream.php:207 -#, fuzzy -msgid "Continue" -msgstr "Contexto" +#: ../classes/class-wp-stream-admin.php:187 +msgid "All site settings have been successfully reset." +msgstr "" -#: ../classes/class-wp-stream-admin.php:152 -#: ../classes/class-wp-stream-admin.php:284 -#: ../classes/class-wp-stream-admin.php:862 -#, fuzzy -msgid "Connect to Stream" -msgstr "Conector" +#: ../classes/class-wp-stream-admin.php:193 +msgid "You have successfully connected to Stream!" +msgstr "" -#: ../classes/class-wp-stream-admin.php:254 -#: ../classes/class-wp-stream-admin.php:255 -#: ../classes/class-wp-stream-admin.php:285 +#: ../classes/class-wp-stream-admin.php:194 +msgid "" +"Check back here regularly to see a history of the changes being made to this " +"site." +msgstr "" + +#: ../classes/class-wp-stream-admin.php:242 +#: ../classes/class-wp-stream-admin.php:243 +#: ../classes/class-wp-stream-admin.php:271 #: ../connectors/class-wp-stream-connector-settings.php:129 msgid "Stream" msgstr "" -#: ../classes/class-wp-stream-admin.php:265 +#: ../classes/class-wp-stream-admin.php:253 msgid "Stream Settings" msgstr "Ajustes de Stream" -#: ../classes/class-wp-stream-admin.php:266 -#: ../connectors/class-wp-stream-connector-bbpress.php:114 -#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#: ../classes/class-wp-stream-admin.php:254 +#: ../classes/class-wp-stream-admin.php:540 #: ../connectors/class-wp-stream-connector-settings.php:100 #: ../connectors/class-wp-stream-connector-settings.php:121 #: ../connectors/class-wp-stream-connector-woocommerce.php:693 msgid "Settings" msgstr "Ajustes" -#: ../classes/class-wp-stream-admin.php:275 +#: ../classes/class-wp-stream-admin.php:262 #, fuzzy msgid "Stream Account" msgstr "Ajustes de Stream" -#: ../classes/class-wp-stream-admin.php:276 +#: ../classes/class-wp-stream-admin.php:263 msgid "Account" msgstr "" -#: ../classes/class-wp-stream-admin.php:354 +#: ../classes/class-wp-stream-admin.php:340 #, fuzzy msgid "" "Are you sure you want to reset all site settings to default? This cannot be " @@ -85,54 +93,54 @@ msgstr "" "Esta seguro de querer eliminar todos los registros de Stream de la base de " "datos" -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 #, php-format msgid "This will take about %d minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 msgid "This could take a few minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:385 +#: ../classes/class-wp-stream-admin.php:371 #, fuzzy msgid "Migrating Stream Records" msgstr "Registros de Stream" -#: ../classes/class-wp-stream-admin.php:386 +#: ../classes/class-wp-stream-admin.php:372 #, fuzzy msgid "Deleting Stream Records" msgstr "Registros de Stream" -#: ../classes/class-wp-stream-admin.php:387 +#: ../classes/class-wp-stream-admin.php:373 msgid "" "An unknown error occurred during migration. Please try again later or " "contact support." msgstr "" -#: ../classes/class-wp-stream-admin.php:388 -#: ../classes/class-wp-stream-admin.php:389 +#: ../classes/class-wp-stream-admin.php:374 +#: ../classes/class-wp-stream-admin.php:375 msgid "Please do not exit this page until the process has completed." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 #, php-format msgid "Please note: This process will take about %d minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 msgid "Please note: This process could take a few minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:391 +#: ../classes/class-wp-stream-admin.php:377 msgid "" "Please note: Your existing records will not appear in Stream until you have " "migrated them to your account." msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, fuzzy, php-format msgid "" "Are you sure you want to delete all %s existing Stream records without " @@ -141,171 +149,306 @@ msgstr "" "Esta seguro de querer eliminar todos los registros de Stream de la base de " "datos" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, php-format msgid "about %d" msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 msgid "a few" msgstr "" -#: ../classes/class-wp-stream-admin.php:421 +#: ../classes/class-wp-stream-admin.php:407 #, php-format msgid "" "Are you sure you want to perform bulk actions on over %d items? This process " "could take a while to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:422 +#: ../classes/class-wp-stream-admin.php:408 msgid "" "The Stream plugin must be deactivated before you can bulk import content " "into WordPress." msgstr "" -#: ../classes/class-wp-stream-admin.php:760 +#: ../classes/class-wp-stream-admin.php:726 +msgid "Error retrieving account details." +msgstr "" + +#: ../classes/class-wp-stream-admin.php:728 +msgid "" +"If this problem persists, please disconnect from Stream and try connecting " +"again." +msgstr "" + +#: ../classes/class-wp-stream-admin.php:735 msgid "Free" msgstr "" -#: ../classes/class-wp-stream-admin.php:764 +#: ../classes/class-wp-stream-admin.php:739 msgid "Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:766 +#: ../classes/class-wp-stream-admin.php:741 msgid "Standard" msgstr "" -#: ../classes/class-wp-stream-admin.php:772 +#: ../classes/class-wp-stream-admin.php:747 #, fuzzy, php-format +msgctxt "1: Price, 2: Renewal date" msgid "$%1$s on %2$s" msgstr "\"%s\" ha sido agregado a \"%s\"" -#: ../classes/class-wp-stream-admin.php:774 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:287 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:471 +#: ../classes/class-wp-stream-admin.php:749 +#: ../classes/class-wp-stream-author.php:64 +#: ../classes/class-wp-stream-author.php:72 +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:127 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:279 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:433 msgid "N/A" msgstr "" -#: ../classes/class-wp-stream-admin.php:781 +#: ../classes/class-wp-stream-admin.php:756 msgid "Unlimited" msgstr "" -#: ../classes/class-wp-stream-admin.php:784 +#: ../classes/class-wp-stream-admin.php:759 +#, php-format msgid "1 Day" -msgstr "" +msgid_plural "%s Days" +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-admin.php:794 +#: ../classes/class-wp-stream-admin.php:769 msgid "Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:798 +#: ../classes/class-wp-stream-admin.php:773 msgid "Activity History" msgstr "" -#: ../classes/class-wp-stream-admin.php:803 +#: ../classes/class-wp-stream-admin.php:778 msgid "Next Billing" msgstr "" -#: ../classes/class-wp-stream-admin.php:808 +#: ../classes/class-wp-stream-admin.php:783 #: ../connectors/class-wp-stream-connector-acf.php:81 -#: ../connectors/class-wp-stream-connector-bbpress.php:88 -#: ../connectors/class-wp-stream-connector-blogs.php:50 -#: ../connectors/class-wp-stream-connector-buddypress.php:123 #: ../connectors/class-wp-stream-connector-comments.php:46 -#: ../connectors/class-wp-stream-connector-edd.php:108 -#: ../connectors/class-wp-stream-connector-gravityforms.php:98 #: ../connectors/class-wp-stream-connector-menus.php:39 #: ../connectors/class-wp-stream-connector-posts.php:39 #: ../connectors/class-wp-stream-connector-taxonomies.php:54 #: ../connectors/class-wp-stream-connector-users.php:54 #: ../connectors/class-wp-stream-connector-widgets.php:58 -#: ../connectors/class-wp-stream-connector-woocommerce.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:77 msgid "Created" msgstr "Creado" -#: ../classes/class-wp-stream-admin.php:812 +#: ../classes/class-wp-stream-admin.php:787 msgid "Site ID" msgstr "" -#: ../classes/class-wp-stream-admin.php:818 +#: ../classes/class-wp-stream-admin.php:793 msgid "API Key" msgstr "" -#: ../classes/class-wp-stream-admin.php:828 +#: ../classes/class-wp-stream-admin.php:803 #: ../classes/class-wp-stream-list-table.php:49 -#: ../extensions/notifications/class-wp-stream-notifications.php:155 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:133 +#: ../extensions/notifications/class-wp-stream-notifications.php:136 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:125 msgid "Upgrade to Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:830 +#: ../classes/class-wp-stream-admin.php:805 msgid "Modify This Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:890 +#: ../classes/class-wp-stream-admin.php:847 +#, php-format +msgid "with your %sWordPress.com ID%s" +msgstr "" + +#: ../classes/class-wp-stream-admin.php:865 +msgctxt "Haiku line 1" msgid "A transformation" msgstr "" -#: ../classes/class-wp-stream-admin.php:891 +#: ../classes/class-wp-stream-admin.php:866 +msgctxt "Haiku line 2" msgid "Like brook, to river, to sea" msgstr "" -#: ../classes/class-wp-stream-admin.php:901 +#: ../classes/class-wp-stream-admin.php:876 +msgctxt "Haiku line 3" msgid "I have a secret" msgstr "" -#: ../classes/class-wp-stream-admin.php:917 -#: ../classes/class-wp-stream-admin.php:931 -#: ../classes/class-wp-stream-admin.php:933 +#: ../classes/class-wp-stream-admin.php:892 +#: ../classes/class-wp-stream-admin.php:898 msgid "Stream Records" msgstr "Registros de Stream" -#: ../classes/class-wp-stream-admin.php:928 -msgid " (1 site)" -msgstr "" +#: ../classes/class-wp-stream-admin.php:1038 +#, php-format +msgid "One more result..." +msgid_plural "%d more results..." +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-admin.php:942 -msgid "Get started with Stream for Multisite!" +#: ../classes/class-wp-stream-api.php:356 +msgid "Stream API Error." msgstr "" -#: ../classes/class-wp-stream-admin.php:943 -msgid "" -"Welcome to your Network Stream! Each site on your network must be connected " -"individually by an admin on that site for it to show here." +#: ../classes/class-wp-stream-author.php:237 +msgid "via WP-CLI" msgstr "" -#: ../classes/class-wp-stream-admin.php:954 -msgid "Stream for Multisite is coming soon!" +#: ../classes/class-wp-stream-author.php:239 +msgid "during WP Cron" msgstr "" -#: ../classes/class-wp-stream-admin.php:955 -msgid "Access to all the Stream feeds in your network is currently disabled." +#: ../classes/class-wp-stream-connectors.php:98 +#, php-format +msgid "%s class wasn't loaded because it doesn't extends the %s class." msgstr "" -#: ../classes/class-wp-stream-admin.php:1104 -msgid "One more result..." +#: ../classes/class-wp-stream-dashboard-widget.php:25 +#, fuzzy +msgid "Stream Activity" +msgstr "Ajustes de Stream" + +#: ../classes/class-wp-stream-dashboard-widget.php:57 +#: ../classes/class-wp-stream-list-table.php:53 +msgid "Sorry, no activity records were found." msgstr "" -#: ../classes/class-wp-stream-api.php:360 -msgid "Stream API Error." +#: ../classes/class-wp-stream-dashboard-widget.php:99 +#, fuzzy +msgid "View all records" +msgstr "Borrar todos los registros" + +#: ../classes/class-wp-stream-dashboard-widget.php:101 +#, fuzzy +msgid "View All" +msgstr "Ver" + +#: ../classes/class-wp-stream-dashboard-widget.php:119 +msgid "Go to the first page" msgstr "" -#: ../classes/class-wp-stream-connectors.php:102 -#, php-format -msgid "%s class wasn't loaded because it doesn't extends the %s class." +#: ../classes/class-wp-stream-dashboard-widget.php:127 +msgid "Go to the previous page" msgstr "" #: ../classes/class-wp-stream-dashboard-widget.php:134 -#, php-format +#, fuzzy, php-format +msgctxt "paging" msgid "%1$s of %2$s" +msgstr "\"%s\" ha sido agregado a \"%s\"" + +#: ../classes/class-wp-stream-dashboard-widget.php:139 +msgid "Go to the next page" msgstr "" +#: ../classes/class-wp-stream-dashboard-widget.php:148 +msgid "Go to the last page" +msgstr "" + +#: ../classes/class-wp-stream-dashboard-widget.php:185 +#: ../classes/class-wp-stream-list-table.php:22 +msgid "Records per page" +msgstr "Registros por pagina" + +#: ../classes/class-wp-stream-dashboard-widget.php:190 +#, fuzzy +msgid "Enable live updates" +msgstr "Rol de acceso" + #: ../classes/class-wp-stream-dashboard-widget.php:209 #, php-format +msgctxt "1: Time, 2: User profile URL, 3: User display name" msgid "%1$s ago by %3$s" msgstr "" +#: ../classes/class-wp-stream-date-interval.php:48 +msgid "Today" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:53 +msgid "Yesterday" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:58 +#: ../classes/class-wp-stream-date-interval.php:63 +#: ../classes/class-wp-stream-date-interval.php:68 +#, php-format +msgid "Last %d Days" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:73 +msgid "This Month" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:78 +msgid "Last Month" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:83 +#: ../classes/class-wp-stream-date-interval.php:88 +#: ../classes/class-wp-stream-date-interval.php:93 +#, php-format +msgid "Last %d Months" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:98 +msgid "This Year" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:103 +msgid "Last Year" +msgstr "" + +#: ../classes/class-wp-stream-feeds.php:109 +#, fuzzy +msgid "Stream Feeds Key" +msgstr "URL de RSS Stream" + +#: ../classes/class-wp-stream-feeds.php:114 +#, fuzzy +msgid "Generate new key" +msgstr "Generar nueva clave" + +#: ../classes/class-wp-stream-feeds.php:117 +msgid "" +"This is your private key used for accessing feeds of Stream Records " +"securely. You can change your key at any time by generating a new one using " +"the link above." +msgstr "" + +#: ../classes/class-wp-stream-feeds.php:119 +#, fuzzy +msgid "RSS Feed" +msgstr "URL de RSS Stream" + +#: ../classes/class-wp-stream-feeds.php:121 +msgid "ATOM Feed" +msgstr "" + +#: ../classes/class-wp-stream-feeds.php:123 +#, fuzzy +msgid "JSON Feed" +msgstr "URL de RSS Stream" + +#: ../classes/class-wp-stream-feeds.php:171 +msgid "Access Denied" +msgstr "Acceso denegado" + +#: ../classes/class-wp-stream-feeds.php:172 +msgid "" +"You don't have permission to view this feed, please contact your site " +"Administrator." +msgstr "" +"No tienes permiso para ver esta vista, por favor pongase en contacto con el " +"administrador del sitio" + #: ../classes/class-wp-stream-filter-input.php:49 msgid "Invalid use, type must be one of INPUT_* family." msgstr "" @@ -314,44 +457,48 @@ msgstr "" msgid "Filter not supported." msgstr "" -#: ../classes/class-wp-stream-list-table.php:22 -msgid "Records per page" -msgstr "Registros por pagina" - #: ../classes/class-wp-stream-list-table.php:48 +#, php-format msgid "Your free account is limited to viewing 24 hours of activity history." -msgstr "" - -#: ../classes/class-wp-stream-list-table.php:53 -msgid "Sorry, no activity records were found." -msgstr "" +msgid_plural "" +"Your free account is limited to viewing %d days of activity " +"history." +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-list-table.php:68 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:507 msgid "Date" msgstr "Fecha" #: ../classes/class-wp-stream-list-table.php:69 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:472 msgid "Summary" msgstr "Sumario" #: ../classes/class-wp-stream-list-table.php:70 -#: ../connectors/class-wp-stream-connector-acf.php:309 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:406 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:492 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:368 msgid "Author" msgstr "Autor" #: ../classes/class-wp-stream-list-table.php:71 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:409 +#: ../classes/class-wp-stream-settings.php:603 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:553 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:371 msgid "Context" msgstr "Contexto" #: ../classes/class-wp-stream-list-table.php:72 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:405 +#: ../classes/class-wp-stream-settings.php:604 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:560 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:367 msgid "Action" msgstr "Acción" #: ../classes/class-wp-stream-list-table.php:73 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:410 +#: ../classes/class-wp-stream-settings.php:605 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:372 msgid "IP Address" msgstr "Dirección de IP" @@ -359,6 +506,11 @@ msgstr "Dirección de IP" msgid "View all records for this object" msgstr "" +#: ../classes/class-wp-stream-list-table.php:260 +#, fuzzy +msgid "Deleted User" +msgstr "Eliminado \"%s\"" + #: ../classes/class-wp-stream-list-table.php:527 #, fuzzy msgid "dates" @@ -376,17 +528,67 @@ msgstr "contextos" msgid "actions" msgstr "acciónes" +#: ../classes/class-wp-stream-list-table.php:569 +msgid "Show filter controls via the screen options tab above." +msgstr "" + #: ../classes/class-wp-stream-list-table.php:606 msgid "Filter" msgstr "Filtro" +#: ../classes/class-wp-stream-list-table.php:658 +#, php-format +msgid "Show all %s" +msgstr "" + +#: ../classes/class-wp-stream-list-table.php:699 +#, fuzzy +msgid "Search Records" +msgstr "Registros de Stream" + #: ../classes/class-wp-stream-list-table.php:719 +#: ../extensions/reports/views/intervals.php:3 msgid "All Time" msgstr "" +#: ../classes/class-wp-stream-list-table.php:721 +#: ../extensions/reports/views/intervals.php:5 +msgid "Custom" +msgstr "" + +#: ../classes/class-wp-stream-list-table.php:737 +msgid "Start Date" +msgstr "" + +#: ../classes/class-wp-stream-list-table.php:743 +#, fuzzy +msgid "End Date" +msgstr "Fecha" + +#: ../classes/class-wp-stream-list-table.php:825 +#, fuzzy +msgid "Live updates" +msgstr "Rol de acceso" + +#: ../classes/class-wp-stream-list-table.php:836 +#: ../classes/class-wp-stream-settings.php:237 +msgid "Enabled" +msgstr "Habilitado" + +#: ../classes/class-wp-stream-live-update.php:57 +msgid "" +"Live updates could not be enabled because Heartbeat is not loaded.\n" +"\n" +"Your hosting provider or another plugin may have disabled it for performance " +"reasons." +msgstr "" + #: ../classes/class-wp-stream-live-update.php:176 +#, php-format msgid "1 item" -msgstr "" +msgid_plural "%s items" +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-migrate.php:121 #, fuzzy @@ -437,125 +639,158 @@ msgstr "" msgid "All existing records have been deleted from the database." msgstr "" -#: ../classes/class-wp-stream-network.php:129 -msgid "Network Admin" -msgstr "" - -#: ../classes/class-wp-stream-network.php:169 +#: ../classes/class-wp-stream-pointers.php:144 #, fuzzy -msgid "Stream Network Settings" +msgid "Stream Extensions" msgstr "Ajustes de Stream" -#: ../classes/class-wp-stream-network.php:170 -#, fuzzy -msgid "Network Settings" -msgstr "Ajustes de Stream" +#: ../classes/class-wp-stream-pointers.php:145 +msgid "Extension plugins are now available for Stream!" +msgstr "" -#: ../classes/class-wp-stream-network.php:179 -#, fuzzy -msgid "New Site Settings" -msgstr "Ajustes de Stream" +#: ../classes/class-wp-stream-record.php:41 +msgid "Could not validate record data." +msgstr "" -#: ../classes/class-wp-stream-network.php:180 -msgid "Site Defaults" +#: ../classes/class-wp-stream-settings.php:75 +msgid "There was an error in the request" msgstr "" -#: ../classes/class-wp-stream-network.php:234 -msgid "These settings apply to all sites on the network." +#: ../classes/class-wp-stream-settings.php:119 +#, php-format +msgid "" +"ID: %d\n" +"User: %s\n" +"Email: %s\n" +"Role: %s" msgstr "" -#: ../classes/class-wp-stream-network.php:237 +#: ../classes/class-wp-stream-settings.php:138 msgid "" -"These default settings will apply to new sites created on the network. These " -"settings do not alter existing sites." +"Actions performed by the system when a user is not logged in (e.g. auto site " +"upgrader, or invoking WP-CLI without --user)" +msgstr "" + +#: ../classes/class-wp-stream-settings.php:208 +#: ../connectors/class-wp-stream-connector-settings.php:122 +msgid "General" msgstr "" -#: ../classes/class-wp-stream-network.php:302 +#: ../classes/class-wp-stream-settings.php:212 +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:36 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:55 #, fuzzy -msgid "Enable Site Access" +msgid "Role Access" msgstr "Rol de acceso" -#: ../classes/class-wp-stream-network.php:303 -msgid "Enabled" -msgstr "Habilitado" - -#: ../classes/class-wp-stream-network.php:305 +#: ../classes/class-wp-stream-settings.php:214 msgid "" -"When site access is disabled Stream can only be accessed from the network " -"administration." +"Users from the selected roles above will have permission to view Stream " +"Records. However, only site Administrators can access Stream Settings." msgstr "" +"Los usuarios de los roles seleccionados arriba tienen permiso de ver " +"Registros Sream, sin embargo solamente los administradores del sitio pueden " +"realizar ajustes" -#: ../classes/class-wp-stream-network.php:321 -#, fuzzy -msgid "Reset Site Settings" -msgstr "Ajustes de Stream" +#: ../classes/class-wp-stream-settings.php:220 +msgid "Private Feeds" +msgstr "Feeds Privados" -#: ../classes/class-wp-stream-network.php:324 -#, fuzzy -msgid "Warning: Clicking this will override all site settings with defaults." +#: ../classes/class-wp-stream-settings.php:223 +#, fuzzy, php-format +msgid "" +"Users from the selected roles above will be given a private key found in " +"their %suser profile%s to access feeds of Stream Records securely. Please " +"%sflush rewrite rules%s on your site after changing this setting." msgstr "" -"Advertencia: Al hacer click en esto, todos los registros de actividad se " -"borrarán de la base de datos." +"A los usuarios de los roles seleccionados se les va a dar un Feed URL en su " +"%sPerfil de usuario%s. Por favor haga los cambios necesarios en su sitio " +"despues de cambiar esta configuración. Ej: %sflush rewrite rules%s" -#: ../classes/class-wp-stream-network.php:408 +#: ../classes/class-wp-stream-settings.php:227 #, fuzzy -msgid "Settings saved." -msgstr "Ajustes" +msgid "View Profile" +msgstr "Editar perfil" + +#: ../classes/class-wp-stream-settings.php:233 +msgid "View Codex" +msgstr "Ver Codex" -#: ../classes/class-wp-stream-network.php:463 -msgid "sites" +#: ../classes/class-wp-stream-settings.php:243 +msgid "Exclude" msgstr "" -#: ../classes/class-wp-stream-record.php:41 -msgid "Could not validate record data." +#: ../classes/class-wp-stream-settings.php:247 +msgid "Exclude Rules" msgstr "" -#: ../classes/class-wp-stream-settings.php:129 -#, php-format +#: ../classes/class-wp-stream-settings.php:249 msgid "" -"ID: %d\n" -"User: %s\n" -"Email: %s\n" -"Role: %s" +"Create rules for excluding certain kinds of records from appearing in Stream." msgstr "" -#: ../classes/class-wp-stream-settings.php:241 -#, fuzzy, php-format -msgid "" -"Users from the selected roles above will be given a private key found in " -"their %suser profile%s to access feeds of Stream Records securely. Please " -"%sflush rewrite rules%s on your site after changing this setting." +#: ../classes/class-wp-stream-settings.php:569 +#, php-format +msgid "Any %s" msgstr "" -"A los usuarios de los roles seleccionados se les va a dar un Feed URL en su " -"%sPerfil de usuario%s. Por favor haga los cambios necesarios en su sitio " -"despues de cambiar esta configuración. Ej: %sflush rewrite rules%s" -#: ../classes/class-wp-stream-settings.php:610 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +#: ../classes/class-wp-stream-settings.php:584 msgid "Add New Rule" msgstr "" -#: ../classes/class-wp-stream-settings.php:611 +#: ../classes/class-wp-stream-settings.php:585 msgid "Delete Selected Rules" msgstr "" -#: ../classes/class-wp-stream-settings.php:656 +#: ../classes/class-wp-stream-settings.php:602 +#, fuzzy +msgid "Author or Role" +msgstr "Autor" + +#: ../classes/class-wp-stream-settings.php:606 +#, fuzzy +msgid "Filters" +msgstr "Filtro" + +#: ../classes/class-wp-stream-settings.php:630 +#, php-format msgid "1 user" +msgid_plural "%s users" +msgstr[0] "" +msgstr[1] "" + +#: ../classes/class-wp-stream-settings.php:653 +#, fuzzy +msgid "Any Author or Role" +msgstr "Autor" + +#: ../classes/class-wp-stream-settings.php:694 +#, fuzzy +msgid "Any Context" +msgstr "Contexto" + +#: ../classes/class-wp-stream-settings.php:713 +#, fuzzy +msgid "Any Action" +msgstr "Acción" + +#: ../classes/class-wp-stream-settings.php:724 +#, fuzzy +msgid "Any IP Address" +msgstr "Dirección de IP" + +#: ../classes/class-wp-stream-settings.php:761 +msgid "No rules found." msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:71 +msgctxt "acf" msgid "ACF" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:82 -#: ../connectors/class-wp-stream-connector-bbpress.php:89 -#: ../connectors/class-wp-stream-connector-blogs.php:49 -#: ../connectors/class-wp-stream-connector-buddypress.php:124 -#: ../connectors/class-wp-stream-connector-edd.php:109 #: ../connectors/class-wp-stream-connector-editor.php:54 -#: ../connectors/class-wp-stream-connector-gravityforms.php:99 #: ../connectors/class-wp-stream-connector-installer.php:48 -#: ../connectors/class-wp-stream-connector-jetpack.php:85 #: ../connectors/class-wp-stream-connector-media.php:43 #: ../connectors/class-wp-stream-connector-menus.php:40 #: ../connectors/class-wp-stream-connector-posts.php:38 @@ -563,27 +798,16 @@ msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:55 #: ../connectors/class-wp-stream-connector-users.php:53 #: ../connectors/class-wp-stream-connector-widgets.php:62 -#: ../connectors/class-wp-stream-connector-woocommerce.php:99 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:78 msgid "Updated" msgstr "Actualizado" #: ../connectors/class-wp-stream-connector-acf.php:83 -#: ../connectors/class-wp-stream-connector-edd.php:110 -#: ../connectors/class-wp-stream-connector-gravityforms.php:102 -#: ../connectors/class-wp-stream-connector-jetpack.php:86 #: ../connectors/class-wp-stream-connector-widgets.php:55 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:79 msgid "Added" msgstr "Agregado" #: ../connectors/class-wp-stream-connector-acf.php:84 -#: ../connectors/class-wp-stream-connector-bbpress.php:92 -#: ../connectors/class-wp-stream-connector-blogs.php:52 -#: ../connectors/class-wp-stream-connector-buddypress.php:127 #: ../connectors/class-wp-stream-connector-comments.php:55 -#: ../connectors/class-wp-stream-connector-edd.php:111 -#: ../connectors/class-wp-stream-connector-gravityforms.php:103 #: ../connectors/class-wp-stream-connector-installer.php:47 #: ../connectors/class-wp-stream-connector-media.php:44 #: ../connectors/class-wp-stream-connector-menus.php:41 @@ -591,141 +815,171 @@ msgstr "Agregado" #: ../connectors/class-wp-stream-connector-taxonomies.php:56 #: ../connectors/class-wp-stream-connector-users.php:55 #: ../connectors/class-wp-stream-connector-widgets.php:59 -#: ../connectors/class-wp-stream-connector-woocommerce.php:102 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:80 msgid "Deleted" msgstr "Eliminado" #: ../connectors/class-wp-stream-connector-acf.php:95 +#, fuzzy +msgctxt "acf" msgid "Field Groups" -msgstr "" +msgstr "Ver Perfil" #: ../connectors/class-wp-stream-connector-acf.php:96 +msgctxt "acf" msgid "Fields" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:97 +msgctxt "acf" msgid "Rules" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:98 -#: ../connectors/class-wp-stream-connector-jetpack.php:101 #, fuzzy +msgctxt "acf" msgid "Options" msgstr "acciónes" #: ../connectors/class-wp-stream-connector-acf.php:99 +msgctxt "acf" msgid "Values" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:224 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" field in \"%2$s\" %3$s" msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-acf.php:252 +msgctxt "acf" msgid "High (after title)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:253 +msgctxt "acf" msgid "Normal (after content)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:254 +msgctxt "acf" msgid "Side" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:258 -#, php-format +#, fuzzy, php-format +msgctxt "acf" msgid "Position of \"%1$s\" updated to \"%2$s\"" -msgstr "" +msgstr "\"%s\" a \"%s\" a sido adjuntado" #: ../connectors/class-wp-stream-connector-acf.php:277 +msgctxt "acf" msgid "Seamless (no metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:278 +msgctxt "acf" msgid "Standard (WP metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:282 #, fuzzy, php-format +msgctxt "acf" msgid "Style of \"%1$s\" updated to \"%2$s\"" msgstr "\"%s\" a \"%s\" a sido adjuntado" #: ../connectors/class-wp-stream-connector-acf.php:301 #, fuzzy +msgctxt "acf" msgid "Permalink" msgstr "Estructura de los Permalink" #: ../connectors/class-wp-stream-connector-acf.php:302 +#, fuzzy +msgctxt "acf" msgid "Content Editor" -msgstr "" +msgstr "Contexto" #: ../connectors/class-wp-stream-connector-acf.php:303 +msgctxt "acf" msgid "Excerpt" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:304 +msgctxt "acf" msgid "Custom Fields" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:305 -#: ../connectors/class-wp-stream-connector-settings.php:125 +#, fuzzy +msgctxt "acf" msgid "Discussion" msgstr "Discusión" #: ../connectors/class-wp-stream-connector-acf.php:306 -#: ../connectors/class-wp-stream-connector-comments.php:36 -#: ../connectors/class-wp-stream-connector-comments.php:68 -#: ../connectors/class-wp-stream-connector-jetpack.php:109 #, fuzzy +msgctxt "acf" msgid "Comments" msgstr "Lista negra de comentarios" #: ../connectors/class-wp-stream-connector-acf.php:307 #, fuzzy +msgctxt "acf" msgid "Revisions" msgstr "Revisión" #: ../connectors/class-wp-stream-connector-acf.php:308 +msgctxt "acf" msgid "Slug" msgstr "" +#: ../connectors/class-wp-stream-connector-acf.php:309 +#, fuzzy +msgctxt "acf" +msgid "Author" +msgstr "Autor" + #: ../connectors/class-wp-stream-connector-acf.php:310 #, fuzzy +msgctxt "acf" msgid "Format" msgstr "Dando Formato" #: ../connectors/class-wp-stream-connector-acf.php:311 +msgctxt "acf" msgid "Featured Image" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:312 -#: ../connectors/class-wp-stream-connector-edd.php:129 #, fuzzy +msgctxt "acf" msgid "Categories" msgstr "Categoria base" #: ../connectors/class-wp-stream-connector-acf.php:313 -#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "acf" msgid "Tags" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:314 +msgctxt "acf" msgid "Send Trackbacks" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:318 +#, fuzzy +msgctxt "acf" msgid "All screens" -msgstr "" +msgstr "Acción" #: ../connectors/class-wp-stream-connector-acf.php:320 +msgctxt "acf" msgid "No screens" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:326 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" set to display on \"%2$s\"" msgstr "\"%s\" ha sido agregado a \"%s\"" @@ -735,110 +989,126 @@ msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:396 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" of \"%2$s\" %3$s updated" msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-acf.php:434 -#, php-format +#, fuzzy, php-format +msgctxt "acf" msgid "Updated rules of \"%1$s\" (%2$d added, %3$d deleted)" -msgstr "" +msgstr "Actualizado %s: %s a %s" #: ../connectors/class-wp-stream-connector-acf.php:460 msgid "field group" msgstr "" -#: ../connectors/class-wp-stream-connector-acf.php:494 +#: ../connectors/class-wp-stream-connector-acf.php:495 #, fuzzy, php-format +msgctxt "acf" msgid "Updated Order of \"%1$s\" from %2$d to %3$d" msgstr "Actualizado %s: %s a %s" #: ../connectors/class-wp-stream-connector-bbpress.php:78 +msgctxt "bbpress" msgid "bbPress" msgstr "" +#: ../connectors/class-wp-stream-connector-bbpress.php:88 +#, fuzzy +msgctxt "bbpress" +msgid "Created" +msgstr "Creado" + +#: ../connectors/class-wp-stream-connector-bbpress.php:89 +#, fuzzy +msgctxt "bbpress" +msgid "Updated" +msgstr "Actualizado" + #: ../connectors/class-wp-stream-connector-bbpress.php:90 -#: ../connectors/class-wp-stream-connector-buddypress.php:125 -#: ../connectors/class-wp-stream-connector-gravityforms.php:422 -#: ../connectors/class-wp-stream-connector-installer.php:45 -#: ../connectors/class-wp-stream-connector-jetpack.php:79 +#, fuzzy +msgctxt "bbpress" msgid "Activated" msgstr "Activado" #: ../connectors/class-wp-stream-connector-bbpress.php:91 -#: ../connectors/class-wp-stream-connector-buddypress.php:126 -#: ../connectors/class-wp-stream-connector-gravityforms.php:423 -#: ../connectors/class-wp-stream-connector-installer.php:46 -#: ../connectors/class-wp-stream-connector-widgets.php:60 +#, fuzzy +msgctxt "bbpress" msgid "Deactivated" msgstr "Desactivado" +#: ../connectors/class-wp-stream-connector-bbpress.php:92 +#, fuzzy +msgctxt "bbpress" +msgid "Deleted" +msgstr "Eliminado" + #: ../connectors/class-wp-stream-connector-bbpress.php:93 -#: ../connectors/class-wp-stream-connector-comments.php:51 -#: ../connectors/class-wp-stream-connector-edd.php:112 -#: ../connectors/class-wp-stream-connector-gravityforms.php:104 -#: ../connectors/class-wp-stream-connector-gravityforms.php:424 -#: ../connectors/class-wp-stream-connector-posts.php:40 -#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +#, fuzzy +msgctxt "bbpress" msgid "Trashed" msgstr "Borrados" #: ../connectors/class-wp-stream-connector-bbpress.php:94 -#: ../connectors/class-wp-stream-connector-comments.php:52 -#: ../connectors/class-wp-stream-connector-edd.php:113 -#: ../connectors/class-wp-stream-connector-gravityforms.php:105 -#: ../connectors/class-wp-stream-connector-gravityforms.php:425 -#: ../connectors/class-wp-stream-connector-posts.php:41 +msgctxt "bbpress" msgid "Restored" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:95 -#: ../connectors/class-wp-stream-connector-edd.php:114 #, fuzzy +msgctxt "bbpress" msgid "Generated" msgstr "Generar nueva clave" #: ../connectors/class-wp-stream-connector-bbpress.php:96 -#: ../connectors/class-wp-stream-connector-edd.php:115 -#: ../connectors/class-wp-stream-connector-gravityforms.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:82 #, fuzzy +msgctxt "bbpress" msgid "Imported" msgstr "Ordenado" #: ../connectors/class-wp-stream-connector-bbpress.php:97 -#: ../connectors/class-wp-stream-connector-edd.php:116 -#: ../connectors/class-wp-stream-connector-gravityforms.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:81 #, fuzzy +msgctxt "bbpress" msgid "Exported" msgstr "Ordenado" #: ../connectors/class-wp-stream-connector-bbpress.php:98 +msgctxt "bbpress" msgid "Closed" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:99 +msgctxt "bbpress" msgid "Opened" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:100 +msgctxt "bbpress" msgid "Sticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:101 +msgctxt "bbpress" msgid "Unsticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:102 -#: ../connectors/class-wp-stream-connector-buddypress.php:128 +msgctxt "bbpress" msgid "Marked as spam" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:103 -#: ../connectors/class-wp-stream-connector-buddypress.php:129 +msgctxt "bbpress" msgid "Unmarked as spam" msgstr "" +#: ../connectors/class-wp-stream-connector-bbpress.php:114 +#, fuzzy +msgctxt "bbpress" +msgid "Settings" +msgstr "Ajustes" + #: ../connectors/class-wp-stream-connector-bbpress.php:131 #: ../connectors/class-wp-stream-connector-buddypress.php:164 #: ../connectors/class-wp-stream-connector-buddypress.php:223 @@ -846,8 +1116,8 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:254 #: ../connectors/class-wp-stream-connector-comments.php:124 #: ../connectors/class-wp-stream-connector-gravityforms.php:137 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:126 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:133 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:117 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:124 msgid "Edit" msgstr "Editar" @@ -868,126 +1138,86 @@ msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:209 #, fuzzy, php-format +msgctxt "1: Action, 2: Topic title" msgid "%1$s \"%2$s\" topic" msgstr "\"%s\" %s actualizado" -#: ../connectors/class-wp-stream-connector-blogs.php:39 -msgid "Sites" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:51 -msgid "Archived" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:85 -#: ../connectors/class-wp-stream-connector-blogs.php:90 +#: ../connectors/class-wp-stream-connector-buddypress.php:113 #, fuzzy -msgid "Site Admin" -msgstr "Título del sitio" +msgctxt "buddypress" +msgid "BuddyPress" +msgstr "Dirección de IP" -#: ../connectors/class-wp-stream-connector-blogs.php:101 +#: ../connectors/class-wp-stream-connector-buddypress.php:123 #, fuzzy -msgid "Site Settings" -msgstr "Ajustes de Stream" - -#: ../connectors/class-wp-stream-connector-blogs.php:116 -#, php-format -msgid "A new site called \"%1$s\" has been created." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:139 -#, php-format -msgid "A new site called \"%1$s\" has been registered." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:170 -#, php-format -msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:201 -#, fuzzy, php-format -msgid "%1$s has been removed from the site \"%2$s\"." -msgstr "\"%s\" ha sido eliminado de \"%s\"" - -#: ../connectors/class-wp-stream-connector-blogs.php:220 -#: ../connectors/class-wp-stream-connector-gravityforms.php:650 -msgid "marked as spam" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:228 -msgid "marked as not spam" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:236 -msgid "marked as mature" -msgstr "" +msgctxt "buddypress" +msgid "Created" +msgstr "Creado" -#: ../connectors/class-wp-stream-connector-blogs.php:244 -msgid "marked as not mature" -msgstr "" +#: ../connectors/class-wp-stream-connector-buddypress.php:124 +#, fuzzy +msgctxt "buddypress" +msgid "Updated" +msgstr "Actualizado" -#: ../connectors/class-wp-stream-connector-blogs.php:252 -msgid "archived" -msgstr "" +#: ../connectors/class-wp-stream-connector-buddypress.php:125 +#, fuzzy +msgctxt "buddypress" +msgid "Activated" +msgstr "Activado" -#: ../connectors/class-wp-stream-connector-blogs.php:260 -msgid "restored from archive" -msgstr "" +#: ../connectors/class-wp-stream-connector-buddypress.php:126 +#, fuzzy +msgctxt "buddypress" +msgid "Deactivated" +msgstr "Desactivado" -#: ../connectors/class-wp-stream-connector-blogs.php:268 -#: ../connectors/class-wp-stream-connector-gravityforms.php:497 +#: ../connectors/class-wp-stream-connector-buddypress.php:127 #, fuzzy -msgid "deleted" +msgctxt "buddypress" +msgid "Deleted" msgstr "Eliminado" -#: ../connectors/class-wp-stream-connector-blogs.php:276 -#: ../connectors/class-wp-stream-connector-gravityforms.php:652 -msgid "restored" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:286 -msgid "marked as public" +#: ../connectors/class-wp-stream-connector-buddypress.php:128 +msgctxt "buddypress" +msgid "Marked as spam" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:288 -msgid "marked as private" +#: ../connectors/class-wp-stream-connector-buddypress.php:129 +msgctxt "buddypress" +msgid "Unmarked as spam" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:302 -#, fuzzy, php-format -msgid "\"%1$s\" has been %2$s." -msgstr "\"%s\" ha sido agregado a \"%s\"" - -#: ../connectors/class-wp-stream-connector-buddypress.php:113 -#, fuzzy -msgid "BuddyPress" -msgstr "Dirección de IP" - #: ../connectors/class-wp-stream-connector-buddypress.php:130 +msgctxt "buddypress" msgid "Promoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:131 +msgctxt "buddypress" msgid "Demoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:142 #, fuzzy +msgctxt "buddypress" msgid "Components" msgstr "Lista negra de comentarios" #: ../connectors/class-wp-stream-connector-buddypress.php:143 +msgctxt "buddypress" msgid "Groups" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:144 #, fuzzy +msgctxt "buddypress" msgid "Activity" msgstr "Activado" #: ../connectors/class-wp-stream-connector-buddypress.php:145 #, fuzzy +msgctxt "buddypress" msgid "Profile fields" msgstr "Editar perfil" @@ -1006,8 +1236,10 @@ msgstr "Editar perfil" #: ../connectors/class-wp-stream-connector-gravityforms.php:145 #: ../connectors/class-wp-stream-connector-gravityforms.php:155 #: ../connectors/class-wp-stream-connector-media.php:110 +#: ../connectors/class-wp-stream-connector-posts.php:106 #: ../connectors/class-wp-stream-connector-taxonomies.php:94 #: ../connectors/class-wp-stream-connector-woocommerce.php:220 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:165 msgid "View" msgstr "Ver" @@ -1037,46 +1269,58 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:226 #: ../connectors/class-wp-stream-connector-buddypress.php:241 #: ../connectors/class-wp-stream-connector-buddypress.php:263 +#: ../extensions/notifications/views/form-templates.php:19 +#: ../extensions/notifications/views/form-templates.php:78 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:173 #, fuzzy msgid "Delete" msgstr "Eliminado" #: ../connectors/class-wp-stream-connector-buddypress.php:284 #: ../connectors/class-wp-stream-connector-buddypress.php:288 +msgctxt "buddypress" msgid "Toolbar" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:292 +msgctxt "buddypress" msgid "Account Deletion" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:296 #, fuzzy +msgctxt "buddypress" msgid "Profile Syncing" msgstr "Editar perfil" #: ../connectors/class-wp-stream-connector-buddypress.php:300 +msgctxt "buddypress" msgid "Group Creation" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:304 +msgctxt "buddypress" msgid "bbPress Configuration" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:308 +msgctxt "buddypress" msgid "Blog & Forum Comments" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:312 +msgctxt "buddypress" msgid "Activity auto-refresh" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:316 +msgctxt "buddypress" msgid "Akismet" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:320 #, fuzzy +msgctxt "buddypress" msgid "Avatar Uploads" msgstr "Mostrar Avatar" @@ -1117,13 +1361,13 @@ msgid "\"%1$s\" component %2$s" msgstr "\"%s\" ha sido agregado a \"%s\"" #: ../connectors/class-wp-stream-connector-buddypress.php:432 +msgctxt "buddypress" msgid "Register" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:433 -#: ../connectors/class-wp-stream-connector-jetpack.php:159 -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 #, fuzzy +msgctxt "buddypress" msgid "Activate" msgstr "Activado" @@ -1202,10 +1446,12 @@ msgid "Removed \"%2$s\" from \"%1$s\"" msgstr "\"%s\" a \"%s\" a sido adjuntado" #: ../connectors/class-wp-stream-connector-buddypress.php:665 +msgctxt "buddypress" msgid "Administrator" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:666 +msgctxt "buddypress" msgid "Moderator" msgstr "" @@ -1221,6 +1467,7 @@ msgstr "Actualizado \"%s\" en \"%s\"" #: ../connectors/class-wp-stream-connector-buddypress.php:682 #, fuzzy +msgctxt "buddypress" msgid "Member" msgstr "Membresia" @@ -1254,6 +1501,12 @@ msgstr "Menu actualizado \"%s\"" msgid "Deleted profile field group \"%s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:36 +#: ../connectors/class-wp-stream-connector-comments.php:68 +#, fuzzy +msgid "Comments" +msgstr "Lista negra de comentarios" + #: ../connectors/class-wp-stream-connector-comments.php:47 msgid "Edited" msgstr "Editado" @@ -1270,6 +1523,18 @@ msgstr "" msgid "Unapproved" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:51 +#: ../connectors/class-wp-stream-connector-gravityforms.php:424 +#: ../connectors/class-wp-stream-connector-posts.php:40 +msgid "Trashed" +msgstr "Borrados" + +#: ../connectors/class-wp-stream-connector-comments.php:52 +#: ../connectors/class-wp-stream-connector-gravityforms.php:425 +#: ../connectors/class-wp-stream-connector-posts.php:41 +msgid "Restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-comments.php:53 msgid "Marked as Spam" msgstr "" @@ -1346,87 +1611,166 @@ msgid "automatically marked as spam by Akismet" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:248 -#, php-format +#, fuzzy, php-format +msgctxt "" +"1: Parent comment's author, 2: Comment author, 3: Post title, 4: Comment " +"status, 5: Comment type" msgid "Reply to %1$s's %5$s by %2$s on %3$s %4$s" -msgstr "" +msgstr "Actualizado %s: %s a %s" #: ../connectors/class-wp-stream-connector-comments.php:261 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title 3: Comment status, 4: Comment type" msgid "New %4$s by %1$s on %2$s %3$s" msgstr "Actualizado %s: %s a %s" #: ../connectors/class-wp-stream-connector-comments.php:295 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s edited" msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-comments.php:327 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s deleted permanently" msgstr "\"%s\" %s eliminado de la basura" #: ../connectors/class-wp-stream-connector-comments.php:359 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s trashed" msgstr "\"%s\" %s borrado" #: ../connectors/class-wp-stream-connector-comments.php:391 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s restored" msgstr "\"%s\" %s fue creado" #: ../connectors/class-wp-stream-connector-comments.php:423 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s marked as spam" -msgstr "" +msgstr "\"%s\" %s borrado" #: ../connectors/class-wp-stream-connector-comments.php:455 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s unmarked as spam" -msgstr "" +msgstr "\"%s\" %s borrado" #: ../connectors/class-wp-stream-connector-comments.php:489 #, fuzzy, php-format +msgctxt "" +"Comment status transition. 1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s %2$s" msgstr "Actualizado %s: %s a %s" #: ../connectors/class-wp-stream-connector-comments.php:524 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "Duplicate %3$s by %1$s prevented on %2$s" -msgstr "" +msgstr "Actualizado %s: %s a %s" #: ../connectors/class-wp-stream-connector-edd.php:98 +msgctxt "edd" msgid "Easy Digital Downloads" msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:108 +#, fuzzy +msgctxt "edd" +msgid "Created" +msgstr "Creado" + +#: ../connectors/class-wp-stream-connector-edd.php:109 +#, fuzzy +msgctxt "edd" +msgid "Updated" +msgstr "Actualizado" + +#: ../connectors/class-wp-stream-connector-edd.php:110 +#, fuzzy +msgctxt "edd" +msgid "Added" +msgstr "Agregado" + +#: ../connectors/class-wp-stream-connector-edd.php:111 +#, fuzzy +msgctxt "edd" +msgid "Deleted" +msgstr "Eliminado" + +#: ../connectors/class-wp-stream-connector-edd.php:112 +#, fuzzy +msgctxt "edd" +msgid "Trashed" +msgstr "Borrados" + +#: ../connectors/class-wp-stream-connector-edd.php:113 +msgctxt "edd" +msgid "Restored" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:114 +#, fuzzy +msgctxt "edd" +msgid "Generated" +msgstr "Generar nueva clave" + +#: ../connectors/class-wp-stream-connector-edd.php:115 +#, fuzzy +msgctxt "edd" +msgid "Imported" +msgstr "Ordenado" + +#: ../connectors/class-wp-stream-connector-edd.php:116 +#, fuzzy +msgctxt "edd" +msgid "Exported" +msgstr "Ordenado" + #: ../connectors/class-wp-stream-connector-edd.php:117 +msgctxt "edd" msgid "Revoked" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:128 +msgctxt "edd" msgid "Downloads" msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:129 +#, fuzzy +msgctxt "edd" +msgid "Categories" +msgstr "Categoria base" + +#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "edd" +msgid "Tags" +msgstr "" + #: ../connectors/class-wp-stream-connector-edd.php:131 #, fuzzy +msgctxt "edd" msgid "Discounts" msgstr "conectores" #: ../connectors/class-wp-stream-connector-edd.php:132 -#: ../extensions/reports/class-wp-stream-reports.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:146 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:56 +#, fuzzy +msgctxt "edd" msgid "Reports" -msgstr "" +msgstr "Registros de Stream" #: ../connectors/class-wp-stream-connector-edd.php:133 +msgctxt "edd" msgid "API Keys" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:155 #: ../connectors/class-wp-stream-connector-edd.php:182 -#: ../connectors/class-wp-stream-connector-taxonomies.php:93 -#: ../connectors/class-wp-stream-connector-woocommerce.php:216 #, php-format msgid "Edit %s" msgstr "Editar %s" @@ -1455,6 +1799,7 @@ msgid "Reissue" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:273 +msgctxt "edd" msgid "Banned emails" msgstr "" @@ -1548,6 +1893,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-editor.php:112 #, fuzzy, php-format +msgctxt "1: File name, 2: Theme/plugin name" msgid "\"%1$s\" in \"%2$s\" updated" msgstr "\"%s\" %s actualizado" @@ -1563,26 +1909,87 @@ msgid "Theme Details" msgstr "Temas" #: ../connectors/class-wp-stream-connector-gravityforms.php:88 +msgctxt "gravityforms" msgid "Gravity Forms" msgstr "" -#: ../connectors/class-wp-stream-connector-gravityforms.php:106 -msgid "Duplicated" -msgstr "" - -#: ../connectors/class-wp-stream-connector-gravityforms.php:117 -msgid "Forms" -msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:98 +#, fuzzy +msgctxt "gravityforms" +msgid "Created" +msgstr "Creado" -#: ../connectors/class-wp-stream-connector-gravityforms.php:119 -msgid "Import/Export" -msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:99 +#, fuzzy +msgctxt "gravityforms" +msgid "Updated" +msgstr "Actualizado" -#: ../connectors/class-wp-stream-connector-gravityforms.php:120 +#: ../connectors/class-wp-stream-connector-gravityforms.php:100 +#, fuzzy +msgctxt "gravityforms" +msgid "Exported" +msgstr "Ordenado" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:101 +#, fuzzy +msgctxt "gravityforms" +msgid "Imported" +msgstr "Ordenado" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:102 +#, fuzzy +msgctxt "gravityforms" +msgid "Added" +msgstr "Agregado" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:103 +#, fuzzy +msgctxt "gravityforms" +msgid "Deleted" +msgstr "Eliminado" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:104 +#, fuzzy +msgctxt "gravityforms" +msgid "Trashed" +msgstr "Borrados" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:105 +msgctxt "gravityforms" +msgid "Restored" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:106 +#, fuzzy +msgctxt "gravityforms" +msgid "Duplicated" +msgstr "Actualizado" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:117 +#, fuzzy +msgctxt "gravityforms" +msgid "Forms" +msgstr "Dando Formato" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#, fuzzy +msgctxt "gravityforms" +msgid "Settings" +msgstr "Ajustes" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:119 +msgctxt "gravityforms" +msgid "Import/Export" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:120 +msgctxt "gravityforms" msgid "Entries" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:121 +msgctxt "gravityforms" msgid "Notes" msgstr "" @@ -1592,26 +1999,32 @@ msgid "Edit Settings" msgstr "Editar %s ajustes" #: ../connectors/class-wp-stream-connector-gravityforms.php:181 +msgctxt "gravityforms" msgid "Output CSS" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:184 +msgctxt "gravityforms" msgid "Output HTML5" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:187 +msgctxt "gravityforms" msgid "No-Conflict Mode" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:190 +msgctxt "gravityforms" msgid "Currency" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:193 +msgctxt "gravityforms" msgid "reCAPTCHA Public Key" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:196 +msgctxt "gravityforms" msgid "reCAPTCHA Private Key" msgstr "" @@ -1656,11 +2069,27 @@ msgstr "La contraseña de %s fue reestablecida" msgid "\"%1$s\" notification %2$s from \"%3$s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:422 +#: ../connectors/class-wp-stream-connector-installer.php:45 +msgid "Activated" +msgstr "Activado" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:423 +#: ../connectors/class-wp-stream-connector-installer.php:46 +#: ../connectors/class-wp-stream-connector-widgets.php:60 +msgid "Deactivated" +msgstr "Desactivado" + #: ../connectors/class-wp-stream-connector-gravityforms.php:496 #, php-format msgid "Gravity Forms license key %s" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:497 +#, fuzzy +msgid "deleted" +msgstr "Eliminado" + #: ../connectors/class-wp-stream-connector-gravityforms.php:510 #, fuzzy, php-format msgid "\"%s\" form exported" @@ -1700,11 +2129,19 @@ msgstr "" msgid "Note #%1$d deleted from lead #%2$d on \"%3$s\" form" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:650 +msgid "marked as spam" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:651 #, fuzzy msgid "trashed" msgstr "Borrados" +#: ../connectors/class-wp-stream-connector-gravityforms.php:652 +msgid "restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:661 #: ../connectors/class-wp-stream-connector-gravityforms.php:708 #, fuzzy, php-format @@ -1755,11 +2192,17 @@ msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:149 #, fuzzy, php-format +msgctxt "" +"Plugin/theme installation. 1: Type (plugin/theme), 2: Plugin/theme name, 3: " +"Plugin/theme version" msgid "Installed %1$s: %2$s %3$s" msgstr "Instalado %s: %s %s" #: ../connectors/class-wp-stream-connector-installer.php:157 #, fuzzy, php-format +msgctxt "" +"Plugin/theme update. 1: Type (plugin/theme), 2: Plugin/theme name, 3: Plugin/" +"theme version" msgid "Updated %1$s: %2$s %3$s" msgstr "Actualizado %s: %s a %s" @@ -1771,11 +2214,13 @@ msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:225 #, fuzzy, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin activated %2$s" msgstr "El plugin \"%s\" ha sido activado %s" #: ../connectors/class-wp-stream-connector-installer.php:243 #, fuzzy, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin deactivated %2$s" msgstr "El plugin \"%s\" ha sido desactivado %s" @@ -1805,126 +2250,182 @@ msgid "WordPress updated to %s" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:69 +msgctxt "jetpack" msgid "Jetpack" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:79 +#, fuzzy +msgctxt "jetpack" +msgid "Activated" +msgstr "Activado" + #: ../connectors/class-wp-stream-connector-jetpack.php:80 #, fuzzy +msgctxt "jetpack" msgid "Dectivated" msgstr "Desactivado" #: ../connectors/class-wp-stream-connector-jetpack.php:81 #, fuzzy +msgctxt "jetpack" msgid "Connected" msgstr "Conector" #: ../connectors/class-wp-stream-connector-jetpack.php:82 #, fuzzy +msgctxt "jetpack" msgid "Disconnected" msgstr "conectores" #: ../connectors/class-wp-stream-connector-jetpack.php:83 +msgctxt "jetpack" msgid "Link" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:84 +msgctxt "jetpack" msgid "Unlink" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:85 +#, fuzzy +msgctxt "jetpack" +msgid "Updated" +msgstr "Actualizado" + +#: ../connectors/class-wp-stream-connector-jetpack.php:86 +#, fuzzy +msgctxt "jetpack" +msgid "Added" +msgstr "Agregado" + #: ../connectors/class-wp-stream-connector-jetpack.php:87 -#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgctxt "jetpack" msgid "Removed" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:98 +msgctxt "jetpack" msgid "Modules" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:99 +msgctxt "jetpack" msgid "Blogs" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:100 -#: ../connectors/class-wp-stream-connector-users.php:43 -#: ../connectors/class-wp-stream-connector-users.php:70 +#, fuzzy +msgctxt "jetpack" msgid "Users" msgstr "Usuarios" +#: ../connectors/class-wp-stream-connector-jetpack.php:101 +#, fuzzy +msgctxt "jetpack" +msgid "Options" +msgstr "acciónes" + #: ../connectors/class-wp-stream-connector-jetpack.php:102 +msgctxt "jetpack" msgid "Sharing" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:103 +msgctxt "jetpack" msgid "Publicize" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:104 #, fuzzy +msgctxt "jetpack" msgid "Google+ Profile" msgstr "Ver Perfil" #: ../connectors/class-wp-stream-connector-jetpack.php:105 -#: ../connectors/class-wp-stream-connector-jetpack.php:203 +msgctxt "jetpack" msgid "WordPress.com Stats" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:106 +msgctxt "jetpack" msgid "Carousel" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:107 +msgctxt "jetpack" msgid "Custom CSS" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:108 #, fuzzy +msgctxt "jetpack" msgid "Subscriptions" msgstr "acciónes" +#: ../connectors/class-wp-stream-connector-jetpack.php:109 +#, fuzzy +msgctxt "jetpack" +msgid "Comments" +msgstr "Lista negra de comentarios" + #: ../connectors/class-wp-stream-connector-jetpack.php:110 +msgctxt "jetpack" msgid "Infinite Scroll" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:111 +msgctxt "jetpack" msgid "SSO" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:112 +msgctxt "jetpack" msgid "Likes" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:113 +msgctxt "jetpack" msgid "Mobile" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:114 +#, fuzzy +msgctxt "jetpack" msgid "Monitor" -msgstr "" +msgstr "Editar" #: ../connectors/class-wp-stream-connector-jetpack.php:115 +msgctxt "jetpack" msgid "Post by Email" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:116 +msgctxt "jetpack" msgid "Related Posts" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:117 #, fuzzy +msgctxt "jetpack" msgid "Site Verification" msgstr "Ajustes de Stream" #: ../connectors/class-wp-stream-connector-jetpack.php:118 -#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgctxt "jetpack" msgid "Tiled Galleries" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:119 +#, fuzzy +msgctxt "jetpack" msgid "VideoPress" -msgstr "" +msgstr "Dirección de IP" #: ../connectors/class-wp-stream-connector-jetpack.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:222 +#: ../extensions/reports/class-wp-stream-reports.php:220 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:174 msgid "Configure" msgstr "" @@ -1934,6 +2435,12 @@ msgstr "" msgid "Deactivate" msgstr "Desactivado" +#: ../connectors/class-wp-stream-connector-jetpack.php:159 +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 +#, fuzzy +msgid "Activate" +msgstr "Activado" + #: ../connectors/class-wp-stream-connector-jetpack.php:174 msgid "Configure module" msgstr "" @@ -1946,6 +2453,10 @@ msgstr "" msgid "Twitter site tag" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:203 +msgid "WordPress.com Stats" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:208 msgid "Color Scheme" msgstr "" @@ -2014,6 +2525,10 @@ msgstr "" msgid "Pinterest Site Verification Token" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgid "Tiled Galleries" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:322 #, php-format msgid "%1$s module %2$s" @@ -2220,6 +2735,7 @@ msgstr "Editar Media" #: ../connectors/class-wp-stream-connector-media.php:126 #, fuzzy, php-format +msgctxt "1: Attachment title, 2: Parent post title" msgid "Attached \"%1$s\" to \"%2$s\"" msgstr "\"%s\" a \"%s\" a sido adjuntado" @@ -2234,7 +2750,6 @@ msgid "Updated \"%s\"" msgstr "Actualizado \"%s\"" #: ../connectors/class-wp-stream-connector-media.php:179 -#: ../connectors/class-wp-stream-connector-menus.php:141 #, php-format msgid "Deleted \"%s\"" msgstr "Eliminado \"%s\"" @@ -2258,17 +2773,26 @@ msgid "Created new menu \"%s\"" msgstr "Nuevo menu creado \"%s\"" #: ../connectors/class-wp-stream-connector-menus.php:123 -#, php-format +#, fuzzy, php-format +msgctxt "Menu name" msgid "Updated menu \"%s\"" msgstr "Menu actualizado \"%s\"" +#: ../connectors/class-wp-stream-connector-menus.php:141 +#, fuzzy, php-format +msgctxt "Menu name" +msgid "Deleted \"%s\"" +msgstr "Eliminado \"%s\"" + #: ../connectors/class-wp-stream-connector-menus.php:181 #, fuzzy, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been unassigned from \"%2$s\"" msgstr "\"%s\" ha sido desasignado de \"%s\"" #: ../connectors/class-wp-stream-connector-menus.php:189 #, fuzzy, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been assigned to \"%2$s\"" msgstr "\"%s\" ha sido asignado a \"%s\"" @@ -2276,41 +2800,74 @@ msgstr "\"%s\" ha sido asignado a \"%s\"" msgid "Posts" msgstr "" +#: ../connectors/class-wp-stream-connector-posts.php:100 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:159 +#, php-format +msgctxt "Post type singular name" +msgid "Restore %s" +msgstr "" + +#: ../connectors/class-wp-stream-connector-posts.php:101 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:160 +#, php-format +msgctxt "Post type singular name" +msgid "Delete %s Permenantly" +msgstr "" + +#: ../connectors/class-wp-stream-connector-posts.php:103 +#: ../connectors/class-wp-stream-connector-woocommerce.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:162 +#, fuzzy, php-format +msgctxt "Post type singular name" +msgid "Edit %s" +msgstr "Editar %s" + +#: ../connectors/class-wp-stream-connector-posts.php:110 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 +#, fuzzy +msgid "Revision" +msgstr "Revisión" + #: ../connectors/class-wp-stream-connector-posts.php:147 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s drafted" msgstr "\"%s\" %s en borrador" #: ../connectors/class-wp-stream-connector-posts.php:154 #: ../connectors/class-wp-stream-connector-posts.php:161 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s published" msgstr "\"%s\" %s publicado" #: ../connectors/class-wp-stream-connector-posts.php:167 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s unpublished" msgstr "\"%s\" %s quitado de publicación" #: ../connectors/class-wp-stream-connector-posts.php:173 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s trashed" msgstr "\"%s\" %s borrado" #: ../connectors/class-wp-stream-connector-posts.php:180 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s restored from trash" msgstr "\"%s\" %s eliminado de la basura" #: ../connectors/class-wp-stream-connector-posts.php:187 -#: ../connectors/class-wp-stream-connector-taxonomies.php:200 -#: ../connectors/class-wp-stream-connector-woocommerce.php:611 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s updated" msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-posts.php:254 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s deleted from trash" msgstr "\"%s\" %s eliminado de la basura" @@ -2318,10 +2875,6 @@ msgstr "\"%s\" %s eliminado de la basura" msgid "Post" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:122 -msgid "General" -msgstr "" - #: ../connectors/class-wp-stream-connector-settings.php:123 msgid "Writing" msgstr "Escribiendo" @@ -2330,8 +2883,11 @@ msgstr "Escribiendo" msgid "Reading" msgstr "Leyendo" +#: ../connectors/class-wp-stream-connector-settings.php:125 +msgid "Discussion" +msgstr "Discusión" + #: ../connectors/class-wp-stream-connector-settings.php:127 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:97 msgid "Permalinks" msgstr "" @@ -2357,354 +2913,372 @@ msgstr "Registros de Stream" msgid "Stream Defaults" msgstr "Ajustes de Stream" -#: ../connectors/class-wp-stream-connector-settings.php:208 +#: ../connectors/class-wp-stream-connector-settings.php:233 msgid "Site Title" msgstr "Título del sitio" -#: ../connectors/class-wp-stream-connector-settings.php:209 +#: ../connectors/class-wp-stream-connector-settings.php:234 msgid "Tagline" msgstr "Copete" -#: ../connectors/class-wp-stream-connector-settings.php:210 +#: ../connectors/class-wp-stream-connector-settings.php:235 msgid "WordPress Address (URL)" msgstr "Dirección de WordPress (URL)" -#: ../connectors/class-wp-stream-connector-settings.php:211 +#: ../connectors/class-wp-stream-connector-settings.php:236 msgid "Site Address (URL)" msgstr "Dirección del Sitio (URL)" -#: ../connectors/class-wp-stream-connector-settings.php:212 +#: ../connectors/class-wp-stream-connector-settings.php:237 msgid "E-mail Address" msgstr "Dirección de E-Mail" -#: ../connectors/class-wp-stream-connector-settings.php:213 +#: ../connectors/class-wp-stream-connector-settings.php:238 msgid "Membership" msgstr "Membresia" -#: ../connectors/class-wp-stream-connector-settings.php:214 +#: ../connectors/class-wp-stream-connector-settings.php:239 msgid "New User Default Role" msgstr "Rol por defecto de usuarios nuevos" -#: ../connectors/class-wp-stream-connector-settings.php:215 +#: ../connectors/class-wp-stream-connector-settings.php:240 msgid "Timezone" msgstr "Huso Horario" -#: ../connectors/class-wp-stream-connector-settings.php:216 +#: ../connectors/class-wp-stream-connector-settings.php:241 msgid "Date Format" msgstr "Formato de la fecha" -#: ../connectors/class-wp-stream-connector-settings.php:217 +#: ../connectors/class-wp-stream-connector-settings.php:242 msgid "Time Format" msgstr "Formato de la hora" -#: ../connectors/class-wp-stream-connector-settings.php:218 +#: ../connectors/class-wp-stream-connector-settings.php:243 msgid "Week Starts On" msgstr "La semana empieza el" -#: ../connectors/class-wp-stream-connector-settings.php:220 -#: ../connectors/class-wp-stream-connector-settings.php:221 +#: ../connectors/class-wp-stream-connector-settings.php:245 +#: ../connectors/class-wp-stream-connector-settings.php:246 msgid "Formatting" msgstr "Dando Formato" -#: ../connectors/class-wp-stream-connector-settings.php:222 +#: ../connectors/class-wp-stream-connector-settings.php:247 msgid "Default Post Category" msgstr "Categoria de Posts por defecto" -#: ../connectors/class-wp-stream-connector-settings.php:223 +#: ../connectors/class-wp-stream-connector-settings.php:248 msgid "Default Post Format" msgstr "Formato de Posts por defecto" -#: ../connectors/class-wp-stream-connector-settings.php:224 +#: ../connectors/class-wp-stream-connector-settings.php:249 #, fuzzy msgid "Mail Server" msgstr "Dirección del servidor de correo" -#: ../connectors/class-wp-stream-connector-settings.php:225 +#: ../connectors/class-wp-stream-connector-settings.php:250 #, fuzzy msgid "Login Name" msgstr "Iniciar sesión" -#: ../connectors/class-wp-stream-connector-settings.php:226 +#: ../connectors/class-wp-stream-connector-settings.php:251 #, fuzzy msgid "Password" msgstr "Reiniciar contraseña" -#: ../connectors/class-wp-stream-connector-settings.php:227 +#: ../connectors/class-wp-stream-connector-settings.php:252 msgid "Default Mail Category" msgstr "Categoria de correo por defecto" -#: ../connectors/class-wp-stream-connector-settings.php:228 +#: ../connectors/class-wp-stream-connector-settings.php:253 msgid "Update Services" msgstr "Actualizar servicios" -#: ../connectors/class-wp-stream-connector-settings.php:230 -#: ../connectors/class-wp-stream-connector-settings.php:231 -#: ../connectors/class-wp-stream-connector-settings.php:232 +#: ../connectors/class-wp-stream-connector-settings.php:255 +#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:257 msgid "Front page displays" msgstr "Pantalla de inicio muestra" -#: ../connectors/class-wp-stream-connector-settings.php:233 +#: ../connectors/class-wp-stream-connector-settings.php:258 msgid "Blog pages show at most" msgstr "Paginas del blog mas mostradas" -#: ../connectors/class-wp-stream-connector-settings.php:234 +#: ../connectors/class-wp-stream-connector-settings.php:259 msgid "Syndication feeds show the most recent" msgstr "Los RSS muestran el mas reciente por defecto" -#: ../connectors/class-wp-stream-connector-settings.php:235 +#: ../connectors/class-wp-stream-connector-settings.php:260 msgid "For each article in a feed, show" msgstr "Por cada articulo en el RSS, mostrar" -#: ../connectors/class-wp-stream-connector-settings.php:236 +#: ../connectors/class-wp-stream-connector-settings.php:261 msgid "Search Engine Visibility" msgstr "Visualización por motores de búsqueda" -#: ../connectors/class-wp-stream-connector-settings.php:238 -#: ../connectors/class-wp-stream-connector-settings.php:239 -#: ../connectors/class-wp-stream-connector-settings.php:240 +#: ../connectors/class-wp-stream-connector-settings.php:263 +#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:265 msgid "Default article settings" msgstr "Ajustes de articulos por defecto" -#: ../connectors/class-wp-stream-connector-settings.php:241 -#: ../connectors/class-wp-stream-connector-settings.php:242 -#: ../connectors/class-wp-stream-connector-settings.php:243 -#: ../connectors/class-wp-stream-connector-settings.php:244 -#: ../connectors/class-wp-stream-connector-settings.php:245 -#: ../connectors/class-wp-stream-connector-settings.php:246 -#: ../connectors/class-wp-stream-connector-settings.php:247 -#: ../connectors/class-wp-stream-connector-settings.php:248 -#: ../connectors/class-wp-stream-connector-settings.php:249 -#: ../connectors/class-wp-stream-connector-settings.php:250 +#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:267 +#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:270 +#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:274 +#: ../connectors/class-wp-stream-connector-settings.php:275 msgid "Other comment settings" msgstr "Otros ajustes de comentarios" -#: ../connectors/class-wp-stream-connector-settings.php:251 -#: ../connectors/class-wp-stream-connector-settings.php:252 +#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:277 msgid "E-mail me whenever" msgstr "Enviarme un correo siempre que" -#: ../connectors/class-wp-stream-connector-settings.php:253 -#: ../connectors/class-wp-stream-connector-settings.php:254 +#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:279 msgid "Before a comment appears" msgstr "Antes que un comentario aparezca" -#: ../connectors/class-wp-stream-connector-settings.php:255 -#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:281 msgid "Comment Moderation" msgstr "Moderación de comentarios" -#: ../connectors/class-wp-stream-connector-settings.php:257 +#: ../connectors/class-wp-stream-connector-settings.php:282 msgid "Comment Blacklist" msgstr "Lista negra de comentarios" -#: ../connectors/class-wp-stream-connector-settings.php:258 +#: ../connectors/class-wp-stream-connector-settings.php:283 msgid "Show Avatars" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:259 +#: ../connectors/class-wp-stream-connector-settings.php:284 #, fuzzy msgid "Maximum Rating" msgstr "Máxima calificación de un avatar" -#: ../connectors/class-wp-stream-connector-settings.php:260 +#: ../connectors/class-wp-stream-connector-settings.php:285 msgid "Default Avatar" msgstr "Avatar por defecto" -#: ../connectors/class-wp-stream-connector-settings.php:262 -#: ../connectors/class-wp-stream-connector-settings.php:263 -#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:289 #, fuzzy msgid "Thumbnail size" msgstr "Tamaño de imagenes miniatura" -#: ../connectors/class-wp-stream-connector-settings.php:265 -#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:291 #, fuzzy msgid "Medium size" msgstr "Tamaño de imagenes medianas" -#: ../connectors/class-wp-stream-connector-settings.php:267 -#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:293 #, fuzzy msgid "Large size" msgstr "Tamaño de imagenes grandes" -#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:294 #, fuzzy msgid "Uploading Files" msgstr "Subiendo archivos de organización" -#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:296 #, fuzzy msgid "Permalink Settings" msgstr "Estructura de los Permalink" -#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:297 msgid "Category base" msgstr "Categoria base" -#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:298 msgid "Tag base" msgstr "Base de estiquetas" -#: ../connectors/class-wp-stream-connector-settings.php:275 +#: ../connectors/class-wp-stream-connector-settings.php:300 msgid "Registration notification" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:301 #, fuzzy msgid "Allow new registrations" msgstr "Registro de un nuevo usuario" -#: ../connectors/class-wp-stream-connector-settings.php:277 +#: ../connectors/class-wp-stream-connector-settings.php:302 msgid "Add New Users" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:303 msgid "Enable administration menus" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:279 +#: ../connectors/class-wp-stream-connector-settings.php:304 msgid "Site upload space check" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:305 msgid "Site upload space" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:281 +#: ../connectors/class-wp-stream-connector-settings.php:306 msgid "Upload file types" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:282 +#: ../connectors/class-wp-stream-connector-settings.php:307 #, fuzzy msgid "Network Title" msgstr "Título del sitio" -#: ../connectors/class-wp-stream-connector-settings.php:283 +#: ../connectors/class-wp-stream-connector-settings.php:308 msgid "First Post" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:284 +#: ../connectors/class-wp-stream-connector-settings.php:309 msgid "First Page" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:285 +#: ../connectors/class-wp-stream-connector-settings.php:310 msgid "First Comment" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:286 +#: ../connectors/class-wp-stream-connector-settings.php:311 msgid "First Comment URL" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:312 msgid "First Comment Author" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:313 msgid "Welcome Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:289 +#: ../connectors/class-wp-stream-connector-settings.php:314 msgid "Welcome User Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:315 msgid "Max upload file size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:291 +#: ../connectors/class-wp-stream-connector-settings.php:316 #, fuzzy msgid "Terms Enabled" msgstr "Habilitado" -#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:317 msgid "Banned Names" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:293 +#: ../connectors/class-wp-stream-connector-settings.php:318 msgid "Limited Email Registrations" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:294 +#: ../connectors/class-wp-stream-connector-settings.php:319 msgid "Banned Email Domains" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:295 +#: ../connectors/class-wp-stream-connector-settings.php:320 msgid "Network Language" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:296 +#: ../connectors/class-wp-stream-connector-settings.php:321 msgid "Network Admin Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:297 +#: ../connectors/class-wp-stream-connector-settings.php:322 msgid "User Count" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:299 +#: ../connectors/class-wp-stream-connector-settings.php:324 #, fuzzy msgid "Stream Database Version" msgstr "Reiniciar la base de datos de Stream" -#: ../connectors/class-wp-stream-connector-settings.php:300 +#: ../connectors/class-wp-stream-connector-settings.php:325 #, fuzzy -msgid "Stream Total Sites" +msgid "Stream Connected Sites" msgstr "Ajustes de Stream" -#: ../connectors/class-wp-stream-connector-settings.php:329 +#: ../connectors/class-wp-stream-connector-settings.php:354 msgid "Background Image" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:330 +#: ../connectors/class-wp-stream-connector-settings.php:355 msgid "Background Position" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:331 +#: ../connectors/class-wp-stream-connector-settings.php:356 msgid "Background Repeat" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:332 +#: ../connectors/class-wp-stream-connector-settings.php:357 msgid "Background Attachment" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:333 +#: ../connectors/class-wp-stream-connector-settings.php:358 msgid "Background Color" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:335 +#: ../connectors/class-wp-stream-connector-settings.php:360 msgid "Header Image" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:336 +#: ../connectors/class-wp-stream-connector-settings.php:361 msgid "Text Color" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:471 +#: ../connectors/class-wp-stream-connector-settings.php:496 #, php-format msgid "Edit %s Settings" msgstr "Editar %s ajustes" -#: ../connectors/class-wp-stream-connector-settings.php:604 +#: ../connectors/class-wp-stream-connector-settings.php:624 #, php-format msgid "\"%s\" setting was updated" msgstr "El ajuste \"%s\" fue actualizado" #: ../connectors/class-wp-stream-connector-taxonomies.php:44 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:472 msgid "Taxonomies" msgstr "Taxonomías" +#: ../connectors/class-wp-stream-connector-taxonomies.php:93 +#, fuzzy, php-format +msgctxt "Term singular name" +msgid "Edit %s" +msgstr "Editar %s" + #: ../connectors/class-wp-stream-connector-taxonomies.php:136 #, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s created" msgstr "\"%s\" %s fue creado" #: ../connectors/class-wp-stream-connector-taxonomies.php:163 #, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s deleted" msgstr "\"%s\" %s fue eliminado" +#: ../connectors/class-wp-stream-connector-taxonomies.php:200 +#, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" +msgid "\"%1$s\" %2$s updated" +msgstr "\"%s\" %s actualizado" + +#: ../connectors/class-wp-stream-connector-users.php:43 +#: ../connectors/class-wp-stream-connector-users.php:70 +msgid "Users" +msgstr "Usuarios" + #: ../connectors/class-wp-stream-connector-users.php:56 msgid "Password Reset" msgstr "Reiniciar contraseña" @@ -2743,6 +3317,7 @@ msgstr "Registro de un nuevo usuario" #: ../connectors/class-wp-stream-connector-users.php:140 #, fuzzy, php-format +msgctxt "1: User display name, 2: User role" msgid "New user account created for %1$s (%2$s)" msgstr "Nueva cuenta de usuario creada por %s (%s)" @@ -2753,6 +3328,7 @@ msgstr "El perfil de %s fue actualizado" #: ../connectors/class-wp-stream-connector-users.php:191 #, fuzzy, php-format +msgctxt "1: User display name, 2: Old role, 3: New role" msgid "%1$s's role was changed from %2$s to %3$s" msgstr "El rol de %s fue cambaido de %s a %s" @@ -2778,6 +3354,7 @@ msgstr "%s termino sesión" #: ../connectors/class-wp-stream-connector-users.php:314 #, fuzzy, php-format +msgctxt "1: User display name, 2: User roles" msgid "%1$s's account was deleted (%2$s)" msgstr "La cuenta %s fue eliminada (%s)" @@ -2790,6 +3367,10 @@ msgstr "La cuenta de usuario #%d fue eliminada" msgid "Widgets" msgstr "" +#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgid "Removed" +msgstr "" + #: ../connectors/class-wp-stream-connector-widgets.php:57 msgid "Moved" msgstr "" @@ -2816,175 +3397,234 @@ msgid "Edit Widget Area" msgstr "Editar area de Widgets" #: ../connectors/class-wp-stream-connector-widgets.php:196 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" from \"%3$s\" deactivated" -msgstr "" +msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:199 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget from \"%3$s\" deactivated" msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:202 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" from \"%3$s\" deactivated" -msgstr "" +msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:205 -#, php-format +#, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget from \"%3$s\" deactivated" -msgstr "" +msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:245 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" reactivated" msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:248 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget reactivated" msgstr "\"%s\" de \"%s\" ha sido desactivado" #: ../connectors/class-wp-stream-connector-widgets.php:251 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" reactivated" -msgstr "" +msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:254 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget reactivated" msgstr "El tema \"%s\" ha sido activado" #: ../connectors/class-wp-stream-connector-widgets.php:301 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" removed from \"%3$s\"" -msgstr "" +msgstr "\"%s\" ha sido agregado a \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:304 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget removed from \"%3$s\"" msgstr "\"%s\" ha sido eliminado de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:307 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" removed from \"%3$s\"" -msgstr "" +msgstr "El rol de %s fue cambaido de %s a %s" #: ../connectors/class-wp-stream-connector-widgets.php:310 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget removed from \"%3$s\"" msgstr "\"%s\" ha sido eliminado de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:354 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" added to \"%3$s\"" msgstr "\"%s\" ha sido agregado a \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:357 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget added to \"%3$s\"" msgstr "\"%s\" ha sido agregado a \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:360 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" added to \"%3$s\"" -msgstr "" +msgstr "\"%s\" ha sido agregado a \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:363 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget added to \"%3$s\"" msgstr "\"%s\" ha sido agregado a \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:405 #, fuzzy, php-format +msgctxt "Sidebar name" msgid "Widgets reordered in \"%s\"" msgstr "\"%s\" fueron ordenados" #: ../connectors/class-wp-stream-connector-widgets.php:460 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" msgstr "El rol de %s fue cambaido de %s a %s" #: ../connectors/class-wp-stream-connector-widgets.php:463 #, fuzzy, php-format +msgctxt "1: Name, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "\"%s\" ha sido eliminado de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:466 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "Unknown widget type named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" -msgstr "" +msgstr "El rol de %s fue cambaido de %s a %s" #: ../connectors/class-wp-stream-connector-widgets.php:469 #, fuzzy, php-format +msgctxt "3: Widget ID, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%3$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "\"%s\" ha sido eliminado de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:581 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" in \"%3$s\" updated" msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:584 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget in \"%3$s\" updated" msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:587 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" in \"%3$s\" updated" -msgstr "" +msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:590 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget in \"%3$s\" updated" msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:621 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" created" msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:624 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget created" msgstr "\"%s\" %s fue creado" #: ../connectors/class-wp-stream-connector-widgets.php:627 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" created" -msgstr "" +msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:630 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget created" msgstr "\"%s\" %s fue creado" #: ../connectors/class-wp-stream-connector-widgets.php:651 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" deleted" msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:654 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget deleted" msgstr "\"%s\" %s fue eliminado" #: ../connectors/class-wp-stream-connector-widgets.php:657 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" deleted" -msgstr "" +msgstr "\"%s\" %s actualizado" #: ../connectors/class-wp-stream-connector-widgets.php:660 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget deleted" msgstr "El tema \"%s\" ha sido eliminado" #: ../connectors/class-wp-stream-connector-woocommerce.php:89 +msgctxt "woocommerce" msgid "WooCommerce" msgstr "" +#: ../connectors/class-wp-stream-connector-woocommerce.php:99 +#, fuzzy +msgctxt "woocommerce" +msgid "Updated" +msgstr "Actualizado" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:100 +#, fuzzy +msgctxt "woocommerce" +msgid "Created" +msgstr "Creado" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +#, fuzzy +msgctxt "woocommerce" +msgid "Trashed" +msgstr "Borrados" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:102 +#, fuzzy +msgctxt "woocommerce" +msgid "Deleted" +msgstr "Eliminado" + #: ../connectors/class-wp-stream-connector-woocommerce.php:122 +msgctxt "woocommerce" msgid "Attributes" msgstr "" @@ -3044,21 +3684,25 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:301 #, fuzzy, php-format +msgctxt "Order title" msgid "%s created" msgstr "Creado" #: ../connectors/class-wp-stream-connector-woocommerce.php:308 #, fuzzy, php-format +msgctxt "Order title" msgid "%s trashed" msgstr "Borrados" #: ../connectors/class-wp-stream-connector-woocommerce.php:315 #, fuzzy, php-format +msgctxt "Order title" msgid "%s restored from the trash" msgstr "\"%s\" %s eliminado de la basura" #: ../connectors/class-wp-stream-connector-woocommerce.php:322 #, fuzzy, php-format +msgctxt "Order title" msgid "%s updated" msgstr "Actualizado" @@ -3076,44 +3720,57 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:377 #, fuzzy, php-format +msgctxt "Order title" msgid "\"%s\" deleted from trash" msgstr "\"%s\" %s eliminado de la basura" #: ../connectors/class-wp-stream-connector-woocommerce.php:411 #, fuzzy, php-format +msgctxt "1. Order title, 2. Old status, 3. New status" msgid "%1$s status changed from %2$s to %3$s" msgstr "El rol de %s fue cambaido de %s a %s" #: ../connectors/class-wp-stream-connector-woocommerce.php:447 -#, php-format +#, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute created" -msgstr "" +msgstr "El plugin \"%s\" ha sido eliminado" #: ../connectors/class-wp-stream-connector-woocommerce.php:466 -#, php-format +#, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute updated" -msgstr "" +msgstr "El plugin \"%s\" ha sido eliminado" #: ../connectors/class-wp-stream-connector-woocommerce.php:485 #, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute deleted" msgstr "El plugin \"%s\" ha sido eliminado" #: ../connectors/class-wp-stream-connector-woocommerce.php:506 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate created" msgstr "\"%s\" %s fue creado" #: ../connectors/class-wp-stream-connector-woocommerce.php:525 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate updated" msgstr "El ajuste \"%s\" fue actualizado" #: ../connectors/class-wp-stream-connector-woocommerce.php:555 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%s\" tax rate deleted" msgstr "El tema \"%s\" ha sido eliminado" +#: ../connectors/class-wp-stream-connector-woocommerce.php:611 +#, fuzzy, php-format +msgid "\"%1$s\" %2$s updated" +msgstr "\"%s\" %s actualizado" + #: ../connectors/class-wp-stream-connector-woocommerce.php:709 msgid "payment gateway" msgstr "" @@ -3130,597 +3787,571 @@ msgstr "" msgid "Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:67 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:59 +msgctxt "wordpress-seo" msgid "WordPress SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:69 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Created" +msgstr "Creado" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:70 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Updated" +msgstr "Actualizado" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:71 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Added" +msgstr "Agregado" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:72 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Deleted" +msgstr "Eliminado" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:73 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Exported" +msgstr "Ordenado" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:74 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Imported" +msgstr "Ordenado" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:85 +msgctxt "wordpress-seo" msgid "Dashboard" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:86 +msgctxt "wordpress-seo" msgid "Titles & Metas" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:87 +msgctxt "wordpress-seo" msgid "Social" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:88 +msgctxt "wordpress-seo" msgid "XML Sitemaps" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:98 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:89 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Permalinks" +msgstr "Estructura de los Permalink" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:90 +msgctxt "wordpress-seo" msgid "Internal Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:99 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:91 +msgctxt "wordpress-seo" msgid "RSS" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:100 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:92 +msgctxt "wordpress-seo" msgid "Import & Export" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:101 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +msgctxt "wordpress-seo" msgid "Bulk Title Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:102 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +msgctxt "wordpress-seo" msgid "Bulk Description Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:104 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 #, fuzzy +msgctxt "wordpress-seo" msgid "Files" msgstr "Editar perfil" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:105 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 #, fuzzy +msgctxt "wordpress-seo" msgid "Content" msgstr "Contexto" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:214 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:205 msgid "HeadSpace2" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:215 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:206 msgid "All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:207 msgid "OLD All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:217 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:208 msgid "WooThemes SEO framework" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:218 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:209 msgid "Robots Meta (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:219 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:210 msgid "RSS Footer (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:211 msgid "Yoast Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:229 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 #, php-format msgid "Imported settings from %1$s%2$s" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:231 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:222 msgid ", and deleted old data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:251 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:242 #, fuzzy, php-format msgid "Exported settings%s" msgstr "Editar %s ajustes" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:252 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:243 msgid ", including taxonomy meta" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:264 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:255 #, php-format msgid "Tried importing settings from \"%s\"" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:279 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:270 msgid "Tried creating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:281 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:272 msgid "Tried updating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:283 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:274 msgid "Tried updating htaccess file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:334 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:325 #, fuzzy, php-format msgid "Updated \"%1$s\" of \"%2$s\" %3$s" msgstr "Actualizado %s: %s a %s" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:373 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:364 #, fuzzy, php-format msgid "%s settings updated" msgstr "El ajuste \"%s\" fue actualizado" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:380 +msgctxt "wordpress-seo" msgid "Allow tracking of this WordPress install's anonymous data." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:381 +msgctxt "wordpress-seo" msgid "Disable the Advanced part of the WordPress SEO meta box" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:382 +#, fuzzy +msgctxt "wordpress-seo" msgid "Alexa Verification ID" -msgstr "" +msgstr "Ajustes de Stream" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:383 +msgctxt "wordpress-seo" msgid "Bing Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:384 +msgctxt "wordpress-seo" msgid "Google Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:385 +msgctxt "wordpress-seo" msgid "Pinterest" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:386 +msgctxt "wordpress-seo" msgid "Yandex Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:398 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +msgctxt "wordpress-seo" msgid "Enable Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:399 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +msgctxt "wordpress-seo" msgid "Separator between breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +msgctxt "wordpress-seo" msgid "Anchor text for the Homepage" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +msgctxt "wordpress-seo" msgid "Prefix for the breadcrumb path" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +msgctxt "wordpress-seo" msgid "Prefix for Archive breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +msgctxt "wordpress-seo" msgid "Prefix for Search Page breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +msgctxt "wordpress-seo" msgid "Breadcrumb for 404 Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:396 +msgctxt "wordpress-seo" msgid "Remove Blog page from Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:397 +msgctxt "wordpress-seo" msgid "Bold the last page in the breadcrumb" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +msgctxt "wordpress-seo" msgid "Force rewrite titles" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +msgctxt "wordpress-seo" msgid "Noindex subpages of archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:411 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +msgctxt "wordpress-seo" msgid "Use meta keywords tag?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:412 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +msgctxt "wordpress-seo" msgid "Add noodp meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +msgctxt "wordpress-seo" msgid "Add noydir meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +msgctxt "wordpress-seo" msgid "Hide RSD Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +msgctxt "wordpress-seo" msgid "Hide WLW Manifest Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:416 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:407 +msgctxt "wordpress-seo" msgid "Hide Shortlink for posts" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:417 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:408 +msgctxt "wordpress-seo" msgid "Hide RSS Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +msgctxt "wordpress-seo" msgid "Disable the author archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +msgctxt "wordpress-seo" msgid "Disable the date-based archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +msgctxt "wordpress-seo" msgid "Who should have access to the WordPress SEO settings" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +msgctxt "wordpress-seo" msgid "New blogs get the SEO settings from this blog" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +msgctxt "wordpress-seo" msgid "Blog ID" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +msgctxt "wordpress-seo" msgid "" "Strip the category base (usually /category/) from the category " "URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:428 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +msgctxt "wordpress-seo" msgid "Enforce a trailing slash on all category and tag URL's" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:429 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:420 +msgctxt "wordpress-seo" msgid "Remove stop words from slugs." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:421 +msgctxt "wordpress-seo" msgid "Redirect attachment URL's to parent post URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +msgctxt "wordpress-seo" msgid "Remove the ?replytocom variables." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +msgctxt "wordpress-seo" msgid "" "Redirect ugly URL's to clean permalinks. (Not recommended in many cases!)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +msgctxt "wordpress-seo" msgid "Force Transport" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:425 +msgctxt "wordpress-seo" msgid "Prevent cleaning out Google Site Search URL's." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:426 +msgctxt "wordpress-seo" msgid "" "Prevent cleaning out Google Analytics Campaign & Google AdWords Parameters." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +msgctxt "wordpress-seo" msgid "Other variables not to clean" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +msgctxt "wordpress-seo" msgid "Add Open Graph meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:440 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +msgctxt "wordpress-seo" msgid "Facebook Page URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:441 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +msgctxt "wordpress-seo" msgid "Image URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#, fuzzy +msgctxt "wordpress-seo" msgid "Description" -msgstr "" +msgstr "acciónes" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +msgctxt "wordpress-seo" msgid "Add Twitter card meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +msgctxt "wordpress-seo" msgid "Site Twitter Username" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:437 +msgctxt "wordpress-seo" msgid "The default card type to use" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:447 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:438 +msgctxt "wordpress-seo" msgid "Add Google+ specific post meta data (excluding author metadata)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:448 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +msgctxt "wordpress-seo" msgid "Google Publisher Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:451 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +msgctxt "wordpress-seo" msgid "Check this box to enable XML sitemap functionality." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:452 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +msgctxt "wordpress-seo" msgid "Disable author/user sitemap" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:453 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +msgctxt "wordpress-seo" msgid "Ping Yahoo!" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +msgctxt "wordpress-seo" msgid "Ping Ask.com" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +msgctxt "wordpress-seo" msgid "Max entries per sitemap page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:449 +msgctxt "wordpress-seo" msgid "Content to put before each post in the feed" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:450 +msgctxt "wordpress-seo" msgid "Content to put after each post" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +msgctxt "wordpress-seo" msgid "Title template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:464 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +msgctxt "wordpress-seo" msgid "Meta description template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:465 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:456 +msgctxt "wordpress-seo" msgid "Meta keywords template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:466 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:457 +msgctxt "wordpress-seo" msgid "Meta Robots" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:467 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 #, fuzzy +msgctxt "wordpress-seo" msgid "Authorship" msgstr "Autor" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:468 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +msgctxt "wordpress-seo" msgid "Show date in snippet preview?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:469 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:460 +msgctxt "wordpress-seo" msgid "WordPress SEO Meta Box" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:470 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:461 +msgctxt "wordpress-seo" msgid "Breadcrumbs Title" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:471 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:462 +msgctxt "wordpress-seo" msgid "Post types" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:147 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Taxonomies" +msgstr "Taxonomías" + +#: ../extensions/notifications/class-wp-stream-notifications.php:128 #, fuzzy msgid "Stream Notifications" msgstr "Ajustes de Stream" -#: ../extensions/notifications/class-wp-stream-notifications.php:148 +#: ../extensions/notifications/class-wp-stream-notifications.php:129 msgid "Get notified instantly when important changes are made on your site." msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:150 +#: ../extensions/notifications/class-wp-stream-notifications.php:131 msgid "Create notification rules quickly and easily" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:132 msgid "Smart and powerful trigger matching" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:152 +#: ../extensions/notifications/class-wp-stream-notifications.php:133 msgid "Fully customized e-mail and SMS alerts" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:153 +#: ../extensions/notifications/class-wp-stream-notifications.php:134 msgid "Push alerts to your smartphone or tablet" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:170 -#: ../extensions/notifications/class-wp-stream-notifications.php:171 +#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:152 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:48 +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:32 #, fuzzy msgid "Notifications" msgstr "acciónes" -#: ../extensions/notifications/class-wp-stream-notifications.php:218 +#: ../extensions/notifications/class-wp-stream-notifications.php:199 msgid "Sample Rule" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:272 +#: ../extensions/notifications/class-wp-stream-notifications.php:253 #, fuzzy, php-format msgid "[Site Activity Alert] %s" msgstr "Ajustes de Stream" -#: ../extensions/notifications/class-wp-stream-notifications.php:273 +#: ../extensions/notifications/class-wp-stream-notifications.php:254 #, php-format msgid "The following just happened on your site: %s by %s Date of action: %s" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 -msgid "Publish" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 -msgid "Unpublish" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 -msgid "Stream Notification Rule" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 -#, fuzzy -msgid "Stream Notification Rules" -msgstr "Ajustes de Stream" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 -msgid "New Rule" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 -msgid "New Stream Notification Rule" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 -msgid "Edit Stream Notification Rule" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 -msgid "View Stream Notification Rule" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 -#, fuzzy -msgid "Search Rules" -msgstr "Buscar Registros" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 -msgid "No notification rules found." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 -msgid "No notification rules found in Trash." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 -msgid "Triggers" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 -msgid "Alerts" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 -msgid "Data Tags" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 -#, php-format -msgid "This rule has occurred %1$s time." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 -msgid "Basic" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 -msgid "Summary message of the triggered record." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 -msgid "User ID of the triggered record author." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 -msgid "Connector of the triggered record." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 -msgid "Context of the triggered record." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 -msgid "Action of the triggered record." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 -msgid "Timestamp of triggered record." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 -msgid "IP of the triggered record author." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 -msgid "Object ID of the triggered record." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 -msgid "Advanced" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 -msgid "" -"Specific object data of the record, relative to what the object type is:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more Post values\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.name}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.taxonomy}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.description}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more Term values" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:210 -msgid "" -"Specific user data of the record author:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{author.display_name}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{author.user_email}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{author.user_login}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more User values" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:221 -msgid "" -"Specific meta data of the record, used to display specific meta values " -"created by Connectors.\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\tExample: {meta.old_theme} to display " -"the old theme name when a new theme is activated." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 -msgid "Enter Rule Title here" -msgstr "" - -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 -msgid "Email" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 +msgid "Email" msgstr "" #: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 @@ -3890,266 +4521,1047 @@ msgstr "" msgid "Select your mobile service provider." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 -msgid "Data tags are allowed. HTML is not allowed." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:24 +msgid "3 River Wireless" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:125 -msgid "Cheating huh?" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:25 +msgid "ACS Wireless" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:223 -msgid "Cancel" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:26 +msgid "Alltel" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:224 -#, fuzzy -msgid "Do you really want to delete this section? This cannot be undone." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:27 +msgid "AT&T, Cingular, Net10 or Tracfone" msgstr "" -"Esta seguro de querer eliminar todos los registros de Stream de la base de " -"datos" -#: ../extensions/reports/class-wp-stream-reports.php:280 -#, php-format -msgid "" -"There's nothing here! Do you want to create some reports?" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:28 +msgid "Bell Canada" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:76 -msgid "All Activity by Author" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:29 +msgid "Bell Mobility (Canada), Presidents Choice or Solo Mobile" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:82 -msgid "All Activity by Action" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:30 +msgid "Bell Mobility" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:88 -msgid "All Activity by Author Role" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:31 +msgid "Blue Sky Frog" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:95 -msgid "Comments Activity by Action" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:32 +msgid "Bluegrass Cellular" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:126 -#, fuzzy -msgid "Stream Reports" -msgstr "Registros de Stream" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:33 +msgid "Boost Mobile" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:127 -msgid "" -"Generate stunning visuals of logged-in user activity and share them with " -"stakeholders or your clients." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:34 +msgid "BPL Mobile" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:129 -msgid "Fully-interactive charts" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:35 +msgid "Carolina West Wireless" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:130 -msgid "Monitor team contributions" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:36 +msgid "Cellular One" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:131 -msgid "Responsive for any screen size" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:37 +msgid "Cellular South" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:275 -msgid "All Others" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:38 +msgid "CenturyTel" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:285 -#, php-format -msgid "User ID: %d" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:39 +msgid "Clearnet" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:326 -#, fuzzy -msgid "All Activity" -msgstr "Ajustes de Stream" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:40 +msgid "Comcast" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:328 -#, fuzzy -msgid "Connector Activity" -msgstr "Ajustes de Stream" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:41 +msgid "Corr Wireless Communications" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:336 -#, fuzzy -msgid "Context Activity" -msgstr "Ajustes de Stream" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:42 +msgid "Cricket" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:344 -#, fuzzy -msgid "Actions Activity" -msgstr "Ajustes de Stream" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:43 +msgid "Dobson" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:379 -#, fuzzy -msgid "Site Activity" -msgstr "Ajustes de Stream" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:44 +msgid "Edge Wireless" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:407 -#, fuzzy -msgid "Author Role" -msgstr "Autor" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:45 +msgid "Fido" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:408 -msgid "Connector" -msgstr "Conector" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:46 +msgid "Golden Telecom" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:428 -msgid "Site" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:47 +msgid "Houston Cellular" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:473 -msgid "Unknown" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:48 +msgid "Idea Cellular" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:529 -#, fuzzy, php-format -msgid "%1$s in %2$s by %3$s" -msgstr "Actualizado %s: %s a %s" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:49 +msgid "Illinois Valley Cellular" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:535 -#, fuzzy, php-format -msgid "All %1$s by %3$s" -msgstr "Instalado %s: %s %s" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:50 +msgid "Inland Cellular Telephone" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:542 -#, php-format -msgid "All Activity in %2$s by %3$s" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:51 +msgid "MCI" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:548 -#, php-format -msgid "All Activity by %3$s" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:52 +msgid "Metrocall" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:783 -#, fuzzy -msgid "All Contexts" -msgstr "Contexto" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:53 +msgid "Metrocall 2-way" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:797 -#, fuzzy -msgid "All Actions" -msgstr "Acción" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:54 +msgid "Metro PCS" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:243 -msgid "Uh no! This wasn't suppose to happen :(" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:55 +msgid "Midwest Wireless" msgstr "" -#: ../extensions/reports/views/all.php:6 -msgid "1 site" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:56 +msgid "Mobilcomm" msgstr "" -#: ../extensions/reports/views/meta-box.php:39 -msgid "Loading…" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:57 +msgid "MTS" msgstr "" -#, fuzzy -#~ msgid "Stream Extensions" -#~ msgstr "Ajustes de Stream" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:58 +msgid "Nextel" +msgstr "" -#, fuzzy -#~ msgid "" -#~ "Are you sure you want to uninstall and deactivate Stream? This will " -#~ "delete all Stream tables from the database and cannot be undone." -#~ msgstr "" -#~ "Esta seguro de querer eliminar todos los registros de Stream de la base " -#~ "de datos" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:59 +msgid "OnlineBeep" +msgstr "" -#, fuzzy -#~ msgid "Uninstall" -#~ msgstr "Instalador" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:60 +msgid "PCS One" +msgstr "" -#, fuzzy -#~ msgid "Return to Stream Extensions" -#~ msgstr "Ajustes de Stream" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:61 +msgid "Public Service Cellular" +msgstr "" -#, fuzzy -#~ msgid "Network Stream Activity" -#~ msgstr "Ajustes de Stream" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:62 +msgid "Qwest" +msgstr "" -#, fuzzy -#~ msgid "View all records" -#~ msgstr "Borrar todos los registros" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:63 +msgid "Rogers AT&T Wireless and Rogers Canada" +msgstr "" -#, fuzzy -#~ msgid "Enable live updates" -#~ msgstr "Rol de acceso" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:64 +msgid "Satellink" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:65 +msgid "Sprint or Helio" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:66 +msgid "Suncom and Triton" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:67 +#, fuzzy +msgid "Surewest Communications" +msgstr "Ajustes de Stream" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:68 +msgid "T-Mobile" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:69 +msgid "Telus" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:70 +msgid "Unicel" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:71 +msgid "US Cellular" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:72 +msgid "US West" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:73 +msgid "Verizon or Straight Talk" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:74 +msgid "Virgin Mobile" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:75 +msgid "Virgin Mobile Canada" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:76 +msgid "West Central Wireless" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:77 +msgid "Western Wireless" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 +msgid "Data tags are allowed. HTML is not allowed." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:49 +msgid "Type" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:50 +msgid "Occurrences" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 +msgid "Publish" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 +msgid "Unpublish" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 +msgid "Stream Notification Rule" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 +#, fuzzy +msgid "Stream Notification Rules" +msgstr "Ajustes de Stream" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 +#, fuzzy +msgctxt "Stream Notifications" +msgid "New Rule" +msgstr "Buscar Registros" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +msgctxt "Stream Notifications" +msgid "Add New Rule" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 +#, fuzzy +msgctxt "Stream Notifications" +msgid "New Stream Notification Rule" +msgstr "Ajustes de Stream" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 +#, fuzzy +msgctxt "Stream Notifications" +msgid "Edit Stream Notification Rule" +msgstr "Ajustes de Stream" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 +#, fuzzy +msgctxt "Stream Notifications" +msgid "View Stream Notification Rule" +msgstr "Ajustes de Stream" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 +#, fuzzy +msgctxt "Stream Notifications" +msgid "Search Rules" +msgstr "Buscar Registros" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 +#, fuzzy +msgctxt "Stream Notifications" +msgid "No notification rules found." +msgstr "Ajustes de Stream" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 +msgctxt "Stream Notifications" +msgid "No notification rules found in Trash." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 +msgid "Triggers" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 +msgid "Alerts" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 +msgid "Data Tags" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:121 +#: ../extensions/notifications/views/form-templates.php:34 +msgid "+ Add Trigger" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:122 +#: ../extensions/notifications/views/form-templates.php:35 +msgid "+ Add Group" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:129 +msgid "+ Add Alert" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 +#, php-format +msgid "This rule has occurred %1$s time." +msgid_plural "This rule has occurred %1$s times." +msgstr[0] "" +msgstr[1] "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:168 +msgid "Reset Count" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 +msgid "Basic" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 +msgid "Summary message of the triggered record." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 +msgid "User ID of the triggered record author." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 +msgid "Connector of the triggered record." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 +msgid "Context of the triggered record." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 +msgid "Action of the triggered record." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 +msgid "Timestamp of triggered record." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 +msgid "IP of the triggered record author." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 +msgid "Object ID of the triggered record." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 +msgid "Advanced" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 +msgid "" +"Specific object data of the record, relative to what the object type is:\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more Post values\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{object.name}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.taxonomy}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.description}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more Term values" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:210 +msgid "" +"Specific user data of the record author:\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{author.display_name}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{author.user_email}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{author.user_login}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more User values" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:221 +msgid "" +"Specific meta data of the record, used to display specific meta values " +"created by Connectors.\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\tExample: {meta.old_theme} to display " +"the old theme name when a new theme is activated." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 +msgid "Invalid nonce" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 +msgid "Invalid record ID" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 +msgid "is" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 +msgid "is not" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 +#, fuzzy +msgid "contains" +msgstr "contextos" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 +msgid "does not contain" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 +msgid "starts with" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 +msgid "ends with" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 +msgid "regex" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 +msgid "equals" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 +msgid "not equal" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 +msgid "less than" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 +msgid "equal or less than" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 +msgid "greater than" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 +msgid "equal or greater than" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 +msgid "Object ID" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:369 +#, fuzzy +msgid "Author Role" +msgstr "Autor" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 +msgid "IP" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 +msgid "is on" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 +msgid "is not on" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 +msgid "is before" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 +msgid "is on or before" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 +msgid "is after" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 +msgid "is on or after" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 +msgid "Day of Week" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:370 +msgid "Connector" +msgstr "Conector" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 +msgid "- Post" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 +#, fuzzy +msgid "- Post: Title" +msgstr "Título del sitio" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 +msgid "- Post: Slug" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 +#, fuzzy +msgid "- Post: Content" +msgstr "Contexto" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 +msgid "- Post: Excerpt" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 +#, fuzzy +msgid "- Post: Author" +msgstr "Autor" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 +msgid "- Post: Status" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 +#, fuzzy +msgid "- Post: Format" +msgstr "Formato de Posts por defecto" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 +msgid "- Post: Parent" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 +msgid "- Post: Featured Image" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 +msgid "None" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 +msgid "Has one" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 +msgid "- Post: Comment Status" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 +msgid "Open" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgid "Closed" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 +msgid "- Post: Comment Count" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 +#, fuzzy +msgid "- User" +msgstr "Usuarios" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 +#, fuzzy +msgid "- User: Role" +msgstr "Rol por defecto de usuarios nuevos" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 +#, fuzzy +msgid "- Taxonomy" +msgstr "Taxonomías" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 +msgid "- Term" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 +msgid "- Term: Parent" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 +msgid "You cannot save a rule without any triggers." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 +msgid "You cannot save a rule with an empty first trigger." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 +msgid "There was an error submitting your request, please try again." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 +#, fuzzy +msgid "" +"Are you sure you want to reset occurrences for this rule? This cannot be " +"undone." +msgstr "" +"Esta seguro de querer eliminar todos los registros de Stream de la base de " +"datos" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 +msgid "Enter Rule Title here" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 +#, fuzzy +msgid "" +"Users from the selected roles above will have permission to view, create and " +"edit Stream Notifications. However, only site Administrators can access " +"Stream Notifications Settings." +msgstr "" +"Los usuarios de los roles seleccionados arriba tienen permiso de ver " +"Registros Sream, sin embargo solamente los administradores del sitio pueden " +"realizar ajustes" +#: ../extensions/notifications/views/form-templates.php:7 +#: ../extensions/notifications/views/form-templates.php:30 +msgid "AND" +msgstr "" + +#: ../extensions/notifications/views/form-templates.php:8 +#: ../extensions/notifications/views/form-templates.php:31 +msgid "OR" +msgstr "" + +#: ../extensions/notifications/views/form-templates.php:36 #, fuzzy -#~ msgid "Join Stream Extensions" -#~ msgstr "Ajustes de Stream" +msgid "Delete Group" +msgstr "Eliminado \"%s\"" + +#: ../extensions/reports/class-wp-stream-reports.php:123 +msgid "Cheating huh?" +msgstr "" + +#: ../extensions/reports/class-wp-stream-reports.php:143 +#: ../extensions/reports/class-wp-stream-reports.php:144 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:51 +msgid "Reports" +msgstr "" + +#: ../extensions/reports/class-wp-stream-reports.php:221 +msgid "Cancel" +msgstr "" +#: ../extensions/reports/class-wp-stream-reports.php:222 #, fuzzy -#~ msgid "Browse All Extensions" -#~ msgstr "Ajustes de Stream" +msgid "Do you really want to delete this section? This cannot be undone." +msgstr "" +"Esta seguro de querer eliminar todos los registros de Stream de la base de " +"datos" + +#: ../extensions/reports/class-wp-stream-reports.php:278 +#, php-format +msgid "" +"There's nothing here! Do you want to create some reports?" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-date-interval.php:42 +msgid "That time interval is not available." +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:68 +msgid "All Activity by Author" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:74 +msgid "All Activity by Action" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:80 +msgid "All Activity by Author Role" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:87 +msgid "Comments Activity by Action" +msgstr "" +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:118 +#: ../extensions/reports/views/all.php:3 +#: ../extensions/reports/views/examples.php:2 #, fuzzy -#~ msgid "Inactive" -#~ msgstr "Desactivado" +msgid "Stream Reports" +msgstr "Registros de Stream" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:119 +msgid "" +"Generate stunning visuals of logged-in user activity and share them with " +"stakeholders or your clients." +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:121 +msgid "Fully-interactive charts" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:122 +msgid "Monitor team contributions" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:123 +msgid "Responsive for any screen size" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:267 +msgid "All Others" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:277 +#, php-format +msgid "User ID: %d" +msgstr "" +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:309 #, fuzzy -#~ msgid "Get This Extension" +msgid "All Activity" +msgstr "Ajustes de Stream" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:311 +#, fuzzy +msgid "Connector Activity" +msgstr "Ajustes de Stream" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:319 +#, fuzzy +msgid "Context Activity" +msgstr "Ajustes de Stream" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:327 +#, fuzzy +msgid "Actions Activity" +msgstr "Ajustes de Stream" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:390 +msgid "Site" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:435 +msgid "Unknown" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:472 +#, php-format +msgid "Report %d" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:491 +#, fuzzy, php-format +msgctxt "1: Action 2: Dataset 3: Selector" +msgid "%1$s in %2$s by %3$s" +msgstr "Actualizado %s: %s a %s" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:497 +#, fuzzy, php-format +msgctxt "1: Action 3: Selector" +msgid "All %1$s by %3$s" +msgstr "Instalado %s: %s %s" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:504 +#, fuzzy, php-format +msgctxt "2: Dataset 3: Selector" +msgid "All Activity in %2$s by %3$s" +msgstr "Instalado %s: %s %s" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 +#, fuzzy, php-format +msgctxt "3: Selector" +msgid "All Activity by %3$s" +msgstr "Ajustes de Stream" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:691 +msgid "Chart height" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:697 +msgid "px" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:699 +msgid "Apply" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:745 +#, fuzzy +msgid "All Contexts" +msgstr "Contexto" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:759 +#, fuzzy +msgid "All Actions" +msgstr "Acción" + +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:57 +#, fuzzy +msgid "" +"Users from the selected roles above will have permission to view and edit " +"Stream Reports. However, only site Administrators can access Stream Reports " +"Settings." +msgstr "" +"Los usuarios de los roles seleccionados arriba tienen permiso de ver " +"Registros Sream, sin embargo solamente los administradores del sitio pueden " +"realizar ajustes" + +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:238 +msgid "Uh no! This wasn't suppose to happen :(" +msgstr "" + +#: ../extensions/reports/views/all.php:5 +#, fuzzy +msgid "New Report" +msgstr "Registros de Stream" + +#: ../extensions/reports/views/all.php:20 +msgid "Well, this is embarrassing. There are no reports yet!" +msgstr "" + +#: ../extensions/reports/views/all.php:23 +msgid "Add a new one" +msgstr "" + +#: ../extensions/reports/views/all.php:25 +msgid "or" +msgstr "" + +#: ../extensions/reports/views/all.php:27 +#, fuzzy +msgid "Generate some for me" +msgstr "Generar nueva clave" + +#: ../extensions/reports/views/error.php:2 +msgid "Oops, that's an error!" +msgstr "" + +#: ../extensions/reports/views/error.php:5 +msgid "Yeah... Something went very wrong somewhere along your last actions." +msgstr "" + +#: ../extensions/reports/views/intervals.php:24 +msgid "Start date" +msgstr "" + +#: ../extensions/reports/views/intervals.php:33 +#, fuzzy +msgid "End date" +msgstr "Fecha" + +#: ../extensions/reports/views/intervals.php:38 +#, fuzzy +msgid "Update" +msgstr "Actualizado" + +#: ../extensions/reports/views/meta-box.php:13 +msgid "in" +msgstr "" + +#: ../extensions/reports/views/meta-box.php:17 +msgid "by" +msgstr "" + +#: ../extensions/reports/views/meta-box.php:31 +msgid "Save" +msgstr "" + +#: ../extensions/reports/views/meta-box.php:39 +msgid "Loading…" +msgstr "" + +#: ../includes/feeds/atom.php:7 ../includes/feeds/rss-2.0.php:21 +#, fuzzy +msgid "Stream Feed" +msgstr "URL de RSS Stream" + +#: ../stream.php:100 +msgid "Stream: Could not load chosen DB driver." +msgstr "" + +#: ../stream.php:151 +msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." +msgstr "" +"Stream necesita de una version de PHP de 5.3+, el plugin NO ESTA ACTIVO" + +#: ../stream.php:192 ../stream.php:207 +msgid "Deprecated Plugins Found" +msgstr "" + +#: ../stream.php:193 +msgid "" +"The following plugins are deprecated and will be deactivated in order to " +"activate" +msgstr "" + +#: ../stream.php:202 +#, fuzzy +msgid "Continue" +msgstr "Contexto" + +#, fuzzy +#~ msgid "Network Stream Activity" #~ msgstr "Ajustes de Stream" #, fuzzy -#~ msgid "Install Now" -#~ msgstr "Instalador" +#~ msgid "Stream Network Settings" +#~ msgstr "Ajustes de Stream" #, fuzzy -#~ msgid "Active" -#~ msgstr "Activado" +#~ msgid "Network Settings" +#~ msgstr "Ajustes de Stream" + +#, fuzzy +#~ msgid "New Site Settings" +#~ msgstr "Ajustes de Stream" #, fuzzy -#~ msgid "Stream Feeds Key" -#~ msgstr "URL de RSS Stream" +#~ msgid "Enable Site Access" +#~ msgstr "Rol de acceso" -#~ msgid "Access Denied" -#~ msgstr "Acceso denegado" +#, fuzzy +#~ msgid "Reset Site Settings" +#~ msgstr "Ajustes de Stream" +#, fuzzy #~ msgid "" -#~ "You don't have permission to view this feed, please contact your site " -#~ "Administrator." +#~ "Warning: Clicking this will override all site settings with defaults." #~ msgstr "" -#~ "No tienes permiso para ver esta vista, por favor pongase en contacto con " -#~ "el administrador del sitio" +#~ "Advertencia: Al hacer click en esto, todos los registros de actividad se " +#~ "borrarán de la base de datos." #, fuzzy -#~ msgid "Stream Feed" -#~ msgstr "URL de RSS Stream" +#~ msgid "Settings saved." +#~ msgstr "Ajustes" #, fuzzy -#~ msgid "Stream Database Update Required" -#~ msgstr "Reiniciar la base de datos de Stream" +#~ msgid "Site Admin" +#~ msgstr "Título del sitio" #, fuzzy -#~ msgid "Update Complete" -#~ msgstr "Actualizar servicios" +#~ msgid "Site Settings" +#~ msgstr "Ajustes de Stream" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Fecha" +#~ msgctxt "1. User's name, 2. Site name, 3. Role" +#~ msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." +#~ msgstr "\"%s\" ha sido eliminado de \"%s\"" #, fuzzy -#~ msgid "Role Access" -#~ msgstr "Rol de acceso" +#~ msgctxt "1. User's name, 2. Site name" +#~ msgid "%1$s has been removed from the site \"%2$s\"." +#~ msgstr "\"%s\" ha sido eliminado de \"%s\"" +#, fuzzy +#~ msgctxt "1. Site name, 2. Status" +#~ msgid "\"%1$s\" has been %2$s." +#~ msgstr "\"%s\" ha sido agregado a \"%s\"" + +#, fuzzy +#~ msgid "Site Activity" +#~ msgstr "Ajustes de Stream" + +#, fuzzy #~ msgid "" -#~ "Users from the selected roles above will have permission to view Stream " -#~ "Records. However, only site Administrators can access Stream Settings." +#~ "Are you sure you want to uninstall and deactivate Stream? This will " +#~ "delete all Stream tables from the database and cannot be undone." #~ msgstr "" -#~ "Los usuarios de los roles seleccionados arriba tienen permiso de ver " -#~ "Registros Sream, sin embargo solamente los administradores del sitio " -#~ "pueden realizar ajustes" +#~ "Esta seguro de querer eliminar todos los registros de Stream de la base " +#~ "de datos" + +#, fuzzy +#~ msgid "Uninstall" +#~ msgstr "Instalador" + +#, fuzzy +#~ msgid "Return to Stream Extensions" +#~ msgstr "Ajustes de Stream" + +#, fuzzy +#~ msgid "Join Stream Extensions" +#~ msgstr "Ajustes de Stream" + +#, fuzzy +#~ msgid "Browse All Extensions" +#~ msgstr "Ajustes de Stream" + +#, fuzzy +#~ msgid "Inactive" +#~ msgstr "Desactivado" + +#, fuzzy +#~ msgid "Get This Extension" +#~ msgstr "Ajustes de Stream" + +#, fuzzy +#~ msgid "Install Now" +#~ msgstr "Instalador" + +#, fuzzy +#~ msgid "Active" +#~ msgstr "Activado" -#~ msgid "Private Feeds" -#~ msgstr "Feeds Privados" +#, fuzzy +#~ msgid "Stream Database Update Required" +#~ msgstr "Reiniciar la base de datos de Stream" -#~ msgid "View Codex" -#~ msgstr "Ver Codex" +#, fuzzy +#~ msgid "Update Complete" +#~ msgstr "Actualizar servicios" #~ msgid "Keep Records for" #~ msgstr "Mantener registro" diff --git a/languages/stream-fr_FR.mo b/languages/stream-fr_FR.mo index a8b372cb7..cce7f0b5a 100644 Binary files a/languages/stream-fr_FR.mo and b/languages/stream-fr_FR.mo differ diff --git a/languages/stream-fr_FR.po b/languages/stream-fr_FR.po index c2894319c..f56f8004e 100644 --- a/languages/stream-fr_FR.po +++ b/languages/stream-fr_FR.po @@ -1,83 +1,93 @@ msgid "" msgstr "" "Project-Id-Version: Stream\n" -"POT-Creation-Date: 2014-09-27 01:02+1000\n" -"PO-Revision-Date: 2014-09-27 03:35+1000\n" -"Last-Translator: Luke Carbis \n" +"POT-Creation-Date: 2014-10-01 20:35+1000\n" +"PO-Revision-Date: 2014-10-01 20:40+1000\n" +"Last-Translator: Frankie Jarrett \n" "Language-Team: \n" "Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.3\n" +"X-Generator: Poedit 1.6.9\n" "X-Poedit-Basepath: .\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Poedit-KeywordsList: __;_e;_x;_n;_ex;_nx\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: ..\n" -#: ../stream.php:100 -msgid "Stream: Could not load chosen DB driver." -msgstr "" +#: ../classes/class-wp-stream-admin.php:144 +#: ../classes/class-wp-stream-admin.php:270 +#: ../classes/class-wp-stream-admin.php:837 +#, fuzzy +msgid "Connect to Stream" +msgstr "Flux Stream" -#: ../stream.php:156 -msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." -msgstr "" -"Stream requiert une version PHP supérieur à 5.3. Le plugin n'est " -"présentement PAS ACTIF." +#: ../classes/class-wp-stream-admin.php:148 +#, fuzzy +msgid "Stream is almost ready!" +msgstr "Flux Stream" -#: ../stream.php:197 ../stream.php:212 -msgid "Deprecated Plugins Found" +#: ../classes/class-wp-stream-admin.php:152 +#: ../classes/class-wp-stream-admin.php:841 +#, php-format +msgid "" +"Stream only uses your WordPress.com ID during sign up to authorize your " +"account. You can sign up for free at %swordpress.com/signup%s." msgstr "" -#: ../stream.php:198 +#: ../classes/class-wp-stream-admin.php:158 +#, php-format msgid "" -"The following plugins are deprecated and will be deactivated in order to " -"activate" +"Connect to Stream with your %sWordPress.com ID%s to see every change made to " +"your site in beautifully organized detail." msgstr "" -#: ../stream.php:207 -#, fuzzy -msgid "Continue" -msgstr "Contexte" +#: ../classes/class-wp-stream-admin.php:187 +msgid "All site settings have been successfully reset." +msgstr "" -#: ../classes/class-wp-stream-admin.php:152 -#: ../classes/class-wp-stream-admin.php:284 -#: ../classes/class-wp-stream-admin.php:862 -#, fuzzy -msgid "Connect to Stream" -msgstr "Connecteur" +#: ../classes/class-wp-stream-admin.php:193 +msgid "You have successfully connected to Stream!" +msgstr "" -#: ../classes/class-wp-stream-admin.php:254 -#: ../classes/class-wp-stream-admin.php:255 -#: ../classes/class-wp-stream-admin.php:285 +#: ../classes/class-wp-stream-admin.php:194 +msgid "" +"Check back here regularly to see a history of the changes being made to this " +"site." +msgstr "" + +#: ../classes/class-wp-stream-admin.php:242 +#: ../classes/class-wp-stream-admin.php:243 +#: ../classes/class-wp-stream-admin.php:271 #: ../connectors/class-wp-stream-connector-settings.php:129 +#, fuzzy msgid "Stream" -msgstr "" +msgstr "Flux Stream" -#: ../classes/class-wp-stream-admin.php:265 +#: ../classes/class-wp-stream-admin.php:253 msgid "Stream Settings" msgstr "Paramètres Stream" -#: ../classes/class-wp-stream-admin.php:266 -#: ../connectors/class-wp-stream-connector-bbpress.php:114 -#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#: ../classes/class-wp-stream-admin.php:254 +#: ../classes/class-wp-stream-admin.php:540 #: ../connectors/class-wp-stream-connector-settings.php:100 #: ../connectors/class-wp-stream-connector-settings.php:121 #: ../connectors/class-wp-stream-connector-woocommerce.php:693 msgid "Settings" msgstr "Paramètres" -#: ../classes/class-wp-stream-admin.php:275 +#: ../classes/class-wp-stream-admin.php:262 #, fuzzy msgid "Stream Account" -msgstr "Paramètres Stream" +msgstr "Le compte utilisateur #%d à été supprimé" -#: ../classes/class-wp-stream-admin.php:276 +#: ../classes/class-wp-stream-admin.php:263 +#, fuzzy msgid "Account" -msgstr "" +msgstr "Le compte utilisateur #%d à été supprimé" -#: ../classes/class-wp-stream-admin.php:354 +#: ../classes/class-wp-stream-admin.php:340 #, fuzzy msgid "" "Are you sure you want to reset all site settings to default? This cannot be " @@ -86,54 +96,54 @@ msgstr "" "Êtes-vous sûr de vouloir supprimer tous les enregistrements d'activité de " "flux de la base de données? Cela ne peut pas être annulée." -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 #, php-format msgid "This will take about %d minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 msgid "This could take a few minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:385 +#: ../classes/class-wp-stream-admin.php:371 #, fuzzy msgid "Migrating Stream Records" msgstr "Registre Stream" -#: ../classes/class-wp-stream-admin.php:386 +#: ../classes/class-wp-stream-admin.php:372 #, fuzzy msgid "Deleting Stream Records" msgstr "Registre Stream" -#: ../classes/class-wp-stream-admin.php:387 +#: ../classes/class-wp-stream-admin.php:373 msgid "" "An unknown error occurred during migration. Please try again later or " "contact support." msgstr "" -#: ../classes/class-wp-stream-admin.php:388 -#: ../classes/class-wp-stream-admin.php:389 +#: ../classes/class-wp-stream-admin.php:374 +#: ../classes/class-wp-stream-admin.php:375 msgid "Please do not exit this page until the process has completed." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 #, php-format msgid "Please note: This process will take about %d minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 msgid "Please note: This process could take a few minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:391 +#: ../classes/class-wp-stream-admin.php:377 msgid "" "Please note: Your existing records will not appear in Stream until you have " "migrated them to your account." msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, fuzzy, php-format msgid "" "Are you sure you want to delete all %s existing Stream records without " @@ -142,217 +152,365 @@ msgstr "" "Êtes-vous sûr de vouloir supprimer tous les enregistrements d'activité de " "flux de la base de données? Cela ne peut pas être annulée." -#: ../classes/class-wp-stream-admin.php:392 -#, php-format +#: ../classes/class-wp-stream-admin.php:378 +#, fuzzy, php-format msgid "about %d" -msgstr "" +msgstr "Le compte utilisateur #%d à été supprimé" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 msgid "a few" msgstr "" -#: ../classes/class-wp-stream-admin.php:421 +#: ../classes/class-wp-stream-admin.php:407 #, php-format msgid "" "Are you sure you want to perform bulk actions on over %d items? This process " "could take a while to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:422 +#: ../classes/class-wp-stream-admin.php:408 msgid "" "The Stream plugin must be deactivated before you can bulk import content " "into WordPress." msgstr "" -#: ../classes/class-wp-stream-admin.php:760 +#: ../classes/class-wp-stream-admin.php:726 +msgid "Error retrieving account details." +msgstr "" + +#: ../classes/class-wp-stream-admin.php:728 +msgid "" +"If this problem persists, please disconnect from Stream and try connecting " +"again." +msgstr "" + +#: ../classes/class-wp-stream-admin.php:735 msgid "Free" msgstr "" -#: ../classes/class-wp-stream-admin.php:764 +#: ../classes/class-wp-stream-admin.php:739 msgid "Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:766 +#: ../classes/class-wp-stream-admin.php:741 msgid "Standard" msgstr "" -#: ../classes/class-wp-stream-admin.php:772 +#: ../classes/class-wp-stream-admin.php:747 #, fuzzy, php-format +msgctxt "1: Price, 2: Renewal date" msgid "$%1$s on %2$s" -msgstr "L'utilisateur \"%s\" a été ajouté de \"%s\"" +msgstr "%s mis à jour" -#: ../classes/class-wp-stream-admin.php:774 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:287 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:471 +#: ../classes/class-wp-stream-admin.php:749 +#: ../classes/class-wp-stream-author.php:64 +#: ../classes/class-wp-stream-author.php:72 +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:127 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:279 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:433 msgid "N/A" msgstr "" -#: ../classes/class-wp-stream-admin.php:781 +#: ../classes/class-wp-stream-admin.php:756 msgid "Unlimited" msgstr "" -#: ../classes/class-wp-stream-admin.php:784 +#: ../classes/class-wp-stream-admin.php:759 +#, php-format msgid "1 Day" -msgstr "" +msgid_plural "%s Days" +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-admin.php:794 +#: ../classes/class-wp-stream-admin.php:769 msgid "Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:798 +#: ../classes/class-wp-stream-admin.php:773 msgid "Activity History" msgstr "" -#: ../classes/class-wp-stream-admin.php:803 +#: ../classes/class-wp-stream-admin.php:778 msgid "Next Billing" msgstr "" -#: ../classes/class-wp-stream-admin.php:808 +#: ../classes/class-wp-stream-admin.php:783 #: ../connectors/class-wp-stream-connector-acf.php:81 -#: ../connectors/class-wp-stream-connector-bbpress.php:88 -#: ../connectors/class-wp-stream-connector-blogs.php:50 -#: ../connectors/class-wp-stream-connector-buddypress.php:123 #: ../connectors/class-wp-stream-connector-comments.php:46 -#: ../connectors/class-wp-stream-connector-edd.php:108 -#: ../connectors/class-wp-stream-connector-gravityforms.php:98 #: ../connectors/class-wp-stream-connector-menus.php:39 #: ../connectors/class-wp-stream-connector-posts.php:39 #: ../connectors/class-wp-stream-connector-taxonomies.php:54 #: ../connectors/class-wp-stream-connector-users.php:54 #: ../connectors/class-wp-stream-connector-widgets.php:58 -#: ../connectors/class-wp-stream-connector-woocommerce.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:77 msgid "Created" msgstr "Créé" -#: ../classes/class-wp-stream-admin.php:812 +#: ../classes/class-wp-stream-admin.php:787 +#, fuzzy msgid "Site ID" -msgstr "" +msgstr "Titre du site" -#: ../classes/class-wp-stream-admin.php:818 +#: ../classes/class-wp-stream-admin.php:793 msgid "API Key" msgstr "" -#: ../classes/class-wp-stream-admin.php:828 +#: ../classes/class-wp-stream-admin.php:803 #: ../classes/class-wp-stream-list-table.php:49 -#: ../extensions/notifications/class-wp-stream-notifications.php:155 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:133 +#: ../extensions/notifications/class-wp-stream-notifications.php:136 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:125 msgid "Upgrade to Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:830 +#: ../classes/class-wp-stream-admin.php:805 msgid "Modify This Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:890 +#: ../classes/class-wp-stream-admin.php:847 +#, php-format +msgid "with your %sWordPress.com ID%s" +msgstr "" + +#: ../classes/class-wp-stream-admin.php:865 +msgctxt "Haiku line 1" msgid "A transformation" msgstr "" -#: ../classes/class-wp-stream-admin.php:891 +#: ../classes/class-wp-stream-admin.php:866 +msgctxt "Haiku line 2" msgid "Like brook, to river, to sea" msgstr "" -#: ../classes/class-wp-stream-admin.php:901 +#: ../classes/class-wp-stream-admin.php:876 +msgctxt "Haiku line 3" msgid "I have a secret" msgstr "" -#: ../classes/class-wp-stream-admin.php:917 -#: ../classes/class-wp-stream-admin.php:931 -#: ../classes/class-wp-stream-admin.php:933 +#: ../classes/class-wp-stream-admin.php:892 +#: ../classes/class-wp-stream-admin.php:898 msgid "Stream Records" msgstr "Registre Stream" -#: ../classes/class-wp-stream-admin.php:928 -msgid " (1 site)" -msgstr "" +#: ../classes/class-wp-stream-admin.php:1038 +#, php-format +msgid "One more result..." +msgid_plural "%d more results..." +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-admin.php:942 -msgid "Get started with Stream for Multisite!" -msgstr "" +#: ../classes/class-wp-stream-api.php:356 +#, fuzzy +msgid "Stream API Error." +msgstr "Flux Stream" -#: ../classes/class-wp-stream-admin.php:943 -msgid "" -"Welcome to your Network Stream! Each site on your network must be connected " -"individually by an admin on that site for it to show here." +#: ../classes/class-wp-stream-author.php:237 +msgid "via WP-CLI" msgstr "" -#: ../classes/class-wp-stream-admin.php:954 -msgid "Stream for Multisite is coming soon!" +#: ../classes/class-wp-stream-author.php:239 +msgid "during WP Cron" msgstr "" -#: ../classes/class-wp-stream-admin.php:955 -msgid "Access to all the Stream feeds in your network is currently disabled." +#: ../classes/class-wp-stream-connectors.php:98 +#, php-format +msgid "%s class wasn't loaded because it doesn't extends the %s class." msgstr "" -#: ../classes/class-wp-stream-admin.php:1104 -msgid "One more result..." -msgstr "" +#: ../classes/class-wp-stream-dashboard-widget.php:25 +#, fuzzy +msgid "Stream Activity" +msgstr "Flux Stream" -#: ../classes/class-wp-stream-api.php:360 -msgid "Stream API Error." +#: ../classes/class-wp-stream-dashboard-widget.php:57 +#: ../classes/class-wp-stream-list-table.php:53 +msgid "Sorry, no activity records were found." msgstr "" -#: ../classes/class-wp-stream-connectors.php:102 -#, php-format -msgid "%s class wasn't loaded because it doesn't extends the %s class." -msgstr "" +#: ../classes/class-wp-stream-dashboard-widget.php:99 +#, fuzzy +msgid "View all records" +msgstr "Vue" + +#: ../classes/class-wp-stream-dashboard-widget.php:101 +#, fuzzy +msgid "View All" +msgstr "Vue" + +#: ../classes/class-wp-stream-dashboard-widget.php:119 +#, fuzzy +msgid "Go to the first page" +msgstr "Registres par page" + +#: ../classes/class-wp-stream-dashboard-widget.php:127 +#, fuzzy +msgid "Go to the previous page" +msgstr "Registres par page" #: ../classes/class-wp-stream-dashboard-widget.php:134 -#, php-format +#, fuzzy, php-format +msgctxt "paging" msgid "%1$s of %2$s" -msgstr "" +msgstr "%s mis à jour" + +#: ../classes/class-wp-stream-dashboard-widget.php:139 +#, fuzzy +msgid "Go to the next page" +msgstr "Registres par page" + +#: ../classes/class-wp-stream-dashboard-widget.php:148 +#, fuzzy +msgid "Go to the last page" +msgstr "Registres par page" + +#: ../classes/class-wp-stream-dashboard-widget.php:185 +#: ../classes/class-wp-stream-list-table.php:22 +msgid "Records per page" +msgstr "Registres par page" + +#: ../classes/class-wp-stream-dashboard-widget.php:190 +#, fuzzy +msgid "Enable live updates" +msgstr "Accèes aux rôles suivant:" #: ../classes/class-wp-stream-dashboard-widget.php:209 #, php-format +msgctxt "1: Time, 2: User profile URL, 3: User display name" msgid "%1$s ago by %3$s" msgstr "" +#: ../classes/class-wp-stream-date-interval.php:48 +msgid "Today" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:53 +msgid "Yesterday" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:58 +#: ../classes/class-wp-stream-date-interval.php:63 +#: ../classes/class-wp-stream-date-interval.php:68 +#, fuzzy, php-format +msgid "Last %d Days" +msgstr "Le compte utilisateur #%d à été supprimé" + +#: ../classes/class-wp-stream-date-interval.php:73 +msgid "This Month" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:78 +msgid "Last Month" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:83 +#: ../classes/class-wp-stream-date-interval.php:88 +#: ../classes/class-wp-stream-date-interval.php:93 +#, fuzzy, php-format +msgid "Last %d Months" +msgstr "Le compte utilisateur #%d à été supprimé" + +#: ../classes/class-wp-stream-date-interval.php:98 +msgid "This Year" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:103 +msgid "Last Year" +msgstr "" + +#: ../classes/class-wp-stream-feeds.php:109 +#, fuzzy +msgid "Stream Feeds Key" +msgstr "RSS privés" + +#: ../classes/class-wp-stream-feeds.php:114 +#, fuzzy +msgid "Generate new key" +msgstr "Menu \"%s\" a été créé" + +#: ../classes/class-wp-stream-feeds.php:117 +msgid "" +"This is your private key used for accessing feeds of Stream Records " +"securely. You can change your key at any time by generating a new one using " +"the link above." +msgstr "" + +#: ../classes/class-wp-stream-feeds.php:119 +#, fuzzy +msgid "RSS Feed" +msgstr "Flux Stream" + +#: ../classes/class-wp-stream-feeds.php:121 +#, fuzzy +msgid "ATOM Feed" +msgstr "Flux Stream" + +#: ../classes/class-wp-stream-feeds.php:123 +#, fuzzy +msgid "JSON Feed" +msgstr "Flux Stream" + +#: ../classes/class-wp-stream-feeds.php:171 +msgid "Access Denied" +msgstr "Accès refusé" + +#: ../classes/class-wp-stream-feeds.php:172 +msgid "" +"You don't have permission to view this feed, please contact your site " +"Administrator." +msgstr "" +"Vous n'avez pas la permission de voir ce flux, s'il vous plaît contactez " +"votre administrateur du site." + #: ../classes/class-wp-stream-filter-input.php:49 msgid "Invalid use, type must be one of INPUT_* family." msgstr "" #: ../classes/class-wp-stream-filter-input.php:65 +#, fuzzy msgid "Filter not supported." -msgstr "" - -#: ../classes/class-wp-stream-list-table.php:22 -msgid "Records per page" -msgstr "Registres par page" +msgstr "Filtre" #: ../classes/class-wp-stream-list-table.php:48 +#, php-format msgid "Your free account is limited to viewing 24 hours of activity history." -msgstr "" - -#: ../classes/class-wp-stream-list-table.php:53 -msgid "Sorry, no activity records were found." -msgstr "" +msgid_plural "" +"Your free account is limited to viewing %d days of activity " +"history." +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-list-table.php:68 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:507 +#, fuzzy msgid "Date" -msgstr "" +msgstr "Format de la date" #: ../classes/class-wp-stream-list-table.php:69 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:472 msgid "Summary" msgstr "Sommaire" #: ../classes/class-wp-stream-list-table.php:70 -#: ../connectors/class-wp-stream-connector-acf.php:309 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:406 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:492 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:368 msgid "Author" msgstr "Auteur" #: ../classes/class-wp-stream-list-table.php:71 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:409 +#: ../classes/class-wp-stream-settings.php:603 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:553 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:371 msgid "Context" msgstr "Contexte" #: ../classes/class-wp-stream-list-table.php:72 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:405 +#: ../classes/class-wp-stream-settings.php:604 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:560 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:367 msgid "Action" msgstr "Action" #: ../classes/class-wp-stream-list-table.php:73 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:410 +#: ../classes/class-wp-stream-settings.php:605 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:372 msgid "IP Address" msgstr "Adresse IP" @@ -360,6 +518,11 @@ msgstr "Adresse IP" msgid "View all records for this object" msgstr "" +#: ../classes/class-wp-stream-list-table.php:260 +#, fuzzy +msgid "Deleted User" +msgstr "Le compte utilisateur #%d à été supprimé" + #: ../classes/class-wp-stream-list-table.php:527 #, fuzzy msgid "dates" @@ -377,17 +540,69 @@ msgstr "contextes" msgid "actions" msgstr "actions" +#: ../classes/class-wp-stream-list-table.php:569 +msgid "Show filter controls via the screen options tab above." +msgstr "" + #: ../classes/class-wp-stream-list-table.php:606 msgid "Filter" msgstr "Filtre" +#: ../classes/class-wp-stream-list-table.php:658 +#, fuzzy, php-format +msgid "Show all %s" +msgstr "La page de blog affiche par défaut" + +#: ../classes/class-wp-stream-list-table.php:699 +#, fuzzy +msgid "Search Records" +msgstr "Affichage dans les moteurs de recherche" + #: ../classes/class-wp-stream-list-table.php:719 +#: ../extensions/reports/views/intervals.php:3 +#, fuzzy msgid "All Time" +msgstr "Format de l'heure" + +#: ../classes/class-wp-stream-list-table.php:721 +#: ../extensions/reports/views/intervals.php:5 +msgid "Custom" +msgstr "" + +#: ../classes/class-wp-stream-list-table.php:737 +#, fuzzy +msgid "Start Date" +msgstr "Format de la date" + +#: ../classes/class-wp-stream-list-table.php:743 +#, fuzzy +msgid "End Date" +msgstr "Format de la date" + +#: ../classes/class-wp-stream-list-table.php:825 +#, fuzzy +msgid "Live updates" +msgstr "Accèes aux rôles suivant:" + +#: ../classes/class-wp-stream-list-table.php:836 +#: ../classes/class-wp-stream-settings.php:237 +msgid "Enabled" +msgstr "Actif" + +#: ../classes/class-wp-stream-live-update.php:57 +msgid "" +"Live updates could not be enabled because Heartbeat is not loaded.\n" +"\n" +"Your hosting provider or another plugin may have disabled it for performance " +"reasons." msgstr "" #: ../classes/class-wp-stream-live-update.php:176 +#, php-format msgid "1 item" -msgstr "" +msgid_plural "%s items" +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-migrate.php:121 #, fuzzy @@ -410,12 +625,14 @@ msgid "Start Migration Now" msgstr "" #: ../classes/class-wp-stream-migrate.php:125 +#, fuzzy msgid "Remind Me Later" -msgstr "" +msgstr "Envoyé moi un courriel dès que" #: ../classes/class-wp-stream-migrate.php:126 +#, fuzzy msgid "Delete Existing Records" -msgstr "" +msgstr "Registre Stream" #: ../classes/class-wp-stream-migrate.php:162 msgid "Migration complete!" @@ -438,89 +655,64 @@ msgstr "" msgid "All existing records have been deleted from the database." msgstr "" -#: ../classes/class-wp-stream-network.php:129 -msgid "Network Admin" -msgstr "" - -#: ../classes/class-wp-stream-network.php:169 -#, fuzzy -msgid "Stream Network Settings" -msgstr "Paramètres Stream" - -#: ../classes/class-wp-stream-network.php:170 +#: ../classes/class-wp-stream-pointers.php:144 #, fuzzy -msgid "Network Settings" -msgstr "Paramètres Stream" +msgid "Stream Extensions" +msgstr "Flux Stream" -#: ../classes/class-wp-stream-network.php:179 -#, fuzzy -msgid "New Site Settings" -msgstr "Paramètres Stream" +#: ../classes/class-wp-stream-pointers.php:145 +msgid "Extension plugins are now available for Stream!" +msgstr "" -#: ../classes/class-wp-stream-network.php:180 -msgid "Site Defaults" +#: ../classes/class-wp-stream-record.php:41 +msgid "Could not validate record data." msgstr "" -#: ../classes/class-wp-stream-network.php:234 -msgid "These settings apply to all sites on the network." +#: ../classes/class-wp-stream-settings.php:75 +msgid "There was an error in the request" msgstr "" -#: ../classes/class-wp-stream-network.php:237 +#: ../classes/class-wp-stream-settings.php:119 +#, php-format msgid "" -"These default settings will apply to new sites created on the network. These " -"settings do not alter existing sites." +"ID: %d\n" +"User: %s\n" +"Email: %s\n" +"Role: %s" msgstr "" -#: ../classes/class-wp-stream-network.php:302 -#, fuzzy -msgid "Enable Site Access" -msgstr "Accèes aux rôles suivant:" - -#: ../classes/class-wp-stream-network.php:303 -msgid "Enabled" -msgstr "Actif" - -#: ../classes/class-wp-stream-network.php:305 +#: ../classes/class-wp-stream-settings.php:138 msgid "" -"When site access is disabled Stream can only be accessed from the network " -"administration." +"Actions performed by the system when a user is not logged in (e.g. auto site " +"upgrader, or invoking WP-CLI without --user)" msgstr "" -#: ../classes/class-wp-stream-network.php:321 -#, fuzzy -msgid "Reset Site Settings" -msgstr "Paramètres Stream" - -#: ../classes/class-wp-stream-network.php:324 -#, fuzzy -msgid "Warning: Clicking this will override all site settings with defaults." -msgstr "" -"Avertissement: la confirmation de cette boîte entraînera la suppression de " -"tous les entrées de la base de donnée." +#: ../classes/class-wp-stream-settings.php:208 +#: ../connectors/class-wp-stream-connector-settings.php:122 +msgid "General" +msgstr "Général" -#: ../classes/class-wp-stream-network.php:408 +#: ../classes/class-wp-stream-settings.php:212 +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:36 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:55 #, fuzzy -msgid "Settings saved." -msgstr "Paramètres" +msgid "Role Access" +msgstr "Accès refusé" -#: ../classes/class-wp-stream-network.php:463 -msgid "sites" -msgstr "" - -#: ../classes/class-wp-stream-record.php:41 -msgid "Could not validate record data." -msgstr "" - -#: ../classes/class-wp-stream-settings.php:129 -#, php-format +#: ../classes/class-wp-stream-settings.php:214 msgid "" -"ID: %d\n" -"User: %s\n" -"Email: %s\n" -"Role: %s" +"Users from the selected roles above will have permission to view Stream " +"Records. However, only site Administrators can access Stream Settings." msgstr "" +"Les utilisateurs des rôles sélectionnés ci-dessus auront la permission de " +"voir les données enregisté par Stream. Cependant, seuls les administrateurs " +"du site peuvent accéder aux paramètres Stream." + +#: ../classes/class-wp-stream-settings.php:220 +msgid "Private Feeds" +msgstr "RSS privés" -#: ../classes/class-wp-stream-settings.php:241 +#: ../classes/class-wp-stream-settings.php:223 #, fuzzy, php-format msgid "" "Users from the selected roles above will be given a private key found in " @@ -531,32 +723,92 @@ msgstr "" "privé URL dans leur %sProfil Utilisateur%s. N'oublier pas de %svider la " "cache des permaliens%s après avoir modifié ce paramètre." -#: ../classes/class-wp-stream-settings.php:610 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 -msgid "Add New Rule" -msgstr "" - -#: ../classes/class-wp-stream-settings.php:611 +#: ../classes/class-wp-stream-settings.php:227 +#, fuzzy +msgid "View Profile" +msgstr "Vue" + +#: ../classes/class-wp-stream-settings.php:233 +msgid "View Codex" +msgstr "Voir Codex" + +#: ../classes/class-wp-stream-settings.php:243 +msgid "Exclude" +msgstr "" + +#: ../classes/class-wp-stream-settings.php:247 +msgid "Exclude Rules" +msgstr "" + +#: ../classes/class-wp-stream-settings.php:249 +msgid "" +"Create rules for excluding certain kinds of records from appearing in Stream." +msgstr "" + +#: ../classes/class-wp-stream-settings.php:569 +#, fuzzy, php-format +msgid "Any %s" +msgstr "%s mis à jour" + +#: ../classes/class-wp-stream-settings.php:584 +#, fuzzy +msgid "Add New Rule" +msgstr "Menu \"%s\" a été créé" + +#: ../classes/class-wp-stream-settings.php:585 msgid "Delete Selected Rules" msgstr "" -#: ../classes/class-wp-stream-settings.php:656 +#: ../classes/class-wp-stream-settings.php:602 +#, fuzzy +msgid "Author or Role" +msgstr "Auteur" + +#: ../classes/class-wp-stream-settings.php:606 +#, fuzzy +msgid "Filters" +msgstr "Filtre" + +#: ../classes/class-wp-stream-settings.php:630 +#, fuzzy, php-format msgid "1 user" -msgstr "" +msgid_plural "%s users" +msgstr[0] "Nouveau rôle par défaut des utilisateurs" +msgstr[1] "Nouveau rôle par défaut des utilisateurs" + +#: ../classes/class-wp-stream-settings.php:653 +#, fuzzy +msgid "Any Author or Role" +msgstr "Auteur" + +#: ../classes/class-wp-stream-settings.php:694 +#, fuzzy +msgid "Any Context" +msgstr "Contexte" + +#: ../classes/class-wp-stream-settings.php:713 +#, fuzzy +msgid "Any Action" +msgstr "Action" + +#: ../classes/class-wp-stream-settings.php:724 +#, fuzzy +msgid "Any IP Address" +msgstr "Adresse IP" + +#: ../classes/class-wp-stream-settings.php:761 +#, fuzzy +msgid "No rules found." +msgstr "Paramètres Stream" #: ../connectors/class-wp-stream-connector-acf.php:71 +msgctxt "acf" msgid "ACF" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:82 -#: ../connectors/class-wp-stream-connector-bbpress.php:89 -#: ../connectors/class-wp-stream-connector-blogs.php:49 -#: ../connectors/class-wp-stream-connector-buddypress.php:124 -#: ../connectors/class-wp-stream-connector-edd.php:109 #: ../connectors/class-wp-stream-connector-editor.php:54 -#: ../connectors/class-wp-stream-connector-gravityforms.php:99 #: ../connectors/class-wp-stream-connector-installer.php:48 -#: ../connectors/class-wp-stream-connector-jetpack.php:85 #: ../connectors/class-wp-stream-connector-media.php:43 #: ../connectors/class-wp-stream-connector-menus.php:40 #: ../connectors/class-wp-stream-connector-posts.php:38 @@ -564,27 +816,16 @@ msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:55 #: ../connectors/class-wp-stream-connector-users.php:53 #: ../connectors/class-wp-stream-connector-widgets.php:62 -#: ../connectors/class-wp-stream-connector-woocommerce.php:99 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:78 msgid "Updated" msgstr "Mis à jour" #: ../connectors/class-wp-stream-connector-acf.php:83 -#: ../connectors/class-wp-stream-connector-edd.php:110 -#: ../connectors/class-wp-stream-connector-gravityforms.php:102 -#: ../connectors/class-wp-stream-connector-jetpack.php:86 #: ../connectors/class-wp-stream-connector-widgets.php:55 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:79 msgid "Added" msgstr "Ajouter" #: ../connectors/class-wp-stream-connector-acf.php:84 -#: ../connectors/class-wp-stream-connector-bbpress.php:92 -#: ../connectors/class-wp-stream-connector-blogs.php:52 -#: ../connectors/class-wp-stream-connector-buddypress.php:127 #: ../connectors/class-wp-stream-connector-comments.php:55 -#: ../connectors/class-wp-stream-connector-edd.php:111 -#: ../connectors/class-wp-stream-connector-gravityforms.php:103 #: ../connectors/class-wp-stream-connector-installer.php:47 #: ../connectors/class-wp-stream-connector-media.php:44 #: ../connectors/class-wp-stream-connector-menus.php:41 @@ -592,253 +833,308 @@ msgstr "Ajouter" #: ../connectors/class-wp-stream-connector-taxonomies.php:56 #: ../connectors/class-wp-stream-connector-users.php:55 #: ../connectors/class-wp-stream-connector-widgets.php:59 -#: ../connectors/class-wp-stream-connector-woocommerce.php:102 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:80 msgid "Deleted" msgstr "Supprimé" #: ../connectors/class-wp-stream-connector-acf.php:95 +#, fuzzy +msgctxt "acf" msgid "Field Groups" -msgstr "" +msgstr "Visualiser le profil" #: ../connectors/class-wp-stream-connector-acf.php:96 +#, fuzzy +msgctxt "acf" msgid "Fields" -msgstr "" +msgstr "Visualiser le profil" #: ../connectors/class-wp-stream-connector-acf.php:97 +#, fuzzy +msgctxt "acf" msgid "Rules" -msgstr "" +msgstr "Rechercher les registres" #: ../connectors/class-wp-stream-connector-acf.php:98 -#: ../connectors/class-wp-stream-connector-jetpack.php:101 #, fuzzy +msgctxt "acf" msgid "Options" msgstr "actions" #: ../connectors/class-wp-stream-connector-acf.php:99 +msgctxt "acf" msgid "Values" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:224 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" field in \"%2$s\" %3$s" msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-acf.php:252 +#, fuzzy +msgctxt "acf" msgid "High (after title)" -msgstr "" +msgstr "Titre du site" #: ../connectors/class-wp-stream-connector-acf.php:253 +msgctxt "acf" msgid "Normal (after content)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:254 +msgctxt "acf" msgid "Side" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:258 -#, php-format +#, fuzzy, php-format +msgctxt "acf" msgid "Position of \"%1$s\" updated to \"%2$s\"" -msgstr "" +msgstr "\"%s\" to \"%s\" a été attaché" #: ../connectors/class-wp-stream-connector-acf.php:277 +msgctxt "acf" msgid "Seamless (no metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:278 +msgctxt "acf" msgid "Standard (WP metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:282 #, fuzzy, php-format +msgctxt "acf" msgid "Style of \"%1$s\" updated to \"%2$s\"" msgstr "\"%s\" to \"%s\" a été attaché" #: ../connectors/class-wp-stream-connector-acf.php:301 #, fuzzy +msgctxt "acf" msgid "Permalink" msgstr "Permaliens" #: ../connectors/class-wp-stream-connector-acf.php:302 +#, fuzzy +msgctxt "acf" msgid "Content Editor" -msgstr "" +msgstr "Contexte" #: ../connectors/class-wp-stream-connector-acf.php:303 +msgctxt "acf" msgid "Excerpt" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:304 +#, fuzzy +msgctxt "acf" msgid "Custom Fields" -msgstr "" +msgstr "Visualiser le profil" #: ../connectors/class-wp-stream-connector-acf.php:305 -#: ../connectors/class-wp-stream-connector-settings.php:125 +#, fuzzy +msgctxt "acf" msgid "Discussion" -msgstr "" +msgstr "connecteurs" #: ../connectors/class-wp-stream-connector-acf.php:306 -#: ../connectors/class-wp-stream-connector-comments.php:36 -#: ../connectors/class-wp-stream-connector-comments.php:68 -#: ../connectors/class-wp-stream-connector-jetpack.php:109 #, fuzzy +msgctxt "acf" msgid "Comments" msgstr "Commentaire mis en liste noir" #: ../connectors/class-wp-stream-connector-acf.php:307 #, fuzzy +msgctxt "acf" msgid "Revisions" msgstr "Révisé" #: ../connectors/class-wp-stream-connector-acf.php:308 +msgctxt "acf" msgid "Slug" msgstr "" +#: ../connectors/class-wp-stream-connector-acf.php:309 +#, fuzzy +msgctxt "acf" +msgid "Author" +msgstr "Auteur" + #: ../connectors/class-wp-stream-connector-acf.php:310 #, fuzzy +msgctxt "acf" msgid "Format" -msgstr "Mise en forme" +msgstr "Format de la date" #: ../connectors/class-wp-stream-connector-acf.php:311 +#, fuzzy +msgctxt "acf" msgid "Featured Image" -msgstr "" +msgstr "Image \"%s\" mis à jour" #: ../connectors/class-wp-stream-connector-acf.php:312 -#: ../connectors/class-wp-stream-connector-edd.php:129 #, fuzzy +msgctxt "acf" msgid "Categories" msgstr "Structure des Catégories" #: ../connectors/class-wp-stream-connector-acf.php:313 -#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "acf" msgid "Tags" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:314 +msgctxt "acf" msgid "Send Trackbacks" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:318 +#, fuzzy +msgctxt "acf" msgid "All screens" -msgstr "" +msgstr "Action" #: ../connectors/class-wp-stream-connector-acf.php:320 +#, fuzzy +msgctxt "acf" msgid "No screens" -msgstr "" +msgstr "Action" #: ../connectors/class-wp-stream-connector-acf.php:326 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" set to display on \"%2$s\"" msgstr "L'utilisateur \"%s\" a été ajouté de \"%s\"" #: ../connectors/class-wp-stream-connector-acf.php:383 +#, fuzzy msgid "user" -msgstr "" +msgstr "Nouveau rôle par défaut des utilisateurs" #: ../connectors/class-wp-stream-connector-acf.php:396 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" of \"%2$s\" %3$s updated" msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-acf.php:434 -#, php-format +#, fuzzy, php-format +msgctxt "acf" msgid "Updated rules of \"%1$s\" (%2$d added, %3$d deleted)" -msgstr "" +msgstr "%s: %s %s Mis à jour" #: ../connectors/class-wp-stream-connector-acf.php:460 msgid "field group" msgstr "" -#: ../connectors/class-wp-stream-connector-acf.php:494 +#: ../connectors/class-wp-stream-connector-acf.php:495 #, fuzzy, php-format +msgctxt "acf" msgid "Updated Order of \"%1$s\" from %2$d to %3$d" msgstr "%s: %s %s Mis à jour" #: ../connectors/class-wp-stream-connector-bbpress.php:78 +#, fuzzy +msgctxt "bbpress" msgid "bbPress" -msgstr "" +msgstr "Adresse WordPress (URL)" + +#: ../connectors/class-wp-stream-connector-bbpress.php:88 +#, fuzzy +msgctxt "bbpress" +msgid "Created" +msgstr "Créé" + +#: ../connectors/class-wp-stream-connector-bbpress.php:89 +#, fuzzy +msgctxt "bbpress" +msgid "Updated" +msgstr "Mis à jour" #: ../connectors/class-wp-stream-connector-bbpress.php:90 -#: ../connectors/class-wp-stream-connector-buddypress.php:125 -#: ../connectors/class-wp-stream-connector-gravityforms.php:422 -#: ../connectors/class-wp-stream-connector-installer.php:45 -#: ../connectors/class-wp-stream-connector-jetpack.php:79 +#, fuzzy +msgctxt "bbpress" msgid "Activated" msgstr "Activée" #: ../connectors/class-wp-stream-connector-bbpress.php:91 -#: ../connectors/class-wp-stream-connector-buddypress.php:126 -#: ../connectors/class-wp-stream-connector-gravityforms.php:423 -#: ../connectors/class-wp-stream-connector-installer.php:46 -#: ../connectors/class-wp-stream-connector-widgets.php:60 +#, fuzzy +msgctxt "bbpress" msgid "Deactivated" msgstr "Désactivé" +#: ../connectors/class-wp-stream-connector-bbpress.php:92 +#, fuzzy +msgctxt "bbpress" +msgid "Deleted" +msgstr "Supprimé" + #: ../connectors/class-wp-stream-connector-bbpress.php:93 -#: ../connectors/class-wp-stream-connector-comments.php:51 -#: ../connectors/class-wp-stream-connector-edd.php:112 -#: ../connectors/class-wp-stream-connector-gravityforms.php:104 -#: ../connectors/class-wp-stream-connector-gravityforms.php:424 -#: ../connectors/class-wp-stream-connector-posts.php:40 -#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +#, fuzzy +msgctxt "bbpress" msgid "Trashed" msgstr "Mis à la corbeil" #: ../connectors/class-wp-stream-connector-bbpress.php:94 -#: ../connectors/class-wp-stream-connector-comments.php:52 -#: ../connectors/class-wp-stream-connector-edd.php:113 -#: ../connectors/class-wp-stream-connector-gravityforms.php:105 -#: ../connectors/class-wp-stream-connector-gravityforms.php:425 -#: ../connectors/class-wp-stream-connector-posts.php:41 +msgctxt "bbpress" msgid "Restored" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:95 -#: ../connectors/class-wp-stream-connector-edd.php:114 #, fuzzy +msgctxt "bbpress" msgid "Generated" msgstr "Général" #: ../connectors/class-wp-stream-connector-bbpress.php:96 -#: ../connectors/class-wp-stream-connector-edd.php:115 -#: ../connectors/class-wp-stream-connector-gravityforms.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:82 #, fuzzy +msgctxt "bbpress" msgid "Imported" msgstr "Classer" #: ../connectors/class-wp-stream-connector-bbpress.php:97 -#: ../connectors/class-wp-stream-connector-edd.php:116 -#: ../connectors/class-wp-stream-connector-gravityforms.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:81 #, fuzzy +msgctxt "bbpress" msgid "Exported" msgstr "Classer" #: ../connectors/class-wp-stream-connector-bbpress.php:98 +msgctxt "bbpress" msgid "Closed" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:99 +msgctxt "bbpress" msgid "Opened" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:100 +msgctxt "bbpress" msgid "Sticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:101 +msgctxt "bbpress" msgid "Unsticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:102 -#: ../connectors/class-wp-stream-connector-buddypress.php:128 +msgctxt "bbpress" msgid "Marked as spam" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:103 -#: ../connectors/class-wp-stream-connector-buddypress.php:129 +#, fuzzy +msgctxt "bbpress" msgid "Unmarked as spam" -msgstr "" +msgstr "\"%s\" %s mis à la corbeil" + +#: ../connectors/class-wp-stream-connector-bbpress.php:114 +#, fuzzy +msgctxt "bbpress" +msgid "Settings" +msgstr "Paramètres" #: ../connectors/class-wp-stream-connector-bbpress.php:131 #: ../connectors/class-wp-stream-connector-buddypress.php:164 @@ -847,8 +1143,8 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:254 #: ../connectors/class-wp-stream-connector-comments.php:124 #: ../connectors/class-wp-stream-connector-gravityforms.php:137 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:126 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:133 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:117 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:124 msgid "Edit" msgstr "Modifier" @@ -858,169 +1154,133 @@ msgid "Reply Threading" msgstr "Lecture" #: ../connectors/class-wp-stream-connector-bbpress.php:174 -#, php-format +#, fuzzy, php-format msgid "Replied on \"%1$s\"" -msgstr "" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-bbpress.php:178 -#, php-format +#, fuzzy, php-format msgid "Reply to: %s" -msgstr "" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-bbpress.php:209 #, fuzzy, php-format +msgctxt "1: Action, 2: Topic title" msgid "%1$s \"%2$s\" topic" msgstr "\"%s\" %s mis à jour" -#: ../connectors/class-wp-stream-connector-blogs.php:39 -msgid "Sites" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:51 -msgid "Archived" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:85 -#: ../connectors/class-wp-stream-connector-blogs.php:90 +#: ../connectors/class-wp-stream-connector-buddypress.php:113 #, fuzzy -msgid "Site Admin" -msgstr "Titre du site" +msgctxt "buddypress" +msgid "BuddyPress" +msgstr "Adresse IP" -#: ../connectors/class-wp-stream-connector-blogs.php:101 +#: ../connectors/class-wp-stream-connector-buddypress.php:123 #, fuzzy -msgid "Site Settings" -msgstr "Paramètres Stream" - -#: ../connectors/class-wp-stream-connector-blogs.php:116 -#, php-format -msgid "A new site called \"%1$s\" has been created." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:139 -#, php-format -msgid "A new site called \"%1$s\" has been registered." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:170 -#, php-format -msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:201 -#, fuzzy, php-format -msgid "%1$s has been removed from the site \"%2$s\"." -msgstr "L'utilisateur \"%s\" a été supprimé de \"%s\"" - -#: ../connectors/class-wp-stream-connector-blogs.php:220 -#: ../connectors/class-wp-stream-connector-gravityforms.php:650 -msgid "marked as spam" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:228 -msgid "marked as not spam" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:236 -msgid "marked as mature" -msgstr "" +msgctxt "buddypress" +msgid "Created" +msgstr "Créé" -#: ../connectors/class-wp-stream-connector-blogs.php:244 -msgid "marked as not mature" -msgstr "" +#: ../connectors/class-wp-stream-connector-buddypress.php:124 +#, fuzzy +msgctxt "buddypress" +msgid "Updated" +msgstr "Mis à jour" -#: ../connectors/class-wp-stream-connector-blogs.php:252 -msgid "archived" -msgstr "" +#: ../connectors/class-wp-stream-connector-buddypress.php:125 +#, fuzzy +msgctxt "buddypress" +msgid "Activated" +msgstr "Activée" -#: ../connectors/class-wp-stream-connector-blogs.php:260 -msgid "restored from archive" -msgstr "" +#: ../connectors/class-wp-stream-connector-buddypress.php:126 +#, fuzzy +msgctxt "buddypress" +msgid "Deactivated" +msgstr "Désactivé" -#: ../connectors/class-wp-stream-connector-blogs.php:268 -#: ../connectors/class-wp-stream-connector-gravityforms.php:497 +#: ../connectors/class-wp-stream-connector-buddypress.php:127 #, fuzzy -msgid "deleted" +msgctxt "buddypress" +msgid "Deleted" msgstr "Supprimé" -#: ../connectors/class-wp-stream-connector-blogs.php:276 -#: ../connectors/class-wp-stream-connector-gravityforms.php:652 -msgid "restored" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:286 -msgid "marked as public" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:288 -msgid "marked as private" +#: ../connectors/class-wp-stream-connector-buddypress.php:128 +msgctxt "buddypress" +msgid "Marked as spam" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:302 -#, fuzzy, php-format -msgid "\"%1$s\" has been %2$s." -msgstr "L'utilisateur \"%s\" a été ajouté de \"%s\"" - -#: ../connectors/class-wp-stream-connector-buddypress.php:113 +#: ../connectors/class-wp-stream-connector-buddypress.php:129 #, fuzzy -msgid "BuddyPress" -msgstr "Adresse IP" +msgctxt "buddypress" +msgid "Unmarked as spam" +msgstr "\"%s\" %s mis à la corbeil" #: ../connectors/class-wp-stream-connector-buddypress.php:130 +msgctxt "buddypress" msgid "Promoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:131 +msgctxt "buddypress" msgid "Demoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:142 #, fuzzy +msgctxt "buddypress" msgid "Components" msgstr "Commentaire mis en liste noir" #: ../connectors/class-wp-stream-connector-buddypress.php:143 +#, fuzzy +msgctxt "buddypress" msgid "Groups" -msgstr "" +msgstr "Visualiser le profil" #: ../connectors/class-wp-stream-connector-buddypress.php:144 #, fuzzy +msgctxt "buddypress" msgid "Activity" msgstr "Activée" #: ../connectors/class-wp-stream-connector-buddypress.php:145 #, fuzzy +msgctxt "buddypress" msgid "Profile fields" -msgstr "Modifier le profil" +msgstr "Le profil de %s a été mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:173 #: ../connectors/class-wp-stream-connector-buddypress.php:186 #, fuzzy msgid "Edit setting" -msgstr "Mis à jour %s des paramètres" +msgstr "Le paramètre \"%s\" a été mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:181 #, fuzzy msgid "Edit Page" -msgstr "Modifier le profil" +msgstr "Modifier" #: ../connectors/class-wp-stream-connector-buddypress.php:182 #: ../connectors/class-wp-stream-connector-gravityforms.php:145 #: ../connectors/class-wp-stream-connector-gravityforms.php:155 #: ../connectors/class-wp-stream-connector-media.php:110 +#: ../connectors/class-wp-stream-connector-posts.php:106 #: ../connectors/class-wp-stream-connector-taxonomies.php:94 #: ../connectors/class-wp-stream-connector-woocommerce.php:220 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:165 msgid "View" msgstr "Vue" #: ../connectors/class-wp-stream-connector-buddypress.php:203 #, fuzzy msgid "Edit group" -msgstr "Modifier menu" +msgstr "Modifier" #: ../connectors/class-wp-stream-connector-buddypress.php:204 #, fuzzy msgid "View group" -msgstr "Visualiser le profil" +msgstr "Vue" #: ../connectors/class-wp-stream-connector-buddypress.php:205 #, fuzzy @@ -1038,48 +1298,62 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:226 #: ../connectors/class-wp-stream-connector-buddypress.php:241 #: ../connectors/class-wp-stream-connector-buddypress.php:263 +#: ../extensions/notifications/views/form-templates.php:19 +#: ../extensions/notifications/views/form-templates.php:78 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:173 #, fuzzy msgid "Delete" msgstr "Supprimé" #: ../connectors/class-wp-stream-connector-buddypress.php:284 #: ../connectors/class-wp-stream-connector-buddypress.php:288 +msgctxt "buddypress" msgid "Toolbar" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:292 +#, fuzzy +msgctxt "buddypress" msgid "Account Deletion" -msgstr "" +msgstr "Le compte utilisateur #%d à été supprimé" #: ../connectors/class-wp-stream-connector-buddypress.php:296 #, fuzzy +msgctxt "buddypress" msgid "Profile Syncing" -msgstr "Modifier le profil" +msgstr "Le profil de %s a été mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:300 +msgctxt "buddypress" msgid "Group Creation" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:304 +msgctxt "buddypress" msgid "bbPress Configuration" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:308 +msgctxt "buddypress" msgid "Blog & Forum Comments" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:312 +#, fuzzy +msgctxt "buddypress" msgid "Activity auto-refresh" -msgstr "" +msgstr "Auteur" #: ../connectors/class-wp-stream-connector-buddypress.php:316 +msgctxt "buddypress" msgid "Akismet" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:320 #, fuzzy +msgctxt "buddypress" msgid "Avatar Uploads" -msgstr "Affichage de la photo de l'utilisateur" +msgstr "Photo par défaut" #: ../connectors/class-wp-stream-connector-buddypress.php:367 #: ../connectors/class-wp-stream-connector-edd.php:246 @@ -1100,7 +1374,7 @@ msgstr "Le paramètre \"%s\" a été mis à jour" #: ../connectors/class-wp-stream-connector-jetpack.php:425 #, fuzzy msgid "activated" -msgstr "Désactivé" +msgstr "Activée" #: ../connectors/class-wp-stream-connector-buddypress.php:391 #: ../connectors/class-wp-stream-connector-edd.php:361 @@ -1118,19 +1392,20 @@ msgid "\"%1$s\" component %2$s" msgstr "L'utilisateur \"%s\" a été ajouté de \"%s\"" #: ../connectors/class-wp-stream-connector-buddypress.php:432 +msgctxt "buddypress" msgid "Register" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:433 -#: ../connectors/class-wp-stream-connector-jetpack.php:159 -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 #, fuzzy +msgctxt "buddypress" msgid "Activate" msgstr "Activée" #: ../connectors/class-wp-stream-connector-buddypress.php:442 +#, fuzzy msgid "No page" -msgstr "" +msgstr "Registres par page" #: ../connectors/class-wp-stream-connector-buddypress.php:446 #, fuzzy, php-format @@ -1140,12 +1415,12 @@ msgstr "L'utilisateur \"%s\" a été ajouté de \"%s\"" #: ../connectors/class-wp-stream-connector-buddypress.php:480 #, fuzzy, php-format msgid "\"%s\" activity deleted" -msgstr "Le thème \"%s\" a été supprimé" +msgstr "\"%s\" Supprimé" #: ../connectors/class-wp-stream-connector-buddypress.php:502 #, fuzzy, php-format msgid "\"%s\" activities were deleted" -msgstr "Le thème \"%s\" a été supprimé" +msgstr "\"%s\" Supprimé" #: ../connectors/class-wp-stream-connector-buddypress.php:520 #, php-format @@ -1160,32 +1435,32 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:556 #, fuzzy, php-format msgid "\"%s\" activity updated" -msgstr "Le thème \"%s\" a été activé" +msgstr "\"%s\" mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:584 #, fuzzy, php-format msgid "\"%s\" group created" -msgstr "\"%s\" %s créé" +msgstr "Menu \"%s\" a été créé" #: ../connectors/class-wp-stream-connector-buddypress.php:587 #, fuzzy, php-format msgid "\"%s\" group updated" -msgstr "\"%s\" %s mis à jour" +msgstr "\"%s\" mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:590 #, fuzzy, php-format msgid "\"%s\" group deleted" -msgstr "Le plugin \"%s\" a été supprimé" +msgstr "\"%s\" Supprimé" #: ../connectors/class-wp-stream-connector-buddypress.php:593 -#, php-format +#, fuzzy, php-format msgid "Joined group \"%s\"" -msgstr "" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:596 -#, php-format +#, fuzzy, php-format msgid "Left group \"%s\"" -msgstr "" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:599 #, fuzzy, php-format @@ -1203,42 +1478,48 @@ msgid "Removed \"%2$s\" from \"%1$s\"" msgstr "\"%s\" to \"%s\" a été attaché" #: ../connectors/class-wp-stream-connector-buddypress.php:665 +#, fuzzy +msgctxt "buddypress" msgid "Administrator" msgstr "" +"Vous n'avez pas la permission de voir ce flux, s'il vous plaît contactez " +"votre administrateur du site." #: ../connectors/class-wp-stream-connector-buddypress.php:666 +msgctxt "buddypress" msgid "Moderator" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:669 #, fuzzy, php-format msgid "Promoted \"%s\" to \"%s\" in \"%s\"" -msgstr "Mis à jour \"%s\" dans \"%s\"" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:680 #, fuzzy, php-format msgid "Demoted \"%s\" to \"%s\" in \"%s\"" -msgstr "Mis à jour \"%s\" dans \"%s\"" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:682 #, fuzzy +msgctxt "buddypress" msgid "Member" msgstr "Abonnement" #: ../connectors/class-wp-stream-connector-buddypress.php:706 #, fuzzy, php-format msgid "Created profile field \"%s\"" -msgstr "Menu \"%s\" a été créé" +msgstr "Le profil de %s a été mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:709 #, fuzzy, php-format msgid "Updated profile field \"%s\"" -msgstr "Mis à jour \"%s\" dans \"%s\"" +msgstr "Le profil de %s a été mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:712 #, fuzzy, php-format msgid "Deleted profile field \"%s\"" -msgstr "\"%s\" Supprimé" +msgstr "Le profil de %s a été mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:755 #, fuzzy, php-format @@ -1248,13 +1529,19 @@ msgstr "Menu \"%s\" a été créé" #: ../connectors/class-wp-stream-connector-buddypress.php:758 #, fuzzy, php-format msgid "Updated profile field group \"%s\"" -msgstr "Menu \"%s\" mis à jour" +msgstr "Le profil de %s a été mis à jour" #: ../connectors/class-wp-stream-connector-buddypress.php:761 #, php-format msgid "Deleted profile field group \"%s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:36 +#: ../connectors/class-wp-stream-connector-comments.php:68 +#, fuzzy +msgid "Comments" +msgstr "Commentaire mis en liste noir" + #: ../connectors/class-wp-stream-connector-comments.php:47 msgid "Edited" msgstr "Édité" @@ -1271,6 +1558,18 @@ msgstr "" msgid "Unapproved" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:51 +#: ../connectors/class-wp-stream-connector-gravityforms.php:424 +#: ../connectors/class-wp-stream-connector-posts.php:40 +msgid "Trashed" +msgstr "Mis à la corbeil" + +#: ../connectors/class-wp-stream-connector-comments.php:52 +#: ../connectors/class-wp-stream-connector-gravityforms.php:425 +#: ../connectors/class-wp-stream-connector-posts.php:41 +msgid "Restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-comments.php:53 msgid "Marked as Spam" msgstr "" @@ -1290,7 +1589,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:81 #, fuzzy msgid "Comment" -msgstr "Commentaire mis en liste noir" +msgstr "Commentaire en attente de modération" #: ../connectors/class-wp-stream-connector-comments.php:82 msgid "Trackback" @@ -1331,8 +1630,9 @@ msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:450 #: ../connectors/class-wp-stream-connector-comments.php:484 #: ../connectors/class-wp-stream-connector-comments.php:519 +#, fuzzy msgid "a post" -msgstr "" +msgstr "Catégorie par défaut des articles" #: ../connectors/class-wp-stream-connector-comments.php:230 msgid "approved automatically" @@ -1347,87 +1647,166 @@ msgid "automatically marked as spam by Akismet" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:248 -#, php-format +#, fuzzy, php-format +msgctxt "" +"1: Parent comment's author, 2: Comment author, 3: Post title, 4: Comment " +"status, 5: Comment type" msgid "Reply to %1$s's %5$s by %2$s on %3$s %4$s" -msgstr "" +msgstr "%s: %s %s Mis à jour" #: ../connectors/class-wp-stream-connector-comments.php:261 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title 3: Comment status, 4: Comment type" msgid "New %4$s by %1$s on %2$s %3$s" msgstr "%s: %s %s Mis à jour" #: ../connectors/class-wp-stream-connector-comments.php:295 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s edited" msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-comments.php:327 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s deleted permanently" msgstr "\"%s\" %s supprimé de la corbeil" #: ../connectors/class-wp-stream-connector-comments.php:359 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s trashed" msgstr "\"%s\" %s mis à la corbeil" #: ../connectors/class-wp-stream-connector-comments.php:391 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s restored" msgstr "\"%s\" %s créé" #: ../connectors/class-wp-stream-connector-comments.php:423 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s marked as spam" -msgstr "" +msgstr "\"%s\" %s mis à la corbeil" #: ../connectors/class-wp-stream-connector-comments.php:455 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s unmarked as spam" -msgstr "" +msgstr "\"%s\" %s mis à la corbeil" #: ../connectors/class-wp-stream-connector-comments.php:489 #, fuzzy, php-format +msgctxt "" +"Comment status transition. 1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s %2$s" msgstr "%s: %s %s Mis à jour" #: ../connectors/class-wp-stream-connector-comments.php:524 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "Duplicate %3$s by %1$s prevented on %2$s" -msgstr "" +msgstr "%s: %s %s Mis à jour" #: ../connectors/class-wp-stream-connector-edd.php:98 +msgctxt "edd" msgid "Easy Digital Downloads" msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:108 +#, fuzzy +msgctxt "edd" +msgid "Created" +msgstr "Créé" + +#: ../connectors/class-wp-stream-connector-edd.php:109 +#, fuzzy +msgctxt "edd" +msgid "Updated" +msgstr "Mis à jour" + +#: ../connectors/class-wp-stream-connector-edd.php:110 +#, fuzzy +msgctxt "edd" +msgid "Added" +msgstr "Ajouter" + +#: ../connectors/class-wp-stream-connector-edd.php:111 +#, fuzzy +msgctxt "edd" +msgid "Deleted" +msgstr "Supprimé" + +#: ../connectors/class-wp-stream-connector-edd.php:112 +#, fuzzy +msgctxt "edd" +msgid "Trashed" +msgstr "Mis à la corbeil" + +#: ../connectors/class-wp-stream-connector-edd.php:113 +msgctxt "edd" +msgid "Restored" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:114 +#, fuzzy +msgctxt "edd" +msgid "Generated" +msgstr "Général" + +#: ../connectors/class-wp-stream-connector-edd.php:115 +#, fuzzy +msgctxt "edd" +msgid "Imported" +msgstr "Classer" + +#: ../connectors/class-wp-stream-connector-edd.php:116 +#, fuzzy +msgctxt "edd" +msgid "Exported" +msgstr "Classer" + #: ../connectors/class-wp-stream-connector-edd.php:117 +msgctxt "edd" msgid "Revoked" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:128 +msgctxt "edd" msgid "Downloads" msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:129 +#, fuzzy +msgctxt "edd" +msgid "Categories" +msgstr "Structure des Catégories" + +#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "edd" +msgid "Tags" +msgstr "" + #: ../connectors/class-wp-stream-connector-edd.php:131 #, fuzzy +msgctxt "edd" msgid "Discounts" msgstr "connecteurs" #: ../connectors/class-wp-stream-connector-edd.php:132 -#: ../extensions/reports/class-wp-stream-reports.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:146 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:56 +#, fuzzy +msgctxt "edd" msgid "Reports" -msgstr "" +msgstr "Registre Stream" #: ../connectors/class-wp-stream-connector-edd.php:133 +msgctxt "edd" msgid "API Keys" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:155 #: ../connectors/class-wp-stream-connector-edd.php:182 -#: ../connectors/class-wp-stream-connector-taxonomies.php:93 -#: ../connectors/class-wp-stream-connector-woocommerce.php:216 #, php-format msgid "Edit %s" msgstr "%s mis à jour" @@ -1435,12 +1814,12 @@ msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-edd.php:164 #, fuzzy, php-format msgid "Deactivate %s" -msgstr "Désactivé" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-edd.php:172 #, fuzzy, php-format msgid "Activate %s" -msgstr "Activée" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-edd.php:187 #, fuzzy @@ -1456,13 +1835,14 @@ msgid "Reissue" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:273 +msgctxt "edd" msgid "Banned emails" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:327 #, fuzzy, php-format msgid "\"%1s\" discount deleted" -msgstr "Le plugin \"%s\" a été supprimé" +msgstr "Supprimé" #: ../connectors/class-wp-stream-connector-edd.php:359 #, fuzzy, php-format @@ -1494,17 +1874,17 @@ msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:404 #, fuzzy, php-format msgid "Generated %s report" -msgstr "Générer une nouvelle clé" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-edd.php:418 #, fuzzy msgid "Exported Settings" -msgstr "Paramètres Stream" +msgstr "Paramètres" #: ../connectors/class-wp-stream-connector-edd.php:428 #, fuzzy msgid "Imported Settings" -msgstr "Paramètres Stream" +msgstr "Paramètres" #: ../connectors/class-wp-stream-connector-edd.php:463 msgid "revoked" @@ -1549,6 +1929,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-editor.php:112 #, fuzzy, php-format +msgctxt "1: File name, 2: Theme/plugin name" msgid "\"%1$s\" in \"%2$s\" updated" msgstr "\"%s\" %s mis à jour" @@ -1556,34 +1937,95 @@ msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-editor.php:157 #, fuzzy msgid "Edit File" -msgstr "Modifier le profil" +msgstr "Modifier" #: ../connectors/class-wp-stream-connector-editor.php:148 #, fuzzy msgid "Theme Details" -msgstr "Thème" +msgstr "Le thème \"%s\" a été activé" #: ../connectors/class-wp-stream-connector-gravityforms.php:88 +msgctxt "gravityforms" msgid "Gravity Forms" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:98 +#, fuzzy +msgctxt "gravityforms" +msgid "Created" +msgstr "Créé" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:99 +#, fuzzy +msgctxt "gravityforms" +msgid "Updated" +msgstr "Mis à jour" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:100 +#, fuzzy +msgctxt "gravityforms" +msgid "Exported" +msgstr "Classer" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:101 +#, fuzzy +msgctxt "gravityforms" +msgid "Imported" +msgstr "Classer" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:102 +#, fuzzy +msgctxt "gravityforms" +msgid "Added" +msgstr "Ajouter" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:103 +#, fuzzy +msgctxt "gravityforms" +msgid "Deleted" +msgstr "Supprimé" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:104 +#, fuzzy +msgctxt "gravityforms" +msgid "Trashed" +msgstr "Mis à la corbeil" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:105 +msgctxt "gravityforms" +msgid "Restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:106 +#, fuzzy +msgctxt "gravityforms" msgid "Duplicated" -msgstr "" +msgstr "Mis à jour" #: ../connectors/class-wp-stream-connector-gravityforms.php:117 +#, fuzzy +msgctxt "gravityforms" msgid "Forms" -msgstr "" +msgstr "Mise en forme" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#, fuzzy +msgctxt "gravityforms" +msgid "Settings" +msgstr "Paramètres" #: ../connectors/class-wp-stream-connector-gravityforms.php:119 +msgctxt "gravityforms" msgid "Import/Export" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:120 +msgctxt "gravityforms" msgid "Entries" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:121 +msgctxt "gravityforms" msgid "Notes" msgstr "" @@ -1593,28 +2035,36 @@ msgid "Edit Settings" msgstr "Mis à jour %s des paramètres" #: ../connectors/class-wp-stream-connector-gravityforms.php:181 +msgctxt "gravityforms" msgid "Output CSS" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:184 +msgctxt "gravityforms" msgid "Output HTML5" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:187 +msgctxt "gravityforms" msgid "No-Conflict Mode" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:190 +msgctxt "gravityforms" msgid "Currency" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:193 +#, fuzzy +msgctxt "gravityforms" msgid "reCAPTCHA Public Key" -msgstr "" +msgstr "RSS privés" #: ../connectors/class-wp-stream-connector-gravityforms.php:196 +#, fuzzy +msgctxt "gravityforms" msgid "reCAPTCHA Private Key" -msgstr "" +msgstr "RSS privés" #: ../connectors/class-wp-stream-connector-gravityforms.php:214 #: ../connectors/class-wp-stream-connector-gravityforms.php:430 @@ -1657,15 +2107,31 @@ msgstr "Le mot de passe de %s a été remis à zéro" msgid "\"%1$s\" notification %2$s from \"%3$s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:422 +#: ../connectors/class-wp-stream-connector-installer.php:45 +msgid "Activated" +msgstr "Activée" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:423 +#: ../connectors/class-wp-stream-connector-installer.php:46 +#: ../connectors/class-wp-stream-connector-widgets.php:60 +msgid "Deactivated" +msgstr "Désactivé" + #: ../connectors/class-wp-stream-connector-gravityforms.php:496 #, php-format msgid "Gravity Forms license key %s" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:497 +#, fuzzy +msgid "deleted" +msgstr "Supprimé" + #: ../connectors/class-wp-stream-connector-gravityforms.php:510 #, fuzzy, php-format msgid "\"%s\" form exported" -msgstr "Le thème \"%s\" a été supprimé" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-gravityforms.php:525 msgid "Import process started" @@ -1679,7 +2145,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:558 #, fuzzy, php-format msgid "\"%s\" form deleted" -msgstr "Le thème \"%s\" a été supprimé" +msgstr "\"%s\" Supprimé" #: ../connectors/class-wp-stream-connector-gravityforms.php:574 #, fuzzy, php-format @@ -1701,11 +2167,19 @@ msgstr "" msgid "Note #%1$d deleted from lead #%2$d on \"%3$s\" form" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:650 +msgid "marked as spam" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:651 #, fuzzy msgid "trashed" msgstr "Mis à la corbeil" +#: ../connectors/class-wp-stream-connector-gravityforms.php:652 +msgid "restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:661 #: ../connectors/class-wp-stream-connector-gravityforms.php:708 #, fuzzy, php-format @@ -1743,24 +2217,32 @@ msgid "Installed" msgstr "Installé" #: ../connectors/class-wp-stream-connector-installer.php:61 +#, fuzzy msgid "WordPress" -msgstr "" +msgstr "Adresse WordPress (URL)" #: ../connectors/class-wp-stream-connector-installer.php:80 msgid "About" msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:82 +#, fuzzy msgid "View Release Notes" -msgstr "" +msgstr "Vue" #: ../connectors/class-wp-stream-connector-installer.php:149 #, fuzzy, php-format +msgctxt "" +"Plugin/theme installation. 1: Type (plugin/theme), 2: Plugin/theme name, 3: " +"Plugin/theme version" msgid "Installed %1$s: %2$s %3$s" msgstr "%s: %s %s Installé" #: ../connectors/class-wp-stream-connector-installer.php:157 #, fuzzy, php-format +msgctxt "" +"Plugin/theme update. 1: Type (plugin/theme), 2: Plugin/theme name, 3: Plugin/" +"theme version" msgid "Updated %1$s: %2$s %3$s" msgstr "%s: %s %s Mis à jour" @@ -1772,11 +2254,13 @@ msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:225 #, fuzzy, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin activated %2$s" msgstr "Le plugin \"%s\" a été activé %s" #: ../connectors/class-wp-stream-connector-installer.php:243 #, fuzzy, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin deactivated %2$s" msgstr "Le plugin \"%s\" a été désactivé %s" @@ -1796,136 +2280,199 @@ msgid "\"%s\" plugin deleted" msgstr "Le plugin \"%s\" a été supprimé" #: ../connectors/class-wp-stream-connector-installer.php:352 -#, php-format +#, fuzzy, php-format msgid "WordPress auto-updated to %s" -msgstr "" +msgstr "\"%s\" mis à jour" #: ../connectors/class-wp-stream-connector-installer.php:354 -#, php-format +#, fuzzy, php-format msgid "WordPress updated to %s" -msgstr "" +msgstr "\"%s\" mis à jour" #: ../connectors/class-wp-stream-connector-jetpack.php:69 +#, fuzzy +msgctxt "jetpack" msgid "Jetpack" -msgstr "" +msgstr "Titre du site" -#: ../connectors/class-wp-stream-connector-jetpack.php:80 +#: ../connectors/class-wp-stream-connector-jetpack.php:79 +#, fuzzy +msgctxt "jetpack" +msgid "Activated" +msgstr "Activée" + +#: ../connectors/class-wp-stream-connector-jetpack.php:80 #, fuzzy +msgctxt "jetpack" msgid "Dectivated" msgstr "Désactivé" #: ../connectors/class-wp-stream-connector-jetpack.php:81 #, fuzzy +msgctxt "jetpack" msgid "Connected" msgstr "Connecteur" #: ../connectors/class-wp-stream-connector-jetpack.php:82 #, fuzzy +msgctxt "jetpack" msgid "Disconnected" msgstr "connecteurs" #: ../connectors/class-wp-stream-connector-jetpack.php:83 +msgctxt "jetpack" msgid "Link" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:84 +msgctxt "jetpack" msgid "Unlink" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:85 +#, fuzzy +msgctxt "jetpack" +msgid "Updated" +msgstr "Mis à jour" + +#: ../connectors/class-wp-stream-connector-jetpack.php:86 +#, fuzzy +msgctxt "jetpack" +msgid "Added" +msgstr "Ajouter" + #: ../connectors/class-wp-stream-connector-jetpack.php:87 -#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgctxt "jetpack" msgid "Removed" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:98 +#, fuzzy +msgctxt "jetpack" msgid "Modules" -msgstr "" +msgstr "Rechercher les registres" #: ../connectors/class-wp-stream-connector-jetpack.php:99 +#, fuzzy +msgctxt "jetpack" msgid "Blogs" -msgstr "" +msgstr "La page de blog affiche par défaut" #: ../connectors/class-wp-stream-connector-jetpack.php:100 -#: ../connectors/class-wp-stream-connector-users.php:43 -#: ../connectors/class-wp-stream-connector-users.php:70 +#, fuzzy +msgctxt "jetpack" msgid "Users" msgstr "Utilisateurs" +#: ../connectors/class-wp-stream-connector-jetpack.php:101 +#, fuzzy +msgctxt "jetpack" +msgid "Options" +msgstr "actions" + #: ../connectors/class-wp-stream-connector-jetpack.php:102 +msgctxt "jetpack" msgid "Sharing" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:103 +msgctxt "jetpack" msgid "Publicize" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:104 #, fuzzy +msgctxt "jetpack" msgid "Google+ Profile" -msgstr "Visualiser le profil" +msgstr "Le profil de %s a été mis à jour" #: ../connectors/class-wp-stream-connector-jetpack.php:105 -#: ../connectors/class-wp-stream-connector-jetpack.php:203 +#, fuzzy +msgctxt "jetpack" msgid "WordPress.com Stats" -msgstr "" +msgstr "Adresse WordPress (URL)" #: ../connectors/class-wp-stream-connector-jetpack.php:106 +msgctxt "jetpack" msgid "Carousel" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:107 +#, fuzzy +msgctxt "jetpack" msgid "Custom CSS" -msgstr "" +msgstr "Mis à jour" #: ../connectors/class-wp-stream-connector-jetpack.php:108 #, fuzzy +msgctxt "jetpack" msgid "Subscriptions" msgstr "actions" +#: ../connectors/class-wp-stream-connector-jetpack.php:109 +#, fuzzy +msgctxt "jetpack" +msgid "Comments" +msgstr "Commentaire mis en liste noir" + #: ../connectors/class-wp-stream-connector-jetpack.php:110 +msgctxt "jetpack" msgid "Infinite Scroll" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:111 +msgctxt "jetpack" msgid "SSO" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:112 +msgctxt "jetpack" msgid "Likes" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:113 +msgctxt "jetpack" msgid "Mobile" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:114 +#, fuzzy +msgctxt "jetpack" msgid "Monitor" -msgstr "" +msgstr "Modifier" #: ../connectors/class-wp-stream-connector-jetpack.php:115 +#, fuzzy +msgctxt "jetpack" msgid "Post by Email" -msgstr "" +msgstr "Catégorie par défaut des articles" #: ../connectors/class-wp-stream-connector-jetpack.php:116 +#, fuzzy +msgctxt "jetpack" msgid "Related Posts" -msgstr "" +msgstr "Articles" #: ../connectors/class-wp-stream-connector-jetpack.php:117 #, fuzzy +msgctxt "jetpack" msgid "Site Verification" -msgstr "Paramètres Stream" +msgstr "Titre du site" #: ../connectors/class-wp-stream-connector-jetpack.php:118 -#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgctxt "jetpack" msgid "Tiled Galleries" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:119 +#, fuzzy +msgctxt "jetpack" msgid "VideoPress" -msgstr "" +msgstr "Adresse IP" #: ../connectors/class-wp-stream-connector-jetpack.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:222 +#: ../extensions/reports/class-wp-stream-reports.php:220 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:174 msgid "Configure" msgstr "" @@ -1935,6 +2482,12 @@ msgstr "" msgid "Deactivate" msgstr "Désactivé" +#: ../connectors/class-wp-stream-connector-jetpack.php:159 +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 +#, fuzzy +msgid "Activate" +msgstr "Activée" + #: ../connectors/class-wp-stream-connector-jetpack.php:174 msgid "Configure module" msgstr "" @@ -1944,7 +2497,12 @@ msgid "Sharing options" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:198 +#, fuzzy msgid "Twitter site tag" +msgstr "Structure des Mots clés" + +#: ../connectors/class-wp-stream-connector-jetpack.php:203 +msgid "WordPress.com Stats" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:208 @@ -2015,6 +2573,10 @@ msgstr "" msgid "Pinterest Site Verification Token" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgid "Tiled Galleries" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:322 #, php-format msgid "%1$s module %2$s" @@ -2034,17 +2596,21 @@ msgid "linked" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:343 +#, fuzzy msgid "from" msgstr "" +"Les utilisateurs des rôles sélectionnés ci-dessus auront la permission de " +"voir les données enregisté par Stream. Cependant, seuls les administrateurs " +"du site peuvent accéder aux paramètres Stream." #: ../connectors/class-wp-stream-connector-jetpack.php:343 msgid "to" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:359 -#, php-format +#, fuzzy, php-format msgid "Site %s Jetpack" -msgstr "" +msgstr "Titre du site" #: ../connectors/class-wp-stream-connector-jetpack.php:360 #: ../connectors/class-wp-stream-connector-jetpack.php:370 @@ -2064,13 +2630,14 @@ msgid "\"%1$s\" blog %2$s Jetpack" msgstr "\"%s\" %s mis à la corbeil" #: ../connectors/class-wp-stream-connector-jetpack.php:395 +#, fuzzy msgid "Sharing services updated" -msgstr "" +msgstr "Mis à jour des services" #: ../connectors/class-wp-stream-connector-jetpack.php:423 -#, php-format +#, fuzzy, php-format msgid "Monitor notifications %s" -msgstr "" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-jetpack.php:451 #: ../connectors/class-wp-stream-connector-jetpack.php:542 @@ -2097,7 +2664,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:540 #, fuzzy, php-format msgid "G+ profile display %s" -msgstr "Page d'accueil du site" +msgstr "Le profil de %s a été mis à jour" #: ../connectors/class-wp-stream-connector-jetpack.php:555 #, fuzzy, php-format @@ -2120,8 +2687,9 @@ msgid "Sharing CSS/JS %s" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:610 +#, fuzzy msgid "Custom CSS updated" -msgstr "" +msgstr "Mis à jour" #: ../connectors/class-wp-stream-connector-jetpack.php:630 #, fuzzy, php-format @@ -2138,8 +2706,9 @@ msgid "removed" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:643 +#, fuzzy msgid "Video Library Access" -msgstr "" +msgstr "Accès refusé" #: ../connectors/class-wp-stream-connector-jetpack.php:644 msgid "Allow users to upload videos" @@ -2179,8 +2748,9 @@ msgid "Unassigned" msgstr "Désassigné" #: ../connectors/class-wp-stream-connector-media.php:59 +#, fuzzy msgid "Image" -msgstr "" +msgstr "Image \"%s\" mis à jour" #: ../connectors/class-wp-stream-connector-media.php:60 msgid "Audio" @@ -2221,6 +2791,7 @@ msgstr "Média édité" #: ../connectors/class-wp-stream-connector-media.php:126 #, fuzzy, php-format +msgctxt "1: Attachment title, 2: Parent post title" msgid "Attached \"%1$s\" to \"%2$s\"" msgstr "\"%s\" to \"%s\" a été attaché" @@ -2235,7 +2806,6 @@ msgid "Updated \"%s\"" msgstr "\"%s\" mis à jour" #: ../connectors/class-wp-stream-connector-media.php:179 -#: ../connectors/class-wp-stream-connector-menus.php:141 #, php-format msgid "Deleted \"%s\"" msgstr "\"%s\" Supprimé" @@ -2259,17 +2829,26 @@ msgid "Created new menu \"%s\"" msgstr "Menu \"%s\" a été créé" #: ../connectors/class-wp-stream-connector-menus.php:123 -#, php-format +#, fuzzy, php-format +msgctxt "Menu name" msgid "Updated menu \"%s\"" -msgstr "Menu \"%s\" mis à jour" +msgstr "Menu \"%s\" a été créé" + +#: ../connectors/class-wp-stream-connector-menus.php:141 +#, fuzzy, php-format +msgctxt "Menu name" +msgid "Deleted \"%s\"" +msgstr "\"%s\" Supprimé" #: ../connectors/class-wp-stream-connector-menus.php:181 #, fuzzy, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been unassigned from \"%2$s\"" msgstr "\"%s\" a été désassigné de \"%s\"" #: ../connectors/class-wp-stream-connector-menus.php:189 #, fuzzy, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been assigned to \"%2$s\"" msgstr "\"%s\" a été assigné à \"%s\"" @@ -2277,52 +2856,81 @@ msgstr "\"%s\" a été assigné à \"%s\"" msgid "Posts" msgstr "Articles" +#: ../connectors/class-wp-stream-connector-posts.php:100 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:159 +#, fuzzy, php-format +msgctxt "Post type singular name" +msgid "Restore %s" +msgstr "%s mis à jour" + +#: ../connectors/class-wp-stream-connector-posts.php:101 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:160 +#, fuzzy, php-format +msgctxt "Post type singular name" +msgid "Delete %s Permenantly" +msgstr "%s mis à jour" + +#: ../connectors/class-wp-stream-connector-posts.php:103 +#: ../connectors/class-wp-stream-connector-woocommerce.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:162 +#, fuzzy, php-format +msgctxt "Post type singular name" +msgid "Edit %s" +msgstr "%s mis à jour" + +#: ../connectors/class-wp-stream-connector-posts.php:110 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 +#, fuzzy +msgid "Revision" +msgstr "Révisé" + #: ../connectors/class-wp-stream-connector-posts.php:147 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s drafted" msgstr "\"%s\" %s brouillon" #: ../connectors/class-wp-stream-connector-posts.php:154 #: ../connectors/class-wp-stream-connector-posts.php:161 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s published" msgstr "\"%s\" %s publié" #: ../connectors/class-wp-stream-connector-posts.php:167 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s unpublished" msgstr "\"%s\" %s dépublié" #: ../connectors/class-wp-stream-connector-posts.php:173 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s trashed" msgstr "\"%s\" %s mis à la corbeil" #: ../connectors/class-wp-stream-connector-posts.php:180 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s restored from trash" msgstr "\"%s\" %s supprimé de la corbeil" #: ../connectors/class-wp-stream-connector-posts.php:187 -#: ../connectors/class-wp-stream-connector-taxonomies.php:200 -#: ../connectors/class-wp-stream-connector-woocommerce.php:611 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s updated" msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-posts.php:254 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s deleted from trash" msgstr "\"%s\" %s supprimé de la corbeil" #: ../connectors/class-wp-stream-connector-posts.php:291 #, fuzzy msgid "Post" -msgstr "Articles" - -#: ../connectors/class-wp-stream-connector-settings.php:122 -msgid "General" -msgstr "Général" +msgstr "Catégorie par défaut des articles" #: ../connectors/class-wp-stream-connector-settings.php:123 msgid "Writing" @@ -2332,8 +2940,11 @@ msgstr "Écriture" msgid "Reading" msgstr "Lecture" +#: ../connectors/class-wp-stream-connector-settings.php:125 +msgid "Discussion" +msgstr "" + #: ../connectors/class-wp-stream-connector-settings.php:127 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:97 msgid "Permalinks" msgstr "Permaliens" @@ -2352,361 +2963,392 @@ msgstr "" #: ../connectors/class-wp-stream-connector-settings.php:138 #, fuzzy msgid "Stream Network" -msgstr "Registre Stream" +msgstr "Flux Stream" #: ../connectors/class-wp-stream-connector-settings.php:139 #, fuzzy msgid "Stream Defaults" -msgstr "Paramètres Stream" +msgstr "Flux Stream" -#: ../connectors/class-wp-stream-connector-settings.php:208 +#: ../connectors/class-wp-stream-connector-settings.php:233 msgid "Site Title" msgstr "Titre du site" -#: ../connectors/class-wp-stream-connector-settings.php:209 +#: ../connectors/class-wp-stream-connector-settings.php:234 msgid "Tagline" msgstr "Slogan" -#: ../connectors/class-wp-stream-connector-settings.php:210 +#: ../connectors/class-wp-stream-connector-settings.php:235 msgid "WordPress Address (URL)" msgstr "Adresse WordPress (URL)" -#: ../connectors/class-wp-stream-connector-settings.php:211 +#: ../connectors/class-wp-stream-connector-settings.php:236 msgid "Site Address (URL)" msgstr "Adresse du site (URL)" -#: ../connectors/class-wp-stream-connector-settings.php:212 +#: ../connectors/class-wp-stream-connector-settings.php:237 msgid "E-mail Address" msgstr "Adresse courriel" -#: ../connectors/class-wp-stream-connector-settings.php:213 +#: ../connectors/class-wp-stream-connector-settings.php:238 msgid "Membership" msgstr "Abonnement" -#: ../connectors/class-wp-stream-connector-settings.php:214 +#: ../connectors/class-wp-stream-connector-settings.php:239 msgid "New User Default Role" msgstr "Nouveau rôle par défaut des utilisateurs" -#: ../connectors/class-wp-stream-connector-settings.php:215 +#: ../connectors/class-wp-stream-connector-settings.php:240 msgid "Timezone" msgstr "Fuseau horaire" -#: ../connectors/class-wp-stream-connector-settings.php:216 +#: ../connectors/class-wp-stream-connector-settings.php:241 msgid "Date Format" msgstr "Format de la date" -#: ../connectors/class-wp-stream-connector-settings.php:217 +#: ../connectors/class-wp-stream-connector-settings.php:242 msgid "Time Format" msgstr "Format de l'heure" -#: ../connectors/class-wp-stream-connector-settings.php:218 +#: ../connectors/class-wp-stream-connector-settings.php:243 msgid "Week Starts On" msgstr "La semaine commence le" -#: ../connectors/class-wp-stream-connector-settings.php:220 -#: ../connectors/class-wp-stream-connector-settings.php:221 +#: ../connectors/class-wp-stream-connector-settings.php:245 +#: ../connectors/class-wp-stream-connector-settings.php:246 msgid "Formatting" msgstr "Mise en forme" -#: ../connectors/class-wp-stream-connector-settings.php:222 +#: ../connectors/class-wp-stream-connector-settings.php:247 msgid "Default Post Category" msgstr "Catégorie par défaut des articles" -#: ../connectors/class-wp-stream-connector-settings.php:223 +#: ../connectors/class-wp-stream-connector-settings.php:248 msgid "Default Post Format" msgstr "Type d'article par défaut" -#: ../connectors/class-wp-stream-connector-settings.php:224 +#: ../connectors/class-wp-stream-connector-settings.php:249 #, fuzzy msgid "Mail Server" -msgstr "Nom du serveur de courriel" +msgstr "Adresse courriel" -#: ../connectors/class-wp-stream-connector-settings.php:225 +#: ../connectors/class-wp-stream-connector-settings.php:250 #, fuzzy msgid "Login Name" msgstr "Connexion" -#: ../connectors/class-wp-stream-connector-settings.php:226 +#: ../connectors/class-wp-stream-connector-settings.php:251 #, fuzzy msgid "Password" msgstr "Mot de passe remis à zéro" -#: ../connectors/class-wp-stream-connector-settings.php:227 +#: ../connectors/class-wp-stream-connector-settings.php:252 msgid "Default Mail Category" msgstr "Catégorie du courriel par défaut" -#: ../connectors/class-wp-stream-connector-settings.php:228 +#: ../connectors/class-wp-stream-connector-settings.php:253 msgid "Update Services" msgstr "Mis à jour des services" -#: ../connectors/class-wp-stream-connector-settings.php:230 -#: ../connectors/class-wp-stream-connector-settings.php:231 -#: ../connectors/class-wp-stream-connector-settings.php:232 +#: ../connectors/class-wp-stream-connector-settings.php:255 +#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:257 msgid "Front page displays" msgstr "Page d'accueil du site" -#: ../connectors/class-wp-stream-connector-settings.php:233 +#: ../connectors/class-wp-stream-connector-settings.php:258 msgid "Blog pages show at most" msgstr "La page de blog affiche par défaut" -#: ../connectors/class-wp-stream-connector-settings.php:234 +#: ../connectors/class-wp-stream-connector-settings.php:259 msgid "Syndication feeds show the most recent" msgstr "Les flux RSS affiche par défaut" -#: ../connectors/class-wp-stream-connector-settings.php:235 +#: ../connectors/class-wp-stream-connector-settings.php:260 msgid "For each article in a feed, show" msgstr "Pour tous les articles dans un flux, afficher" -#: ../connectors/class-wp-stream-connector-settings.php:236 +#: ../connectors/class-wp-stream-connector-settings.php:261 msgid "Search Engine Visibility" msgstr "Affichage dans les moteurs de recherche" -#: ../connectors/class-wp-stream-connector-settings.php:238 -#: ../connectors/class-wp-stream-connector-settings.php:239 -#: ../connectors/class-wp-stream-connector-settings.php:240 +#: ../connectors/class-wp-stream-connector-settings.php:263 +#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:265 msgid "Default article settings" msgstr "Paramètres par défaut des articles" -#: ../connectors/class-wp-stream-connector-settings.php:241 -#: ../connectors/class-wp-stream-connector-settings.php:242 -#: ../connectors/class-wp-stream-connector-settings.php:243 -#: ../connectors/class-wp-stream-connector-settings.php:244 -#: ../connectors/class-wp-stream-connector-settings.php:245 -#: ../connectors/class-wp-stream-connector-settings.php:246 -#: ../connectors/class-wp-stream-connector-settings.php:247 -#: ../connectors/class-wp-stream-connector-settings.php:248 -#: ../connectors/class-wp-stream-connector-settings.php:249 -#: ../connectors/class-wp-stream-connector-settings.php:250 +#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:267 +#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:270 +#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:274 +#: ../connectors/class-wp-stream-connector-settings.php:275 msgid "Other comment settings" msgstr "Autres paramètres des commentaires" -#: ../connectors/class-wp-stream-connector-settings.php:251 -#: ../connectors/class-wp-stream-connector-settings.php:252 +#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:277 msgid "E-mail me whenever" msgstr "Envoyé moi un courriel dès que" -#: ../connectors/class-wp-stream-connector-settings.php:253 -#: ../connectors/class-wp-stream-connector-settings.php:254 +#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:279 msgid "Before a comment appears" msgstr "Un commentaire apparaît" -#: ../connectors/class-wp-stream-connector-settings.php:255 -#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:281 msgid "Comment Moderation" msgstr "Commentaire en attente de modération" -#: ../connectors/class-wp-stream-connector-settings.php:257 +#: ../connectors/class-wp-stream-connector-settings.php:282 msgid "Comment Blacklist" msgstr "Commentaire mis en liste noir" -#: ../connectors/class-wp-stream-connector-settings.php:258 +#: ../connectors/class-wp-stream-connector-settings.php:283 +#, fuzzy msgid "Show Avatars" -msgstr "" +msgstr "La page de blog affiche par défaut" -#: ../connectors/class-wp-stream-connector-settings.php:259 +#: ../connectors/class-wp-stream-connector-settings.php:284 #, fuzzy msgid "Maximum Rating" msgstr "Photo ayant une évaluation maximale" -#: ../connectors/class-wp-stream-connector-settings.php:260 +#: ../connectors/class-wp-stream-connector-settings.php:285 msgid "Default Avatar" msgstr "Photo par défaut" -#: ../connectors/class-wp-stream-connector-settings.php:262 -#: ../connectors/class-wp-stream-connector-settings.php:263 -#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:289 #, fuzzy msgid "Thumbnail size" msgstr "Taille des vignettes par défaut" -#: ../connectors/class-wp-stream-connector-settings.php:265 -#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:291 #, fuzzy msgid "Medium size" msgstr "Image de taille médium" -#: ../connectors/class-wp-stream-connector-settings.php:267 -#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:293 #, fuzzy msgid "Large size" msgstr "Image de taille large" -#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:294 #, fuzzy msgid "Uploading Files" msgstr "Téléversement des fichiers de l'organisation" -#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:296 #, fuzzy msgid "Permalink Settings" -msgstr "Permaliens" +msgstr "Paramètres" -#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:297 msgid "Category base" msgstr "Structure des Catégories" -#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:298 msgid "Tag base" msgstr "Structure des Mots clés" -#: ../connectors/class-wp-stream-connector-settings.php:275 +#: ../connectors/class-wp-stream-connector-settings.php:300 +#, fuzzy msgid "Registration notification" -msgstr "" +msgstr "Nouvel utilisateur enregistré" -#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:301 #, fuzzy msgid "Allow new registrations" -msgstr "Nouvel utilisateur enregistré" +msgstr "Menu \"%s\" a été créé" -#: ../connectors/class-wp-stream-connector-settings.php:277 +#: ../connectors/class-wp-stream-connector-settings.php:302 +#, fuzzy msgid "Add New Users" -msgstr "" +msgstr "Utilisateurs" -#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:303 msgid "Enable administration menus" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:279 +#: ../connectors/class-wp-stream-connector-settings.php:304 msgid "Site upload space check" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:305 +#, fuzzy msgid "Site upload space" -msgstr "" +msgstr "Titre du site" -#: ../connectors/class-wp-stream-connector-settings.php:281 +#: ../connectors/class-wp-stream-connector-settings.php:306 msgid "Upload file types" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:282 +#: ../connectors/class-wp-stream-connector-settings.php:307 #, fuzzy msgid "Network Title" msgstr "Titre du site" -#: ../connectors/class-wp-stream-connector-settings.php:283 +#: ../connectors/class-wp-stream-connector-settings.php:308 +#, fuzzy msgid "First Post" -msgstr "" +msgstr "Catégorie par défaut des articles" -#: ../connectors/class-wp-stream-connector-settings.php:284 +#: ../connectors/class-wp-stream-connector-settings.php:309 +#, fuzzy msgid "First Page" -msgstr "" +msgstr "Registres par page" -#: ../connectors/class-wp-stream-connector-settings.php:285 +#: ../connectors/class-wp-stream-connector-settings.php:310 +#, fuzzy msgid "First Comment" -msgstr "" +msgstr "Commentaire en attente de modération" -#: ../connectors/class-wp-stream-connector-settings.php:286 +#: ../connectors/class-wp-stream-connector-settings.php:311 +#, fuzzy msgid "First Comment URL" -msgstr "" +msgstr "Adresse WordPress (URL)" -#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:312 +#, fuzzy msgid "First Comment Author" -msgstr "" +msgstr "Auteur" -#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:313 msgid "Welcome Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:289 +#: ../connectors/class-wp-stream-connector-settings.php:314 +#, fuzzy msgid "Welcome User Email" -msgstr "" +msgstr "Nouveau rôle par défaut des utilisateurs" -#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:315 msgid "Max upload file size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:291 +#: ../connectors/class-wp-stream-connector-settings.php:316 #, fuzzy msgid "Terms Enabled" msgstr "Actif" -#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:317 msgid "Banned Names" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:293 +#: ../connectors/class-wp-stream-connector-settings.php:318 msgid "Limited Email Registrations" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:294 +#: ../connectors/class-wp-stream-connector-settings.php:319 msgid "Banned Email Domains" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:295 +#: ../connectors/class-wp-stream-connector-settings.php:320 msgid "Network Language" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:296 +#: ../connectors/class-wp-stream-connector-settings.php:321 msgid "Network Admin Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:297 +#: ../connectors/class-wp-stream-connector-settings.php:322 +#, fuzzy msgid "User Count" -msgstr "" +msgstr "Nouveau rôle par défaut des utilisateurs" -#: ../connectors/class-wp-stream-connector-settings.php:299 +#: ../connectors/class-wp-stream-connector-settings.php:324 #, fuzzy msgid "Stream Database Version" msgstr "Remise à zéro de la base de donnée" -#: ../connectors/class-wp-stream-connector-settings.php:300 +#: ../connectors/class-wp-stream-connector-settings.php:325 #, fuzzy -msgid "Stream Total Sites" -msgstr "Paramètres Stream" +msgid "Stream Connected Sites" +msgstr "Flux Stream" -#: ../connectors/class-wp-stream-connector-settings.php:329 +#: ../connectors/class-wp-stream-connector-settings.php:354 +#, fuzzy msgid "Background Image" -msgstr "" +msgstr "Image \"%s\" mis à jour" -#: ../connectors/class-wp-stream-connector-settings.php:330 +#: ../connectors/class-wp-stream-connector-settings.php:355 msgid "Background Position" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:331 +#: ../connectors/class-wp-stream-connector-settings.php:356 msgid "Background Repeat" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:332 +#: ../connectors/class-wp-stream-connector-settings.php:357 msgid "Background Attachment" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:333 +#: ../connectors/class-wp-stream-connector-settings.php:358 msgid "Background Color" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:335 +#: ../connectors/class-wp-stream-connector-settings.php:360 +#, fuzzy msgid "Header Image" -msgstr "" +msgstr "Image \"%s\" mis à jour" -#: ../connectors/class-wp-stream-connector-settings.php:336 +#: ../connectors/class-wp-stream-connector-settings.php:361 msgid "Text Color" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:471 +#: ../connectors/class-wp-stream-connector-settings.php:496 #, php-format msgid "Edit %s Settings" msgstr "Mis à jour %s des paramètres" -#: ../connectors/class-wp-stream-connector-settings.php:604 +#: ../connectors/class-wp-stream-connector-settings.php:624 #, php-format msgid "\"%s\" setting was updated" msgstr "Le paramètre \"%s\" a été mis à jour" #: ../connectors/class-wp-stream-connector-taxonomies.php:44 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:472 msgid "Taxonomies" msgstr "" +#: ../connectors/class-wp-stream-connector-taxonomies.php:93 +#, fuzzy, php-format +msgctxt "Term singular name" +msgid "Edit %s" +msgstr "%s mis à jour" + #: ../connectors/class-wp-stream-connector-taxonomies.php:136 #, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s created" -msgstr "\"%s\" %s créé" +msgstr "Menu \"%s\" a été créé" #: ../connectors/class-wp-stream-connector-taxonomies.php:163 #, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s deleted" msgstr "\"%s\" %s supprimé" +#: ../connectors/class-wp-stream-connector-taxonomies.php:200 +#, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" +msgid "\"%1$s\" %2$s updated" +msgstr "\"%s\" %s mis à jour" + +#: ../connectors/class-wp-stream-connector-users.php:43 +#: ../connectors/class-wp-stream-connector-users.php:70 +msgid "Users" +msgstr "Utilisateurs" + #: ../connectors/class-wp-stream-connector-users.php:56 msgid "Password Reset" msgstr "Mot de passe remis à zéro" @@ -2714,15 +3356,16 @@ msgstr "Mot de passe remis à zéro" #: ../connectors/class-wp-stream-connector-users.php:57 #, fuzzy msgid "Lost Password" -msgstr "Mot de passe oublié" +msgstr "Mot de passe remis à zéro" #: ../connectors/class-wp-stream-connector-users.php:58 msgid "Log In" msgstr "" #: ../connectors/class-wp-stream-connector-users.php:59 +#, fuzzy msgid "Log Out" -msgstr "" +msgstr "L'utilisateur %s s'est déconnecté" #: ../connectors/class-wp-stream-connector-users.php:71 #, fuzzy @@ -2737,7 +3380,7 @@ msgstr "Modifier le profil" #: ../connectors/class-wp-stream-connector-users.php:89 #, fuzzy msgid "Edit User" -msgstr "%s mis à jour" +msgstr "Modifier" #: ../connectors/class-wp-stream-connector-users.php:136 msgid "New user registration" @@ -2745,6 +3388,7 @@ msgstr "Nouvel utilisateur enregistré" #: ../connectors/class-wp-stream-connector-users.php:140 #, fuzzy, php-format +msgctxt "1: User display name, 2: User role" msgid "New user account created for %1$s (%2$s)" msgstr "Un nouveau compte utilisateur a été créé pour %s (%s)" @@ -2755,6 +3399,7 @@ msgstr "Le profil de %s a été mis à jour" #: ../connectors/class-wp-stream-connector-users.php:191 #, fuzzy, php-format +msgctxt "1: User display name, 2: Old role, 3: New role" msgid "%1$s's role was changed from %2$s to %3$s" msgstr "Le rôle de %s a été changé de %s à %s" @@ -2780,6 +3425,7 @@ msgstr "L'utilisateur %s s'est déconnecté" #: ../connectors/class-wp-stream-connector-users.php:314 #, fuzzy, php-format +msgctxt "1: User display name, 2: User roles" msgid "%1$s's account was deleted (%2$s)" msgstr "Le compte de %s a été supprimé (%s)" @@ -2792,6 +3438,10 @@ msgstr "Le compte utilisateur #%d à été supprimé" msgid "Widgets" msgstr "" +#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgid "Removed" +msgstr "" + #: ../connectors/class-wp-stream-connector-widgets.php:57 msgid "Moved" msgstr "" @@ -2818,175 +3468,235 @@ msgid "Edit Widget Area" msgstr "Modifier la zone de widget" #: ../connectors/class-wp-stream-connector-widgets.php:196 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" from \"%3$s\" deactivated" -msgstr "" +msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:199 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget from \"%3$s\" deactivated" msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:202 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" from \"%3$s\" deactivated" -msgstr "" +msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:205 -#, php-format +#, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget from \"%3$s\" deactivated" -msgstr "" +msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:245 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" reactivated" msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:248 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget reactivated" msgstr "L'utilisateur \"%s\" a été désactivé de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:251 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" reactivated" -msgstr "" +msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:254 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget reactivated" msgstr "Le thème \"%s\" a été activé" #: ../connectors/class-wp-stream-connector-widgets.php:301 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" removed from \"%3$s\"" -msgstr "" +msgstr "L'utilisateur \"%s\" a été ajouté de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:304 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget removed from \"%3$s\"" msgstr "L'utilisateur \"%s\" a été supprimé de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:307 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" removed from \"%3$s\"" -msgstr "" +msgstr "Le rôle de %s a été changé de %s à %s" #: ../connectors/class-wp-stream-connector-widgets.php:310 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget removed from \"%3$s\"" msgstr "L'utilisateur \"%s\" a été supprimé de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:354 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" added to \"%3$s\"" msgstr "L'utilisateur \"%s\" a été ajouté de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:357 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget added to \"%3$s\"" msgstr "L'utilisateur \"%s\" a été ajouté de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:360 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" added to \"%3$s\"" -msgstr "" +msgstr "L'utilisateur \"%s\" a été ajouté de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:363 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget added to \"%3$s\"" msgstr "L'utilisateur \"%s\" a été ajouté de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:405 #, fuzzy, php-format +msgctxt "Sidebar name" msgid "Widgets reordered in \"%s\"" -msgstr "\"%s\" widgets ont été réordonné" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:460 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" msgstr "Le rôle de %s a été changé de %s à %s" #: ../connectors/class-wp-stream-connector-widgets.php:463 #, fuzzy, php-format +msgctxt "1: Name, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "L'utilisateur \"%s\" a été supprimé de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:466 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "Unknown widget type named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" -msgstr "" +msgstr "Le rôle de %s a été changé de %s à %s" #: ../connectors/class-wp-stream-connector-widgets.php:469 #, fuzzy, php-format +msgctxt "3: Widget ID, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%3$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "L'utilisateur \"%s\" a été supprimé de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:581 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" in \"%3$s\" updated" msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:584 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget in \"%3$s\" updated" msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:587 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" in \"%3$s\" updated" -msgstr "" +msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:590 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget in \"%3$s\" updated" msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:621 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" created" msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:624 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget created" -msgstr "\"%s\" %s créé" +msgstr "Menu \"%s\" a été créé" #: ../connectors/class-wp-stream-connector-widgets.php:627 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" created" -msgstr "" +msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:630 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget created" -msgstr "\"%s\" %s créé" +msgstr "Menu \"%s\" a été créé" #: ../connectors/class-wp-stream-connector-widgets.php:651 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" deleted" msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:654 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget deleted" -msgstr "\"%s\" %s supprimé" +msgstr "\"%s\" Supprimé" #: ../connectors/class-wp-stream-connector-widgets.php:657 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" deleted" -msgstr "" +msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-widgets.php:660 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget deleted" -msgstr "Le thème \"%s\" a été supprimé" +msgstr "\"%s\" Supprimé" #: ../connectors/class-wp-stream-connector-woocommerce.php:89 +#, fuzzy +msgctxt "woocommerce" msgid "WooCommerce" -msgstr "" +msgstr "%s mis à jour" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:99 +#, fuzzy +msgctxt "woocommerce" +msgid "Updated" +msgstr "Mis à jour" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:100 +#, fuzzy +msgctxt "woocommerce" +msgid "Created" +msgstr "Créé" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +#, fuzzy +msgctxt "woocommerce" +msgid "Trashed" +msgstr "Mis à la corbeil" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:102 +#, fuzzy +msgctxt "woocommerce" +msgid "Deleted" +msgstr "Supprimé" #: ../connectors/class-wp-stream-connector-woocommerce.php:122 +msgctxt "woocommerce" msgid "Attributes" msgstr "" @@ -3002,11 +3712,12 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:682 #, fuzzy msgid "setting" -msgstr "Paramètres" +msgstr "Le paramètre \"%s\" a été mis à jour" #: ../connectors/class-wp-stream-connector-woocommerce.php:149 +#, fuzzy msgid "Gateway Display Default" -msgstr "" +msgstr "Photo par défaut" #: ../connectors/class-wp-stream-connector-woocommerce.php:156 #, fuzzy @@ -3014,8 +3725,9 @@ msgid "Gateway Display Order" msgstr "Affichage de la photo de l'utilisateur" #: ../connectors/class-wp-stream-connector-woocommerce.php:163 +#, fuzzy msgid "Shipping Methods Default" -msgstr "" +msgstr "Photo par défaut" #: ../connectors/class-wp-stream-connector-woocommerce.php:170 msgid "Shipping Methods Order" @@ -3040,29 +3752,33 @@ msgid "Remove post types on uninstall" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:231 -#, php-format +#, fuzzy, php-format msgid "Edit WooCommerce %s" -msgstr "" +msgstr "%s mis à jour" #: ../connectors/class-wp-stream-connector-woocommerce.php:301 #, fuzzy, php-format +msgctxt "Order title" msgid "%s created" -msgstr "Créé" +msgstr "Menu \"%s\" a été créé" #: ../connectors/class-wp-stream-connector-woocommerce.php:308 #, fuzzy, php-format +msgctxt "Order title" msgid "%s trashed" msgstr "Mis à la corbeil" #: ../connectors/class-wp-stream-connector-woocommerce.php:315 #, fuzzy, php-format +msgctxt "Order title" msgid "%s restored from the trash" msgstr "\"%s\" %s supprimé de la corbeil" #: ../connectors/class-wp-stream-connector-woocommerce.php:322 #, fuzzy, php-format +msgctxt "Order title" msgid "%s updated" -msgstr "Mis à jour" +msgstr "\"%s\" mis à jour" #: ../connectors/class-wp-stream-connector-woocommerce.php:333 #: ../connectors/class-wp-stream-connector-woocommerce.php:372 @@ -3078,43 +3794,56 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:377 #, fuzzy, php-format +msgctxt "Order title" msgid "\"%s\" deleted from trash" -msgstr "\"%s\" %s supprimé de la corbeil" +msgstr "\"%s\" Supprimé" #: ../connectors/class-wp-stream-connector-woocommerce.php:411 #, fuzzy, php-format +msgctxt "1. Order title, 2. Old status, 3. New status" msgid "%1$s status changed from %2$s to %3$s" msgstr "Le rôle de %s a été changé de %s à %s" #: ../connectors/class-wp-stream-connector-woocommerce.php:447 -#, php-format +#, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute created" -msgstr "" +msgstr "Menu \"%s\" a été créé" #: ../connectors/class-wp-stream-connector-woocommerce.php:466 -#, php-format +#, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute updated" -msgstr "" +msgstr "\"%s\" mis à jour" #: ../connectors/class-wp-stream-connector-woocommerce.php:485 #, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute deleted" -msgstr "Le plugin \"%s\" a été supprimé" +msgstr "\"%s\" Supprimé" #: ../connectors/class-wp-stream-connector-woocommerce.php:506 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate created" msgstr "\"%s\" %s créé" #: ../connectors/class-wp-stream-connector-woocommerce.php:525 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate updated" msgstr "Le paramètre \"%s\" a été mis à jour" #: ../connectors/class-wp-stream-connector-woocommerce.php:555 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%s\" tax rate deleted" -msgstr "Le thème \"%s\" a été supprimé" +msgstr "\"%s\" Supprimé" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:611 +#, fuzzy, php-format +msgid "\"%1$s\" %2$s updated" +msgstr "\"%s\" %s mis à jour" #: ../connectors/class-wp-stream-connector-woocommerce.php:709 msgid "payment gateway" @@ -3132,558 +3861,1156 @@ msgstr "" msgid "Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:67 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:59 +#, fuzzy +msgctxt "wordpress-seo" msgid "WordPress SEO" -msgstr "" +msgstr "Adresse WordPress (URL)" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:69 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Created" +msgstr "Créé" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:70 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Updated" +msgstr "Mis à jour" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:71 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Added" +msgstr "Ajouter" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:72 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Deleted" +msgstr "Supprimé" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:73 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Exported" +msgstr "Classer" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:74 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Imported" +msgstr "Classer" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:85 +msgctxt "wordpress-seo" msgid "Dashboard" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:86 +msgctxt "wordpress-seo" msgid "Titles & Metas" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:87 +msgctxt "wordpress-seo" msgid "Social" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:88 +msgctxt "wordpress-seo" msgid "XML Sitemaps" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:98 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:89 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Permalinks" +msgstr "Permaliens" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:90 #, fuzzy +msgctxt "wordpress-seo" msgid "Internal Links" msgstr "Permaliens" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:99 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:91 +msgctxt "wordpress-seo" msgid "RSS" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:100 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:92 +msgctxt "wordpress-seo" msgid "Import & Export" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:101 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +#, fuzzy +msgctxt "wordpress-seo" msgid "Bulk Title Editor" -msgstr "" +msgstr "Titre du site" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:102 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +#, fuzzy +msgctxt "wordpress-seo" msgid "Bulk Description Editor" -msgstr "" +msgstr "actions" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:104 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 #, fuzzy +msgctxt "wordpress-seo" msgid "Files" msgstr "Modifier le profil" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:105 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 #, fuzzy +msgctxt "wordpress-seo" msgid "Content" msgstr "Contexte" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:214 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:205 msgid "HeadSpace2" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:215 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:206 msgid "All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:207 msgid "OLD All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:217 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:208 msgid "WooThemes SEO framework" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:218 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:209 msgid "Robots Meta (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:219 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:210 msgid "RSS Footer (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:211 msgid "Yoast Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:229 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 #, php-format msgid "Imported settings from %1$s%2$s" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:231 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:222 +#, fuzzy msgid ", and deleted old data" -msgstr "" +msgstr "Supprimé" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:251 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:242 #, fuzzy, php-format msgid "Exported settings%s" msgstr "Mis à jour %s des paramètres" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:252 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:243 msgid ", including taxonomy meta" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:264 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:255 #, php-format msgid "Tried importing settings from \"%s\"" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:279 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:270 msgid "Tried creating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:281 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:272 msgid "Tried updating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:283 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:274 msgid "Tried updating htaccess file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:334 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:325 #, fuzzy, php-format msgid "Updated \"%1$s\" of \"%2$s\" %3$s" msgstr "%s: %s %s Mis à jour" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:373 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:364 #, fuzzy, php-format msgid "%s settings updated" -msgstr "Le paramètre \"%s\" a été mis à jour" +msgstr "\"%s\" mis à jour" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:380 +msgctxt "wordpress-seo" msgid "Allow tracking of this WordPress install's anonymous data." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:381 +msgctxt "wordpress-seo" msgid "Disable the Advanced part of the WordPress SEO meta box" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:382 +#, fuzzy +msgctxt "wordpress-seo" msgid "Alexa Verification ID" -msgstr "" +msgstr "Paramètres Stream" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:383 +msgctxt "wordpress-seo" msgid "Bing Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:384 +msgctxt "wordpress-seo" msgid "Google Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:385 +msgctxt "wordpress-seo" msgid "Pinterest" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:386 +msgctxt "wordpress-seo" msgid "Yandex Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:398 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +#, fuzzy +msgctxt "wordpress-seo" msgid "Enable Breadcrumbs" -msgstr "" +msgstr "Titre du site" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:399 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +msgctxt "wordpress-seo" msgid "Separator between breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +msgctxt "wordpress-seo" msgid "Anchor text for the Homepage" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +msgctxt "wordpress-seo" msgid "Prefix for the breadcrumb path" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +msgctxt "wordpress-seo" msgid "Prefix for Archive breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +msgctxt "wordpress-seo" msgid "Prefix for Search Page breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +#, fuzzy +msgctxt "wordpress-seo" msgid "Breadcrumb for 404 Page" -msgstr "" +msgstr "Registres par page" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:396 +msgctxt "wordpress-seo" msgid "Remove Blog page from Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:397 +msgctxt "wordpress-seo" msgid "Bold the last page in the breadcrumb" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +msgctxt "wordpress-seo" msgid "Force rewrite titles" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +msgctxt "wordpress-seo" msgid "Noindex subpages of archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:411 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +msgctxt "wordpress-seo" msgid "Use meta keywords tag?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:412 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +msgctxt "wordpress-seo" msgid "Add noodp meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +msgctxt "wordpress-seo" msgid "Add noydir meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +msgctxt "wordpress-seo" msgid "Hide RSD Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +msgctxt "wordpress-seo" msgid "Hide WLW Manifest Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:416 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:407 +#, fuzzy +msgctxt "wordpress-seo" msgid "Hide Shortlink for posts" -msgstr "" +msgstr "Articles" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:417 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:408 +msgctxt "wordpress-seo" msgid "Hide RSS Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +#, fuzzy +msgctxt "wordpress-seo" msgid "Disable the author archives" -msgstr "" +msgstr "Auteur" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +#, fuzzy +msgctxt "wordpress-seo" msgid "Disable the date-based archives" -msgstr "" +msgstr "Auteur" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +msgctxt "wordpress-seo" msgid "Who should have access to the WordPress SEO settings" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +msgctxt "wordpress-seo" msgid "New blogs get the SEO settings from this blog" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +#, fuzzy +msgctxt "wordpress-seo" msgid "Blog ID" -msgstr "" +msgstr "La page de blog affiche par défaut" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +msgctxt "wordpress-seo" msgid "" "Strip the category base (usually /category/) from the category " "URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:428 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +msgctxt "wordpress-seo" msgid "Enforce a trailing slash on all category and tag URL's" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:429 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:420 +msgctxt "wordpress-seo" msgid "Remove stop words from slugs." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:421 +msgctxt "wordpress-seo" msgid "Redirect attachment URL's to parent post URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +msgctxt "wordpress-seo" msgid "Remove the ?replytocom variables." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +msgctxt "wordpress-seo" msgid "" "Redirect ugly URL's to clean permalinks. (Not recommended in many cases!)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +msgctxt "wordpress-seo" msgid "Force Transport" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:425 +msgctxt "wordpress-seo" msgid "Prevent cleaning out Google Site Search URL's." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:426 +msgctxt "wordpress-seo" msgid "" "Prevent cleaning out Google Analytics Campaign & Google AdWords Parameters." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +#, fuzzy +msgctxt "wordpress-seo" msgid "Other variables not to clean" -msgstr "" +msgstr "Autres paramètres des commentaires" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +msgctxt "wordpress-seo" msgid "Add Open Graph meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:440 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +#, fuzzy +msgctxt "wordpress-seo" msgid "Facebook Page URL" -msgstr "" +msgstr "Registres par page" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:441 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +#, fuzzy +msgctxt "wordpress-seo" msgid "Image URL" -msgstr "" +msgstr "Image \"%s\" mis à jour" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#, fuzzy +msgctxt "wordpress-seo" msgid "Description" -msgstr "" +msgstr "actions" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +msgctxt "wordpress-seo" msgid "Add Twitter card meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +#, fuzzy +msgctxt "wordpress-seo" msgid "Site Twitter Username" -msgstr "" +msgstr "Titre du site" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:437 +msgctxt "wordpress-seo" msgid "The default card type to use" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:447 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:438 +msgctxt "wordpress-seo" msgid "Add Google+ specific post meta data (excluding author metadata)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:448 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +#, fuzzy +msgctxt "wordpress-seo" msgid "Google Publisher Page" -msgstr "" +msgstr "Registres par page" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:451 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +msgctxt "wordpress-seo" msgid "Check this box to enable XML sitemap functionality." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:452 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +#, fuzzy +msgctxt "wordpress-seo" msgid "Disable author/user sitemap" -msgstr "" +msgstr "Auteur" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:453 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +msgctxt "wordpress-seo" msgid "Ping Yahoo!" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +msgctxt "wordpress-seo" msgid "Ping Ask.com" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +msgctxt "wordpress-seo" msgid "Max entries per sitemap page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:449 +msgctxt "wordpress-seo" msgid "Content to put before each post in the feed" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:450 +msgctxt "wordpress-seo" msgid "Content to put after each post" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +#, fuzzy +msgctxt "wordpress-seo" msgid "Title template" -msgstr "" +msgstr "Titre du site" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:464 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +msgctxt "wordpress-seo" msgid "Meta description template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:465 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:456 +#, fuzzy +msgctxt "wordpress-seo" msgid "Meta keywords template" -msgstr "" +msgstr "Titre du site" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:466 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:457 +msgctxt "wordpress-seo" msgid "Meta Robots" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:467 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 #, fuzzy +msgctxt "wordpress-seo" msgid "Authorship" msgstr "Auteur" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:468 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +msgctxt "wordpress-seo" msgid "Show date in snippet preview?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:469 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:460 +#, fuzzy +msgctxt "wordpress-seo" msgid "WordPress SEO Meta Box" -msgstr "" +msgstr "Adresse WordPress (URL)" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:470 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:461 +#, fuzzy +msgctxt "wordpress-seo" msgid "Breadcrumbs Title" -msgstr "" +msgstr "Titre du site" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:471 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:462 #, fuzzy +msgctxt "wordpress-seo" msgid "Post types" -msgstr "Articles" +msgstr "Catégorie par défaut des articles" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +msgctxt "wordpress-seo" +msgid "Taxonomies" +msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:147 +#: ../extensions/notifications/class-wp-stream-notifications.php:128 #, fuzzy msgid "Stream Notifications" -msgstr "Paramètres Stream" +msgstr "Flux Stream" -#: ../extensions/notifications/class-wp-stream-notifications.php:148 +#: ../extensions/notifications/class-wp-stream-notifications.php:129 msgid "Get notified instantly when important changes are made on your site." msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:150 +#: ../extensions/notifications/class-wp-stream-notifications.php:131 msgid "Create notification rules quickly and easily" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:132 msgid "Smart and powerful trigger matching" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:152 +#: ../extensions/notifications/class-wp-stream-notifications.php:133 msgid "Fully customized e-mail and SMS alerts" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:153 +#: ../extensions/notifications/class-wp-stream-notifications.php:134 msgid "Push alerts to your smartphone or tablet" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:170 -#: ../extensions/notifications/class-wp-stream-notifications.php:171 +#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:152 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:48 +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:32 #, fuzzy msgid "Notifications" msgstr "actions" -#: ../extensions/notifications/class-wp-stream-notifications.php:218 +#: ../extensions/notifications/class-wp-stream-notifications.php:199 msgid "Sample Rule" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:272 +#: ../extensions/notifications/class-wp-stream-notifications.php:253 #, fuzzy, php-format msgid "[Site Activity Alert] %s" msgstr "Paramètres Stream" -#: ../extensions/notifications/class-wp-stream-notifications.php:273 +#: ../extensions/notifications/class-wp-stream-notifications.php:254 #, php-format msgid "The following just happened on your site: %s by %s Date of action: %s" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 -msgid "Publish" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 -msgid "Unpublish" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 -msgid "Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 +msgid "Email" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 #, fuzzy -msgid "Stream Notification Rules" -msgstr "Paramètres Stream" +msgid "Send to Users" +msgstr "Utilisateurs" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 -msgid "New Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 +msgid "Alert specific users via email." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 -msgid "New Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 +msgid "Send to Emails" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 -msgid "Edit Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 +msgid "Alert any arbitrary email address not tied to a specific user." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 -msgid "View Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 +msgid "Subject" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 -#, fuzzy -msgid "Search Rules" -msgstr "Rechercher les registres" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 -msgid "No notification rules found." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 +msgid "Data tags are allowed." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 -msgid "No notification rules found in Trash." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 +msgid "Message" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 -msgid "Triggers" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 +msgid "HTML and data tags are allowed." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 -msgid "Alerts" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 +msgid "Push" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 -msgid "Data Tags" -msgstr "" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 +#, fuzzy +msgid "Missing Required Plugin" +msgstr "Le plugin \"%s\" a été supprimé" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 #, php-format -msgid "This rule has occurred %1$s time." +msgid "Please install and activate the %1$s plugin to enable push alerts." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 -msgid "Basic" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 +msgid "Pushover Notifications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 -msgid "Summary message of the triggered record." -msgstr "" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 +#, fuzzy +msgid "Required Plugin Not Activated" +msgstr "Activée" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 -msgid "User ID of the triggered record author." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 +#, php-format +msgid "Please activate the %1$s plugin to enable push alerts." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 -msgid "Connector of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 +msgid "Alert specific users via push." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 -msgid "Context of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 +#, php-format +msgid "Only those users with a %s in their profile can be selected." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 -msgid "Action of the triggered record." -msgstr "" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 +#, fuzzy +msgid "Pushover User Key" +msgstr "Nouveau rôle par défaut des utilisateurs" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 -msgid "Timestamp of triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 +msgid "Application key is missing" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 -msgid "IP of the triggered record author." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 +#, php-format +msgid "Please provide your Application key on %1$s." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 -msgid "Object ID of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 +msgid "Pushover Notifications settings page" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 -msgid "Advanced" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 +msgid "Application API Token/Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 -msgid "" -"Specific object data of the record, relative to what the object type is:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t
See Codex for more Post values\n" "\t\t\t\t\t\t\t\t\t\t

\n" "\t\t\t\t\t\t\t\t\t\t{object.name}\n" @@ -3719,369 +5046,618 @@ msgid "" "the old theme name when a new theme is activated." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 -msgid "Enter Rule Title here" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 +msgid "Invalid nonce" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 -msgid "Email" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 +msgid "Invalid record ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 -#, fuzzy -msgid "Send to Users" -msgstr "%s mis à jour" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 +msgid "is" +msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 -msgid "Alert specific users via email." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 +msgid "is not" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 -msgid "Send to Emails" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 +#, fuzzy +msgid "contains" +msgstr "contextes" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 +msgid "does not contain" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 -msgid "Alert any arbitrary email address not tied to a specific user." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 +#, fuzzy +msgid "starts with" +msgstr "La semaine commence le" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 +msgid "ends with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 -msgid "Subject" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 +msgid "regex" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 -msgid "Data tags are allowed." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 +msgid "equals" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 -msgid "Message" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 +msgid "not equal" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 -msgid "HTML and data tags are allowed." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 +msgid "less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 -msgid "Push" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 +msgid "equal or less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 -msgid "Missing Required Plugin" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 +msgid "greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 -#, php-format -msgid "Please install and activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 +msgid "equal or greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 -msgid "Pushover Notifications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 +msgid "Object ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 -msgid "Required Plugin Not Activated" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:369 +#, fuzzy +msgid "Author Role" +msgstr "Auteur" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 +#, fuzzy +msgid "IP" +msgstr "Adresse IP" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 +msgid "is on" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 -#, php-format -msgid "Please activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 +msgid "is not on" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 -msgid "Alert specific users via push." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 +#, fuzzy +msgid "is before" +msgstr "Un commentaire apparaît" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 +#, fuzzy +msgid "is on or before" +msgstr "Un commentaire apparaît" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 +msgid "is after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 -#, php-format -msgid "Only those users with a %s in their profile can be selected." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 +msgid "is on or after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 -msgid "Pushover User Key" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 +#, fuzzy +msgid "Day of Week" +msgstr "La semaine commence le" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:370 +msgid "Connector" +msgstr "Connecteur" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 +#, fuzzy +msgid "- Post" +msgstr "Catégorie par défaut des articles" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 +#, fuzzy +msgid "- Post: Title" +msgstr "Titre du site" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 +#, fuzzy +msgid "- Post: Slug" +msgstr "Catégorie par défaut des articles" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 +#, fuzzy +msgid "- Post: Content" +msgstr "Catégorie par défaut des articles" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 +#, fuzzy +msgid "- Post: Excerpt" +msgstr "Catégorie par défaut des articles" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 +#, fuzzy +msgid "- Post: Author" +msgstr "Auteur" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 +#, fuzzy +msgid "- Post: Status" +msgstr "Catégorie par défaut des articles" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 +#, fuzzy +msgid "- Post: Format" +msgstr "Type d'article par défaut" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 +#, fuzzy +msgid "- Post: Parent" +msgstr "Catégorie par défaut des articles" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 +#, fuzzy +msgid "- Post: Featured Image" +msgstr "Image \"%s\" mis à jour" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 -msgid "Application key is missing" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 +msgid "None" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 -#, php-format -msgid "Please provide your Application key on %1$s." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 +msgid "Has one" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 -msgid "Pushover Notifications settings page" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 +#, fuzzy +msgid "- Post: Comment Status" +msgstr "Catégorie par défaut des articles" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 -msgid "Application API Token/Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 +msgid "Open" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 -msgid "Your User Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgid "Closed" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 #, fuzzy -msgid "New Users" -msgstr "Utilisateurs" - -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 -msgid "New Posts are Published" -msgstr "" +msgid "- Post: Comment Count" +msgstr "Catégorie par défaut des articles" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 -msgid "Roles to Notify" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 +#, fuzzy +msgid "- User" +msgstr "Nouveau rôle par défaut des utilisateurs" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 #, fuzzy -msgid "New Comments" -msgstr "Commentaire mis en liste noir" +msgid "- User: Role" +msgstr "Nouveau rôle par défaut des utilisateurs" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 -msgid "Notify the Post Author (for multi-author blogs)" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 +msgid "- Taxonomy" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 -msgid "Notify users when password resets are requested for their accounts" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 +msgid "- Term" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 -msgid "WordPress Core Update is Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 +msgid "- Term: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 -msgid "Plugin & Theme Updates are Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 +msgid "You cannot save a rule without any triggers." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 -msgid "Use Multiple Application Keys" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 +msgid "You cannot save a rule with an empty first trigger." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 -msgid "Verify SSL from api.pushover.net" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 +msgid "There was an error submitting your request, please try again." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 #, fuzzy -msgid "Enable Logging" -msgstr "Tentative de connexion échoué" - -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 -msgid "SMS" +msgid "" +"Are you sure you want to reset occurrences for this rule? This cannot be " +"undone." msgstr "" +"Êtes-vous sûr de vouloir supprimer tous les enregistrements d'activité de " +"flux de la base de données? Cela ne peut pas être annulée." -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 -msgid "Send to Mobile Number" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 +msgid "Enter Rule Title here" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 -msgid "Enter mobile numbers without dashes (ex: 8885550000)" +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 +#, fuzzy +msgid "" +"Users from the selected roles above will have permission to view, create and " +"edit Stream Notifications. However, only site Administrators can access " +"Stream Notifications Settings." msgstr "" +"Les utilisateurs des rôles sélectionnés ci-dessus auront la permission de " +"voir les données enregisté par Stream. Cependant, seuls les administrateurs " +"du site peuvent accéder aux paramètres Stream." -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 -msgid "Carrier" +#: ../extensions/notifications/views/form-templates.php:7 +#: ../extensions/notifications/views/form-templates.php:30 +msgid "AND" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 -msgid "Select your mobile service provider." +#: ../extensions/notifications/views/form-templates.php:8 +#: ../extensions/notifications/views/form-templates.php:31 +msgid "OR" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 -msgid "Data tags are allowed. HTML is not allowed." -msgstr "" +#: ../extensions/notifications/views/form-templates.php:36 +#, fuzzy +msgid "Delete Group" +msgstr "\"%s\" Supprimé" -#: ../extensions/reports/class-wp-stream-reports.php:125 +#: ../extensions/reports/class-wp-stream-reports.php:123 msgid "Cheating huh?" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:223 +#: ../extensions/reports/class-wp-stream-reports.php:143 +#: ../extensions/reports/class-wp-stream-reports.php:144 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:51 +msgid "Reports" +msgstr "" + +#: ../extensions/reports/class-wp-stream-reports.php:221 msgid "Cancel" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:224 +#: ../extensions/reports/class-wp-stream-reports.php:222 #, fuzzy msgid "Do you really want to delete this section? This cannot be undone." msgstr "" "Êtes-vous sûr de vouloir supprimer tous les enregistrements d'activité de " "flux de la base de données? Cela ne peut pas être annulée." -#: ../extensions/reports/class-wp-stream-reports.php:280 +#: ../extensions/reports/class-wp-stream-reports.php:278 #, php-format msgid "" "There's nothing here! Do you want to create some reports?" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:76 +#: ../extensions/reports/includes/class-wp-stream-reports-date-interval.php:42 +#, fuzzy +msgid "That time interval is not available." +msgstr "Format de l'heure" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:68 +#, fuzzy msgid "All Activity by Author" -msgstr "" +msgstr "Auteur" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:82 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:74 +#, fuzzy msgid "All Activity by Action" -msgstr "" +msgstr "Action" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:88 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:80 msgid "All Activity by Author Role" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:95 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:87 +#, fuzzy msgid "Comments Activity by Action" -msgstr "" +msgstr "Action" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:126 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:118 +#: ../extensions/reports/views/all.php:3 +#: ../extensions/reports/views/examples.php:2 #, fuzzy msgid "Stream Reports" -msgstr "Registre Stream" +msgstr "Flux Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:127 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:119 msgid "" "Generate stunning visuals of logged-in user activity and share them with " "stakeholders or your clients." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:129 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:121 msgid "Fully-interactive charts" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:130 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:122 msgid "Monitor team contributions" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:131 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:123 msgid "Responsive for any screen size" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:275 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:267 msgid "All Others" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:285 -#, php-format +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:277 +#, fuzzy, php-format msgid "User ID: %d" -msgstr "" +msgstr "Le compte utilisateur #%d à été supprimé" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:326 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:309 #, fuzzy msgid "All Activity" msgstr "Paramètres Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:328 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:311 #, fuzzy msgid "Connector Activity" -msgstr "Paramètres Stream" +msgstr "Connecteur" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:336 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:319 #, fuzzy msgid "Context Activity" -msgstr "Paramètres Stream" +msgstr "Contexte" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:344 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:327 #, fuzzy msgid "Actions Activity" -msgstr "Paramètres Stream" - -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:379 -#, fuzzy -msgid "Site Activity" -msgstr "Paramètres Stream" +msgstr "actions" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:407 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:390 #, fuzzy -msgid "Author Role" -msgstr "Auteur" - -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:408 -msgid "Connector" -msgstr "Connecteur" - -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:428 msgid "Site" -msgstr "" +msgstr "Titre du site" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:473 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:435 msgid "Unknown" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:529 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:472 +#, fuzzy, php-format +msgid "Report %d" +msgstr "Le compte utilisateur #%d à été supprimé" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:491 #, fuzzy, php-format +msgctxt "1: Action 2: Dataset 3: Selector" msgid "%1$s in %2$s by %3$s" msgstr "%s: %s %s Mis à jour" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:535 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:497 #, fuzzy, php-format +msgctxt "1: Action 3: Selector" msgid "All %1$s by %3$s" msgstr "%s: %s %s Installé" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:542 -#, php-format +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:504 +#, fuzzy, php-format +msgctxt "2: Dataset 3: Selector" msgid "All Activity in %2$s by %3$s" -msgstr "" +msgstr "%s: %s %s Installé" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:548 -#, php-format +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 +#, fuzzy, php-format +msgctxt "3: Selector" msgid "All Activity by %3$s" +msgstr "Paramètres Stream" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:691 +msgid "Chart height" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:697 +msgid "px" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:783 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:699 +msgid "Apply" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:745 #, fuzzy msgid "All Contexts" -msgstr "Contexte" +msgstr "contextes" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:797 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:759 #, fuzzy msgid "All Actions" -msgstr "Action" +msgstr "actions" + +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:57 +#, fuzzy +msgid "" +"Users from the selected roles above will have permission to view and edit " +"Stream Reports. However, only site Administrators can access Stream Reports " +"Settings." +msgstr "" +"Les utilisateurs des rôles sélectionnés ci-dessus auront la permission de " +"voir les données enregisté par Stream. Cependant, seuls les administrateurs " +"du site peuvent accéder aux paramètres Stream." -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:243 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:238 msgid "Uh no! This wasn't suppose to happen :(" msgstr "" -#: ../extensions/reports/views/all.php:6 -msgid "1 site" +#: ../extensions/reports/views/all.php:5 +#, fuzzy +msgid "New Report" +msgstr "Menu \"%s\" a été créé" + +#: ../extensions/reports/views/all.php:20 +msgid "Well, this is embarrassing. There are no reports yet!" +msgstr "" + +#: ../extensions/reports/views/all.php:23 +#, fuzzy +msgid "Add a new one" +msgstr "Menu \"%s\" a été créé" + +#: ../extensions/reports/views/all.php:25 +msgid "or" +msgstr "" + +#: ../extensions/reports/views/all.php:27 +#, fuzzy +msgid "Generate some for me" +msgstr "Envoyé moi un courriel dès que" + +#: ../extensions/reports/views/error.php:2 +msgid "Oops, that's an error!" +msgstr "" + +#: ../extensions/reports/views/error.php:5 +msgid "Yeah... Something went very wrong somewhere along your last actions." +msgstr "" + +#: ../extensions/reports/views/intervals.php:24 +#, fuzzy +msgid "Start date" +msgstr "Format de la date" + +#: ../extensions/reports/views/intervals.php:33 +#, fuzzy +msgid "End date" +msgstr "Format de la date" + +#: ../extensions/reports/views/intervals.php:38 +#, fuzzy +msgid "Update" +msgstr "Mis à jour des services" + +#: ../extensions/reports/views/meta-box.php:13 +msgid "in" +msgstr "" + +#: ../extensions/reports/views/meta-box.php:17 +msgid "by" +msgstr "" + +#: ../extensions/reports/views/meta-box.php:31 +msgid "Save" msgstr "" #: ../extensions/reports/views/meta-box.php:39 msgid "Loading…" msgstr "" +#: ../includes/feeds/atom.php:7 ../includes/feeds/rss-2.0.php:21 +msgid "Stream Feed" +msgstr "Flux Stream" + +#: ../stream.php:100 +msgid "Stream: Could not load chosen DB driver." +msgstr "" + +#: ../stream.php:151 +msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." +msgstr "" +"Stream requiert une version PHP supérieur à 5.3. Le plugin n'est " +"présentement PAS ACTIF." + +#: ../stream.php:192 ../stream.php:207 +msgid "Deprecated Plugins Found" +msgstr "" + +#: ../stream.php:193 +msgid "" +"The following plugins are deprecated and will be deactivated in order to " +"activate" +msgstr "" + +#: ../stream.php:202 +#, fuzzy +msgid "Continue" +msgstr "Contexte" + +#, fuzzy +#~ msgid "Network Stream Activity" +#~ msgstr "Paramètres Stream" + +#, fuzzy +#~ msgid "Stream Network Settings" +#~ msgstr "Paramètres Stream" + +#, fuzzy +#~ msgid "Network Settings" +#~ msgstr "Paramètres Stream" + #, fuzzy -#~ msgid "Stream Extensions" +#~ msgid "New Site Settings" +#~ msgstr "Paramètres Stream" + +#, fuzzy +#~ msgid "Enable Site Access" +#~ msgstr "Accèes aux rôles suivant:" + +#, fuzzy +#~ msgid "Reset Site Settings" #~ msgstr "Paramètres Stream" #, fuzzy #~ msgid "" -#~ "Are you sure you want to uninstall and deactivate Stream? This will " -#~ "delete all Stream tables from the database and cannot be undone." +#~ "Warning: Clicking this will override all site settings with defaults." #~ msgstr "" -#~ "Êtes-vous sûr de vouloir supprimer tous les enregistrements d'activité de " -#~ "flux de la base de données? Cela ne peut pas être annulée." +#~ "Avertissement: la confirmation de cette boîte entraînera la suppression " +#~ "de tous les entrées de la base de donnée." #, fuzzy -#~ msgid "Uninstall" -#~ msgstr "Installé" +#~ msgid "Settings saved." +#~ msgstr "Paramètres" #, fuzzy -#~ msgid "Return to Stream Extensions" +#~ msgid "Site Admin" +#~ msgstr "Titre du site" + +#, fuzzy +#~ msgid "Site Settings" #~ msgstr "Paramètres Stream" #, fuzzy -#~ msgid "Network Stream Activity" +#~ msgctxt "1. User's name, 2. Site name, 3. Role" +#~ msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." +#~ msgstr "L'utilisateur \"%s\" a été supprimé de \"%s\"" + +#, fuzzy +#~ msgctxt "1. User's name, 2. Site name" +#~ msgid "%1$s has been removed from the site \"%2$s\"." +#~ msgstr "L'utilisateur \"%s\" a été supprimé de \"%s\"" + +#, fuzzy +#~ msgctxt "1. Site name, 2. Status" +#~ msgid "\"%1$s\" has been %2$s." +#~ msgstr "L'utilisateur \"%s\" a été ajouté de \"%s\"" + +#, fuzzy +#~ msgid "Site Activity" #~ msgstr "Paramètres Stream" #, fuzzy -#~ msgid "View all records" -#~ msgstr "Supprimer toutes les données" +#~ msgid "" +#~ "Are you sure you want to uninstall and deactivate Stream? This will " +#~ "delete all Stream tables from the database and cannot be undone." +#~ msgstr "" +#~ "Êtes-vous sûr de vouloir supprimer tous les enregistrements d'activité de " +#~ "flux de la base de données? Cela ne peut pas être annulée." #, fuzzy -#~ msgid "Enable live updates" -#~ msgstr "Accèes aux rôles suivant:" +#~ msgid "Uninstall" +#~ msgstr "Installé" + +#, fuzzy +#~ msgid "Return to Stream Extensions" +#~ msgstr "Paramètres Stream" #, fuzzy #~ msgid "Join Stream Extensions" @@ -4107,31 +5683,6 @@ msgstr "" #~ msgid "Active" #~ msgstr "Activée" -#, fuzzy -#~ msgid "Stream Feeds Key" -#~ msgstr "Flux Stream" - -#, fuzzy -#~ msgid "RSS Feed" -#~ msgstr "Flux Stream" - -#, fuzzy -#~ msgid "JSON Feed" -#~ msgstr "Flux Stream" - -#~ msgid "Access Denied" -#~ msgstr "Accès refusé" - -#~ msgid "" -#~ "You don't have permission to view this feed, please contact your site " -#~ "Administrator." -#~ msgstr "" -#~ "Vous n'avez pas la permission de voir ce flux, s'il vous plaît contactez " -#~ "votre administrateur du site." - -#~ msgid "Stream Feed" -#~ msgstr "Flux Stream" - #, fuzzy #~ msgid "Stream Database Update Required" #~ msgstr "Remise à zéro de la base de donnée" @@ -4140,24 +5691,6 @@ msgstr "" #~ msgid "Update Complete" #~ msgstr "Mis à jour des services" -#, fuzzy -#~ msgid "Role Access" -#~ msgstr "Accèes aux rôles suivant:" - -#~ msgid "" -#~ "Users from the selected roles above will have permission to view Stream " -#~ "Records. However, only site Administrators can access Stream Settings." -#~ msgstr "" -#~ "Les utilisateurs des rôles sélectionnés ci-dessus auront la permission de " -#~ "voir les données enregisté par Stream. Cependant, seuls les " -#~ "administrateurs du site peuvent accéder aux paramètres Stream." - -#~ msgid "Private Feeds" -#~ msgstr "RSS privés" - -#~ msgid "View Codex" -#~ msgstr "Voir Codex" - #~ msgid "Keep Records for" #~ msgstr "Garder les données pour" diff --git a/languages/stream-id_ID.mo b/languages/stream-id_ID.mo index 4a62eb17d..96cfcb4ef 100644 Binary files a/languages/stream-id_ID.mo and b/languages/stream-id_ID.mo differ diff --git a/languages/stream-id_ID.po b/languages/stream-id_ID.po index 2b490a999..89a9367a9 100644 --- a/languages/stream-id_ID.po +++ b/languages/stream-id_ID.po @@ -4,81 +4,91 @@ msgid "" msgstr "" "Project-Id-Version: Stream 1.0.3\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/stream\n" -"POT-Creation-Date: 2014-09-27 01:01+1000\n" -"PO-Revision-Date: 2014-09-27 03:35+1000\n" -"Last-Translator: Luke Carbis \n" +"POT-Creation-Date: 2014-10-01 20:35+1000\n" +"PO-Revision-Date: 2014-10-01 20:40+1000\n" +"Last-Translator: Frankie Jarrett \n" "Language-Team: X-Team \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.3\n" +"X-Generator: Poedit 1.6.9\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx\n" "X-Poedit-Basepath: .\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SearchPath-0: ..\n" -#: ../stream.php:100 -msgid "Stream: Could not load chosen DB driver." -msgstr "" +#: ../classes/class-wp-stream-admin.php:144 +#: ../classes/class-wp-stream-admin.php:270 +#: ../classes/class-wp-stream-admin.php:837 +#, fuzzy +msgid "Connect to Stream" +msgstr "Penghubung" -#: ../stream.php:156 -msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." +#: ../classes/class-wp-stream-admin.php:148 +msgid "Stream is almost ready!" msgstr "" -"Stream memerlukan PHP versi 5.3+, untuk saat ini plugin tidak diaktifkan." -#: ../stream.php:197 ../stream.php:212 -msgid "Deprecated Plugins Found" +#: ../classes/class-wp-stream-admin.php:152 +#: ../classes/class-wp-stream-admin.php:841 +#, php-format +msgid "" +"Stream only uses your WordPress.com ID during sign up to authorize your " +"account. You can sign up for free at %swordpress.com/signup%s." msgstr "" -#: ../stream.php:198 +#: ../classes/class-wp-stream-admin.php:158 +#, php-format msgid "" -"The following plugins are deprecated and will be deactivated in order to " -"activate" +"Connect to Stream with your %sWordPress.com ID%s to see every change made to " +"your site in beautifully organized detail." msgstr "" -#: ../stream.php:207 +#: ../classes/class-wp-stream-admin.php:187 #, fuzzy -msgid "Continue" -msgstr "Konteks" +msgid "All site settings have been successfully reset." +msgstr "Semua catatan berhasil dihapus" -#: ../classes/class-wp-stream-admin.php:152 -#: ../classes/class-wp-stream-admin.php:284 -#: ../classes/class-wp-stream-admin.php:862 -#, fuzzy -msgid "Connect to Stream" -msgstr "Penghubung" +#: ../classes/class-wp-stream-admin.php:193 +msgid "You have successfully connected to Stream!" +msgstr "" -#: ../classes/class-wp-stream-admin.php:254 -#: ../classes/class-wp-stream-admin.php:255 -#: ../classes/class-wp-stream-admin.php:285 +#: ../classes/class-wp-stream-admin.php:194 +msgid "" +"Check back here regularly to see a history of the changes being made to this " +"site." +msgstr "" + +#: ../classes/class-wp-stream-admin.php:242 +#: ../classes/class-wp-stream-admin.php:243 +#: ../classes/class-wp-stream-admin.php:271 #: ../connectors/class-wp-stream-connector-settings.php:129 msgid "Stream" msgstr "Stream" -#: ../classes/class-wp-stream-admin.php:265 +#: ../classes/class-wp-stream-admin.php:253 msgid "Stream Settings" msgstr "Pengaturan Stream" -#: ../classes/class-wp-stream-admin.php:266 -#: ../connectors/class-wp-stream-connector-bbpress.php:114 -#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#: ../classes/class-wp-stream-admin.php:254 +#: ../classes/class-wp-stream-admin.php:540 #: ../connectors/class-wp-stream-connector-settings.php:100 #: ../connectors/class-wp-stream-connector-settings.php:121 #: ../connectors/class-wp-stream-connector-woocommerce.php:693 msgid "Settings" msgstr "Pengaturan" -#: ../classes/class-wp-stream-admin.php:275 +#: ../classes/class-wp-stream-admin.php:262 #, fuzzy msgid "Stream Account" msgstr "Aktifitas Stream" -#: ../classes/class-wp-stream-admin.php:276 +#: ../classes/class-wp-stream-admin.php:263 msgid "Account" msgstr "" -#: ../classes/class-wp-stream-admin.php:354 +#: ../classes/class-wp-stream-admin.php:340 #, fuzzy msgid "" "Are you sure you want to reset all site settings to default? This cannot be " @@ -87,54 +97,54 @@ msgstr "" "Anda yakin ingin menghapus semua catatan Stream? Data tidak dapat " "dikembalikan." -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 #, php-format msgid "This will take about %d minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 msgid "This could take a few minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:385 +#: ../classes/class-wp-stream-admin.php:371 #, fuzzy msgid "Migrating Stream Records" msgstr "Catatan Stream" -#: ../classes/class-wp-stream-admin.php:386 +#: ../classes/class-wp-stream-admin.php:372 #, fuzzy msgid "Deleting Stream Records" msgstr "Catatan Stream" -#: ../classes/class-wp-stream-admin.php:387 +#: ../classes/class-wp-stream-admin.php:373 msgid "" "An unknown error occurred during migration. Please try again later or " "contact support." msgstr "" -#: ../classes/class-wp-stream-admin.php:388 -#: ../classes/class-wp-stream-admin.php:389 +#: ../classes/class-wp-stream-admin.php:374 +#: ../classes/class-wp-stream-admin.php:375 msgid "Please do not exit this page until the process has completed." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 #, php-format msgid "Please note: This process will take about %d minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 msgid "Please note: This process could take a few minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:391 +#: ../classes/class-wp-stream-admin.php:377 msgid "" "Please note: Your existing records will not appear in Stream until you have " "migrated them to your account." msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, fuzzy, php-format msgid "" "Are you sure you want to delete all %s existing Stream records without " @@ -143,172 +153,306 @@ msgstr "" "Anda yakin ingin menghapus semua catatan Stream? Data tidak dapat " "dikembalikan." -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, fuzzy, php-format msgid "about %d" msgstr "Perihal" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 msgid "a few" msgstr "" -#: ../classes/class-wp-stream-admin.php:421 +#: ../classes/class-wp-stream-admin.php:407 #, php-format msgid "" "Are you sure you want to perform bulk actions on over %d items? This process " "could take a while to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:422 +#: ../classes/class-wp-stream-admin.php:408 msgid "" "The Stream plugin must be deactivated before you can bulk import content " "into WordPress." msgstr "" -#: ../classes/class-wp-stream-admin.php:760 +#: ../classes/class-wp-stream-admin.php:726 +msgid "Error retrieving account details." +msgstr "" + +#: ../classes/class-wp-stream-admin.php:728 +msgid "" +"If this problem persists, please disconnect from Stream and try connecting " +"again." +msgstr "" + +#: ../classes/class-wp-stream-admin.php:735 msgid "Free" msgstr "" -#: ../classes/class-wp-stream-admin.php:764 +#: ../classes/class-wp-stream-admin.php:739 msgid "Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:766 +#: ../classes/class-wp-stream-admin.php:741 msgid "Standard" msgstr "" -#: ../classes/class-wp-stream-admin.php:772 +#: ../classes/class-wp-stream-admin.php:747 #, fuzzy, php-format +msgctxt "1: Price, 2: Renewal date" msgid "$%1$s on %2$s" msgstr "Komentar %1$s %2$s" -#: ../classes/class-wp-stream-admin.php:774 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:287 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:471 +#: ../classes/class-wp-stream-admin.php:749 +#: ../classes/class-wp-stream-author.php:64 +#: ../classes/class-wp-stream-author.php:72 +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:127 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:279 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:433 msgid "N/A" msgstr "--" -#: ../classes/class-wp-stream-admin.php:781 +#: ../classes/class-wp-stream-admin.php:756 msgid "Unlimited" msgstr "" -#: ../classes/class-wp-stream-admin.php:784 +#: ../classes/class-wp-stream-admin.php:759 +#, php-format msgid "1 Day" -msgstr "" +msgid_plural "%s Days" +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-admin.php:794 +#: ../classes/class-wp-stream-admin.php:769 msgid "Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:798 +#: ../classes/class-wp-stream-admin.php:773 #, fuzzy msgid "Activity History" msgstr "Catat Aktifitas untuk" -#: ../classes/class-wp-stream-admin.php:803 +#: ../classes/class-wp-stream-admin.php:778 msgid "Next Billing" msgstr "" -#: ../classes/class-wp-stream-admin.php:808 +#: ../classes/class-wp-stream-admin.php:783 #: ../connectors/class-wp-stream-connector-acf.php:81 -#: ../connectors/class-wp-stream-connector-bbpress.php:88 -#: ../connectors/class-wp-stream-connector-blogs.php:50 -#: ../connectors/class-wp-stream-connector-buddypress.php:123 #: ../connectors/class-wp-stream-connector-comments.php:46 -#: ../connectors/class-wp-stream-connector-edd.php:108 -#: ../connectors/class-wp-stream-connector-gravityforms.php:98 #: ../connectors/class-wp-stream-connector-menus.php:39 #: ../connectors/class-wp-stream-connector-posts.php:39 #: ../connectors/class-wp-stream-connector-taxonomies.php:54 #: ../connectors/class-wp-stream-connector-users.php:54 #: ../connectors/class-wp-stream-connector-widgets.php:58 -#: ../connectors/class-wp-stream-connector-woocommerce.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:77 msgid "Created" msgstr "Dibuat" -#: ../classes/class-wp-stream-admin.php:812 +#: ../classes/class-wp-stream-admin.php:787 msgid "Site ID" msgstr "" -#: ../classes/class-wp-stream-admin.php:818 +#: ../classes/class-wp-stream-admin.php:793 msgid "API Key" msgstr "" -#: ../classes/class-wp-stream-admin.php:828 +#: ../classes/class-wp-stream-admin.php:803 #: ../classes/class-wp-stream-list-table.php:49 -#: ../extensions/notifications/class-wp-stream-notifications.php:155 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:133 +#: ../extensions/notifications/class-wp-stream-notifications.php:136 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:125 msgid "Upgrade to Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:830 +#: ../classes/class-wp-stream-admin.php:805 msgid "Modify This Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:890 +#: ../classes/class-wp-stream-admin.php:847 +#, fuzzy, php-format +msgid "with your %sWordPress.com ID%s" +msgstr "WordPress" + +#: ../classes/class-wp-stream-admin.php:865 +msgctxt "Haiku line 1" msgid "A transformation" msgstr "" -#: ../classes/class-wp-stream-admin.php:891 +#: ../classes/class-wp-stream-admin.php:866 +msgctxt "Haiku line 2" msgid "Like brook, to river, to sea" msgstr "" -#: ../classes/class-wp-stream-admin.php:901 +#: ../classes/class-wp-stream-admin.php:876 +msgctxt "Haiku line 3" msgid "I have a secret" msgstr "" -#: ../classes/class-wp-stream-admin.php:917 -#: ../classes/class-wp-stream-admin.php:931 -#: ../classes/class-wp-stream-admin.php:933 +#: ../classes/class-wp-stream-admin.php:892 +#: ../classes/class-wp-stream-admin.php:898 msgid "Stream Records" msgstr "Catatan Stream" -#: ../classes/class-wp-stream-admin.php:928 -msgid " (1 site)" -msgstr "" +#: ../classes/class-wp-stream-admin.php:1038 +#, php-format +msgid "One more result..." +msgid_plural "%d more results..." +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-admin.php:942 -msgid "Get started with Stream for Multisite!" +#: ../classes/class-wp-stream-api.php:356 +msgid "Stream API Error." msgstr "" -#: ../classes/class-wp-stream-admin.php:943 -msgid "" -"Welcome to your Network Stream! Each site on your network must be connected " -"individually by an admin on that site for it to show here." +#: ../classes/class-wp-stream-author.php:237 +msgid "via WP-CLI" msgstr "" -#: ../classes/class-wp-stream-admin.php:954 -msgid "Stream for Multisite is coming soon!" +#: ../classes/class-wp-stream-author.php:239 +msgid "during WP Cron" msgstr "" -#: ../classes/class-wp-stream-admin.php:955 -msgid "Access to all the Stream feeds in your network is currently disabled." +#: ../classes/class-wp-stream-connectors.php:98 +#, php-format +msgid "%s class wasn't loaded because it doesn't extends the %s class." msgstr "" -#: ../classes/class-wp-stream-admin.php:1104 -msgid "One more result..." -msgstr "" +#: ../classes/class-wp-stream-dashboard-widget.php:25 +#, fuzzy +msgid "Stream Activity" +msgstr "Aktifitas Stream" -#: ../classes/class-wp-stream-api.php:360 -msgid "Stream API Error." +#: ../classes/class-wp-stream-dashboard-widget.php:57 +#: ../classes/class-wp-stream-list-table.php:53 +msgid "Sorry, no activity records were found." +msgstr "Maaf, tidak ada catatan aktifitas yang ditemukan." + +#: ../classes/class-wp-stream-dashboard-widget.php:99 +#, fuzzy +msgid "View all records" +msgstr "Lihat semua catatan Stream" + +#: ../classes/class-wp-stream-dashboard-widget.php:101 +#, fuzzy +msgid "View All" +msgstr "Lihat" + +#: ../classes/class-wp-stream-dashboard-widget.php:119 +msgid "Go to the first page" msgstr "" -#: ../classes/class-wp-stream-connectors.php:102 -#, php-format -msgid "%s class wasn't loaded because it doesn't extends the %s class." +#: ../classes/class-wp-stream-dashboard-widget.php:127 +msgid "Go to the previous page" msgstr "" #: ../classes/class-wp-stream-dashboard-widget.php:134 #, fuzzy, php-format +msgctxt "paging" msgid "%1$s of %2$s" msgstr "Komentar %1$s %2$s" +#: ../classes/class-wp-stream-dashboard-widget.php:139 +msgid "Go to the next page" +msgstr "" + +#: ../classes/class-wp-stream-dashboard-widget.php:148 +msgid "Go to the last page" +msgstr "" + +#: ../classes/class-wp-stream-dashboard-widget.php:185 +#: ../classes/class-wp-stream-list-table.php:22 +msgid "Records per page" +msgstr "Catatan per halaman" + +#: ../classes/class-wp-stream-dashboard-widget.php:190 +#, fuzzy +msgid "Enable live updates" +msgstr "Pembaruan otomatis" + #: ../classes/class-wp-stream-dashboard-widget.php:209 #, fuzzy, php-format +msgctxt "1: Time, 2: User profile URL, 3: User display name" msgid "%1$s ago by %3$s" msgstr "%1$s yang lalu oleh %3$s" +#: ../classes/class-wp-stream-date-interval.php:48 +msgid "Today" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:53 +msgid "Yesterday" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:58 +#: ../classes/class-wp-stream-date-interval.php:63 +#: ../classes/class-wp-stream-date-interval.php:68 +#, php-format +msgid "Last %d Days" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:73 +msgid "This Month" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:78 +msgid "Last Month" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:83 +#: ../classes/class-wp-stream-date-interval.php:88 +#: ../classes/class-wp-stream-date-interval.php:93 +#, php-format +msgid "Last %d Months" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:98 +msgid "This Year" +msgstr "" + +#: ../classes/class-wp-stream-date-interval.php:103 +msgid "Last Year" +msgstr "" + +#: ../classes/class-wp-stream-feeds.php:109 +msgid "Stream Feeds Key" +msgstr "Kunci Feed Stream" + +#: ../classes/class-wp-stream-feeds.php:114 +#, fuzzy +msgid "Generate new key" +msgstr "Umum" + +#: ../classes/class-wp-stream-feeds.php:117 +msgid "" +"This is your private key used for accessing feeds of Stream Records " +"securely. You can change your key at any time by generating a new one using " +"the link above." +msgstr "" +"Ini adalah kunci pribadi anda untuk mengakses feed Catatan Stream dengan " +"aman. Anda dapat mengganti kunci anda kapan saja dengan menggunakan pranala " +"di atas." + +#: ../classes/class-wp-stream-feeds.php:119 +msgid "RSS Feed" +msgstr "Feed RSS" + +#: ../classes/class-wp-stream-feeds.php:121 +#, fuzzy +msgid "ATOM Feed" +msgstr "Feed JSON" + +#: ../classes/class-wp-stream-feeds.php:123 +msgid "JSON Feed" +msgstr "Feed JSON" + +#: ../classes/class-wp-stream-feeds.php:171 +msgid "Access Denied" +msgstr "Akses ditolak" + +#: ../classes/class-wp-stream-feeds.php:172 +msgid "" +"You don't have permission to view this feed, please contact your site " +"Administrator." +msgstr "Anda tidak diizinkan untuk melihat feed ini. Hubungi admin situs anda." + #: ../classes/class-wp-stream-filter-input.php:49 msgid "Invalid use, type must be one of INPUT_* family." msgstr "" @@ -317,44 +461,48 @@ msgstr "" msgid "Filter not supported." msgstr "" -#: ../classes/class-wp-stream-list-table.php:22 -msgid "Records per page" -msgstr "Catatan per halaman" - #: ../classes/class-wp-stream-list-table.php:48 +#, php-format msgid "Your free account is limited to viewing 24 hours of activity history." -msgstr "" - -#: ../classes/class-wp-stream-list-table.php:53 -msgid "Sorry, no activity records were found." -msgstr "Maaf, tidak ada catatan aktifitas yang ditemukan." +msgid_plural "" +"Your free account is limited to viewing %d days of activity " +"history." +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-list-table.php:68 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:507 msgid "Date" msgstr "Tanggal" #: ../classes/class-wp-stream-list-table.php:69 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:472 msgid "Summary" msgstr "Ringkasan" #: ../classes/class-wp-stream-list-table.php:70 -#: ../connectors/class-wp-stream-connector-acf.php:309 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:406 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:492 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:368 msgid "Author" msgstr "Penindak" #: ../classes/class-wp-stream-list-table.php:71 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:409 +#: ../classes/class-wp-stream-settings.php:603 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:553 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:371 msgid "Context" msgstr "Konteks" #: ../classes/class-wp-stream-list-table.php:72 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:405 +#: ../classes/class-wp-stream-settings.php:604 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:560 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:367 msgid "Action" msgstr "Tindakan" #: ../classes/class-wp-stream-list-table.php:73 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:410 +#: ../classes/class-wp-stream-settings.php:605 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:372 msgid "IP Address" msgstr "Alamat IP" @@ -362,6 +510,11 @@ msgstr "Alamat IP" msgid "View all records for this object" msgstr "Lihat semua catatan untuk objek ini" +#: ../classes/class-wp-stream-list-table.php:260 +#, fuzzy +msgid "Deleted User" +msgstr "\"%s\" dihapus" + #: ../classes/class-wp-stream-list-table.php:527 #, fuzzy msgid "dates" @@ -379,17 +532,66 @@ msgstr "konteks" msgid "actions" msgstr "tindakan" +#: ../classes/class-wp-stream-list-table.php:569 +msgid "Show filter controls via the screen options tab above." +msgstr "" + #: ../classes/class-wp-stream-list-table.php:606 msgid "Filter" msgstr "Saring" +#: ../classes/class-wp-stream-list-table.php:658 +#, fuzzy, php-format +msgid "Show all %s" +msgstr "Lihat semua %s" + +#: ../classes/class-wp-stream-list-table.php:699 +#, fuzzy +msgid "Search Records" +msgstr "Catatan Stream" + #: ../classes/class-wp-stream-list-table.php:719 +#: ../extensions/reports/views/intervals.php:3 msgid "All Time" msgstr "" +#: ../classes/class-wp-stream-list-table.php:721 +#: ../extensions/reports/views/intervals.php:5 +msgid "Custom" +msgstr "" + +#: ../classes/class-wp-stream-list-table.php:737 +msgid "Start Date" +msgstr "" + +#: ../classes/class-wp-stream-list-table.php:743 +#, fuzzy +msgid "End Date" +msgstr "Tanggal" + +#: ../classes/class-wp-stream-list-table.php:825 +msgid "Live updates" +msgstr "Pembaruan otomatis" + +#: ../classes/class-wp-stream-list-table.php:836 +#: ../classes/class-wp-stream-settings.php:237 +msgid "Enabled" +msgstr "Diaktifkan" + +#: ../classes/class-wp-stream-live-update.php:57 +msgid "" +"Live updates could not be enabled because Heartbeat is not loaded.\n" +"\n" +"Your hosting provider or another plugin may have disabled it for performance " +"reasons." +msgstr "" + #: ../classes/class-wp-stream-live-update.php:176 +#, php-format msgid "1 item" -msgstr "" +msgid_plural "%s items" +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-migrate.php:121 #, fuzzy @@ -442,125 +644,159 @@ msgstr "" msgid "All existing records have been deleted from the database." msgstr "Semua catatan berhasil dihapus" -#: ../classes/class-wp-stream-network.php:129 -#, fuzzy -msgid "Network Admin" -msgstr "di seluruh jaringan" - -#: ../classes/class-wp-stream-network.php:169 +#: ../classes/class-wp-stream-pointers.php:144 #, fuzzy -msgid "Stream Network Settings" +msgid "Stream Extensions" msgstr "Pengaturan Stream" -#: ../classes/class-wp-stream-network.php:170 -#, fuzzy -msgid "Network Settings" -msgstr "Pengaturan Stream" +#: ../classes/class-wp-stream-pointers.php:145 +msgid "Extension plugins are now available for Stream!" +msgstr "" -#: ../classes/class-wp-stream-network.php:179 -#, fuzzy -msgid "New Site Settings" -msgstr "Pengaturan Stream" +#: ../classes/class-wp-stream-record.php:41 +msgid "Could not validate record data." +msgstr "" -#: ../classes/class-wp-stream-network.php:180 -msgid "Site Defaults" +#: ../classes/class-wp-stream-settings.php:75 +msgid "There was an error in the request" msgstr "" -#: ../classes/class-wp-stream-network.php:234 -msgid "These settings apply to all sites on the network." +#: ../classes/class-wp-stream-settings.php:119 +#, php-format +msgid "" +"ID: %d\n" +"User: %s\n" +"Email: %s\n" +"Role: %s" msgstr "" -#: ../classes/class-wp-stream-network.php:237 +#: ../classes/class-wp-stream-settings.php:138 msgid "" -"These default settings will apply to new sites created on the network. These " -"settings do not alter existing sites." +"Actions performed by the system when a user is not logged in (e.g. auto site " +"upgrader, or invoking WP-CLI without --user)" msgstr "" -#: ../classes/class-wp-stream-network.php:302 +#: ../classes/class-wp-stream-settings.php:208 +#: ../connectors/class-wp-stream-connector-settings.php:122 +msgid "General" +msgstr "Umum" + +#: ../classes/class-wp-stream-settings.php:212 +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:36 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:55 #, fuzzy -msgid "Enable Site Access" +msgid "Role Access" msgstr "Akses Peran Pengguna" -#: ../classes/class-wp-stream-network.php:303 -msgid "Enabled" -msgstr "Diaktifkan" - -#: ../classes/class-wp-stream-network.php:305 +#: ../classes/class-wp-stream-settings.php:214 msgid "" -"When site access is disabled Stream can only be accessed from the network " -"administration." +"Users from the selected roles above will have permission to view Stream " +"Records. However, only site Administrators can access Stream Settings." msgstr "" +"Pengguna dari peran terpilih di atas akan diizinkan untuk melihat Catatan " +"Stream, namun hanya admin situs yang dapat mengakses pengaturan Stream." -#: ../classes/class-wp-stream-network.php:321 -#, fuzzy -msgid "Reset Site Settings" -msgstr "Pengaturan Stream" +#: ../classes/class-wp-stream-settings.php:220 +msgid "Private Feeds" +msgstr "Feed Pribadi" + +#: ../classes/class-wp-stream-settings.php:223 +#, fuzzy, php-format +msgid "" +"Users from the selected roles above will be given a private key found in " +"their %suser profile%s to access feeds of Stream Records securely. Please " +"%sflush rewrite rules%s on your site after changing this setting." +msgstr "" +"Pengguna dari peran terpilih di atas akan diberikan kunci pribadi pada profil mereka untuk mengakses feed Catatan " +"Stream secara aman." -#: ../classes/class-wp-stream-network.php:324 +#: ../classes/class-wp-stream-settings.php:227 #, fuzzy -msgid "Warning: Clicking this will override all site settings with defaults." -msgstr "Peringatan: Semua catatan aktifitas akan dihapus." +msgid "View Profile" +msgstr "Sunting Profil" -#: ../classes/class-wp-stream-network.php:408 +#: ../classes/class-wp-stream-settings.php:233 #, fuzzy -msgid "Settings saved." -msgstr "Pengaturan" +msgid "View Codex" +msgstr "Liat Profil" -#: ../classes/class-wp-stream-network.php:463 -msgid "sites" +#: ../classes/class-wp-stream-settings.php:243 +msgid "Exclude" msgstr "" -#: ../classes/class-wp-stream-record.php:41 -msgid "Could not validate record data." +#: ../classes/class-wp-stream-settings.php:247 +msgid "Exclude Rules" msgstr "" -#: ../classes/class-wp-stream-settings.php:129 -#, php-format +#: ../classes/class-wp-stream-settings.php:249 msgid "" -"ID: %d\n" -"User: %s\n" -"Email: %s\n" -"Role: %s" +"Create rules for excluding certain kinds of records from appearing in Stream." msgstr "" -#: ../classes/class-wp-stream-settings.php:241 -#, fuzzy, php-format -msgid "" -"Users from the selected roles above will be given a private key found in " -"their %suser profile%s to access feeds of Stream Records securely. Please " -"%sflush rewrite rules%s on your site after changing this setting." +#: ../classes/class-wp-stream-settings.php:569 +#, php-format +msgid "Any %s" msgstr "" -"Pengguna dari peran terpilih di atas akan diberikan kunci pribadi pada profil mereka untuk mengakses feed Catatan " -"Stream secara aman." -#: ../classes/class-wp-stream-settings.php:610 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +#: ../classes/class-wp-stream-settings.php:584 msgid "Add New Rule" msgstr "" -#: ../classes/class-wp-stream-settings.php:611 +#: ../classes/class-wp-stream-settings.php:585 #, fuzzy msgid "Delete Selected Rules" msgstr "Hapus Semua Catatan" -#: ../classes/class-wp-stream-settings.php:656 +#: ../classes/class-wp-stream-settings.php:602 +#, fuzzy +msgid "Author or Role" +msgstr "Penindak" + +#: ../classes/class-wp-stream-settings.php:606 +#, fuzzy +msgid "Filters" +msgstr "Saring" + +#: ../classes/class-wp-stream-settings.php:630 +#, php-format msgid "1 user" +msgid_plural "%s users" +msgstr[0] "" +msgstr[1] "" + +#: ../classes/class-wp-stream-settings.php:653 +#, fuzzy +msgid "Any Author or Role" +msgstr "Penindak" + +#: ../classes/class-wp-stream-settings.php:694 +#, fuzzy +msgid "Any Context" +msgstr "Konteks" + +#: ../classes/class-wp-stream-settings.php:713 +#, fuzzy +msgid "Any Action" +msgstr "Tindakan" + +#: ../classes/class-wp-stream-settings.php:724 +#, fuzzy +msgid "Any IP Address" +msgstr "Alamat IP" + +#: ../classes/class-wp-stream-settings.php:761 +msgid "No rules found." msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:71 +msgctxt "acf" msgid "ACF" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:82 -#: ../connectors/class-wp-stream-connector-bbpress.php:89 -#: ../connectors/class-wp-stream-connector-blogs.php:49 -#: ../connectors/class-wp-stream-connector-buddypress.php:124 -#: ../connectors/class-wp-stream-connector-edd.php:109 #: ../connectors/class-wp-stream-connector-editor.php:54 -#: ../connectors/class-wp-stream-connector-gravityforms.php:99 #: ../connectors/class-wp-stream-connector-installer.php:48 -#: ../connectors/class-wp-stream-connector-jetpack.php:85 #: ../connectors/class-wp-stream-connector-media.php:43 #: ../connectors/class-wp-stream-connector-menus.php:40 #: ../connectors/class-wp-stream-connector-posts.php:38 @@ -568,27 +804,16 @@ msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:55 #: ../connectors/class-wp-stream-connector-users.php:53 #: ../connectors/class-wp-stream-connector-widgets.php:62 -#: ../connectors/class-wp-stream-connector-woocommerce.php:99 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:78 msgid "Updated" msgstr "Telah diperbarui" #: ../connectors/class-wp-stream-connector-acf.php:83 -#: ../connectors/class-wp-stream-connector-edd.php:110 -#: ../connectors/class-wp-stream-connector-gravityforms.php:102 -#: ../connectors/class-wp-stream-connector-jetpack.php:86 #: ../connectors/class-wp-stream-connector-widgets.php:55 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:79 msgid "Added" msgstr "Ditambahkan" #: ../connectors/class-wp-stream-connector-acf.php:84 -#: ../connectors/class-wp-stream-connector-bbpress.php:92 -#: ../connectors/class-wp-stream-connector-blogs.php:52 -#: ../connectors/class-wp-stream-connector-buddypress.php:127 #: ../connectors/class-wp-stream-connector-comments.php:55 -#: ../connectors/class-wp-stream-connector-edd.php:111 -#: ../connectors/class-wp-stream-connector-gravityforms.php:103 #: ../connectors/class-wp-stream-connector-installer.php:47 #: ../connectors/class-wp-stream-connector-media.php:44 #: ../connectors/class-wp-stream-connector-menus.php:41 @@ -596,140 +821,171 @@ msgstr "Ditambahkan" #: ../connectors/class-wp-stream-connector-taxonomies.php:56 #: ../connectors/class-wp-stream-connector-users.php:55 #: ../connectors/class-wp-stream-connector-widgets.php:59 -#: ../connectors/class-wp-stream-connector-woocommerce.php:102 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:80 msgid "Deleted" msgstr "Dihapus" #: ../connectors/class-wp-stream-connector-acf.php:95 +#, fuzzy +msgctxt "acf" msgid "Field Groups" -msgstr "" +msgstr "Liat Profil" #: ../connectors/class-wp-stream-connector-acf.php:96 +msgctxt "acf" msgid "Fields" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:97 +msgctxt "acf" msgid "Rules" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:98 -#: ../connectors/class-wp-stream-connector-jetpack.php:101 #, fuzzy +msgctxt "acf" msgid "Options" msgstr "tindakan" #: ../connectors/class-wp-stream-connector-acf.php:99 +msgctxt "acf" msgid "Values" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:224 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" field in \"%2$s\" %3$s" msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-acf.php:252 +msgctxt "acf" msgid "High (after title)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:253 +msgctxt "acf" msgid "Normal (after content)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:254 +msgctxt "acf" msgid "Side" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:258 -#, php-format +#, fuzzy, php-format +msgctxt "acf" msgid "Position of \"%1$s\" updated to \"%2$s\"" -msgstr "" +msgstr "\"%1$s\" dilampirkan pada \"%2$s\"" #: ../connectors/class-wp-stream-connector-acf.php:277 +msgctxt "acf" msgid "Seamless (no metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:278 +msgctxt "acf" msgid "Standard (WP metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:282 #, fuzzy, php-format +msgctxt "acf" msgid "Style of \"%1$s\" updated to \"%2$s\"" msgstr "\"%1$s\" dilampirkan pada \"%2$s\"" #: ../connectors/class-wp-stream-connector-acf.php:301 #, fuzzy +msgctxt "acf" msgid "Permalink" msgstr "Pranala" #: ../connectors/class-wp-stream-connector-acf.php:302 +#, fuzzy +msgctxt "acf" msgid "Content Editor" -msgstr "" +msgstr "Konteks" #: ../connectors/class-wp-stream-connector-acf.php:303 +msgctxt "acf" msgid "Excerpt" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:304 +msgctxt "acf" msgid "Custom Fields" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:305 -#: ../connectors/class-wp-stream-connector-settings.php:125 +#, fuzzy +msgctxt "acf" msgid "Discussion" msgstr "Diskusi" #: ../connectors/class-wp-stream-connector-acf.php:306 -#: ../connectors/class-wp-stream-connector-comments.php:36 -#: ../connectors/class-wp-stream-connector-comments.php:68 -#: ../connectors/class-wp-stream-connector-jetpack.php:109 +#, fuzzy +msgctxt "acf" msgid "Comments" msgstr "Komentar" #: ../connectors/class-wp-stream-connector-acf.php:307 #, fuzzy +msgctxt "acf" msgid "Revisions" msgstr "Revisi" #: ../connectors/class-wp-stream-connector-acf.php:308 +msgctxt "acf" msgid "Slug" msgstr "" +#: ../connectors/class-wp-stream-connector-acf.php:309 +#, fuzzy +msgctxt "acf" +msgid "Author" +msgstr "Penindak" + #: ../connectors/class-wp-stream-connector-acf.php:310 #, fuzzy +msgctxt "acf" msgid "Format" msgstr "Pemformatan" #: ../connectors/class-wp-stream-connector-acf.php:311 +msgctxt "acf" msgid "Featured Image" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:312 -#: ../connectors/class-wp-stream-connector-edd.php:129 #, fuzzy +msgctxt "acf" msgid "Categories" msgstr "Dasar Ketegori" #: ../connectors/class-wp-stream-connector-acf.php:313 -#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "acf" msgid "Tags" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:314 +msgctxt "acf" msgid "Send Trackbacks" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:318 +#, fuzzy +msgctxt "acf" msgid "All screens" -msgstr "" +msgstr "Tindakan" #: ../connectors/class-wp-stream-connector-acf.php:320 +msgctxt "acf" msgid "No screens" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:326 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" set to display on \"%2$s\"" msgstr "\"%2$s\" telah ditambahkan pada \"%1$s\"" @@ -739,113 +995,130 @@ msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:396 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" of \"%2$s\" %3$s updated" msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-acf.php:434 -#, php-format +#, fuzzy, php-format +msgctxt "acf" msgid "Updated rules of \"%1$s\" (%2$d added, %3$d deleted)" -msgstr "" +msgstr "%1$s diperbarui: %2$s %3$s" #: ../connectors/class-wp-stream-connector-acf.php:460 msgid "field group" msgstr "" -#: ../connectors/class-wp-stream-connector-acf.php:494 +#: ../connectors/class-wp-stream-connector-acf.php:495 #, fuzzy, php-format +msgctxt "acf" msgid "Updated Order of \"%1$s\" from %2$d to %3$d" msgstr "%1$s diperbarui: %2$s %3$s" #: ../connectors/class-wp-stream-connector-bbpress.php:78 #, fuzzy +msgctxt "bbpress" msgid "bbPress" msgstr "WordPress" +#: ../connectors/class-wp-stream-connector-bbpress.php:88 +#, fuzzy +msgctxt "bbpress" +msgid "Created" +msgstr "Dibuat" + +#: ../connectors/class-wp-stream-connector-bbpress.php:89 +#, fuzzy +msgctxt "bbpress" +msgid "Updated" +msgstr "Telah diperbarui" + #: ../connectors/class-wp-stream-connector-bbpress.php:90 -#: ../connectors/class-wp-stream-connector-buddypress.php:125 -#: ../connectors/class-wp-stream-connector-gravityforms.php:422 -#: ../connectors/class-wp-stream-connector-installer.php:45 -#: ../connectors/class-wp-stream-connector-jetpack.php:79 +#, fuzzy +msgctxt "bbpress" msgid "Activated" msgstr "Telah diaktifkan" #: ../connectors/class-wp-stream-connector-bbpress.php:91 -#: ../connectors/class-wp-stream-connector-buddypress.php:126 -#: ../connectors/class-wp-stream-connector-gravityforms.php:423 -#: ../connectors/class-wp-stream-connector-installer.php:46 -#: ../connectors/class-wp-stream-connector-widgets.php:60 +#, fuzzy +msgctxt "bbpress" msgid "Deactivated" msgstr "Telah dinonaktifkan" +#: ../connectors/class-wp-stream-connector-bbpress.php:92 +#, fuzzy +msgctxt "bbpress" +msgid "Deleted" +msgstr "Dihapus" + #: ../connectors/class-wp-stream-connector-bbpress.php:93 -#: ../connectors/class-wp-stream-connector-comments.php:51 -#: ../connectors/class-wp-stream-connector-edd.php:112 -#: ../connectors/class-wp-stream-connector-gravityforms.php:104 -#: ../connectors/class-wp-stream-connector-gravityforms.php:424 -#: ../connectors/class-wp-stream-connector-posts.php:40 -#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +#, fuzzy +msgctxt "bbpress" msgid "Trashed" msgstr "Dibuang" #: ../connectors/class-wp-stream-connector-bbpress.php:94 -#: ../connectors/class-wp-stream-connector-comments.php:52 -#: ../connectors/class-wp-stream-connector-edd.php:113 -#: ../connectors/class-wp-stream-connector-gravityforms.php:105 -#: ../connectors/class-wp-stream-connector-gravityforms.php:425 -#: ../connectors/class-wp-stream-connector-posts.php:41 +#, fuzzy +msgctxt "bbpress" msgid "Restored" msgstr "Dikembalikan" #: ../connectors/class-wp-stream-connector-bbpress.php:95 -#: ../connectors/class-wp-stream-connector-edd.php:114 #, fuzzy +msgctxt "bbpress" msgid "Generated" msgstr "Umum" #: ../connectors/class-wp-stream-connector-bbpress.php:96 -#: ../connectors/class-wp-stream-connector-edd.php:115 -#: ../connectors/class-wp-stream-connector-gravityforms.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:82 #, fuzzy +msgctxt "bbpress" msgid "Imported" msgstr "Diurutkan" #: ../connectors/class-wp-stream-connector-bbpress.php:97 -#: ../connectors/class-wp-stream-connector-edd.php:116 -#: ../connectors/class-wp-stream-connector-gravityforms.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:81 #, fuzzy +msgctxt "bbpress" msgid "Exported" msgstr "Diurutkan" #: ../connectors/class-wp-stream-connector-bbpress.php:98 +msgctxt "bbpress" msgid "Closed" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:99 +msgctxt "bbpress" msgid "Opened" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:100 +msgctxt "bbpress" msgid "Sticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:101 +msgctxt "bbpress" msgid "Unsticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:102 -#: ../connectors/class-wp-stream-connector-buddypress.php:128 #, fuzzy +msgctxt "bbpress" msgid "Marked as spam" msgstr "Ditandai bukan sebagai Spam" #: ../connectors/class-wp-stream-connector-bbpress.php:103 -#: ../connectors/class-wp-stream-connector-buddypress.php:129 #, fuzzy +msgctxt "bbpress" msgid "Unmarked as spam" msgstr "Ditandai bukan sebagai Spam" +#: ../connectors/class-wp-stream-connector-bbpress.php:114 +#, fuzzy +msgctxt "bbpress" +msgid "Settings" +msgstr "Pengaturan" + #: ../connectors/class-wp-stream-connector-bbpress.php:131 #: ../connectors/class-wp-stream-connector-buddypress.php:164 #: ../connectors/class-wp-stream-connector-buddypress.php:223 @@ -853,8 +1126,8 @@ msgstr "Ditandai bukan sebagai Spam" #: ../connectors/class-wp-stream-connector-buddypress.php:254 #: ../connectors/class-wp-stream-connector-comments.php:124 #: ../connectors/class-wp-stream-connector-gravityforms.php:137 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:126 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:133 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:117 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:124 msgid "Edit" msgstr "Sunting" @@ -875,133 +1148,88 @@ msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:209 #, fuzzy, php-format +msgctxt "1: Action, 2: Topic title" msgid "%1$s \"%2$s\" topic" msgstr "%2$s \"%1$s\" diperbarui" -#: ../connectors/class-wp-stream-connector-blogs.php:39 -msgid "Sites" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:51 -msgid "Archived" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:85 -#: ../connectors/class-wp-stream-connector-blogs.php:90 -#, fuzzy -msgid "Site Admin" -msgstr "Nama Situs" - -#: ../connectors/class-wp-stream-connector-blogs.php:101 +#: ../connectors/class-wp-stream-connector-buddypress.php:113 #, fuzzy -msgid "Site Settings" -msgstr "Pengaturan Stream" - -#: ../connectors/class-wp-stream-connector-blogs.php:116 -#, php-format -msgid "A new site called \"%1$s\" has been created." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:139 -#, php-format -msgid "A new site called \"%1$s\" has been registered." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:170 -#, fuzzy, php-format -msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." -msgstr "\"%2$s\" telah ditambahkan pada \"%1$s\"" - -#: ../connectors/class-wp-stream-connector-blogs.php:201 -#, fuzzy, php-format -msgid "%1$s has been removed from the site \"%2$s\"." -msgstr "\"%2$s\" telah dihapus dari \"%1$s\"" +msgctxt "buddypress" +msgid "BuddyPress" +msgstr "WordPress" -#: ../connectors/class-wp-stream-connector-blogs.php:220 -#: ../connectors/class-wp-stream-connector-gravityforms.php:650 +#: ../connectors/class-wp-stream-connector-buddypress.php:123 #, fuzzy -msgid "marked as spam" -msgstr "Ditandai bukan sebagai Spam" +msgctxt "buddypress" +msgid "Created" +msgstr "Dibuat" -#: ../connectors/class-wp-stream-connector-blogs.php:228 +#: ../connectors/class-wp-stream-connector-buddypress.php:124 #, fuzzy -msgid "marked as not spam" -msgstr "Ditandai bukan sebagai Spam" +msgctxt "buddypress" +msgid "Updated" +msgstr "Telah diperbarui" -#: ../connectors/class-wp-stream-connector-blogs.php:236 +#: ../connectors/class-wp-stream-connector-buddypress.php:125 #, fuzzy -msgid "marked as mature" -msgstr "Ditandai bukan sebagai Spam" +msgctxt "buddypress" +msgid "Activated" +msgstr "Telah diaktifkan" -#: ../connectors/class-wp-stream-connector-blogs.php:244 +#: ../connectors/class-wp-stream-connector-buddypress.php:126 #, fuzzy -msgid "marked as not mature" -msgstr "Ditandai bukan sebagai Spam" - -#: ../connectors/class-wp-stream-connector-blogs.php:252 -msgid "archived" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:260 -msgid "restored from archive" -msgstr "" +msgctxt "buddypress" +msgid "Deactivated" +msgstr "Telah dinonaktifkan" -#: ../connectors/class-wp-stream-connector-blogs.php:268 -#: ../connectors/class-wp-stream-connector-gravityforms.php:497 +#: ../connectors/class-wp-stream-connector-buddypress.php:127 #, fuzzy -msgid "deleted" +msgctxt "buddypress" +msgid "Deleted" msgstr "Dihapus" -#: ../connectors/class-wp-stream-connector-blogs.php:276 -#: ../connectors/class-wp-stream-connector-gravityforms.php:652 -#, fuzzy -msgid "restored" -msgstr "Dikembalikan" - -#: ../connectors/class-wp-stream-connector-blogs.php:286 +#: ../connectors/class-wp-stream-connector-buddypress.php:128 #, fuzzy -msgid "marked as public" +msgctxt "buddypress" +msgid "Marked as spam" msgstr "Ditandai bukan sebagai Spam" -#: ../connectors/class-wp-stream-connector-blogs.php:288 +#: ../connectors/class-wp-stream-connector-buddypress.php:129 #, fuzzy -msgid "marked as private" +msgctxt "buddypress" +msgid "Unmarked as spam" msgstr "Ditandai bukan sebagai Spam" -#: ../connectors/class-wp-stream-connector-blogs.php:302 -#, fuzzy, php-format -msgid "\"%1$s\" has been %2$s." -msgstr "\"%2$s\" telah ditambahkan pada \"%1$s\"" - -#: ../connectors/class-wp-stream-connector-buddypress.php:113 -#, fuzzy -msgid "BuddyPress" -msgstr "WordPress" - #: ../connectors/class-wp-stream-connector-buddypress.php:130 +msgctxt "buddypress" msgid "Promoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:131 +msgctxt "buddypress" msgid "Demoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:142 #, fuzzy +msgctxt "buddypress" msgid "Components" msgstr "Komentar" #: ../connectors/class-wp-stream-connector-buddypress.php:143 +msgctxt "buddypress" msgid "Groups" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:144 #, fuzzy +msgctxt "buddypress" msgid "Activity" msgstr "Telah diaktifkan" #: ../connectors/class-wp-stream-connector-buddypress.php:145 #, fuzzy +msgctxt "buddypress" msgid "Profile fields" msgstr "Sunting Profil" @@ -1020,8 +1248,10 @@ msgstr "Sunting Profil" #: ../connectors/class-wp-stream-connector-gravityforms.php:145 #: ../connectors/class-wp-stream-connector-gravityforms.php:155 #: ../connectors/class-wp-stream-connector-media.php:110 +#: ../connectors/class-wp-stream-connector-posts.php:106 #: ../connectors/class-wp-stream-connector-taxonomies.php:94 #: ../connectors/class-wp-stream-connector-woocommerce.php:220 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:165 msgid "View" msgstr "Lihat" @@ -1051,46 +1281,59 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:226 #: ../connectors/class-wp-stream-connector-buddypress.php:241 #: ../connectors/class-wp-stream-connector-buddypress.php:263 +#: ../extensions/notifications/views/form-templates.php:19 +#: ../extensions/notifications/views/form-templates.php:78 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:173 #, fuzzy msgid "Delete" msgstr "Dihapus" #: ../connectors/class-wp-stream-connector-buddypress.php:284 #: ../connectors/class-wp-stream-connector-buddypress.php:288 +msgctxt "buddypress" msgid "Toolbar" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:292 +msgctxt "buddypress" msgid "Account Deletion" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:296 #, fuzzy +msgctxt "buddypress" msgid "Profile Syncing" msgstr "Sunting Profil" #: ../connectors/class-wp-stream-connector-buddypress.php:300 +msgctxt "buddypress" msgid "Group Creation" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:304 +msgctxt "buddypress" msgid "bbPress Configuration" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:308 +msgctxt "buddypress" msgid "Blog & Forum Comments" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:312 +#, fuzzy +msgctxt "buddypress" msgid "Activity auto-refresh" -msgstr "" +msgstr "Catat Aktifitas untuk" #: ../connectors/class-wp-stream-connector-buddypress.php:316 +msgctxt "buddypress" msgid "Akismet" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:320 #, fuzzy +msgctxt "buddypress" msgid "Avatar Uploads" msgstr "Tampilan Avatar" @@ -1131,13 +1374,13 @@ msgid "\"%1$s\" component %2$s" msgstr "Komentar %1$s %2$s" #: ../connectors/class-wp-stream-connector-buddypress.php:432 +msgctxt "buddypress" msgid "Register" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:433 -#: ../connectors/class-wp-stream-connector-jetpack.php:159 -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 #, fuzzy +msgctxt "buddypress" msgid "Activate" msgstr "Telah diaktifkan" @@ -1216,10 +1459,12 @@ msgid "Removed \"%2$s\" from \"%1$s\"" msgstr "\"%1$s\" dilampirkan pada \"%2$s\"" #: ../connectors/class-wp-stream-connector-buddypress.php:665 +msgctxt "buddypress" msgid "Administrator" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:666 +msgctxt "buddypress" msgid "Moderator" msgstr "" @@ -1235,6 +1480,7 @@ msgstr "\"%2$s\" pada \"%1$s\" telah diperbarui" #: ../connectors/class-wp-stream-connector-buddypress.php:682 #, fuzzy +msgctxt "buddypress" msgid "Member" msgstr "Keanggotaan" @@ -1268,6 +1514,11 @@ msgstr "Menu \"%s\" diperbarui" msgid "Deleted profile field group \"%s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:36 +#: ../connectors/class-wp-stream-connector-comments.php:68 +msgid "Comments" +msgstr "Komentar" + #: ../connectors/class-wp-stream-connector-comments.php:47 msgid "Edited" msgstr "Disunting" @@ -1284,6 +1535,18 @@ msgstr "Diperkenankan" msgid "Unapproved" msgstr "Tidak diperkenankan" +#: ../connectors/class-wp-stream-connector-comments.php:51 +#: ../connectors/class-wp-stream-connector-gravityforms.php:424 +#: ../connectors/class-wp-stream-connector-posts.php:40 +msgid "Trashed" +msgstr "Dibuang" + +#: ../connectors/class-wp-stream-connector-comments.php:52 +#: ../connectors/class-wp-stream-connector-gravityforms.php:425 +#: ../connectors/class-wp-stream-connector-posts.php:41 +msgid "Restored" +msgstr "Dikembalikan" + #: ../connectors/class-wp-stream-connector-comments.php:53 msgid "Marked as Spam" msgstr "Ditandai sebagai Spam" @@ -1360,86 +1623,166 @@ msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:248 #, fuzzy, php-format +msgctxt "" +"1: Parent comment's author, 2: Comment author, 3: Post title, 4: Comment " +"status, 5: Comment type" msgid "Reply to %1$s's %5$s by %2$s on %3$s %4$s" msgstr "Balasan untuk komentar %1$s oleh %2$s pada %3$s %4$s" #: ../connectors/class-wp-stream-connector-comments.php:261 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title 3: Comment status, 4: Comment type" msgid "New %4$s by %1$s on %2$s %3$s" msgstr "Komentart baru oleh %1$s pada %2$s %3$s" #: ../connectors/class-wp-stream-connector-comments.php:295 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s edited" msgstr "Komentar %1$s pada %2$s telah disunting" #: ../connectors/class-wp-stream-connector-comments.php:327 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s deleted permanently" msgstr "Komentar %1$s pada %2$s telah dihapus untuk selamanya" #: ../connectors/class-wp-stream-connector-comments.php:359 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s trashed" msgstr "Komentar %1$s pada %2$s telah dibuang" #: ../connectors/class-wp-stream-connector-comments.php:391 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s restored" msgstr "Komentar %1$s pada %2$s telah dikembalikan" #: ../connectors/class-wp-stream-connector-comments.php:423 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s marked as spam" msgstr "Komentar %1$s pada %2$s telah ditandai sebagai spam" #: ../connectors/class-wp-stream-connector-comments.php:455 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s unmarked as spam" msgstr "Komentar %1$s pada %2$s telah ditandai bukan spam" #: ../connectors/class-wp-stream-connector-comments.php:489 #, fuzzy, php-format +msgctxt "" +"Comment status transition. 1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s %2$s" msgstr "Komentar %1$s %2$s" #: ../connectors/class-wp-stream-connector-comments.php:524 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "Duplicate %3$s by %1$s prevented on %2$s" msgstr "Komentar ganda oleh %1$s pada %2$s telah dicegah" #: ../connectors/class-wp-stream-connector-edd.php:98 +msgctxt "edd" msgid "Easy Digital Downloads" msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:108 +#, fuzzy +msgctxt "edd" +msgid "Created" +msgstr "Dibuat" + +#: ../connectors/class-wp-stream-connector-edd.php:109 +#, fuzzy +msgctxt "edd" +msgid "Updated" +msgstr "Telah diperbarui" + +#: ../connectors/class-wp-stream-connector-edd.php:110 +#, fuzzy +msgctxt "edd" +msgid "Added" +msgstr "Ditambahkan" + +#: ../connectors/class-wp-stream-connector-edd.php:111 +#, fuzzy +msgctxt "edd" +msgid "Deleted" +msgstr "Dihapus" + +#: ../connectors/class-wp-stream-connector-edd.php:112 +#, fuzzy +msgctxt "edd" +msgid "Trashed" +msgstr "Dibuang" + +#: ../connectors/class-wp-stream-connector-edd.php:113 +#, fuzzy +msgctxt "edd" +msgid "Restored" +msgstr "Dikembalikan" + +#: ../connectors/class-wp-stream-connector-edd.php:114 +#, fuzzy +msgctxt "edd" +msgid "Generated" +msgstr "Umum" + +#: ../connectors/class-wp-stream-connector-edd.php:115 +#, fuzzy +msgctxt "edd" +msgid "Imported" +msgstr "Diurutkan" + +#: ../connectors/class-wp-stream-connector-edd.php:116 +#, fuzzy +msgctxt "edd" +msgid "Exported" +msgstr "Diurutkan" + #: ../connectors/class-wp-stream-connector-edd.php:117 +msgctxt "edd" msgid "Revoked" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:128 +msgctxt "edd" msgid "Downloads" msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:129 +#, fuzzy +msgctxt "edd" +msgid "Categories" +msgstr "Dasar Ketegori" + +#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "edd" +msgid "Tags" +msgstr "" + #: ../connectors/class-wp-stream-connector-edd.php:131 #, fuzzy +msgctxt "edd" msgid "Discounts" msgstr "penghubung" #: ../connectors/class-wp-stream-connector-edd.php:132 -#: ../extensions/reports/class-wp-stream-reports.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:146 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:56 +#, fuzzy +msgctxt "edd" msgid "Reports" -msgstr "" +msgstr "Catatan Stream" #: ../connectors/class-wp-stream-connector-edd.php:133 +msgctxt "edd" msgid "API Keys" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:155 #: ../connectors/class-wp-stream-connector-edd.php:182 -#: ../connectors/class-wp-stream-connector-taxonomies.php:93 -#: ../connectors/class-wp-stream-connector-woocommerce.php:216 #, fuzzy, php-format msgid "Edit %s" msgstr "Sunting %s" @@ -1468,6 +1811,7 @@ msgid "Reissue" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:273 +msgctxt "edd" msgid "Banned emails" msgstr "" @@ -1561,6 +1905,7 @@ msgstr "Plugin" #: ../connectors/class-wp-stream-connector-editor.php:112 #, fuzzy, php-format +msgctxt "1: File name, 2: Theme/plugin name" msgid "\"%1$s\" in \"%2$s\" updated" msgstr "%2$s \"%1$s\" diperbarui" @@ -1576,56 +1921,123 @@ msgid "Theme Details" msgstr "Tema" #: ../connectors/class-wp-stream-connector-gravityforms.php:88 +msgctxt "gravityforms" msgid "Gravity Forms" msgstr "" -#: ../connectors/class-wp-stream-connector-gravityforms.php:106 +#: ../connectors/class-wp-stream-connector-gravityforms.php:98 #, fuzzy -msgid "Duplicated" -msgstr "Ganda" - -#: ../connectors/class-wp-stream-connector-gravityforms.php:117 -msgid "Forms" -msgstr "" +msgctxt "gravityforms" +msgid "Created" +msgstr "Dibuat" -#: ../connectors/class-wp-stream-connector-gravityforms.php:119 -msgid "Import/Export" -msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:99 +#, fuzzy +msgctxt "gravityforms" +msgid "Updated" +msgstr "Telah diperbarui" -#: ../connectors/class-wp-stream-connector-gravityforms.php:120 -msgid "Entries" -msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:100 +#, fuzzy +msgctxt "gravityforms" +msgid "Exported" +msgstr "Diurutkan" -#: ../connectors/class-wp-stream-connector-gravityforms.php:121 -msgid "Notes" -msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:101 +#, fuzzy +msgctxt "gravityforms" +msgid "Imported" +msgstr "Diurutkan" -#: ../connectors/class-wp-stream-connector-gravityforms.php:165 +#: ../connectors/class-wp-stream-connector-gravityforms.php:102 #, fuzzy -msgid "Edit Settings" -msgstr "Sunting Pengaturan %s" +msgctxt "gravityforms" +msgid "Added" +msgstr "Ditambahkan" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:103 +#, fuzzy +msgctxt "gravityforms" +msgid "Deleted" +msgstr "Dihapus" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:104 +#, fuzzy +msgctxt "gravityforms" +msgid "Trashed" +msgstr "Dibuang" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:105 +#, fuzzy +msgctxt "gravityforms" +msgid "Restored" +msgstr "Dikembalikan" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:106 +#, fuzzy +msgctxt "gravityforms" +msgid "Duplicated" +msgstr "Ganda" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:117 +#, fuzzy +msgctxt "gravityforms" +msgid "Forms" +msgstr "Pemformatan" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#, fuzzy +msgctxt "gravityforms" +msgid "Settings" +msgstr "Pengaturan" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:119 +msgctxt "gravityforms" +msgid "Import/Export" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:120 +msgctxt "gravityforms" +msgid "Entries" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:121 +msgctxt "gravityforms" +msgid "Notes" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:165 +#, fuzzy +msgid "Edit Settings" +msgstr "Sunting Pengaturan %s" #: ../connectors/class-wp-stream-connector-gravityforms.php:181 +msgctxt "gravityforms" msgid "Output CSS" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:184 +msgctxt "gravityforms" msgid "Output HTML5" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:187 +msgctxt "gravityforms" msgid "No-Conflict Mode" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:190 +msgctxt "gravityforms" msgid "Currency" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:193 +msgctxt "gravityforms" msgid "reCAPTCHA Public Key" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:196 +msgctxt "gravityforms" msgid "reCAPTCHA Private Key" msgstr "" @@ -1670,11 +2082,27 @@ msgstr "Kata kunci %s diganti" msgid "\"%1$s\" notification %2$s from \"%3$s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:422 +#: ../connectors/class-wp-stream-connector-installer.php:45 +msgid "Activated" +msgstr "Telah diaktifkan" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:423 +#: ../connectors/class-wp-stream-connector-installer.php:46 +#: ../connectors/class-wp-stream-connector-widgets.php:60 +msgid "Deactivated" +msgstr "Telah dinonaktifkan" + #: ../connectors/class-wp-stream-connector-gravityforms.php:496 #, php-format msgid "Gravity Forms license key %s" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:497 +#, fuzzy +msgid "deleted" +msgstr "Dihapus" + #: ../connectors/class-wp-stream-connector-gravityforms.php:510 #, fuzzy, php-format msgid "\"%s\" form exported" @@ -1714,11 +2142,21 @@ msgstr "" msgid "Note #%1$d deleted from lead #%2$d on \"%3$s\" form" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:650 +#, fuzzy +msgid "marked as spam" +msgstr "Ditandai bukan sebagai Spam" + #: ../connectors/class-wp-stream-connector-gravityforms.php:651 #, fuzzy msgid "trashed" msgstr "Dibuang" +#: ../connectors/class-wp-stream-connector-gravityforms.php:652 +#, fuzzy +msgid "restored" +msgstr "Dikembalikan" + #: ../connectors/class-wp-stream-connector-gravityforms.php:661 #: ../connectors/class-wp-stream-connector-gravityforms.php:708 #, fuzzy, php-format @@ -1769,11 +2207,17 @@ msgstr "Lihat Catatan Rilis" #: ../connectors/class-wp-stream-connector-installer.php:149 #, fuzzy, php-format +msgctxt "" +"Plugin/theme installation. 1: Type (plugin/theme), 2: Plugin/theme name, 3: " +"Plugin/theme version" msgid "Installed %1$s: %2$s %3$s" msgstr "%1$s terpasang: %2$s %3$s" #: ../connectors/class-wp-stream-connector-installer.php:157 #, fuzzy, php-format +msgctxt "" +"Plugin/theme update. 1: Type (plugin/theme), 2: Plugin/theme name, 3: Plugin/" +"theme version" msgid "Updated %1$s: %2$s %3$s" msgstr "%1$s diperbarui: %2$s %3$s" @@ -1785,11 +2229,13 @@ msgstr "di seluruh jaringan" #: ../connectors/class-wp-stream-connector-installer.php:225 #, fuzzy, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin activated %2$s" msgstr "Plugin \"%1$s\" diaktifkan %2$s" #: ../connectors/class-wp-stream-connector-installer.php:243 #, fuzzy, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin deactivated %2$s" msgstr "Plugin \"%1$s\" dinonaktifkan %2$s" @@ -1819,128 +2265,184 @@ msgid "WordPress updated to %s" msgstr "WordPress diperbarui ke versi %s" #: ../connectors/class-wp-stream-connector-jetpack.php:69 +msgctxt "jetpack" msgid "Jetpack" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:79 +#, fuzzy +msgctxt "jetpack" +msgid "Activated" +msgstr "Telah diaktifkan" + #: ../connectors/class-wp-stream-connector-jetpack.php:80 #, fuzzy +msgctxt "jetpack" msgid "Dectivated" msgstr "Telah dinonaktifkan" #: ../connectors/class-wp-stream-connector-jetpack.php:81 #, fuzzy +msgctxt "jetpack" msgid "Connected" msgstr "Penghubung" #: ../connectors/class-wp-stream-connector-jetpack.php:82 #, fuzzy +msgctxt "jetpack" msgid "Disconnected" msgstr "penghubung" #: ../connectors/class-wp-stream-connector-jetpack.php:83 +msgctxt "jetpack" msgid "Link" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:84 +msgctxt "jetpack" msgid "Unlink" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:85 +#, fuzzy +msgctxt "jetpack" +msgid "Updated" +msgstr "Telah diperbarui" + +#: ../connectors/class-wp-stream-connector-jetpack.php:86 +#, fuzzy +msgctxt "jetpack" +msgid "Added" +msgstr "Ditambahkan" + #: ../connectors/class-wp-stream-connector-jetpack.php:87 -#: ../connectors/class-wp-stream-connector-widgets.php:56 +#, fuzzy +msgctxt "jetpack" msgid "Removed" -msgstr "" +msgstr "Diperkenankan" #: ../connectors/class-wp-stream-connector-jetpack.php:98 +msgctxt "jetpack" msgid "Modules" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:99 +msgctxt "jetpack" msgid "Blogs" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:100 -#: ../connectors/class-wp-stream-connector-users.php:43 -#: ../connectors/class-wp-stream-connector-users.php:70 +#, fuzzy +msgctxt "jetpack" msgid "Users" msgstr "Pengguna" +#: ../connectors/class-wp-stream-connector-jetpack.php:101 +#, fuzzy +msgctxt "jetpack" +msgid "Options" +msgstr "tindakan" + #: ../connectors/class-wp-stream-connector-jetpack.php:102 +msgctxt "jetpack" msgid "Sharing" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:103 +msgctxt "jetpack" msgid "Publicize" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:104 #, fuzzy +msgctxt "jetpack" msgid "Google+ Profile" msgstr "Liat Profil" #: ../connectors/class-wp-stream-connector-jetpack.php:105 -#: ../connectors/class-wp-stream-connector-jetpack.php:203 #, fuzzy +msgctxt "jetpack" msgid "WordPress.com Stats" msgstr "WordPress" #: ../connectors/class-wp-stream-connector-jetpack.php:106 +msgctxt "jetpack" msgid "Carousel" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:107 +msgctxt "jetpack" msgid "Custom CSS" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:108 #, fuzzy +msgctxt "jetpack" msgid "Subscriptions" msgstr "tindakan" +#: ../connectors/class-wp-stream-connector-jetpack.php:109 +#, fuzzy +msgctxt "jetpack" +msgid "Comments" +msgstr "Komentar" + #: ../connectors/class-wp-stream-connector-jetpack.php:110 +msgctxt "jetpack" msgid "Infinite Scroll" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:111 +msgctxt "jetpack" msgid "SSO" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:112 +msgctxt "jetpack" msgid "Likes" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:113 +msgctxt "jetpack" msgid "Mobile" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:114 +#, fuzzy +msgctxt "jetpack" msgid "Monitor" -msgstr "" +msgstr "Sunting" #: ../connectors/class-wp-stream-connector-jetpack.php:115 +msgctxt "jetpack" msgid "Post by Email" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:116 +msgctxt "jetpack" msgid "Related Posts" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:117 #, fuzzy +msgctxt "jetpack" msgid "Site Verification" msgstr "Pengaturan Stream" #: ../connectors/class-wp-stream-connector-jetpack.php:118 -#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgctxt "jetpack" msgid "Tiled Galleries" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:119 #, fuzzy +msgctxt "jetpack" msgid "VideoPress" msgstr "WordPress" #: ../connectors/class-wp-stream-connector-jetpack.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:222 +#: ../extensions/reports/class-wp-stream-reports.php:220 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:174 msgid "Configure" msgstr "" @@ -1950,6 +2452,12 @@ msgstr "" msgid "Deactivate" msgstr "Telah dinonaktifkan" +#: ../connectors/class-wp-stream-connector-jetpack.php:159 +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 +#, fuzzy +msgid "Activate" +msgstr "Telah diaktifkan" + #: ../connectors/class-wp-stream-connector-jetpack.php:174 msgid "Configure module" msgstr "" @@ -1962,6 +2470,11 @@ msgstr "" msgid "Twitter site tag" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:203 +#, fuzzy +msgid "WordPress.com Stats" +msgstr "WordPress" + #: ../connectors/class-wp-stream-connector-jetpack.php:208 msgid "Color Scheme" msgstr "" @@ -2030,6 +2543,10 @@ msgstr "" msgid "Pinterest Site Verification Token" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgid "Tiled Galleries" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:322 #, fuzzy, php-format msgid "%1$s module %2$s" @@ -2238,6 +2755,7 @@ msgstr "Sunting Media" #: ../connectors/class-wp-stream-connector-media.php:126 #, fuzzy, php-format +msgctxt "1: Attachment title, 2: Parent post title" msgid "Attached \"%1$s\" to \"%2$s\"" msgstr "\"%1$s\" dilampirkan pada \"%2$s\"" @@ -2252,7 +2770,6 @@ msgid "Updated \"%s\"" msgstr "\"%s\" diperbarui" #: ../connectors/class-wp-stream-connector-media.php:179 -#: ../connectors/class-wp-stream-connector-menus.php:141 #, php-format msgid "Deleted \"%s\"" msgstr "\"%s\" dihapus" @@ -2277,16 +2794,25 @@ msgstr "Menu \"%s\" dibuat" #: ../connectors/class-wp-stream-connector-menus.php:123 #, fuzzy, php-format +msgctxt "Menu name" msgid "Updated menu \"%s\"" msgstr "Menu \"%s\" diperbarui" +#: ../connectors/class-wp-stream-connector-menus.php:141 +#, php-format +msgctxt "Menu name" +msgid "Deleted \"%s\"" +msgstr "\"%s\" Dihapus" + #: ../connectors/class-wp-stream-connector-menus.php:181 #, fuzzy, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been unassigned from \"%2$s\"" msgstr "Menu \"%1$s\" dilepas dari \"%2$s\"" #: ../connectors/class-wp-stream-connector-menus.php:189 #, fuzzy, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been assigned to \"%2$s\"" msgstr "Menu \"%1$s\" ditempatkan pada \"%2$s\"" @@ -2294,41 +2820,74 @@ msgstr "Menu \"%1$s\" ditempatkan pada \"%2$s\"" msgid "Posts" msgstr "Post" +#: ../connectors/class-wp-stream-connector-posts.php:100 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:159 +#, fuzzy, php-format +msgctxt "Post type singular name" +msgid "Restore %s" +msgstr "Dikembalikan" + +#: ../connectors/class-wp-stream-connector-posts.php:101 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:160 +#, php-format +msgctxt "Post type singular name" +msgid "Delete %s Permenantly" +msgstr "" + +#: ../connectors/class-wp-stream-connector-posts.php:103 +#: ../connectors/class-wp-stream-connector-woocommerce.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:162 +#, fuzzy, php-format +msgctxt "Post type singular name" +msgid "Edit %s" +msgstr "Sunting %s" + +#: ../connectors/class-wp-stream-connector-posts.php:110 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 +#, fuzzy +msgid "Revision" +msgstr "Revisi" + #: ../connectors/class-wp-stream-connector-posts.php:147 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s drafted" msgstr "%2$s \"%1$s\" disusun" #: ../connectors/class-wp-stream-connector-posts.php:154 #: ../connectors/class-wp-stream-connector-posts.php:161 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s published" msgstr "%2$s \"%1$s\" diterbitkan" #: ../connectors/class-wp-stream-connector-posts.php:167 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s unpublished" msgstr "Publikasi %2$s \"%1$s\" dibatalkan" #: ../connectors/class-wp-stream-connector-posts.php:173 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s trashed" msgstr "%2$s %1$s telah dibuang" #: ../connectors/class-wp-stream-connector-posts.php:180 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s restored from trash" msgstr "%2$s \"%1$s\" dihapus dari tong sampah" #: ../connectors/class-wp-stream-connector-posts.php:187 -#: ../connectors/class-wp-stream-connector-taxonomies.php:200 -#: ../connectors/class-wp-stream-connector-woocommerce.php:611 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s updated" msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-posts.php:254 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s deleted from trash" msgstr "%2$s \"%1$s\" dihapus dari tong sampah" @@ -2337,10 +2896,6 @@ msgstr "%2$s \"%1$s\" dihapus dari tong sampah" msgid "Post" msgstr "Post" -#: ../connectors/class-wp-stream-connector-settings.php:122 -msgid "General" -msgstr "Umum" - #: ../connectors/class-wp-stream-connector-settings.php:123 msgid "Writing" msgstr "Penulisan" @@ -2349,8 +2904,11 @@ msgstr "Penulisan" msgid "Reading" msgstr "Baca" +#: ../connectors/class-wp-stream-connector-settings.php:125 +msgid "Discussion" +msgstr "Diskusi" + #: ../connectors/class-wp-stream-connector-settings.php:127 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:97 msgid "Permalinks" msgstr "Pranala" @@ -2377,356 +2935,374 @@ msgstr "Catatan Stream" msgid "Stream Defaults" msgstr "Pengaturan Stream" -#: ../connectors/class-wp-stream-connector-settings.php:208 +#: ../connectors/class-wp-stream-connector-settings.php:233 msgid "Site Title" msgstr "Nama Situs" -#: ../connectors/class-wp-stream-connector-settings.php:209 +#: ../connectors/class-wp-stream-connector-settings.php:234 msgid "Tagline" msgstr "Tagline" -#: ../connectors/class-wp-stream-connector-settings.php:210 +#: ../connectors/class-wp-stream-connector-settings.php:235 msgid "WordPress Address (URL)" msgstr "Alamat WordPress (URL)" -#: ../connectors/class-wp-stream-connector-settings.php:211 +#: ../connectors/class-wp-stream-connector-settings.php:236 msgid "Site Address (URL)" msgstr "Alamat Situs (URL)" -#: ../connectors/class-wp-stream-connector-settings.php:212 +#: ../connectors/class-wp-stream-connector-settings.php:237 msgid "E-mail Address" msgstr "Alamat E-mail" -#: ../connectors/class-wp-stream-connector-settings.php:213 +#: ../connectors/class-wp-stream-connector-settings.php:238 msgid "Membership" msgstr "Keanggotaan" -#: ../connectors/class-wp-stream-connector-settings.php:214 +#: ../connectors/class-wp-stream-connector-settings.php:239 msgid "New User Default Role" msgstr "Peran Standar Pengguna Baru" -#: ../connectors/class-wp-stream-connector-settings.php:215 +#: ../connectors/class-wp-stream-connector-settings.php:240 msgid "Timezone" msgstr "Zona Waktu" -#: ../connectors/class-wp-stream-connector-settings.php:216 +#: ../connectors/class-wp-stream-connector-settings.php:241 msgid "Date Format" msgstr "Format Tanggal" -#: ../connectors/class-wp-stream-connector-settings.php:217 +#: ../connectors/class-wp-stream-connector-settings.php:242 msgid "Time Format" msgstr "Format Waktu" -#: ../connectors/class-wp-stream-connector-settings.php:218 +#: ../connectors/class-wp-stream-connector-settings.php:243 msgid "Week Starts On" msgstr "Pekan Dimulai Pada" -#: ../connectors/class-wp-stream-connector-settings.php:220 -#: ../connectors/class-wp-stream-connector-settings.php:221 +#: ../connectors/class-wp-stream-connector-settings.php:245 +#: ../connectors/class-wp-stream-connector-settings.php:246 msgid "Formatting" msgstr "Pemformatan" -#: ../connectors/class-wp-stream-connector-settings.php:222 +#: ../connectors/class-wp-stream-connector-settings.php:247 msgid "Default Post Category" msgstr "Kategori Standar Pos" -#: ../connectors/class-wp-stream-connector-settings.php:223 +#: ../connectors/class-wp-stream-connector-settings.php:248 msgid "Default Post Format" msgstr "Format Standar Post" -#: ../connectors/class-wp-stream-connector-settings.php:224 +#: ../connectors/class-wp-stream-connector-settings.php:249 #, fuzzy msgid "Mail Server" msgstr "Alamat Server E-mail" -#: ../connectors/class-wp-stream-connector-settings.php:225 +#: ../connectors/class-wp-stream-connector-settings.php:250 #, fuzzy msgid "Login Name" msgstr "Masuk" -#: ../connectors/class-wp-stream-connector-settings.php:226 +#: ../connectors/class-wp-stream-connector-settings.php:251 #, fuzzy msgid "Password" msgstr "Pemulihan Kata Sandi" -#: ../connectors/class-wp-stream-connector-settings.php:227 +#: ../connectors/class-wp-stream-connector-settings.php:252 msgid "Default Mail Category" msgstr "Kategori Standar E-mail" -#: ../connectors/class-wp-stream-connector-settings.php:228 +#: ../connectors/class-wp-stream-connector-settings.php:253 msgid "Update Services" msgstr "Perbarui Layanan" -#: ../connectors/class-wp-stream-connector-settings.php:230 -#: ../connectors/class-wp-stream-connector-settings.php:231 -#: ../connectors/class-wp-stream-connector-settings.php:232 +#: ../connectors/class-wp-stream-connector-settings.php:255 +#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:257 msgid "Front page displays" msgstr "Laman depan menampilkan" -#: ../connectors/class-wp-stream-connector-settings.php:233 +#: ../connectors/class-wp-stream-connector-settings.php:258 msgid "Blog pages show at most" msgstr "Laman blog menampilkan sebanyak" -#: ../connectors/class-wp-stream-connector-settings.php:234 +#: ../connectors/class-wp-stream-connector-settings.php:259 msgid "Syndication feeds show the most recent" msgstr "Sindikasi feed menampilkan sebanyak" -#: ../connectors/class-wp-stream-connector-settings.php:235 +#: ../connectors/class-wp-stream-connector-settings.php:260 msgid "For each article in a feed, show" msgstr "Untuk setiap artikel pada feed, tampilkan" -#: ../connectors/class-wp-stream-connector-settings.php:236 +#: ../connectors/class-wp-stream-connector-settings.php:261 msgid "Search Engine Visibility" msgstr "Visibilitas Mesin Pencari" -#: ../connectors/class-wp-stream-connector-settings.php:238 -#: ../connectors/class-wp-stream-connector-settings.php:239 -#: ../connectors/class-wp-stream-connector-settings.php:240 +#: ../connectors/class-wp-stream-connector-settings.php:263 +#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:265 msgid "Default article settings" msgstr "Pengaturan standar artikel" -#: ../connectors/class-wp-stream-connector-settings.php:241 -#: ../connectors/class-wp-stream-connector-settings.php:242 -#: ../connectors/class-wp-stream-connector-settings.php:243 -#: ../connectors/class-wp-stream-connector-settings.php:244 -#: ../connectors/class-wp-stream-connector-settings.php:245 -#: ../connectors/class-wp-stream-connector-settings.php:246 -#: ../connectors/class-wp-stream-connector-settings.php:247 -#: ../connectors/class-wp-stream-connector-settings.php:248 -#: ../connectors/class-wp-stream-connector-settings.php:249 -#: ../connectors/class-wp-stream-connector-settings.php:250 +#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:267 +#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:270 +#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:274 +#: ../connectors/class-wp-stream-connector-settings.php:275 msgid "Other comment settings" msgstr "Pengaturan lain komentar" -#: ../connectors/class-wp-stream-connector-settings.php:251 -#: ../connectors/class-wp-stream-connector-settings.php:252 +#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:277 msgid "E-mail me whenever" msgstr "Kirimi saya e-mail ketika" -#: ../connectors/class-wp-stream-connector-settings.php:253 -#: ../connectors/class-wp-stream-connector-settings.php:254 +#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:279 msgid "Before a comment appears" msgstr "Sebelum komentar tampil" -#: ../connectors/class-wp-stream-connector-settings.php:255 -#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:281 msgid "Comment Moderation" msgstr "Moderasi Komentar" -#: ../connectors/class-wp-stream-connector-settings.php:257 +#: ../connectors/class-wp-stream-connector-settings.php:282 msgid "Comment Blacklist" msgstr "Daftar Hitam Komentar" -#: ../connectors/class-wp-stream-connector-settings.php:258 +#: ../connectors/class-wp-stream-connector-settings.php:283 #, fuzzy msgid "Show Avatars" msgstr "Lihat semua %s" -#: ../connectors/class-wp-stream-connector-settings.php:259 +#: ../connectors/class-wp-stream-connector-settings.php:284 #, fuzzy msgid "Maximum Rating" msgstr "Rating Maksimal Avatar" -#: ../connectors/class-wp-stream-connector-settings.php:260 +#: ../connectors/class-wp-stream-connector-settings.php:285 msgid "Default Avatar" msgstr "Avatar Standar" -#: ../connectors/class-wp-stream-connector-settings.php:262 -#: ../connectors/class-wp-stream-connector-settings.php:263 -#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:289 #, fuzzy msgid "Thumbnail size" msgstr "Ukuran Gambar Kecil" -#: ../connectors/class-wp-stream-connector-settings.php:265 -#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:291 #, fuzzy msgid "Medium size" msgstr "Ukuran Gambar Sedang" -#: ../connectors/class-wp-stream-connector-settings.php:267 -#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:293 #, fuzzy msgid "Large size" msgstr "Ukuran Gambar Besar" -#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:294 #, fuzzy msgid "Uploading Files" msgstr "Pengaturan Berkas Unggahan" -#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:296 #, fuzzy msgid "Permalink Settings" msgstr "Pranala" -#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:297 msgid "Category base" msgstr "Dasar Ketegori" -#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:298 msgid "Tag base" msgstr "Dasar Tag" -#: ../connectors/class-wp-stream-connector-settings.php:275 +#: ../connectors/class-wp-stream-connector-settings.php:300 msgid "Registration notification" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:301 #, fuzzy msgid "Allow new registrations" msgstr "Pendaftaran pengguna baru" -#: ../connectors/class-wp-stream-connector-settings.php:277 +#: ../connectors/class-wp-stream-connector-settings.php:302 msgid "Add New Users" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:303 msgid "Enable administration menus" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:279 +#: ../connectors/class-wp-stream-connector-settings.php:304 msgid "Site upload space check" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:305 msgid "Site upload space" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:281 +#: ../connectors/class-wp-stream-connector-settings.php:306 msgid "Upload file types" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:282 +#: ../connectors/class-wp-stream-connector-settings.php:307 #, fuzzy msgid "Network Title" msgstr "di seluruh jaringan" -#: ../connectors/class-wp-stream-connector-settings.php:283 +#: ../connectors/class-wp-stream-connector-settings.php:308 msgid "First Post" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:284 +#: ../connectors/class-wp-stream-connector-settings.php:309 msgid "First Page" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:285 +#: ../connectors/class-wp-stream-connector-settings.php:310 #, fuzzy msgid "First Comment" msgstr "Komentar" -#: ../connectors/class-wp-stream-connector-settings.php:286 +#: ../connectors/class-wp-stream-connector-settings.php:311 msgid "First Comment URL" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:312 msgid "First Comment Author" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:313 msgid "Welcome Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:289 +#: ../connectors/class-wp-stream-connector-settings.php:314 msgid "Welcome User Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:315 msgid "Max upload file size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:291 +#: ../connectors/class-wp-stream-connector-settings.php:316 #, fuzzy msgid "Terms Enabled" msgstr "Diaktifkan" -#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:317 msgid "Banned Names" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:293 +#: ../connectors/class-wp-stream-connector-settings.php:318 msgid "Limited Email Registrations" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:294 +#: ../connectors/class-wp-stream-connector-settings.php:319 msgid "Banned Email Domains" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:295 +#: ../connectors/class-wp-stream-connector-settings.php:320 msgid "Network Language" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:296 +#: ../connectors/class-wp-stream-connector-settings.php:321 msgid "Network Admin Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:297 +#: ../connectors/class-wp-stream-connector-settings.php:322 msgid "User Count" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:299 +#: ../connectors/class-wp-stream-connector-settings.php:324 #, fuzzy msgid "Stream Database Version" msgstr "Kosongkan data Stream" -#: ../connectors/class-wp-stream-connector-settings.php:300 +#: ../connectors/class-wp-stream-connector-settings.php:325 #, fuzzy -msgid "Stream Total Sites" +msgid "Stream Connected Sites" msgstr "Pengaturan Stream" -#: ../connectors/class-wp-stream-connector-settings.php:329 +#: ../connectors/class-wp-stream-connector-settings.php:354 msgid "Background Image" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:330 +#: ../connectors/class-wp-stream-connector-settings.php:355 msgid "Background Position" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:331 +#: ../connectors/class-wp-stream-connector-settings.php:356 msgid "Background Repeat" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:332 +#: ../connectors/class-wp-stream-connector-settings.php:357 msgid "Background Attachment" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:333 +#: ../connectors/class-wp-stream-connector-settings.php:358 msgid "Background Color" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:335 +#: ../connectors/class-wp-stream-connector-settings.php:360 msgid "Header Image" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:336 +#: ../connectors/class-wp-stream-connector-settings.php:361 msgid "Text Color" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:471 +#: ../connectors/class-wp-stream-connector-settings.php:496 #, php-format msgid "Edit %s Settings" msgstr "Sunting Pengaturan %s" -#: ../connectors/class-wp-stream-connector-settings.php:604 +#: ../connectors/class-wp-stream-connector-settings.php:624 #, php-format msgid "\"%s\" setting was updated" msgstr "Pengaturan \"%s\" diperbarui" #: ../connectors/class-wp-stream-connector-taxonomies.php:44 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:472 msgid "Taxonomies" msgstr "Taksonomi" +#: ../connectors/class-wp-stream-connector-taxonomies.php:93 +#, fuzzy, php-format +msgctxt "Term singular name" +msgid "Edit %s" +msgstr "Sunting %s" + #: ../connectors/class-wp-stream-connector-taxonomies.php:136 #, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s created" msgstr "%2$s \"%1$s\" dibuat" #: ../connectors/class-wp-stream-connector-taxonomies.php:163 #, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s deleted" msgstr "%2$s \"%1$s\" dihapus" +#: ../connectors/class-wp-stream-connector-taxonomies.php:200 +#, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" +msgid "\"%1$s\" %2$s updated" +msgstr "%2$s \"%1$s\" diperbarui" + +#: ../connectors/class-wp-stream-connector-users.php:43 +#: ../connectors/class-wp-stream-connector-users.php:70 +msgid "Users" +msgstr "Pengguna" + #: ../connectors/class-wp-stream-connector-users.php:56 msgid "Password Reset" msgstr "Pemulihan Kata Sandi" @@ -2765,6 +3341,7 @@ msgstr "Pendaftaran pengguna baru" #: ../connectors/class-wp-stream-connector-users.php:140 #, fuzzy, php-format +msgctxt "1: User display name, 2: User role" msgid "New user account created for %1$s (%2$s)" msgstr "Pengguna baru dibuat untuk %1$s (%2$s)" @@ -2775,6 +3352,7 @@ msgstr "Profil %s diperbarui" #: ../connectors/class-wp-stream-connector-users.php:191 #, fuzzy, php-format +msgctxt "1: User display name, 2: Old role, 3: New role" msgid "%1$s's role was changed from %2$s to %3$s" msgstr "Peran %1$s's diganti dari %2$s menjadi %3$s" @@ -2800,6 +3378,7 @@ msgstr "%s keluar" #: ../connectors/class-wp-stream-connector-users.php:314 #, fuzzy, php-format +msgctxt "1: User display name, 2: User roles" msgid "%1$s's account was deleted (%2$s)" msgstr "Akun %1$s (%2$s) telah dihapus" @@ -2812,6 +3391,10 @@ msgstr "Akun pengguna #%d dihapus" msgid "Widgets" msgstr "Widget" +#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgid "Removed" +msgstr "" + #: ../connectors/class-wp-stream-connector-widgets.php:57 #, fuzzy msgid "Moved" @@ -2841,175 +3424,234 @@ msgid "Edit Widget Area" msgstr "Sunting Area Widget" #: ../connectors/class-wp-stream-connector-widgets.php:196 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" from \"%3$s\" deactivated" -msgstr "" +msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:199 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget from \"%3$s\" deactivated" msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:202 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" from \"%3$s\" deactivated" -msgstr "" +msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:205 -#, php-format +#, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget from \"%3$s\" deactivated" -msgstr "" +msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:245 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" reactivated" msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:248 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget reactivated" msgstr "\"%2$s\" pada \"%1$s\" telah dinonaktifkan" #: ../connectors/class-wp-stream-connector-widgets.php:251 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" reactivated" -msgstr "" +msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:254 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget reactivated" msgstr "Tema \"%s\" diaktifkan" #: ../connectors/class-wp-stream-connector-widgets.php:301 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" removed from \"%3$s\"" -msgstr "" +msgstr "\"%2$s\" telah ditambahkan pada \"%1$s\"" #: ../connectors/class-wp-stream-connector-widgets.php:304 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget removed from \"%3$s\"" msgstr "\"%2$s\" telah dihapus dari \"%1$s\"" #: ../connectors/class-wp-stream-connector-widgets.php:307 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" removed from \"%3$s\"" -msgstr "" +msgstr "Peran %1$s's diganti dari %2$s menjadi %3$s" #: ../connectors/class-wp-stream-connector-widgets.php:310 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget removed from \"%3$s\"" msgstr "\"%2$s\" telah dihapus dari \"%1$s\"" #: ../connectors/class-wp-stream-connector-widgets.php:354 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" added to \"%3$s\"" msgstr "\"%2$s\" telah ditambahkan pada \"%1$s\"" #: ../connectors/class-wp-stream-connector-widgets.php:357 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget added to \"%3$s\"" msgstr "\"%2$s\" telah ditambahkan pada \"%1$s\"" #: ../connectors/class-wp-stream-connector-widgets.php:360 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" added to \"%3$s\"" -msgstr "" +msgstr "\"%2$s\" telah ditambahkan pada \"%1$s\"" #: ../connectors/class-wp-stream-connector-widgets.php:363 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget added to \"%3$s\"" msgstr "\"%2$s\" telah ditambahkan pada \"%1$s\"" #: ../connectors/class-wp-stream-connector-widgets.php:405 #, fuzzy, php-format +msgctxt "Sidebar name" msgid "Widgets reordered in \"%s\"" msgstr "Widget pada \"%s\" telah diurutkan" #: ../connectors/class-wp-stream-connector-widgets.php:460 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" msgstr "Peran %1$s's diganti dari %2$s menjadi %3$s" #: ../connectors/class-wp-stream-connector-widgets.php:463 #, fuzzy, php-format +msgctxt "1: Name, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "\"%2$s\" telah dihapus dari \"%1$s\"" #: ../connectors/class-wp-stream-connector-widgets.php:466 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "Unknown widget type named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" -msgstr "" +msgstr "Peran %1$s's diganti dari %2$s menjadi %3$s" #: ../connectors/class-wp-stream-connector-widgets.php:469 #, fuzzy, php-format +msgctxt "3: Widget ID, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%3$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "\"%2$s\" telah dihapus dari \"%1$s\"" #: ../connectors/class-wp-stream-connector-widgets.php:581 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" in \"%3$s\" updated" msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:584 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget in \"%3$s\" updated" msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:587 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" in \"%3$s\" updated" -msgstr "" +msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:590 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget in \"%3$s\" updated" msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:621 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" created" msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:624 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget created" msgstr "%2$s \"%1$s\" dibuat" #: ../connectors/class-wp-stream-connector-widgets.php:627 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" created" -msgstr "" +msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:630 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget created" msgstr "%2$s \"%1$s\" dibuat" #: ../connectors/class-wp-stream-connector-widgets.php:651 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" deleted" msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:654 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget deleted" msgstr "%2$s \"%1$s\" dihapus" #: ../connectors/class-wp-stream-connector-widgets.php:657 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" deleted" -msgstr "" +msgstr "%2$s \"%1$s\" diperbarui" #: ../connectors/class-wp-stream-connector-widgets.php:660 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget deleted" msgstr "Tema \"%s\" dihapus" #: ../connectors/class-wp-stream-connector-woocommerce.php:89 +msgctxt "woocommerce" msgid "WooCommerce" msgstr "" +#: ../connectors/class-wp-stream-connector-woocommerce.php:99 +#, fuzzy +msgctxt "woocommerce" +msgid "Updated" +msgstr "Telah diperbarui" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:100 +#, fuzzy +msgctxt "woocommerce" +msgid "Created" +msgstr "Dibuat" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +#, fuzzy +msgctxt "woocommerce" +msgid "Trashed" +msgstr "Dibuang" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:102 +#, fuzzy +msgctxt "woocommerce" +msgid "Deleted" +msgstr "Dihapus" + #: ../connectors/class-wp-stream-connector-woocommerce.php:122 +msgctxt "woocommerce" msgid "Attributes" msgstr "" @@ -3069,21 +3711,25 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:301 #, fuzzy, php-format +msgctxt "Order title" msgid "%s created" msgstr "Dibuat" #: ../connectors/class-wp-stream-connector-woocommerce.php:308 #, fuzzy, php-format +msgctxt "Order title" msgid "%s trashed" msgstr "Dibuang" #: ../connectors/class-wp-stream-connector-woocommerce.php:315 #, fuzzy, php-format +msgctxt "Order title" msgid "%s restored from the trash" msgstr "%2$s \"%1$s\" dihapus dari tong sampah" #: ../connectors/class-wp-stream-connector-woocommerce.php:322 #, fuzzy, php-format +msgctxt "Order title" msgid "%s updated" msgstr "Telah diperbarui" @@ -3101,44 +3747,57 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:377 #, fuzzy, php-format +msgctxt "Order title" msgid "\"%s\" deleted from trash" msgstr "%2$s \"%1$s\" dihapus dari tong sampah" #: ../connectors/class-wp-stream-connector-woocommerce.php:411 #, fuzzy, php-format +msgctxt "1. Order title, 2. Old status, 3. New status" msgid "%1$s status changed from %2$s to %3$s" msgstr "Peran %1$s's diganti dari %2$s menjadi %3$s" #: ../connectors/class-wp-stream-connector-woocommerce.php:447 -#, php-format +#, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute created" -msgstr "" +msgstr "Plugin \"%s\" dihapus" #: ../connectors/class-wp-stream-connector-woocommerce.php:466 -#, php-format +#, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute updated" -msgstr "" +msgstr "Plugin \"%s\" dihapus" #: ../connectors/class-wp-stream-connector-woocommerce.php:485 #, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute deleted" msgstr "Plugin \"%s\" dihapus" #: ../connectors/class-wp-stream-connector-woocommerce.php:506 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate created" msgstr "%2$s \"%1$s\" dibuat" #: ../connectors/class-wp-stream-connector-woocommerce.php:525 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate updated" msgstr "Pengaturan \"%s\" diperbarui" #: ../connectors/class-wp-stream-connector-woocommerce.php:555 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%s\" tax rate deleted" msgstr "Tema \"%s\" dihapus" +#: ../connectors/class-wp-stream-connector-woocommerce.php:611 +#, fuzzy, php-format +msgid "\"%1$s\" %2$s updated" +msgstr "%2$s \"%1$s\" diperbarui" + #: ../connectors/class-wp-stream-connector-woocommerce.php:709 msgid "payment gateway" msgstr "" @@ -3155,450 +3814,979 @@ msgstr "" msgid "Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:67 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:59 #, fuzzy +msgctxt "wordpress-seo" msgid "WordPress SEO" msgstr "WordPress" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:69 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Created" +msgstr "Dibuat" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:70 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Updated" +msgstr "Telah diperbarui" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:71 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Added" +msgstr "Ditambahkan" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:72 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Deleted" +msgstr "Dihapus" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:73 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Exported" +msgstr "Diurutkan" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:74 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Imported" +msgstr "Diurutkan" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:85 +msgctxt "wordpress-seo" msgid "Dashboard" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:86 +msgctxt "wordpress-seo" msgid "Titles & Metas" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:87 +msgctxt "wordpress-seo" msgid "Social" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:88 +msgctxt "wordpress-seo" msgid "XML Sitemaps" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:98 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:89 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Permalinks" +msgstr "Pranala" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:90 #, fuzzy +msgctxt "wordpress-seo" msgid "Internal Links" msgstr "Pranala" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:99 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:91 +msgctxt "wordpress-seo" msgid "RSS" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:100 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:92 +msgctxt "wordpress-seo" msgid "Import & Export" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:101 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +msgctxt "wordpress-seo" msgid "Bulk Title Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:102 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +msgctxt "wordpress-seo" msgid "Bulk Description Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:104 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 #, fuzzy +msgctxt "wordpress-seo" msgid "Files" msgstr "Sunting Profil" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:105 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 #, fuzzy +msgctxt "wordpress-seo" msgid "Content" msgstr "Konteks" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:214 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:205 msgid "HeadSpace2" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:215 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:206 msgid "All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:207 msgid "OLD All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:217 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:208 msgid "WooThemes SEO framework" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:218 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:209 msgid "Robots Meta (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:219 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:210 msgid "RSS Footer (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:211 msgid "Yoast Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:229 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 #, php-format msgid "Imported settings from %1$s%2$s" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:231 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:222 msgid ", and deleted old data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:251 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:242 #, fuzzy, php-format msgid "Exported settings%s" msgstr "Sunting Pengaturan %s" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:252 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:243 msgid ", including taxonomy meta" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:264 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:255 #, php-format msgid "Tried importing settings from \"%s\"" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:279 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:270 msgid "Tried creating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:281 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:272 msgid "Tried updating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:283 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:274 msgid "Tried updating htaccess file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:334 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:325 #, fuzzy, php-format msgid "Updated \"%1$s\" of \"%2$s\" %3$s" msgstr "%1$s diperbarui: %2$s %3$s" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:373 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:364 #, fuzzy, php-format msgid "%s settings updated" msgstr "Pengaturan \"%s\" diperbarui" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:380 +msgctxt "wordpress-seo" msgid "Allow tracking of this WordPress install's anonymous data." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:381 +msgctxt "wordpress-seo" msgid "Disable the Advanced part of the WordPress SEO meta box" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:382 +#, fuzzy +msgctxt "wordpress-seo" msgid "Alexa Verification ID" -msgstr "" +msgstr "Pengaturan Stream" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:383 +msgctxt "wordpress-seo" msgid "Bing Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:384 +msgctxt "wordpress-seo" msgid "Google Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:385 +msgctxt "wordpress-seo" msgid "Pinterest" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:386 +msgctxt "wordpress-seo" msgid "Yandex Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:398 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +msgctxt "wordpress-seo" msgid "Enable Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:399 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +msgctxt "wordpress-seo" msgid "Separator between breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +msgctxt "wordpress-seo" msgid "Anchor text for the Homepage" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +msgctxt "wordpress-seo" msgid "Prefix for the breadcrumb path" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +msgctxt "wordpress-seo" msgid "Prefix for Archive breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +msgctxt "wordpress-seo" msgid "Prefix for Search Page breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +msgctxt "wordpress-seo" msgid "Breadcrumb for 404 Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:396 +msgctxt "wordpress-seo" msgid "Remove Blog page from Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:397 +msgctxt "wordpress-seo" msgid "Bold the last page in the breadcrumb" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +msgctxt "wordpress-seo" msgid "Force rewrite titles" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +msgctxt "wordpress-seo" msgid "Noindex subpages of archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:411 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +msgctxt "wordpress-seo" msgid "Use meta keywords tag?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:412 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +msgctxt "wordpress-seo" msgid "Add noodp meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +msgctxt "wordpress-seo" msgid "Add noydir meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +msgctxt "wordpress-seo" msgid "Hide RSD Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +msgctxt "wordpress-seo" msgid "Hide WLW Manifest Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:416 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:407 +msgctxt "wordpress-seo" msgid "Hide Shortlink for posts" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:417 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:408 +msgctxt "wordpress-seo" msgid "Hide RSS Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +msgctxt "wordpress-seo" msgid "Disable the author archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +msgctxt "wordpress-seo" msgid "Disable the date-based archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +msgctxt "wordpress-seo" msgid "Who should have access to the WordPress SEO settings" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +msgctxt "wordpress-seo" msgid "New blogs get the SEO settings from this blog" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +msgctxt "wordpress-seo" msgid "Blog ID" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +msgctxt "wordpress-seo" msgid "" "Strip the category base (usually /category/) from the category " "URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:428 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +msgctxt "wordpress-seo" msgid "Enforce a trailing slash on all category and tag URL's" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:429 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:420 +msgctxt "wordpress-seo" msgid "Remove stop words from slugs." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:421 +msgctxt "wordpress-seo" msgid "Redirect attachment URL's to parent post URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +msgctxt "wordpress-seo" msgid "Remove the ?replytocom variables." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +msgctxt "wordpress-seo" msgid "" "Redirect ugly URL's to clean permalinks. (Not recommended in many cases!)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +msgctxt "wordpress-seo" msgid "Force Transport" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:425 +msgctxt "wordpress-seo" msgid "Prevent cleaning out Google Site Search URL's." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:426 +msgctxt "wordpress-seo" msgid "" "Prevent cleaning out Google Analytics Campaign & Google AdWords Parameters." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +msgctxt "wordpress-seo" msgid "Other variables not to clean" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +msgctxt "wordpress-seo" msgid "Add Open Graph meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:440 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +msgctxt "wordpress-seo" msgid "Facebook Page URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:441 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +msgctxt "wordpress-seo" msgid "Image URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#, fuzzy +msgctxt "wordpress-seo" msgid "Description" -msgstr "" +msgstr "tindakan" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +msgctxt "wordpress-seo" msgid "Add Twitter card meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +msgctxt "wordpress-seo" msgid "Site Twitter Username" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:437 +msgctxt "wordpress-seo" msgid "The default card type to use" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:447 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:438 +msgctxt "wordpress-seo" msgid "Add Google+ specific post meta data (excluding author metadata)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:448 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +msgctxt "wordpress-seo" msgid "Google Publisher Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:451 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +msgctxt "wordpress-seo" msgid "Check this box to enable XML sitemap functionality." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:452 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +msgctxt "wordpress-seo" msgid "Disable author/user sitemap" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:453 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +msgctxt "wordpress-seo" msgid "Ping Yahoo!" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +msgctxt "wordpress-seo" msgid "Ping Ask.com" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +msgctxt "wordpress-seo" msgid "Max entries per sitemap page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:449 +msgctxt "wordpress-seo" msgid "Content to put before each post in the feed" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:450 +msgctxt "wordpress-seo" msgid "Content to put after each post" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +msgctxt "wordpress-seo" msgid "Title template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:464 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +msgctxt "wordpress-seo" msgid "Meta description template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:465 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:456 +msgctxt "wordpress-seo" msgid "Meta keywords template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:466 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:457 +msgctxt "wordpress-seo" msgid "Meta Robots" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:467 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 #, fuzzy +msgctxt "wordpress-seo" msgid "Authorship" msgstr "Penindak" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:468 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +msgctxt "wordpress-seo" msgid "Show date in snippet preview?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:469 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:460 +#, fuzzy +msgctxt "wordpress-seo" msgid "WordPress SEO Meta Box" -msgstr "" +msgstr "WordPress" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:470 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:461 +msgctxt "wordpress-seo" msgid "Breadcrumbs Title" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:471 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:462 #, fuzzy +msgctxt "wordpress-seo" msgid "Post types" msgstr "Post" -#: ../extensions/notifications/class-wp-stream-notifications.php:147 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Taxonomies" +msgstr "Taksonomi" + +#: ../extensions/notifications/class-wp-stream-notifications.php:128 #, fuzzy msgid "Stream Notifications" msgstr "Pengaturan Stream" -#: ../extensions/notifications/class-wp-stream-notifications.php:148 +#: ../extensions/notifications/class-wp-stream-notifications.php:129 msgid "Get notified instantly when important changes are made on your site." msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:150 +#: ../extensions/notifications/class-wp-stream-notifications.php:131 msgid "Create notification rules quickly and easily" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:132 msgid "Smart and powerful trigger matching" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:152 +#: ../extensions/notifications/class-wp-stream-notifications.php:133 msgid "Fully customized e-mail and SMS alerts" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:153 +#: ../extensions/notifications/class-wp-stream-notifications.php:134 msgid "Push alerts to your smartphone or tablet" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:170 -#: ../extensions/notifications/class-wp-stream-notifications.php:171 +#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:152 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:48 +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:32 #, fuzzy msgid "Notifications" msgstr "tindakan" -#: ../extensions/notifications/class-wp-stream-notifications.php:218 +#: ../extensions/notifications/class-wp-stream-notifications.php:199 msgid "Sample Rule" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:272 +#: ../extensions/notifications/class-wp-stream-notifications.php:253 #, fuzzy, php-format msgid "[Site Activity Alert] %s" msgstr "Aktifitas Stream" -#: ../extensions/notifications/class-wp-stream-notifications.php:273 +#: ../extensions/notifications/class-wp-stream-notifications.php:254 #, php-format msgid "The following just happened on your site: %s by %s Date of action: %s" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 -msgid "Publish" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 +msgid "Email" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 -msgid "Unpublish" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 +#, fuzzy +msgid "Send to Users" +msgstr "Sunting %s" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 +msgid "Alert specific users via email." +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 +msgid "Send to Emails" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 +msgid "Alert any arbitrary email address not tied to a specific user." +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 +msgid "Subject" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 +msgid "Data tags are allowed." +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 +msgid "Message" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 +msgid "HTML and data tags are allowed." +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 +msgid "Push" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 +msgid "Missing Required Plugin" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 +#, php-format +msgid "Please install and activate the %1$s plugin to enable push alerts." +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 +msgid "Pushover Notifications" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 +msgid "Required Plugin Not Activated" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 +#, php-format +msgid "Please activate the %1$s plugin to enable push alerts." +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 +msgid "Alert specific users via push." +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 +#, php-format +msgid "Only those users with a %s in their profile can be selected." +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 +msgid "Pushover User Key" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 +msgid "Application key is missing" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 +#, php-format +msgid "Please provide your Application key on %1$s." +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 +msgid "Pushover Notifications settings page" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 +msgid "Application API Token/Key" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 +msgid "Your User Key" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 +#, fuzzy +msgid "New Users" +msgstr "Pengguna" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 +msgid "New Posts are Published" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 +msgid "Roles to Notify" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 +#, fuzzy +msgid "New Comments" +msgstr "Komentar" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 +msgid "Notify the Post Author (for multi-author blogs)" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 +msgid "Notify users when password resets are requested for their accounts" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 +msgid "WordPress Core Update is Available" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 +msgid "Plugin & Theme Updates are Available" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 +msgid "Use Multiple Application Keys" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 +msgid "Verify SSL from api.pushover.net" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 +#, fuzzy +msgid "Enable Logging" +msgstr "Login Gagal" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 +msgid "SMS" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 +msgid "Send to Mobile Number" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 +msgid "Enter mobile numbers without dashes (ex: 8885550000)" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 +msgid "Carrier" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 +msgid "Select your mobile service provider." +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:24 +msgid "3 River Wireless" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:25 +msgid "ACS Wireless" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:26 +msgid "Alltel" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:27 +msgid "AT&T, Cingular, Net10 or Tracfone" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:28 +msgid "Bell Canada" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:29 +msgid "Bell Mobility (Canada), Presidents Choice or Solo Mobile" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:30 +msgid "Bell Mobility" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:31 +msgid "Blue Sky Frog" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:32 +msgid "Bluegrass Cellular" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:33 +msgid "Boost Mobile" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:34 +msgid "BPL Mobile" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:35 +msgid "Carolina West Wireless" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:36 +msgid "Cellular One" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:37 +msgid "Cellular South" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:38 +msgid "CenturyTel" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:39 +msgid "Clearnet" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:40 +msgid "Comcast" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:41 +msgid "Corr Wireless Communications" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:42 +msgid "Cricket" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:43 +msgid "Dobson" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:44 +msgid "Edge Wireless" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:45 +msgid "Fido" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:46 +msgid "Golden Telecom" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:47 +msgid "Houston Cellular" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:48 +msgid "Idea Cellular" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:49 +msgid "Illinois Valley Cellular" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:50 +msgid "Inland Cellular Telephone" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:51 +msgid "MCI" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:52 +msgid "Metrocall" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:53 +msgid "Metrocall 2-way" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:54 +msgid "Metro PCS" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:55 +msgid "Midwest Wireless" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:56 +msgid "Mobilcomm" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:57 +msgid "MTS" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:58 +msgid "Nextel" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:59 +msgid "OnlineBeep" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:60 +msgid "PCS One" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:61 +msgid "Public Service Cellular" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:62 +msgid "Qwest" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:63 +msgid "Rogers AT&T Wireless and Rogers Canada" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:64 +msgid "Satellink" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:65 +msgid "Sprint or Helio" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:66 +msgid "Suncom and Triton" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:67 +#, fuzzy +msgid "Surewest Communications" +msgstr "Pengaturan Stream" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:68 +msgid "T-Mobile" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:69 +msgid "Telus" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:70 +msgid "Unicel" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:71 +msgid "US Cellular" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:72 +msgid "US West" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:73 +msgid "Verizon or Straight Talk" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:74 +msgid "Virgin Mobile" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:75 +msgid "Virgin Mobile Canada" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:76 +msgid "West Central Wireless" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:77 +msgid "Western Wireless" +msgstr "" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 +msgid "Data tags are allowed. HTML is not allowed." +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:49 +msgid "Type" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:50 +msgid "Occurrences" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 +msgid "Publish" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 +msgid "Unpublish" msgstr "" #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 @@ -3612,31 +4800,48 @@ msgid "Stream Notification Rules" msgstr "Pengaturan Stream" #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 +#, fuzzy +msgctxt "Stream Notifications" msgid "New Rule" +msgstr "Cari Catatan" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +msgctxt "Stream Notifications" +msgid "Add New Rule" msgstr "" #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 +#, fuzzy +msgctxt "Stream Notifications" msgid "New Stream Notification Rule" -msgstr "" +msgstr "Pengaturan Stream" #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 +#, fuzzy +msgctxt "Stream Notifications" msgid "Edit Stream Notification Rule" -msgstr "" +msgstr "Pengaturan Stream" #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 +#, fuzzy +msgctxt "Stream Notifications" msgid "View Stream Notification Rule" -msgstr "" +msgstr "Pengaturan Stream" #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 #, fuzzy +msgctxt "Stream Notifications" msgid "Search Rules" msgstr "Cari Catatan" #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 +#, fuzzy +msgctxt "Stream Notifications" msgid "No notification rules found." -msgstr "" +msgstr "Pengaturan Stream" #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 +msgctxt "Stream Notifications" msgid "No notification rules found in Trash." msgstr "" @@ -3652,9 +4857,29 @@ msgstr "" msgid "Data Tags" msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:121 +#: ../extensions/notifications/views/form-templates.php:34 +msgid "+ Add Trigger" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:122 +#: ../extensions/notifications/views/form-templates.php:35 +msgid "+ Add Group" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:129 +msgid "+ Add Alert" +msgstr "" + #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 #, php-format msgid "This rule has occurred %1$s time." +msgid_plural "This rule has occurred %1$s times." +msgstr[0] "" +msgstr[1] "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:168 +msgid "Reset Count" msgstr "" #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 @@ -3743,356 +4968,615 @@ msgid "" "the old theme name when a new theme is activated." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 -msgid "Enter Rule Title here" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 +msgid "Invalid nonce" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 -msgid "Email" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 +msgid "Invalid record ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 +msgid "is" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 +msgid "is not" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 #, fuzzy -msgid "Send to Users" -msgstr "Sunting %s" +msgid "contains" +msgstr "konteks" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 -msgid "Alert specific users via email." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 +msgid "does not contain" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 -msgid "Send to Emails" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 +msgid "starts with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 -msgid "Alert any arbitrary email address not tied to a specific user." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 +msgid "ends with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 -msgid "Subject" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 +msgid "regex" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 -msgid "Data tags are allowed." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 +msgid "equals" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 -msgid "Message" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 +msgid "not equal" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 -msgid "HTML and data tags are allowed." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 +msgid "less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 -msgid "Push" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 +msgid "equal or less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 -msgid "Missing Required Plugin" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 +msgid "greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 -#, php-format -msgid "Please install and activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 +msgid "equal or greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 -msgid "Pushover Notifications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 +msgid "Object ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 -msgid "Required Plugin Not Activated" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:369 +#, fuzzy +msgid "Author Role" +msgstr "Penindak" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 +msgid "IP" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 -#, php-format -msgid "Please activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 +msgid "is on" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 +msgid "is not on" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 +msgid "is before" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 +msgid "is on or before" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 +msgid "is after" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 +msgid "is on or after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 -msgid "Alert specific users via push." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 +msgid "Day of Week" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:370 +msgid "Connector" +msgstr "Penghubung" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 +#, fuzzy +msgid "- Post" +msgstr "Post" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 +#, fuzzy +msgid "- Post: Title" +msgstr "Nama Situs" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 +msgid "- Post: Slug" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 +#, fuzzy +msgid "- Post: Content" +msgstr "Konteks" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 +msgid "- Post: Excerpt" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 +#, fuzzy +msgid "- Post: Author" +msgstr "Penindak" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 +msgid "- Post: Status" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 +#, fuzzy +msgid "- Post: Format" +msgstr "Format Standar Post" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 +msgid "- Post: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 -#, php-format -msgid "Only those users with a %s in their profile can be selected." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 +msgid "- Post: Featured Image" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 -msgid "Pushover User Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 +msgid "None" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 -msgid "Application key is missing" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 +msgid "Has one" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 -#, php-format -msgid "Please provide your Application key on %1$s." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 +msgid "- Post: Comment Status" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 -msgid "Pushover Notifications settings page" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 +msgid "Open" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 -msgid "Application API Token/Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgid "Closed" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 -msgid "Your User Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 +msgid "- Post: Comment Count" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 #, fuzzy -msgid "New Users" +msgid "- User" msgstr "Pengguna" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 -msgid "New Posts are Published" -msgstr "" - -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 -msgid "Roles to Notify" -msgstr "" - -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 #, fuzzy -msgid "New Comments" -msgstr "Komentar" +msgid "- User: Role" +msgstr "Peran Standar Pengguna Baru" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 -msgid "Notify the Post Author (for multi-author blogs)" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 +#, fuzzy +msgid "- Taxonomy" +msgstr "Taksonomi" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 -msgid "Notify users when password resets are requested for their accounts" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 +msgid "- Term" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 -msgid "WordPress Core Update is Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 +msgid "- Term: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 -msgid "Plugin & Theme Updates are Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 +msgid "You cannot save a rule without any triggers." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 -msgid "Use Multiple Application Keys" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 +msgid "You cannot save a rule with an empty first trigger." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 -msgid "Verify SSL from api.pushover.net" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 +msgid "There was an error submitting your request, please try again." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 #, fuzzy -msgid "Enable Logging" -msgstr "Login Gagal" - -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 -msgid "SMS" +msgid "" +"Are you sure you want to reset occurrences for this rule? This cannot be " +"undone." msgstr "" +"Anda yakin ingin menghapus semua catatan Stream? Data tidak dapat " +"dikembalikan." -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 -msgid "Send to Mobile Number" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 +msgid "Enter Rule Title here" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 -msgid "Enter mobile numbers without dashes (ex: 8885550000)" +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 +#, fuzzy +msgid "" +"Users from the selected roles above will have permission to view, create and " +"edit Stream Notifications. However, only site Administrators can access " +"Stream Notifications Settings." msgstr "" +"Pengguna dari peran terpilih di atas akan diizinkan untuk melihat Catatan " +"Stream, namun hanya admin situs yang dapat mengakses pengaturan Stream." -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 -msgid "Carrier" +#: ../extensions/notifications/views/form-templates.php:7 +#: ../extensions/notifications/views/form-templates.php:30 +msgid "AND" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 -msgid "Select your mobile service provider." +#: ../extensions/notifications/views/form-templates.php:8 +#: ../extensions/notifications/views/form-templates.php:31 +msgid "OR" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 -msgid "Data tags are allowed. HTML is not allowed." -msgstr "" +#: ../extensions/notifications/views/form-templates.php:36 +#, fuzzy +msgid "Delete Group" +msgstr "\"%s\" dihapus" -#: ../extensions/reports/class-wp-stream-reports.php:125 +#: ../extensions/reports/class-wp-stream-reports.php:123 msgid "Cheating huh?" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:223 +#: ../extensions/reports/class-wp-stream-reports.php:143 +#: ../extensions/reports/class-wp-stream-reports.php:144 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:51 +msgid "Reports" +msgstr "" + +#: ../extensions/reports/class-wp-stream-reports.php:221 msgid "Cancel" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:224 +#: ../extensions/reports/class-wp-stream-reports.php:222 #, fuzzy msgid "Do you really want to delete this section? This cannot be undone." msgstr "" "Anda yakin ingin menghapus semua catatan Stream? Data tidak dapat " "dikembalikan." -#: ../extensions/reports/class-wp-stream-reports.php:280 +#: ../extensions/reports/class-wp-stream-reports.php:278 #, php-format msgid "" "There's nothing here! Do you want to create some reports?" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:76 +#: ../extensions/reports/includes/class-wp-stream-reports-date-interval.php:42 +msgid "That time interval is not available." +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:68 #, fuzzy msgid "All Activity by Author" msgstr "Catat Aktifitas untuk" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:82 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:74 msgid "All Activity by Action" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:88 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:80 msgid "All Activity by Author Role" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:95 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:87 msgid "Comments Activity by Action" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:126 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:118 +#: ../extensions/reports/views/all.php:3 +#: ../extensions/reports/views/examples.php:2 #, fuzzy msgid "Stream Reports" msgstr "Catatan Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:127 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:119 msgid "" "Generate stunning visuals of logged-in user activity and share them with " "stakeholders or your clients." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:129 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:121 msgid "Fully-interactive charts" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:130 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:122 msgid "Monitor team contributions" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:131 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:123 msgid "Responsive for any screen size" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:275 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:267 msgid "All Others" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:285 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:277 #, php-format msgid "User ID: %d" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:326 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:309 #, fuzzy msgid "All Activity" msgstr "Aktifitas Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:328 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:311 #, fuzzy msgid "Connector Activity" msgstr "Aktifitas Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:336 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:319 #, fuzzy msgid "Context Activity" msgstr "Aktifitas Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:344 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:327 #, fuzzy msgid "Actions Activity" msgstr "Aktifitas Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:379 -#, fuzzy -msgid "Site Activity" -msgstr "Aktifitas Stream" - -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:407 -#, fuzzy -msgid "Author Role" -msgstr "Penindak" - -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:408 -msgid "Connector" -msgstr "Penghubung" - -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:428 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:390 msgid "Site" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:473 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:435 msgid "Unknown" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:529 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:472 +#, php-format +msgid "Report %d" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:491 #, fuzzy, php-format +msgctxt "1: Action 2: Dataset 3: Selector" msgid "%1$s in %2$s by %3$s" msgstr "%1$s diperbarui: %2$s %3$s" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:535 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:497 #, fuzzy, php-format +msgctxt "1: Action 3: Selector" msgid "All %1$s by %3$s" msgstr "Komentar %1$s %2$s" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:542 -#, php-format +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:504 +#, fuzzy, php-format +msgctxt "2: Dataset 3: Selector" msgid "All Activity in %2$s by %3$s" -msgstr "" +msgstr "Komentar %1$s %2$s" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:548 -#, php-format +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 +#, fuzzy, php-format +msgctxt "3: Selector" msgid "All Activity by %3$s" +msgstr "Catat Aktifitas untuk" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:691 +msgid "Chart height" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:783 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:697 +msgid "px" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:699 +msgid "Apply" +msgstr "" + +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:745 #, fuzzy msgid "All Contexts" msgstr "Konteks" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:797 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:759 #, fuzzy msgid "All Actions" msgstr "Tindakan" -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:243 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:57 +#, fuzzy +msgid "" +"Users from the selected roles above will have permission to view and edit " +"Stream Reports. However, only site Administrators can access Stream Reports " +"Settings." +msgstr "" +"Pengguna dari peran terpilih di atas akan diizinkan untuk melihat Catatan " +"Stream, namun hanya admin situs yang dapat mengakses pengaturan Stream." + +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:238 msgid "Uh no! This wasn't suppose to happen :(" msgstr "" -#: ../extensions/reports/views/all.php:6 -msgid "1 site" +#: ../extensions/reports/views/all.php:5 +#, fuzzy +msgid "New Report" +msgstr "Catatan Stream" + +#: ../extensions/reports/views/all.php:20 +msgid "Well, this is embarrassing. There are no reports yet!" +msgstr "" + +#: ../extensions/reports/views/all.php:23 +msgid "Add a new one" +msgstr "" + +#: ../extensions/reports/views/all.php:25 +#, fuzzy +msgid "or" +msgstr "Selanjutnya" + +#: ../extensions/reports/views/all.php:27 +#, fuzzy +msgid "Generate some for me" +msgstr "Buat kunci baru" + +#: ../extensions/reports/views/error.php:2 +msgid "Oops, that's an error!" +msgstr "" + +#: ../extensions/reports/views/error.php:5 +msgid "Yeah... Something went very wrong somewhere along your last actions." +msgstr "" + +#: ../extensions/reports/views/intervals.php:24 +msgid "Start date" +msgstr "" + +#: ../extensions/reports/views/intervals.php:33 +#, fuzzy +msgid "End date" +msgstr "Tanggal" + +#: ../extensions/reports/views/intervals.php:38 +#, fuzzy +msgid "Update" +msgstr "Telah diperbarui" + +#: ../extensions/reports/views/meta-box.php:13 +msgid "in" +msgstr "" + +#: ../extensions/reports/views/meta-box.php:17 +msgid "by" +msgstr "" + +#: ../extensions/reports/views/meta-box.php:31 +msgid "Save" msgstr "" #: ../extensions/reports/views/meta-box.php:39 msgid "Loading…" msgstr "" +#: ../includes/feeds/atom.php:7 ../includes/feeds/rss-2.0.php:21 +msgid "Stream Feed" +msgstr "Feed Stream" + +#: ../stream.php:100 +msgid "Stream: Could not load chosen DB driver." +msgstr "" + +#: ../stream.php:151 +msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." +msgstr "" +"Stream memerlukan PHP versi 5.3+, untuk saat ini plugin tidak diaktifkan." + +#: ../stream.php:192 ../stream.php:207 +msgid "Deprecated Plugins Found" +msgstr "" + +#: ../stream.php:193 +msgid "" +"The following plugins are deprecated and will be deactivated in order to " +"activate" +msgstr "" + +#: ../stream.php:202 #, fuzzy -#~ msgid "The following table is not present in the WordPress database:" -#~ msgstr "Tabel berikut tidak ditemukan pada basis data WordPress:" +msgid "Continue" +msgstr "Konteks" + +#, fuzzy +#~ msgid "Network Stream Activity" +#~ msgstr "Aktifitas Stream" + +#, fuzzy +#~ msgid "Network Admin" +#~ msgstr "di seluruh jaringan" + +#, fuzzy +#~ msgid "Stream Network Settings" +#~ msgstr "Pengaturan Stream" + +#, fuzzy +#~ msgid "Network Settings" +#~ msgstr "Pengaturan Stream" + +#, fuzzy +#~ msgid "New Site Settings" +#~ msgstr "Pengaturan Stream" +#, fuzzy +#~ msgid "Enable Site Access" +#~ msgstr "Akses Peran Pengguna" + +#, fuzzy +#~ msgid "Reset Site Settings" +#~ msgstr "Pengaturan Stream" + +#, fuzzy #~ msgid "" -#~ "Please uninstall the Stream plugin and activate it " -#~ "again." -#~ msgstr "Harap copot plugin Stream lalu pasang kembali." +#~ "Warning: Clicking this will override all site settings with defaults." +#~ msgstr "Peringatan: Semua catatan aktifitas akan dihapus." + +#, fuzzy +#~ msgid "Settings saved." +#~ msgstr "Pengaturan" #, fuzzy -#~ msgid "All site settings have been successfully reset." -#~ msgstr "Semua catatan berhasil dihapus" +#~ msgid "Site Admin" +#~ msgstr "Nama Situs" #, fuzzy -#~ msgid "Stream Extensions" +#~ msgid "Site Settings" #~ msgstr "Pengaturan Stream" +#, fuzzy +#~ msgctxt "1. User's name, 2. Site name, 3. Role" +#~ msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." +#~ msgstr "\"%2$s\" telah ditambahkan pada \"%1$s\"" + +#, fuzzy +#~ msgctxt "1. User's name, 2. Site name" +#~ msgid "%1$s has been removed from the site \"%2$s\"." +#~ msgstr "\"%2$s\" telah dihapus dari \"%1$s\"" + +#, fuzzy +#~ msgid "marked as not spam" +#~ msgstr "Ditandai bukan sebagai Spam" + +#, fuzzy +#~ msgid "marked as mature" +#~ msgstr "Ditandai bukan sebagai Spam" + +#, fuzzy +#~ msgid "marked as not mature" +#~ msgstr "Ditandai bukan sebagai Spam" + +#, fuzzy +#~ msgid "marked as public" +#~ msgstr "Ditandai bukan sebagai Spam" + +#, fuzzy +#~ msgid "marked as private" +#~ msgstr "Ditandai bukan sebagai Spam" + +#, fuzzy +#~ msgctxt "1. Site name, 2. Status" +#~ msgid "\"%1$s\" has been %2$s." +#~ msgstr "\"%2$s\" telah ditambahkan pada \"%1$s\"" + +#, fuzzy +#~ msgid "Site Activity" +#~ msgstr "Aktifitas Stream" + +#, fuzzy +#~ msgid "The following table is not present in the WordPress database:" +#~ msgstr "Tabel berikut tidak ditemukan pada basis data WordPress:" + +#~ msgid "" +#~ "Please uninstall the Stream plugin and activate it " +#~ "again." +#~ msgstr "Harap copot plugin Stream lalu pasang kembali." + #~ msgid "" #~ "Are you sure you want to uninstall and deactivate Stream? This will " #~ "delete all Stream tables from the database and cannot be undone." @@ -4107,18 +5591,6 @@ msgstr "" #~ msgid "Return to Stream Extensions" #~ msgstr "Pengaturan Stream" -#, fuzzy -#~ msgid "Network Stream Activity" -#~ msgstr "Aktifitas Stream" - -#, fuzzy -#~ msgid "View all records" -#~ msgstr "Lihat semua catatan Stream" - -#, fuzzy -#~ msgid "Enable live updates" -#~ msgstr "Pembaruan otomatis" - #, fuzzy #~ msgid "Join Stream Extensions" #~ msgstr "Pengaturan Stream" @@ -4143,36 +5615,6 @@ msgstr "" #~ msgid "Active" #~ msgstr "Telah diaktifkan" -#~ msgid "Stream Feeds Key" -#~ msgstr "Kunci Feed Stream" - -#~ msgid "" -#~ "This is your private key used for accessing feeds of Stream Records " -#~ "securely. You can change your key at any time by generating a new one " -#~ "using the link above." -#~ msgstr "" -#~ "Ini adalah kunci pribadi anda untuk mengakses feed Catatan Stream dengan " -#~ "aman. Anda dapat mengganti kunci anda kapan saja dengan menggunakan " -#~ "pranala di atas." - -#~ msgid "RSS Feed" -#~ msgstr "Feed RSS" - -#~ msgid "JSON Feed" -#~ msgstr "Feed JSON" - -#~ msgid "Access Denied" -#~ msgstr "Akses ditolak" - -#~ msgid "" -#~ "You don't have permission to view this feed, please contact your site " -#~ "Administrator." -#~ msgstr "" -#~ "Anda tidak diizinkan untuk melihat feed ini. Hubungi admin situs anda." - -#~ msgid "Stream Feed" -#~ msgstr "Feed Stream" - #, fuzzy #~ msgid "Stream Database Update Required" #~ msgstr "Kosongkan data Stream" @@ -4184,39 +5626,10 @@ msgstr "" #~ msgid "connectors" #~ msgstr "penghubung" -#, fuzzy -#~ msgid "Show all %s" -#~ msgstr "Lihat semua %s" - -#, fuzzy -#~ msgid "End Date" -#~ msgstr "Tanggal" - -#~ msgid "Live updates" -#~ msgstr "Pembaruan otomatis" - #, fuzzy #~ msgid "Show filters" #~ msgstr "Lihat semua %s" -#, fuzzy -#~ msgid "Role Access" -#~ msgstr "Akses Peran Pengguna" - -#~ msgid "" -#~ "Users from the selected roles above will have permission to view Stream " -#~ "Records. However, only site Administrators can access Stream Settings." -#~ msgstr "" -#~ "Pengguna dari peran terpilih di atas akan diizinkan untuk melihat Catatan " -#~ "Stream, namun hanya admin situs yang dapat mengakses pengaturan Stream." - -#~ msgid "Private Feeds" -#~ msgstr "Feed Pribadi" - -#, fuzzy -#~ msgid "View Codex" -#~ msgstr "Liat Profil" - #~ msgid "Keep Records for" #~ msgstr "Simpan Catatan selama" @@ -4255,14 +5668,6 @@ msgstr "" #~ msgid "Edited %1$s: %2$s" #~ msgstr "%1$s disunting: %2$s" -#, fuzzy -#~ msgid "Restore %s" -#~ msgstr "Dikembalikan" - -#~ msgctxt "Menu name" -#~ msgid "Deleted \"%s\"" -#~ msgstr "\"%s\" Dihapus" - #~ msgid "Mail Server Login Name" #~ msgstr "Nama Login Server E-mail" @@ -4272,10 +5677,6 @@ msgstr "" #~ msgid "Permalink structure" #~ msgstr "Struktur Pranala" -#~ msgctxt "1: Term name, 2: Taxonomy singular label" -#~ msgid "\"%1$s\" %2$s updated" -#~ msgstr "%2$s \"%1$s\" diperbarui" - #~ msgid "Logout" #~ msgstr "Keluar" @@ -4285,9 +5686,6 @@ msgstr "" #~ msgid "%s ago" #~ msgstr "%s yang lalu" -#~ msgid "More" -#~ msgstr "Selanjutnya" - #~ msgid "Number of Records" #~ msgstr "Jumlah Catatan" diff --git a/languages/stream-pl_PL.mo b/languages/stream-pl_PL.mo index 8fdb46bcb..e8a3ea996 100644 Binary files a/languages/stream-pl_PL.mo and b/languages/stream-pl_PL.mo differ diff --git a/languages/stream-pl_PL.po b/languages/stream-pl_PL.po index cbec6b716..51510dcb3 100644 --- a/languages/stream-pl_PL.po +++ b/languages/stream-pl_PL.po @@ -2,15 +2,15 @@ msgid "" msgstr "" "Project-Id-Version: Stream\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/stream\n" -"POT-Creation-Date: 2014-09-27 01:01+1000\n" -"PO-Revision-Date: 2014-09-27 03:35+1000\n" -"Last-Translator: Luke Carbis \n" +"POT-Creation-Date: 2014-10-01 20:35+1000\n" +"PO-Revision-Date: 2014-10-01 20:40+1000\n" +"Last-Translator: Frankie Jarrett \n" "Language-Team: \n" "Language: pl_PL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.3\n" +"X-Generator: Poedit 1.6.9\n" "X-Poedit-Basepath: .\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" @@ -20,106 +20,76 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: ..\n" -#: ../stream.php:100 -msgid "Stream: Could not load chosen DB driver." -msgstr "" - -#: ../stream.php:156 -msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." -msgstr "Stream wymaga PHP w wersji 5.3+, wtyczka jest obecnie NIEAKTYWNA." - -#: ../stream.php:197 ../stream.php:212 -msgid "Deprecated Plugins Found" -msgstr "" - -#: ../stream.php:198 -msgid "" -"The following plugins are deprecated and will be deactivated in order to " -"activate" -msgstr "" - -#: ../stream.php:207 -#, fuzzy -msgid "Continue" -msgstr "Kontekst" - #: ../classes/class-wp-stream-admin.php:144 -msgid "Dismiss this notice and deactivate Stream." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:152 -#: ../classes/class-wp-stream-admin.php:284 -#: ../classes/class-wp-stream-admin.php:862 +#: ../classes/class-wp-stream-admin.php:270 +#: ../classes/class-wp-stream-admin.php:837 #, fuzzy msgid "Connect to Stream" msgstr "Łącznik" -#: ../classes/class-wp-stream-admin.php:156 +#: ../classes/class-wp-stream-admin.php:148 msgid "Stream is almost ready!" msgstr "" -#: ../classes/class-wp-stream-admin.php:160 -#: ../classes/class-wp-stream-admin.php:866 +#: ../classes/class-wp-stream-admin.php:152 +#: ../classes/class-wp-stream-admin.php:841 #, php-format msgid "" -"Stream uses your WordPress.com ID to authorize your account. You can sign up " -"for free at %swordpress.com/signup%s." +"Stream only uses your WordPress.com ID during sign up to authorize your " +"account. You can sign up for free at %swordpress.com/signup%s." msgstr "" -#: ../classes/class-wp-stream-admin.php:166 +#: ../classes/class-wp-stream-admin.php:158 #, php-format msgid "" "Connect to Stream with your %sWordPress.com ID%s to see every change made to " "your site in beautifully organized detail." msgstr "" -#: ../classes/class-wp-stream-admin.php:195 +#: ../classes/class-wp-stream-admin.php:187 #, fuzzy msgid "All site settings have been successfully reset." msgstr "Wszystkie zapisy zostały usunięte." -#: ../classes/class-wp-stream-admin.php:201 +#: ../classes/class-wp-stream-admin.php:193 msgid "You have successfully connected to Stream!" msgstr "" -#: ../classes/class-wp-stream-admin.php:202 +#: ../classes/class-wp-stream-admin.php:194 msgid "" "Check back here regularly to see a history of the changes being made to this " "site." msgstr "" -#: ../classes/class-wp-stream-admin.php:254 -#: ../classes/class-wp-stream-admin.php:255 -#: ../classes/class-wp-stream-admin.php:285 -#: ../classes/class-wp-stream-network.php:115 +#: ../classes/class-wp-stream-admin.php:242 +#: ../classes/class-wp-stream-admin.php:243 +#: ../classes/class-wp-stream-admin.php:271 #: ../connectors/class-wp-stream-connector-settings.php:129 msgid "Stream" msgstr "Stream" -#: ../classes/class-wp-stream-admin.php:265 +#: ../classes/class-wp-stream-admin.php:253 msgid "Stream Settings" msgstr "Ustawienia Stream" -#: ../classes/class-wp-stream-admin.php:266 -#: ../classes/class-wp-stream-admin.php:565 -#: ../connectors/class-wp-stream-connector-bbpress.php:114 -#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#: ../classes/class-wp-stream-admin.php:254 +#: ../classes/class-wp-stream-admin.php:540 #: ../connectors/class-wp-stream-connector-settings.php:100 #: ../connectors/class-wp-stream-connector-settings.php:121 #: ../connectors/class-wp-stream-connector-woocommerce.php:693 msgid "Settings" msgstr "Ustawienia" -#: ../classes/class-wp-stream-admin.php:275 +#: ../classes/class-wp-stream-admin.php:262 #, fuzzy msgid "Stream Account" msgstr "Aktywność Stream" -#: ../classes/class-wp-stream-admin.php:276 +#: ../classes/class-wp-stream-admin.php:263 msgid "Account" msgstr "" -#: ../classes/class-wp-stream-admin.php:354 +#: ../classes/class-wp-stream-admin.php:340 #, fuzzy msgid "" "Are you sure you want to reset all site settings to default? This cannot be " @@ -128,54 +98,54 @@ msgstr "" "Czy na pewno chcesz usunąć całą aktywność Stream z bazy danych? Tej " "czynności nie można cofnąć." -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 #, php-format msgid "This will take about %d minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 msgid "This could take a few minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:385 +#: ../classes/class-wp-stream-admin.php:371 #, fuzzy msgid "Migrating Stream Records" msgstr "Zapisy Stream" -#: ../classes/class-wp-stream-admin.php:386 +#: ../classes/class-wp-stream-admin.php:372 #, fuzzy msgid "Deleting Stream Records" msgstr "Zapisy Stream" -#: ../classes/class-wp-stream-admin.php:387 +#: ../classes/class-wp-stream-admin.php:373 msgid "" "An unknown error occurred during migration. Please try again later or " "contact support." msgstr "" -#: ../classes/class-wp-stream-admin.php:388 -#: ../classes/class-wp-stream-admin.php:389 +#: ../classes/class-wp-stream-admin.php:374 +#: ../classes/class-wp-stream-admin.php:375 msgid "Please do not exit this page until the process has completed." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 #, php-format msgid "Please note: This process will take about %d minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 msgid "Please note: This process could take a few minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:391 +#: ../classes/class-wp-stream-admin.php:377 msgid "" "Please note: Your existing records will not appear in Stream until you have " "migrated them to your account." msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, fuzzy, php-format msgid "" "Are you sure you want to delete all %s existing Stream records without " @@ -184,70 +154,70 @@ msgstr "" "Czy na pewno chcesz usunąć całą aktywność Stream z bazy danych? Tej " "czynności nie można cofnąć." -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, fuzzy, php-format msgid "about %d" msgstr "O WordPressie" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 msgid "a few" msgstr "" -#: ../classes/class-wp-stream-admin.php:421 +#: ../classes/class-wp-stream-admin.php:407 #, php-format msgid "" "Are you sure you want to perform bulk actions on over %d items? This process " "could take a while to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:422 +#: ../classes/class-wp-stream-admin.php:408 msgid "" "The Stream plugin must be deactivated before you can bulk import content " "into WordPress." msgstr "" -#: ../classes/class-wp-stream-admin.php:751 +#: ../classes/class-wp-stream-admin.php:726 msgid "Error retrieving account details." msgstr "" -#: ../classes/class-wp-stream-admin.php:753 +#: ../classes/class-wp-stream-admin.php:728 msgid "" "If this problem persists, please disconnect from Stream and try connecting " "again." msgstr "" -#: ../classes/class-wp-stream-admin.php:760 +#: ../classes/class-wp-stream-admin.php:735 msgid "Free" msgstr "" -#: ../classes/class-wp-stream-admin.php:764 +#: ../classes/class-wp-stream-admin.php:739 msgid "Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:766 +#: ../classes/class-wp-stream-admin.php:741 msgid "Standard" msgstr "" -#: ../classes/class-wp-stream-admin.php:772 +#: ../classes/class-wp-stream-admin.php:747 #, fuzzy, php-format msgctxt "1: Price, 2: Renewal date" msgid "$%1$s on %2$s" msgstr "%1$s z %2$s" -#: ../classes/class-wp-stream-admin.php:774 +#: ../classes/class-wp-stream-admin.php:749 #: ../classes/class-wp-stream-author.php:64 #: ../classes/class-wp-stream-author.php:72 #: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:127 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:287 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:471 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:279 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:433 msgid "N/A" msgstr "n/d" -#: ../classes/class-wp-stream-admin.php:781 +#: ../classes/class-wp-stream-admin.php:756 msgid "Unlimited" msgstr "" -#: ../classes/class-wp-stream-admin.php:784 +#: ../classes/class-wp-stream-admin.php:759 #, php-format msgid "1 Day" msgid_plural "%s Days" @@ -255,109 +225,75 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../classes/class-wp-stream-admin.php:794 +#: ../classes/class-wp-stream-admin.php:769 msgid "Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:798 +#: ../classes/class-wp-stream-admin.php:773 #, fuzzy msgid "Activity History" msgstr "Role zapisywane w dzienniku" -#: ../classes/class-wp-stream-admin.php:803 +#: ../classes/class-wp-stream-admin.php:778 msgid "Next Billing" msgstr "" -#: ../classes/class-wp-stream-admin.php:808 +#: ../classes/class-wp-stream-admin.php:783 #: ../connectors/class-wp-stream-connector-acf.php:81 -#: ../connectors/class-wp-stream-connector-bbpress.php:88 -#: ../connectors/class-wp-stream-connector-blogs.php:50 -#: ../connectors/class-wp-stream-connector-buddypress.php:123 #: ../connectors/class-wp-stream-connector-comments.php:46 -#: ../connectors/class-wp-stream-connector-edd.php:108 -#: ../connectors/class-wp-stream-connector-gravityforms.php:98 #: ../connectors/class-wp-stream-connector-menus.php:39 #: ../connectors/class-wp-stream-connector-posts.php:39 #: ../connectors/class-wp-stream-connector-taxonomies.php:54 #: ../connectors/class-wp-stream-connector-users.php:54 #: ../connectors/class-wp-stream-connector-widgets.php:58 -#: ../connectors/class-wp-stream-connector-woocommerce.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:77 msgid "Created" msgstr "Utworzono" -#: ../classes/class-wp-stream-admin.php:812 +#: ../classes/class-wp-stream-admin.php:787 msgid "Site ID" msgstr "" -#: ../classes/class-wp-stream-admin.php:818 +#: ../classes/class-wp-stream-admin.php:793 msgid "API Key" msgstr "" -#: ../classes/class-wp-stream-admin.php:828 +#: ../classes/class-wp-stream-admin.php:803 #: ../classes/class-wp-stream-list-table.php:49 -#: ../extensions/notifications/class-wp-stream-notifications.php:155 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:133 +#: ../extensions/notifications/class-wp-stream-notifications.php:136 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:125 msgid "Upgrade to Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:830 +#: ../classes/class-wp-stream-admin.php:805 msgid "Modify This Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:872 +#: ../classes/class-wp-stream-admin.php:847 #, php-format msgid "with your %sWordPress.com ID%s" msgstr "" -#: ../classes/class-wp-stream-admin.php:890 +#: ../classes/class-wp-stream-admin.php:865 msgctxt "Haiku line 1" msgid "A transformation" msgstr "" -#: ../classes/class-wp-stream-admin.php:891 +#: ../classes/class-wp-stream-admin.php:866 msgctxt "Haiku line 2" msgid "Like brook, to river, to sea" msgstr "" -#: ../classes/class-wp-stream-admin.php:901 +#: ../classes/class-wp-stream-admin.php:876 msgctxt "Haiku line 3" msgid "I have a secret" msgstr "" -#: ../classes/class-wp-stream-admin.php:917 -#: ../classes/class-wp-stream-admin.php:931 -#: ../classes/class-wp-stream-admin.php:933 +#: ../classes/class-wp-stream-admin.php:892 +#: ../classes/class-wp-stream-admin.php:898 msgid "Stream Records" msgstr "Zapisy Stream" -#: ../classes/class-wp-stream-admin.php:928 -#, php-format -msgid " (1 site)" -msgid_plural " (%d sites)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../classes/class-wp-stream-admin.php:942 -msgid "Get started with Stream for Multisite!" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:943 -msgid "" -"Welcome to your Network Stream! Each site on your network must be connected " -"individually by an admin on that site for it to show here." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:954 -msgid "Stream for Multisite is coming soon!" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:955 -msgid "Access to all the Stream feeds in your network is currently disabled." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:1104 +#: ../classes/class-wp-stream-admin.php:1038 #, fuzzy, php-format msgid "One more result..." msgid_plural "%d more results..." @@ -365,7 +301,7 @@ msgstr[0] "Jeden wynik więcej..." msgstr[1] "Jeden wynik więcej..." msgstr[2] "Jeden wynik więcej..." -#: ../classes/class-wp-stream-api.php:360 +#: ../classes/class-wp-stream-api.php:356 msgid "Stream API Error." msgstr "" @@ -377,16 +313,11 @@ msgstr "" msgid "during WP Cron" msgstr "" -#: ../classes/class-wp-stream-connectors.php:102 +#: ../classes/class-wp-stream-connectors.php:98 #, php-format msgid "%s class wasn't loaded because it doesn't extends the %s class." msgstr "Klasa %s nie została załadowana, ponieważ nie rozszerza klasy %s" -#: ../classes/class-wp-stream-dashboard-widget.php:25 -#, fuzzy -msgid "Network Stream Activity" -msgstr "Aktywność Stream" - #: ../classes/class-wp-stream-dashboard-widget.php:25 msgid "Stream Activity" msgstr "Aktywność Stream" @@ -480,15 +411,15 @@ msgstr "Obecny rok" msgid "Last Year" msgstr "Zeszły rok" -#: ../classes/class-wp-stream-feeds.php:126 +#: ../classes/class-wp-stream-feeds.php:109 msgid "Stream Feeds Key" msgstr "Klucz kanału Stream" -#: ../classes/class-wp-stream-feeds.php:131 +#: ../classes/class-wp-stream-feeds.php:114 msgid "Generate new key" msgstr "Wygeneruj nowy klucz" -#: ../classes/class-wp-stream-feeds.php:134 +#: ../classes/class-wp-stream-feeds.php:117 msgid "" "This is your private key used for accessing feeds of Stream Records " "securely. You can change your key at any time by generating a new one using " @@ -498,24 +429,24 @@ msgstr "" "Zapisów Stream. Możesz w każdej wygenerować nowy klucz klikając na powyższy " "link." -#: ../classes/class-wp-stream-feeds.php:136 +#: ../classes/class-wp-stream-feeds.php:119 msgid "RSS Feed" msgstr "Kanał RSS" -#: ../classes/class-wp-stream-feeds.php:138 +#: ../classes/class-wp-stream-feeds.php:121 #, fuzzy msgid "ATOM Feed" msgstr "Kanał JSON" -#: ../classes/class-wp-stream-feeds.php:140 +#: ../classes/class-wp-stream-feeds.php:123 msgid "JSON Feed" msgstr "Kanał JSON" -#: ../classes/class-wp-stream-feeds.php:188 +#: ../classes/class-wp-stream-feeds.php:171 msgid "Access Denied" msgstr "Wstęp wzbroniony" -#: ../classes/class-wp-stream-feeds.php:189 +#: ../classes/class-wp-stream-feeds.php:172 msgid "" "You don't have permission to view this feed, please contact your site " "Administrator." @@ -552,29 +483,28 @@ msgid "Summary" msgstr "Streszczenie" #: ../classes/class-wp-stream-list-table.php:70 -#: ../connectors/class-wp-stream-connector-acf.php:309 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:492 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:406 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:368 msgid "Author" msgstr "Autor" #: ../classes/class-wp-stream-list-table.php:71 -#: ../classes/class-wp-stream-settings.php:629 +#: ../classes/class-wp-stream-settings.php:603 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:553 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:409 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:371 msgid "Context" msgstr "Kontekst" #: ../classes/class-wp-stream-list-table.php:72 -#: ../classes/class-wp-stream-settings.php:630 +#: ../classes/class-wp-stream-settings.php:604 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:560 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:405 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:367 msgid "Action" msgstr "Akcja" #: ../classes/class-wp-stream-list-table.php:73 -#: ../classes/class-wp-stream-settings.php:631 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:410 +#: ../classes/class-wp-stream-settings.php:605 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:372 msgid "IP Address" msgstr "Adres IP" @@ -646,8 +576,7 @@ msgid "Live updates" msgstr "Aktualizacje na żywo" #: ../classes/class-wp-stream-list-table.php:836 -#: ../classes/class-wp-stream-network.php:303 -#: ../classes/class-wp-stream-settings.php:255 +#: ../classes/class-wp-stream-settings.php:237 msgid "Enabled" msgstr "Włączone" @@ -718,78 +647,6 @@ msgstr "" msgid "All existing records have been deleted from the database." msgstr "Wszystkie zapisy zostały usunięte." -#: ../classes/class-wp-stream-network.php:129 -#, fuzzy -msgid "Network Admin" -msgstr "w całej sieci" - -#: ../classes/class-wp-stream-network.php:169 -#, fuzzy -msgid "Stream Network Settings" -msgstr "Ustawienia Stream" - -#: ../classes/class-wp-stream-network.php:170 -#, fuzzy -msgid "Network Settings" -msgstr "Ustawienia Stream" - -#: ../classes/class-wp-stream-network.php:179 -#, fuzzy -msgid "New Site Settings" -msgstr "Ustawienia Stream" - -#: ../classes/class-wp-stream-network.php:180 -msgid "Site Defaults" -msgstr "" - -#: ../classes/class-wp-stream-network.php:234 -msgid "These settings apply to all sites on the network." -msgstr "" - -#: ../classes/class-wp-stream-network.php:237 -msgid "" -"These default settings will apply to new sites created on the network. These " -"settings do not alter existing sites." -msgstr "" - -#: ../classes/class-wp-stream-network.php:302 -#, fuzzy -msgid "Enable Site Access" -msgstr "Dostęp ról" - -#: ../classes/class-wp-stream-network.php:305 -msgid "" -"When site access is disabled Stream can only be accessed from the network " -"administration." -msgstr "" - -#: ../classes/class-wp-stream-network.php:321 -#, fuzzy -msgid "Reset Site Settings" -msgstr "Ustawienia Stream" - -#: ../classes/class-wp-stream-network.php:324 -#, fuzzy -msgid "Warning: Clicking this will override all site settings with defaults." -msgstr "" -"Ostrzeżenie: Kliknięcie w link wymaże wszystkie zapisy aktywności z bazy " -"danych." - -#: ../classes/class-wp-stream-network.php:408 -#, fuzzy -msgid "Settings saved." -msgstr "Ustawienia" - -#: ../classes/class-wp-stream-network.php:463 -msgid "sites" -msgstr "" - -#: ../classes/class-wp-stream-network.php:480 -#: ../classes/class-wp-stream-network.php:530 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:428 -msgid "Site" -msgstr "" - #: ../classes/class-wp-stream-pointers.php:144 #, fuzzy msgid "Stream Extensions" @@ -803,11 +660,11 @@ msgstr "" msgid "Could not validate record data." msgstr "" -#: ../classes/class-wp-stream-settings.php:85 +#: ../classes/class-wp-stream-settings.php:75 msgid "There was an error in the request" msgstr "Wystąpił błąd w żądaniu" -#: ../classes/class-wp-stream-settings.php:129 +#: ../classes/class-wp-stream-settings.php:119 #, php-format msgid "" "ID: %d\n" @@ -820,24 +677,24 @@ msgstr "" "E-mail: %s\n" "Rola: %s" -#: ../classes/class-wp-stream-settings.php:148 +#: ../classes/class-wp-stream-settings.php:138 msgid "" "Actions performed by the system when a user is not logged in (e.g. auto site " "upgrader, or invoking WP-CLI without --user)" msgstr "" -#: ../classes/class-wp-stream-settings.php:226 +#: ../classes/class-wp-stream-settings.php:208 #: ../connectors/class-wp-stream-connector-settings.php:122 msgid "General" msgstr "Ogólne" -#: ../classes/class-wp-stream-settings.php:230 +#: ../classes/class-wp-stream-settings.php:212 #: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:36 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:60 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:55 msgid "Role Access" msgstr "Dostęp ról" -#: ../classes/class-wp-stream-settings.php:232 +#: ../classes/class-wp-stream-settings.php:214 msgid "" "Users from the selected roles above will have permission to view Stream " "Records. However, only site Administrators can access Stream Settings." @@ -845,11 +702,11 @@ msgstr "" "Użytkownicy z wybranymi powyżej rolami będą mogli wyświetlać Zapisy Stream. " "Tylko Administratorzy jednak otrzymają dostęp do Ustawień Stream." -#: ../classes/class-wp-stream-settings.php:238 +#: ../classes/class-wp-stream-settings.php:220 msgid "Private Feeds" msgstr "Prywatne kanały" -#: ../classes/class-wp-stream-settings.php:241 +#: ../classes/class-wp-stream-settings.php:223 #, fuzzy, php-format msgid "" "Users from the selected roles above will be given a private key found in " @@ -859,54 +716,54 @@ msgstr "" "Użytkowicy z wybranymi powyżej rolami otrzymają prywatny klucz dostępny w " "ich %sprofilu%s, by uzyskać bezpieczny dostęp do kanałów Zapisów Stream." -#: ../classes/class-wp-stream-settings.php:245 +#: ../classes/class-wp-stream-settings.php:227 msgid "View Profile" msgstr "Wyświetl profil" -#: ../classes/class-wp-stream-settings.php:251 +#: ../classes/class-wp-stream-settings.php:233 #, fuzzy msgid "View Codex" msgstr "Wyświetl profil" -#: ../classes/class-wp-stream-settings.php:261 +#: ../classes/class-wp-stream-settings.php:243 msgid "Exclude" msgstr "Wyklucz" -#: ../classes/class-wp-stream-settings.php:265 +#: ../classes/class-wp-stream-settings.php:247 #, fuzzy msgid "Exclude Rules" msgstr "Wyklucz" -#: ../classes/class-wp-stream-settings.php:267 +#: ../classes/class-wp-stream-settings.php:249 msgid "" "Create rules for excluding certain kinds of records from appearing in Stream." msgstr "" -#: ../classes/class-wp-stream-settings.php:595 +#: ../classes/class-wp-stream-settings.php:569 #, php-format msgid "Any %s" msgstr "" -#: ../classes/class-wp-stream-settings.php:610 +#: ../classes/class-wp-stream-settings.php:584 msgid "Add New Rule" msgstr "" -#: ../classes/class-wp-stream-settings.php:611 +#: ../classes/class-wp-stream-settings.php:585 #, fuzzy msgid "Delete Selected Rules" msgstr "Usuń wszystkie zapisy" -#: ../classes/class-wp-stream-settings.php:628 +#: ../classes/class-wp-stream-settings.php:602 #, fuzzy msgid "Author or Role" msgstr "Autorzy i role" -#: ../classes/class-wp-stream-settings.php:632 +#: ../classes/class-wp-stream-settings.php:606 #, fuzzy msgid "Filters" msgstr "Przefiltruj" -#: ../classes/class-wp-stream-settings.php:656 +#: ../classes/class-wp-stream-settings.php:630 #, php-format msgid "1 user" msgid_plural "%s users" @@ -914,43 +771,38 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../classes/class-wp-stream-settings.php:679 +#: ../classes/class-wp-stream-settings.php:653 #, fuzzy msgid "Any Author or Role" msgstr "Autorzy i role" -#: ../classes/class-wp-stream-settings.php:720 +#: ../classes/class-wp-stream-settings.php:694 #, fuzzy msgid "Any Context" msgstr "Kontekst" -#: ../classes/class-wp-stream-settings.php:739 +#: ../classes/class-wp-stream-settings.php:713 #, fuzzy msgid "Any Action" msgstr "Akcja" -#: ../classes/class-wp-stream-settings.php:750 +#: ../classes/class-wp-stream-settings.php:724 #, fuzzy msgid "Any IP Address" msgstr "Adres IP" -#: ../classes/class-wp-stream-settings.php:787 +#: ../classes/class-wp-stream-settings.php:761 msgid "No rules found." msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:71 +msgctxt "acf" msgid "ACF" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:82 -#: ../connectors/class-wp-stream-connector-bbpress.php:89 -#: ../connectors/class-wp-stream-connector-blogs.php:49 -#: ../connectors/class-wp-stream-connector-buddypress.php:124 -#: ../connectors/class-wp-stream-connector-edd.php:109 #: ../connectors/class-wp-stream-connector-editor.php:54 -#: ../connectors/class-wp-stream-connector-gravityforms.php:99 #: ../connectors/class-wp-stream-connector-installer.php:48 -#: ../connectors/class-wp-stream-connector-jetpack.php:85 #: ../connectors/class-wp-stream-connector-media.php:43 #: ../connectors/class-wp-stream-connector-menus.php:40 #: ../connectors/class-wp-stream-connector-posts.php:38 @@ -958,27 +810,16 @@ msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:55 #: ../connectors/class-wp-stream-connector-users.php:53 #: ../connectors/class-wp-stream-connector-widgets.php:62 -#: ../connectors/class-wp-stream-connector-woocommerce.php:99 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:78 msgid "Updated" msgstr "Zaktualizowano" #: ../connectors/class-wp-stream-connector-acf.php:83 -#: ../connectors/class-wp-stream-connector-edd.php:110 -#: ../connectors/class-wp-stream-connector-gravityforms.php:102 -#: ../connectors/class-wp-stream-connector-jetpack.php:86 #: ../connectors/class-wp-stream-connector-widgets.php:55 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:79 msgid "Added" msgstr "Dodano" #: ../connectors/class-wp-stream-connector-acf.php:84 -#: ../connectors/class-wp-stream-connector-bbpress.php:92 -#: ../connectors/class-wp-stream-connector-blogs.php:52 -#: ../connectors/class-wp-stream-connector-buddypress.php:127 #: ../connectors/class-wp-stream-connector-comments.php:55 -#: ../connectors/class-wp-stream-connector-edd.php:111 -#: ../connectors/class-wp-stream-connector-gravityforms.php:103 #: ../connectors/class-wp-stream-connector-installer.php:47 #: ../connectors/class-wp-stream-connector-media.php:44 #: ../connectors/class-wp-stream-connector-menus.php:41 @@ -986,8 +827,6 @@ msgstr "Dodano" #: ../connectors/class-wp-stream-connector-taxonomies.php:56 #: ../connectors/class-wp-stream-connector-users.php:55 #: ../connectors/class-wp-stream-connector-widgets.php:59 -#: ../connectors/class-wp-stream-connector-woocommerce.php:102 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:80 msgid "Deleted" msgstr "Usunięto" @@ -1024,14 +863,17 @@ msgid "\"%1$s\" field in \"%2$s\" %3$s" msgstr "Zaktualizowano \"%1$s\" w \"%2$s\"" #: ../connectors/class-wp-stream-connector-acf.php:252 +msgctxt "acf" msgid "High (after title)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:253 +msgctxt "acf" msgid "Normal (after content)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:254 +msgctxt "acf" msgid "Side" msgstr "" @@ -1042,10 +884,12 @@ msgid "Position of \"%1$s\" updated to \"%2$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:277 +msgctxt "acf" msgid "Seamless (no metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:278 +msgctxt "acf" msgid "Standard (WP metabox)" msgstr "" @@ -1057,65 +901,81 @@ msgstr "Załączono \"%1$s\" do \"%2$s\"" #: ../connectors/class-wp-stream-connector-acf.php:301 #, fuzzy +msgctxt "acf" msgid "Permalink" msgstr "Bezpośrednie odnośniki" #: ../connectors/class-wp-stream-connector-acf.php:302 +#, fuzzy +msgctxt "acf" msgid "Content Editor" -msgstr "" +msgstr "Kontekst" #: ../connectors/class-wp-stream-connector-acf.php:303 +msgctxt "acf" msgid "Excerpt" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:304 #, fuzzy +msgctxt "acf" msgid "Custom Fields" msgstr "Własny nagłówek" #: ../connectors/class-wp-stream-connector-acf.php:305 -#: ../connectors/class-wp-stream-connector-settings.php:125 +#, fuzzy +msgctxt "acf" msgid "Discussion" msgstr "Dyskusja" #: ../connectors/class-wp-stream-connector-acf.php:306 -#: ../connectors/class-wp-stream-connector-comments.php:36 -#: ../connectors/class-wp-stream-connector-comments.php:68 -#: ../connectors/class-wp-stream-connector-jetpack.php:109 +#, fuzzy +msgctxt "acf" msgid "Comments" msgstr "Komentarze" #: ../connectors/class-wp-stream-connector-acf.php:307 #, fuzzy +msgctxt "acf" msgid "Revisions" msgstr "Rewizja" #: ../connectors/class-wp-stream-connector-acf.php:308 +msgctxt "acf" msgid "Slug" msgstr "" +#: ../connectors/class-wp-stream-connector-acf.php:309 +#, fuzzy +msgctxt "acf" +msgid "Author" +msgstr "Autor" + #: ../connectors/class-wp-stream-connector-acf.php:310 #, fuzzy +msgctxt "acf" msgid "Format" msgstr "Formatowanie" #: ../connectors/class-wp-stream-connector-acf.php:311 #, fuzzy +msgctxt "acf" msgid "Featured Image" msgstr "Obrazek w nagłówku" #: ../connectors/class-wp-stream-connector-acf.php:312 -#: ../connectors/class-wp-stream-connector-edd.php:129 #, fuzzy +msgctxt "acf" msgid "Categories" msgstr "Alias kategorii" #: ../connectors/class-wp-stream-connector-acf.php:313 -#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "acf" msgid "Tags" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:314 +msgctxt "acf" msgid "Send Trackbacks" msgstr "" @@ -1155,7 +1015,7 @@ msgstr "" msgid "field group" msgstr "" -#: ../connectors/class-wp-stream-connector-acf.php:494 +#: ../connectors/class-wp-stream-connector-acf.php:495 #, fuzzy, php-format msgctxt "acf" msgid "Updated Order of \"%1$s\" from %2$d to %3$d" @@ -1163,95 +1023,108 @@ msgstr "Zaktualizowano %1$s: %2$s %3$s" #: ../connectors/class-wp-stream-connector-bbpress.php:78 #, fuzzy +msgctxt "bbpress" msgid "bbPress" msgstr "WordPress" +#: ../connectors/class-wp-stream-connector-bbpress.php:88 +#, fuzzy +msgctxt "bbpress" +msgid "Created" +msgstr "Utworzono" + +#: ../connectors/class-wp-stream-connector-bbpress.php:89 +#, fuzzy +msgctxt "bbpress" +msgid "Updated" +msgstr "Zaktualizowano" + #: ../connectors/class-wp-stream-connector-bbpress.php:90 -#: ../connectors/class-wp-stream-connector-buddypress.php:125 -#: ../connectors/class-wp-stream-connector-gravityforms.php:422 -#: ../connectors/class-wp-stream-connector-installer.php:45 -#: ../connectors/class-wp-stream-connector-jetpack.php:79 +#, fuzzy +msgctxt "bbpress" msgid "Activated" msgstr "Włączono" #: ../connectors/class-wp-stream-connector-bbpress.php:91 -#: ../connectors/class-wp-stream-connector-buddypress.php:126 -#: ../connectors/class-wp-stream-connector-gravityforms.php:423 -#: ../connectors/class-wp-stream-connector-installer.php:46 -#: ../connectors/class-wp-stream-connector-widgets.php:60 +#, fuzzy +msgctxt "bbpress" msgid "Deactivated" msgstr "Wyłączono" +#: ../connectors/class-wp-stream-connector-bbpress.php:92 +#, fuzzy +msgctxt "bbpress" +msgid "Deleted" +msgstr "Usunięto" + #: ../connectors/class-wp-stream-connector-bbpress.php:93 -#: ../connectors/class-wp-stream-connector-comments.php:51 -#: ../connectors/class-wp-stream-connector-edd.php:112 -#: ../connectors/class-wp-stream-connector-gravityforms.php:104 -#: ../connectors/class-wp-stream-connector-gravityforms.php:424 -#: ../connectors/class-wp-stream-connector-posts.php:40 -#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +#, fuzzy +msgctxt "bbpress" msgid "Trashed" msgstr "Wyrzucono do kosza" #: ../connectors/class-wp-stream-connector-bbpress.php:94 -#: ../connectors/class-wp-stream-connector-comments.php:52 -#: ../connectors/class-wp-stream-connector-edd.php:113 -#: ../connectors/class-wp-stream-connector-gravityforms.php:105 -#: ../connectors/class-wp-stream-connector-gravityforms.php:425 -#: ../connectors/class-wp-stream-connector-posts.php:41 +#, fuzzy +msgctxt "bbpress" msgid "Restored" msgstr "Przywrócono" #: ../connectors/class-wp-stream-connector-bbpress.php:95 -#: ../connectors/class-wp-stream-connector-edd.php:114 #, fuzzy +msgctxt "bbpress" msgid "Generated" msgstr "Ogólne" #: ../connectors/class-wp-stream-connector-bbpress.php:96 -#: ../connectors/class-wp-stream-connector-edd.php:115 -#: ../connectors/class-wp-stream-connector-gravityforms.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:82 #, fuzzy +msgctxt "bbpress" msgid "Imported" msgstr "Zmieniono kolejność" #: ../connectors/class-wp-stream-connector-bbpress.php:97 -#: ../connectors/class-wp-stream-connector-edd.php:116 -#: ../connectors/class-wp-stream-connector-gravityforms.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:81 #, fuzzy +msgctxt "bbpress" msgid "Exported" msgstr "Zmieniono kolejność" #: ../connectors/class-wp-stream-connector-bbpress.php:98 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgctxt "bbpress" msgid "Closed" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:99 +msgctxt "bbpress" msgid "Opened" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:100 +msgctxt "bbpress" msgid "Sticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:101 +msgctxt "bbpress" msgid "Unsticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:102 -#: ../connectors/class-wp-stream-connector-buddypress.php:128 #, fuzzy +msgctxt "bbpress" msgid "Marked as spam" msgstr "Przywrócono ze spamu" #: ../connectors/class-wp-stream-connector-bbpress.php:103 -#: ../connectors/class-wp-stream-connector-buddypress.php:129 #, fuzzy +msgctxt "bbpress" msgid "Unmarked as spam" msgstr "Przywrócono ze spamu" +#: ../connectors/class-wp-stream-connector-bbpress.php:114 +#, fuzzy +msgctxt "bbpress" +msgid "Settings" +msgstr "Ustawienia" + #: ../connectors/class-wp-stream-connector-bbpress.php:131 #: ../connectors/class-wp-stream-connector-buddypress.php:164 #: ../connectors/class-wp-stream-connector-buddypress.php:223 @@ -1259,8 +1132,8 @@ msgstr "Przywrócono ze spamu" #: ../connectors/class-wp-stream-connector-buddypress.php:254 #: ../connectors/class-wp-stream-connector-comments.php:124 #: ../connectors/class-wp-stream-connector-gravityforms.php:137 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:126 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:133 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:117 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:124 msgid "Edit" msgstr "Edytuj" @@ -1285,137 +1158,84 @@ msgctxt "1: Action, 2: Topic title" msgid "%1$s \"%2$s\" topic" msgstr "Zaktualizowano \"%1$s\" w \"%2$s\"" -#: ../connectors/class-wp-stream-connector-blogs.php:39 -msgid "Sites" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:51 +#: ../connectors/class-wp-stream-connector-buddypress.php:113 #, fuzzy -msgid "Archived" -msgstr "Archiwum" +msgctxt "buddypress" +msgid "BuddyPress" +msgstr "WordPress" -#: ../connectors/class-wp-stream-connector-blogs.php:85 -#: ../connectors/class-wp-stream-connector-blogs.php:90 +#: ../connectors/class-wp-stream-connector-buddypress.php:123 #, fuzzy -msgid "Site Admin" -msgstr "Tytuł witryny" +msgctxt "buddypress" +msgid "Created" +msgstr "Utworzono" -#: ../connectors/class-wp-stream-connector-blogs.php:101 +#: ../connectors/class-wp-stream-connector-buddypress.php:124 #, fuzzy -msgid "Site Settings" -msgstr "Ustawienia Stream" - -#: ../connectors/class-wp-stream-connector-blogs.php:116 -#, fuzzy, php-format -msgctxt "1. Site name" -msgid "A new site called \"%1$s\" has been created." -msgstr "Wyłączono \"%1$s\"" - -#: ../connectors/class-wp-stream-connector-blogs.php:139 -#, fuzzy, php-format -msgctxt "1. Site name" -msgid "A new site called \"%1$s\" has been registered." -msgstr "Wyłączono \"%1$s\"" - -#: ../connectors/class-wp-stream-connector-blogs.php:170 -#, fuzzy, php-format -msgctxt "1. User's name, 2. Site name, 3. Role" -msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." -msgstr "Dodano \"%1$s\" do \"%2$s\"" +msgctxt "buddypress" +msgid "Updated" +msgstr "Zaktualizowano" -#: ../connectors/class-wp-stream-connector-blogs.php:201 -#, fuzzy, php-format -msgctxt "1. User's name, 2. Site name" -msgid "%1$s has been removed from the site \"%2$s\"." -msgstr "Usunięto \"%1$s\" z \"%2$s\"" +#: ../connectors/class-wp-stream-connector-buddypress.php:125 +#, fuzzy +msgctxt "buddypress" +msgid "Activated" +msgstr "Włączono" -#: ../connectors/class-wp-stream-connector-blogs.php:220 -#: ../connectors/class-wp-stream-connector-gravityforms.php:650 +#: ../connectors/class-wp-stream-connector-buddypress.php:126 #, fuzzy -msgid "marked as spam" -msgstr "Przywrócono ze spamu" +msgctxt "buddypress" +msgid "Deactivated" +msgstr "Wyłączono" -#: ../connectors/class-wp-stream-connector-blogs.php:228 +#: ../connectors/class-wp-stream-connector-buddypress.php:127 #, fuzzy -msgid "marked as not spam" -msgstr "Przywrócono ze spamu" +msgctxt "buddypress" +msgid "Deleted" +msgstr "Usunięto" -#: ../connectors/class-wp-stream-connector-blogs.php:236 +#: ../connectors/class-wp-stream-connector-buddypress.php:128 #, fuzzy -msgid "marked as mature" +msgctxt "buddypress" +msgid "Marked as spam" msgstr "Przywrócono ze spamu" -#: ../connectors/class-wp-stream-connector-blogs.php:244 +#: ../connectors/class-wp-stream-connector-buddypress.php:129 #, fuzzy -msgid "marked as not mature" +msgctxt "buddypress" +msgid "Unmarked as spam" msgstr "Przywrócono ze spamu" -#: ../connectors/class-wp-stream-connector-blogs.php:252 -#, fuzzy -msgid "archived" -msgstr "Archiwum" +#: ../connectors/class-wp-stream-connector-buddypress.php:130 +msgctxt "buddypress" +msgid "Promoted" +msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:260 -msgid "restored from archive" +#: ../connectors/class-wp-stream-connector-buddypress.php:131 +msgctxt "buddypress" +msgid "Demoted" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:268 -#: ../connectors/class-wp-stream-connector-gravityforms.php:497 -#, fuzzy -msgid "deleted" -msgstr "Usunięto" - -#: ../connectors/class-wp-stream-connector-blogs.php:276 -#: ../connectors/class-wp-stream-connector-gravityforms.php:652 -#, fuzzy -msgid "restored" -msgstr "Przywrócono" - -#: ../connectors/class-wp-stream-connector-blogs.php:286 -#, fuzzy -msgid "marked as public" -msgstr "Przywrócono ze spamu" - -#: ../connectors/class-wp-stream-connector-blogs.php:288 -#, fuzzy -msgid "marked as private" -msgstr "Przywrócono ze spamu" - -#: ../connectors/class-wp-stream-connector-blogs.php:302 -#, fuzzy, php-format -msgctxt "1. Site name, 2. Status" -msgid "\"%1$s\" has been %2$s." -msgstr "Dodano \"%1$s\" do \"%2$s\"" - -#: ../connectors/class-wp-stream-connector-buddypress.php:113 -#, fuzzy -msgid "BuddyPress" -msgstr "WordPress" - -#: ../connectors/class-wp-stream-connector-buddypress.php:130 -msgid "Promoted" -msgstr "" - -#: ../connectors/class-wp-stream-connector-buddypress.php:131 -msgid "Demoted" -msgstr "" - -#: ../connectors/class-wp-stream-connector-buddypress.php:142 +#: ../connectors/class-wp-stream-connector-buddypress.php:142 #, fuzzy +msgctxt "buddypress" msgid "Components" msgstr "Komentarze" #: ../connectors/class-wp-stream-connector-buddypress.php:143 +msgctxt "buddypress" msgid "Groups" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:144 #, fuzzy +msgctxt "buddypress" msgid "Activity" msgstr "Włączono" #: ../connectors/class-wp-stream-connector-buddypress.php:145 #, fuzzy +msgctxt "buddypress" msgid "Profile fields" msgstr "Profile" @@ -1437,7 +1257,7 @@ msgstr "Edytuj profil" #: ../connectors/class-wp-stream-connector-posts.php:106 #: ../connectors/class-wp-stream-connector-taxonomies.php:94 #: ../connectors/class-wp-stream-connector-woocommerce.php:220 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:174 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:165 msgid "View" msgstr "Zobacz" @@ -1469,47 +1289,57 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:263 #: ../extensions/notifications/views/form-templates.php:19 #: ../extensions/notifications/views/form-templates.php:78 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:181 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:173 #, fuzzy msgid "Delete" msgstr "Usunięto" #: ../connectors/class-wp-stream-connector-buddypress.php:284 #: ../connectors/class-wp-stream-connector-buddypress.php:288 +msgctxt "buddypress" msgid "Toolbar" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:292 +msgctxt "buddypress" msgid "Account Deletion" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:296 #, fuzzy +msgctxt "buddypress" msgid "Profile Syncing" msgstr "Profile" #: ../connectors/class-wp-stream-connector-buddypress.php:300 +msgctxt "buddypress" msgid "Group Creation" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:304 +msgctxt "buddypress" msgid "bbPress Configuration" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:308 +msgctxt "buddypress" msgid "Blog & Forum Comments" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:312 +#, fuzzy +msgctxt "buddypress" msgid "Activity auto-refresh" -msgstr "" +msgstr "Role zapisywane w dzienniku" #: ../connectors/class-wp-stream-connector-buddypress.php:316 +msgctxt "buddypress" msgid "Akismet" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:320 #, fuzzy +msgctxt "buddypress" msgid "Avatar Uploads" msgstr "Wyświetlanie obrazków profilowych" @@ -1550,13 +1380,13 @@ msgid "\"%1$s\" component %2$s" msgstr "Komentarz użytkownika %1$s do %2$s został" #: ../connectors/class-wp-stream-connector-buddypress.php:432 +msgctxt "buddypress" msgid "Register" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:433 -#: ../connectors/class-wp-stream-connector-jetpack.php:159 -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 #, fuzzy +msgctxt "buddypress" msgid "Activate" msgstr "Włączono" @@ -1635,10 +1465,12 @@ msgid "Removed \"%2$s\" from \"%1$s\"" msgstr "Załączono \"%1$s\" do \"%2$s\"" #: ../connectors/class-wp-stream-connector-buddypress.php:665 +msgctxt "buddypress" msgid "Administrator" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:666 +msgctxt "buddypress" msgid "Moderator" msgstr "" @@ -1654,6 +1486,7 @@ msgstr "Zaktualizowano \"%1$s\" w \"%2$s\"" #: ../connectors/class-wp-stream-connector-buddypress.php:682 #, fuzzy +msgctxt "buddypress" msgid "Member" msgstr "Członkostwo" @@ -1687,6 +1520,11 @@ msgstr "Zaktualizowano menu \"%s\"" msgid "Deleted profile field group \"%s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:36 +#: ../connectors/class-wp-stream-connector-comments.php:68 +msgid "Comments" +msgstr "Komentarze" + #: ../connectors/class-wp-stream-connector-comments.php:47 msgid "Edited" msgstr "Edytowano" @@ -1703,6 +1541,18 @@ msgstr "Zatwierdzono" msgid "Unapproved" msgstr "Odrzucono" +#: ../connectors/class-wp-stream-connector-comments.php:51 +#: ../connectors/class-wp-stream-connector-gravityforms.php:424 +#: ../connectors/class-wp-stream-connector-posts.php:40 +msgid "Trashed" +msgstr "Wyrzucono do kosza" + +#: ../connectors/class-wp-stream-connector-comments.php:52 +#: ../connectors/class-wp-stream-connector-gravityforms.php:425 +#: ../connectors/class-wp-stream-connector-posts.php:41 +msgid "Restored" +msgstr "Przywrócono" + #: ../connectors/class-wp-stream-connector-comments.php:53 msgid "Marked as Spam" msgstr "Oznaczono jako spam" @@ -1841,30 +1691,99 @@ msgid "Duplicate %3$s by %1$s prevented on %2$s" msgstr "Zapobiegnięto duplikatowi komentarza użytkownika %1$s do %2$s" #: ../connectors/class-wp-stream-connector-edd.php:98 +msgctxt "edd" msgid "Easy Digital Downloads" msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:108 +#, fuzzy +msgctxt "edd" +msgid "Created" +msgstr "Utworzono" + +#: ../connectors/class-wp-stream-connector-edd.php:109 +#, fuzzy +msgctxt "edd" +msgid "Updated" +msgstr "Zaktualizowano" + +#: ../connectors/class-wp-stream-connector-edd.php:110 +#, fuzzy +msgctxt "edd" +msgid "Added" +msgstr "Dodano" + +#: ../connectors/class-wp-stream-connector-edd.php:111 +#, fuzzy +msgctxt "edd" +msgid "Deleted" +msgstr "Usunięto" + +#: ../connectors/class-wp-stream-connector-edd.php:112 +#, fuzzy +msgctxt "edd" +msgid "Trashed" +msgstr "Wyrzucono do kosza" + +#: ../connectors/class-wp-stream-connector-edd.php:113 +#, fuzzy +msgctxt "edd" +msgid "Restored" +msgstr "Przywrócono" + +#: ../connectors/class-wp-stream-connector-edd.php:114 +#, fuzzy +msgctxt "edd" +msgid "Generated" +msgstr "Ogólne" + +#: ../connectors/class-wp-stream-connector-edd.php:115 +#, fuzzy +msgctxt "edd" +msgid "Imported" +msgstr "Zmieniono kolejność" + +#: ../connectors/class-wp-stream-connector-edd.php:116 +#, fuzzy +msgctxt "edd" +msgid "Exported" +msgstr "Zmieniono kolejność" + #: ../connectors/class-wp-stream-connector-edd.php:117 +msgctxt "edd" msgid "Revoked" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:128 +msgctxt "edd" msgid "Downloads" msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:129 +#, fuzzy +msgctxt "edd" +msgid "Categories" +msgstr "Alias kategorii" + +#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "edd" +msgid "Tags" +msgstr "" + #: ../connectors/class-wp-stream-connector-edd.php:131 #, fuzzy +msgctxt "edd" msgid "Discounts" msgstr "łączniki" #: ../connectors/class-wp-stream-connector-edd.php:132 -#: ../extensions/reports/class-wp-stream-reports.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:146 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:56 +#, fuzzy +msgctxt "edd" msgid "Reports" -msgstr "" +msgstr "Zapisy Stream" #: ../connectors/class-wp-stream-connector-edd.php:133 +msgctxt "edd" msgid "API Keys" msgstr "" @@ -1898,6 +1817,7 @@ msgid "Reissue" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:273 +msgctxt "edd" msgid "Banned emails" msgstr "" @@ -2007,27 +1927,88 @@ msgid "Theme Details" msgstr "Zobacz wszystko" #: ../connectors/class-wp-stream-connector-gravityforms.php:88 +msgctxt "gravityforms" msgid "Gravity Forms" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:98 +#, fuzzy +msgctxt "gravityforms" +msgid "Created" +msgstr "Utworzono" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:99 +#, fuzzy +msgctxt "gravityforms" +msgid "Updated" +msgstr "Zaktualizowano" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:100 +#, fuzzy +msgctxt "gravityforms" +msgid "Exported" +msgstr "Zmieniono kolejność" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:101 +#, fuzzy +msgctxt "gravityforms" +msgid "Imported" +msgstr "Zmieniono kolejność" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:102 +#, fuzzy +msgctxt "gravityforms" +msgid "Added" +msgstr "Dodano" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:103 +#, fuzzy +msgctxt "gravityforms" +msgid "Deleted" +msgstr "Usunięto" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:104 +#, fuzzy +msgctxt "gravityforms" +msgid "Trashed" +msgstr "Wyrzucono do kosza" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:105 +#, fuzzy +msgctxt "gravityforms" +msgid "Restored" +msgstr "Przywrócono" + #: ../connectors/class-wp-stream-connector-gravityforms.php:106 #, fuzzy +msgctxt "gravityforms" msgid "Duplicated" msgstr "Duplikat" #: ../connectors/class-wp-stream-connector-gravityforms.php:117 +#, fuzzy +msgctxt "gravityforms" msgid "Forms" -msgstr "" +msgstr "Formatowanie" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#, fuzzy +msgctxt "gravityforms" +msgid "Settings" +msgstr "Ustawienia" #: ../connectors/class-wp-stream-connector-gravityforms.php:119 +msgctxt "gravityforms" msgid "Import/Export" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:120 +msgctxt "gravityforms" msgid "Entries" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:121 +msgctxt "gravityforms" msgid "Notes" msgstr "" @@ -2037,26 +2018,33 @@ msgid "Edit Settings" msgstr "Edytuj ustawienia %s" #: ../connectors/class-wp-stream-connector-gravityforms.php:181 +#, fuzzy +msgctxt "gravityforms" msgid "Output CSS" -msgstr "" +msgstr "Własne" #: ../connectors/class-wp-stream-connector-gravityforms.php:184 +msgctxt "gravityforms" msgid "Output HTML5" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:187 +msgctxt "gravityforms" msgid "No-Conflict Mode" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:190 +msgctxt "gravityforms" msgid "Currency" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:193 +msgctxt "gravityforms" msgid "reCAPTCHA Public Key" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:196 +msgctxt "gravityforms" msgid "reCAPTCHA Private Key" msgstr "" @@ -2101,11 +2089,27 @@ msgstr "Hasło użytkownika %s zostało zresetowane" msgid "\"%1$s\" notification %2$s from \"%3$s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:422 +#: ../connectors/class-wp-stream-connector-installer.php:45 +msgid "Activated" +msgstr "Włączono" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:423 +#: ../connectors/class-wp-stream-connector-installer.php:46 +#: ../connectors/class-wp-stream-connector-widgets.php:60 +msgid "Deactivated" +msgstr "Wyłączono" + #: ../connectors/class-wp-stream-connector-gravityforms.php:496 #, php-format msgid "Gravity Forms license key %s" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:497 +#, fuzzy +msgid "deleted" +msgstr "Usunięto" + #: ../connectors/class-wp-stream-connector-gravityforms.php:510 #, fuzzy, php-format msgid "\"%s\" form exported" @@ -2145,11 +2149,21 @@ msgstr "" msgid "Note #%1$d deleted from lead #%2$d on \"%3$s\" form" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:650 +#, fuzzy +msgid "marked as spam" +msgstr "Przywrócono ze spamu" + #: ../connectors/class-wp-stream-connector-gravityforms.php:651 #, fuzzy msgid "trashed" msgstr "Wyrzucono do kosza" +#: ../connectors/class-wp-stream-connector-gravityforms.php:652 +#, fuzzy +msgid "restored" +msgstr "Przywrócono" + #: ../connectors/class-wp-stream-connector-gravityforms.php:661 #: ../connectors/class-wp-stream-connector-gravityforms.php:708 #, fuzzy, php-format @@ -2258,135 +2272,185 @@ msgid "WordPress updated to %s" msgstr "WordPress został zaktualizowany do wersji %s" #: ../connectors/class-wp-stream-connector-jetpack.php:69 +msgctxt "jetpack" msgid "Jetpack" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:79 +#, fuzzy +msgctxt "jetpack" +msgid "Activated" +msgstr "Włączono" + #: ../connectors/class-wp-stream-connector-jetpack.php:80 #, fuzzy +msgctxt "jetpack" msgid "Dectivated" msgstr "Wyłączono" #: ../connectors/class-wp-stream-connector-jetpack.php:81 #, fuzzy +msgctxt "jetpack" msgid "Connected" msgstr "Łącznik" #: ../connectors/class-wp-stream-connector-jetpack.php:82 #, fuzzy +msgctxt "jetpack" msgid "Disconnected" msgstr "łączniki" #: ../connectors/class-wp-stream-connector-jetpack.php:83 +msgctxt "jetpack" msgid "Link" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:84 +msgctxt "jetpack" msgid "Unlink" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:85 +#, fuzzy +msgctxt "jetpack" +msgid "Updated" +msgstr "Zaktualizowano" + +#: ../connectors/class-wp-stream-connector-jetpack.php:86 +#, fuzzy +msgctxt "jetpack" +msgid "Added" +msgstr "Dodano" + #: ../connectors/class-wp-stream-connector-jetpack.php:87 -#: ../connectors/class-wp-stream-connector-widgets.php:56 +#, fuzzy +msgctxt "jetpack" msgid "Removed" -msgstr "" +msgstr "Zatwierdzono" #: ../connectors/class-wp-stream-connector-jetpack.php:98 +msgctxt "jetpack" msgid "Modules" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:99 +msgctxt "jetpack" msgid "Blogs" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:100 -#: ../connectors/class-wp-stream-connector-users.php:43 -#: ../connectors/class-wp-stream-connector-users.php:70 +#, fuzzy +msgctxt "jetpack" msgid "Users" msgstr "Użytkownicy" #: ../connectors/class-wp-stream-connector-jetpack.php:101 #, fuzzy +msgctxt "jetpack" msgid "Options" msgstr "akcje" #: ../connectors/class-wp-stream-connector-jetpack.php:102 +msgctxt "jetpack" msgid "Sharing" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:103 +msgctxt "jetpack" msgid "Publicize" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:104 #, fuzzy +msgctxt "jetpack" msgid "Google+ Profile" msgstr "Wyświetl profil" #: ../connectors/class-wp-stream-connector-jetpack.php:105 -#: ../connectors/class-wp-stream-connector-jetpack.php:203 #, fuzzy +msgctxt "jetpack" msgid "WordPress.com Stats" msgstr "WordPress" #: ../connectors/class-wp-stream-connector-jetpack.php:106 +msgctxt "jetpack" msgid "Carousel" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:107 #, fuzzy +msgctxt "jetpack" msgid "Custom CSS" msgstr "Własne" #: ../connectors/class-wp-stream-connector-jetpack.php:108 #, fuzzy +msgctxt "jetpack" msgid "Subscriptions" msgstr "akcje" +#: ../connectors/class-wp-stream-connector-jetpack.php:109 +#, fuzzy +msgctxt "jetpack" +msgid "Comments" +msgstr "Komentarze" + #: ../connectors/class-wp-stream-connector-jetpack.php:110 +msgctxt "jetpack" msgid "Infinite Scroll" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:111 +msgctxt "jetpack" msgid "SSO" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:112 +msgctxt "jetpack" msgid "Likes" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:113 +msgctxt "jetpack" msgid "Mobile" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:114 +#, fuzzy +msgctxt "jetpack" msgid "Monitor" -msgstr "" +msgstr "Edytuj" #: ../connectors/class-wp-stream-connector-jetpack.php:115 +msgctxt "jetpack" msgid "Post by Email" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:116 +msgctxt "jetpack" msgid "Related Posts" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:117 #, fuzzy +msgctxt "jetpack" msgid "Site Verification" msgstr "Ustawienia Stream" #: ../connectors/class-wp-stream-connector-jetpack.php:118 -#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgctxt "jetpack" msgid "Tiled Galleries" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:119 #, fuzzy +msgctxt "jetpack" msgid "VideoPress" msgstr "Filmy" #: ../connectors/class-wp-stream-connector-jetpack.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:222 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:182 +#: ../extensions/reports/class-wp-stream-reports.php:220 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:174 msgid "Configure" msgstr "" @@ -2396,6 +2460,12 @@ msgstr "" msgid "Deactivate" msgstr "Wyłączono" +#: ../connectors/class-wp-stream-connector-jetpack.php:159 +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 +#, fuzzy +msgid "Activate" +msgstr "Włączono" + #: ../connectors/class-wp-stream-connector-jetpack.php:174 msgid "Configure module" msgstr "" @@ -2408,6 +2478,11 @@ msgstr "" msgid "Twitter site tag" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:203 +#, fuzzy +msgid "WordPress.com Stats" +msgstr "WordPress" + #: ../connectors/class-wp-stream-connector-jetpack.php:208 msgid "Color Scheme" msgstr "" @@ -2477,6 +2552,10 @@ msgstr "" msgid "Pinterest Site Verification Token" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgid "Tiled Galleries" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:322 #, fuzzy, php-format msgid "%1$s module %2$s" @@ -2749,14 +2828,14 @@ msgid "Posts" msgstr "Wpisy" #: ../connectors/class-wp-stream-connector-posts.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:168 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:159 #, fuzzy, php-format msgctxt "Post type singular name" msgid "Restore %s" msgstr "Przywrócono" #: ../connectors/class-wp-stream-connector-posts.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:160 #, fuzzy, php-format msgctxt "Post type singular name" msgid "Delete %s Permenantly" @@ -2764,14 +2843,14 @@ msgstr "Usunięto \"%s\"" #: ../connectors/class-wp-stream-connector-posts.php:103 #: ../connectors/class-wp-stream-connector-woocommerce.php:216 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:171 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:162 #, fuzzy, php-format msgctxt "Post type singular name" msgid "Edit %s" msgstr "Edytuj %s" #: ../connectors/class-wp-stream-connector-posts.php:110 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:178 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 msgid "Revision" msgstr "Rewizja" @@ -2830,8 +2909,11 @@ msgstr "Pisanie" msgid "Reading" msgstr "Czytanie" +#: ../connectors/class-wp-stream-connector-settings.php:125 +msgid "Discussion" +msgstr "Dyskusja" + #: ../connectors/class-wp-stream-connector-settings.php:127 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:97 msgid "Permalinks" msgstr "Bezpośrednie odnośniki" @@ -2858,343 +2940,342 @@ msgstr "Zapisy Stream" msgid "Stream Defaults" msgstr "Ustawienia Stream" -#: ../connectors/class-wp-stream-connector-settings.php:208 +#: ../connectors/class-wp-stream-connector-settings.php:233 msgid "Site Title" msgstr "Tytuł witryny" -#: ../connectors/class-wp-stream-connector-settings.php:209 +#: ../connectors/class-wp-stream-connector-settings.php:234 msgid "Tagline" msgstr "Opis" -#: ../connectors/class-wp-stream-connector-settings.php:210 +#: ../connectors/class-wp-stream-connector-settings.php:235 msgid "WordPress Address (URL)" msgstr "Adres WordPressa (URL)" -#: ../connectors/class-wp-stream-connector-settings.php:211 +#: ../connectors/class-wp-stream-connector-settings.php:236 msgid "Site Address (URL)" msgstr "Adres witryny (URL)" -#: ../connectors/class-wp-stream-connector-settings.php:212 +#: ../connectors/class-wp-stream-connector-settings.php:237 msgid "E-mail Address" msgstr "Adres e-mail" -#: ../connectors/class-wp-stream-connector-settings.php:213 +#: ../connectors/class-wp-stream-connector-settings.php:238 msgid "Membership" msgstr "Członkostwo" -#: ../connectors/class-wp-stream-connector-settings.php:214 +#: ../connectors/class-wp-stream-connector-settings.php:239 msgid "New User Default Role" msgstr "Domyślna rola nowych użytkowników" -#: ../connectors/class-wp-stream-connector-settings.php:215 +#: ../connectors/class-wp-stream-connector-settings.php:240 msgid "Timezone" msgstr "Strefa czasowa" -#: ../connectors/class-wp-stream-connector-settings.php:216 +#: ../connectors/class-wp-stream-connector-settings.php:241 msgid "Date Format" msgstr "Format daty" -#: ../connectors/class-wp-stream-connector-settings.php:217 +#: ../connectors/class-wp-stream-connector-settings.php:242 msgid "Time Format" msgstr "Format godziny" -#: ../connectors/class-wp-stream-connector-settings.php:218 +#: ../connectors/class-wp-stream-connector-settings.php:243 msgid "Week Starts On" msgstr "Pierwszy dzień tygodnia" -#: ../connectors/class-wp-stream-connector-settings.php:220 -#: ../connectors/class-wp-stream-connector-settings.php:221 +#: ../connectors/class-wp-stream-connector-settings.php:245 +#: ../connectors/class-wp-stream-connector-settings.php:246 msgid "Formatting" msgstr "Formatowanie" -#: ../connectors/class-wp-stream-connector-settings.php:222 +#: ../connectors/class-wp-stream-connector-settings.php:247 msgid "Default Post Category" msgstr "Domyślna kategoria wpisów" -#: ../connectors/class-wp-stream-connector-settings.php:223 +#: ../connectors/class-wp-stream-connector-settings.php:248 msgid "Default Post Format" msgstr "Domyślny format wpisu" -#: ../connectors/class-wp-stream-connector-settings.php:224 +#: ../connectors/class-wp-stream-connector-settings.php:249 #, fuzzy msgid "Mail Server" msgstr "Adres serwera pocztowego" -#: ../connectors/class-wp-stream-connector-settings.php:225 +#: ../connectors/class-wp-stream-connector-settings.php:250 #, fuzzy msgid "Login Name" msgstr "Zalogowano się" -#: ../connectors/class-wp-stream-connector-settings.php:226 +#: ../connectors/class-wp-stream-connector-settings.php:251 #, fuzzy msgid "Password" msgstr "Zresetowano hasło" -#: ../connectors/class-wp-stream-connector-settings.php:227 +#: ../connectors/class-wp-stream-connector-settings.php:252 msgid "Default Mail Category" msgstr "Domyślna kategoria wpisów dodawanych przez e-mail" -#: ../connectors/class-wp-stream-connector-settings.php:228 +#: ../connectors/class-wp-stream-connector-settings.php:253 msgid "Update Services" msgstr "Usługi aktualizacji" -#: ../connectors/class-wp-stream-connector-settings.php:230 -#: ../connectors/class-wp-stream-connector-settings.php:231 -#: ../connectors/class-wp-stream-connector-settings.php:232 +#: ../connectors/class-wp-stream-connector-settings.php:255 +#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:257 msgid "Front page displays" msgstr "Strona główna wyświetla" -#: ../connectors/class-wp-stream-connector-settings.php:233 +#: ../connectors/class-wp-stream-connector-settings.php:258 msgid "Blog pages show at most" msgstr "Strony blogu wyświetlają maksymalnie" -#: ../connectors/class-wp-stream-connector-settings.php:234 +#: ../connectors/class-wp-stream-connector-settings.php:259 msgid "Syndication feeds show the most recent" msgstr "Kanały nowości wyświetlają ostatnie" -#: ../connectors/class-wp-stream-connector-settings.php:235 +#: ../connectors/class-wp-stream-connector-settings.php:260 msgid "For each article in a feed, show" msgstr "W kanałach nowości wyświetlaj" -#: ../connectors/class-wp-stream-connector-settings.php:236 +#: ../connectors/class-wp-stream-connector-settings.php:261 msgid "Search Engine Visibility" msgstr "Widoczność dla wyszukiwarek" -#: ../connectors/class-wp-stream-connector-settings.php:238 -#: ../connectors/class-wp-stream-connector-settings.php:239 -#: ../connectors/class-wp-stream-connector-settings.php:240 +#: ../connectors/class-wp-stream-connector-settings.php:263 +#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:265 msgid "Default article settings" msgstr "Domyślne ustawienia nowych artykułów" -#: ../connectors/class-wp-stream-connector-settings.php:241 -#: ../connectors/class-wp-stream-connector-settings.php:242 -#: ../connectors/class-wp-stream-connector-settings.php:243 -#: ../connectors/class-wp-stream-connector-settings.php:244 -#: ../connectors/class-wp-stream-connector-settings.php:245 -#: ../connectors/class-wp-stream-connector-settings.php:246 -#: ../connectors/class-wp-stream-connector-settings.php:247 -#: ../connectors/class-wp-stream-connector-settings.php:248 -#: ../connectors/class-wp-stream-connector-settings.php:249 -#: ../connectors/class-wp-stream-connector-settings.php:250 +#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:267 +#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:270 +#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:274 +#: ../connectors/class-wp-stream-connector-settings.php:275 msgid "Other comment settings" msgstr "Pozostałe ustawienia komentarzy" -#: ../connectors/class-wp-stream-connector-settings.php:251 -#: ../connectors/class-wp-stream-connector-settings.php:252 +#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:277 msgid "E-mail me whenever" msgstr "Wyślij mi e-maila za każdym razem, kiedy" -#: ../connectors/class-wp-stream-connector-settings.php:253 -#: ../connectors/class-wp-stream-connector-settings.php:254 +#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:279 msgid "Before a comment appears" msgstr "Nim komentarz pojawi się na blogu," -#: ../connectors/class-wp-stream-connector-settings.php:255 -#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:281 msgid "Comment Moderation" msgstr "Moderacja komentarzy" -#: ../connectors/class-wp-stream-connector-settings.php:257 +#: ../connectors/class-wp-stream-connector-settings.php:282 msgid "Comment Blacklist" msgstr "Czarna lista komentarzy" -#: ../connectors/class-wp-stream-connector-settings.php:258 +#: ../connectors/class-wp-stream-connector-settings.php:283 #, fuzzy msgid "Show Avatars" msgstr "Wszystko: %s" -#: ../connectors/class-wp-stream-connector-settings.php:259 +#: ../connectors/class-wp-stream-connector-settings.php:284 #, fuzzy msgid "Maximum Rating" msgstr "Najwyższa dozwolona kategoria" -#: ../connectors/class-wp-stream-connector-settings.php:260 +#: ../connectors/class-wp-stream-connector-settings.php:285 msgid "Default Avatar" msgstr "Domyślny obrazek profilowy" -#: ../connectors/class-wp-stream-connector-settings.php:262 -#: ../connectors/class-wp-stream-connector-settings.php:263 -#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:289 #, fuzzy msgid "Thumbnail size" msgstr "Rozmiar miniatury" -#: ../connectors/class-wp-stream-connector-settings.php:265 -#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:291 #, fuzzy msgid "Medium size" msgstr "Średni rozmiar" -#: ../connectors/class-wp-stream-connector-settings.php:267 -#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:293 #, fuzzy msgid "Large size" msgstr "Duży rozmiar" -#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:294 #, fuzzy msgid "Uploading Files" msgstr "Porządkowanie wysyłanych plików" -#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:296 #, fuzzy msgid "Permalink Settings" msgstr "Bezpośrednie odnośniki" -#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:297 msgid "Category base" msgstr "Alias kategorii" -#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:298 msgid "Tag base" msgstr "Alias tagów" -#: ../connectors/class-wp-stream-connector-settings.php:275 +#: ../connectors/class-wp-stream-connector-settings.php:300 msgid "Registration notification" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:301 #, fuzzy msgid "Allow new registrations" msgstr "Rejestracja użytkownika" -#: ../connectors/class-wp-stream-connector-settings.php:277 +#: ../connectors/class-wp-stream-connector-settings.php:302 msgid "Add New Users" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:303 msgid "Enable administration menus" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:279 +#: ../connectors/class-wp-stream-connector-settings.php:304 msgid "Site upload space check" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:305 msgid "Site upload space" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:281 +#: ../connectors/class-wp-stream-connector-settings.php:306 msgid "Upload file types" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:282 +#: ../connectors/class-wp-stream-connector-settings.php:307 #, fuzzy msgid "Network Title" msgstr "w całej sieci" -#: ../connectors/class-wp-stream-connector-settings.php:283 +#: ../connectors/class-wp-stream-connector-settings.php:308 msgid "First Post" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:284 +#: ../connectors/class-wp-stream-connector-settings.php:309 msgid "First Page" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:285 +#: ../connectors/class-wp-stream-connector-settings.php:310 #, fuzzy msgid "First Comment" msgstr "Komentarze" -#: ../connectors/class-wp-stream-connector-settings.php:286 +#: ../connectors/class-wp-stream-connector-settings.php:311 msgid "First Comment URL" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:312 msgid "First Comment Author" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:313 msgid "Welcome Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:289 +#: ../connectors/class-wp-stream-connector-settings.php:314 msgid "Welcome User Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:315 msgid "Max upload file size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:291 +#: ../connectors/class-wp-stream-connector-settings.php:316 #, fuzzy msgid "Terms Enabled" msgstr "Włączone" -#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:317 msgid "Banned Names" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:293 +#: ../connectors/class-wp-stream-connector-settings.php:318 msgid "Limited Email Registrations" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:294 +#: ../connectors/class-wp-stream-connector-settings.php:319 msgid "Banned Email Domains" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:295 +#: ../connectors/class-wp-stream-connector-settings.php:320 msgid "Network Language" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:296 +#: ../connectors/class-wp-stream-connector-settings.php:321 msgid "Network Admin Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:297 +#: ../connectors/class-wp-stream-connector-settings.php:322 msgid "User Count" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:299 +#: ../connectors/class-wp-stream-connector-settings.php:324 #, fuzzy msgid "Stream Database Version" msgstr "Wyczyść bazę danych Stream" -#: ../connectors/class-wp-stream-connector-settings.php:300 +#: ../connectors/class-wp-stream-connector-settings.php:325 #, fuzzy -msgid "Stream Total Sites" +msgid "Stream Connected Sites" msgstr "Ustawienia Stream" -#: ../connectors/class-wp-stream-connector-settings.php:329 +#: ../connectors/class-wp-stream-connector-settings.php:354 msgid "Background Image" msgstr "Obrazek tła" -#: ../connectors/class-wp-stream-connector-settings.php:330 +#: ../connectors/class-wp-stream-connector-settings.php:355 msgid "Background Position" msgstr "Położenie tła" -#: ../connectors/class-wp-stream-connector-settings.php:331 +#: ../connectors/class-wp-stream-connector-settings.php:356 msgid "Background Repeat" msgstr "Powtarzanie tła" -#: ../connectors/class-wp-stream-connector-settings.php:332 +#: ../connectors/class-wp-stream-connector-settings.php:357 msgid "Background Attachment" msgstr "Zaczepienie tła" -#: ../connectors/class-wp-stream-connector-settings.php:333 +#: ../connectors/class-wp-stream-connector-settings.php:358 msgid "Background Color" msgstr "Kolor tła" -#: ../connectors/class-wp-stream-connector-settings.php:335 +#: ../connectors/class-wp-stream-connector-settings.php:360 msgid "Header Image" msgstr "Obrazek w nagłówku" -#: ../connectors/class-wp-stream-connector-settings.php:336 +#: ../connectors/class-wp-stream-connector-settings.php:361 msgid "Text Color" msgstr "Kolor tekstu" -#: ../connectors/class-wp-stream-connector-settings.php:471 +#: ../connectors/class-wp-stream-connector-settings.php:496 #, php-format msgid "Edit %s Settings" msgstr "Edytuj ustawienia %s" -#: ../connectors/class-wp-stream-connector-settings.php:604 +#: ../connectors/class-wp-stream-connector-settings.php:624 #, php-format msgid "\"%s\" setting was updated" msgstr "Opcja \"%s\" została zaktualizowana" #: ../connectors/class-wp-stream-connector-taxonomies.php:44 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:472 msgid "Taxonomies" msgstr "Taksonomie" @@ -3222,6 +3303,11 @@ msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s updated" msgstr "Zaktualizowano %2$s \"%1$s\"" +#: ../connectors/class-wp-stream-connector-users.php:43 +#: ../connectors/class-wp-stream-connector-users.php:70 +msgid "Users" +msgstr "Użytkownicy" + #: ../connectors/class-wp-stream-connector-users.php:56 msgid "Password Reset" msgstr "Zresetowano hasło" @@ -3308,6 +3394,10 @@ msgstr "Konto użytkownika #%d zostało usunięte" msgid "Widgets" msgstr "Widgety" +#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgid "Removed" +msgstr "" + #: ../connectors/class-wp-stream-connector-widgets.php:57 #, fuzzy msgid "Moved" @@ -3534,10 +3624,36 @@ msgid "%3$s widget deleted" msgstr "Motyw \"%s\" został usunięty" #: ../connectors/class-wp-stream-connector-woocommerce.php:89 +msgctxt "woocommerce" msgid "WooCommerce" msgstr "" +#: ../connectors/class-wp-stream-connector-woocommerce.php:99 +#, fuzzy +msgctxt "woocommerce" +msgid "Updated" +msgstr "Zaktualizowano" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:100 +#, fuzzy +msgctxt "woocommerce" +msgid "Created" +msgstr "Utworzono" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +#, fuzzy +msgctxt "woocommerce" +msgid "Trashed" +msgstr "Wyrzucono do kosza" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:102 +#, fuzzy +msgctxt "woocommerce" +msgid "Deleted" +msgstr "Usunięto" + #: ../connectors/class-wp-stream-connector-woocommerce.php:122 +msgctxt "woocommerce" msgid "Attributes" msgstr "" @@ -3700,1260 +3816,1392 @@ msgstr "" msgid "Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:67 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:59 #, fuzzy +msgctxt "wordpress-seo" msgid "WordPress SEO" msgstr "WordPress" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:69 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Created" +msgstr "Utworzono" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:70 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Updated" +msgstr "Zaktualizowano" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:71 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Added" +msgstr "Dodano" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:72 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Deleted" +msgstr "Usunięto" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:73 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Exported" +msgstr "Zmieniono kolejność" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:74 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Imported" +msgstr "Zmieniono kolejność" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:85 +msgctxt "wordpress-seo" msgid "Dashboard" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:86 +msgctxt "wordpress-seo" msgid "Titles & Metas" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:87 +msgctxt "wordpress-seo" msgid "Social" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:88 +msgctxt "wordpress-seo" msgid "XML Sitemaps" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:98 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:89 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Permalinks" +msgstr "Bezpośrednie odnośniki" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:90 #, fuzzy +msgctxt "wordpress-seo" msgid "Internal Links" msgstr "Bezpośrednie odnośniki" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:99 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:91 +msgctxt "wordpress-seo" msgid "RSS" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:100 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:92 +msgctxt "wordpress-seo" msgid "Import & Export" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:101 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +msgctxt "wordpress-seo" msgid "Bulk Title Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:102 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +msgctxt "wordpress-seo" msgid "Bulk Description Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:104 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 #, fuzzy +msgctxt "wordpress-seo" msgid "Files" msgstr "Profile" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:105 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 #, fuzzy +msgctxt "wordpress-seo" msgid "Content" msgstr "Kontekst" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:214 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:205 msgid "HeadSpace2" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:215 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:206 msgid "All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:207 msgid "OLD All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:217 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:208 msgid "WooThemes SEO framework" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:218 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:209 msgid "Robots Meta (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:219 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:210 msgid "RSS Footer (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:211 msgid "Yoast Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:229 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 #, php-format msgid "Imported settings from %1$s%2$s" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:231 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:222 msgid ", and deleted old data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:251 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:242 #, fuzzy, php-format msgid "Exported settings%s" msgstr "Edytuj ustawienia %s" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:252 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:243 msgid ", including taxonomy meta" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:264 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:255 #, php-format msgid "Tried importing settings from \"%s\"" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:279 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:270 msgid "Tried creating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:281 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:272 msgid "Tried updating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:283 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:274 msgid "Tried updating htaccess file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:334 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:325 #, fuzzy, php-format msgid "Updated \"%1$s\" of \"%2$s\" %3$s" msgstr "Zaktualizowano %1$s: %2$s %3$s" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:373 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:364 #, fuzzy, php-format msgid "%s settings updated" msgstr "Opcja \"%s\" została zaktualizowana" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:380 +msgctxt "wordpress-seo" msgid "Allow tracking of this WordPress install's anonymous data." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:381 +msgctxt "wordpress-seo" msgid "Disable the Advanced part of the WordPress SEO meta box" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:382 +#, fuzzy +msgctxt "wordpress-seo" msgid "Alexa Verification ID" -msgstr "" +msgstr "Ustawienia Stream" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:383 +msgctxt "wordpress-seo" msgid "Bing Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:384 +msgctxt "wordpress-seo" msgid "Google Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:385 +msgctxt "wordpress-seo" msgid "Pinterest" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:386 +msgctxt "wordpress-seo" msgid "Yandex Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:398 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +msgctxt "wordpress-seo" msgid "Enable Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:399 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +msgctxt "wordpress-seo" msgid "Separator between breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +msgctxt "wordpress-seo" msgid "Anchor text for the Homepage" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +msgctxt "wordpress-seo" msgid "Prefix for the breadcrumb path" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +msgctxt "wordpress-seo" msgid "Prefix for Archive breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +msgctxt "wordpress-seo" msgid "Prefix for Search Page breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +msgctxt "wordpress-seo" msgid "Breadcrumb for 404 Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:396 +msgctxt "wordpress-seo" msgid "Remove Blog page from Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:397 +msgctxt "wordpress-seo" msgid "Bold the last page in the breadcrumb" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +msgctxt "wordpress-seo" msgid "Force rewrite titles" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +msgctxt "wordpress-seo" msgid "Noindex subpages of archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:411 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +msgctxt "wordpress-seo" msgid "Use meta keywords tag?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:412 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +msgctxt "wordpress-seo" msgid "Add noodp meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +msgctxt "wordpress-seo" msgid "Add noydir meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +msgctxt "wordpress-seo" msgid "Hide RSD Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +msgctxt "wordpress-seo" msgid "Hide WLW Manifest Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:416 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:407 +msgctxt "wordpress-seo" msgid "Hide Shortlink for posts" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:417 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:408 +msgctxt "wordpress-seo" msgid "Hide RSS Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +msgctxt "wordpress-seo" msgid "Disable the author archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +msgctxt "wordpress-seo" msgid "Disable the date-based archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +msgctxt "wordpress-seo" msgid "Who should have access to the WordPress SEO settings" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +msgctxt "wordpress-seo" msgid "New blogs get the SEO settings from this blog" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +msgctxt "wordpress-seo" msgid "Blog ID" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +msgctxt "wordpress-seo" msgid "" "Strip the category base (usually /category/) from the category " "URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:428 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +msgctxt "wordpress-seo" msgid "Enforce a trailing slash on all category and tag URL's" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:429 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:420 +msgctxt "wordpress-seo" msgid "Remove stop words from slugs." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:421 +msgctxt "wordpress-seo" msgid "Redirect attachment URL's to parent post URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +msgctxt "wordpress-seo" msgid "Remove the ?replytocom variables." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +msgctxt "wordpress-seo" msgid "" "Redirect ugly URL's to clean permalinks. (Not recommended in many cases!)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +msgctxt "wordpress-seo" msgid "Force Transport" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:425 +msgctxt "wordpress-seo" msgid "Prevent cleaning out Google Site Search URL's." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:426 +msgctxt "wordpress-seo" msgid "" "Prevent cleaning out Google Analytics Campaign & Google AdWords Parameters." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +msgctxt "wordpress-seo" msgid "Other variables not to clean" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +msgctxt "wordpress-seo" msgid "Add Open Graph meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:440 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +msgctxt "wordpress-seo" msgid "Facebook Page URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:441 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 #, fuzzy +msgctxt "wordpress-seo" msgid "Image URL" msgstr "Obrazek" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#, fuzzy +msgctxt "wordpress-seo" msgid "Description" -msgstr "" +msgstr "akcje" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +msgctxt "wordpress-seo" msgid "Add Twitter card meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +msgctxt "wordpress-seo" msgid "Site Twitter Username" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:437 +msgctxt "wordpress-seo" msgid "The default card type to use" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:447 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:438 +msgctxt "wordpress-seo" msgid "Add Google+ specific post meta data (excluding author metadata)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:448 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +msgctxt "wordpress-seo" msgid "Google Publisher Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:451 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +msgctxt "wordpress-seo" msgid "Check this box to enable XML sitemap functionality." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:452 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +msgctxt "wordpress-seo" msgid "Disable author/user sitemap" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:453 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +msgctxt "wordpress-seo" msgid "Ping Yahoo!" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +msgctxt "wordpress-seo" msgid "Ping Ask.com" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +msgctxt "wordpress-seo" msgid "Max entries per sitemap page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:449 +msgctxt "wordpress-seo" msgid "Content to put before each post in the feed" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:450 +msgctxt "wordpress-seo" msgid "Content to put after each post" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +msgctxt "wordpress-seo" msgid "Title template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:464 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +msgctxt "wordpress-seo" msgid "Meta description template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:465 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:456 +msgctxt "wordpress-seo" msgid "Meta keywords template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:466 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:457 +msgctxt "wordpress-seo" msgid "Meta Robots" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:467 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 #, fuzzy +msgctxt "wordpress-seo" msgid "Authorship" msgstr "Autor" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:468 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +msgctxt "wordpress-seo" msgid "Show date in snippet preview?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:469 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:460 +#, fuzzy +msgctxt "wordpress-seo" msgid "WordPress SEO Meta Box" -msgstr "" +msgstr "WordPress" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:470 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:461 +msgctxt "wordpress-seo" msgid "Breadcrumbs Title" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:471 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:462 #, fuzzy +msgctxt "wordpress-seo" msgid "Post types" msgstr "Wpisy" -#: ../extensions/notifications/class-wp-stream-notifications.php:147 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Taxonomies" +msgstr "Taksonomie" + +#: ../extensions/notifications/class-wp-stream-notifications.php:128 #, fuzzy msgid "Stream Notifications" msgstr "Ustawienia Stream" -#: ../extensions/notifications/class-wp-stream-notifications.php:148 +#: ../extensions/notifications/class-wp-stream-notifications.php:129 msgid "Get notified instantly when important changes are made on your site." msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:150 +#: ../extensions/notifications/class-wp-stream-notifications.php:131 msgid "Create notification rules quickly and easily" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:132 msgid "Smart and powerful trigger matching" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:152 +#: ../extensions/notifications/class-wp-stream-notifications.php:133 msgid "Fully customized e-mail and SMS alerts" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:153 +#: ../extensions/notifications/class-wp-stream-notifications.php:134 msgid "Push alerts to your smartphone or tablet" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:170 -#: ../extensions/notifications/class-wp-stream-notifications.php:171 +#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:152 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:48 #: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:32 #, fuzzy msgid "Notifications" msgstr "akcje" -#: ../extensions/notifications/class-wp-stream-notifications.php:218 +#: ../extensions/notifications/class-wp-stream-notifications.php:199 msgid "Sample Rule" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:272 +#: ../extensions/notifications/class-wp-stream-notifications.php:253 #, fuzzy, php-format msgid "[Site Activity Alert] %s" msgstr "Aktywność Stream" -#: ../extensions/notifications/class-wp-stream-notifications.php:273 +#: ../extensions/notifications/class-wp-stream-notifications.php:254 #, php-format msgid "The following just happened on your site: %s by %s Date of action: %s" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:49 -msgid "Type" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 +msgid "Email" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:50 -msgid "Occurrences" -msgstr "" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 +#, fuzzy +msgid "Send to Users" +msgstr "Edytuj %s" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 -msgid "Publish" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 +msgid "Alert specific users via email." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 -msgid "Unpublish" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 +msgid "Send to Emails" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 -msgid "Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 +msgid "Alert any arbitrary email address not tied to a specific user." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 -#, fuzzy -msgid "Stream Notification Rules" -msgstr "Ustawienia Stream" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 -msgctxt "Stream Notifications" -msgid "New Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 +msgid "Subject" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 -msgctxt "Stream Notifications" -msgid "Add New Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 +msgid "Data tags are allowed." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 -msgctxt "Stream Notifications" -msgid "New Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 +msgid "Message" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 -msgctxt "Stream Notifications" -msgid "Edit Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 +msgid "HTML and data tags are allowed." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 -msgctxt "Stream Notifications" -msgid "View Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 +msgid "Push" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 -#, fuzzy -msgctxt "Stream Notifications" -msgid "Search Rules" -msgstr "Szukaj zapisów" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 +msgid "Missing Required Plugin" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 -msgctxt "Stream Notifications" -msgid "No notification rules found." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 +#, php-format +msgid "Please install and activate the %1$s plugin to enable push alerts." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 -msgctxt "Stream Notifications" -msgid "No notification rules found in Trash." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 +msgid "Pushover Notifications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 -msgid "Triggers" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 +msgid "Required Plugin Not Activated" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 -msgid "Alerts" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 +#, php-format +msgid "Please activate the %1$s plugin to enable push alerts." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 -msgid "Data Tags" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 +msgid "Alert specific users via push." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:121 -#: ../extensions/notifications/views/form-templates.php:34 -msgid "+ Add Trigger" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 +#, php-format +msgid "Only those users with a %s in their profile can be selected." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:122 -#: ../extensions/notifications/views/form-templates.php:35 -msgid "+ Add Group" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 +msgid "Pushover User Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:129 -msgid "+ Add Alert" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 +msgid "Application key is missing" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 #, php-format -msgid "This rule has occurred %1$s time." -msgid_plural "This rule has occurred %1$s times." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Please provide your Application key on %1$s." +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:168 -msgid "Reset Count" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 +msgid "Pushover Notifications settings page" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 -msgid "Basic" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 +msgid "Application API Token/Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 -msgid "Summary message of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 +msgid "Your User Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 -msgid "User ID of the triggered record author." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 +#, fuzzy +msgid "New Users" +msgstr "Użytkownicy" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 +msgid "New Posts are Published" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 -msgid "Connector of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 +msgid "Roles to Notify" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 -msgid "Context of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 +#, fuzzy +msgid "New Comments" +msgstr "Komentarze" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 +msgid "Notify the Post Author (for multi-author blogs)" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 -msgid "Action of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 +msgid "Notify users when password resets are requested for their accounts" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 -msgid "Timestamp of triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 +msgid "WordPress Core Update is Available" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 -msgid "IP of the triggered record author." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 +msgid "Plugin & Theme Updates are Available" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 -msgid "Object ID of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 +msgid "Use Multiple Application Keys" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 -msgid "Advanced" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 +msgid "Verify SSL from api.pushover.net" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 -msgid "" -"Specific object data of the record, relative to what the object type is:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more Post values\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.name}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.taxonomy}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.description}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more Term values" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 +#, fuzzy +msgid "Enable Logging" +msgstr "Nieudane logowanie" + +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 +msgid "SMS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:210 -msgid "" -"Specific user data of the record author:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{author.display_name}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{author.user_email}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{author.user_login}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more User values" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 +msgid "Send to Mobile Number" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:221 -msgid "" -"Specific meta data of the record, used to display specific meta values " -"created by Connectors.\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\tExample: {meta.old_theme} to display " -"the old theme name when a new theme is activated." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 +msgid "Enter mobile numbers without dashes (ex: 8885550000)" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 -msgid "Invalid nonce" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 +msgid "Carrier" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 -msgid "Invalid record ID" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 +msgid "Select your mobile service provider." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 -msgid "is" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:24 +msgid "3 River Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 -msgid "is not" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:25 +msgid "ACS Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 -#, fuzzy -msgid "contains" -msgstr "konteksty" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 -msgid "does not contain" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:26 +msgid "Alltel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 -msgid "starts with" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:27 +msgid "AT&T, Cingular, Net10 or Tracfone" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 -msgid "ends with" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:28 +msgid "Bell Canada" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 -msgid "regex" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:29 +msgid "Bell Mobility (Canada), Presidents Choice or Solo Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 -msgid "equals" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:30 +msgid "Bell Mobility" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 -msgid "not equal" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:31 +msgid "Blue Sky Frog" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 -msgid "less than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:32 +msgid "Bluegrass Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 -msgid "equal or less than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:33 +msgid "Boost Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 -msgid "greater than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:34 +msgid "BPL Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 -msgid "equal or greater than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:35 +msgid "Carolina West Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 -msgid "Object ID" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:36 +msgid "Cellular One" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:407 -#, fuzzy -msgid "Author Role" -msgstr "Autorzy i role" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 -msgid "IP" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:37 +msgid "Cellular South" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 -msgid "is on" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:38 +msgid "CenturyTel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 -msgid "is not on" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:39 +msgid "Clearnet" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 -msgid "is before" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:40 +msgid "Comcast" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 -msgid "is on or before" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:41 +msgid "Corr Wireless Communications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 -msgid "is after" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:42 +msgid "Cricket" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 -msgid "is on or after" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:43 +msgid "Dobson" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 -msgid "Day of Week" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:44 +msgid "Edge Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:408 -msgid "Connector" -msgstr "Łącznik" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 -#, fuzzy -msgid "- Post" -msgstr "Wpis" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:45 +msgid "Fido" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 -#, fuzzy -msgid "- Post: Title" -msgstr "Tytuł witryny" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:46 +msgid "Golden Telecom" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 -msgid "- Post: Slug" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:47 +msgid "Houston Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 -msgid "- Post: Content" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:48 +msgid "Idea Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 -msgid "- Post: Excerpt" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:49 +msgid "Illinois Valley Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 -#, fuzzy -msgid "- Post: Author" -msgstr "Autor" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:50 +msgid "Inland Cellular Telephone" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 -msgid "- Post: Status" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:51 +msgid "MCI" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 -#, fuzzy -msgid "- Post: Format" -msgstr "Domyślny format wpisu" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:52 +msgid "Metrocall" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 -msgid "- Post: Parent" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:53 +msgid "Metrocall 2-way" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 -msgid "- Post: Featured Image" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:54 +msgid "Metro PCS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 -msgid "None" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:55 +msgid "Midwest Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 -msgid "Has one" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:56 +msgid "Mobilcomm" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 -msgid "- Post: Comment Status" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:57 +msgid "MTS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 -msgid "Open" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:58 +msgid "Nextel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 -msgid "- Post: Comment Count" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:59 +msgid "OnlineBeep" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 -#, fuzzy -msgid "- User" -msgstr "Użytkownicy" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:60 +msgid "PCS One" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 -#, fuzzy -msgid "- User: Role" -msgstr "Domyślna rola nowych użytkowników" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:61 +msgid "Public Service Cellular" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 -#, fuzzy -msgid "- Taxonomy" -msgstr "Taksonomie" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:62 +msgid "Qwest" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 -msgid "- Term" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:63 +msgid "Rogers AT&T Wireless and Rogers Canada" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 -msgid "- Term: Parent" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:64 +msgid "Satellink" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 -msgid "You cannot save a rule without any triggers." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:65 +msgid "Sprint or Helio" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 -msgid "You cannot save a rule with an empty first trigger." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:66 +msgid "Suncom and Triton" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 -#, fuzzy -msgid "There was an error submitting your request, please try again." -msgstr "Wystąpił błąd w żądaniu" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:67 +msgid "Surewest Communications" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 -#, fuzzy -msgid "" -"Are you sure you want to reset occurrences for this rule? This cannot be " -"undone." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:68 +msgid "T-Mobile" msgstr "" -"Czy na pewno chcesz usunąć całą aktywność Stream z bazy danych? Tej " -"czynności nie można cofnąć." -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 -msgid "Enter Rule Title here" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:69 +msgid "Telus" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 -#, fuzzy -msgid "" -"Users from the selected roles above will have permission to view, create and " -"edit Stream Notifications. However, only site Administrators can access " -"Stream Notifications Settings." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:70 +msgid "Unicel" msgstr "" -"Użytkownicy z wybranymi powyżej rolami będą mogli wyświetlać Zapisy Stream. " -"Tylko Administratorzy jednak otrzymają dostęp do Ustawień Stream." -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 -msgid "Email" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:71 +msgid "US Cellular" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 -#, fuzzy -msgid "Send to Users" -msgstr "Edytuj %s" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:72 +msgid "US West" +msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 -msgid "Alert specific users via email." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:73 +msgid "Verizon or Straight Talk" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 -msgid "Send to Emails" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:74 +msgid "Virgin Mobile" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 -msgid "Alert any arbitrary email address not tied to a specific user." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:75 +msgid "Virgin Mobile Canada" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 -msgid "Subject" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:76 +msgid "West Central Wireless" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 -msgid "Data tags are allowed." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:77 +msgid "Western Wireless" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 -msgid "Message" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 +msgid "Data tags are allowed. HTML is not allowed." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 -msgid "HTML and data tags are allowed." +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:49 +msgid "Type" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 -msgid "Push" +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:50 +msgid "Occurrences" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 -msgid "Missing Required Plugin" +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 +msgid "Publish" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 -#, php-format -msgid "Please install and activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 +msgid "Unpublish" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 -msgid "Pushover Notifications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 +msgid "Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 -msgid "Required Plugin Not Activated" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 +#, fuzzy +msgid "Stream Notification Rules" +msgstr "Ustawienia Stream" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 -#, php-format -msgid "Please activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 +msgctxt "Stream Notifications" +msgid "New Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 -msgid "Alert specific users via push." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +msgctxt "Stream Notifications" +msgid "Add New Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 -#, php-format -msgid "Only those users with a %s in their profile can be selected." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 +msgctxt "Stream Notifications" +msgid "New Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 -msgid "Pushover User Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 +msgctxt "Stream Notifications" +msgid "Edit Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 -msgid "Application key is missing" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 +msgctxt "Stream Notifications" +msgid "View Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 -#, php-format -msgid "Please provide your Application key on %1$s." -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 +#, fuzzy +msgctxt "Stream Notifications" +msgid "Search Rules" +msgstr "Szukaj zapisów" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 -msgid "Pushover Notifications settings page" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 +msgctxt "Stream Notifications" +msgid "No notification rules found." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 -msgid "Application API Token/Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 +msgctxt "Stream Notifications" +msgid "No notification rules found in Trash." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 -msgid "Your User Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 +msgid "Triggers" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 -#, fuzzy -msgid "New Users" -msgstr "Użytkownicy" - -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 -msgid "New Posts are Published" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 +msgid "Alerts" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 -msgid "Roles to Notify" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 +msgid "Data Tags" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 -#, fuzzy -msgid "New Comments" -msgstr "Komentarze" - -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 -msgid "Notify the Post Author (for multi-author blogs)" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:121 +#: ../extensions/notifications/views/form-templates.php:34 +msgid "+ Add Trigger" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 -msgid "Notify users when password resets are requested for their accounts" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:122 +#: ../extensions/notifications/views/form-templates.php:35 +msgid "+ Add Group" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 -msgid "WordPress Core Update is Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:129 +msgid "+ Add Alert" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 -msgid "Plugin & Theme Updates are Available" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 +#, php-format +msgid "This rule has occurred %1$s time." +msgid_plural "This rule has occurred %1$s times." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 -msgid "Use Multiple Application Keys" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:168 +msgid "Reset Count" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 -msgid "Verify SSL from api.pushover.net" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 +msgid "Basic" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 -#, fuzzy -msgid "Enable Logging" -msgstr "Nieudane logowanie" - -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 -msgid "SMS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 +msgid "Summary message of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 -msgid "Send to Mobile Number" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 +msgid "User ID of the triggered record author." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 -msgid "Enter mobile numbers without dashes (ex: 8885550000)" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 +msgid "Connector of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 -msgid "Carrier" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 +msgid "Context of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 -msgid "Select your mobile service provider." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 +msgid "Action of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:24 -msgid "3 River Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 +msgid "Timestamp of triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:25 -msgid "ACS Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 +msgid "IP of the triggered record author." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:26 -msgid "Alltel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 +msgid "Object ID of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:27 -msgid "AT&T, Cingular, Net10 or Tracfone" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 +msgid "Advanced" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:28 -msgid "Bell Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 +msgid "" +"Specific object data of the record, relative to what the object type is:\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more Post values\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{object.name}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.taxonomy}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.description}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more Term values" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:29 -msgid "Bell Mobility (Canada), Presidents Choice or Solo Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:210 +msgid "" +"Specific user data of the record author:\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{author.display_name}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{author.user_email}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{author.user_login}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more User values" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:30 -msgid "Bell Mobility" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:221 +msgid "" +"Specific meta data of the record, used to display specific meta values " +"created by Connectors.\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\tExample: {meta.old_theme} to display " +"the old theme name when a new theme is activated." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:31 -msgid "Blue Sky Frog" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 +msgid "Invalid nonce" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:32 -msgid "Bluegrass Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 +msgid "Invalid record ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:33 -msgid "Boost Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 +msgid "is" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:34 -msgid "BPL Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 +msgid "is not" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:35 -msgid "Carolina West Wireless" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 +#, fuzzy +msgid "contains" +msgstr "konteksty" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:36 -msgid "Cellular One" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 +msgid "does not contain" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:37 -msgid "Cellular South" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 +msgid "starts with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:38 -msgid "CenturyTel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 +msgid "ends with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:39 -msgid "Clearnet" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 +msgid "regex" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:40 -msgid "Comcast" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 +msgid "equals" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:41 -msgid "Corr Wireless Communications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 +msgid "not equal" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:42 -msgid "Cricket" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 +msgid "less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:43 -msgid "Dobson" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 +msgid "equal or less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:44 -msgid "Edge Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 +msgid "greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:45 -msgid "Fido" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 +msgid "equal or greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:46 -msgid "Golden Telecom" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 +msgid "Object ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:47 -msgid "Houston Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:369 +#, fuzzy +msgid "Author Role" +msgstr "Autorzy i role" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 +msgid "IP" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:48 -msgid "Idea Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 +msgid "is on" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:49 -msgid "Illinois Valley Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 +msgid "is not on" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:50 -msgid "Inland Cellular Telephone" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 +msgid "is before" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:51 -msgid "MCI" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 +msgid "is on or before" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:52 -msgid "Metrocall" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 +msgid "is after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:53 -msgid "Metrocall 2-way" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 +msgid "is on or after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:54 -msgid "Metro PCS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 +msgid "Day of Week" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:55 -msgid "Midwest Wireless" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:370 +msgid "Connector" +msgstr "Łącznik" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:56 -msgid "Mobilcomm" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 +#, fuzzy +msgid "- Post" +msgstr "Wpis" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:57 -msgid "MTS" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 +#, fuzzy +msgid "- Post: Title" +msgstr "Tytuł witryny" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:58 -msgid "Nextel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 +msgid "- Post: Slug" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:59 -msgid "OnlineBeep" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 +msgid "- Post: Content" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:60 -msgid "PCS One" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 +msgid "- Post: Excerpt" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:61 -msgid "Public Service Cellular" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 +#, fuzzy +msgid "- Post: Author" +msgstr "Autor" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:62 -msgid "Qwest" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 +msgid "- Post: Status" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:63 -msgid "Rogers AT&T Wireless and Rogers Canada" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 +#, fuzzy +msgid "- Post: Format" +msgstr "Domyślny format wpisu" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:64 -msgid "Satellink" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 +msgid "- Post: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:65 -msgid "Sprint or Helio" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 +msgid "- Post: Featured Image" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:66 -msgid "Suncom and Triton" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 +msgid "None" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:67 -msgid "Surewest Communications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 +msgid "Has one" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:68 -msgid "T-Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 +msgid "- Post: Comment Status" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:69 -msgid "Telus" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 +msgid "Open" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:70 -msgid "Unicel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgid "Closed" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:71 -msgid "US Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 +msgid "- Post: Comment Count" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:72 -msgid "US West" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 +#, fuzzy +msgid "- User" +msgstr "Użytkownicy" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 +#, fuzzy +msgid "- User: Role" +msgstr "Domyślna rola nowych użytkowników" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 +#, fuzzy +msgid "- Taxonomy" +msgstr "Taksonomie" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 +msgid "- Term" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:73 -msgid "Verizon or Straight Talk" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 +msgid "- Term: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:74 -msgid "Virgin Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 +msgid "You cannot save a rule without any triggers." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:75 -msgid "Virgin Mobile Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 +msgid "You cannot save a rule with an empty first trigger." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:76 -msgid "West Central Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 +#, fuzzy +msgid "There was an error submitting your request, please try again." +msgstr "Wystąpił błąd w żądaniu" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 +#, fuzzy +msgid "" +"Are you sure you want to reset occurrences for this rule? This cannot be " +"undone." msgstr "" +"Czy na pewno chcesz usunąć całą aktywność Stream z bazy danych? Tej " +"czynności nie można cofnąć." -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:77 -msgid "Western Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 +msgid "Enter Rule Title here" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 -msgid "Data tags are allowed. HTML is not allowed." +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 +#, fuzzy +msgid "" +"Users from the selected roles above will have permission to view, create and " +"edit Stream Notifications. However, only site Administrators can access " +"Stream Notifications Settings." msgstr "" +"Użytkownicy z wybranymi powyżej rolami będą mogli wyświetlać Zapisy Stream. " +"Tylko Administratorzy jednak otrzymają dostęp do Ustawień Stream." #: ../extensions/notifications/views/form-templates.php:7 #: ../extensions/notifications/views/form-templates.php:30 @@ -4970,22 +5218,28 @@ msgstr "" msgid "Delete Group" msgstr "Usunięto \"%s\"" -#: ../extensions/reports/class-wp-stream-reports.php:125 +#: ../extensions/reports/class-wp-stream-reports.php:123 msgid "Cheating huh?" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:223 +#: ../extensions/reports/class-wp-stream-reports.php:143 +#: ../extensions/reports/class-wp-stream-reports.php:144 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:51 +msgid "Reports" +msgstr "" + +#: ../extensions/reports/class-wp-stream-reports.php:221 msgid "Cancel" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:224 +#: ../extensions/reports/class-wp-stream-reports.php:222 #, fuzzy msgid "Do you really want to delete this section? This cannot be undone." msgstr "" "Czy na pewno chcesz usunąć całą aktywność Stream z bazy danych? Tej " "czynności nie można cofnąć." -#: ../extensions/reports/class-wp-stream-reports.php:280 +#: ../extensions/reports/class-wp-stream-reports.php:278 #, php-format msgid "" "There's nothing here! Do you want to create some reports?" @@ -4995,139 +5249,137 @@ msgstr "" msgid "That time interval is not available." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:76 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:68 #, fuzzy msgid "All Activity by Author" msgstr "Role zapisywane w dzienniku" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:82 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:74 msgid "All Activity by Action" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:88 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:80 msgid "All Activity by Author Role" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:95 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:87 msgid "Comments Activity by Action" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:126 -#: ../extensions/reports/views/all.php:10 -#: ../extensions/reports/views/all.php:19 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:118 +#: ../extensions/reports/views/all.php:3 #: ../extensions/reports/views/examples.php:2 #, fuzzy msgid "Stream Reports" msgstr "Zapisy Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:127 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:119 msgid "" "Generate stunning visuals of logged-in user activity and share them with " "stakeholders or your clients." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:129 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:121 msgid "Fully-interactive charts" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:130 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:122 msgid "Monitor team contributions" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:131 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:123 msgid "Responsive for any screen size" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:275 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:267 msgid "All Others" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:285 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:277 #, php-format msgid "User ID: %d" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:326 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:309 #, fuzzy msgid "All Activity" msgstr "Aktywność Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:328 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:311 #, fuzzy msgid "Connector Activity" msgstr "Aktywność Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:336 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:319 #, fuzzy msgid "Context Activity" msgstr "Aktywność Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:344 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:327 #, fuzzy msgid "Actions Activity" msgstr "Aktywność Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:379 -#, fuzzy -msgid "Site Activity" -msgstr "Aktywność Stream" +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:390 +msgid "Site" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:473 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:435 msgid "Unknown" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:472 #, php-format msgid "Report %d" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:529 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:491 #, fuzzy, php-format msgctxt "1: Action 2: Dataset 3: Selector" msgid "%1$s in %2$s by %3$s" msgstr "Zaktualizowano %1$s: %2$s %3$s" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:535 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:497 #, fuzzy, php-format msgctxt "1: Action 3: Selector" msgid "All %1$s by %3$s" msgstr "%1$s z %2$s" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:542 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:504 #, php-format msgctxt "2: Dataset 3: Selector" msgid "All Activity in %2$s by %3$s" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:548 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 #, php-format msgctxt "3: Selector" msgid "All Activity by %3$s" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:729 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:691 msgid "Chart height" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:735 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:697 msgid "px" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:737 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:699 msgid "Apply" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:783 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:745 #, fuzzy msgid "All Contexts" msgstr "Konteksty" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:797 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:759 #, fuzzy msgid "All Actions" msgstr "Akcje" -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:62 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:57 #, fuzzy msgid "" "Users from the selected roles above will have permission to view and edit " @@ -5137,37 +5389,28 @@ msgstr "" "Użytkownicy z wybranymi powyżej rolami będą mogli wyświetlać Zapisy Stream. " "Tylko Administratorzy jednak otrzymają dostęp do Ustawień Stream." -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:243 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:238 msgid "Uh no! This wasn't suppose to happen :(" msgstr "" -#: ../extensions/reports/views/all.php:6 -#, php-format -msgid "1 site" -msgid_plural "%d sites" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../extensions/reports/views/all.php:13 -#: ../extensions/reports/views/all.php:21 +#: ../extensions/reports/views/all.php:5 msgid "New Report" msgstr "" -#: ../extensions/reports/views/all.php:38 +#: ../extensions/reports/views/all.php:20 msgid "Well, this is embarrassing. There are no reports yet!" msgstr "" -#: ../extensions/reports/views/all.php:41 +#: ../extensions/reports/views/all.php:23 msgid "Add a new one" msgstr "" -#: ../extensions/reports/views/all.php:43 +#: ../extensions/reports/views/all.php:25 #, fuzzy msgid "or" msgstr "Więcej" -#: ../extensions/reports/views/all.php:45 +#: ../extensions/reports/views/all.php:27 #, fuzzy msgid "Generate some for me" msgstr "Wygeneruj nowy klucz" @@ -5215,6 +5458,133 @@ msgstr "" msgid "Stream Feed" msgstr "Kanał Stream" +#: ../stream.php:100 +msgid "Stream: Could not load chosen DB driver." +msgstr "" + +#: ../stream.php:151 +msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." +msgstr "Stream wymaga PHP w wersji 5.3+, wtyczka jest obecnie NIEAKTYWNA." + +#: ../stream.php:192 ../stream.php:207 +msgid "Deprecated Plugins Found" +msgstr "" + +#: ../stream.php:193 +msgid "" +"The following plugins are deprecated and will be deactivated in order to " +"activate" +msgstr "" + +#: ../stream.php:202 +#, fuzzy +msgid "Continue" +msgstr "Kontekst" + +#, fuzzy +#~ msgid "Network Stream Activity" +#~ msgstr "Aktywność Stream" + +#, fuzzy +#~ msgid "Network Admin" +#~ msgstr "w całej sieci" + +#, fuzzy +#~ msgid "Stream Network Settings" +#~ msgstr "Ustawienia Stream" + +#, fuzzy +#~ msgid "Network Settings" +#~ msgstr "Ustawienia Stream" + +#, fuzzy +#~ msgid "New Site Settings" +#~ msgstr "Ustawienia Stream" + +#, fuzzy +#~ msgid "Enable Site Access" +#~ msgstr "Dostęp ról" + +#, fuzzy +#~ msgid "Reset Site Settings" +#~ msgstr "Ustawienia Stream" + +#, fuzzy +#~ msgid "" +#~ "Warning: Clicking this will override all site settings with defaults." +#~ msgstr "" +#~ "Ostrzeżenie: Kliknięcie w link wymaże wszystkie zapisy aktywności z bazy " +#~ "danych." + +#, fuzzy +#~ msgid "Settings saved." +#~ msgstr "Ustawienia" + +#, fuzzy +#~ msgid "Archived" +#~ msgstr "Archiwum" + +#, fuzzy +#~ msgid "Site Admin" +#~ msgstr "Tytuł witryny" + +#, fuzzy +#~ msgid "Site Settings" +#~ msgstr "Ustawienia Stream" + +#, fuzzy +#~ msgctxt "1. Site name" +#~ msgid "A new site called \"%1$s\" has been created." +#~ msgstr "Wyłączono \"%1$s\"" + +#, fuzzy +#~ msgctxt "1. Site name" +#~ msgid "A new site called \"%1$s\" has been registered." +#~ msgstr "Wyłączono \"%1$s\"" + +#, fuzzy +#~ msgctxt "1. User's name, 2. Site name, 3. Role" +#~ msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." +#~ msgstr "Dodano \"%1$s\" do \"%2$s\"" + +#, fuzzy +#~ msgctxt "1. User's name, 2. Site name" +#~ msgid "%1$s has been removed from the site \"%2$s\"." +#~ msgstr "Usunięto \"%1$s\" z \"%2$s\"" + +#, fuzzy +#~ msgid "marked as not spam" +#~ msgstr "Przywrócono ze spamu" + +#, fuzzy +#~ msgid "marked as mature" +#~ msgstr "Przywrócono ze spamu" + +#, fuzzy +#~ msgid "marked as not mature" +#~ msgstr "Przywrócono ze spamu" + +#, fuzzy +#~ msgid "archived" +#~ msgstr "Archiwum" + +#, fuzzy +#~ msgid "marked as public" +#~ msgstr "Przywrócono ze spamu" + +#, fuzzy +#~ msgid "marked as private" +#~ msgstr "Przywrócono ze spamu" + +#, fuzzy +#~ msgctxt "1. Site name, 2. Status" +#~ msgid "\"%1$s\" has been %2$s." +#~ msgstr "Dodano \"%1$s\" do \"%2$s\"" + +#, fuzzy +#~ msgid "Site Activity" +#~ msgstr "Aktywność Stream" + #, fuzzy #~ msgid "The following table is not present in the WordPress database:" #~ msgstr "" diff --git a/languages/stream-pt_BR.mo b/languages/stream-pt_BR.mo index fe908eb79..e6d57cbff 100644 Binary files a/languages/stream-pt_BR.mo and b/languages/stream-pt_BR.mo differ diff --git a/languages/stream-pt_BR.po b/languages/stream-pt_BR.po index eb79360de..2f526b33c 100644 --- a/languages/stream-pt_BR.po +++ b/languages/stream-pt_BR.po @@ -1,122 +1,92 @@ msgid "" msgstr "" "Project-Id-Version: Stream\n" -"POT-Creation-Date: 2014-09-27 01:01+1000\n" -"PO-Revision-Date: 2014-09-27 03:36+1000\n" -"Last-Translator: Luke Carbis \n" +"POT-Creation-Date: 2014-10-01 20:35+1000\n" +"PO-Revision-Date: 2014-10-01 20:40+1000\n" +"Last-Translator: Frankie Jarrett \n" "Language-Team: \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.3\n" +"X-Generator: Poedit 1.6.9\n" "X-Poedit-Basepath: .\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-KeywordsList: __;_e;_x;_ngettext;_n;_gettext_noop;_nx;_nx_noop;_ex;" -"esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_c;_nc\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ngettext:1,2;_n:1,2;_gettext_noop;" +"_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;" +"esc_html__;esc_html_e;esc_html_x:1,2c;_c;_nc:4c,1,2\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: ..\n" -#: ../stream.php:100 -msgid "Stream: Could not load chosen DB driver." -msgstr "" - -#: ../stream.php:156 -msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." -msgstr "" -"O Stream requer a versão 5.3 ou superior do PHP, o plugin NÃO está ativo." - -#: ../stream.php:197 ../stream.php:212 -msgid "Deprecated Plugins Found" -msgstr "" - -#: ../stream.php:198 -msgid "" -"The following plugins are deprecated and will be deactivated in order to " -"activate" -msgstr "" - -#: ../stream.php:207 -#, fuzzy -msgid "Continue" -msgstr "Contexto" - #: ../classes/class-wp-stream-admin.php:144 -msgid "Dismiss this notice and deactivate Stream." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:152 -#: ../classes/class-wp-stream-admin.php:284 -#: ../classes/class-wp-stream-admin.php:862 +#: ../classes/class-wp-stream-admin.php:270 +#: ../classes/class-wp-stream-admin.php:837 #, fuzzy msgid "Connect to Stream" msgstr "Conector" -#: ../classes/class-wp-stream-admin.php:156 +#: ../classes/class-wp-stream-admin.php:148 msgid "Stream is almost ready!" msgstr "" -#: ../classes/class-wp-stream-admin.php:160 -#: ../classes/class-wp-stream-admin.php:866 +#: ../classes/class-wp-stream-admin.php:152 +#: ../classes/class-wp-stream-admin.php:841 #, php-format msgid "" -"Stream uses your WordPress.com ID to authorize your account. You can sign up " -"for free at %swordpress.com/signup%s." +"Stream only uses your WordPress.com ID during sign up to authorize your " +"account. You can sign up for free at %swordpress.com/signup%s." msgstr "" -#: ../classes/class-wp-stream-admin.php:166 +#: ../classes/class-wp-stream-admin.php:158 #, php-format msgid "" "Connect to Stream with your %sWordPress.com ID%s to see every change made to " "your site in beautifully organized detail." msgstr "" -#: ../classes/class-wp-stream-admin.php:195 +#: ../classes/class-wp-stream-admin.php:187 msgid "All site settings have been successfully reset." msgstr "" -#: ../classes/class-wp-stream-admin.php:201 +#: ../classes/class-wp-stream-admin.php:193 msgid "You have successfully connected to Stream!" msgstr "" -#: ../classes/class-wp-stream-admin.php:202 +#: ../classes/class-wp-stream-admin.php:194 msgid "" "Check back here regularly to see a history of the changes being made to this " "site." msgstr "" -#: ../classes/class-wp-stream-admin.php:254 -#: ../classes/class-wp-stream-admin.php:255 -#: ../classes/class-wp-stream-admin.php:285 -#: ../classes/class-wp-stream-network.php:115 +#: ../classes/class-wp-stream-admin.php:242 +#: ../classes/class-wp-stream-admin.php:243 +#: ../classes/class-wp-stream-admin.php:271 #: ../connectors/class-wp-stream-connector-settings.php:129 msgid "Stream" msgstr "Stream" -#: ../classes/class-wp-stream-admin.php:265 +#: ../classes/class-wp-stream-admin.php:253 msgid "Stream Settings" msgstr "Configurações do Stream" -#: ../classes/class-wp-stream-admin.php:266 -#: ../classes/class-wp-stream-admin.php:565 -#: ../connectors/class-wp-stream-connector-bbpress.php:114 -#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#: ../classes/class-wp-stream-admin.php:254 +#: ../classes/class-wp-stream-admin.php:540 #: ../connectors/class-wp-stream-connector-settings.php:100 #: ../connectors/class-wp-stream-connector-settings.php:121 #: ../connectors/class-wp-stream-connector-woocommerce.php:693 msgid "Settings" msgstr "Configurações" -#: ../classes/class-wp-stream-admin.php:275 +#: ../classes/class-wp-stream-admin.php:262 #, fuzzy msgid "Stream Account" msgstr "Configurações do Stream" -#: ../classes/class-wp-stream-admin.php:276 +#: ../classes/class-wp-stream-admin.php:263 msgid "Account" msgstr "" -#: ../classes/class-wp-stream-admin.php:354 +#: ../classes/class-wp-stream-admin.php:340 #, fuzzy msgid "" "Are you sure you want to reset all site settings to default? This cannot be " @@ -125,54 +95,54 @@ msgstr "" "Você tem certeza que deseja deletar todos os registros de atividade do " "Stream? Isso não pode ser desfeito." -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 #, php-format msgid "This will take about %d minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 msgid "This could take a few minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:385 +#: ../classes/class-wp-stream-admin.php:371 #, fuzzy msgid "Migrating Stream Records" msgstr "Registros do Stream" -#: ../classes/class-wp-stream-admin.php:386 +#: ../classes/class-wp-stream-admin.php:372 #, fuzzy msgid "Deleting Stream Records" msgstr "Registros do Stream" -#: ../classes/class-wp-stream-admin.php:387 +#: ../classes/class-wp-stream-admin.php:373 msgid "" "An unknown error occurred during migration. Please try again later or " "contact support." msgstr "" -#: ../classes/class-wp-stream-admin.php:388 -#: ../classes/class-wp-stream-admin.php:389 +#: ../classes/class-wp-stream-admin.php:374 +#: ../classes/class-wp-stream-admin.php:375 msgid "Please do not exit this page until the process has completed." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 #, php-format msgid "Please note: This process will take about %d minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 msgid "Please note: This process could take a few minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:391 +#: ../classes/class-wp-stream-admin.php:377 msgid "" "Please note: Your existing records will not appear in Stream until you have " "migrated them to your account." msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, fuzzy, php-format msgid "" "Are you sure you want to delete all %s existing Stream records without " @@ -181,171 +151,151 @@ msgstr "" "Você tem certeza que deseja deletar todos os registros de atividade do " "Stream? Isso não pode ser desfeito." -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, php-format msgid "about %d" msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 msgid "a few" msgstr "" -#: ../classes/class-wp-stream-admin.php:421 +#: ../classes/class-wp-stream-admin.php:407 #, php-format msgid "" "Are you sure you want to perform bulk actions on over %d items? This process " "could take a while to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:422 +#: ../classes/class-wp-stream-admin.php:408 msgid "" "The Stream plugin must be deactivated before you can bulk import content " "into WordPress." msgstr "" -#: ../classes/class-wp-stream-admin.php:751 +#: ../classes/class-wp-stream-admin.php:726 msgid "Error retrieving account details." msgstr "" -#: ../classes/class-wp-stream-admin.php:753 +#: ../classes/class-wp-stream-admin.php:728 msgid "" "If this problem persists, please disconnect from Stream and try connecting " "again." msgstr "" -#: ../classes/class-wp-stream-admin.php:760 +#: ../classes/class-wp-stream-admin.php:735 msgid "Free" msgstr "" -#: ../classes/class-wp-stream-admin.php:764 +#: ../classes/class-wp-stream-admin.php:739 msgid "Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:766 +#: ../classes/class-wp-stream-admin.php:741 msgid "Standard" msgstr "" -#: ../classes/class-wp-stream-admin.php:772 +#: ../classes/class-wp-stream-admin.php:747 #, fuzzy, php-format +msgctxt "1: Price, 2: Renewal date" msgid "$%1$s on %2$s" msgstr "\"%s\" foi adicionado a \"%s\"" -#: ../classes/class-wp-stream-admin.php:774 +#: ../classes/class-wp-stream-admin.php:749 #: ../classes/class-wp-stream-author.php:64 #: ../classes/class-wp-stream-author.php:72 #: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:127 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:287 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:471 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:279 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:433 msgid "N/A" msgstr "" -#: ../classes/class-wp-stream-admin.php:781 +#: ../classes/class-wp-stream-admin.php:756 msgid "Unlimited" msgstr "" -#: ../classes/class-wp-stream-admin.php:784 +#: ../classes/class-wp-stream-admin.php:759 +#, php-format msgid "1 Day" -msgstr "" +msgid_plural "%s Days" +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-admin.php:794 +#: ../classes/class-wp-stream-admin.php:769 msgid "Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:798 +#: ../classes/class-wp-stream-admin.php:773 msgid "Activity History" msgstr "" -#: ../classes/class-wp-stream-admin.php:803 +#: ../classes/class-wp-stream-admin.php:778 msgid "Next Billing" msgstr "" -#: ../classes/class-wp-stream-admin.php:808 +#: ../classes/class-wp-stream-admin.php:783 #: ../connectors/class-wp-stream-connector-acf.php:81 -#: ../connectors/class-wp-stream-connector-bbpress.php:88 -#: ../connectors/class-wp-stream-connector-blogs.php:50 -#: ../connectors/class-wp-stream-connector-buddypress.php:123 #: ../connectors/class-wp-stream-connector-comments.php:46 -#: ../connectors/class-wp-stream-connector-edd.php:108 -#: ../connectors/class-wp-stream-connector-gravityforms.php:98 #: ../connectors/class-wp-stream-connector-menus.php:39 #: ../connectors/class-wp-stream-connector-posts.php:39 #: ../connectors/class-wp-stream-connector-taxonomies.php:54 #: ../connectors/class-wp-stream-connector-users.php:54 #: ../connectors/class-wp-stream-connector-widgets.php:58 -#: ../connectors/class-wp-stream-connector-woocommerce.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:77 msgid "Created" msgstr "Criado" -#: ../classes/class-wp-stream-admin.php:812 +#: ../classes/class-wp-stream-admin.php:787 msgid "Site ID" msgstr "" -#: ../classes/class-wp-stream-admin.php:818 +#: ../classes/class-wp-stream-admin.php:793 msgid "API Key" msgstr "" -#: ../classes/class-wp-stream-admin.php:828 +#: ../classes/class-wp-stream-admin.php:803 #: ../classes/class-wp-stream-list-table.php:49 -#: ../extensions/notifications/class-wp-stream-notifications.php:155 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:133 +#: ../extensions/notifications/class-wp-stream-notifications.php:136 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:125 msgid "Upgrade to Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:830 +#: ../classes/class-wp-stream-admin.php:805 msgid "Modify This Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:872 +#: ../classes/class-wp-stream-admin.php:847 #, php-format msgid "with your %sWordPress.com ID%s" msgstr "" -#: ../classes/class-wp-stream-admin.php:890 +#: ../classes/class-wp-stream-admin.php:865 +msgctxt "Haiku line 1" msgid "A transformation" msgstr "" -#: ../classes/class-wp-stream-admin.php:891 +#: ../classes/class-wp-stream-admin.php:866 +msgctxt "Haiku line 2" msgid "Like brook, to river, to sea" msgstr "" -#: ../classes/class-wp-stream-admin.php:901 +#: ../classes/class-wp-stream-admin.php:876 +msgctxt "Haiku line 3" msgid "I have a secret" msgstr "" -#: ../classes/class-wp-stream-admin.php:917 -#: ../classes/class-wp-stream-admin.php:931 -#: ../classes/class-wp-stream-admin.php:933 +#: ../classes/class-wp-stream-admin.php:892 +#: ../classes/class-wp-stream-admin.php:898 msgid "Stream Records" msgstr "Registros do Stream" -#: ../classes/class-wp-stream-admin.php:928 -msgid " (1 site)" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:942 -msgid "Get started with Stream for Multisite!" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:943 -msgid "" -"Welcome to your Network Stream! Each site on your network must be connected " -"individually by an admin on that site for it to show here." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:954 -msgid "Stream for Multisite is coming soon!" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:955 -msgid "Access to all the Stream feeds in your network is currently disabled." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:1104 +#: ../classes/class-wp-stream-admin.php:1038 +#, php-format msgid "One more result..." -msgstr "" +msgid_plural "%d more results..." +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-api.php:360 +#: ../classes/class-wp-stream-api.php:356 msgid "Stream API Error." msgstr "" @@ -357,15 +307,11 @@ msgstr "" msgid "during WP Cron" msgstr "" -#: ../classes/class-wp-stream-connectors.php:102 +#: ../classes/class-wp-stream-connectors.php:98 #, php-format msgid "%s class wasn't loaded because it doesn't extends the %s class." msgstr "" -#: ../classes/class-wp-stream-dashboard-widget.php:25 -msgid "Network Stream Activity" -msgstr "" - #: ../classes/class-wp-stream-dashboard-widget.php:25 #, fuzzy msgid "Stream Activity" @@ -395,9 +341,10 @@ msgid "Go to the previous page" msgstr "" #: ../classes/class-wp-stream-dashboard-widget.php:134 -#, php-format +#, fuzzy, php-format +msgctxt "paging" msgid "%1$s of %2$s" -msgstr "" +msgstr "\"%s\" foi adicionado a \"%s\"" #: ../classes/class-wp-stream-dashboard-widget.php:139 msgid "Go to the next page" @@ -418,6 +365,7 @@ msgstr "" #: ../classes/class-wp-stream-dashboard-widget.php:209 #, php-format +msgctxt "1: Time, 2: User profile URL, 3: User display name" msgid "%1$s ago by %3$s" msgstr "" @@ -459,43 +407,43 @@ msgstr "" msgid "Last Year" msgstr "" -#: ../classes/class-wp-stream-feeds.php:126 +#: ../classes/class-wp-stream-feeds.php:109 #, fuzzy msgid "Stream Feeds Key" msgstr "Feed do Stream" -#: ../classes/class-wp-stream-feeds.php:131 +#: ../classes/class-wp-stream-feeds.php:114 #, fuzzy msgid "Generate new key" msgstr "Gerar nova chave" -#: ../classes/class-wp-stream-feeds.php:134 +#: ../classes/class-wp-stream-feeds.php:117 msgid "" "This is your private key used for accessing feeds of Stream Records " "securely. You can change your key at any time by generating a new one using " "the link above." msgstr "" -#: ../classes/class-wp-stream-feeds.php:136 +#: ../classes/class-wp-stream-feeds.php:119 #, fuzzy msgid "RSS Feed" msgstr "Feed do Stream" -#: ../classes/class-wp-stream-feeds.php:138 +#: ../classes/class-wp-stream-feeds.php:121 #, fuzzy msgid "ATOM Feed" msgstr "Feed do Stream" -#: ../classes/class-wp-stream-feeds.php:140 +#: ../classes/class-wp-stream-feeds.php:123 #, fuzzy msgid "JSON Feed" msgstr "Feed do Stream" -#: ../classes/class-wp-stream-feeds.php:188 +#: ../classes/class-wp-stream-feeds.php:171 msgid "Access Denied" msgstr "Acesso negado" -#: ../classes/class-wp-stream-feeds.php:189 +#: ../classes/class-wp-stream-feeds.php:172 msgid "" "You don't have permission to view this feed, please contact your site " "Administrator." @@ -512,8 +460,13 @@ msgid "Filter not supported." msgstr "" #: ../classes/class-wp-stream-list-table.php:48 +#, php-format msgid "Your free account is limited to viewing 24 hours of activity history." -msgstr "" +msgid_plural "" +"Your free account is limited to viewing %d days of activity " +"history." +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-list-table.php:68 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:507 @@ -526,29 +479,28 @@ msgid "Summary" msgstr "Descrição" #: ../classes/class-wp-stream-list-table.php:70 -#: ../connectors/class-wp-stream-connector-acf.php:309 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:492 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:406 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:368 msgid "Author" msgstr "Autor" #: ../classes/class-wp-stream-list-table.php:71 -#: ../classes/class-wp-stream-settings.php:629 +#: ../classes/class-wp-stream-settings.php:603 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:553 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:409 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:371 msgid "Context" msgstr "Contexto" #: ../classes/class-wp-stream-list-table.php:72 -#: ../classes/class-wp-stream-settings.php:630 +#: ../classes/class-wp-stream-settings.php:604 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:560 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:405 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:367 msgid "Action" msgstr "Ação" #: ../classes/class-wp-stream-list-table.php:73 -#: ../classes/class-wp-stream-settings.php:631 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:410 +#: ../classes/class-wp-stream-settings.php:605 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:372 msgid "IP Address" msgstr "Endereço de IP" @@ -619,8 +571,7 @@ msgid "Live updates" msgstr "" #: ../classes/class-wp-stream-list-table.php:836 -#: ../classes/class-wp-stream-network.php:303 -#: ../classes/class-wp-stream-settings.php:255 +#: ../classes/class-wp-stream-settings.php:237 msgid "Enabled" msgstr "Ativado" @@ -633,8 +584,11 @@ msgid "" msgstr "" #: ../classes/class-wp-stream-live-update.php:176 +#, php-format msgid "1 item" -msgstr "" +msgid_plural "%s items" +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-migrate.php:121 #, fuzzy @@ -685,77 +639,6 @@ msgstr "" msgid "All existing records have been deleted from the database." msgstr "" -#: ../classes/class-wp-stream-network.php:129 -msgid "Network Admin" -msgstr "" - -#: ../classes/class-wp-stream-network.php:169 -#, fuzzy -msgid "Stream Network Settings" -msgstr "Configurações do Stream" - -#: ../classes/class-wp-stream-network.php:170 -#, fuzzy -msgid "Network Settings" -msgstr "Configurações do Stream" - -#: ../classes/class-wp-stream-network.php:179 -#, fuzzy -msgid "New Site Settings" -msgstr "Configurações do Stream" - -#: ../classes/class-wp-stream-network.php:180 -msgid "Site Defaults" -msgstr "" - -#: ../classes/class-wp-stream-network.php:234 -msgid "These settings apply to all sites on the network." -msgstr "" - -#: ../classes/class-wp-stream-network.php:237 -msgid "" -"These default settings will apply to new sites created on the network. These " -"settings do not alter existing sites." -msgstr "" - -#: ../classes/class-wp-stream-network.php:302 -#, fuzzy -msgid "Enable Site Access" -msgstr "Permissões de acesso" - -#: ../classes/class-wp-stream-network.php:305 -msgid "" -"When site access is disabled Stream can only be accessed from the network " -"administration." -msgstr "" - -#: ../classes/class-wp-stream-network.php:321 -#, fuzzy -msgid "Reset Site Settings" -msgstr "Configurações do Stream" - -#: ../classes/class-wp-stream-network.php:324 -#, fuzzy -msgid "Warning: Clicking this will override all site settings with defaults." -msgstr "" -"Atenção: clicar nesse botão vai deletar todas os registros de atividades do " -"seu banco de dados." - -#: ../classes/class-wp-stream-network.php:408 -#, fuzzy -msgid "Settings saved." -msgstr "Configurações" - -#: ../classes/class-wp-stream-network.php:463 -msgid "sites" -msgstr "" - -#: ../classes/class-wp-stream-network.php:480 -#: ../classes/class-wp-stream-network.php:530 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:428 -msgid "Site" -msgstr "" - #: ../classes/class-wp-stream-pointers.php:144 #, fuzzy msgid "Stream Extensions" @@ -769,11 +652,11 @@ msgstr "" msgid "Could not validate record data." msgstr "" -#: ../classes/class-wp-stream-settings.php:85 +#: ../classes/class-wp-stream-settings.php:75 msgid "There was an error in the request" msgstr "" -#: ../classes/class-wp-stream-settings.php:129 +#: ../classes/class-wp-stream-settings.php:119 #, php-format msgid "" "ID: %d\n" @@ -782,24 +665,24 @@ msgid "" "Role: %s" msgstr "" -#: ../classes/class-wp-stream-settings.php:148 +#: ../classes/class-wp-stream-settings.php:138 msgid "" "Actions performed by the system when a user is not logged in (e.g. auto site " "upgrader, or invoking WP-CLI without --user)" msgstr "" -#: ../classes/class-wp-stream-settings.php:226 +#: ../classes/class-wp-stream-settings.php:208 #: ../connectors/class-wp-stream-connector-settings.php:122 msgid "General" msgstr "Global" -#: ../classes/class-wp-stream-settings.php:230 +#: ../classes/class-wp-stream-settings.php:212 #: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:36 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:60 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:55 msgid "Role Access" msgstr "Permissões de acesso" -#: ../classes/class-wp-stream-settings.php:232 +#: ../classes/class-wp-stream-settings.php:214 msgid "" "Users from the selected roles above will have permission to view Stream " "Records. However, only site Administrators can access Stream Settings." @@ -808,11 +691,11 @@ msgstr "" "Stream, mas as configurações continuam sendo disponíveis apenas para os " "Administradores." -#: ../classes/class-wp-stream-settings.php:238 +#: ../classes/class-wp-stream-settings.php:220 msgid "Private Feeds" msgstr "Feeds privativos" -#: ../classes/class-wp-stream-settings.php:241 +#: ../classes/class-wp-stream-settings.php:223 #, fuzzy, php-format msgid "" "Users from the selected roles above will be given a private key found in " @@ -823,91 +706,88 @@ msgstr "" "respectivos Perfis%s. Favor %slimpe as regras de links permanentes%s após " "trocar essa configuração." -#: ../classes/class-wp-stream-settings.php:245 +#: ../classes/class-wp-stream-settings.php:227 msgid "View Profile" msgstr "Ver Perfil" -#: ../classes/class-wp-stream-settings.php:251 +#: ../classes/class-wp-stream-settings.php:233 msgid "View Codex" msgstr "Ver Codex" -#: ../classes/class-wp-stream-settings.php:261 +#: ../classes/class-wp-stream-settings.php:243 msgid "Exclude" msgstr "" -#: ../classes/class-wp-stream-settings.php:265 +#: ../classes/class-wp-stream-settings.php:247 msgid "Exclude Rules" msgstr "" -#: ../classes/class-wp-stream-settings.php:267 +#: ../classes/class-wp-stream-settings.php:249 msgid "" "Create rules for excluding certain kinds of records from appearing in Stream." msgstr "" -#: ../classes/class-wp-stream-settings.php:595 +#: ../classes/class-wp-stream-settings.php:569 #, php-format msgid "Any %s" msgstr "" -#: ../classes/class-wp-stream-settings.php:610 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +#: ../classes/class-wp-stream-settings.php:584 msgid "Add New Rule" msgstr "" -#: ../classes/class-wp-stream-settings.php:611 +#: ../classes/class-wp-stream-settings.php:585 msgid "Delete Selected Rules" msgstr "" -#: ../classes/class-wp-stream-settings.php:628 +#: ../classes/class-wp-stream-settings.php:602 #, fuzzy msgid "Author or Role" msgstr "Autor" -#: ../classes/class-wp-stream-settings.php:632 +#: ../classes/class-wp-stream-settings.php:606 #, fuzzy msgid "Filters" msgstr "Filtro" -#: ../classes/class-wp-stream-settings.php:656 +#: ../classes/class-wp-stream-settings.php:630 +#, php-format msgid "1 user" -msgstr "" +msgid_plural "%s users" +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-settings.php:679 +#: ../classes/class-wp-stream-settings.php:653 msgid "Any Author or Role" msgstr "" -#: ../classes/class-wp-stream-settings.php:720 +#: ../classes/class-wp-stream-settings.php:694 #, fuzzy msgid "Any Context" msgstr "Contexto" -#: ../classes/class-wp-stream-settings.php:739 +#: ../classes/class-wp-stream-settings.php:713 #, fuzzy msgid "Any Action" msgstr "Ação" -#: ../classes/class-wp-stream-settings.php:750 +#: ../classes/class-wp-stream-settings.php:724 #, fuzzy msgid "Any IP Address" msgstr "Endereço de IP" -#: ../classes/class-wp-stream-settings.php:787 +#: ../classes/class-wp-stream-settings.php:761 msgid "No rules found." msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:71 +msgctxt "acf" msgid "ACF" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:82 -#: ../connectors/class-wp-stream-connector-bbpress.php:89 -#: ../connectors/class-wp-stream-connector-blogs.php:49 -#: ../connectors/class-wp-stream-connector-buddypress.php:124 -#: ../connectors/class-wp-stream-connector-edd.php:109 #: ../connectors/class-wp-stream-connector-editor.php:54 -#: ../connectors/class-wp-stream-connector-gravityforms.php:99 #: ../connectors/class-wp-stream-connector-installer.php:48 -#: ../connectors/class-wp-stream-connector-jetpack.php:85 #: ../connectors/class-wp-stream-connector-media.php:43 #: ../connectors/class-wp-stream-connector-menus.php:40 #: ../connectors/class-wp-stream-connector-posts.php:38 @@ -915,27 +795,16 @@ msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:55 #: ../connectors/class-wp-stream-connector-users.php:53 #: ../connectors/class-wp-stream-connector-widgets.php:62 -#: ../connectors/class-wp-stream-connector-woocommerce.php:99 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:78 msgid "Updated" msgstr "Atualizado" #: ../connectors/class-wp-stream-connector-acf.php:83 -#: ../connectors/class-wp-stream-connector-edd.php:110 -#: ../connectors/class-wp-stream-connector-gravityforms.php:102 -#: ../connectors/class-wp-stream-connector-jetpack.php:86 #: ../connectors/class-wp-stream-connector-widgets.php:55 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:79 msgid "Added" msgstr "Adicionado" #: ../connectors/class-wp-stream-connector-acf.php:84 -#: ../connectors/class-wp-stream-connector-bbpress.php:92 -#: ../connectors/class-wp-stream-connector-blogs.php:52 -#: ../connectors/class-wp-stream-connector-buddypress.php:127 #: ../connectors/class-wp-stream-connector-comments.php:55 -#: ../connectors/class-wp-stream-connector-edd.php:111 -#: ../connectors/class-wp-stream-connector-gravityforms.php:103 #: ../connectors/class-wp-stream-connector-installer.php:47 #: ../connectors/class-wp-stream-connector-media.php:44 #: ../connectors/class-wp-stream-connector-menus.php:41 @@ -943,141 +812,171 @@ msgstr "Adicionado" #: ../connectors/class-wp-stream-connector-taxonomies.php:56 #: ../connectors/class-wp-stream-connector-users.php:55 #: ../connectors/class-wp-stream-connector-widgets.php:59 -#: ../connectors/class-wp-stream-connector-woocommerce.php:102 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:80 msgid "Deleted" msgstr "Removido" #: ../connectors/class-wp-stream-connector-acf.php:95 +#, fuzzy +msgctxt "acf" msgid "Field Groups" -msgstr "" +msgstr "Removido \"%s\"" #: ../connectors/class-wp-stream-connector-acf.php:96 +msgctxt "acf" msgid "Fields" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:97 +msgctxt "acf" msgid "Rules" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:98 -#: ../connectors/class-wp-stream-connector-jetpack.php:101 #, fuzzy +msgctxt "acf" msgid "Options" msgstr "ações" #: ../connectors/class-wp-stream-connector-acf.php:99 +msgctxt "acf" msgid "Values" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:224 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" field in \"%2$s\" %3$s" msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-acf.php:252 +msgctxt "acf" msgid "High (after title)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:253 +msgctxt "acf" msgid "Normal (after content)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:254 +msgctxt "acf" msgid "Side" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:258 -#, php-format +#, fuzzy, php-format +msgctxt "acf" msgid "Position of \"%1$s\" updated to \"%2$s\"" -msgstr "" +msgstr "Anexado \"%s\" à \"%s\"" #: ../connectors/class-wp-stream-connector-acf.php:277 +msgctxt "acf" msgid "Seamless (no metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:278 +msgctxt "acf" msgid "Standard (WP metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:282 #, fuzzy, php-format +msgctxt "acf" msgid "Style of \"%1$s\" updated to \"%2$s\"" msgstr "Anexado \"%s\" à \"%s\"" #: ../connectors/class-wp-stream-connector-acf.php:301 #, fuzzy +msgctxt "acf" msgid "Permalink" msgstr "Links Permanentes" #: ../connectors/class-wp-stream-connector-acf.php:302 +#, fuzzy +msgctxt "acf" msgid "Content Editor" -msgstr "" +msgstr "Contexto" #: ../connectors/class-wp-stream-connector-acf.php:303 +msgctxt "acf" msgid "Excerpt" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:304 +msgctxt "acf" msgid "Custom Fields" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:305 -#: ../connectors/class-wp-stream-connector-settings.php:125 +#, fuzzy +msgctxt "acf" msgid "Discussion" msgstr "Discussão" #: ../connectors/class-wp-stream-connector-acf.php:306 -#: ../connectors/class-wp-stream-connector-comments.php:36 -#: ../connectors/class-wp-stream-connector-comments.php:68 -#: ../connectors/class-wp-stream-connector-jetpack.php:109 #, fuzzy +msgctxt "acf" msgid "Comments" msgstr "Lista Negra de Comentários" #: ../connectors/class-wp-stream-connector-acf.php:307 #, fuzzy +msgctxt "acf" msgid "Revisions" msgstr "Revisão" #: ../connectors/class-wp-stream-connector-acf.php:308 +msgctxt "acf" msgid "Slug" msgstr "" +#: ../connectors/class-wp-stream-connector-acf.php:309 +#, fuzzy +msgctxt "acf" +msgid "Author" +msgstr "Autor" + #: ../connectors/class-wp-stream-connector-acf.php:310 #, fuzzy +msgctxt "acf" msgid "Format" msgstr "Formatação" #: ../connectors/class-wp-stream-connector-acf.php:311 +msgctxt "acf" msgid "Featured Image" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:312 -#: ../connectors/class-wp-stream-connector-edd.php:129 #, fuzzy +msgctxt "acf" msgid "Categories" msgstr "Base das categorias" #: ../connectors/class-wp-stream-connector-acf.php:313 -#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "acf" msgid "Tags" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:314 +msgctxt "acf" msgid "Send Trackbacks" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:318 +#, fuzzy +msgctxt "acf" msgid "All screens" -msgstr "" +msgstr "Ação" #: ../connectors/class-wp-stream-connector-acf.php:320 +msgctxt "acf" msgid "No screens" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:326 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" set to display on \"%2$s\"" msgstr "\"%s\" foi adicionado a \"%s\"" @@ -1087,111 +986,126 @@ msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:396 #, fuzzy, php-format +msgctxt "acf" msgid "\"%1$s\" of \"%2$s\" %3$s updated" msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-acf.php:434 -#, php-format +#, fuzzy, php-format +msgctxt "acf" msgid "Updated rules of \"%1$s\" (%2$d added, %3$d deleted)" -msgstr "" +msgstr "Atualizado %s: %s to %s" #: ../connectors/class-wp-stream-connector-acf.php:460 msgid "field group" msgstr "" -#: ../connectors/class-wp-stream-connector-acf.php:494 +#: ../connectors/class-wp-stream-connector-acf.php:495 #, fuzzy, php-format +msgctxt "acf" msgid "Updated Order of \"%1$s\" from %2$d to %3$d" msgstr "Atualizado %s: %s to %s" #: ../connectors/class-wp-stream-connector-bbpress.php:78 +msgctxt "bbpress" msgid "bbPress" msgstr "" +#: ../connectors/class-wp-stream-connector-bbpress.php:88 +#, fuzzy +msgctxt "bbpress" +msgid "Created" +msgstr "Criado" + +#: ../connectors/class-wp-stream-connector-bbpress.php:89 +#, fuzzy +msgctxt "bbpress" +msgid "Updated" +msgstr "Atualizado" + #: ../connectors/class-wp-stream-connector-bbpress.php:90 -#: ../connectors/class-wp-stream-connector-buddypress.php:125 -#: ../connectors/class-wp-stream-connector-gravityforms.php:422 -#: ../connectors/class-wp-stream-connector-installer.php:45 -#: ../connectors/class-wp-stream-connector-jetpack.php:79 +#, fuzzy +msgctxt "bbpress" msgid "Activated" msgstr "Ativado" #: ../connectors/class-wp-stream-connector-bbpress.php:91 -#: ../connectors/class-wp-stream-connector-buddypress.php:126 -#: ../connectors/class-wp-stream-connector-gravityforms.php:423 -#: ../connectors/class-wp-stream-connector-installer.php:46 -#: ../connectors/class-wp-stream-connector-widgets.php:60 +#, fuzzy +msgctxt "bbpress" msgid "Deactivated" msgstr "Desativado" +#: ../connectors/class-wp-stream-connector-bbpress.php:92 +#, fuzzy +msgctxt "bbpress" +msgid "Deleted" +msgstr "Removido" + #: ../connectors/class-wp-stream-connector-bbpress.php:93 -#: ../connectors/class-wp-stream-connector-comments.php:51 -#: ../connectors/class-wp-stream-connector-edd.php:112 -#: ../connectors/class-wp-stream-connector-gravityforms.php:104 -#: ../connectors/class-wp-stream-connector-gravityforms.php:424 -#: ../connectors/class-wp-stream-connector-posts.php:40 -#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +#, fuzzy +msgctxt "bbpress" msgid "Trashed" msgstr "Colocado na Lixeira" #: ../connectors/class-wp-stream-connector-bbpress.php:94 -#: ../connectors/class-wp-stream-connector-comments.php:52 -#: ../connectors/class-wp-stream-connector-edd.php:113 -#: ../connectors/class-wp-stream-connector-gravityforms.php:105 -#: ../connectors/class-wp-stream-connector-gravityforms.php:425 -#: ../connectors/class-wp-stream-connector-posts.php:41 +msgctxt "bbpress" msgid "Restored" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:95 -#: ../connectors/class-wp-stream-connector-edd.php:114 #, fuzzy +msgctxt "bbpress" msgid "Generated" msgstr "Global" #: ../connectors/class-wp-stream-connector-bbpress.php:96 -#: ../connectors/class-wp-stream-connector-edd.php:115 -#: ../connectors/class-wp-stream-connector-gravityforms.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:82 #, fuzzy +msgctxt "bbpress" msgid "Imported" msgstr "Reorganizado" #: ../connectors/class-wp-stream-connector-bbpress.php:97 -#: ../connectors/class-wp-stream-connector-edd.php:116 -#: ../connectors/class-wp-stream-connector-gravityforms.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:81 #, fuzzy +msgctxt "bbpress" msgid "Exported" msgstr "Reorganizado" #: ../connectors/class-wp-stream-connector-bbpress.php:98 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgctxt "bbpress" msgid "Closed" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:99 +msgctxt "bbpress" msgid "Opened" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:100 +msgctxt "bbpress" msgid "Sticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:101 +msgctxt "bbpress" msgid "Unsticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:102 -#: ../connectors/class-wp-stream-connector-buddypress.php:128 +msgctxt "bbpress" msgid "Marked as spam" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:103 -#: ../connectors/class-wp-stream-connector-buddypress.php:129 +msgctxt "bbpress" msgid "Unmarked as spam" msgstr "" +#: ../connectors/class-wp-stream-connector-bbpress.php:114 +#, fuzzy +msgctxt "bbpress" +msgid "Settings" +msgstr "Configurações" + #: ../connectors/class-wp-stream-connector-bbpress.php:131 #: ../connectors/class-wp-stream-connector-buddypress.php:164 #: ../connectors/class-wp-stream-connector-buddypress.php:223 @@ -1199,8 +1113,8 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:254 #: ../connectors/class-wp-stream-connector-comments.php:124 #: ../connectors/class-wp-stream-connector-gravityforms.php:137 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:126 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:133 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:117 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:124 msgid "Edit" msgstr "Editar" @@ -1221,126 +1135,86 @@ msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:209 #, fuzzy, php-format +msgctxt "1: Action, 2: Topic title" msgid "%1$s \"%2$s\" topic" msgstr "\"%s\" %s atualizado" -#: ../connectors/class-wp-stream-connector-blogs.php:39 -msgid "Sites" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:51 -msgid "Archived" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:85 -#: ../connectors/class-wp-stream-connector-blogs.php:90 +#: ../connectors/class-wp-stream-connector-buddypress.php:113 #, fuzzy -msgid "Site Admin" -msgstr "Título do Site" +msgctxt "buddypress" +msgid "BuddyPress" +msgstr "Endereço de IP" -#: ../connectors/class-wp-stream-connector-blogs.php:101 +#: ../connectors/class-wp-stream-connector-buddypress.php:123 #, fuzzy -msgid "Site Settings" -msgstr "Configurações do Stream" - -#: ../connectors/class-wp-stream-connector-blogs.php:116 -#, php-format -msgid "A new site called \"%1$s\" has been created." -msgstr "" +msgctxt "buddypress" +msgid "Created" +msgstr "Criado" -#: ../connectors/class-wp-stream-connector-blogs.php:139 -#, php-format -msgid "A new site called \"%1$s\" has been registered." -msgstr "" +#: ../connectors/class-wp-stream-connector-buddypress.php:124 +#, fuzzy +msgctxt "buddypress" +msgid "Updated" +msgstr "Atualizado" -#: ../connectors/class-wp-stream-connector-blogs.php:170 -#, php-format -msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." -msgstr "" +#: ../connectors/class-wp-stream-connector-buddypress.php:125 +#, fuzzy +msgctxt "buddypress" +msgid "Activated" +msgstr "Ativado" -#: ../connectors/class-wp-stream-connector-blogs.php:201 -#, fuzzy, php-format -msgid "%1$s has been removed from the site \"%2$s\"." -msgstr "\"%s\" for removido de \"%s\"" +#: ../connectors/class-wp-stream-connector-buddypress.php:126 +#, fuzzy +msgctxt "buddypress" +msgid "Deactivated" +msgstr "Desativado" -#: ../connectors/class-wp-stream-connector-blogs.php:220 -#: ../connectors/class-wp-stream-connector-gravityforms.php:650 -msgid "marked as spam" -msgstr "" +#: ../connectors/class-wp-stream-connector-buddypress.php:127 +#, fuzzy +msgctxt "buddypress" +msgid "Deleted" +msgstr "Removido" -#: ../connectors/class-wp-stream-connector-blogs.php:228 -msgid "marked as not spam" +#: ../connectors/class-wp-stream-connector-buddypress.php:128 +msgctxt "buddypress" +msgid "Marked as spam" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:236 -msgid "marked as mature" +#: ../connectors/class-wp-stream-connector-buddypress.php:129 +msgctxt "buddypress" +msgid "Unmarked as spam" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:244 -msgid "marked as not mature" +#: ../connectors/class-wp-stream-connector-buddypress.php:130 +msgctxt "buddypress" +msgid "Promoted" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:252 -msgid "archived" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:260 -msgid "restored from archive" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:268 -#: ../connectors/class-wp-stream-connector-gravityforms.php:497 -#, fuzzy -msgid "deleted" -msgstr "Removido" - -#: ../connectors/class-wp-stream-connector-blogs.php:276 -#: ../connectors/class-wp-stream-connector-gravityforms.php:652 -msgid "restored" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:286 -msgid "marked as public" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:288 -msgid "marked as private" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:302 -#, fuzzy, php-format -msgid "\"%1$s\" has been %2$s." -msgstr "\"%s\" foi adicionado a \"%s\"" - -#: ../connectors/class-wp-stream-connector-buddypress.php:113 -#, fuzzy -msgid "BuddyPress" -msgstr "Endereço de IP" - -#: ../connectors/class-wp-stream-connector-buddypress.php:130 -msgid "Promoted" -msgstr "" - -#: ../connectors/class-wp-stream-connector-buddypress.php:131 -msgid "Demoted" +#: ../connectors/class-wp-stream-connector-buddypress.php:131 +msgctxt "buddypress" +msgid "Demoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:142 #, fuzzy +msgctxt "buddypress" msgid "Components" msgstr "Lista Negra de Comentários" #: ../connectors/class-wp-stream-connector-buddypress.php:143 +msgctxt "buddypress" msgid "Groups" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:144 #, fuzzy +msgctxt "buddypress" msgid "Activity" msgstr "Ativado" #: ../connectors/class-wp-stream-connector-buddypress.php:145 #, fuzzy +msgctxt "buddypress" msgid "Profile fields" msgstr "Editar Perfil" @@ -1362,7 +1236,7 @@ msgstr "Editar Perfil" #: ../connectors/class-wp-stream-connector-posts.php:106 #: ../connectors/class-wp-stream-connector-taxonomies.php:94 #: ../connectors/class-wp-stream-connector-woocommerce.php:220 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:174 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:165 msgid "View" msgstr "Ver" @@ -1394,47 +1268,56 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:263 #: ../extensions/notifications/views/form-templates.php:19 #: ../extensions/notifications/views/form-templates.php:78 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:181 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:173 #, fuzzy msgid "Delete" msgstr "Removido" #: ../connectors/class-wp-stream-connector-buddypress.php:284 #: ../connectors/class-wp-stream-connector-buddypress.php:288 +msgctxt "buddypress" msgid "Toolbar" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:292 +msgctxt "buddypress" msgid "Account Deletion" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:296 #, fuzzy +msgctxt "buddypress" msgid "Profile Syncing" msgstr "Editar Perfil" #: ../connectors/class-wp-stream-connector-buddypress.php:300 +msgctxt "buddypress" msgid "Group Creation" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:304 +msgctxt "buddypress" msgid "bbPress Configuration" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:308 +msgctxt "buddypress" msgid "Blog & Forum Comments" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:312 +msgctxt "buddypress" msgid "Activity auto-refresh" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:316 +msgctxt "buddypress" msgid "Akismet" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:320 #, fuzzy +msgctxt "buddypress" msgid "Avatar Uploads" msgstr "Exibição do avatar" @@ -1475,13 +1358,13 @@ msgid "\"%1$s\" component %2$s" msgstr "\"%s\" foi adicionado a \"%s\"" #: ../connectors/class-wp-stream-connector-buddypress.php:432 +msgctxt "buddypress" msgid "Register" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:433 -#: ../connectors/class-wp-stream-connector-jetpack.php:159 -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 #, fuzzy +msgctxt "buddypress" msgid "Activate" msgstr "Ativado" @@ -1560,10 +1443,12 @@ msgid "Removed \"%2$s\" from \"%1$s\"" msgstr "Anexado \"%s\" à \"%s\"" #: ../connectors/class-wp-stream-connector-buddypress.php:665 +msgctxt "buddypress" msgid "Administrator" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:666 +msgctxt "buddypress" msgid "Moderator" msgstr "" @@ -1579,6 +1464,7 @@ msgstr "Atualizado \"%s\" em \"%s\"" #: ../connectors/class-wp-stream-connector-buddypress.php:682 #, fuzzy +msgctxt "buddypress" msgid "Member" msgstr "Membros" @@ -1612,6 +1498,12 @@ msgstr "Atualizado Menu \"%s\"" msgid "Deleted profile field group \"%s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:36 +#: ../connectors/class-wp-stream-connector-comments.php:68 +#, fuzzy +msgid "Comments" +msgstr "Lista Negra de Comentários" + #: ../connectors/class-wp-stream-connector-comments.php:47 msgid "Edited" msgstr "Editado" @@ -1628,6 +1520,18 @@ msgstr "" msgid "Unapproved" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:51 +#: ../connectors/class-wp-stream-connector-gravityforms.php:424 +#: ../connectors/class-wp-stream-connector-posts.php:40 +msgid "Trashed" +msgstr "Colocado na Lixeira" + +#: ../connectors/class-wp-stream-connector-comments.php:52 +#: ../connectors/class-wp-stream-connector-gravityforms.php:425 +#: ../connectors/class-wp-stream-connector-posts.php:41 +msgid "Restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-comments.php:53 msgid "Marked as Spam" msgstr "" @@ -1704,89 +1608,166 @@ msgid "automatically marked as spam by Akismet" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:248 -#, php-format +#, fuzzy, php-format +msgctxt "" +"1: Parent comment's author, 2: Comment author, 3: Post title, 4: Comment " +"status, 5: Comment type" msgid "Reply to %1$s's %5$s by %2$s on %3$s %4$s" -msgstr "" +msgstr "Atualizado %s: %s to %s" #: ../connectors/class-wp-stream-connector-comments.php:261 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title 3: Comment status, 4: Comment type" msgid "New %4$s by %1$s on %2$s %3$s" msgstr "Atualizado %s: %s to %s" #: ../connectors/class-wp-stream-connector-comments.php:295 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s edited" msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-comments.php:327 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s deleted permanently" msgstr "\"%s\" %s removido da lixeira" #: ../connectors/class-wp-stream-connector-comments.php:359 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s trashed" msgstr "\"%s\" %s jogado na lixeira" #: ../connectors/class-wp-stream-connector-comments.php:391 #, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s restored" msgstr "\"%s\" %s criado" #: ../connectors/class-wp-stream-connector-comments.php:423 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s marked as spam" -msgstr "" +msgstr "\"%s\" %s jogado na lixeira" #: ../connectors/class-wp-stream-connector-comments.php:455 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s unmarked as spam" -msgstr "" +msgstr "\"%s\" %s jogado na lixeira" #: ../connectors/class-wp-stream-connector-comments.php:489 #, fuzzy, php-format +msgctxt "" +"Comment status transition. 1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s %2$s" msgstr "Atualizado %s: %s to %s" #: ../connectors/class-wp-stream-connector-comments.php:524 -#, php-format +#, fuzzy, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "Duplicate %3$s by %1$s prevented on %2$s" -msgstr "" +msgstr "Atualizado %s: %s to %s" #: ../connectors/class-wp-stream-connector-edd.php:98 +msgctxt "edd" msgid "Easy Digital Downloads" msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:108 +#, fuzzy +msgctxt "edd" +msgid "Created" +msgstr "Criado" + +#: ../connectors/class-wp-stream-connector-edd.php:109 +#, fuzzy +msgctxt "edd" +msgid "Updated" +msgstr "Atualizado" + +#: ../connectors/class-wp-stream-connector-edd.php:110 +#, fuzzy +msgctxt "edd" +msgid "Added" +msgstr "Adicionado" + +#: ../connectors/class-wp-stream-connector-edd.php:111 +#, fuzzy +msgctxt "edd" +msgid "Deleted" +msgstr "Removido" + +#: ../connectors/class-wp-stream-connector-edd.php:112 +#, fuzzy +msgctxt "edd" +msgid "Trashed" +msgstr "Colocado na Lixeira" + +#: ../connectors/class-wp-stream-connector-edd.php:113 +msgctxt "edd" +msgid "Restored" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:114 +#, fuzzy +msgctxt "edd" +msgid "Generated" +msgstr "Global" + +#: ../connectors/class-wp-stream-connector-edd.php:115 +#, fuzzy +msgctxt "edd" +msgid "Imported" +msgstr "Reorganizado" + +#: ../connectors/class-wp-stream-connector-edd.php:116 +#, fuzzy +msgctxt "edd" +msgid "Exported" +msgstr "Reorganizado" + #: ../connectors/class-wp-stream-connector-edd.php:117 +msgctxt "edd" msgid "Revoked" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:128 +msgctxt "edd" msgid "Downloads" msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:129 +#, fuzzy +msgctxt "edd" +msgid "Categories" +msgstr "Base das categorias" + +#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "edd" +msgid "Tags" +msgstr "" + #: ../connectors/class-wp-stream-connector-edd.php:131 #, fuzzy +msgctxt "edd" msgid "Discounts" msgstr "conectores" #: ../connectors/class-wp-stream-connector-edd.php:132 -#: ../extensions/reports/class-wp-stream-reports.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:146 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:56 +#, fuzzy +msgctxt "edd" msgid "Reports" -msgstr "" +msgstr "Registros do Stream" #: ../connectors/class-wp-stream-connector-edd.php:133 +msgctxt "edd" msgid "API Keys" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:155 #: ../connectors/class-wp-stream-connector-edd.php:182 -#: ../connectors/class-wp-stream-connector-posts.php:103 -#: ../connectors/class-wp-stream-connector-taxonomies.php:93 -#: ../connectors/class-wp-stream-connector-woocommerce.php:216 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:171 #, php-format msgid "Edit %s" msgstr "Editar %s" @@ -1815,6 +1796,7 @@ msgid "Reissue" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:273 +msgctxt "edd" msgid "Banned emails" msgstr "" @@ -1908,6 +1890,7 @@ msgstr "Plugins" #: ../connectors/class-wp-stream-connector-editor.php:112 #, fuzzy, php-format +msgctxt "1: File name, 2: Theme/plugin name" msgid "\"%1$s\" in \"%2$s\" updated" msgstr "\"%s\" %s atualizado" @@ -1923,26 +1906,87 @@ msgid "Theme Details" msgstr "Temas" #: ../connectors/class-wp-stream-connector-gravityforms.php:88 +msgctxt "gravityforms" msgid "Gravity Forms" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:98 +#, fuzzy +msgctxt "gravityforms" +msgid "Created" +msgstr "Criado" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:99 +#, fuzzy +msgctxt "gravityforms" +msgid "Updated" +msgstr "Atualizado" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:100 +#, fuzzy +msgctxt "gravityforms" +msgid "Exported" +msgstr "Reorganizado" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:101 +#, fuzzy +msgctxt "gravityforms" +msgid "Imported" +msgstr "Reorganizado" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:102 +#, fuzzy +msgctxt "gravityforms" +msgid "Added" +msgstr "Adicionado" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:103 +#, fuzzy +msgctxt "gravityforms" +msgid "Deleted" +msgstr "Removido" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:104 +#, fuzzy +msgctxt "gravityforms" +msgid "Trashed" +msgstr "Colocado na Lixeira" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:105 +msgctxt "gravityforms" +msgid "Restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:106 +#, fuzzy +msgctxt "gravityforms" msgid "Duplicated" -msgstr "" +msgstr "Atualizado" #: ../connectors/class-wp-stream-connector-gravityforms.php:117 +#, fuzzy +msgctxt "gravityforms" msgid "Forms" -msgstr "" +msgstr "Formatação" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#, fuzzy +msgctxt "gravityforms" +msgid "Settings" +msgstr "Configurações" #: ../connectors/class-wp-stream-connector-gravityforms.php:119 +msgctxt "gravityforms" msgid "Import/Export" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:120 +msgctxt "gravityforms" msgid "Entries" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:121 +msgctxt "gravityforms" msgid "Notes" msgstr "" @@ -1952,26 +1996,32 @@ msgid "Edit Settings" msgstr "Editar %s configuração" #: ../connectors/class-wp-stream-connector-gravityforms.php:181 +msgctxt "gravityforms" msgid "Output CSS" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:184 +msgctxt "gravityforms" msgid "Output HTML5" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:187 +msgctxt "gravityforms" msgid "No-Conflict Mode" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:190 +msgctxt "gravityforms" msgid "Currency" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:193 +msgctxt "gravityforms" msgid "reCAPTCHA Public Key" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:196 +msgctxt "gravityforms" msgid "reCAPTCHA Private Key" msgstr "" @@ -2016,11 +2066,27 @@ msgstr "A senha de %s foi reconfigurada" msgid "\"%1$s\" notification %2$s from \"%3$s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:422 +#: ../connectors/class-wp-stream-connector-installer.php:45 +msgid "Activated" +msgstr "Ativado" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:423 +#: ../connectors/class-wp-stream-connector-installer.php:46 +#: ../connectors/class-wp-stream-connector-widgets.php:60 +msgid "Deactivated" +msgstr "Desativado" + #: ../connectors/class-wp-stream-connector-gravityforms.php:496 #, php-format msgid "Gravity Forms license key %s" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:497 +#, fuzzy +msgid "deleted" +msgstr "Removido" + #: ../connectors/class-wp-stream-connector-gravityforms.php:510 #, fuzzy, php-format msgid "\"%s\" form exported" @@ -2060,11 +2126,19 @@ msgstr "" msgid "Note #%1$d deleted from lead #%2$d on \"%3$s\" form" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:650 +msgid "marked as spam" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:651 #, fuzzy msgid "trashed" msgstr "Colocado na Lixeira" +#: ../connectors/class-wp-stream-connector-gravityforms.php:652 +msgid "restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:661 #: ../connectors/class-wp-stream-connector-gravityforms.php:708 #, fuzzy, php-format @@ -2115,11 +2189,17 @@ msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:149 #, fuzzy, php-format +msgctxt "" +"Plugin/theme installation. 1: Type (plugin/theme), 2: Plugin/theme name, 3: " +"Plugin/theme version" msgid "Installed %1$s: %2$s %3$s" msgstr "Instalado %s: %s %s" #: ../connectors/class-wp-stream-connector-installer.php:157 #, fuzzy, php-format +msgctxt "" +"Plugin/theme update. 1: Type (plugin/theme), 2: Plugin/theme name, 3: Plugin/" +"theme version" msgid "Updated %1$s: %2$s %3$s" msgstr "Atualizado %s: %s to %s" @@ -2131,11 +2211,13 @@ msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:225 #, fuzzy, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin activated %2$s" msgstr "\"%s\" plugin ativado %s" #: ../connectors/class-wp-stream-connector-installer.php:243 #, fuzzy, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin deactivated %2$s" msgstr "\"%s\" plugin desativado %s" @@ -2165,127 +2247,182 @@ msgid "WordPress updated to %s" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:69 +msgctxt "jetpack" msgid "Jetpack" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:79 +#, fuzzy +msgctxt "jetpack" +msgid "Activated" +msgstr "Ativado" + #: ../connectors/class-wp-stream-connector-jetpack.php:80 #, fuzzy +msgctxt "jetpack" msgid "Dectivated" msgstr "Desativado" #: ../connectors/class-wp-stream-connector-jetpack.php:81 #, fuzzy +msgctxt "jetpack" msgid "Connected" msgstr "Conector" #: ../connectors/class-wp-stream-connector-jetpack.php:82 #, fuzzy +msgctxt "jetpack" msgid "Disconnected" msgstr "conectores" #: ../connectors/class-wp-stream-connector-jetpack.php:83 +msgctxt "jetpack" msgid "Link" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:84 +msgctxt "jetpack" msgid "Unlink" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:85 +#, fuzzy +msgctxt "jetpack" +msgid "Updated" +msgstr "Atualizado" + +#: ../connectors/class-wp-stream-connector-jetpack.php:86 +#, fuzzy +msgctxt "jetpack" +msgid "Added" +msgstr "Adicionado" + #: ../connectors/class-wp-stream-connector-jetpack.php:87 -#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgctxt "jetpack" msgid "Removed" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:98 +msgctxt "jetpack" msgid "Modules" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:99 +msgctxt "jetpack" msgid "Blogs" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:100 -#: ../connectors/class-wp-stream-connector-users.php:43 -#: ../connectors/class-wp-stream-connector-users.php:70 +#, fuzzy +msgctxt "jetpack" msgid "Users" msgstr "Usuários" +#: ../connectors/class-wp-stream-connector-jetpack.php:101 +#, fuzzy +msgctxt "jetpack" +msgid "Options" +msgstr "ações" + #: ../connectors/class-wp-stream-connector-jetpack.php:102 +msgctxt "jetpack" msgid "Sharing" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:103 +msgctxt "jetpack" msgid "Publicize" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:104 #, fuzzy +msgctxt "jetpack" msgid "Google+ Profile" msgstr "Ver Perfil" #: ../connectors/class-wp-stream-connector-jetpack.php:105 -#: ../connectors/class-wp-stream-connector-jetpack.php:203 +msgctxt "jetpack" msgid "WordPress.com Stats" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:106 +msgctxt "jetpack" msgid "Carousel" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:107 +msgctxt "jetpack" msgid "Custom CSS" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:108 #, fuzzy +msgctxt "jetpack" msgid "Subscriptions" msgstr "ações" +#: ../connectors/class-wp-stream-connector-jetpack.php:109 +#, fuzzy +msgctxt "jetpack" +msgid "Comments" +msgstr "Lista Negra de Comentários" + #: ../connectors/class-wp-stream-connector-jetpack.php:110 +msgctxt "jetpack" msgid "Infinite Scroll" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:111 +msgctxt "jetpack" msgid "SSO" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:112 +msgctxt "jetpack" msgid "Likes" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:113 +msgctxt "jetpack" msgid "Mobile" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:114 +#, fuzzy +msgctxt "jetpack" msgid "Monitor" -msgstr "" +msgstr "Editar" #: ../connectors/class-wp-stream-connector-jetpack.php:115 +msgctxt "jetpack" msgid "Post by Email" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:116 +msgctxt "jetpack" msgid "Related Posts" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:117 #, fuzzy +msgctxt "jetpack" msgid "Site Verification" msgstr "Configurações do Stream" #: ../connectors/class-wp-stream-connector-jetpack.php:118 -#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgctxt "jetpack" msgid "Tiled Galleries" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:119 +#, fuzzy +msgctxt "jetpack" msgid "VideoPress" -msgstr "" +msgstr "Endereço de IP" #: ../connectors/class-wp-stream-connector-jetpack.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:222 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:182 +#: ../extensions/reports/class-wp-stream-reports.php:220 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:174 msgid "Configure" msgstr "" @@ -2295,6 +2432,12 @@ msgstr "" msgid "Deactivate" msgstr "Desativado" +#: ../connectors/class-wp-stream-connector-jetpack.php:159 +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 +#, fuzzy +msgid "Activate" +msgstr "Ativado" + #: ../connectors/class-wp-stream-connector-jetpack.php:174 msgid "Configure module" msgstr "" @@ -2307,6 +2450,10 @@ msgstr "" msgid "Twitter site tag" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:203 +msgid "WordPress.com Stats" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:208 msgid "Color Scheme" msgstr "" @@ -2375,6 +2522,10 @@ msgstr "" msgid "Pinterest Site Verification Token" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgid "Tiled Galleries" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:322 #, php-format msgid "%1$s module %2$s" @@ -2581,6 +2732,7 @@ msgstr "Editar Mídia" #: ../connectors/class-wp-stream-connector-media.php:126 #, fuzzy, php-format +msgctxt "1: Attachment title, 2: Parent post title" msgid "Attached \"%1$s\" to \"%2$s\"" msgstr "Anexado \"%s\" à \"%s\"" @@ -2595,7 +2747,6 @@ msgid "Updated \"%s\"" msgstr "Atualizado \"%s\"" #: ../connectors/class-wp-stream-connector-media.php:179 -#: ../connectors/class-wp-stream-connector-menus.php:141 #, php-format msgid "Deleted \"%s\"" msgstr "Removido \"%s\"" @@ -2619,17 +2770,26 @@ msgid "Created new menu \"%s\"" msgstr "Criado novo Menu \"%s\"" #: ../connectors/class-wp-stream-connector-menus.php:123 -#, php-format +#, fuzzy, php-format +msgctxt "Menu name" msgid "Updated menu \"%s\"" msgstr "Atualizado Menu \"%s\"" -#: ../connectors/class-wp-stream-connector-menus.php:181 +#: ../connectors/class-wp-stream-connector-menus.php:141 +#, fuzzy, php-format +msgctxt "Menu name" +msgid "Deleted \"%s\"" +msgstr "Removido \"%s\"" + +#: ../connectors/class-wp-stream-connector-menus.php:181 #, fuzzy, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been unassigned from \"%2$s\"" msgstr "\"%s\" foi desatribuído de \"%s\"" #: ../connectors/class-wp-stream-connector-menus.php:189 #, fuzzy, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been assigned to \"%2$s\"" msgstr "\"%s\" foi atribuído à \"%s\"" @@ -2638,57 +2798,72 @@ msgid "Posts" msgstr "Posts" #: ../connectors/class-wp-stream-connector-posts.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:168 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:159 #, php-format +msgctxt "Post type singular name" msgid "Restore %s" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 -#, php-format +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:160 +#, fuzzy, php-format +msgctxt "Post type singular name" msgid "Delete %s Permenantly" -msgstr "" +msgstr "Removido \"%s\"" + +#: ../connectors/class-wp-stream-connector-posts.php:103 +#: ../connectors/class-wp-stream-connector-woocommerce.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:162 +#, fuzzy, php-format +msgctxt "Post type singular name" +msgid "Edit %s" +msgstr "Editar %s" #: ../connectors/class-wp-stream-connector-posts.php:110 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:178 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 msgid "Revision" msgstr "Revisão" #: ../connectors/class-wp-stream-connector-posts.php:147 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s drafted" msgstr "\"%s\" %s criou rascunho" #: ../connectors/class-wp-stream-connector-posts.php:154 #: ../connectors/class-wp-stream-connector-posts.php:161 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s published" msgstr "\"%s\" %s publicado" #: ../connectors/class-wp-stream-connector-posts.php:167 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s unpublished" msgstr "\"%s\" %s despublicado" #: ../connectors/class-wp-stream-connector-posts.php:173 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s trashed" msgstr "\"%s\" %s jogado na lixeira" #: ../connectors/class-wp-stream-connector-posts.php:180 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s restored from trash" msgstr "\"%s\" %s removido da lixeira" #: ../connectors/class-wp-stream-connector-posts.php:187 -#: ../connectors/class-wp-stream-connector-taxonomies.php:200 -#: ../connectors/class-wp-stream-connector-woocommerce.php:611 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s updated" msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-posts.php:254 #, fuzzy, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s deleted from trash" msgstr "\"%s\" %s removido da lixeira" @@ -2705,8 +2880,11 @@ msgstr "Escrita" msgid "Reading" msgstr "Leitura" +#: ../connectors/class-wp-stream-connector-settings.php:125 +msgid "Discussion" +msgstr "Discussão" + #: ../connectors/class-wp-stream-connector-settings.php:127 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:97 msgid "Permalinks" msgstr "Links Permanentes" @@ -2732,354 +2910,372 @@ msgstr "Registros do Stream" msgid "Stream Defaults" msgstr "Configurações do Stream" -#: ../connectors/class-wp-stream-connector-settings.php:208 +#: ../connectors/class-wp-stream-connector-settings.php:233 msgid "Site Title" msgstr "Título do Site" -#: ../connectors/class-wp-stream-connector-settings.php:209 +#: ../connectors/class-wp-stream-connector-settings.php:234 msgid "Tagline" msgstr "Descrição" -#: ../connectors/class-wp-stream-connector-settings.php:210 +#: ../connectors/class-wp-stream-connector-settings.php:235 msgid "WordPress Address (URL)" msgstr "Endereço do WordPress (URL)" -#: ../connectors/class-wp-stream-connector-settings.php:211 +#: ../connectors/class-wp-stream-connector-settings.php:236 msgid "Site Address (URL)" msgstr "Endereço do site (URL)" -#: ../connectors/class-wp-stream-connector-settings.php:212 +#: ../connectors/class-wp-stream-connector-settings.php:237 msgid "E-mail Address" msgstr "Endereço de Email" -#: ../connectors/class-wp-stream-connector-settings.php:213 +#: ../connectors/class-wp-stream-connector-settings.php:238 msgid "Membership" msgstr "Membros" -#: ../connectors/class-wp-stream-connector-settings.php:214 +#: ../connectors/class-wp-stream-connector-settings.php:239 msgid "New User Default Role" msgstr "Função padrão para novo usuário" -#: ../connectors/class-wp-stream-connector-settings.php:215 +#: ../connectors/class-wp-stream-connector-settings.php:240 msgid "Timezone" msgstr "Fuso horário" -#: ../connectors/class-wp-stream-connector-settings.php:216 +#: ../connectors/class-wp-stream-connector-settings.php:241 msgid "Date Format" msgstr "Formato de Data" -#: ../connectors/class-wp-stream-connector-settings.php:217 +#: ../connectors/class-wp-stream-connector-settings.php:242 msgid "Time Format" msgstr "Formato de Hora" -#: ../connectors/class-wp-stream-connector-settings.php:218 +#: ../connectors/class-wp-stream-connector-settings.php:243 msgid "Week Starts On" msgstr "Formato de Hora" -#: ../connectors/class-wp-stream-connector-settings.php:220 -#: ../connectors/class-wp-stream-connector-settings.php:221 +#: ../connectors/class-wp-stream-connector-settings.php:245 +#: ../connectors/class-wp-stream-connector-settings.php:246 msgid "Formatting" msgstr "Formatação" -#: ../connectors/class-wp-stream-connector-settings.php:222 +#: ../connectors/class-wp-stream-connector-settings.php:247 msgid "Default Post Category" msgstr "Categoria padrão de post" -#: ../connectors/class-wp-stream-connector-settings.php:223 +#: ../connectors/class-wp-stream-connector-settings.php:248 msgid "Default Post Format" msgstr "Formato padrão de Post" -#: ../connectors/class-wp-stream-connector-settings.php:224 +#: ../connectors/class-wp-stream-connector-settings.php:249 #, fuzzy msgid "Mail Server" msgstr "Endereço do servidor de Email" -#: ../connectors/class-wp-stream-connector-settings.php:225 +#: ../connectors/class-wp-stream-connector-settings.php:250 #, fuzzy msgid "Login Name" msgstr "Entrar no sistema" -#: ../connectors/class-wp-stream-connector-settings.php:226 +#: ../connectors/class-wp-stream-connector-settings.php:251 #, fuzzy msgid "Password" msgstr "Re-definir senha" -#: ../connectors/class-wp-stream-connector-settings.php:227 +#: ../connectors/class-wp-stream-connector-settings.php:252 msgid "Default Mail Category" msgstr "Categoria padrão para email" -#: ../connectors/class-wp-stream-connector-settings.php:228 +#: ../connectors/class-wp-stream-connector-settings.php:253 msgid "Update Services" msgstr "Serviços de Atualização" -#: ../connectors/class-wp-stream-connector-settings.php:230 -#: ../connectors/class-wp-stream-connector-settings.php:231 -#: ../connectors/class-wp-stream-connector-settings.php:232 +#: ../connectors/class-wp-stream-connector-settings.php:255 +#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:257 msgid "Front page displays" msgstr "A página inicial mostra" -#: ../connectors/class-wp-stream-connector-settings.php:233 +#: ../connectors/class-wp-stream-connector-settings.php:258 msgid "Blog pages show at most" msgstr "As páginas do blog mostram no máximo" -#: ../connectors/class-wp-stream-connector-settings.php:234 +#: ../connectors/class-wp-stream-connector-settings.php:259 msgid "Syndication feeds show the most recent" msgstr "Os feeds RSS mostram os últimos" -#: ../connectors/class-wp-stream-connector-settings.php:235 +#: ../connectors/class-wp-stream-connector-settings.php:260 msgid "For each article in a feed, show" msgstr "Para cada post em um feed, mostrar" -#: ../connectors/class-wp-stream-connector-settings.php:236 +#: ../connectors/class-wp-stream-connector-settings.php:261 msgid "Search Engine Visibility" msgstr "Visibilidade nos mecanismos de busca" -#: ../connectors/class-wp-stream-connector-settings.php:238 -#: ../connectors/class-wp-stream-connector-settings.php:239 -#: ../connectors/class-wp-stream-connector-settings.php:240 +#: ../connectors/class-wp-stream-connector-settings.php:263 +#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:265 msgid "Default article settings" msgstr "Configurações padrão de posts" -#: ../connectors/class-wp-stream-connector-settings.php:241 -#: ../connectors/class-wp-stream-connector-settings.php:242 -#: ../connectors/class-wp-stream-connector-settings.php:243 -#: ../connectors/class-wp-stream-connector-settings.php:244 -#: ../connectors/class-wp-stream-connector-settings.php:245 -#: ../connectors/class-wp-stream-connector-settings.php:246 -#: ../connectors/class-wp-stream-connector-settings.php:247 -#: ../connectors/class-wp-stream-connector-settings.php:248 -#: ../connectors/class-wp-stream-connector-settings.php:249 -#: ../connectors/class-wp-stream-connector-settings.php:250 +#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:267 +#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:270 +#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:274 +#: ../connectors/class-wp-stream-connector-settings.php:275 msgid "Other comment settings" msgstr "Outras configurações de comentários" -#: ../connectors/class-wp-stream-connector-settings.php:251 -#: ../connectors/class-wp-stream-connector-settings.php:252 +#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:277 msgid "E-mail me whenever" msgstr "Envie-me um email quando" -#: ../connectors/class-wp-stream-connector-settings.php:253 -#: ../connectors/class-wp-stream-connector-settings.php:254 +#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:279 msgid "Before a comment appears" msgstr "Antes de um comentário aparecer" -#: ../connectors/class-wp-stream-connector-settings.php:255 -#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:281 msgid "Comment Moderation" msgstr "Moderação de Comentários" -#: ../connectors/class-wp-stream-connector-settings.php:257 +#: ../connectors/class-wp-stream-connector-settings.php:282 msgid "Comment Blacklist" msgstr "Lista Negra de Comentários" -#: ../connectors/class-wp-stream-connector-settings.php:258 +#: ../connectors/class-wp-stream-connector-settings.php:283 msgid "Show Avatars" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:259 +#: ../connectors/class-wp-stream-connector-settings.php:284 #, fuzzy msgid "Maximum Rating" msgstr "Classificação Máxima do Avatar" -#: ../connectors/class-wp-stream-connector-settings.php:260 +#: ../connectors/class-wp-stream-connector-settings.php:285 msgid "Default Avatar" msgstr "Avatar Padrão" -#: ../connectors/class-wp-stream-connector-settings.php:262 -#: ../connectors/class-wp-stream-connector-settings.php:263 -#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:289 #, fuzzy msgid "Thumbnail size" msgstr "Tamanho da Miniatura de Imagem" -#: ../connectors/class-wp-stream-connector-settings.php:265 -#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:291 #, fuzzy msgid "Medium size" msgstr "Tamanho médio de imagem" -#: ../connectors/class-wp-stream-connector-settings.php:267 -#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:293 #, fuzzy msgid "Large size" msgstr "Tamanho Grande de imagem" -#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:294 #, fuzzy msgid "Uploading Files" msgstr "Tamanho médio" -#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:296 #, fuzzy msgid "Permalink Settings" msgstr "Links Permanentes" -#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:297 msgid "Category base" msgstr "Base das categorias" -#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:298 msgid "Tag base" msgstr "Base das tags" -#: ../connectors/class-wp-stream-connector-settings.php:275 +#: ../connectors/class-wp-stream-connector-settings.php:300 msgid "Registration notification" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:301 #, fuzzy msgid "Allow new registrations" msgstr "Novo registro de usuário" -#: ../connectors/class-wp-stream-connector-settings.php:277 +#: ../connectors/class-wp-stream-connector-settings.php:302 msgid "Add New Users" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:303 msgid "Enable administration menus" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:279 +#: ../connectors/class-wp-stream-connector-settings.php:304 msgid "Site upload space check" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:305 msgid "Site upload space" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:281 +#: ../connectors/class-wp-stream-connector-settings.php:306 msgid "Upload file types" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:282 +#: ../connectors/class-wp-stream-connector-settings.php:307 #, fuzzy msgid "Network Title" msgstr "Título do Site" -#: ../connectors/class-wp-stream-connector-settings.php:283 +#: ../connectors/class-wp-stream-connector-settings.php:308 msgid "First Post" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:284 +#: ../connectors/class-wp-stream-connector-settings.php:309 msgid "First Page" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:285 +#: ../connectors/class-wp-stream-connector-settings.php:310 msgid "First Comment" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:286 +#: ../connectors/class-wp-stream-connector-settings.php:311 msgid "First Comment URL" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:312 msgid "First Comment Author" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:313 msgid "Welcome Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:289 +#: ../connectors/class-wp-stream-connector-settings.php:314 msgid "Welcome User Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:315 msgid "Max upload file size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:291 +#: ../connectors/class-wp-stream-connector-settings.php:316 #, fuzzy msgid "Terms Enabled" msgstr "Ativado" -#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:317 msgid "Banned Names" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:293 +#: ../connectors/class-wp-stream-connector-settings.php:318 msgid "Limited Email Registrations" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:294 +#: ../connectors/class-wp-stream-connector-settings.php:319 msgid "Banned Email Domains" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:295 +#: ../connectors/class-wp-stream-connector-settings.php:320 msgid "Network Language" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:296 +#: ../connectors/class-wp-stream-connector-settings.php:321 msgid "Network Admin Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:297 +#: ../connectors/class-wp-stream-connector-settings.php:322 msgid "User Count" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:299 +#: ../connectors/class-wp-stream-connector-settings.php:324 #, fuzzy msgid "Stream Database Version" msgstr "Reconfigurar o banco de dados do Stream" -#: ../connectors/class-wp-stream-connector-settings.php:300 +#: ../connectors/class-wp-stream-connector-settings.php:325 #, fuzzy -msgid "Stream Total Sites" +msgid "Stream Connected Sites" msgstr "Configurações do Stream" -#: ../connectors/class-wp-stream-connector-settings.php:329 +#: ../connectors/class-wp-stream-connector-settings.php:354 msgid "Background Image" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:330 +#: ../connectors/class-wp-stream-connector-settings.php:355 msgid "Background Position" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:331 +#: ../connectors/class-wp-stream-connector-settings.php:356 msgid "Background Repeat" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:332 +#: ../connectors/class-wp-stream-connector-settings.php:357 msgid "Background Attachment" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:333 +#: ../connectors/class-wp-stream-connector-settings.php:358 msgid "Background Color" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:335 +#: ../connectors/class-wp-stream-connector-settings.php:360 msgid "Header Image" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:336 +#: ../connectors/class-wp-stream-connector-settings.php:361 msgid "Text Color" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:471 +#: ../connectors/class-wp-stream-connector-settings.php:496 #, php-format msgid "Edit %s Settings" msgstr "Editar %s configuração" -#: ../connectors/class-wp-stream-connector-settings.php:604 +#: ../connectors/class-wp-stream-connector-settings.php:624 #, php-format msgid "\"%s\" setting was updated" msgstr "Configuração \"%s\" foi atualizada" #: ../connectors/class-wp-stream-connector-taxonomies.php:44 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:472 msgid "Taxonomies" msgstr "Taxonomias" +#: ../connectors/class-wp-stream-connector-taxonomies.php:93 +#, fuzzy, php-format +msgctxt "Term singular name" +msgid "Edit %s" +msgstr "Editar %s" + #: ../connectors/class-wp-stream-connector-taxonomies.php:136 #, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s created" msgstr "\"%s\" %s criado" #: ../connectors/class-wp-stream-connector-taxonomies.php:163 #, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s deleted" msgstr "\"%s\" %s deletado" +#: ../connectors/class-wp-stream-connector-taxonomies.php:200 +#, fuzzy, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" +msgid "\"%1$s\" %2$s updated" +msgstr "\"%s\" %s atualizado" + +#: ../connectors/class-wp-stream-connector-users.php:43 +#: ../connectors/class-wp-stream-connector-users.php:70 +msgid "Users" +msgstr "Usuários" + #: ../connectors/class-wp-stream-connector-users.php:56 msgid "Password Reset" msgstr "Re-definir senha" @@ -3118,6 +3314,7 @@ msgstr "Novo registro de usuário" #: ../connectors/class-wp-stream-connector-users.php:140 #, fuzzy, php-format +msgctxt "1: User display name, 2: User role" msgid "New user account created for %1$s (%2$s)" msgstr "Nova conta de usuário foi criado para %s (%s)" @@ -3128,6 +3325,7 @@ msgstr "O perfil de %s foi atualizado" #: ../connectors/class-wp-stream-connector-users.php:191 #, fuzzy, php-format +msgctxt "1: User display name, 2: Old role, 3: New role" msgid "%1$s's role was changed from %2$s to %3$s" msgstr "O cargo de %s foi trocado de %s por %s" @@ -3153,6 +3351,7 @@ msgstr "%s saiu do sistema" #: ../connectors/class-wp-stream-connector-users.php:314 #, fuzzy, php-format +msgctxt "1: User display name, 2: User roles" msgid "%1$s's account was deleted (%2$s)" msgstr "A conta de %s's foi removida (%s)" @@ -3165,6 +3364,10 @@ msgstr "Conta de usuário #%d foi deletada" msgid "Widgets" msgstr "Widgets" +#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgid "Removed" +msgstr "" + #: ../connectors/class-wp-stream-connector-widgets.php:57 msgid "Moved" msgstr "" @@ -3193,175 +3396,234 @@ msgid "Edit Widget Area" msgstr "Editar area de Widgets" #: ../connectors/class-wp-stream-connector-widgets.php:196 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" from \"%3$s\" deactivated" -msgstr "" +msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:199 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget from \"%3$s\" deactivated" msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:202 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" from \"%3$s\" deactivated" -msgstr "" +msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:205 -#, php-format +#, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget from \"%3$s\" deactivated" -msgstr "" +msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:245 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" reactivated" msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:248 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget reactivated" msgstr "\"%s\" de \"%s\" foi desativado" #: ../connectors/class-wp-stream-connector-widgets.php:251 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" reactivated" -msgstr "" +msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:254 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget reactivated" msgstr "\"%s\" tema ativado" #: ../connectors/class-wp-stream-connector-widgets.php:301 -#, php-format +#, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" removed from \"%3$s\"" -msgstr "" +msgstr "\"%s\" foi adicionado a \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:304 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget removed from \"%3$s\"" msgstr "\"%s\" for removido de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:307 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" removed from \"%3$s\"" -msgstr "" +msgstr "O cargo de %s foi trocado de %s por %s" #: ../connectors/class-wp-stream-connector-widgets.php:310 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget removed from \"%3$s\"" msgstr "\"%s\" for removido de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:354 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" added to \"%3$s\"" msgstr "\"%s\" foi adicionado a \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:357 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget added to \"%3$s\"" msgstr "\"%s\" foi adicionado a \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:360 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" added to \"%3$s\"" -msgstr "" +msgstr "\"%s\" foi adicionado a \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:363 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget added to \"%3$s\"" msgstr "\"%s\" foi adicionado a \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:405 #, fuzzy, php-format +msgctxt "Sidebar name" msgid "Widgets reordered in \"%s\"" msgstr "Widget \"%s\" foram reorganizados" #: ../connectors/class-wp-stream-connector-widgets.php:460 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" msgstr "O cargo de %s foi trocado de %s por %s" #: ../connectors/class-wp-stream-connector-widgets.php:463 #, fuzzy, php-format +msgctxt "1: Name, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "\"%s\" for removido de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:466 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "Unknown widget type named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" -msgstr "" +msgstr "O cargo de %s foi trocado de %s por %s" #: ../connectors/class-wp-stream-connector-widgets.php:469 #, fuzzy, php-format +msgctxt "3: Widget ID, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%3$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "\"%s\" for removido de \"%s\"" #: ../connectors/class-wp-stream-connector-widgets.php:581 #, fuzzy, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" in \"%3$s\" updated" msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:584 #, fuzzy, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget in \"%3$s\" updated" msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:587 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" in \"%3$s\" updated" -msgstr "" +msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:590 #, fuzzy, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget in \"%3$s\" updated" msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:621 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" created" msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:624 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget created" msgstr "\"%s\" %s criado" #: ../connectors/class-wp-stream-connector-widgets.php:627 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" created" -msgstr "" +msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:630 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget created" msgstr "\"%s\" %s criado" #: ../connectors/class-wp-stream-connector-widgets.php:651 #, fuzzy, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" deleted" msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:654 #, fuzzy, php-format +msgctxt "1: Name" msgid "%1$s widget deleted" msgstr "\"%s\" %s deletado" #: ../connectors/class-wp-stream-connector-widgets.php:657 -#, php-format +#, fuzzy, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" deleted" -msgstr "" +msgstr "\"%s\" %s atualizado" #: ../connectors/class-wp-stream-connector-widgets.php:660 #, fuzzy, php-format +msgctxt "3: Widget ID" msgid "%3$s widget deleted" msgstr "\"%s\" tema removido" #: ../connectors/class-wp-stream-connector-woocommerce.php:89 +msgctxt "woocommerce" msgid "WooCommerce" msgstr "" +#: ../connectors/class-wp-stream-connector-woocommerce.php:99 +#, fuzzy +msgctxt "woocommerce" +msgid "Updated" +msgstr "Atualizado" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:100 +#, fuzzy +msgctxt "woocommerce" +msgid "Created" +msgstr "Criado" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +#, fuzzy +msgctxt "woocommerce" +msgid "Trashed" +msgstr "Colocado na Lixeira" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:102 +#, fuzzy +msgctxt "woocommerce" +msgid "Deleted" +msgstr "Removido" + #: ../connectors/class-wp-stream-connector-woocommerce.php:122 +msgctxt "woocommerce" msgid "Attributes" msgstr "" @@ -3421,21 +3683,25 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:301 #, fuzzy, php-format +msgctxt "Order title" msgid "%s created" msgstr "Criado" #: ../connectors/class-wp-stream-connector-woocommerce.php:308 #, fuzzy, php-format +msgctxt "Order title" msgid "%s trashed" msgstr "Colocado na Lixeira" #: ../connectors/class-wp-stream-connector-woocommerce.php:315 #, fuzzy, php-format +msgctxt "Order title" msgid "%s restored from the trash" msgstr "\"%s\" %s removido da lixeira" #: ../connectors/class-wp-stream-connector-woocommerce.php:322 #, fuzzy, php-format +msgctxt "Order title" msgid "%s updated" msgstr "Atualizado" @@ -3453,44 +3719,57 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:377 #, fuzzy, php-format +msgctxt "Order title" msgid "\"%s\" deleted from trash" msgstr "\"%s\" %s removido da lixeira" #: ../connectors/class-wp-stream-connector-woocommerce.php:411 #, fuzzy, php-format +msgctxt "1. Order title, 2. Old status, 3. New status" msgid "%1$s status changed from %2$s to %3$s" msgstr "O cargo de %s foi trocado de %s por %s" #: ../connectors/class-wp-stream-connector-woocommerce.php:447 -#, php-format +#, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute created" -msgstr "" +msgstr "\"%s\" plugin removido" #: ../connectors/class-wp-stream-connector-woocommerce.php:466 -#, php-format +#, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute updated" -msgstr "" +msgstr "\"%s\" plugin removido" #: ../connectors/class-wp-stream-connector-woocommerce.php:485 #, fuzzy, php-format +msgctxt "Term name" msgid "\"%s\" product attribute deleted" msgstr "\"%s\" plugin removido" #: ../connectors/class-wp-stream-connector-woocommerce.php:506 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate created" msgstr "\"%s\" %s criado" #: ../connectors/class-wp-stream-connector-woocommerce.php:525 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate updated" msgstr "Configuração \"%s\" foi atualizada" #: ../connectors/class-wp-stream-connector-woocommerce.php:555 #, fuzzy, php-format +msgctxt "Tax rate name" msgid "\"%s\" tax rate deleted" msgstr "\"%s\" tema removido" +#: ../connectors/class-wp-stream-connector-woocommerce.php:611 +#, fuzzy, php-format +msgid "\"%1$s\" %2$s updated" +msgstr "\"%s\" %s atualizado" + #: ../connectors/class-wp-stream-connector-woocommerce.php:709 msgid "payment gateway" msgstr "" @@ -3507,1243 +3786,1393 @@ msgstr "" msgid "Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:67 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:59 +msgctxt "wordpress-seo" msgid "WordPress SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 -msgid "Dashboard" -msgstr "" - -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 -msgid "Titles & Metas" -msgstr "" +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:69 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Created" +msgstr "Criado" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 -msgid "Social" -msgstr "" +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:70 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Updated" +msgstr "Atualizado" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 -msgid "XML Sitemaps" -msgstr "" +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:71 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Added" +msgstr "Adicionado" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:98 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:72 #, fuzzy +msgctxt "wordpress-seo" +msgid "Deleted" +msgstr "Removido" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:73 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Exported" +msgstr "Reorganizado" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:74 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Imported" +msgstr "Reorganizado" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:85 +msgctxt "wordpress-seo" +msgid "Dashboard" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:86 +msgctxt "wordpress-seo" +msgid "Titles & Metas" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:87 +msgctxt "wordpress-seo" +msgid "Social" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:88 +msgctxt "wordpress-seo" +msgid "XML Sitemaps" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:89 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Permalinks" +msgstr "Links Permanentes" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:90 +#, fuzzy +msgctxt "wordpress-seo" msgid "Internal Links" msgstr "Links Permanentes" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:99 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:91 +msgctxt "wordpress-seo" msgid "RSS" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:100 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:92 +msgctxt "wordpress-seo" msgid "Import & Export" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:101 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +msgctxt "wordpress-seo" msgid "Bulk Title Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:102 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +msgctxt "wordpress-seo" msgid "Bulk Description Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:104 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 #, fuzzy +msgctxt "wordpress-seo" msgid "Files" msgstr "Editar Perfil" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:105 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 #, fuzzy +msgctxt "wordpress-seo" msgid "Content" msgstr "Contexto" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:214 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:205 msgid "HeadSpace2" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:215 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:206 msgid "All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:207 msgid "OLD All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:217 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:208 msgid "WooThemes SEO framework" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:218 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:209 msgid "Robots Meta (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:219 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:210 msgid "RSS Footer (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:211 msgid "Yoast Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:229 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 #, php-format msgid "Imported settings from %1$s%2$s" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:231 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:222 msgid ", and deleted old data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:251 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:242 #, fuzzy, php-format msgid "Exported settings%s" msgstr "Editar %s configuração" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:252 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:243 msgid ", including taxonomy meta" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:264 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:255 #, php-format msgid "Tried importing settings from \"%s\"" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:279 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:270 msgid "Tried creating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:281 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:272 msgid "Tried updating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:283 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:274 msgid "Tried updating htaccess file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:334 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:325 #, fuzzy, php-format msgid "Updated \"%1$s\" of \"%2$s\" %3$s" msgstr "Atualizado %s: %s to %s" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:373 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:364 #, fuzzy, php-format msgid "%s settings updated" msgstr "Configuração \"%s\" foi atualizada" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:380 +msgctxt "wordpress-seo" msgid "Allow tracking of this WordPress install's anonymous data." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:381 +msgctxt "wordpress-seo" msgid "Disable the Advanced part of the WordPress SEO meta box" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:382 +#, fuzzy +msgctxt "wordpress-seo" msgid "Alexa Verification ID" -msgstr "" +msgstr "Configurações do Stream" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:383 +msgctxt "wordpress-seo" msgid "Bing Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:384 +msgctxt "wordpress-seo" msgid "Google Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:385 +msgctxt "wordpress-seo" msgid "Pinterest" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:386 +msgctxt "wordpress-seo" msgid "Yandex Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:398 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +msgctxt "wordpress-seo" msgid "Enable Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:399 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +msgctxt "wordpress-seo" msgid "Separator between breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +msgctxt "wordpress-seo" msgid "Anchor text for the Homepage" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +msgctxt "wordpress-seo" msgid "Prefix for the breadcrumb path" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +msgctxt "wordpress-seo" msgid "Prefix for Archive breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +msgctxt "wordpress-seo" msgid "Prefix for Search Page breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +msgctxt "wordpress-seo" msgid "Breadcrumb for 404 Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:396 +msgctxt "wordpress-seo" msgid "Remove Blog page from Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:397 +msgctxt "wordpress-seo" msgid "Bold the last page in the breadcrumb" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +msgctxt "wordpress-seo" msgid "Force rewrite titles" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +msgctxt "wordpress-seo" msgid "Noindex subpages of archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:411 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +msgctxt "wordpress-seo" msgid "Use meta keywords tag?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:412 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +msgctxt "wordpress-seo" msgid "Add noodp meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +msgctxt "wordpress-seo" msgid "Add noydir meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +msgctxt "wordpress-seo" msgid "Hide RSD Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +msgctxt "wordpress-seo" msgid "Hide WLW Manifest Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:416 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:407 +msgctxt "wordpress-seo" msgid "Hide Shortlink for posts" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:417 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:408 +msgctxt "wordpress-seo" msgid "Hide RSS Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +msgctxt "wordpress-seo" msgid "Disable the author archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +msgctxt "wordpress-seo" msgid "Disable the date-based archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +msgctxt "wordpress-seo" msgid "Who should have access to the WordPress SEO settings" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +msgctxt "wordpress-seo" msgid "New blogs get the SEO settings from this blog" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +msgctxt "wordpress-seo" msgid "Blog ID" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +msgctxt "wordpress-seo" msgid "" "Strip the category base (usually /category/) from the category " "URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:428 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +msgctxt "wordpress-seo" msgid "Enforce a trailing slash on all category and tag URL's" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:429 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:420 +msgctxt "wordpress-seo" msgid "Remove stop words from slugs." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:421 +msgctxt "wordpress-seo" msgid "Redirect attachment URL's to parent post URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +msgctxt "wordpress-seo" msgid "Remove the ?replytocom variables." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +msgctxt "wordpress-seo" msgid "" "Redirect ugly URL's to clean permalinks. (Not recommended in many cases!)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +msgctxt "wordpress-seo" msgid "Force Transport" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:425 +msgctxt "wordpress-seo" msgid "Prevent cleaning out Google Site Search URL's." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:426 +msgctxt "wordpress-seo" msgid "" "Prevent cleaning out Google Analytics Campaign & Google AdWords Parameters." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +msgctxt "wordpress-seo" msgid "Other variables not to clean" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +msgctxt "wordpress-seo" msgid "Add Open Graph meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:440 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +msgctxt "wordpress-seo" msgid "Facebook Page URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:441 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +msgctxt "wordpress-seo" msgid "Image URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#, fuzzy +msgctxt "wordpress-seo" msgid "Description" -msgstr "" +msgstr "ações" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +msgctxt "wordpress-seo" msgid "Add Twitter card meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +msgctxt "wordpress-seo" msgid "Site Twitter Username" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:437 +msgctxt "wordpress-seo" msgid "The default card type to use" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:447 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:438 +msgctxt "wordpress-seo" msgid "Add Google+ specific post meta data (excluding author metadata)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:448 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +msgctxt "wordpress-seo" msgid "Google Publisher Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:451 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +msgctxt "wordpress-seo" msgid "Check this box to enable XML sitemap functionality." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:452 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +msgctxt "wordpress-seo" msgid "Disable author/user sitemap" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:453 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +msgctxt "wordpress-seo" msgid "Ping Yahoo!" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +msgctxt "wordpress-seo" msgid "Ping Ask.com" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +msgctxt "wordpress-seo" msgid "Max entries per sitemap page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:449 +msgctxt "wordpress-seo" msgid "Content to put before each post in the feed" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:450 +msgctxt "wordpress-seo" msgid "Content to put after each post" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +msgctxt "wordpress-seo" msgid "Title template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:464 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +msgctxt "wordpress-seo" msgid "Meta description template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:465 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:456 +msgctxt "wordpress-seo" msgid "Meta keywords template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:466 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:457 +msgctxt "wordpress-seo" msgid "Meta Robots" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:467 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 #, fuzzy +msgctxt "wordpress-seo" msgid "Authorship" msgstr "Autor" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:468 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +msgctxt "wordpress-seo" msgid "Show date in snippet preview?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:469 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:460 +msgctxt "wordpress-seo" msgid "WordPress SEO Meta Box" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:470 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:461 +msgctxt "wordpress-seo" msgid "Breadcrumbs Title" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:471 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:462 #, fuzzy +msgctxt "wordpress-seo" msgid "Post types" msgstr "Posts" -#: ../extensions/notifications/class-wp-stream-notifications.php:147 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#, fuzzy +msgctxt "wordpress-seo" +msgid "Taxonomies" +msgstr "Taxonomias" + +#: ../extensions/notifications/class-wp-stream-notifications.php:128 #, fuzzy msgid "Stream Notifications" msgstr "Configurações do Stream" -#: ../extensions/notifications/class-wp-stream-notifications.php:148 +#: ../extensions/notifications/class-wp-stream-notifications.php:129 msgid "Get notified instantly when important changes are made on your site." msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:150 +#: ../extensions/notifications/class-wp-stream-notifications.php:131 msgid "Create notification rules quickly and easily" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:132 msgid "Smart and powerful trigger matching" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:152 +#: ../extensions/notifications/class-wp-stream-notifications.php:133 msgid "Fully customized e-mail and SMS alerts" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:153 +#: ../extensions/notifications/class-wp-stream-notifications.php:134 msgid "Push alerts to your smartphone or tablet" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:170 -#: ../extensions/notifications/class-wp-stream-notifications.php:171 +#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:152 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:48 #: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:32 #, fuzzy msgid "Notifications" msgstr "ações" -#: ../extensions/notifications/class-wp-stream-notifications.php:218 +#: ../extensions/notifications/class-wp-stream-notifications.php:199 msgid "Sample Rule" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:272 +#: ../extensions/notifications/class-wp-stream-notifications.php:253 #, fuzzy, php-format msgid "[Site Activity Alert] %s" msgstr "Configurações do Stream" -#: ../extensions/notifications/class-wp-stream-notifications.php:273 +#: ../extensions/notifications/class-wp-stream-notifications.php:254 #, php-format msgid "The following just happened on your site: %s by %s Date of action: %s" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:49 -msgid "Type" -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:50 -msgid "Occurrences" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 +msgid "Email" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 -msgid "Publish" -msgstr "" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 +#, fuzzy +msgid "Send to Users" +msgstr "Editar %s" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 -msgid "Unpublish" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 +msgid "Alert specific users via email." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 -msgid "Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 +msgid "Send to Emails" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 -#, fuzzy -msgid "Stream Notification Rules" -msgstr "Configurações do Stream" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 -msgid "New Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 +msgid "Alert any arbitrary email address not tied to a specific user." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 -msgid "New Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 +msgid "Subject" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 -msgid "Edit Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 +msgid "Data tags are allowed." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 -msgid "View Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 +msgid "Message" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 -#, fuzzy -msgid "Search Rules" -msgstr "Procurar Registros" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 -msgid "No notification rules found." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 +msgid "HTML and data tags are allowed." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 -msgid "No notification rules found in Trash." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 +msgid "Push" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 -msgid "Triggers" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 +msgid "Missing Required Plugin" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 -msgid "Alerts" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 +#, php-format +msgid "Please install and activate the %1$s plugin to enable push alerts." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 -msgid "Data Tags" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 +msgid "Pushover Notifications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:121 -#: ../extensions/notifications/views/form-templates.php:34 -msgid "+ Add Trigger" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 +msgid "Required Plugin Not Activated" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:122 -#: ../extensions/notifications/views/form-templates.php:35 -msgid "+ Add Group" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 +#, php-format +msgid "Please activate the %1$s plugin to enable push alerts." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:129 -msgid "+ Add Alert" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 +msgid "Alert specific users via push." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 #, php-format -msgid "This rule has occurred %1$s time." +msgid "Only those users with a %s in their profile can be selected." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:168 -msgid "Reset Count" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 +msgid "Pushover User Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 -msgid "Basic" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 +msgid "Application key is missing" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 -msgid "Summary message of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 +#, php-format +msgid "Please provide your Application key on %1$s." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 -msgid "User ID of the triggered record author." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 +msgid "Pushover Notifications settings page" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 -msgid "Connector of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 +msgid "Application API Token/Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 -msgid "Context of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 +msgid "Your User Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 -msgid "Action of the triggered record." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 -msgid "Timestamp of triggered record." -msgstr "" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 -msgid "IP of the triggered record author." -msgstr "" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 +#, fuzzy +msgid "New Users" +msgstr "Usuários" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 -msgid "Object ID of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 +msgid "New Posts are Published" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 -msgid "Advanced" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 +msgid "Roles to Notify" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 -msgid "" -"Specific object data of the record, relative to what the object type is:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more Post values\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.name}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.taxonomy}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.description}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more Term values" -msgstr "" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 +#, fuzzy +msgid "New Comments" +msgstr "Lista Negra de Comentários" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:210 -msgid "" -"Specific user data of the record author:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{author.display_name}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{author.user_email}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{author.user_login}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more User values" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 +msgid "Notify the Post Author (for multi-author blogs)" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:221 -msgid "" -"Specific meta data of the record, used to display specific meta values " -"created by Connectors.\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\tExample: {meta.old_theme} to display " -"the old theme name when a new theme is activated." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 +msgid "Notify users when password resets are requested for their accounts" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 -msgid "Invalid nonce" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 +msgid "WordPress Core Update is Available" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 -msgid "Invalid record ID" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 +msgid "Plugin & Theme Updates are Available" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 -msgid "is" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 +msgid "Use Multiple Application Keys" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 -msgid "is not" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 +msgid "Verify SSL from api.pushover.net" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 #, fuzzy -msgid "contains" -msgstr "contextos" +msgid "Enable Logging" +msgstr "Entrada no sistema falhou" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 -msgid "does not contain" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 +msgid "SMS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 -msgid "starts with" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 +msgid "Send to Mobile Number" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 -msgid "ends with" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 +msgid "Enter mobile numbers without dashes (ex: 8885550000)" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 -msgid "regex" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 +msgid "Carrier" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 -msgid "equals" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 +msgid "Select your mobile service provider." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 -msgid "not equal" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:24 +msgid "3 River Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 -msgid "less than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:25 +msgid "ACS Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 -msgid "equal or less than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:26 +msgid "Alltel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 -msgid "greater than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:27 +msgid "AT&T, Cingular, Net10 or Tracfone" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 -msgid "equal or greater than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:28 +msgid "Bell Canada" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 -msgid "Object ID" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:29 +msgid "Bell Mobility (Canada), Presidents Choice or Solo Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:407 -#, fuzzy -msgid "Author Role" -msgstr "Autor" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 -msgid "IP" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:30 +msgid "Bell Mobility" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 -msgid "is on" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:31 +msgid "Blue Sky Frog" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 -msgid "is not on" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:32 +msgid "Bluegrass Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 -msgid "is before" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:33 +msgid "Boost Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 -msgid "is on or before" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:34 +msgid "BPL Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 -msgid "is after" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:35 +msgid "Carolina West Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 -msgid "is on or after" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:36 +msgid "Cellular One" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 -msgid "Day of Week" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:37 +msgid "Cellular South" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:408 -msgid "Connector" -msgstr "Conector" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 -#, fuzzy -msgid "- Post" -msgstr "Posts" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 -#, fuzzy -msgid "- Post: Title" -msgstr "Título do Site" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 -msgid "- Post: Slug" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:38 +msgid "CenturyTel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 -msgid "- Post: Content" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:39 +msgid "Clearnet" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 -msgid "- Post: Excerpt" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:40 +msgid "Comcast" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 -#, fuzzy -msgid "- Post: Author" -msgstr "Autor" - -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 -msgid "- Post: Status" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:41 +msgid "Corr Wireless Communications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 -#, fuzzy -msgid "- Post: Format" -msgstr "Formato padrão de Post" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:42 +msgid "Cricket" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 -msgid "- Post: Parent" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:43 +msgid "Dobson" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 -msgid "- Post: Featured Image" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:44 +msgid "Edge Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 -msgid "None" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:45 +msgid "Fido" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 -msgid "Has one" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:46 +msgid "Golden Telecom" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 -msgid "- Post: Comment Status" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:47 +msgid "Houston Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 -msgid "Open" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:48 +msgid "Idea Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 -msgid "- Post: Comment Count" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:49 +msgid "Illinois Valley Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 -#, fuzzy -msgid "- User" -msgstr "Usuários" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:50 +msgid "Inland Cellular Telephone" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 -#, fuzzy -msgid "- User: Role" -msgstr "Função padrão para novo usuário" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:51 +msgid "MCI" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 -#, fuzzy -msgid "- Taxonomy" -msgstr "Taxonomias" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:52 +msgid "Metrocall" +msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 -msgid "- Term" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:53 +msgid "Metrocall 2-way" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 -msgid "- Term: Parent" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:54 +msgid "Metro PCS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 -msgid "You cannot save a rule without any triggers." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:55 +msgid "Midwest Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 -msgid "You cannot save a rule with an empty first trigger." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:56 +msgid "Mobilcomm" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 -msgid "There was an error submitting your request, please try again." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:57 +msgid "MTS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 -#, fuzzy -msgid "" -"Are you sure you want to reset occurrences for this rule? This cannot be " -"undone." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:58 +msgid "Nextel" msgstr "" -"Você tem certeza que deseja deletar todos os registros de atividade do " -"Stream? Isso não pode ser desfeito." -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 -msgid "Enter Rule Title here" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:59 +msgid "OnlineBeep" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 -#, fuzzy -msgid "" -"Users from the selected roles above will have permission to view, create and " -"edit Stream Notifications. However, only site Administrators can access " -"Stream Notifications Settings." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:60 +msgid "PCS One" msgstr "" -"Usuários com os cargos acima vão ter permissões para ver os registros do " -"Stream, mas as configurações continuam sendo disponíveis apenas para os " -"Administradores." -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 -msgid "Email" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:61 +msgid "Public Service Cellular" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 -#, fuzzy -msgid "Send to Users" -msgstr "Editar %s" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:62 +msgid "Qwest" +msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 -msgid "Alert specific users via email." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:63 +msgid "Rogers AT&T Wireless and Rogers Canada" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 -msgid "Send to Emails" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:64 +msgid "Satellink" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 -msgid "Alert any arbitrary email address not tied to a specific user." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:65 +msgid "Sprint or Helio" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 -msgid "Subject" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:66 +msgid "Suncom and Triton" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 -msgid "Data tags are allowed." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:67 +msgid "Surewest Communications" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 -msgid "Message" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:68 +msgid "T-Mobile" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 -msgid "HTML and data tags are allowed." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:69 +msgid "Telus" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 -msgid "Push" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:70 +msgid "Unicel" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 -msgid "Missing Required Plugin" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:71 +msgid "US Cellular" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 -#, php-format -msgid "Please install and activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:72 +msgid "US West" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 -msgid "Pushover Notifications" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:73 +msgid "Verizon or Straight Talk" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 -msgid "Required Plugin Not Activated" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:74 +msgid "Virgin Mobile" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 -#, php-format -msgid "Please activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:75 +msgid "Virgin Mobile Canada" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 -msgid "Alert specific users via push." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:76 +msgid "West Central Wireless" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 -#, php-format -msgid "Only those users with a %s in their profile can be selected." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:77 +msgid "Western Wireless" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 -msgid "Pushover User Key" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 +msgid "Data tags are allowed. HTML is not allowed." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 -msgid "Application key is missing" +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:49 +msgid "Type" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 -#, php-format -msgid "Please provide your Application key on %1$s." +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:50 +msgid "Occurrences" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 -msgid "Pushover Notifications settings page" +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 +msgid "Publish" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 -msgid "Application API Token/Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 +msgid "Unpublish" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 -msgid "Your User Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 +msgid "Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 #, fuzzy -msgid "New Users" -msgstr "Usuários" +msgid "Stream Notification Rules" +msgstr "Configurações do Stream" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 -msgid "New Posts are Published" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 +#, fuzzy +msgctxt "Stream Notifications" +msgid "New Rule" +msgstr "Procurar Registros" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 -msgid "Roles to Notify" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +msgctxt "Stream Notifications" +msgid "Add New Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 #, fuzzy -msgid "New Comments" -msgstr "Lista Negra de Comentários" +msgctxt "Stream Notifications" +msgid "New Stream Notification Rule" +msgstr "Configurações do Stream" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 -msgid "Notify the Post Author (for multi-author blogs)" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 +#, fuzzy +msgctxt "Stream Notifications" +msgid "Edit Stream Notification Rule" +msgstr "Configurações do Stream" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 -msgid "Notify users when password resets are requested for their accounts" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 +#, fuzzy +msgctxt "Stream Notifications" +msgid "View Stream Notification Rule" +msgstr "Configurações do Stream" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 -msgid "WordPress Core Update is Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 +#, fuzzy +msgctxt "Stream Notifications" +msgid "Search Rules" +msgstr "Procurar Registros" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 +#, fuzzy +msgctxt "Stream Notifications" +msgid "No notification rules found." +msgstr "Configurações do Stream" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 +msgctxt "Stream Notifications" +msgid "No notification rules found in Trash." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 -msgid "Plugin & Theme Updates are Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 +msgid "Triggers" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 -msgid "Use Multiple Application Keys" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 +msgid "Alerts" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 -msgid "Verify SSL from api.pushover.net" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 +msgid "Data Tags" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 -#, fuzzy -msgid "Enable Logging" -msgstr "Entrada no sistema falhou" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:121 +#: ../extensions/notifications/views/form-templates.php:34 +msgid "+ Add Trigger" +msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 -msgid "SMS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:122 +#: ../extensions/notifications/views/form-templates.php:35 +msgid "+ Add Group" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 -msgid "Send to Mobile Number" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:129 +msgid "+ Add Alert" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 -msgid "Enter mobile numbers without dashes (ex: 8885550000)" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 +#, php-format +msgid "This rule has occurred %1$s time." +msgid_plural "This rule has occurred %1$s times." +msgstr[0] "" +msgstr[1] "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:168 +msgid "Reset Count" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 -msgid "Carrier" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 +msgid "Basic" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 -msgid "Select your mobile service provider." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 +msgid "Summary message of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:24 -msgid "3 River Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 +msgid "User ID of the triggered record author." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:25 -msgid "ACS Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 +msgid "Connector of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:26 -msgid "Alltel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 +msgid "Context of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:27 -msgid "AT&T, Cingular, Net10 or Tracfone" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 +msgid "Action of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:28 -msgid "Bell Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 +msgid "Timestamp of triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:29 -msgid "Bell Mobility (Canada), Presidents Choice or Solo Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 +msgid "IP of the triggered record author." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:30 -msgid "Bell Mobility" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 +msgid "Object ID of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:31 -msgid "Blue Sky Frog" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 +msgid "Advanced" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:32 -msgid "Bluegrass Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 +msgid "" +"Specific object data of the record, relative to what the object type is:\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more Post values\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{object.name}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.taxonomy}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.description}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more Term values" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:33 -msgid "Boost Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:210 +msgid "" +"Specific user data of the record author:\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{author.display_name}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{author.user_email}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{author.user_login}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more User values" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:34 -msgid "BPL Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:221 +msgid "" +"Specific meta data of the record, used to display specific meta values " +"created by Connectors.\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\tExample: {meta.old_theme} to display " +"the old theme name when a new theme is activated." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:35 -msgid "Carolina West Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 +msgid "Invalid nonce" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:36 -msgid "Cellular One" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 +msgid "Invalid record ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:37 -msgid "Cellular South" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 +msgid "is" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:38 -msgid "CenturyTel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 +msgid "is not" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:39 -msgid "Clearnet" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 +#, fuzzy +msgid "contains" +msgstr "contextos" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 +msgid "does not contain" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:40 -msgid "Comcast" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 +msgid "starts with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:41 -msgid "Corr Wireless Communications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 +msgid "ends with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:42 -msgid "Cricket" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 +msgid "regex" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:43 -msgid "Dobson" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 +msgid "equals" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:44 -msgid "Edge Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 +msgid "not equal" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:45 -msgid "Fido" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 +msgid "less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:46 -msgid "Golden Telecom" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 +msgid "equal or less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:47 -msgid "Houston Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 +msgid "greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:48 -msgid "Idea Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 +msgid "equal or greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:49 -msgid "Illinois Valley Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 +msgid "Object ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:50 -msgid "Inland Cellular Telephone" -msgstr "" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:369 +#, fuzzy +msgid "Author Role" +msgstr "Autor" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:51 -msgid "MCI" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 +msgid "IP" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:52 -msgid "Metrocall" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 +msgid "is on" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:53 -msgid "Metrocall 2-way" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 +msgid "is not on" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:54 -msgid "Metro PCS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 +msgid "is before" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:55 -msgid "Midwest Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 +msgid "is on or before" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:56 -msgid "Mobilcomm" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 +msgid "is after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:57 -msgid "MTS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 +msgid "is on or after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:58 -msgid "Nextel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 +msgid "Day of Week" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:59 -msgid "OnlineBeep" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:370 +msgid "Connector" +msgstr "Conector" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 +#, fuzzy +msgid "- Post" +msgstr "Posts" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 +#, fuzzy +msgid "- Post: Title" +msgstr "Título do Site" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 +msgid "- Post: Slug" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:60 -msgid "PCS One" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 +msgid "- Post: Content" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:61 -msgid "Public Service Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 +msgid "- Post: Excerpt" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:62 -msgid "Qwest" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 +#, fuzzy +msgid "- Post: Author" +msgstr "Autor" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 +msgid "- Post: Status" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:63 -msgid "Rogers AT&T Wireless and Rogers Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 +#, fuzzy +msgid "- Post: Format" +msgstr "Formato padrão de Post" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 +msgid "- Post: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:64 -msgid "Satellink" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 +msgid "- Post: Featured Image" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:65 -msgid "Sprint or Helio" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 +msgid "None" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:66 -msgid "Suncom and Triton" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 +msgid "Has one" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:67 -msgid "Surewest Communications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 +msgid "- Post: Comment Status" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:68 -msgid "T-Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 +msgid "Open" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:69 -msgid "Telus" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgid "Closed" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:70 -msgid "Unicel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 +msgid "- Post: Comment Count" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:71 -msgid "US Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 +#, fuzzy +msgid "- User" +msgstr "Usuários" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 +#, fuzzy +msgid "- User: Role" +msgstr "Função padrão para novo usuário" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 +#, fuzzy +msgid "- Taxonomy" +msgstr "Taxonomias" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 +msgid "- Term" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:72 -msgid "US West" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 +msgid "- Term: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:73 -msgid "Verizon or Straight Talk" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 +msgid "You cannot save a rule without any triggers." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:74 -msgid "Virgin Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 +msgid "You cannot save a rule with an empty first trigger." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:75 -msgid "Virgin Mobile Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 +msgid "There was an error submitting your request, please try again." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:76 -msgid "West Central Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 +#, fuzzy +msgid "" +"Are you sure you want to reset occurrences for this rule? This cannot be " +"undone." msgstr "" +"Você tem certeza que deseja deletar todos os registros de atividade do " +"Stream? Isso não pode ser desfeito." -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:77 -msgid "Western Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 +msgid "Enter Rule Title here" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 -msgid "Data tags are allowed. HTML is not allowed." +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 +#, fuzzy +msgid "" +"Users from the selected roles above will have permission to view, create and " +"edit Stream Notifications. However, only site Administrators can access " +"Stream Notifications Settings." msgstr "" +"Usuários com os cargos acima vão ter permissões para ver os registros do " +"Stream, mas as configurações continuam sendo disponíveis apenas para os " +"Administradores." #: ../extensions/notifications/views/form-templates.php:7 #: ../extensions/notifications/views/form-templates.php:30 @@ -4760,22 +5189,28 @@ msgstr "" msgid "Delete Group" msgstr "Removido \"%s\"" -#: ../extensions/reports/class-wp-stream-reports.php:125 +#: ../extensions/reports/class-wp-stream-reports.php:123 msgid "Cheating huh?" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:223 +#: ../extensions/reports/class-wp-stream-reports.php:143 +#: ../extensions/reports/class-wp-stream-reports.php:144 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:51 +msgid "Reports" +msgstr "" + +#: ../extensions/reports/class-wp-stream-reports.php:221 msgid "Cancel" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:224 +#: ../extensions/reports/class-wp-stream-reports.php:222 #, fuzzy msgid "Do you really want to delete this section? This cannot be undone." msgstr "" "Você tem certeza que deseja deletar todos os registros de atividade do " "Stream? Isso não pode ser desfeito." -#: ../extensions/reports/class-wp-stream-reports.php:280 +#: ../extensions/reports/class-wp-stream-reports.php:278 #, php-format msgid "" "There's nothing here! Do you want to create some reports?" @@ -4785,134 +5220,136 @@ msgstr "" msgid "That time interval is not available." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:76 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:68 msgid "All Activity by Author" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:82 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:74 msgid "All Activity by Action" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:88 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:80 msgid "All Activity by Author Role" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:95 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:87 msgid "Comments Activity by Action" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:126 -#: ../extensions/reports/views/all.php:10 -#: ../extensions/reports/views/all.php:19 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:118 +#: ../extensions/reports/views/all.php:3 #: ../extensions/reports/views/examples.php:2 #, fuzzy msgid "Stream Reports" msgstr "Registros do Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:127 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:119 msgid "" "Generate stunning visuals of logged-in user activity and share them with " "stakeholders or your clients." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:129 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:121 msgid "Fully-interactive charts" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:130 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:122 msgid "Monitor team contributions" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:131 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:123 msgid "Responsive for any screen size" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:275 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:267 msgid "All Others" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:285 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:277 #, php-format msgid "User ID: %d" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:326 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:309 #, fuzzy msgid "All Activity" msgstr "Configurações do Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:328 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:311 #, fuzzy msgid "Connector Activity" msgstr "Configurações do Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:336 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:319 #, fuzzy msgid "Context Activity" msgstr "Configurações do Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:344 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:327 #, fuzzy msgid "Actions Activity" msgstr "Configurações do Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:379 -#, fuzzy -msgid "Site Activity" -msgstr "Configurações do Stream" +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:390 +msgid "Site" +msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:473 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:435 msgid "Unknown" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:472 #, php-format msgid "Report %d" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:529 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:491 #, fuzzy, php-format +msgctxt "1: Action 2: Dataset 3: Selector" msgid "%1$s in %2$s by %3$s" msgstr "Atualizado %s: %s to %s" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:535 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:497 #, fuzzy, php-format +msgctxt "1: Action 3: Selector" msgid "All %1$s by %3$s" msgstr "Instalado %s: %s %s" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:542 -#, php-format +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:504 +#, fuzzy, php-format +msgctxt "2: Dataset 3: Selector" msgid "All Activity in %2$s by %3$s" -msgstr "" +msgstr "Instalado %s: %s %s" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:548 -#, php-format +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 +#, fuzzy, php-format +msgctxt "3: Selector" msgid "All Activity by %3$s" -msgstr "" +msgstr "Configurações do Stream" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:729 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:691 msgid "Chart height" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:735 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:697 msgid "px" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:737 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:699 msgid "Apply" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:783 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:745 #, fuzzy msgid "All Contexts" msgstr "Contexto" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:797 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:759 #, fuzzy msgid "All Actions" msgstr "Ação" -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:62 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:57 #, fuzzy msgid "" "Users from the selected roles above will have permission to view and edit " @@ -4923,32 +5360,27 @@ msgstr "" "Stream, mas as configurações continuam sendo disponíveis apenas para os " "Administradores." -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:243 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:238 msgid "Uh no! This wasn't suppose to happen :(" msgstr "" -#: ../extensions/reports/views/all.php:6 -msgid "1 site" -msgstr "" - -#: ../extensions/reports/views/all.php:13 -#: ../extensions/reports/views/all.php:21 +#: ../extensions/reports/views/all.php:5 msgid "New Report" msgstr "" -#: ../extensions/reports/views/all.php:38 +#: ../extensions/reports/views/all.php:20 msgid "Well, this is embarrassing. There are no reports yet!" msgstr "" -#: ../extensions/reports/views/all.php:41 +#: ../extensions/reports/views/all.php:23 msgid "Add a new one" msgstr "" -#: ../extensions/reports/views/all.php:43 +#: ../extensions/reports/views/all.php:25 msgid "or" msgstr "" -#: ../extensions/reports/views/all.php:45 +#: ../extensions/reports/views/all.php:27 #, fuzzy msgid "Generate some for me" msgstr "Gerar nova chave" @@ -4995,6 +5427,88 @@ msgstr "" msgid "Stream Feed" msgstr "Feed do Stream" +#: ../stream.php:100 +msgid "Stream: Could not load chosen DB driver." +msgstr "" + +#: ../stream.php:151 +msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." +msgstr "" +"O Stream requer a versão 5.3 ou superior do PHP, o plugin NÃO está ativo." + +#: ../stream.php:192 ../stream.php:207 +msgid "Deprecated Plugins Found" +msgstr "" + +#: ../stream.php:193 +msgid "" +"The following plugins are deprecated and will be deactivated in order to " +"activate" +msgstr "" + +#: ../stream.php:202 +#, fuzzy +msgid "Continue" +msgstr "Contexto" + +#, fuzzy +#~ msgid "Stream Network Settings" +#~ msgstr "Configurações do Stream" + +#, fuzzy +#~ msgid "Network Settings" +#~ msgstr "Configurações do Stream" + +#, fuzzy +#~ msgid "New Site Settings" +#~ msgstr "Configurações do Stream" + +#, fuzzy +#~ msgid "Enable Site Access" +#~ msgstr "Permissões de acesso" + +#, fuzzy +#~ msgid "Reset Site Settings" +#~ msgstr "Configurações do Stream" + +#, fuzzy +#~ msgid "" +#~ "Warning: Clicking this will override all site settings with defaults." +#~ msgstr "" +#~ "Atenção: clicar nesse botão vai deletar todas os registros de atividades " +#~ "do seu banco de dados." + +#, fuzzy +#~ msgid "Settings saved." +#~ msgstr "Configurações" + +#, fuzzy +#~ msgid "Site Admin" +#~ msgstr "Título do Site" + +#, fuzzy +#~ msgid "Site Settings" +#~ msgstr "Configurações do Stream" + +#, fuzzy +#~ msgctxt "1. User's name, 2. Site name, 3. Role" +#~ msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." +#~ msgstr "\"%s\" for removido de \"%s\"" + +#, fuzzy +#~ msgctxt "1. User's name, 2. Site name" +#~ msgid "%1$s has been removed from the site \"%2$s\"." +#~ msgstr "\"%s\" for removido de \"%s\"" + +#, fuzzy +#~ msgctxt "1. Site name, 2. Status" +#~ msgid "\"%1$s\" has been %2$s." +#~ msgstr "\"%s\" foi adicionado a \"%s\"" + +#, fuzzy +#~ msgid "Site Activity" +#~ msgstr "Configurações do Stream" + #, fuzzy #~ msgid "" #~ "Are you sure you want to uninstall and deactivate Stream? This will " diff --git a/languages/stream.po b/languages/stream.po index 8e3d60fd6..e6a40d2f3 100644 --- a/languages/stream.po +++ b/languages/stream.po @@ -1,15 +1,15 @@ msgid "" msgstr "" "Project-Id-Version: Stream 2.0\n" -"POT-Creation-Date: 2014-09-27 00:59+1000\n" -"PO-Revision-Date: 2014-09-27 03:36+1000\n" -"Last-Translator: Luke Carbis \n" +"POT-Creation-Date: 2014-10-01 20:35+1000\n" +"PO-Revision-Date: 2014-10-01 20:37+1000\n" +"Last-Translator: Frankie Jarrett \n" "Language-Team: Stream \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.3\n" +"X-Generator: Poedit 1.6.9\n" "X-Poedit-Basepath: .\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -17,324 +17,275 @@ msgstr "" "_nx_noop;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x\n" "X-Poedit-SearchPath-0: ..\n" -#: ../stream.php:100 -msgid "Stream: Could not load chosen DB driver." -msgstr "" - -#: ../stream.php:156 -msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." -msgstr "" - -#: ../stream.php:197 ../stream.php:212 -msgid "Deprecated Plugins Found" -msgstr "" - -#: ../stream.php:198 -msgid "" -"The following plugins are deprecated and will be deactivated in order to " -"activate" -msgstr "" - -#: ../stream.php:207 -msgid "Continue" -msgstr "" - #: ../classes/class-wp-stream-admin.php:144 -msgid "Dismiss this notice and deactivate Stream." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:152 -#: ../classes/class-wp-stream-admin.php:284 -#: ../classes/class-wp-stream-admin.php:862 +#: ../classes/class-wp-stream-admin.php:270 +#: ../classes/class-wp-stream-admin.php:837 msgid "Connect to Stream" msgstr "" -#: ../classes/class-wp-stream-admin.php:156 +#: ../classes/class-wp-stream-admin.php:148 msgid "Stream is almost ready!" msgstr "" -#: ../classes/class-wp-stream-admin.php:160 -#: ../classes/class-wp-stream-admin.php:866 +#: ../classes/class-wp-stream-admin.php:152 +#: ../classes/class-wp-stream-admin.php:841 #, php-format msgid "" -"Stream uses your WordPress.com ID to authorize your account. You can sign up " -"for free at %swordpress.com/signup%s." +"Stream only uses your WordPress.com ID during sign up to authorize your " +"account. You can sign up for free at %swordpress.com/signup%s." msgstr "" -#: ../classes/class-wp-stream-admin.php:166 +#: ../classes/class-wp-stream-admin.php:158 #, php-format msgid "" "Connect to Stream with your %sWordPress.com ID%s to see every change made to " "your site in beautifully organized detail." msgstr "" -#: ../classes/class-wp-stream-admin.php:195 +#: ../classes/class-wp-stream-admin.php:187 msgid "All site settings have been successfully reset." msgstr "" -#: ../classes/class-wp-stream-admin.php:201 +#: ../classes/class-wp-stream-admin.php:193 msgid "You have successfully connected to Stream!" msgstr "" -#: ../classes/class-wp-stream-admin.php:202 +#: ../classes/class-wp-stream-admin.php:194 msgid "" "Check back here regularly to see a history of the changes being made to this " "site." msgstr "" -#: ../classes/class-wp-stream-admin.php:254 -#: ../classes/class-wp-stream-admin.php:255 -#: ../classes/class-wp-stream-admin.php:285 -#: ../classes/class-wp-stream-network.php:115 +#: ../classes/class-wp-stream-admin.php:242 +#: ../classes/class-wp-stream-admin.php:243 +#: ../classes/class-wp-stream-admin.php:271 #: ../connectors/class-wp-stream-connector-settings.php:129 msgid "Stream" msgstr "" -#: ../classes/class-wp-stream-admin.php:265 +#: ../classes/class-wp-stream-admin.php:253 msgid "Stream Settings" msgstr "" -#: ../classes/class-wp-stream-admin.php:266 -#: ../classes/class-wp-stream-admin.php:565 -#: ../connectors/class-wp-stream-connector-bbpress.php:114 -#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#: ../classes/class-wp-stream-admin.php:254 +#: ../classes/class-wp-stream-admin.php:540 #: ../connectors/class-wp-stream-connector-settings.php:100 #: ../connectors/class-wp-stream-connector-settings.php:121 #: ../connectors/class-wp-stream-connector-woocommerce.php:693 msgid "Settings" msgstr "" -#: ../classes/class-wp-stream-admin.php:275 +#: ../classes/class-wp-stream-admin.php:262 msgid "Stream Account" msgstr "" -#: ../classes/class-wp-stream-admin.php:276 +#: ../classes/class-wp-stream-admin.php:263 msgid "Account" msgstr "" -#: ../classes/class-wp-stream-admin.php:354 +#: ../classes/class-wp-stream-admin.php:340 msgid "" "Are you sure you want to reset all site settings to default? This cannot be " "undone." msgstr "" -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 #, php-format msgid "This will take about %d minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 msgid "This could take a few minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:385 +#: ../classes/class-wp-stream-admin.php:371 msgid "Migrating Stream Records" msgstr "" -#: ../classes/class-wp-stream-admin.php:386 +#: ../classes/class-wp-stream-admin.php:372 msgid "Deleting Stream Records" msgstr "" -#: ../classes/class-wp-stream-admin.php:387 +#: ../classes/class-wp-stream-admin.php:373 msgid "" "An unknown error occurred during migration. Please try again later or " "contact support." msgstr "" -#: ../classes/class-wp-stream-admin.php:388 -#: ../classes/class-wp-stream-admin.php:389 +#: ../classes/class-wp-stream-admin.php:374 +#: ../classes/class-wp-stream-admin.php:375 msgid "Please do not exit this page until the process has completed." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 #, php-format msgid "Please note: This process will take about %d minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 msgid "Please note: This process could take a few minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:391 +#: ../classes/class-wp-stream-admin.php:377 msgid "" "Please note: Your existing records will not appear in Stream until you have " "migrated them to your account." msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, php-format msgid "" "Are you sure you want to delete all %s existing Stream records without " "migrating? This will take %s minutes and cannot be undone." msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, php-format msgid "about %d" msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 msgid "a few" msgstr "" -#: ../classes/class-wp-stream-admin.php:421 +#: ../classes/class-wp-stream-admin.php:407 #, php-format msgid "" "Are you sure you want to perform bulk actions on over %d items? This process " "could take a while to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:422 +#: ../classes/class-wp-stream-admin.php:408 msgid "" "The Stream plugin must be deactivated before you can bulk import content " "into WordPress." msgstr "" -#: ../classes/class-wp-stream-admin.php:751 +#: ../classes/class-wp-stream-admin.php:726 msgid "Error retrieving account details." msgstr "" -#: ../classes/class-wp-stream-admin.php:753 +#: ../classes/class-wp-stream-admin.php:728 msgid "" "If this problem persists, please disconnect from Stream and try connecting " "again." msgstr "" -#: ../classes/class-wp-stream-admin.php:760 +#: ../classes/class-wp-stream-admin.php:735 msgid "Free" msgstr "" -#: ../classes/class-wp-stream-admin.php:764 +#: ../classes/class-wp-stream-admin.php:739 msgid "Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:766 +#: ../classes/class-wp-stream-admin.php:741 msgid "Standard" msgstr "" -#: ../classes/class-wp-stream-admin.php:772 +#: ../classes/class-wp-stream-admin.php:747 #, php-format +msgctxt "1: Price, 2: Renewal date" msgid "$%1$s on %2$s" msgstr "" -#: ../classes/class-wp-stream-admin.php:774 +#: ../classes/class-wp-stream-admin.php:749 #: ../classes/class-wp-stream-author.php:64 #: ../classes/class-wp-stream-author.php:72 #: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:127 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:287 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:471 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:279 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:433 msgid "N/A" msgstr "" -#: ../classes/class-wp-stream-admin.php:781 +#: ../classes/class-wp-stream-admin.php:756 msgid "Unlimited" msgstr "" -#: ../classes/class-wp-stream-admin.php:784 +#: ../classes/class-wp-stream-admin.php:759 +#, php-format msgid "1 Day" -msgstr "" +msgid_plural "%s Days" +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-admin.php:794 +#: ../classes/class-wp-stream-admin.php:769 msgid "Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:798 +#: ../classes/class-wp-stream-admin.php:773 msgid "Activity History" msgstr "" -#: ../classes/class-wp-stream-admin.php:803 +#: ../classes/class-wp-stream-admin.php:778 msgid "Next Billing" msgstr "" -#: ../classes/class-wp-stream-admin.php:808 +#: ../classes/class-wp-stream-admin.php:783 #: ../connectors/class-wp-stream-connector-acf.php:81 -#: ../connectors/class-wp-stream-connector-bbpress.php:88 -#: ../connectors/class-wp-stream-connector-blogs.php:50 -#: ../connectors/class-wp-stream-connector-buddypress.php:123 #: ../connectors/class-wp-stream-connector-comments.php:46 -#: ../connectors/class-wp-stream-connector-edd.php:108 -#: ../connectors/class-wp-stream-connector-gravityforms.php:98 #: ../connectors/class-wp-stream-connector-menus.php:39 #: ../connectors/class-wp-stream-connector-posts.php:39 #: ../connectors/class-wp-stream-connector-taxonomies.php:54 #: ../connectors/class-wp-stream-connector-users.php:54 #: ../connectors/class-wp-stream-connector-widgets.php:58 -#: ../connectors/class-wp-stream-connector-woocommerce.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:77 msgid "Created" msgstr "" -#: ../classes/class-wp-stream-admin.php:812 +#: ../classes/class-wp-stream-admin.php:787 msgid "Site ID" msgstr "" -#: ../classes/class-wp-stream-admin.php:818 +#: ../classes/class-wp-stream-admin.php:793 msgid "API Key" msgstr "" -#: ../classes/class-wp-stream-admin.php:828 +#: ../classes/class-wp-stream-admin.php:803 #: ../classes/class-wp-stream-list-table.php:49 -#: ../extensions/notifications/class-wp-stream-notifications.php:155 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:133 +#: ../extensions/notifications/class-wp-stream-notifications.php:136 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:125 msgid "Upgrade to Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:830 +#: ../classes/class-wp-stream-admin.php:805 msgid "Modify This Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:872 +#: ../classes/class-wp-stream-admin.php:847 #, php-format msgid "with your %sWordPress.com ID%s" msgstr "" -#: ../classes/class-wp-stream-admin.php:890 +#: ../classes/class-wp-stream-admin.php:865 +msgctxt "Haiku line 1" msgid "A transformation" msgstr "" -#: ../classes/class-wp-stream-admin.php:891 +#: ../classes/class-wp-stream-admin.php:866 +msgctxt "Haiku line 2" msgid "Like brook, to river, to sea" msgstr "" -#: ../classes/class-wp-stream-admin.php:901 +#: ../classes/class-wp-stream-admin.php:876 +msgctxt "Haiku line 3" msgid "I have a secret" msgstr "" -#: ../classes/class-wp-stream-admin.php:917 -#: ../classes/class-wp-stream-admin.php:931 -#: ../classes/class-wp-stream-admin.php:933 +#: ../classes/class-wp-stream-admin.php:892 +#: ../classes/class-wp-stream-admin.php:898 msgid "Stream Records" msgstr "" -#: ../classes/class-wp-stream-admin.php:928 -msgid " (1 site)" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:942 -msgid "Get started with Stream for Multisite!" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:943 -msgid "" -"Welcome to your Network Stream! Each site on your network must be connected " -"individually by an admin on that site for it to show here." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:954 -msgid "Stream for Multisite is coming soon!" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:955 -msgid "Access to all the Stream feeds in your network is currently disabled." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:1104 +#: ../classes/class-wp-stream-admin.php:1038 +#, php-format msgid "One more result..." -msgstr "" +msgid_plural "%d more results..." +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-api.php:360 +#: ../classes/class-wp-stream-api.php:356 msgid "Stream API Error." msgstr "" @@ -346,15 +297,11 @@ msgstr "" msgid "during WP Cron" msgstr "" -#: ../classes/class-wp-stream-connectors.php:102 +#: ../classes/class-wp-stream-connectors.php:98 #, php-format msgid "%s class wasn't loaded because it doesn't extends the %s class." msgstr "" -#: ../classes/class-wp-stream-dashboard-widget.php:25 -msgid "Network Stream Activity" -msgstr "" - #: ../classes/class-wp-stream-dashboard-widget.php:25 msgid "Stream Activity" msgstr "" @@ -382,6 +329,7 @@ msgstr "" #: ../classes/class-wp-stream-dashboard-widget.php:134 #, php-format +msgctxt "paging" msgid "%1$s of %2$s" msgstr "" @@ -404,6 +352,7 @@ msgstr "" #: ../classes/class-wp-stream-dashboard-widget.php:209 #, php-format +msgctxt "1: Time, 2: User profile URL, 3: User display name" msgid "%1$s ago by %3$s" msgstr "" @@ -445,38 +394,38 @@ msgstr "" msgid "Last Year" msgstr "" -#: ../classes/class-wp-stream-feeds.php:126 +#: ../classes/class-wp-stream-feeds.php:109 msgid "Stream Feeds Key" msgstr "" -#: ../classes/class-wp-stream-feeds.php:131 +#: ../classes/class-wp-stream-feeds.php:114 msgid "Generate new key" msgstr "" -#: ../classes/class-wp-stream-feeds.php:134 +#: ../classes/class-wp-stream-feeds.php:117 msgid "" "This is your private key used for accessing feeds of Stream Records " "securely. You can change your key at any time by generating a new one using " "the link above." msgstr "" -#: ../classes/class-wp-stream-feeds.php:136 +#: ../classes/class-wp-stream-feeds.php:119 msgid "RSS Feed" msgstr "" -#: ../classes/class-wp-stream-feeds.php:138 +#: ../classes/class-wp-stream-feeds.php:121 msgid "ATOM Feed" msgstr "" -#: ../classes/class-wp-stream-feeds.php:140 +#: ../classes/class-wp-stream-feeds.php:123 msgid "JSON Feed" msgstr "" -#: ../classes/class-wp-stream-feeds.php:188 +#: ../classes/class-wp-stream-feeds.php:171 msgid "Access Denied" msgstr "" -#: ../classes/class-wp-stream-feeds.php:189 +#: ../classes/class-wp-stream-feeds.php:172 msgid "" "You don't have permission to view this feed, please contact your site " "Administrator." @@ -491,8 +440,13 @@ msgid "Filter not supported." msgstr "" #: ../classes/class-wp-stream-list-table.php:48 +#, php-format msgid "Your free account is limited to viewing 24 hours of activity history." -msgstr "" +msgid_plural "" +"Your free account is limited to viewing %d days of activity " +"history." +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-list-table.php:68 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:507 @@ -505,29 +459,28 @@ msgid "Summary" msgstr "" #: ../classes/class-wp-stream-list-table.php:70 -#: ../connectors/class-wp-stream-connector-acf.php:309 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:492 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:406 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:368 msgid "Author" msgstr "" #: ../classes/class-wp-stream-list-table.php:71 -#: ../classes/class-wp-stream-settings.php:629 +#: ../classes/class-wp-stream-settings.php:603 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:553 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:409 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:371 msgid "Context" msgstr "" #: ../classes/class-wp-stream-list-table.php:72 -#: ../classes/class-wp-stream-settings.php:630 +#: ../classes/class-wp-stream-settings.php:604 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:560 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:405 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:367 msgid "Action" msgstr "" #: ../classes/class-wp-stream-list-table.php:73 -#: ../classes/class-wp-stream-settings.php:631 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:410 +#: ../classes/class-wp-stream-settings.php:605 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:372 msgid "IP Address" msgstr "" @@ -595,8 +548,7 @@ msgid "Live updates" msgstr "" #: ../classes/class-wp-stream-list-table.php:836 -#: ../classes/class-wp-stream-network.php:303 -#: ../classes/class-wp-stream-settings.php:255 +#: ../classes/class-wp-stream-settings.php:237 msgid "Enabled" msgstr "" @@ -609,8 +561,11 @@ msgid "" msgstr "" #: ../classes/class-wp-stream-live-update.php:176 +#, php-format msgid "1 item" -msgstr "" +msgid_plural "%s items" +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-migrate.php:121 msgid "Migrate Stream Records" @@ -660,68 +615,6 @@ msgstr "" msgid "All existing records have been deleted from the database." msgstr "" -#: ../classes/class-wp-stream-network.php:129 -msgid "Network Admin" -msgstr "" - -#: ../classes/class-wp-stream-network.php:169 -msgid "Stream Network Settings" -msgstr "" - -#: ../classes/class-wp-stream-network.php:170 -msgid "Network Settings" -msgstr "" - -#: ../classes/class-wp-stream-network.php:179 -msgid "New Site Settings" -msgstr "" - -#: ../classes/class-wp-stream-network.php:180 -msgid "Site Defaults" -msgstr "" - -#: ../classes/class-wp-stream-network.php:234 -msgid "These settings apply to all sites on the network." -msgstr "" - -#: ../classes/class-wp-stream-network.php:237 -msgid "" -"These default settings will apply to new sites created on the network. These " -"settings do not alter existing sites." -msgstr "" - -#: ../classes/class-wp-stream-network.php:302 -msgid "Enable Site Access" -msgstr "" - -#: ../classes/class-wp-stream-network.php:305 -msgid "" -"When site access is disabled Stream can only be accessed from the network " -"administration." -msgstr "" - -#: ../classes/class-wp-stream-network.php:321 -msgid "Reset Site Settings" -msgstr "" - -#: ../classes/class-wp-stream-network.php:324 -msgid "Warning: Clicking this will override all site settings with defaults." -msgstr "" - -#: ../classes/class-wp-stream-network.php:408 -msgid "Settings saved." -msgstr "" - -#: ../classes/class-wp-stream-network.php:463 -msgid "sites" -msgstr "" - -#: ../classes/class-wp-stream-network.php:480 -#: ../classes/class-wp-stream-network.php:530 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:428 -msgid "Site" -msgstr "" - #: ../classes/class-wp-stream-pointers.php:144 msgid "Stream Extensions" msgstr "" @@ -734,11 +627,11 @@ msgstr "" msgid "Could not validate record data." msgstr "" -#: ../classes/class-wp-stream-settings.php:85 +#: ../classes/class-wp-stream-settings.php:75 msgid "There was an error in the request" msgstr "" -#: ../classes/class-wp-stream-settings.php:129 +#: ../classes/class-wp-stream-settings.php:119 #, php-format msgid "" "ID: %d\n" @@ -747,34 +640,34 @@ msgid "" "Role: %s" msgstr "" -#: ../classes/class-wp-stream-settings.php:148 +#: ../classes/class-wp-stream-settings.php:138 msgid "" "Actions performed by the system when a user is not logged in (e.g. auto site " "upgrader, or invoking WP-CLI without --user)" msgstr "" -#: ../classes/class-wp-stream-settings.php:226 +#: ../classes/class-wp-stream-settings.php:208 #: ../connectors/class-wp-stream-connector-settings.php:122 msgid "General" msgstr "" -#: ../classes/class-wp-stream-settings.php:230 +#: ../classes/class-wp-stream-settings.php:212 #: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:36 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:60 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:55 msgid "Role Access" msgstr "" -#: ../classes/class-wp-stream-settings.php:232 +#: ../classes/class-wp-stream-settings.php:214 msgid "" "Users from the selected roles above will have permission to view Stream " "Records. However, only site Administrators can access Stream Settings." msgstr "" -#: ../classes/class-wp-stream-settings.php:238 +#: ../classes/class-wp-stream-settings.php:220 msgid "Private Feeds" msgstr "" -#: ../classes/class-wp-stream-settings.php:241 +#: ../classes/class-wp-stream-settings.php:223 #, php-format msgid "" "Users from the selected roles above will be given a private key found in " @@ -782,86 +675,83 @@ msgid "" "%sflush rewrite rules%s on your site after changing this setting." msgstr "" -#: ../classes/class-wp-stream-settings.php:245 +#: ../classes/class-wp-stream-settings.php:227 msgid "View Profile" msgstr "" -#: ../classes/class-wp-stream-settings.php:251 +#: ../classes/class-wp-stream-settings.php:233 msgid "View Codex" msgstr "" -#: ../classes/class-wp-stream-settings.php:261 +#: ../classes/class-wp-stream-settings.php:243 msgid "Exclude" msgstr "" -#: ../classes/class-wp-stream-settings.php:265 +#: ../classes/class-wp-stream-settings.php:247 msgid "Exclude Rules" msgstr "" -#: ../classes/class-wp-stream-settings.php:267 +#: ../classes/class-wp-stream-settings.php:249 msgid "" "Create rules for excluding certain kinds of records from appearing in Stream." msgstr "" -#: ../classes/class-wp-stream-settings.php:595 +#: ../classes/class-wp-stream-settings.php:569 #, php-format msgid "Any %s" msgstr "" -#: ../classes/class-wp-stream-settings.php:610 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +#: ../classes/class-wp-stream-settings.php:584 msgid "Add New Rule" msgstr "" -#: ../classes/class-wp-stream-settings.php:611 +#: ../classes/class-wp-stream-settings.php:585 msgid "Delete Selected Rules" msgstr "" -#: ../classes/class-wp-stream-settings.php:628 +#: ../classes/class-wp-stream-settings.php:602 msgid "Author or Role" msgstr "" -#: ../classes/class-wp-stream-settings.php:632 +#: ../classes/class-wp-stream-settings.php:606 msgid "Filters" msgstr "" -#: ../classes/class-wp-stream-settings.php:656 +#: ../classes/class-wp-stream-settings.php:630 +#, php-format msgid "1 user" -msgstr "" +msgid_plural "%s users" +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-settings.php:679 +#: ../classes/class-wp-stream-settings.php:653 msgid "Any Author or Role" msgstr "" -#: ../classes/class-wp-stream-settings.php:720 +#: ../classes/class-wp-stream-settings.php:694 msgid "Any Context" msgstr "" -#: ../classes/class-wp-stream-settings.php:739 +#: ../classes/class-wp-stream-settings.php:713 msgid "Any Action" msgstr "" -#: ../classes/class-wp-stream-settings.php:750 +#: ../classes/class-wp-stream-settings.php:724 msgid "Any IP Address" msgstr "" -#: ../classes/class-wp-stream-settings.php:787 +#: ../classes/class-wp-stream-settings.php:761 msgid "No rules found." msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:71 +msgctxt "acf" msgid "ACF" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:82 -#: ../connectors/class-wp-stream-connector-bbpress.php:89 -#: ../connectors/class-wp-stream-connector-blogs.php:49 -#: ../connectors/class-wp-stream-connector-buddypress.php:124 -#: ../connectors/class-wp-stream-connector-edd.php:109 #: ../connectors/class-wp-stream-connector-editor.php:54 -#: ../connectors/class-wp-stream-connector-gravityforms.php:99 #: ../connectors/class-wp-stream-connector-installer.php:48 -#: ../connectors/class-wp-stream-connector-jetpack.php:85 #: ../connectors/class-wp-stream-connector-media.php:43 #: ../connectors/class-wp-stream-connector-menus.php:40 #: ../connectors/class-wp-stream-connector-posts.php:38 @@ -869,27 +759,16 @@ msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:55 #: ../connectors/class-wp-stream-connector-users.php:53 #: ../connectors/class-wp-stream-connector-widgets.php:62 -#: ../connectors/class-wp-stream-connector-woocommerce.php:99 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:78 msgid "Updated" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:83 -#: ../connectors/class-wp-stream-connector-edd.php:110 -#: ../connectors/class-wp-stream-connector-gravityforms.php:102 -#: ../connectors/class-wp-stream-connector-jetpack.php:86 #: ../connectors/class-wp-stream-connector-widgets.php:55 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:79 msgid "Added" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:84 -#: ../connectors/class-wp-stream-connector-bbpress.php:92 -#: ../connectors/class-wp-stream-connector-blogs.php:52 -#: ../connectors/class-wp-stream-connector-buddypress.php:127 #: ../connectors/class-wp-stream-connector-comments.php:55 -#: ../connectors/class-wp-stream-connector-edd.php:111 -#: ../connectors/class-wp-stream-connector-gravityforms.php:103 #: ../connectors/class-wp-stream-connector-installer.php:47 #: ../connectors/class-wp-stream-connector-media.php:44 #: ../connectors/class-wp-stream-connector-menus.php:41 @@ -897,135 +776,160 @@ msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:56 #: ../connectors/class-wp-stream-connector-users.php:55 #: ../connectors/class-wp-stream-connector-widgets.php:59 -#: ../connectors/class-wp-stream-connector-woocommerce.php:102 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:80 msgid "Deleted" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:95 +msgctxt "acf" msgid "Field Groups" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:96 +msgctxt "acf" msgid "Fields" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:97 +msgctxt "acf" msgid "Rules" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:98 -#: ../connectors/class-wp-stream-connector-jetpack.php:101 +msgctxt "acf" msgid "Options" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:99 +msgctxt "acf" msgid "Values" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:224 #, php-format +msgctxt "acf" msgid "\"%1$s\" field in \"%2$s\" %3$s" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:252 +msgctxt "acf" msgid "High (after title)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:253 +msgctxt "acf" msgid "Normal (after content)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:254 +msgctxt "acf" msgid "Side" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:258 #, php-format +msgctxt "acf" msgid "Position of \"%1$s\" updated to \"%2$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:277 +msgctxt "acf" msgid "Seamless (no metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:278 +msgctxt "acf" msgid "Standard (WP metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:282 #, php-format +msgctxt "acf" msgid "Style of \"%1$s\" updated to \"%2$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:301 +msgctxt "acf" msgid "Permalink" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:302 +msgctxt "acf" msgid "Content Editor" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:303 +msgctxt "acf" msgid "Excerpt" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:304 +msgctxt "acf" msgid "Custom Fields" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:305 -#: ../connectors/class-wp-stream-connector-settings.php:125 +msgctxt "acf" msgid "Discussion" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:306 -#: ../connectors/class-wp-stream-connector-comments.php:36 -#: ../connectors/class-wp-stream-connector-comments.php:68 -#: ../connectors/class-wp-stream-connector-jetpack.php:109 +msgctxt "acf" msgid "Comments" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:307 +msgctxt "acf" msgid "Revisions" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:308 +msgctxt "acf" msgid "Slug" msgstr "" +#: ../connectors/class-wp-stream-connector-acf.php:309 +msgctxt "acf" +msgid "Author" +msgstr "" + #: ../connectors/class-wp-stream-connector-acf.php:310 +msgctxt "acf" msgid "Format" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:311 +msgctxt "acf" msgid "Featured Image" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:312 -#: ../connectors/class-wp-stream-connector-edd.php:129 +msgctxt "acf" msgid "Categories" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:313 -#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "acf" msgid "Tags" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:314 +msgctxt "acf" msgid "Send Trackbacks" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:318 +msgctxt "acf" msgid "All screens" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:320 +msgctxt "acf" msgid "No screens" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:326 #, php-format +msgctxt "acf" msgid "\"%1$s\" set to display on \"%2$s\"" msgstr "" @@ -1035,11 +939,13 @@ msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:396 #, php-format +msgctxt "acf" msgid "\"%1$s\" of \"%2$s\" %3$s updated" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:434 #, php-format +msgctxt "acf" msgid "Updated rules of \"%1$s\" (%2$d added, %3$d deleted)" msgstr "" @@ -1047,96 +953,102 @@ msgstr "" msgid "field group" msgstr "" -#: ../connectors/class-wp-stream-connector-acf.php:494 +#: ../connectors/class-wp-stream-connector-acf.php:495 #, php-format +msgctxt "acf" msgid "Updated Order of \"%1$s\" from %2$d to %3$d" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:78 +msgctxt "bbpress" msgid "bbPress" msgstr "" +#: ../connectors/class-wp-stream-connector-bbpress.php:88 +msgctxt "bbpress" +msgid "Created" +msgstr "" + +#: ../connectors/class-wp-stream-connector-bbpress.php:89 +msgctxt "bbpress" +msgid "Updated" +msgstr "" + #: ../connectors/class-wp-stream-connector-bbpress.php:90 -#: ../connectors/class-wp-stream-connector-buddypress.php:125 -#: ../connectors/class-wp-stream-connector-gravityforms.php:422 -#: ../connectors/class-wp-stream-connector-installer.php:45 -#: ../connectors/class-wp-stream-connector-jetpack.php:79 +msgctxt "bbpress" msgid "Activated" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:91 -#: ../connectors/class-wp-stream-connector-buddypress.php:126 -#: ../connectors/class-wp-stream-connector-gravityforms.php:423 -#: ../connectors/class-wp-stream-connector-installer.php:46 -#: ../connectors/class-wp-stream-connector-widgets.php:60 +msgctxt "bbpress" msgid "Deactivated" msgstr "" +#: ../connectors/class-wp-stream-connector-bbpress.php:92 +msgctxt "bbpress" +msgid "Deleted" +msgstr "" + #: ../connectors/class-wp-stream-connector-bbpress.php:93 -#: ../connectors/class-wp-stream-connector-comments.php:51 -#: ../connectors/class-wp-stream-connector-edd.php:112 -#: ../connectors/class-wp-stream-connector-gravityforms.php:104 -#: ../connectors/class-wp-stream-connector-gravityforms.php:424 -#: ../connectors/class-wp-stream-connector-posts.php:40 -#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +msgctxt "bbpress" msgid "Trashed" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:94 -#: ../connectors/class-wp-stream-connector-comments.php:52 -#: ../connectors/class-wp-stream-connector-edd.php:113 -#: ../connectors/class-wp-stream-connector-gravityforms.php:105 -#: ../connectors/class-wp-stream-connector-gravityforms.php:425 -#: ../connectors/class-wp-stream-connector-posts.php:41 +msgctxt "bbpress" msgid "Restored" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:95 -#: ../connectors/class-wp-stream-connector-edd.php:114 +msgctxt "bbpress" msgid "Generated" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:96 -#: ../connectors/class-wp-stream-connector-edd.php:115 -#: ../connectors/class-wp-stream-connector-gravityforms.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:82 +msgctxt "bbpress" msgid "Imported" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:97 -#: ../connectors/class-wp-stream-connector-edd.php:116 -#: ../connectors/class-wp-stream-connector-gravityforms.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:81 +msgctxt "bbpress" msgid "Exported" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:98 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgctxt "bbpress" msgid "Closed" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:99 +msgctxt "bbpress" msgid "Opened" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:100 +msgctxt "bbpress" msgid "Sticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:101 +msgctxt "bbpress" msgid "Unsticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:102 -#: ../connectors/class-wp-stream-connector-buddypress.php:128 +msgctxt "bbpress" msgid "Marked as spam" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:103 -#: ../connectors/class-wp-stream-connector-buddypress.php:129 +msgctxt "bbpress" msgid "Unmarked as spam" msgstr "" +#: ../connectors/class-wp-stream-connector-bbpress.php:114 +msgctxt "bbpress" +msgid "Settings" +msgstr "" + #: ../connectors/class-wp-stream-connector-bbpress.php:131 #: ../connectors/class-wp-stream-connector-buddypress.php:164 #: ../connectors/class-wp-stream-connector-buddypress.php:223 @@ -1144,8 +1056,8 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:254 #: ../connectors/class-wp-stream-connector-comments.php:124 #: ../connectors/class-wp-stream-connector-gravityforms.php:137 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:126 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:133 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:117 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:124 msgid "Edit" msgstr "" @@ -1165,119 +1077,77 @@ msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:209 #, php-format +msgctxt "1: Action, 2: Topic title" msgid "%1$s \"%2$s\" topic" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:39 -msgid "Sites" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:51 -msgid "Archived" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:85 -#: ../connectors/class-wp-stream-connector-blogs.php:90 -msgid "Site Admin" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:101 -msgid "Site Settings" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:116 -#, php-format -msgid "A new site called \"%1$s\" has been created." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:139 -#, php-format -msgid "A new site called \"%1$s\" has been registered." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:170 -#, php-format -msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:201 -#, php-format -msgid "%1$s has been removed from the site \"%2$s\"." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:220 -#: ../connectors/class-wp-stream-connector-gravityforms.php:650 -msgid "marked as spam" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:228 -msgid "marked as not spam" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:236 -msgid "marked as mature" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:244 -msgid "marked as not mature" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:252 -msgid "archived" +#: ../connectors/class-wp-stream-connector-buddypress.php:113 +msgctxt "buddypress" +msgid "BuddyPress" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:260 -msgid "restored from archive" +#: ../connectors/class-wp-stream-connector-buddypress.php:123 +msgctxt "buddypress" +msgid "Created" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:268 -#: ../connectors/class-wp-stream-connector-gravityforms.php:497 -msgid "deleted" +#: ../connectors/class-wp-stream-connector-buddypress.php:124 +msgctxt "buddypress" +msgid "Updated" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:276 -#: ../connectors/class-wp-stream-connector-gravityforms.php:652 -msgid "restored" +#: ../connectors/class-wp-stream-connector-buddypress.php:125 +msgctxt "buddypress" +msgid "Activated" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:286 -msgid "marked as public" +#: ../connectors/class-wp-stream-connector-buddypress.php:126 +msgctxt "buddypress" +msgid "Deactivated" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:288 -msgid "marked as private" +#: ../connectors/class-wp-stream-connector-buddypress.php:127 +msgctxt "buddypress" +msgid "Deleted" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:302 -#, php-format -msgid "\"%1$s\" has been %2$s." +#: ../connectors/class-wp-stream-connector-buddypress.php:128 +msgctxt "buddypress" +msgid "Marked as spam" msgstr "" -#: ../connectors/class-wp-stream-connector-buddypress.php:113 -msgid "BuddyPress" +#: ../connectors/class-wp-stream-connector-buddypress.php:129 +msgctxt "buddypress" +msgid "Unmarked as spam" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:130 +msgctxt "buddypress" msgid "Promoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:131 +msgctxt "buddypress" msgid "Demoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:142 +msgctxt "buddypress" msgid "Components" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:143 +msgctxt "buddypress" msgid "Groups" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:144 +msgctxt "buddypress" msgid "Activity" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:145 +msgctxt "buddypress" msgid "Profile fields" msgstr "" @@ -1297,7 +1167,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:106 #: ../connectors/class-wp-stream-connector-taxonomies.php:94 #: ../connectors/class-wp-stream-connector-woocommerce.php:220 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:174 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:165 msgid "View" msgstr "" @@ -1326,44 +1196,53 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:263 #: ../extensions/notifications/views/form-templates.php:19 #: ../extensions/notifications/views/form-templates.php:78 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:181 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:173 msgid "Delete" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:284 #: ../connectors/class-wp-stream-connector-buddypress.php:288 +msgctxt "buddypress" msgid "Toolbar" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:292 +msgctxt "buddypress" msgid "Account Deletion" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:296 +msgctxt "buddypress" msgid "Profile Syncing" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:300 +msgctxt "buddypress" msgid "Group Creation" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:304 +msgctxt "buddypress" msgid "bbPress Configuration" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:308 +msgctxt "buddypress" msgid "Blog & Forum Comments" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:312 +msgctxt "buddypress" msgid "Activity auto-refresh" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:316 +msgctxt "buddypress" msgid "Akismet" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:320 +msgctxt "buddypress" msgid "Avatar Uploads" msgstr "" @@ -1402,12 +1281,12 @@ msgid "\"%1$s\" component %2$s" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:432 +msgctxt "buddypress" msgid "Register" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:433 -#: ../connectors/class-wp-stream-connector-jetpack.php:159 -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 +msgctxt "buddypress" msgid "Activate" msgstr "" @@ -1486,10 +1365,12 @@ msgid "Removed \"%2$s\" from \"%1$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:665 +msgctxt "buddypress" msgid "Administrator" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:666 +msgctxt "buddypress" msgid "Moderator" msgstr "" @@ -1504,6 +1385,7 @@ msgid "Demoted \"%s\" to \"%s\" in \"%s\"" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:682 +msgctxt "buddypress" msgid "Member" msgstr "" @@ -1537,6 +1419,11 @@ msgstr "" msgid "Deleted profile field group \"%s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:36 +#: ../connectors/class-wp-stream-connector-comments.php:68 +msgid "Comments" +msgstr "" + #: ../connectors/class-wp-stream-connector-comments.php:47 msgid "Edited" msgstr "" @@ -1553,6 +1440,18 @@ msgstr "" msgid "Unapproved" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:51 +#: ../connectors/class-wp-stream-connector-gravityforms.php:424 +#: ../connectors/class-wp-stream-connector-posts.php:40 +msgid "Trashed" +msgstr "" + +#: ../connectors/class-wp-stream-connector-comments.php:52 +#: ../connectors/class-wp-stream-connector-gravityforms.php:425 +#: ../connectors/class-wp-stream-connector-posts.php:41 +msgid "Restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-comments.php:53 msgid "Marked as Spam" msgstr "" @@ -1628,87 +1527,154 @@ msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:248 #, php-format +msgctxt "" +"1: Parent comment's author, 2: Comment author, 3: Post title, 4: Comment " +"status, 5: Comment type" msgid "Reply to %1$s's %5$s by %2$s on %3$s %4$s" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:261 #, php-format +msgctxt "1: Comment author, 2: Post title 3: Comment status, 4: Comment type" msgid "New %4$s by %1$s on %2$s %3$s" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:295 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s edited" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:327 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s deleted permanently" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:359 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s trashed" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:391 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s restored" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:423 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s marked as spam" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:455 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s unmarked as spam" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:489 #, php-format +msgctxt "" +"Comment status transition. 1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s %2$s" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:524 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "Duplicate %3$s by %1$s prevented on %2$s" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:98 +msgctxt "edd" msgid "Easy Digital Downloads" msgstr "" -#: ../connectors/class-wp-stream-connector-edd.php:117 -msgid "Revoked" +#: ../connectors/class-wp-stream-connector-edd.php:108 +msgctxt "edd" +msgid "Created" msgstr "" -#: ../connectors/class-wp-stream-connector-edd.php:128 -msgid "Downloads" +#: ../connectors/class-wp-stream-connector-edd.php:109 +msgctxt "edd" +msgid "Updated" msgstr "" -#: ../connectors/class-wp-stream-connector-edd.php:131 -msgid "Discounts" +#: ../connectors/class-wp-stream-connector-edd.php:110 +msgctxt "edd" +msgid "Added" msgstr "" -#: ../connectors/class-wp-stream-connector-edd.php:132 -#: ../extensions/reports/class-wp-stream-reports.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:146 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:56 -msgid "Reports" -msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:111 +msgctxt "edd" +msgid "Deleted" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:112 +msgctxt "edd" +msgid "Trashed" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:113 +msgctxt "edd" +msgid "Restored" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:114 +msgctxt "edd" +msgid "Generated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:115 +msgctxt "edd" +msgid "Imported" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:116 +msgctxt "edd" +msgid "Exported" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:117 +msgctxt "edd" +msgid "Revoked" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:128 +msgctxt "edd" +msgid "Downloads" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:129 +msgctxt "edd" +msgid "Categories" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "edd" +msgid "Tags" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:131 +msgctxt "edd" +msgid "Discounts" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:132 +msgctxt "edd" +msgid "Reports" +msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:133 +msgctxt "edd" msgid "API Keys" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:155 #: ../connectors/class-wp-stream-connector-edd.php:182 -#: ../connectors/class-wp-stream-connector-posts.php:103 -#: ../connectors/class-wp-stream-connector-taxonomies.php:93 -#: ../connectors/class-wp-stream-connector-woocommerce.php:216 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:171 #, php-format msgid "Edit %s" msgstr "" @@ -1736,6 +1702,7 @@ msgid "Reissue" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:273 +msgctxt "edd" msgid "Banned emails" msgstr "" @@ -1822,6 +1789,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-editor.php:112 #, php-format +msgctxt "1: File name, 2: Theme/plugin name" msgid "\"%1$s\" in \"%2$s\" updated" msgstr "" @@ -1835,26 +1803,77 @@ msgid "Theme Details" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:88 +msgctxt "gravityforms" msgid "Gravity Forms" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:98 +msgctxt "gravityforms" +msgid "Created" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:99 +msgctxt "gravityforms" +msgid "Updated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:100 +msgctxt "gravityforms" +msgid "Exported" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:101 +msgctxt "gravityforms" +msgid "Imported" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:102 +msgctxt "gravityforms" +msgid "Added" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:103 +msgctxt "gravityforms" +msgid "Deleted" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:104 +msgctxt "gravityforms" +msgid "Trashed" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:105 +msgctxt "gravityforms" +msgid "Restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:106 +msgctxt "gravityforms" msgid "Duplicated" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:117 +msgctxt "gravityforms" msgid "Forms" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +msgctxt "gravityforms" +msgid "Settings" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:119 +msgctxt "gravityforms" msgid "Import/Export" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:120 +msgctxt "gravityforms" msgid "Entries" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:121 +msgctxt "gravityforms" msgid "Notes" msgstr "" @@ -1863,26 +1882,32 @@ msgid "Edit Settings" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:181 +msgctxt "gravityforms" msgid "Output CSS" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:184 +msgctxt "gravityforms" msgid "Output HTML5" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:187 +msgctxt "gravityforms" msgid "No-Conflict Mode" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:190 +msgctxt "gravityforms" msgid "Currency" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:193 +msgctxt "gravityforms" msgid "reCAPTCHA Public Key" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:196 +msgctxt "gravityforms" msgid "reCAPTCHA Private Key" msgstr "" @@ -1927,11 +1952,26 @@ msgstr "" msgid "\"%1$s\" notification %2$s from \"%3$s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:422 +#: ../connectors/class-wp-stream-connector-installer.php:45 +msgid "Activated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:423 +#: ../connectors/class-wp-stream-connector-installer.php:46 +#: ../connectors/class-wp-stream-connector-widgets.php:60 +msgid "Deactivated" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:496 #, php-format msgid "Gravity Forms license key %s" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:497 +msgid "deleted" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:510 #, php-format msgid "\"%s\" form exported" @@ -1971,10 +2011,18 @@ msgstr "" msgid "Note #%1$d deleted from lead #%2$d on \"%3$s\" form" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:650 +msgid "marked as spam" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:651 msgid "trashed" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:652 +msgid "restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:661 #: ../connectors/class-wp-stream-connector-gravityforms.php:708 #, php-format @@ -2024,11 +2072,17 @@ msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:149 #, php-format +msgctxt "" +"Plugin/theme installation. 1: Type (plugin/theme), 2: Plugin/theme name, 3: " +"Plugin/theme version" msgid "Installed %1$s: %2$s %3$s" msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:157 #, php-format +msgctxt "" +"Plugin/theme update. 1: Type (plugin/theme), 2: Plugin/theme name, 3: Plugin/" +"theme version" msgid "Updated %1$s: %2$s %3$s" msgstr "" @@ -2040,11 +2094,13 @@ msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:225 #, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin activated %2$s" msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:243 #, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin deactivated %2$s" msgstr "" @@ -2074,121 +2130,168 @@ msgid "WordPress updated to %s" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:69 +msgctxt "jetpack" msgid "Jetpack" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:79 +msgctxt "jetpack" +msgid "Activated" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:80 +msgctxt "jetpack" msgid "Dectivated" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:81 +msgctxt "jetpack" msgid "Connected" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:82 +msgctxt "jetpack" msgid "Disconnected" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:83 +msgctxt "jetpack" msgid "Link" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:84 +msgctxt "jetpack" msgid "Unlink" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:85 +msgctxt "jetpack" +msgid "Updated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-jetpack.php:86 +msgctxt "jetpack" +msgid "Added" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:87 -#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgctxt "jetpack" msgid "Removed" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:98 +msgctxt "jetpack" msgid "Modules" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:99 +msgctxt "jetpack" msgid "Blogs" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:100 -#: ../connectors/class-wp-stream-connector-users.php:43 -#: ../connectors/class-wp-stream-connector-users.php:70 +msgctxt "jetpack" msgid "Users" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:101 +msgctxt "jetpack" +msgid "Options" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:102 +msgctxt "jetpack" msgid "Sharing" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:103 +msgctxt "jetpack" msgid "Publicize" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:104 +msgctxt "jetpack" msgid "Google+ Profile" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:105 -#: ../connectors/class-wp-stream-connector-jetpack.php:203 +msgctxt "jetpack" msgid "WordPress.com Stats" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:106 +msgctxt "jetpack" msgid "Carousel" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:107 +msgctxt "jetpack" msgid "Custom CSS" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:108 +msgctxt "jetpack" msgid "Subscriptions" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:109 +msgctxt "jetpack" +msgid "Comments" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:110 +msgctxt "jetpack" msgid "Infinite Scroll" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:111 +msgctxt "jetpack" msgid "SSO" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:112 +msgctxt "jetpack" msgid "Likes" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:113 +msgctxt "jetpack" msgid "Mobile" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:114 +msgctxt "jetpack" msgid "Monitor" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:115 +msgctxt "jetpack" msgid "Post by Email" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:116 +msgctxt "jetpack" msgid "Related Posts" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:117 +msgctxt "jetpack" msgid "Site Verification" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:118 -#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgctxt "jetpack" msgid "Tiled Galleries" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:119 +msgctxt "jetpack" msgid "VideoPress" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:222 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:182 +#: ../extensions/reports/class-wp-stream-reports.php:220 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:174 msgid "Configure" msgstr "" @@ -2197,6 +2300,11 @@ msgstr "" msgid "Deactivate" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:159 +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 +msgid "Activate" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:174 msgid "Configure module" msgstr "" @@ -2209,6 +2317,10 @@ msgstr "" msgid "Twitter site tag" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:203 +msgid "WordPress.com Stats" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:208 msgid "Color Scheme" msgstr "" @@ -2277,6 +2389,10 @@ msgstr "" msgid "Pinterest Site Verification Token" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgid "Tiled Galleries" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:322 #, php-format msgid "%1$s module %2$s" @@ -2472,6 +2588,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-media.php:126 #, php-format +msgctxt "1: Attachment title, 2: Parent post title" msgid "Attached \"%1$s\" to \"%2$s\"" msgstr "" @@ -2486,7 +2603,6 @@ msgid "Updated \"%s\"" msgstr "" #: ../connectors/class-wp-stream-connector-media.php:179 -#: ../connectors/class-wp-stream-connector-menus.php:141 #, php-format msgid "Deleted \"%s\"" msgstr "" @@ -2511,16 +2627,25 @@ msgstr "" #: ../connectors/class-wp-stream-connector-menus.php:123 #, php-format +msgctxt "Menu name" msgid "Updated menu \"%s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-menus.php:141 +#, php-format +msgctxt "Menu name" +msgid "Deleted \"%s\"" +msgstr "" + #: ../connectors/class-wp-stream-connector-menus.php:181 #, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been unassigned from \"%2$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-menus.php:189 #, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been assigned to \"%2$s\"" msgstr "" @@ -2529,57 +2654,72 @@ msgid "Posts" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:168 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:159 #, php-format +msgctxt "Post type singular name" msgid "Restore %s" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:160 #, php-format +msgctxt "Post type singular name" msgid "Delete %s Permenantly" msgstr "" +#: ../connectors/class-wp-stream-connector-posts.php:103 +#: ../connectors/class-wp-stream-connector-woocommerce.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:162 +#, php-format +msgctxt "Post type singular name" +msgid "Edit %s" +msgstr "" + #: ../connectors/class-wp-stream-connector-posts.php:110 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:178 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 msgid "Revision" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:147 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s drafted" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:154 #: ../connectors/class-wp-stream-connector-posts.php:161 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s published" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:167 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s unpublished" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:173 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s trashed" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:180 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s restored from trash" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:187 -#: ../connectors/class-wp-stream-connector-taxonomies.php:200 -#: ../connectors/class-wp-stream-connector-woocommerce.php:611 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s updated" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:254 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s deleted from trash" msgstr "" @@ -2595,8 +2735,11 @@ msgstr "" msgid "Reading" msgstr "" +#: ../connectors/class-wp-stream-connector-settings.php:125 +msgid "Discussion" +msgstr "" + #: ../connectors/class-wp-stream-connector-settings.php:127 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:97 msgid "Permalinks" msgstr "" @@ -2620,340 +2763,358 @@ msgstr "" msgid "Stream Defaults" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:208 +#: ../connectors/class-wp-stream-connector-settings.php:233 msgid "Site Title" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:209 +#: ../connectors/class-wp-stream-connector-settings.php:234 msgid "Tagline" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:210 +#: ../connectors/class-wp-stream-connector-settings.php:235 msgid "WordPress Address (URL)" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:211 +#: ../connectors/class-wp-stream-connector-settings.php:236 msgid "Site Address (URL)" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:212 +#: ../connectors/class-wp-stream-connector-settings.php:237 msgid "E-mail Address" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:213 +#: ../connectors/class-wp-stream-connector-settings.php:238 msgid "Membership" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:214 +#: ../connectors/class-wp-stream-connector-settings.php:239 msgid "New User Default Role" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:215 +#: ../connectors/class-wp-stream-connector-settings.php:240 msgid "Timezone" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:216 +#: ../connectors/class-wp-stream-connector-settings.php:241 msgid "Date Format" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:217 +#: ../connectors/class-wp-stream-connector-settings.php:242 msgid "Time Format" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:218 +#: ../connectors/class-wp-stream-connector-settings.php:243 msgid "Week Starts On" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:220 -#: ../connectors/class-wp-stream-connector-settings.php:221 +#: ../connectors/class-wp-stream-connector-settings.php:245 +#: ../connectors/class-wp-stream-connector-settings.php:246 msgid "Formatting" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:222 +#: ../connectors/class-wp-stream-connector-settings.php:247 msgid "Default Post Category" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:223 +#: ../connectors/class-wp-stream-connector-settings.php:248 msgid "Default Post Format" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:224 +#: ../connectors/class-wp-stream-connector-settings.php:249 msgid "Mail Server" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:225 +#: ../connectors/class-wp-stream-connector-settings.php:250 msgid "Login Name" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:226 +#: ../connectors/class-wp-stream-connector-settings.php:251 msgid "Password" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:227 +#: ../connectors/class-wp-stream-connector-settings.php:252 msgid "Default Mail Category" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:228 +#: ../connectors/class-wp-stream-connector-settings.php:253 msgid "Update Services" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:230 -#: ../connectors/class-wp-stream-connector-settings.php:231 -#: ../connectors/class-wp-stream-connector-settings.php:232 +#: ../connectors/class-wp-stream-connector-settings.php:255 +#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:257 msgid "Front page displays" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:233 +#: ../connectors/class-wp-stream-connector-settings.php:258 msgid "Blog pages show at most" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:234 +#: ../connectors/class-wp-stream-connector-settings.php:259 msgid "Syndication feeds show the most recent" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:235 +#: ../connectors/class-wp-stream-connector-settings.php:260 msgid "For each article in a feed, show" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:236 +#: ../connectors/class-wp-stream-connector-settings.php:261 msgid "Search Engine Visibility" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:238 -#: ../connectors/class-wp-stream-connector-settings.php:239 -#: ../connectors/class-wp-stream-connector-settings.php:240 +#: ../connectors/class-wp-stream-connector-settings.php:263 +#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:265 msgid "Default article settings" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:241 -#: ../connectors/class-wp-stream-connector-settings.php:242 -#: ../connectors/class-wp-stream-connector-settings.php:243 -#: ../connectors/class-wp-stream-connector-settings.php:244 -#: ../connectors/class-wp-stream-connector-settings.php:245 -#: ../connectors/class-wp-stream-connector-settings.php:246 -#: ../connectors/class-wp-stream-connector-settings.php:247 -#: ../connectors/class-wp-stream-connector-settings.php:248 -#: ../connectors/class-wp-stream-connector-settings.php:249 -#: ../connectors/class-wp-stream-connector-settings.php:250 +#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:267 +#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:270 +#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:274 +#: ../connectors/class-wp-stream-connector-settings.php:275 msgid "Other comment settings" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:251 -#: ../connectors/class-wp-stream-connector-settings.php:252 +#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:277 msgid "E-mail me whenever" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:253 -#: ../connectors/class-wp-stream-connector-settings.php:254 +#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:279 msgid "Before a comment appears" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:255 -#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:281 msgid "Comment Moderation" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:257 +#: ../connectors/class-wp-stream-connector-settings.php:282 msgid "Comment Blacklist" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:258 +#: ../connectors/class-wp-stream-connector-settings.php:283 msgid "Show Avatars" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:259 +#: ../connectors/class-wp-stream-connector-settings.php:284 msgid "Maximum Rating" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:260 +#: ../connectors/class-wp-stream-connector-settings.php:285 msgid "Default Avatar" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:262 -#: ../connectors/class-wp-stream-connector-settings.php:263 -#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:289 msgid "Thumbnail size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:265 -#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:291 msgid "Medium size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:267 -#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:293 msgid "Large size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:294 msgid "Uploading Files" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:296 msgid "Permalink Settings" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:297 msgid "Category base" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:298 msgid "Tag base" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:275 +#: ../connectors/class-wp-stream-connector-settings.php:300 msgid "Registration notification" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:301 msgid "Allow new registrations" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:277 +#: ../connectors/class-wp-stream-connector-settings.php:302 msgid "Add New Users" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:303 msgid "Enable administration menus" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:279 +#: ../connectors/class-wp-stream-connector-settings.php:304 msgid "Site upload space check" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:305 msgid "Site upload space" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:281 +#: ../connectors/class-wp-stream-connector-settings.php:306 msgid "Upload file types" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:282 +#: ../connectors/class-wp-stream-connector-settings.php:307 msgid "Network Title" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:283 +#: ../connectors/class-wp-stream-connector-settings.php:308 msgid "First Post" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:284 +#: ../connectors/class-wp-stream-connector-settings.php:309 msgid "First Page" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:285 +#: ../connectors/class-wp-stream-connector-settings.php:310 msgid "First Comment" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:286 +#: ../connectors/class-wp-stream-connector-settings.php:311 msgid "First Comment URL" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:312 msgid "First Comment Author" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:313 msgid "Welcome Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:289 +#: ../connectors/class-wp-stream-connector-settings.php:314 msgid "Welcome User Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:315 msgid "Max upload file size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:291 +#: ../connectors/class-wp-stream-connector-settings.php:316 msgid "Terms Enabled" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:317 msgid "Banned Names" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:293 +#: ../connectors/class-wp-stream-connector-settings.php:318 msgid "Limited Email Registrations" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:294 +#: ../connectors/class-wp-stream-connector-settings.php:319 msgid "Banned Email Domains" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:295 +#: ../connectors/class-wp-stream-connector-settings.php:320 msgid "Network Language" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:296 +#: ../connectors/class-wp-stream-connector-settings.php:321 msgid "Network Admin Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:297 +#: ../connectors/class-wp-stream-connector-settings.php:322 msgid "User Count" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:299 +#: ../connectors/class-wp-stream-connector-settings.php:324 msgid "Stream Database Version" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:300 -msgid "Stream Total Sites" +#: ../connectors/class-wp-stream-connector-settings.php:325 +msgid "Stream Connected Sites" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:329 +#: ../connectors/class-wp-stream-connector-settings.php:354 msgid "Background Image" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:330 +#: ../connectors/class-wp-stream-connector-settings.php:355 msgid "Background Position" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:331 +#: ../connectors/class-wp-stream-connector-settings.php:356 msgid "Background Repeat" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:332 +#: ../connectors/class-wp-stream-connector-settings.php:357 msgid "Background Attachment" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:333 +#: ../connectors/class-wp-stream-connector-settings.php:358 msgid "Background Color" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:335 +#: ../connectors/class-wp-stream-connector-settings.php:360 msgid "Header Image" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:336 +#: ../connectors/class-wp-stream-connector-settings.php:361 msgid "Text Color" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:471 +#: ../connectors/class-wp-stream-connector-settings.php:496 #, php-format msgid "Edit %s Settings" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:604 +#: ../connectors/class-wp-stream-connector-settings.php:624 #, php-format msgid "\"%s\" setting was updated" msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:44 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:472 msgid "Taxonomies" msgstr "" +#: ../connectors/class-wp-stream-connector-taxonomies.php:93 +#, php-format +msgctxt "Term singular name" +msgid "Edit %s" +msgstr "" + #: ../connectors/class-wp-stream-connector-taxonomies.php:136 #, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s created" msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:163 #, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s deleted" msgstr "" +#: ../connectors/class-wp-stream-connector-taxonomies.php:200 +#, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" +msgid "\"%1$s\" %2$s updated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-users.php:43 +#: ../connectors/class-wp-stream-connector-users.php:70 +msgid "Users" +msgstr "" + #: ../connectors/class-wp-stream-connector-users.php:56 msgid "Password Reset" msgstr "" @@ -2988,6 +3149,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-users.php:140 #, php-format +msgctxt "1: User display name, 2: User role" msgid "New user account created for %1$s (%2$s)" msgstr "" @@ -2998,6 +3160,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-users.php:191 #, php-format +msgctxt "1: User display name, 2: Old role, 3: New role" msgid "%1$s's role was changed from %2$s to %3$s" msgstr "" @@ -3023,6 +3186,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-users.php:314 #, php-format +msgctxt "1: User display name, 2: User roles" msgid "%1$s's account was deleted (%2$s)" msgstr "" @@ -3035,6 +3199,10 @@ msgstr "" msgid "Widgets" msgstr "" +#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgid "Removed" +msgstr "" + #: ../connectors/class-wp-stream-connector-widgets.php:57 msgid "Moved" msgstr "" @@ -3061,174 +3229,229 @@ msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:196 #, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" from \"%3$s\" deactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:199 #, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget from \"%3$s\" deactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:202 #, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" from \"%3$s\" deactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:205 #, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget from \"%3$s\" deactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:245 #, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" reactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:248 #, php-format +msgctxt "1: Name" msgid "%1$s widget reactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:251 #, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" reactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:254 #, php-format +msgctxt "3: Widget ID" msgid "%3$s widget reactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:301 #, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" removed from \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:304 #, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget removed from \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:307 #, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" removed from \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:310 #, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget removed from \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:354 #, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" added to \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:357 #, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget added to \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:360 #, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" added to \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:363 #, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget added to \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:405 #, php-format +msgctxt "Sidebar name" msgid "Widgets reordered in \"%s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:460 #, php-format +msgctxt "1: Name, 2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:463 #, php-format +msgctxt "1: Name, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:466 #, php-format +msgctxt "2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "Unknown widget type named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:469 #, php-format +msgctxt "3: Widget ID, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%3$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:581 #, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" in \"%3$s\" updated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:584 #, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget in \"%3$s\" updated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:587 #, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" in \"%3$s\" updated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:590 #, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget in \"%3$s\" updated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:621 #, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" created" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:624 #, php-format +msgctxt "1: Name" msgid "%1$s widget created" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:627 #, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" created" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:630 #, php-format +msgctxt "3: Widget ID" msgid "%3$s widget created" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:651 #, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" deleted" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:654 #, php-format +msgctxt "1: Name" msgid "%1$s widget deleted" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:657 #, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" deleted" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:660 #, php-format +msgctxt "3: Widget ID" msgid "%3$s widget deleted" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:89 +msgctxt "woocommerce" msgid "WooCommerce" msgstr "" +#: ../connectors/class-wp-stream-connector-woocommerce.php:99 +msgctxt "woocommerce" +msgid "Updated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:100 +msgctxt "woocommerce" +msgid "Created" +msgstr "" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +msgctxt "woocommerce" +msgid "Trashed" +msgstr "" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:102 +msgctxt "woocommerce" +msgid "Deleted" +msgstr "" + #: ../connectors/class-wp-stream-connector-woocommerce.php:122 +msgctxt "woocommerce" msgid "Attributes" msgstr "" @@ -3286,21 +3509,25 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:301 #, php-format +msgctxt "Order title" msgid "%s created" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:308 #, php-format +msgctxt "Order title" msgid "%s trashed" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:315 #, php-format +msgctxt "Order title" msgid "%s restored from the trash" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:322 #, php-format +msgctxt "Order title" msgid "%s updated" msgstr "" @@ -3318,44 +3545,57 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:377 #, php-format +msgctxt "Order title" msgid "\"%s\" deleted from trash" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:411 #, php-format +msgctxt "1. Order title, 2. Old status, 3. New status" msgid "%1$s status changed from %2$s to %3$s" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:447 #, php-format +msgctxt "Term name" msgid "\"%s\" product attribute created" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:466 #, php-format +msgctxt "Term name" msgid "\"%s\" product attribute updated" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:485 #, php-format +msgctxt "Term name" msgid "\"%s\" product attribute deleted" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:506 #, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate created" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:525 #, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate updated" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:555 #, php-format +msgctxt "Tax rate name" msgid "\"%s\" tax rate deleted" msgstr "" +#: ../connectors/class-wp-stream-connector-woocommerce.php:611 +#, php-format +msgid "\"%1$s\" %2$s updated" +msgstr "" + #: ../connectors/class-wp-stream-connector-woocommerce.php:709 msgid "payment gateway" msgstr "" @@ -3372,1213 +3612,1348 @@ msgstr "" msgid "Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:67 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:59 +msgctxt "wordpress-seo" msgid "WordPress SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:69 +msgctxt "wordpress-seo" +msgid "Created" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:70 +msgctxt "wordpress-seo" +msgid "Updated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:71 +msgctxt "wordpress-seo" +msgid "Added" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:72 +msgctxt "wordpress-seo" +msgid "Deleted" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:73 +msgctxt "wordpress-seo" +msgid "Exported" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:74 +msgctxt "wordpress-seo" +msgid "Imported" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:85 +msgctxt "wordpress-seo" msgid "Dashboard" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:86 +msgctxt "wordpress-seo" msgid "Titles & Metas" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:87 +msgctxt "wordpress-seo" msgid "Social" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:88 +msgctxt "wordpress-seo" msgid "XML Sitemaps" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:98 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:89 +msgctxt "wordpress-seo" +msgid "Permalinks" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:90 +msgctxt "wordpress-seo" msgid "Internal Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:99 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:91 +msgctxt "wordpress-seo" msgid "RSS" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:100 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:92 +msgctxt "wordpress-seo" msgid "Import & Export" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:101 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +msgctxt "wordpress-seo" msgid "Bulk Title Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:102 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +msgctxt "wordpress-seo" msgid "Bulk Description Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:104 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 +msgctxt "wordpress-seo" msgid "Files" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:105 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 +msgctxt "wordpress-seo" msgid "Content" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:214 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:205 msgid "HeadSpace2" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:215 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:206 msgid "All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:207 msgid "OLD All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:217 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:208 msgid "WooThemes SEO framework" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:218 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:209 msgid "Robots Meta (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:219 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:210 msgid "RSS Footer (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:211 msgid "Yoast Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:229 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 #, php-format msgid "Imported settings from %1$s%2$s" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:231 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:222 msgid ", and deleted old data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:251 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:242 #, php-format msgid "Exported settings%s" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:252 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:243 msgid ", including taxonomy meta" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:264 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:255 #, php-format msgid "Tried importing settings from \"%s\"" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:279 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:270 msgid "Tried creating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:281 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:272 msgid "Tried updating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:283 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:274 msgid "Tried updating htaccess file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:334 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:325 #, php-format msgid "Updated \"%1$s\" of \"%2$s\" %3$s" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:373 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:364 #, php-format msgid "%s settings updated" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:380 +msgctxt "wordpress-seo" msgid "Allow tracking of this WordPress install's anonymous data." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:381 +msgctxt "wordpress-seo" msgid "Disable the Advanced part of the WordPress SEO meta box" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:382 +msgctxt "wordpress-seo" msgid "Alexa Verification ID" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:383 +msgctxt "wordpress-seo" msgid "Bing Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:384 +msgctxt "wordpress-seo" msgid "Google Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:385 +msgctxt "wordpress-seo" msgid "Pinterest" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:386 +msgctxt "wordpress-seo" msgid "Yandex Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:398 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +msgctxt "wordpress-seo" msgid "Enable Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:399 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +msgctxt "wordpress-seo" msgid "Separator between breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +msgctxt "wordpress-seo" msgid "Anchor text for the Homepage" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +msgctxt "wordpress-seo" msgid "Prefix for the breadcrumb path" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +msgctxt "wordpress-seo" msgid "Prefix for Archive breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +msgctxt "wordpress-seo" msgid "Prefix for Search Page breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +msgctxt "wordpress-seo" msgid "Breadcrumb for 404 Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:396 +msgctxt "wordpress-seo" msgid "Remove Blog page from Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:397 +msgctxt "wordpress-seo" msgid "Bold the last page in the breadcrumb" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +msgctxt "wordpress-seo" msgid "Force rewrite titles" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +msgctxt "wordpress-seo" msgid "Noindex subpages of archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:411 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +msgctxt "wordpress-seo" msgid "Use meta keywords tag?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:412 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +msgctxt "wordpress-seo" msgid "Add noodp meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +msgctxt "wordpress-seo" msgid "Add noydir meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +msgctxt "wordpress-seo" msgid "Hide RSD Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +msgctxt "wordpress-seo" msgid "Hide WLW Manifest Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:416 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:407 +msgctxt "wordpress-seo" msgid "Hide Shortlink for posts" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:417 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:408 +msgctxt "wordpress-seo" msgid "Hide RSS Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +msgctxt "wordpress-seo" msgid "Disable the author archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +msgctxt "wordpress-seo" msgid "Disable the date-based archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +msgctxt "wordpress-seo" msgid "Who should have access to the WordPress SEO settings" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +msgctxt "wordpress-seo" msgid "New blogs get the SEO settings from this blog" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +msgctxt "wordpress-seo" msgid "Blog ID" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +msgctxt "wordpress-seo" msgid "" "Strip the category base (usually /category/) from the category " "URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:428 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +msgctxt "wordpress-seo" msgid "Enforce a trailing slash on all category and tag URL's" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:429 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:420 +msgctxt "wordpress-seo" msgid "Remove stop words from slugs." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:421 +msgctxt "wordpress-seo" msgid "Redirect attachment URL's to parent post URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +msgctxt "wordpress-seo" msgid "Remove the ?replytocom variables." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +msgctxt "wordpress-seo" msgid "" "Redirect ugly URL's to clean permalinks. (Not recommended in many cases!)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +msgctxt "wordpress-seo" msgid "Force Transport" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:425 +msgctxt "wordpress-seo" msgid "Prevent cleaning out Google Site Search URL's." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:426 +msgctxt "wordpress-seo" msgid "" "Prevent cleaning out Google Analytics Campaign & Google AdWords Parameters." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +msgctxt "wordpress-seo" msgid "Other variables not to clean" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +msgctxt "wordpress-seo" msgid "Add Open Graph meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:440 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +msgctxt "wordpress-seo" msgid "Facebook Page URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:441 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +msgctxt "wordpress-seo" msgid "Image URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +msgctxt "wordpress-seo" msgid "Description" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +msgctxt "wordpress-seo" msgid "Add Twitter card meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +msgctxt "wordpress-seo" msgid "Site Twitter Username" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:437 +msgctxt "wordpress-seo" msgid "The default card type to use" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:447 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:438 +msgctxt "wordpress-seo" msgid "Add Google+ specific post meta data (excluding author metadata)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:448 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +msgctxt "wordpress-seo" msgid "Google Publisher Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:451 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +msgctxt "wordpress-seo" msgid "Check this box to enable XML sitemap functionality." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:452 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +msgctxt "wordpress-seo" msgid "Disable author/user sitemap" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:453 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +msgctxt "wordpress-seo" msgid "Ping Yahoo!" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +msgctxt "wordpress-seo" msgid "Ping Ask.com" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +msgctxt "wordpress-seo" msgid "Max entries per sitemap page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:449 +msgctxt "wordpress-seo" msgid "Content to put before each post in the feed" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:450 +msgctxt "wordpress-seo" msgid "Content to put after each post" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +msgctxt "wordpress-seo" msgid "Title template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:464 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +msgctxt "wordpress-seo" msgid "Meta description template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:465 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:456 +msgctxt "wordpress-seo" msgid "Meta keywords template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:466 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:457 +msgctxt "wordpress-seo" msgid "Meta Robots" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:467 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 +msgctxt "wordpress-seo" msgid "Authorship" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:468 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +msgctxt "wordpress-seo" msgid "Show date in snippet preview?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:469 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:460 +msgctxt "wordpress-seo" msgid "WordPress SEO Meta Box" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:470 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:461 +msgctxt "wordpress-seo" msgid "Breadcrumbs Title" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:471 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:462 +msgctxt "wordpress-seo" msgid "Post types" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:147 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +msgctxt "wordpress-seo" +msgid "Taxonomies" +msgstr "" + +#: ../extensions/notifications/class-wp-stream-notifications.php:128 msgid "Stream Notifications" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:148 +#: ../extensions/notifications/class-wp-stream-notifications.php:129 msgid "Get notified instantly when important changes are made on your site." msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:150 +#: ../extensions/notifications/class-wp-stream-notifications.php:131 msgid "Create notification rules quickly and easily" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:132 msgid "Smart and powerful trigger matching" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:152 +#: ../extensions/notifications/class-wp-stream-notifications.php:133 msgid "Fully customized e-mail and SMS alerts" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:153 +#: ../extensions/notifications/class-wp-stream-notifications.php:134 msgid "Push alerts to your smartphone or tablet" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:170 -#: ../extensions/notifications/class-wp-stream-notifications.php:171 +#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:152 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:48 #: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:32 msgid "Notifications" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:218 +#: ../extensions/notifications/class-wp-stream-notifications.php:199 msgid "Sample Rule" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:272 +#: ../extensions/notifications/class-wp-stream-notifications.php:253 #, php-format msgid "[Site Activity Alert] %s" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:273 +#: ../extensions/notifications/class-wp-stream-notifications.php:254 #, php-format msgid "The following just happened on your site: %s by %s Date of action: %s" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:49 -msgid "Type" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 +msgid "Email" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:50 -msgid "Occurrences" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 +msgid "Send to Users" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 -msgid "Publish" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 +msgid "Alert specific users via email." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 -msgid "Unpublish" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 +msgid "Send to Emails" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 -msgid "Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 +msgid "Alert any arbitrary email address not tied to a specific user." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 -msgid "Stream Notification Rules" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 +msgid "Subject" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 -msgid "New Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 +msgid "Data tags are allowed." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 -msgid "New Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 +msgid "Message" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 -msgid "Edit Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 +msgid "HTML and data tags are allowed." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 -msgid "View Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 +msgid "Push" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 -msgid "Search Rules" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 +msgid "Missing Required Plugin" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 -msgid "No notification rules found." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 +#, php-format +msgid "Please install and activate the %1$s plugin to enable push alerts." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 -msgid "No notification rules found in Trash." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 +msgid "Pushover Notifications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 -msgid "Triggers" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 +msgid "Required Plugin Not Activated" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 -msgid "Alerts" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 +#, php-format +msgid "Please activate the %1$s plugin to enable push alerts." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 -msgid "Data Tags" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 +msgid "Alert specific users via push." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:121 -#: ../extensions/notifications/views/form-templates.php:34 -msgid "+ Add Trigger" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 +#, php-format +msgid "Only those users with a %s in their profile can be selected." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:122 -#: ../extensions/notifications/views/form-templates.php:35 -msgid "+ Add Group" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 +msgid "Pushover User Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:129 -msgid "+ Add Alert" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 +msgid "Application key is missing" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 #, php-format -msgid "This rule has occurred %1$s time." +msgid "Please provide your Application key on %1$s." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:168 -msgid "Reset Count" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 +msgid "Pushover Notifications settings page" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 -msgid "Basic" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 +msgid "Application API Token/Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 -msgid "Summary message of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 +msgid "Your User Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 -msgid "User ID of the triggered record author." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 +msgid "New Users" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 -msgid "Connector of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 +msgid "New Posts are Published" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 -msgid "Context of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 +msgid "Roles to Notify" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 -msgid "Action of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 +msgid "New Comments" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 -msgid "Timestamp of triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 +msgid "Notify the Post Author (for multi-author blogs)" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 -msgid "IP of the triggered record author." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 +msgid "Notify users when password resets are requested for their accounts" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 -msgid "Object ID of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 +msgid "WordPress Core Update is Available" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 -msgid "Advanced" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 +msgid "Plugin & Theme Updates are Available" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 -msgid "" -"Specific object data of the record, relative to what the object type is:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more Post values\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.name}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.taxonomy}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.description}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more Term values" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 +msgid "Use Multiple Application Keys" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:210 -msgid "" -"Specific user data of the record author:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{author.display_name}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{author.user_email}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{author.user_login}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more User values" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 +msgid "Verify SSL from api.pushover.net" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:221 -msgid "" -"Specific meta data of the record, used to display specific meta values " -"created by Connectors.\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\tExample: {meta.old_theme} to display " -"the old theme name when a new theme is activated." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 +msgid "Enable Logging" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 -msgid "Invalid nonce" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 +msgid "SMS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 -msgid "Invalid record ID" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 +msgid "Send to Mobile Number" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 -msgid "is" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 +msgid "Enter mobile numbers without dashes (ex: 8885550000)" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 -msgid "is not" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 +msgid "Carrier" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 -msgid "contains" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 +msgid "Select your mobile service provider." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 -msgid "does not contain" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:24 +msgid "3 River Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 -msgid "starts with" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:25 +msgid "ACS Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 -msgid "ends with" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:26 +msgid "Alltel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 -msgid "regex" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:27 +msgid "AT&T, Cingular, Net10 or Tracfone" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 -msgid "equals" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:28 +msgid "Bell Canada" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 -msgid "not equal" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:29 +msgid "Bell Mobility (Canada), Presidents Choice or Solo Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 -msgid "less than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:30 +msgid "Bell Mobility" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 -msgid "equal or less than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:31 +msgid "Blue Sky Frog" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 -msgid "greater than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:32 +msgid "Bluegrass Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 -msgid "equal or greater than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:33 +msgid "Boost Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 -msgid "Object ID" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:34 +msgid "BPL Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:407 -msgid "Author Role" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:35 +msgid "Carolina West Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 -msgid "IP" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:36 +msgid "Cellular One" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 -msgid "is on" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:37 +msgid "Cellular South" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 -msgid "is not on" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:38 +msgid "CenturyTel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 -msgid "is before" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:39 +msgid "Clearnet" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 -msgid "is on or before" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:40 +msgid "Comcast" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 -msgid "is after" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:41 +msgid "Corr Wireless Communications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 -msgid "is on or after" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:42 +msgid "Cricket" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 -msgid "Day of Week" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:43 +msgid "Dobson" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:408 -msgid "Connector" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:44 +msgid "Edge Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 -msgid "- Post" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:45 +msgid "Fido" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 -msgid "- Post: Title" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:46 +msgid "Golden Telecom" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 -msgid "- Post: Slug" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:47 +msgid "Houston Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 -msgid "- Post: Content" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:48 +msgid "Idea Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 -msgid "- Post: Excerpt" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:49 +msgid "Illinois Valley Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 -msgid "- Post: Author" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:50 +msgid "Inland Cellular Telephone" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 -msgid "- Post: Status" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:51 +msgid "MCI" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 -msgid "- Post: Format" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:52 +msgid "Metrocall" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 -msgid "- Post: Parent" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:53 +msgid "Metrocall 2-way" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 -msgid "- Post: Featured Image" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:54 +msgid "Metro PCS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 -msgid "None" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:55 +msgid "Midwest Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 -msgid "Has one" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:56 +msgid "Mobilcomm" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 -msgid "- Post: Comment Status" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:57 +msgid "MTS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 -msgid "Open" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:58 +msgid "Nextel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 -msgid "- Post: Comment Count" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:59 +msgid "OnlineBeep" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 -msgid "- User" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:60 +msgid "PCS One" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 -msgid "- User: Role" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:61 +msgid "Public Service Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 -msgid "- Taxonomy" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:62 +msgid "Qwest" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 -msgid "- Term" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:63 +msgid "Rogers AT&T Wireless and Rogers Canada" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 -msgid "- Term: Parent" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:64 +msgid "Satellink" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 -msgid "You cannot save a rule without any triggers." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:65 +msgid "Sprint or Helio" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 -msgid "You cannot save a rule with an empty first trigger." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:66 +msgid "Suncom and Triton" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 -msgid "There was an error submitting your request, please try again." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:67 +msgid "Surewest Communications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 -msgid "" -"Are you sure you want to reset occurrences for this rule? This cannot be " -"undone." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:68 +msgid "T-Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 -msgid "Enter Rule Title here" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:69 +msgid "Telus" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 -msgid "" -"Users from the selected roles above will have permission to view, create and " -"edit Stream Notifications. However, only site Administrators can access " -"Stream Notifications Settings." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:70 +msgid "Unicel" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 -msgid "Email" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:71 +msgid "US Cellular" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 -msgid "Send to Users" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:72 +msgid "US West" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 -msgid "Alert specific users via email." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:73 +msgid "Verizon or Straight Talk" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 -msgid "Send to Emails" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:74 +msgid "Virgin Mobile" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 -msgid "Alert any arbitrary email address not tied to a specific user." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:75 +msgid "Virgin Mobile Canada" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 -msgid "Subject" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:76 +msgid "West Central Wireless" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 -msgid "Data tags are allowed." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:77 +msgid "Western Wireless" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 -msgid "Message" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 +msgid "Data tags are allowed. HTML is not allowed." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 -msgid "HTML and data tags are allowed." +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:49 +msgid "Type" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 -msgid "Push" +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:50 +msgid "Occurrences" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 -msgid "Missing Required Plugin" +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 +msgid "Publish" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 -#, php-format -msgid "Please install and activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 +msgid "Unpublish" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 -msgid "Pushover Notifications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 +msgid "Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 -msgid "Required Plugin Not Activated" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 +msgid "Stream Notification Rules" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 -#, php-format -msgid "Please activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 +msgctxt "Stream Notifications" +msgid "New Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 -msgid "Alert specific users via push." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +msgctxt "Stream Notifications" +msgid "Add New Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 -#, php-format -msgid "Only those users with a %s in their profile can be selected." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 +msgctxt "Stream Notifications" +msgid "New Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 -msgid "Pushover User Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 +msgctxt "Stream Notifications" +msgid "Edit Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 -msgid "Application key is missing" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 +msgctxt "Stream Notifications" +msgid "View Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 -#, php-format -msgid "Please provide your Application key on %1$s." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 +msgctxt "Stream Notifications" +msgid "Search Rules" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 -msgid "Pushover Notifications settings page" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 +msgctxt "Stream Notifications" +msgid "No notification rules found." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 -msgid "Application API Token/Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 +msgctxt "Stream Notifications" +msgid "No notification rules found in Trash." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 -msgid "Your User Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 +msgid "Triggers" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 -msgid "New Users" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 +msgid "Alerts" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 -msgid "New Posts are Published" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 +msgid "Data Tags" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 -msgid "Roles to Notify" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:121 +#: ../extensions/notifications/views/form-templates.php:34 +msgid "+ Add Trigger" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 -msgid "New Comments" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:122 +#: ../extensions/notifications/views/form-templates.php:35 +msgid "+ Add Group" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 -msgid "Notify the Post Author (for multi-author blogs)" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:129 +msgid "+ Add Alert" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 -msgid "Notify users when password resets are requested for their accounts" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 +#, php-format +msgid "This rule has occurred %1$s time." +msgid_plural "This rule has occurred %1$s times." +msgstr[0] "" +msgstr[1] "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:168 +msgid "Reset Count" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 -msgid "WordPress Core Update is Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 +msgid "Basic" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 -msgid "Plugin & Theme Updates are Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 +msgid "Summary message of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 -msgid "Use Multiple Application Keys" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 +msgid "User ID of the triggered record author." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 -msgid "Verify SSL from api.pushover.net" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 +msgid "Connector of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 -msgid "Enable Logging" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 +msgid "Context of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 -msgid "SMS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 +msgid "Action of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 -msgid "Send to Mobile Number" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 +msgid "Timestamp of triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 -msgid "Enter mobile numbers without dashes (ex: 8885550000)" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 +msgid "IP of the triggered record author." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 -msgid "Carrier" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 +msgid "Object ID of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 -msgid "Select your mobile service provider." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 +msgid "Advanced" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:24 -msgid "3 River Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 +msgid "" +"Specific object data of the record, relative to what the object type is:\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more Post values\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{object.name}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.taxonomy}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.description}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more Term values" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:210 +msgid "" +"Specific user data of the record author:\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{author.display_name}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{author.user_email}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{author.user_login}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more User values" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:25 -msgid "ACS Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:221 +msgid "" +"Specific meta data of the record, used to display specific meta values " +"created by Connectors.\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\tExample: {meta.old_theme} to display " +"the old theme name when a new theme is activated." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:26 -msgid "Alltel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 +msgid "Invalid nonce" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:27 -msgid "AT&T, Cingular, Net10 or Tracfone" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 +msgid "Invalid record ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:28 -msgid "Bell Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 +msgid "is" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:29 -msgid "Bell Mobility (Canada), Presidents Choice or Solo Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 +msgid "is not" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:30 -msgid "Bell Mobility" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 +msgid "contains" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:31 -msgid "Blue Sky Frog" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 +msgid "does not contain" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:32 -msgid "Bluegrass Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 +msgid "starts with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:33 -msgid "Boost Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 +msgid "ends with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:34 -msgid "BPL Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 +msgid "regex" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:35 -msgid "Carolina West Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 +msgid "equals" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:36 -msgid "Cellular One" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 +msgid "not equal" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:37 -msgid "Cellular South" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 +msgid "less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:38 -msgid "CenturyTel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 +msgid "equal or less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:39 -msgid "Clearnet" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 +msgid "greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:40 -msgid "Comcast" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 +msgid "equal or greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:41 -msgid "Corr Wireless Communications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 +msgid "Object ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:42 -msgid "Cricket" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:369 +msgid "Author Role" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:43 -msgid "Dobson" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 +msgid "IP" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:44 -msgid "Edge Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 +msgid "is on" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:45 -msgid "Fido" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 +msgid "is not on" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:46 -msgid "Golden Telecom" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 +msgid "is before" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:47 -msgid "Houston Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 +msgid "is on or before" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:48 -msgid "Idea Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 +msgid "is after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:49 -msgid "Illinois Valley Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 +msgid "is on or after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:50 -msgid "Inland Cellular Telephone" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 +msgid "Day of Week" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:51 -msgid "MCI" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:370 +msgid "Connector" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:52 -msgid "Metrocall" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 +msgid "- Post" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:53 -msgid "Metrocall 2-way" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 +msgid "- Post: Title" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:54 -msgid "Metro PCS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 +msgid "- Post: Slug" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:55 -msgid "Midwest Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 +msgid "- Post: Content" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:56 -msgid "Mobilcomm" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 +msgid "- Post: Excerpt" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:57 -msgid "MTS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 +msgid "- Post: Author" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:58 -msgid "Nextel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 +msgid "- Post: Status" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:59 -msgid "OnlineBeep" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 +msgid "- Post: Format" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:60 -msgid "PCS One" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 +msgid "- Post: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:61 -msgid "Public Service Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 +msgid "- Post: Featured Image" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:62 -msgid "Qwest" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 +msgid "None" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:63 -msgid "Rogers AT&T Wireless and Rogers Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 +msgid "Has one" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:64 -msgid "Satellink" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 +msgid "- Post: Comment Status" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:65 -msgid "Sprint or Helio" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 +msgid "Open" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:66 -msgid "Suncom and Triton" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgid "Closed" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:67 -msgid "Surewest Communications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 +msgid "- Post: Comment Count" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:68 -msgid "T-Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 +msgid "- User" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:69 -msgid "Telus" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 +msgid "- User: Role" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:70 -msgid "Unicel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 +msgid "- Taxonomy" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:71 -msgid "US Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 +msgid "- Term" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:72 -msgid "US West" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 +msgid "- Term: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:73 -msgid "Verizon or Straight Talk" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 +msgid "You cannot save a rule without any triggers." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:74 -msgid "Virgin Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 +msgid "You cannot save a rule with an empty first trigger." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:75 -msgid "Virgin Mobile Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 +msgid "There was an error submitting your request, please try again." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:76 -msgid "West Central Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 +msgid "" +"Are you sure you want to reset occurrences for this rule? This cannot be " +"undone." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:77 -msgid "Western Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 +msgid "Enter Rule Title here" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 -msgid "Data tags are allowed. HTML is not allowed." +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 +msgid "" +"Users from the selected roles above will have permission to view, create and " +"edit Stream Notifications. However, only site Administrators can access " +"Stream Notifications Settings." msgstr "" #: ../extensions/notifications/views/form-templates.php:7 @@ -4595,19 +4970,25 @@ msgstr "" msgid "Delete Group" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:125 +#: ../extensions/reports/class-wp-stream-reports.php:123 msgid "Cheating huh?" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:223 +#: ../extensions/reports/class-wp-stream-reports.php:143 +#: ../extensions/reports/class-wp-stream-reports.php:144 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:51 +msgid "Reports" +msgstr "" + +#: ../extensions/reports/class-wp-stream-reports.php:221 msgid "Cancel" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:224 +#: ../extensions/reports/class-wp-stream-reports.php:222 msgid "Do you really want to delete this section? This cannot be undone." msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:280 +#: ../extensions/reports/class-wp-stream-reports.php:278 #, php-format msgid "" "There's nothing here! Do you want to create some reports?" @@ -4617,158 +4998,156 @@ msgstr "" msgid "That time interval is not available." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:76 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:68 msgid "All Activity by Author" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:82 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:74 msgid "All Activity by Action" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:88 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:80 msgid "All Activity by Author Role" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:95 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:87 msgid "Comments Activity by Action" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:126 -#: ../extensions/reports/views/all.php:10 -#: ../extensions/reports/views/all.php:19 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:118 +#: ../extensions/reports/views/all.php:3 #: ../extensions/reports/views/examples.php:2 msgid "Stream Reports" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:127 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:119 msgid "" "Generate stunning visuals of logged-in user activity and share them with " "stakeholders or your clients." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:129 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:121 msgid "Fully-interactive charts" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:130 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:122 msgid "Monitor team contributions" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:131 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:123 msgid "Responsive for any screen size" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:275 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:267 msgid "All Others" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:285 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:277 #, php-format msgid "User ID: %d" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:326 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:309 msgid "All Activity" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:328 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:311 msgid "Connector Activity" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:336 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:319 msgid "Context Activity" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:344 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:327 msgid "Actions Activity" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:379 -msgid "Site Activity" +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:390 +msgid "Site" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:473 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:435 msgid "Unknown" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:472 #, php-format msgid "Report %d" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:529 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:491 #, php-format +msgctxt "1: Action 2: Dataset 3: Selector" msgid "%1$s in %2$s by %3$s" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:535 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:497 #, php-format +msgctxt "1: Action 3: Selector" msgid "All %1$s by %3$s" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:542 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:504 #, php-format +msgctxt "2: Dataset 3: Selector" msgid "All Activity in %2$s by %3$s" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:548 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 #, php-format +msgctxt "3: Selector" msgid "All Activity by %3$s" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:729 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:691 msgid "Chart height" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:735 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:697 msgid "px" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:737 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:699 msgid "Apply" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:783 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:745 msgid "All Contexts" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:797 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:759 msgid "All Actions" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:62 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:57 msgid "" "Users from the selected roles above will have permission to view and edit " "Stream Reports. However, only site Administrators can access Stream Reports " "Settings." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:243 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:238 msgid "Uh no! This wasn't suppose to happen :(" msgstr "" -#: ../extensions/reports/views/all.php:6 -msgid "1 site" -msgstr "" - -#: ../extensions/reports/views/all.php:13 -#: ../extensions/reports/views/all.php:21 +#: ../extensions/reports/views/all.php:5 msgid "New Report" msgstr "" -#: ../extensions/reports/views/all.php:38 +#: ../extensions/reports/views/all.php:20 msgid "Well, this is embarrassing. There are no reports yet!" msgstr "" -#: ../extensions/reports/views/all.php:41 +#: ../extensions/reports/views/all.php:23 msgid "Add a new one" msgstr "" -#: ../extensions/reports/views/all.php:43 +#: ../extensions/reports/views/all.php:25 msgid "or" msgstr "" -#: ../extensions/reports/views/all.php:45 +#: ../extensions/reports/views/all.php:27 msgid "Generate some for me" msgstr "" @@ -4811,3 +5190,25 @@ msgstr "" #: ../includes/feeds/atom.php:7 ../includes/feeds/rss-2.0.php:21 msgid "Stream Feed" msgstr "" + +#: ../stream.php:100 +msgid "Stream: Could not load chosen DB driver." +msgstr "" + +#: ../stream.php:151 +msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." +msgstr "" + +#: ../stream.php:192 ../stream.php:207 +msgid "Deprecated Plugins Found" +msgstr "" + +#: ../stream.php:193 +msgid "" +"The following plugins are deprecated and will be deactivated in order to " +"activate" +msgstr "" + +#: ../stream.php:202 +msgid "Continue" +msgstr "" diff --git a/languages/stream.pot b/languages/stream.pot index 49470cd52..877a1e86e 100644 --- a/languages/stream.pot +++ b/languages/stream.pot @@ -1,340 +1,292 @@ msgid "" msgstr "" "Project-Id-Version: Stream 2.0\n" -"POT-Creation-Date: 2014-09-27 01:00+1000\n" -"PO-Revision-Date: 2014-09-27 01:00+1000\n" -"Last-Translator: Luke Carbis \n" +"POT-Creation-Date: 2014-10-01 20:35+1000\n" +"PO-Revision-Date: 2014-10-01 20:36+1000\n" +"Last-Translator: Frankie Jarrett \n" "Language-Team: Stream \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.3\n" +"X-Generator: Poedit 1.6.9\n" "X-Poedit-Basepath: .\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: __;_e;_x;_n;_c;_nx;_ex;_nc;_ngettext;_gettext_noop;" -"_nx_noop;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x\n" +"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ngettext:1,2;_n:1,2;_gettext_noop;" +"_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;" +"esc_html__;esc_html_e;esc_html_x:1,2c;_c;_nc:4c,1,2\n" "X-Poedit-SearchPath-0: ..\n" -#: ../stream.php:100 -msgid "Stream: Could not load chosen DB driver." -msgstr "" - -#: ../stream.php:156 -msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." -msgstr "" - -#: ../stream.php:197 ../stream.php:212 -msgid "Deprecated Plugins Found" -msgstr "" - -#: ../stream.php:198 -msgid "" -"The following plugins are deprecated and will be deactivated in order to " -"activate" -msgstr "" - -#: ../stream.php:207 -msgid "Continue" -msgstr "" - #: ../classes/class-wp-stream-admin.php:144 -msgid "Dismiss this notice and deactivate Stream." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:152 -#: ../classes/class-wp-stream-admin.php:284 -#: ../classes/class-wp-stream-admin.php:862 +#: ../classes/class-wp-stream-admin.php:270 +#: ../classes/class-wp-stream-admin.php:837 msgid "Connect to Stream" msgstr "" -#: ../classes/class-wp-stream-admin.php:156 +#: ../classes/class-wp-stream-admin.php:148 msgid "Stream is almost ready!" msgstr "" -#: ../classes/class-wp-stream-admin.php:160 -#: ../classes/class-wp-stream-admin.php:866 +#: ../classes/class-wp-stream-admin.php:152 +#: ../classes/class-wp-stream-admin.php:841 #, php-format msgid "" -"Stream uses your WordPress.com ID to authorize your account. You can sign up " -"for free at %swordpress.com/signup%s." +"Stream only uses your WordPress.com ID during sign up to authorize your " +"account. You can sign up for free at %swordpress.com/signup%s." msgstr "" -#: ../classes/class-wp-stream-admin.php:166 +#: ../classes/class-wp-stream-admin.php:158 #, php-format msgid "" "Connect to Stream with your %sWordPress.com ID%s to see every change made to " "your site in beautifully organized detail." msgstr "" -#: ../classes/class-wp-stream-admin.php:195 +#: ../classes/class-wp-stream-admin.php:187 msgid "All site settings have been successfully reset." msgstr "" -#: ../classes/class-wp-stream-admin.php:201 +#: ../classes/class-wp-stream-admin.php:193 msgid "You have successfully connected to Stream!" msgstr "" -#: ../classes/class-wp-stream-admin.php:202 +#: ../classes/class-wp-stream-admin.php:194 msgid "" "Check back here regularly to see a history of the changes being made to this " "site." msgstr "" -#: ../classes/class-wp-stream-admin.php:254 -#: ../classes/class-wp-stream-admin.php:255 -#: ../classes/class-wp-stream-admin.php:285 -#: ../classes/class-wp-stream-network.php:115 +#: ../classes/class-wp-stream-admin.php:242 +#: ../classes/class-wp-stream-admin.php:243 +#: ../classes/class-wp-stream-admin.php:271 #: ../connectors/class-wp-stream-connector-settings.php:129 msgid "Stream" msgstr "" -#: ../classes/class-wp-stream-admin.php:265 +#: ../classes/class-wp-stream-admin.php:253 msgid "Stream Settings" msgstr "" -#: ../classes/class-wp-stream-admin.php:266 -#: ../classes/class-wp-stream-admin.php:565 -#: ../connectors/class-wp-stream-connector-bbpress.php:114 -#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +#: ../classes/class-wp-stream-admin.php:254 +#: ../classes/class-wp-stream-admin.php:540 #: ../connectors/class-wp-stream-connector-settings.php:100 #: ../connectors/class-wp-stream-connector-settings.php:121 #: ../connectors/class-wp-stream-connector-woocommerce.php:693 msgid "Settings" msgstr "" -#: ../classes/class-wp-stream-admin.php:275 +#: ../classes/class-wp-stream-admin.php:262 msgid "Stream Account" msgstr "" -#: ../classes/class-wp-stream-admin.php:276 +#: ../classes/class-wp-stream-admin.php:263 msgid "Account" msgstr "" -#: ../classes/class-wp-stream-admin.php:354 +#: ../classes/class-wp-stream-admin.php:340 msgid "" "Are you sure you want to reset all site settings to default? This cannot be " "undone." msgstr "" -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 #, php-format msgid "This will take about %d minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:376 -#: ../classes/class-wp-stream-admin.php:377 +#: ../classes/class-wp-stream-admin.php:362 +#: ../classes/class-wp-stream-admin.php:363 msgid "This could take a few minutes." msgstr "" -#: ../classes/class-wp-stream-admin.php:385 +#: ../classes/class-wp-stream-admin.php:371 msgid "Migrating Stream Records" msgstr "" -#: ../classes/class-wp-stream-admin.php:386 +#: ../classes/class-wp-stream-admin.php:372 msgid "Deleting Stream Records" msgstr "" -#: ../classes/class-wp-stream-admin.php:387 +#: ../classes/class-wp-stream-admin.php:373 msgid "" "An unknown error occurred during migration. Please try again later or " "contact support." msgstr "" -#: ../classes/class-wp-stream-admin.php:388 -#: ../classes/class-wp-stream-admin.php:389 +#: ../classes/class-wp-stream-admin.php:374 +#: ../classes/class-wp-stream-admin.php:375 msgid "Please do not exit this page until the process has completed." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 #, php-format msgid "Please note: This process will take about %d minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:390 +#: ../classes/class-wp-stream-admin.php:376 msgid "Please note: This process could take a few minutes to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:391 +#: ../classes/class-wp-stream-admin.php:377 msgid "" "Please note: Your existing records will not appear in Stream until you have " "migrated them to your account." msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, php-format msgid "" "Are you sure you want to delete all %s existing Stream records without " "migrating? This will take %s minutes and cannot be undone." msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 #, php-format msgid "about %d" msgstr "" -#: ../classes/class-wp-stream-admin.php:392 +#: ../classes/class-wp-stream-admin.php:378 msgid "a few" msgstr "" -#: ../classes/class-wp-stream-admin.php:421 +#: ../classes/class-wp-stream-admin.php:407 #, php-format msgid "" "Are you sure you want to perform bulk actions on over %d items? This process " "could take a while to complete." msgstr "" -#: ../classes/class-wp-stream-admin.php:422 +#: ../classes/class-wp-stream-admin.php:408 msgid "" "The Stream plugin must be deactivated before you can bulk import content " "into WordPress." msgstr "" -#: ../classes/class-wp-stream-admin.php:751 +#: ../classes/class-wp-stream-admin.php:726 msgid "Error retrieving account details." msgstr "" -#: ../classes/class-wp-stream-admin.php:753 +#: ../classes/class-wp-stream-admin.php:728 msgid "" "If this problem persists, please disconnect from Stream and try connecting " "again." msgstr "" -#: ../classes/class-wp-stream-admin.php:760 +#: ../classes/class-wp-stream-admin.php:735 msgid "Free" msgstr "" -#: ../classes/class-wp-stream-admin.php:764 +#: ../classes/class-wp-stream-admin.php:739 msgid "Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:766 +#: ../classes/class-wp-stream-admin.php:741 msgid "Standard" msgstr "" -#: ../classes/class-wp-stream-admin.php:772 +#: ../classes/class-wp-stream-admin.php:747 #, php-format +msgctxt "1: Price, 2: Renewal date" msgid "$%1$s on %2$s" msgstr "" -#: ../classes/class-wp-stream-admin.php:774 +#: ../classes/class-wp-stream-admin.php:749 #: ../classes/class-wp-stream-author.php:64 #: ../classes/class-wp-stream-author.php:72 #: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:127 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:287 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:471 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:279 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:433 msgid "N/A" msgstr "" -#: ../classes/class-wp-stream-admin.php:781 +#: ../classes/class-wp-stream-admin.php:756 msgid "Unlimited" msgstr "" -#: ../classes/class-wp-stream-admin.php:784 +#: ../classes/class-wp-stream-admin.php:759 +#, php-format msgid "1 Day" -msgstr "" +msgid_plural "%s Days" +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-admin.php:794 +#: ../classes/class-wp-stream-admin.php:769 msgid "Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:798 +#: ../classes/class-wp-stream-admin.php:773 msgid "Activity History" msgstr "" -#: ../classes/class-wp-stream-admin.php:803 +#: ../classes/class-wp-stream-admin.php:778 msgid "Next Billing" msgstr "" -#: ../classes/class-wp-stream-admin.php:808 +#: ../classes/class-wp-stream-admin.php:783 #: ../connectors/class-wp-stream-connector-acf.php:81 -#: ../connectors/class-wp-stream-connector-bbpress.php:88 -#: ../connectors/class-wp-stream-connector-blogs.php:50 -#: ../connectors/class-wp-stream-connector-buddypress.php:123 #: ../connectors/class-wp-stream-connector-comments.php:46 -#: ../connectors/class-wp-stream-connector-edd.php:108 -#: ../connectors/class-wp-stream-connector-gravityforms.php:98 #: ../connectors/class-wp-stream-connector-menus.php:39 #: ../connectors/class-wp-stream-connector-posts.php:39 #: ../connectors/class-wp-stream-connector-taxonomies.php:54 #: ../connectors/class-wp-stream-connector-users.php:54 #: ../connectors/class-wp-stream-connector-widgets.php:58 -#: ../connectors/class-wp-stream-connector-woocommerce.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:77 msgid "Created" msgstr "" -#: ../classes/class-wp-stream-admin.php:812 +#: ../classes/class-wp-stream-admin.php:787 msgid "Site ID" msgstr "" -#: ../classes/class-wp-stream-admin.php:818 +#: ../classes/class-wp-stream-admin.php:793 msgid "API Key" msgstr "" -#: ../classes/class-wp-stream-admin.php:828 +#: ../classes/class-wp-stream-admin.php:803 #: ../classes/class-wp-stream-list-table.php:49 -#: ../extensions/notifications/class-wp-stream-notifications.php:155 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:133 +#: ../extensions/notifications/class-wp-stream-notifications.php:136 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:125 msgid "Upgrade to Pro" msgstr "" -#: ../classes/class-wp-stream-admin.php:830 +#: ../classes/class-wp-stream-admin.php:805 msgid "Modify This Plan" msgstr "" -#: ../classes/class-wp-stream-admin.php:872 +#: ../classes/class-wp-stream-admin.php:847 #, php-format msgid "with your %sWordPress.com ID%s" msgstr "" -#: ../classes/class-wp-stream-admin.php:890 +#: ../classes/class-wp-stream-admin.php:865 +msgctxt "Haiku line 1" msgid "A transformation" msgstr "" -#: ../classes/class-wp-stream-admin.php:891 +#: ../classes/class-wp-stream-admin.php:866 +msgctxt "Haiku line 2" msgid "Like brook, to river, to sea" msgstr "" -#: ../classes/class-wp-stream-admin.php:901 +#: ../classes/class-wp-stream-admin.php:876 +msgctxt "Haiku line 3" msgid "I have a secret" msgstr "" -#: ../classes/class-wp-stream-admin.php:917 -#: ../classes/class-wp-stream-admin.php:931 -#: ../classes/class-wp-stream-admin.php:933 +#: ../classes/class-wp-stream-admin.php:892 +#: ../classes/class-wp-stream-admin.php:898 msgid "Stream Records" msgstr "" -#: ../classes/class-wp-stream-admin.php:928 -msgid " (1 site)" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:942 -msgid "Get started with Stream for Multisite!" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:943 -msgid "" -"Welcome to your Network Stream! Each site on your network must be connected " -"individually by an admin on that site for it to show here." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:954 -msgid "Stream for Multisite is coming soon!" -msgstr "" - -#: ../classes/class-wp-stream-admin.php:955 -msgid "Access to all the Stream feeds in your network is currently disabled." -msgstr "" - -#: ../classes/class-wp-stream-admin.php:1104 +#: ../classes/class-wp-stream-admin.php:1038 +#, php-format msgid "One more result..." -msgstr "" +msgid_plural "%d more results..." +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-api.php:360 +#: ../classes/class-wp-stream-api.php:356 msgid "Stream API Error." msgstr "" @@ -346,15 +298,11 @@ msgstr "" msgid "during WP Cron" msgstr "" -#: ../classes/class-wp-stream-connectors.php:102 +#: ../classes/class-wp-stream-connectors.php:98 #, php-format msgid "%s class wasn't loaded because it doesn't extends the %s class." msgstr "" -#: ../classes/class-wp-stream-dashboard-widget.php:25 -msgid "Network Stream Activity" -msgstr "" - #: ../classes/class-wp-stream-dashboard-widget.php:25 msgid "Stream Activity" msgstr "" @@ -382,6 +330,7 @@ msgstr "" #: ../classes/class-wp-stream-dashboard-widget.php:134 #, php-format +msgctxt "paging" msgid "%1$s of %2$s" msgstr "" @@ -404,6 +353,7 @@ msgstr "" #: ../classes/class-wp-stream-dashboard-widget.php:209 #, php-format +msgctxt "1: Time, 2: User profile URL, 3: User display name" msgid "%1$s ago by %3$s" msgstr "" @@ -445,38 +395,38 @@ msgstr "" msgid "Last Year" msgstr "" -#: ../classes/class-wp-stream-feeds.php:126 +#: ../classes/class-wp-stream-feeds.php:109 msgid "Stream Feeds Key" msgstr "" -#: ../classes/class-wp-stream-feeds.php:131 +#: ../classes/class-wp-stream-feeds.php:114 msgid "Generate new key" msgstr "" -#: ../classes/class-wp-stream-feeds.php:134 +#: ../classes/class-wp-stream-feeds.php:117 msgid "" "This is your private key used for accessing feeds of Stream Records " "securely. You can change your key at any time by generating a new one using " "the link above." msgstr "" -#: ../classes/class-wp-stream-feeds.php:136 +#: ../classes/class-wp-stream-feeds.php:119 msgid "RSS Feed" msgstr "" -#: ../classes/class-wp-stream-feeds.php:138 +#: ../classes/class-wp-stream-feeds.php:121 msgid "ATOM Feed" msgstr "" -#: ../classes/class-wp-stream-feeds.php:140 +#: ../classes/class-wp-stream-feeds.php:123 msgid "JSON Feed" msgstr "" -#: ../classes/class-wp-stream-feeds.php:188 +#: ../classes/class-wp-stream-feeds.php:171 msgid "Access Denied" msgstr "" -#: ../classes/class-wp-stream-feeds.php:189 +#: ../classes/class-wp-stream-feeds.php:172 msgid "" "You don't have permission to view this feed, please contact your site " "Administrator." @@ -491,8 +441,13 @@ msgid "Filter not supported." msgstr "" #: ../classes/class-wp-stream-list-table.php:48 +#, php-format msgid "Your free account is limited to viewing 24 hours of activity history." -msgstr "" +msgid_plural "" +"Your free account is limited to viewing %d days of activity " +"history." +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-list-table.php:68 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:507 @@ -505,29 +460,28 @@ msgid "Summary" msgstr "" #: ../classes/class-wp-stream-list-table.php:70 -#: ../connectors/class-wp-stream-connector-acf.php:309 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:492 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:406 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:368 msgid "Author" msgstr "" #: ../classes/class-wp-stream-list-table.php:71 -#: ../classes/class-wp-stream-settings.php:629 +#: ../classes/class-wp-stream-settings.php:603 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:553 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:409 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:371 msgid "Context" msgstr "" #: ../classes/class-wp-stream-list-table.php:72 -#: ../classes/class-wp-stream-settings.php:630 +#: ../classes/class-wp-stream-settings.php:604 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:560 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:405 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:367 msgid "Action" msgstr "" #: ../classes/class-wp-stream-list-table.php:73 -#: ../classes/class-wp-stream-settings.php:631 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:410 +#: ../classes/class-wp-stream-settings.php:605 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:372 msgid "IP Address" msgstr "" @@ -595,8 +549,7 @@ msgid "Live updates" msgstr "" #: ../classes/class-wp-stream-list-table.php:836 -#: ../classes/class-wp-stream-network.php:303 -#: ../classes/class-wp-stream-settings.php:255 +#: ../classes/class-wp-stream-settings.php:237 msgid "Enabled" msgstr "" @@ -609,8 +562,11 @@ msgid "" msgstr "" #: ../classes/class-wp-stream-live-update.php:176 +#, php-format msgid "1 item" -msgstr "" +msgid_plural "%s items" +msgstr[0] "" +msgstr[1] "" #: ../classes/class-wp-stream-migrate.php:121 msgid "Migrate Stream Records" @@ -660,68 +616,6 @@ msgstr "" msgid "All existing records have been deleted from the database." msgstr "" -#: ../classes/class-wp-stream-network.php:129 -msgid "Network Admin" -msgstr "" - -#: ../classes/class-wp-stream-network.php:169 -msgid "Stream Network Settings" -msgstr "" - -#: ../classes/class-wp-stream-network.php:170 -msgid "Network Settings" -msgstr "" - -#: ../classes/class-wp-stream-network.php:179 -msgid "New Site Settings" -msgstr "" - -#: ../classes/class-wp-stream-network.php:180 -msgid "Site Defaults" -msgstr "" - -#: ../classes/class-wp-stream-network.php:234 -msgid "These settings apply to all sites on the network." -msgstr "" - -#: ../classes/class-wp-stream-network.php:237 -msgid "" -"These default settings will apply to new sites created on the network. These " -"settings do not alter existing sites." -msgstr "" - -#: ../classes/class-wp-stream-network.php:302 -msgid "Enable Site Access" -msgstr "" - -#: ../classes/class-wp-stream-network.php:305 -msgid "" -"When site access is disabled Stream can only be accessed from the network " -"administration." -msgstr "" - -#: ../classes/class-wp-stream-network.php:321 -msgid "Reset Site Settings" -msgstr "" - -#: ../classes/class-wp-stream-network.php:324 -msgid "Warning: Clicking this will override all site settings with defaults." -msgstr "" - -#: ../classes/class-wp-stream-network.php:408 -msgid "Settings saved." -msgstr "" - -#: ../classes/class-wp-stream-network.php:463 -msgid "sites" -msgstr "" - -#: ../classes/class-wp-stream-network.php:480 -#: ../classes/class-wp-stream-network.php:530 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:428 -msgid "Site" -msgstr "" - #: ../classes/class-wp-stream-pointers.php:144 msgid "Stream Extensions" msgstr "" @@ -734,11 +628,11 @@ msgstr "" msgid "Could not validate record data." msgstr "" -#: ../classes/class-wp-stream-settings.php:85 +#: ../classes/class-wp-stream-settings.php:75 msgid "There was an error in the request" msgstr "" -#: ../classes/class-wp-stream-settings.php:129 +#: ../classes/class-wp-stream-settings.php:119 #, php-format msgid "" "ID: %d\n" @@ -747,34 +641,34 @@ msgid "" "Role: %s" msgstr "" -#: ../classes/class-wp-stream-settings.php:148 +#: ../classes/class-wp-stream-settings.php:138 msgid "" "Actions performed by the system when a user is not logged in (e.g. auto site " "upgrader, or invoking WP-CLI without --user)" msgstr "" -#: ../classes/class-wp-stream-settings.php:226 +#: ../classes/class-wp-stream-settings.php:208 #: ../connectors/class-wp-stream-connector-settings.php:122 msgid "General" msgstr "" -#: ../classes/class-wp-stream-settings.php:230 +#: ../classes/class-wp-stream-settings.php:212 #: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:36 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:60 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:55 msgid "Role Access" msgstr "" -#: ../classes/class-wp-stream-settings.php:232 +#: ../classes/class-wp-stream-settings.php:214 msgid "" "Users from the selected roles above will have permission to view Stream " "Records. However, only site Administrators can access Stream Settings." msgstr "" -#: ../classes/class-wp-stream-settings.php:238 +#: ../classes/class-wp-stream-settings.php:220 msgid "Private Feeds" msgstr "" -#: ../classes/class-wp-stream-settings.php:241 +#: ../classes/class-wp-stream-settings.php:223 #, php-format msgid "" "Users from the selected roles above will be given a private key found in " @@ -782,86 +676,83 @@ msgid "" "%sflush rewrite rules%s on your site after changing this setting." msgstr "" -#: ../classes/class-wp-stream-settings.php:245 +#: ../classes/class-wp-stream-settings.php:227 msgid "View Profile" msgstr "" -#: ../classes/class-wp-stream-settings.php:251 +#: ../classes/class-wp-stream-settings.php:233 msgid "View Codex" msgstr "" -#: ../classes/class-wp-stream-settings.php:261 +#: ../classes/class-wp-stream-settings.php:243 msgid "Exclude" msgstr "" -#: ../classes/class-wp-stream-settings.php:265 +#: ../classes/class-wp-stream-settings.php:247 msgid "Exclude Rules" msgstr "" -#: ../classes/class-wp-stream-settings.php:267 +#: ../classes/class-wp-stream-settings.php:249 msgid "" "Create rules for excluding certain kinds of records from appearing in Stream." msgstr "" -#: ../classes/class-wp-stream-settings.php:595 +#: ../classes/class-wp-stream-settings.php:569 #, php-format msgid "Any %s" msgstr "" -#: ../classes/class-wp-stream-settings.php:610 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +#: ../classes/class-wp-stream-settings.php:584 msgid "Add New Rule" msgstr "" -#: ../classes/class-wp-stream-settings.php:611 +#: ../classes/class-wp-stream-settings.php:585 msgid "Delete Selected Rules" msgstr "" -#: ../classes/class-wp-stream-settings.php:628 +#: ../classes/class-wp-stream-settings.php:602 msgid "Author or Role" msgstr "" -#: ../classes/class-wp-stream-settings.php:632 +#: ../classes/class-wp-stream-settings.php:606 msgid "Filters" msgstr "" -#: ../classes/class-wp-stream-settings.php:656 +#: ../classes/class-wp-stream-settings.php:630 +#, php-format msgid "1 user" -msgstr "" +msgid_plural "%s users" +msgstr[0] "" +msgstr[1] "" -#: ../classes/class-wp-stream-settings.php:679 +#: ../classes/class-wp-stream-settings.php:653 msgid "Any Author or Role" msgstr "" -#: ../classes/class-wp-stream-settings.php:720 +#: ../classes/class-wp-stream-settings.php:694 msgid "Any Context" msgstr "" -#: ../classes/class-wp-stream-settings.php:739 +#: ../classes/class-wp-stream-settings.php:713 msgid "Any Action" msgstr "" -#: ../classes/class-wp-stream-settings.php:750 +#: ../classes/class-wp-stream-settings.php:724 msgid "Any IP Address" msgstr "" -#: ../classes/class-wp-stream-settings.php:787 +#: ../classes/class-wp-stream-settings.php:761 msgid "No rules found." msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:71 +msgctxt "acf" msgid "ACF" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:82 -#: ../connectors/class-wp-stream-connector-bbpress.php:89 -#: ../connectors/class-wp-stream-connector-blogs.php:49 -#: ../connectors/class-wp-stream-connector-buddypress.php:124 -#: ../connectors/class-wp-stream-connector-edd.php:109 #: ../connectors/class-wp-stream-connector-editor.php:54 -#: ../connectors/class-wp-stream-connector-gravityforms.php:99 #: ../connectors/class-wp-stream-connector-installer.php:48 -#: ../connectors/class-wp-stream-connector-jetpack.php:85 #: ../connectors/class-wp-stream-connector-media.php:43 #: ../connectors/class-wp-stream-connector-menus.php:40 #: ../connectors/class-wp-stream-connector-posts.php:38 @@ -869,27 +760,16 @@ msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:55 #: ../connectors/class-wp-stream-connector-users.php:53 #: ../connectors/class-wp-stream-connector-widgets.php:62 -#: ../connectors/class-wp-stream-connector-woocommerce.php:99 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:78 msgid "Updated" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:83 -#: ../connectors/class-wp-stream-connector-edd.php:110 -#: ../connectors/class-wp-stream-connector-gravityforms.php:102 -#: ../connectors/class-wp-stream-connector-jetpack.php:86 #: ../connectors/class-wp-stream-connector-widgets.php:55 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:79 msgid "Added" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:84 -#: ../connectors/class-wp-stream-connector-bbpress.php:92 -#: ../connectors/class-wp-stream-connector-blogs.php:52 -#: ../connectors/class-wp-stream-connector-buddypress.php:127 #: ../connectors/class-wp-stream-connector-comments.php:55 -#: ../connectors/class-wp-stream-connector-edd.php:111 -#: ../connectors/class-wp-stream-connector-gravityforms.php:103 #: ../connectors/class-wp-stream-connector-installer.php:47 #: ../connectors/class-wp-stream-connector-media.php:44 #: ../connectors/class-wp-stream-connector-menus.php:41 @@ -897,135 +777,160 @@ msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:56 #: ../connectors/class-wp-stream-connector-users.php:55 #: ../connectors/class-wp-stream-connector-widgets.php:59 -#: ../connectors/class-wp-stream-connector-woocommerce.php:102 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:80 msgid "Deleted" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:95 +msgctxt "acf" msgid "Field Groups" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:96 +msgctxt "acf" msgid "Fields" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:97 +msgctxt "acf" msgid "Rules" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:98 -#: ../connectors/class-wp-stream-connector-jetpack.php:101 +msgctxt "acf" msgid "Options" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:99 +msgctxt "acf" msgid "Values" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:224 #, php-format +msgctxt "acf" msgid "\"%1$s\" field in \"%2$s\" %3$s" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:252 +msgctxt "acf" msgid "High (after title)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:253 +msgctxt "acf" msgid "Normal (after content)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:254 +msgctxt "acf" msgid "Side" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:258 #, php-format +msgctxt "acf" msgid "Position of \"%1$s\" updated to \"%2$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:277 +msgctxt "acf" msgid "Seamless (no metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:278 +msgctxt "acf" msgid "Standard (WP metabox)" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:282 #, php-format +msgctxt "acf" msgid "Style of \"%1$s\" updated to \"%2$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:301 +msgctxt "acf" msgid "Permalink" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:302 +msgctxt "acf" msgid "Content Editor" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:303 +msgctxt "acf" msgid "Excerpt" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:304 +msgctxt "acf" msgid "Custom Fields" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:305 -#: ../connectors/class-wp-stream-connector-settings.php:125 +msgctxt "acf" msgid "Discussion" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:306 -#: ../connectors/class-wp-stream-connector-comments.php:36 -#: ../connectors/class-wp-stream-connector-comments.php:68 -#: ../connectors/class-wp-stream-connector-jetpack.php:109 +msgctxt "acf" msgid "Comments" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:307 +msgctxt "acf" msgid "Revisions" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:308 +msgctxt "acf" msgid "Slug" msgstr "" +#: ../connectors/class-wp-stream-connector-acf.php:309 +msgctxt "acf" +msgid "Author" +msgstr "" + #: ../connectors/class-wp-stream-connector-acf.php:310 +msgctxt "acf" msgid "Format" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:311 +msgctxt "acf" msgid "Featured Image" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:312 -#: ../connectors/class-wp-stream-connector-edd.php:129 +msgctxt "acf" msgid "Categories" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:313 -#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "acf" msgid "Tags" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:314 +msgctxt "acf" msgid "Send Trackbacks" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:318 +msgctxt "acf" msgid "All screens" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:320 +msgctxt "acf" msgid "No screens" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:326 #, php-format +msgctxt "acf" msgid "\"%1$s\" set to display on \"%2$s\"" msgstr "" @@ -1035,11 +940,13 @@ msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:396 #, php-format +msgctxt "acf" msgid "\"%1$s\" of \"%2$s\" %3$s updated" msgstr "" #: ../connectors/class-wp-stream-connector-acf.php:434 #, php-format +msgctxt "acf" msgid "Updated rules of \"%1$s\" (%2$d added, %3$d deleted)" msgstr "" @@ -1047,96 +954,102 @@ msgstr "" msgid "field group" msgstr "" -#: ../connectors/class-wp-stream-connector-acf.php:494 +#: ../connectors/class-wp-stream-connector-acf.php:495 #, php-format +msgctxt "acf" msgid "Updated Order of \"%1$s\" from %2$d to %3$d" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:78 +msgctxt "bbpress" msgid "bbPress" msgstr "" +#: ../connectors/class-wp-stream-connector-bbpress.php:88 +msgctxt "bbpress" +msgid "Created" +msgstr "" + +#: ../connectors/class-wp-stream-connector-bbpress.php:89 +msgctxt "bbpress" +msgid "Updated" +msgstr "" + #: ../connectors/class-wp-stream-connector-bbpress.php:90 -#: ../connectors/class-wp-stream-connector-buddypress.php:125 -#: ../connectors/class-wp-stream-connector-gravityforms.php:422 -#: ../connectors/class-wp-stream-connector-installer.php:45 -#: ../connectors/class-wp-stream-connector-jetpack.php:79 +msgctxt "bbpress" msgid "Activated" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:91 -#: ../connectors/class-wp-stream-connector-buddypress.php:126 -#: ../connectors/class-wp-stream-connector-gravityforms.php:423 -#: ../connectors/class-wp-stream-connector-installer.php:46 -#: ../connectors/class-wp-stream-connector-widgets.php:60 +msgctxt "bbpress" msgid "Deactivated" msgstr "" +#: ../connectors/class-wp-stream-connector-bbpress.php:92 +msgctxt "bbpress" +msgid "Deleted" +msgstr "" + #: ../connectors/class-wp-stream-connector-bbpress.php:93 -#: ../connectors/class-wp-stream-connector-comments.php:51 -#: ../connectors/class-wp-stream-connector-edd.php:112 -#: ../connectors/class-wp-stream-connector-gravityforms.php:104 -#: ../connectors/class-wp-stream-connector-gravityforms.php:424 -#: ../connectors/class-wp-stream-connector-posts.php:40 -#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +msgctxt "bbpress" msgid "Trashed" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:94 -#: ../connectors/class-wp-stream-connector-comments.php:52 -#: ../connectors/class-wp-stream-connector-edd.php:113 -#: ../connectors/class-wp-stream-connector-gravityforms.php:105 -#: ../connectors/class-wp-stream-connector-gravityforms.php:425 -#: ../connectors/class-wp-stream-connector-posts.php:41 +msgctxt "bbpress" msgid "Restored" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:95 -#: ../connectors/class-wp-stream-connector-edd.php:114 +msgctxt "bbpress" msgid "Generated" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:96 -#: ../connectors/class-wp-stream-connector-edd.php:115 -#: ../connectors/class-wp-stream-connector-gravityforms.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:82 +msgctxt "bbpress" msgid "Imported" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:97 -#: ../connectors/class-wp-stream-connector-edd.php:116 -#: ../connectors/class-wp-stream-connector-gravityforms.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:81 +msgctxt "bbpress" msgid "Exported" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:98 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgctxt "bbpress" msgid "Closed" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:99 +msgctxt "bbpress" msgid "Opened" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:100 +msgctxt "bbpress" msgid "Sticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:101 +msgctxt "bbpress" msgid "Unsticked" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:102 -#: ../connectors/class-wp-stream-connector-buddypress.php:128 +msgctxt "bbpress" msgid "Marked as spam" msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:103 -#: ../connectors/class-wp-stream-connector-buddypress.php:129 +msgctxt "bbpress" msgid "Unmarked as spam" msgstr "" +#: ../connectors/class-wp-stream-connector-bbpress.php:114 +msgctxt "bbpress" +msgid "Settings" +msgstr "" + #: ../connectors/class-wp-stream-connector-bbpress.php:131 #: ../connectors/class-wp-stream-connector-buddypress.php:164 #: ../connectors/class-wp-stream-connector-buddypress.php:223 @@ -1144,8 +1057,8 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:254 #: ../connectors/class-wp-stream-connector-comments.php:124 #: ../connectors/class-wp-stream-connector-gravityforms.php:137 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:126 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:133 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:117 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:124 msgid "Edit" msgstr "" @@ -1165,119 +1078,77 @@ msgstr "" #: ../connectors/class-wp-stream-connector-bbpress.php:209 #, php-format +msgctxt "1: Action, 2: Topic title" msgid "%1$s \"%2$s\" topic" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:39 -msgid "Sites" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:51 -msgid "Archived" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:85 -#: ../connectors/class-wp-stream-connector-blogs.php:90 -msgid "Site Admin" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:101 -msgid "Site Settings" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:116 -#, php-format -msgid "A new site called \"%1$s\" has been created." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:139 -#, php-format -msgid "A new site called \"%1$s\" has been registered." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:170 -#, php-format -msgid "%1$s has been added to the site \"%2$s\" with %3$s capabilities." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:201 -#, php-format -msgid "%1$s has been removed from the site \"%2$s\"." -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:220 -#: ../connectors/class-wp-stream-connector-gravityforms.php:650 -msgid "marked as spam" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:228 -msgid "marked as not spam" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:236 -msgid "marked as mature" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:244 -msgid "marked as not mature" -msgstr "" - -#: ../connectors/class-wp-stream-connector-blogs.php:252 -msgid "archived" +#: ../connectors/class-wp-stream-connector-buddypress.php:113 +msgctxt "buddypress" +msgid "BuddyPress" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:260 -msgid "restored from archive" +#: ../connectors/class-wp-stream-connector-buddypress.php:123 +msgctxt "buddypress" +msgid "Created" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:268 -#: ../connectors/class-wp-stream-connector-gravityforms.php:497 -msgid "deleted" +#: ../connectors/class-wp-stream-connector-buddypress.php:124 +msgctxt "buddypress" +msgid "Updated" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:276 -#: ../connectors/class-wp-stream-connector-gravityforms.php:652 -msgid "restored" +#: ../connectors/class-wp-stream-connector-buddypress.php:125 +msgctxt "buddypress" +msgid "Activated" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:286 -msgid "marked as public" +#: ../connectors/class-wp-stream-connector-buddypress.php:126 +msgctxt "buddypress" +msgid "Deactivated" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:288 -msgid "marked as private" +#: ../connectors/class-wp-stream-connector-buddypress.php:127 +msgctxt "buddypress" +msgid "Deleted" msgstr "" -#: ../connectors/class-wp-stream-connector-blogs.php:302 -#, php-format -msgid "\"%1$s\" has been %2$s." +#: ../connectors/class-wp-stream-connector-buddypress.php:128 +msgctxt "buddypress" +msgid "Marked as spam" msgstr "" -#: ../connectors/class-wp-stream-connector-buddypress.php:113 -msgid "BuddyPress" +#: ../connectors/class-wp-stream-connector-buddypress.php:129 +msgctxt "buddypress" +msgid "Unmarked as spam" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:130 +msgctxt "buddypress" msgid "Promoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:131 +msgctxt "buddypress" msgid "Demoted" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:142 +msgctxt "buddypress" msgid "Components" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:143 +msgctxt "buddypress" msgid "Groups" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:144 +msgctxt "buddypress" msgid "Activity" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:145 +msgctxt "buddypress" msgid "Profile fields" msgstr "" @@ -1297,7 +1168,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:106 #: ../connectors/class-wp-stream-connector-taxonomies.php:94 #: ../connectors/class-wp-stream-connector-woocommerce.php:220 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:174 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:165 msgid "View" msgstr "" @@ -1326,44 +1197,53 @@ msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:263 #: ../extensions/notifications/views/form-templates.php:19 #: ../extensions/notifications/views/form-templates.php:78 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:181 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:173 msgid "Delete" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:284 #: ../connectors/class-wp-stream-connector-buddypress.php:288 +msgctxt "buddypress" msgid "Toolbar" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:292 +msgctxt "buddypress" msgid "Account Deletion" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:296 +msgctxt "buddypress" msgid "Profile Syncing" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:300 +msgctxt "buddypress" msgid "Group Creation" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:304 +msgctxt "buddypress" msgid "bbPress Configuration" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:308 +msgctxt "buddypress" msgid "Blog & Forum Comments" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:312 +msgctxt "buddypress" msgid "Activity auto-refresh" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:316 +msgctxt "buddypress" msgid "Akismet" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:320 +msgctxt "buddypress" msgid "Avatar Uploads" msgstr "" @@ -1402,12 +1282,12 @@ msgid "\"%1$s\" component %2$s" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:432 +msgctxt "buddypress" msgid "Register" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:433 -#: ../connectors/class-wp-stream-connector-jetpack.php:159 -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 +msgctxt "buddypress" msgid "Activate" msgstr "" @@ -1486,10 +1366,12 @@ msgid "Removed \"%2$s\" from \"%1$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:665 +msgctxt "buddypress" msgid "Administrator" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:666 +msgctxt "buddypress" msgid "Moderator" msgstr "" @@ -1504,6 +1386,7 @@ msgid "Demoted \"%s\" to \"%s\" in \"%s\"" msgstr "" #: ../connectors/class-wp-stream-connector-buddypress.php:682 +msgctxt "buddypress" msgid "Member" msgstr "" @@ -1537,6 +1420,11 @@ msgstr "" msgid "Deleted profile field group \"%s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:36 +#: ../connectors/class-wp-stream-connector-comments.php:68 +msgid "Comments" +msgstr "" + #: ../connectors/class-wp-stream-connector-comments.php:47 msgid "Edited" msgstr "" @@ -1553,6 +1441,18 @@ msgstr "" msgid "Unapproved" msgstr "" +#: ../connectors/class-wp-stream-connector-comments.php:51 +#: ../connectors/class-wp-stream-connector-gravityforms.php:424 +#: ../connectors/class-wp-stream-connector-posts.php:40 +msgid "Trashed" +msgstr "" + +#: ../connectors/class-wp-stream-connector-comments.php:52 +#: ../connectors/class-wp-stream-connector-gravityforms.php:425 +#: ../connectors/class-wp-stream-connector-posts.php:41 +msgid "Restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-comments.php:53 msgid "Marked as Spam" msgstr "" @@ -1628,87 +1528,154 @@ msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:248 #, php-format +msgctxt "" +"1: Parent comment's author, 2: Comment author, 3: Post title, 4: Comment " +"status, 5: Comment type" msgid "Reply to %1$s's %5$s by %2$s on %3$s %4$s" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:261 #, php-format +msgctxt "1: Comment author, 2: Post title 3: Comment status, 4: Comment type" msgid "New %4$s by %1$s on %2$s %3$s" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:295 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s edited" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:327 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s deleted permanently" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:359 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s trashed" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:391 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s restored" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:423 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s marked as spam" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:455 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s on %2$s unmarked as spam" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:489 #, php-format +msgctxt "" +"Comment status transition. 1: Comment author, 2: Post title, 3: Comment type" msgid "%1$s's %3$s %2$s" msgstr "" #: ../connectors/class-wp-stream-connector-comments.php:524 #, php-format +msgctxt "1: Comment author, 2: Post title, 3: Comment type" msgid "Duplicate %3$s by %1$s prevented on %2$s" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:98 +msgctxt "edd" msgid "Easy Digital Downloads" msgstr "" -#: ../connectors/class-wp-stream-connector-edd.php:117 -msgid "Revoked" +#: ../connectors/class-wp-stream-connector-edd.php:108 +msgctxt "edd" +msgid "Created" msgstr "" -#: ../connectors/class-wp-stream-connector-edd.php:128 -msgid "Downloads" +#: ../connectors/class-wp-stream-connector-edd.php:109 +msgctxt "edd" +msgid "Updated" msgstr "" -#: ../connectors/class-wp-stream-connector-edd.php:131 -msgid "Discounts" +#: ../connectors/class-wp-stream-connector-edd.php:110 +msgctxt "edd" +msgid "Added" msgstr "" -#: ../connectors/class-wp-stream-connector-edd.php:132 -#: ../extensions/reports/class-wp-stream-reports.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:146 -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:56 -msgid "Reports" -msgstr "" +#: ../connectors/class-wp-stream-connector-edd.php:111 +msgctxt "edd" +msgid "Deleted" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:112 +msgctxt "edd" +msgid "Trashed" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:113 +msgctxt "edd" +msgid "Restored" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:114 +msgctxt "edd" +msgid "Generated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:115 +msgctxt "edd" +msgid "Imported" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:116 +msgctxt "edd" +msgid "Exported" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:117 +msgctxt "edd" +msgid "Revoked" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:128 +msgctxt "edd" +msgid "Downloads" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:129 +msgctxt "edd" +msgid "Categories" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:130 +msgctxt "edd" +msgid "Tags" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:131 +msgctxt "edd" +msgid "Discounts" +msgstr "" + +#: ../connectors/class-wp-stream-connector-edd.php:132 +msgctxt "edd" +msgid "Reports" +msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:133 +msgctxt "edd" msgid "API Keys" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:155 #: ../connectors/class-wp-stream-connector-edd.php:182 -#: ../connectors/class-wp-stream-connector-posts.php:103 -#: ../connectors/class-wp-stream-connector-taxonomies.php:93 -#: ../connectors/class-wp-stream-connector-woocommerce.php:216 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:171 #, php-format msgid "Edit %s" msgstr "" @@ -1736,6 +1703,7 @@ msgid "Reissue" msgstr "" #: ../connectors/class-wp-stream-connector-edd.php:273 +msgctxt "edd" msgid "Banned emails" msgstr "" @@ -1822,6 +1790,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-editor.php:112 #, php-format +msgctxt "1: File name, 2: Theme/plugin name" msgid "\"%1$s\" in \"%2$s\" updated" msgstr "" @@ -1835,26 +1804,77 @@ msgid "Theme Details" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:88 +msgctxt "gravityforms" msgid "Gravity Forms" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:98 +msgctxt "gravityforms" +msgid "Created" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:99 +msgctxt "gravityforms" +msgid "Updated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:100 +msgctxt "gravityforms" +msgid "Exported" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:101 +msgctxt "gravityforms" +msgid "Imported" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:102 +msgctxt "gravityforms" +msgid "Added" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:103 +msgctxt "gravityforms" +msgid "Deleted" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:104 +msgctxt "gravityforms" +msgid "Trashed" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:105 +msgctxt "gravityforms" +msgid "Restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:106 +msgctxt "gravityforms" msgid "Duplicated" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:117 +msgctxt "gravityforms" msgid "Forms" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:118 +msgctxt "gravityforms" +msgid "Settings" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:119 +msgctxt "gravityforms" msgid "Import/Export" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:120 +msgctxt "gravityforms" msgid "Entries" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:121 +msgctxt "gravityforms" msgid "Notes" msgstr "" @@ -1863,26 +1883,32 @@ msgid "Edit Settings" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:181 +msgctxt "gravityforms" msgid "Output CSS" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:184 +msgctxt "gravityforms" msgid "Output HTML5" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:187 +msgctxt "gravityforms" msgid "No-Conflict Mode" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:190 +msgctxt "gravityforms" msgid "Currency" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:193 +msgctxt "gravityforms" msgid "reCAPTCHA Public Key" msgstr "" #: ../connectors/class-wp-stream-connector-gravityforms.php:196 +msgctxt "gravityforms" msgid "reCAPTCHA Private Key" msgstr "" @@ -1927,11 +1953,26 @@ msgstr "" msgid "\"%1$s\" notification %2$s from \"%3$s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:422 +#: ../connectors/class-wp-stream-connector-installer.php:45 +msgid "Activated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-gravityforms.php:423 +#: ../connectors/class-wp-stream-connector-installer.php:46 +#: ../connectors/class-wp-stream-connector-widgets.php:60 +msgid "Deactivated" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:496 #, php-format msgid "Gravity Forms license key %s" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:497 +msgid "deleted" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:510 #, php-format msgid "\"%s\" form exported" @@ -1971,10 +2012,18 @@ msgstr "" msgid "Note #%1$d deleted from lead #%2$d on \"%3$s\" form" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:650 +msgid "marked as spam" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:651 msgid "trashed" msgstr "" +#: ../connectors/class-wp-stream-connector-gravityforms.php:652 +msgid "restored" +msgstr "" + #: ../connectors/class-wp-stream-connector-gravityforms.php:661 #: ../connectors/class-wp-stream-connector-gravityforms.php:708 #, php-format @@ -2024,11 +2073,17 @@ msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:149 #, php-format +msgctxt "" +"Plugin/theme installation. 1: Type (plugin/theme), 2: Plugin/theme name, 3: " +"Plugin/theme version" msgid "Installed %1$s: %2$s %3$s" msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:157 #, php-format +msgctxt "" +"Plugin/theme update. 1: Type (plugin/theme), 2: Plugin/theme name, 3: Plugin/" +"theme version" msgid "Updated %1$s: %2$s %3$s" msgstr "" @@ -2040,11 +2095,13 @@ msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:225 #, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin activated %2$s" msgstr "" #: ../connectors/class-wp-stream-connector-installer.php:243 #, php-format +msgctxt "1: Plugin name, 2: Single site or network wide" msgid "\"%1$s\" plugin deactivated %2$s" msgstr "" @@ -2074,121 +2131,168 @@ msgid "WordPress updated to %s" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:69 +msgctxt "jetpack" msgid "Jetpack" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:79 +msgctxt "jetpack" +msgid "Activated" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:80 +msgctxt "jetpack" msgid "Dectivated" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:81 +msgctxt "jetpack" msgid "Connected" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:82 +msgctxt "jetpack" msgid "Disconnected" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:83 +msgctxt "jetpack" msgid "Link" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:84 +msgctxt "jetpack" msgid "Unlink" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:85 +msgctxt "jetpack" +msgid "Updated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-jetpack.php:86 +msgctxt "jetpack" +msgid "Added" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:87 -#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgctxt "jetpack" msgid "Removed" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:98 +msgctxt "jetpack" msgid "Modules" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:99 +msgctxt "jetpack" msgid "Blogs" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:100 -#: ../connectors/class-wp-stream-connector-users.php:43 -#: ../connectors/class-wp-stream-connector-users.php:70 +msgctxt "jetpack" msgid "Users" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:101 +msgctxt "jetpack" +msgid "Options" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:102 +msgctxt "jetpack" msgid "Sharing" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:103 +msgctxt "jetpack" msgid "Publicize" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:104 +msgctxt "jetpack" msgid "Google+ Profile" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:105 -#: ../connectors/class-wp-stream-connector-jetpack.php:203 +msgctxt "jetpack" msgid "WordPress.com Stats" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:106 +msgctxt "jetpack" msgid "Carousel" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:107 +msgctxt "jetpack" msgid "Custom CSS" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:108 +msgctxt "jetpack" msgid "Subscriptions" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:109 +msgctxt "jetpack" +msgid "Comments" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:110 +msgctxt "jetpack" msgid "Infinite Scroll" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:111 +msgctxt "jetpack" msgid "SSO" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:112 +msgctxt "jetpack" msgid "Likes" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:113 +msgctxt "jetpack" msgid "Mobile" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:114 +msgctxt "jetpack" msgid "Monitor" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:115 +msgctxt "jetpack" msgid "Post by Email" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:116 +msgctxt "jetpack" msgid "Related Posts" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:117 +msgctxt "jetpack" msgid "Site Verification" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:118 -#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgctxt "jetpack" msgid "Tiled Galleries" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:119 +msgctxt "jetpack" msgid "VideoPress" msgstr "" #: ../connectors/class-wp-stream-connector-jetpack.php:145 -#: ../extensions/reports/class-wp-stream-reports.php:222 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:182 +#: ../extensions/reports/class-wp-stream-reports.php:220 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:174 msgid "Configure" msgstr "" @@ -2197,6 +2301,11 @@ msgstr "" msgid "Deactivate" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:159 +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:177 +msgid "Activate" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:174 msgid "Configure module" msgstr "" @@ -2209,6 +2318,10 @@ msgstr "" msgid "Twitter site tag" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:203 +msgid "WordPress.com Stats" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:208 msgid "Color Scheme" msgstr "" @@ -2277,6 +2390,10 @@ msgstr "" msgid "Pinterest Site Verification Token" msgstr "" +#: ../connectors/class-wp-stream-connector-jetpack.php:293 +msgid "Tiled Galleries" +msgstr "" + #: ../connectors/class-wp-stream-connector-jetpack.php:322 #, php-format msgid "%1$s module %2$s" @@ -2472,6 +2589,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-media.php:126 #, php-format +msgctxt "1: Attachment title, 2: Parent post title" msgid "Attached \"%1$s\" to \"%2$s\"" msgstr "" @@ -2486,7 +2604,6 @@ msgid "Updated \"%s\"" msgstr "" #: ../connectors/class-wp-stream-connector-media.php:179 -#: ../connectors/class-wp-stream-connector-menus.php:141 #, php-format msgid "Deleted \"%s\"" msgstr "" @@ -2511,16 +2628,25 @@ msgstr "" #: ../connectors/class-wp-stream-connector-menus.php:123 #, php-format +msgctxt "Menu name" msgid "Updated menu \"%s\"" msgstr "" +#: ../connectors/class-wp-stream-connector-menus.php:141 +#, php-format +msgctxt "Menu name" +msgid "Deleted \"%s\"" +msgstr "" + #: ../connectors/class-wp-stream-connector-menus.php:181 #, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been unassigned from \"%2$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-menus.php:189 #, php-format +msgctxt "1: Menu name, 2: Theme location" msgid "\"%1$s\" has been assigned to \"%2$s\"" msgstr "" @@ -2529,57 +2655,72 @@ msgid "Posts" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:100 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:168 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:159 #, php-format +msgctxt "Post type singular name" msgid "Restore %s" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:101 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:160 #, php-format +msgctxt "Post type singular name" msgid "Delete %s Permenantly" msgstr "" +#: ../connectors/class-wp-stream-connector-posts.php:103 +#: ../connectors/class-wp-stream-connector-woocommerce.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:162 +#, php-format +msgctxt "Post type singular name" +msgid "Edit %s" +msgstr "" + #: ../connectors/class-wp-stream-connector-posts.php:110 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:178 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:169 msgid "Revision" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:147 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s drafted" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:154 #: ../connectors/class-wp-stream-connector-posts.php:161 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s published" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:167 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s unpublished" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:173 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s trashed" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:180 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s restored from trash" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:187 -#: ../connectors/class-wp-stream-connector-taxonomies.php:200 -#: ../connectors/class-wp-stream-connector-woocommerce.php:611 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s updated" msgstr "" #: ../connectors/class-wp-stream-connector-posts.php:254 #, php-format +msgctxt "1: Post title, 2: Post type singular name" msgid "\"%1$s\" %2$s deleted from trash" msgstr "" @@ -2595,8 +2736,11 @@ msgstr "" msgid "Reading" msgstr "" +#: ../connectors/class-wp-stream-connector-settings.php:125 +msgid "Discussion" +msgstr "" + #: ../connectors/class-wp-stream-connector-settings.php:127 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:97 msgid "Permalinks" msgstr "" @@ -2620,340 +2764,358 @@ msgstr "" msgid "Stream Defaults" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:208 +#: ../connectors/class-wp-stream-connector-settings.php:233 msgid "Site Title" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:209 +#: ../connectors/class-wp-stream-connector-settings.php:234 msgid "Tagline" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:210 +#: ../connectors/class-wp-stream-connector-settings.php:235 msgid "WordPress Address (URL)" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:211 +#: ../connectors/class-wp-stream-connector-settings.php:236 msgid "Site Address (URL)" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:212 +#: ../connectors/class-wp-stream-connector-settings.php:237 msgid "E-mail Address" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:213 +#: ../connectors/class-wp-stream-connector-settings.php:238 msgid "Membership" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:214 +#: ../connectors/class-wp-stream-connector-settings.php:239 msgid "New User Default Role" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:215 +#: ../connectors/class-wp-stream-connector-settings.php:240 msgid "Timezone" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:216 +#: ../connectors/class-wp-stream-connector-settings.php:241 msgid "Date Format" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:217 +#: ../connectors/class-wp-stream-connector-settings.php:242 msgid "Time Format" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:218 +#: ../connectors/class-wp-stream-connector-settings.php:243 msgid "Week Starts On" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:220 -#: ../connectors/class-wp-stream-connector-settings.php:221 +#: ../connectors/class-wp-stream-connector-settings.php:245 +#: ../connectors/class-wp-stream-connector-settings.php:246 msgid "Formatting" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:222 +#: ../connectors/class-wp-stream-connector-settings.php:247 msgid "Default Post Category" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:223 +#: ../connectors/class-wp-stream-connector-settings.php:248 msgid "Default Post Format" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:224 +#: ../connectors/class-wp-stream-connector-settings.php:249 msgid "Mail Server" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:225 +#: ../connectors/class-wp-stream-connector-settings.php:250 msgid "Login Name" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:226 +#: ../connectors/class-wp-stream-connector-settings.php:251 msgid "Password" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:227 +#: ../connectors/class-wp-stream-connector-settings.php:252 msgid "Default Mail Category" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:228 +#: ../connectors/class-wp-stream-connector-settings.php:253 msgid "Update Services" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:230 -#: ../connectors/class-wp-stream-connector-settings.php:231 -#: ../connectors/class-wp-stream-connector-settings.php:232 +#: ../connectors/class-wp-stream-connector-settings.php:255 +#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:257 msgid "Front page displays" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:233 +#: ../connectors/class-wp-stream-connector-settings.php:258 msgid "Blog pages show at most" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:234 +#: ../connectors/class-wp-stream-connector-settings.php:259 msgid "Syndication feeds show the most recent" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:235 +#: ../connectors/class-wp-stream-connector-settings.php:260 msgid "For each article in a feed, show" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:236 +#: ../connectors/class-wp-stream-connector-settings.php:261 msgid "Search Engine Visibility" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:238 -#: ../connectors/class-wp-stream-connector-settings.php:239 -#: ../connectors/class-wp-stream-connector-settings.php:240 +#: ../connectors/class-wp-stream-connector-settings.php:263 +#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:265 msgid "Default article settings" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:241 -#: ../connectors/class-wp-stream-connector-settings.php:242 -#: ../connectors/class-wp-stream-connector-settings.php:243 -#: ../connectors/class-wp-stream-connector-settings.php:244 -#: ../connectors/class-wp-stream-connector-settings.php:245 -#: ../connectors/class-wp-stream-connector-settings.php:246 -#: ../connectors/class-wp-stream-connector-settings.php:247 -#: ../connectors/class-wp-stream-connector-settings.php:248 -#: ../connectors/class-wp-stream-connector-settings.php:249 -#: ../connectors/class-wp-stream-connector-settings.php:250 +#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:267 +#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:270 +#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:274 +#: ../connectors/class-wp-stream-connector-settings.php:275 msgid "Other comment settings" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:251 -#: ../connectors/class-wp-stream-connector-settings.php:252 +#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:277 msgid "E-mail me whenever" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:253 -#: ../connectors/class-wp-stream-connector-settings.php:254 +#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:279 msgid "Before a comment appears" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:255 -#: ../connectors/class-wp-stream-connector-settings.php:256 +#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:281 msgid "Comment Moderation" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:257 +#: ../connectors/class-wp-stream-connector-settings.php:282 msgid "Comment Blacklist" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:258 +#: ../connectors/class-wp-stream-connector-settings.php:283 msgid "Show Avatars" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:259 +#: ../connectors/class-wp-stream-connector-settings.php:284 msgid "Maximum Rating" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:260 +#: ../connectors/class-wp-stream-connector-settings.php:285 msgid "Default Avatar" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:262 -#: ../connectors/class-wp-stream-connector-settings.php:263 -#: ../connectors/class-wp-stream-connector-settings.php:264 +#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:289 msgid "Thumbnail size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:265 -#: ../connectors/class-wp-stream-connector-settings.php:266 +#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:291 msgid "Medium size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:267 -#: ../connectors/class-wp-stream-connector-settings.php:268 +#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:293 msgid "Large size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:269 +#: ../connectors/class-wp-stream-connector-settings.php:294 msgid "Uploading Files" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:271 +#: ../connectors/class-wp-stream-connector-settings.php:296 msgid "Permalink Settings" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:272 +#: ../connectors/class-wp-stream-connector-settings.php:297 msgid "Category base" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:273 +#: ../connectors/class-wp-stream-connector-settings.php:298 msgid "Tag base" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:275 +#: ../connectors/class-wp-stream-connector-settings.php:300 msgid "Registration notification" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:276 +#: ../connectors/class-wp-stream-connector-settings.php:301 msgid "Allow new registrations" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:277 +#: ../connectors/class-wp-stream-connector-settings.php:302 msgid "Add New Users" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:278 +#: ../connectors/class-wp-stream-connector-settings.php:303 msgid "Enable administration menus" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:279 +#: ../connectors/class-wp-stream-connector-settings.php:304 msgid "Site upload space check" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:280 +#: ../connectors/class-wp-stream-connector-settings.php:305 msgid "Site upload space" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:281 +#: ../connectors/class-wp-stream-connector-settings.php:306 msgid "Upload file types" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:282 +#: ../connectors/class-wp-stream-connector-settings.php:307 msgid "Network Title" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:283 +#: ../connectors/class-wp-stream-connector-settings.php:308 msgid "First Post" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:284 +#: ../connectors/class-wp-stream-connector-settings.php:309 msgid "First Page" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:285 +#: ../connectors/class-wp-stream-connector-settings.php:310 msgid "First Comment" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:286 +#: ../connectors/class-wp-stream-connector-settings.php:311 msgid "First Comment URL" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:287 +#: ../connectors/class-wp-stream-connector-settings.php:312 msgid "First Comment Author" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:288 +#: ../connectors/class-wp-stream-connector-settings.php:313 msgid "Welcome Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:289 +#: ../connectors/class-wp-stream-connector-settings.php:314 msgid "Welcome User Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:290 +#: ../connectors/class-wp-stream-connector-settings.php:315 msgid "Max upload file size" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:291 +#: ../connectors/class-wp-stream-connector-settings.php:316 msgid "Terms Enabled" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:292 +#: ../connectors/class-wp-stream-connector-settings.php:317 msgid "Banned Names" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:293 +#: ../connectors/class-wp-stream-connector-settings.php:318 msgid "Limited Email Registrations" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:294 +#: ../connectors/class-wp-stream-connector-settings.php:319 msgid "Banned Email Domains" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:295 +#: ../connectors/class-wp-stream-connector-settings.php:320 msgid "Network Language" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:296 +#: ../connectors/class-wp-stream-connector-settings.php:321 msgid "Network Admin Email" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:297 +#: ../connectors/class-wp-stream-connector-settings.php:322 msgid "User Count" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:299 +#: ../connectors/class-wp-stream-connector-settings.php:324 msgid "Stream Database Version" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:300 -msgid "Stream Total Sites" +#: ../connectors/class-wp-stream-connector-settings.php:325 +msgid "Stream Connected Sites" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:329 +#: ../connectors/class-wp-stream-connector-settings.php:354 msgid "Background Image" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:330 +#: ../connectors/class-wp-stream-connector-settings.php:355 msgid "Background Position" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:331 +#: ../connectors/class-wp-stream-connector-settings.php:356 msgid "Background Repeat" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:332 +#: ../connectors/class-wp-stream-connector-settings.php:357 msgid "Background Attachment" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:333 +#: ../connectors/class-wp-stream-connector-settings.php:358 msgid "Background Color" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:335 +#: ../connectors/class-wp-stream-connector-settings.php:360 msgid "Header Image" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:336 +#: ../connectors/class-wp-stream-connector-settings.php:361 msgid "Text Color" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:471 +#: ../connectors/class-wp-stream-connector-settings.php:496 #, php-format msgid "Edit %s Settings" msgstr "" -#: ../connectors/class-wp-stream-connector-settings.php:604 +#: ../connectors/class-wp-stream-connector-settings.php:624 #, php-format msgid "\"%s\" setting was updated" msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:44 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:472 msgid "Taxonomies" msgstr "" +#: ../connectors/class-wp-stream-connector-taxonomies.php:93 +#, php-format +msgctxt "Term singular name" +msgid "Edit %s" +msgstr "" + #: ../connectors/class-wp-stream-connector-taxonomies.php:136 #, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s created" msgstr "" #: ../connectors/class-wp-stream-connector-taxonomies.php:163 #, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" msgid "\"%1$s\" %2$s deleted" msgstr "" +#: ../connectors/class-wp-stream-connector-taxonomies.php:200 +#, php-format +msgctxt "1: Term name, 2: Taxonomy singular label" +msgid "\"%1$s\" %2$s updated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-users.php:43 +#: ../connectors/class-wp-stream-connector-users.php:70 +msgid "Users" +msgstr "" + #: ../connectors/class-wp-stream-connector-users.php:56 msgid "Password Reset" msgstr "" @@ -2988,6 +3150,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-users.php:140 #, php-format +msgctxt "1: User display name, 2: User role" msgid "New user account created for %1$s (%2$s)" msgstr "" @@ -2998,6 +3161,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-users.php:191 #, php-format +msgctxt "1: User display name, 2: Old role, 3: New role" msgid "%1$s's role was changed from %2$s to %3$s" msgstr "" @@ -3023,6 +3187,7 @@ msgstr "" #: ../connectors/class-wp-stream-connector-users.php:314 #, php-format +msgctxt "1: User display name, 2: User roles" msgid "%1$s's account was deleted (%2$s)" msgstr "" @@ -3035,6 +3200,10 @@ msgstr "" msgid "Widgets" msgstr "" +#: ../connectors/class-wp-stream-connector-widgets.php:56 +msgid "Removed" +msgstr "" + #: ../connectors/class-wp-stream-connector-widgets.php:57 msgid "Moved" msgstr "" @@ -3061,174 +3230,229 @@ msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:196 #, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" from \"%3$s\" deactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:199 #, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget from \"%3$s\" deactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:202 #, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" from \"%3$s\" deactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:205 #, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget from \"%3$s\" deactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:245 #, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" reactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:248 #, php-format +msgctxt "1: Name" msgid "%1$s widget reactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:251 #, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" reactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:254 #, php-format +msgctxt "3: Widget ID" msgid "%3$s widget reactivated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:301 #, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" removed from \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:304 #, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget removed from \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:307 #, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" removed from \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:310 #, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget removed from \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:354 #, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" added to \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:357 #, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget added to \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:360 #, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" added to \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:363 #, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget added to \"%3$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:405 #, php-format +msgctxt "Sidebar name" msgid "Widgets reordered in \"%s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:460 #, php-format +msgctxt "1: Name, 2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:463 #, php-format +msgctxt "1: Name, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%1$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:466 #, php-format +msgctxt "2: Title, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "Unknown widget type named \"%2$s\" moved from \"%4$s\" to \"%5$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:469 #, php-format +msgctxt "3: Widget ID, 4: Old Sidebar Name, 5: New Sidebar Name" msgid "%3$s widget moved from \"%4$s\" to \"%5$s\"" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:581 #, php-format +msgctxt "1: Name, 2: Title, 3: Sidebar Name" msgid "%1$s widget named \"%2$s\" in \"%3$s\" updated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:584 #, php-format +msgctxt "1: Name, 3: Sidebar Name" msgid "%1$s widget in \"%3$s\" updated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:587 #, php-format +msgctxt "2: Title, 3: Sidebar Name" msgid "Unknown widget type named \"%2$s\" in \"%3$s\" updated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:590 #, php-format +msgctxt "4: Widget ID, 3: Sidebar Name" msgid "%4$s widget in \"%3$s\" updated" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:621 #, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" created" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:624 #, php-format +msgctxt "1: Name" msgid "%1$s widget created" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:627 #, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" created" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:630 #, php-format +msgctxt "3: Widget ID" msgid "%3$s widget created" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:651 #, php-format +msgctxt "1: Name, 2: Title" msgid "%1$s widget named \"%2$s\" deleted" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:654 #, php-format +msgctxt "1: Name" msgid "%1$s widget deleted" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:657 #, php-format +msgctxt "2: Title" msgid "Unknown widget type named \"%2$s\" deleted" msgstr "" #: ../connectors/class-wp-stream-connector-widgets.php:660 #, php-format +msgctxt "3: Widget ID" msgid "%3$s widget deleted" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:89 +msgctxt "woocommerce" msgid "WooCommerce" msgstr "" +#: ../connectors/class-wp-stream-connector-woocommerce.php:99 +msgctxt "woocommerce" +msgid "Updated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:100 +msgctxt "woocommerce" +msgid "Created" +msgstr "" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:101 +msgctxt "woocommerce" +msgid "Trashed" +msgstr "" + +#: ../connectors/class-wp-stream-connector-woocommerce.php:102 +msgctxt "woocommerce" +msgid "Deleted" +msgstr "" + #: ../connectors/class-wp-stream-connector-woocommerce.php:122 +msgctxt "woocommerce" msgid "Attributes" msgstr "" @@ -3286,21 +3510,25 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:301 #, php-format +msgctxt "Order title" msgid "%s created" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:308 #, php-format +msgctxt "Order title" msgid "%s trashed" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:315 #, php-format +msgctxt "Order title" msgid "%s restored from the trash" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:322 #, php-format +msgctxt "Order title" msgid "%s updated" msgstr "" @@ -3318,44 +3546,57 @@ msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:377 #, php-format +msgctxt "Order title" msgid "\"%s\" deleted from trash" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:411 #, php-format +msgctxt "1. Order title, 2. Old status, 3. New status" msgid "%1$s status changed from %2$s to %3$s" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:447 #, php-format +msgctxt "Term name" msgid "\"%s\" product attribute created" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:466 #, php-format +msgctxt "Term name" msgid "\"%s\" product attribute updated" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:485 #, php-format +msgctxt "Term name" msgid "\"%s\" product attribute deleted" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:506 #, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate created" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:525 #, php-format +msgctxt "Tax rate name" msgid "\"%4$s\" tax rate updated" msgstr "" #: ../connectors/class-wp-stream-connector-woocommerce.php:555 #, php-format +msgctxt "Tax rate name" msgid "\"%s\" tax rate deleted" msgstr "" +#: ../connectors/class-wp-stream-connector-woocommerce.php:611 +#, php-format +msgid "\"%1$s\" %2$s updated" +msgstr "" + #: ../connectors/class-wp-stream-connector-woocommerce.php:709 msgid "payment gateway" msgstr "" @@ -3372,1213 +3613,1348 @@ msgstr "" msgid "Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:67 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:59 +msgctxt "wordpress-seo" msgid "WordPress SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:69 +msgctxt "wordpress-seo" +msgid "Created" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:70 +msgctxt "wordpress-seo" +msgid "Updated" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:71 +msgctxt "wordpress-seo" +msgid "Added" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:72 +msgctxt "wordpress-seo" +msgid "Deleted" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:73 +msgctxt "wordpress-seo" +msgid "Exported" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:74 +msgctxt "wordpress-seo" +msgid "Imported" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:85 +msgctxt "wordpress-seo" msgid "Dashboard" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:86 +msgctxt "wordpress-seo" msgid "Titles & Metas" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:87 +msgctxt "wordpress-seo" msgid "Social" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:88 +msgctxt "wordpress-seo" msgid "XML Sitemaps" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:98 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:89 +msgctxt "wordpress-seo" +msgid "Permalinks" +msgstr "" + +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:90 +msgctxt "wordpress-seo" msgid "Internal Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:99 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:91 +msgctxt "wordpress-seo" msgid "RSS" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:100 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:92 +msgctxt "wordpress-seo" msgid "Import & Export" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:101 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:93 +msgctxt "wordpress-seo" msgid "Bulk Title Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:102 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:94 +msgctxt "wordpress-seo" msgid "Bulk Description Editor" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:104 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:95 +msgctxt "wordpress-seo" msgid "Files" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:105 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:96 +msgctxt "wordpress-seo" msgid "Content" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:214 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:205 msgid "HeadSpace2" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:215 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:206 msgid "All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:216 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:207 msgid "OLD All-in-One SEO" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:217 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:208 msgid "WooThemes SEO framework" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:218 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:209 msgid "Robots Meta (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:219 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:210 msgid "RSS Footer (by Yoast)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:211 msgid "Yoast Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:229 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:220 #, php-format msgid "Imported settings from %1$s%2$s" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:231 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:222 msgid ", and deleted old data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:251 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:242 #, php-format msgid "Exported settings%s" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:252 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:243 msgid ", including taxonomy meta" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:264 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:255 #, php-format msgid "Tried importing settings from \"%s\"" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:279 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:270 msgid "Tried creating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:281 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:272 msgid "Tried updating robots.txt file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:283 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:274 msgid "Tried updating htaccess file" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:334 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:325 #, php-format msgid "Updated \"%1$s\" of \"%2$s\" %3$s" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:373 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:364 #, php-format msgid "%s settings updated" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:380 +msgctxt "wordpress-seo" msgid "Allow tracking of this WordPress install's anonymous data." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:381 +msgctxt "wordpress-seo" msgid "Disable the Advanced part of the WordPress SEO meta box" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:382 +msgctxt "wordpress-seo" msgid "Alexa Verification ID" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:383 +msgctxt "wordpress-seo" msgid "Bing Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:384 +msgctxt "wordpress-seo" msgid "Google Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:385 +msgctxt "wordpress-seo" msgid "Pinterest" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:386 +msgctxt "wordpress-seo" msgid "Yandex Webmaster Tools" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:398 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:389 +msgctxt "wordpress-seo" msgid "Enable Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:399 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:390 +msgctxt "wordpress-seo" msgid "Separator between breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:391 +msgctxt "wordpress-seo" msgid "Anchor text for the Homepage" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:392 +msgctxt "wordpress-seo" msgid "Prefix for the breadcrumb path" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:393 +msgctxt "wordpress-seo" msgid "Prefix for Archive breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:394 +msgctxt "wordpress-seo" msgid "Prefix for Search Page breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:395 +msgctxt "wordpress-seo" msgid "Breadcrumb for 404 Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:396 +msgctxt "wordpress-seo" msgid "Remove Blog page from Breadcrumbs" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:397 +msgctxt "wordpress-seo" msgid "Bold the last page in the breadcrumb" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:400 +msgctxt "wordpress-seo" msgid "Force rewrite titles" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:401 +msgctxt "wordpress-seo" msgid "Noindex subpages of archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:411 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:402 +msgctxt "wordpress-seo" msgid "Use meta keywords tag?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:412 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:403 +msgctxt "wordpress-seo" msgid "Add noodp meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:404 +msgctxt "wordpress-seo" msgid "Add noydir meta robots tag sitewide" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:405 +msgctxt "wordpress-seo" msgid "Hide RSD Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:406 +msgctxt "wordpress-seo" msgid "Hide WLW Manifest Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:416 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:407 +msgctxt "wordpress-seo" msgid "Hide Shortlink for posts" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:417 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:408 +msgctxt "wordpress-seo" msgid "Hide RSS Links" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:409 +msgctxt "wordpress-seo" msgid "Disable the author archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:410 +msgctxt "wordpress-seo" msgid "Disable the date-based archives" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:413 +msgctxt "wordpress-seo" msgid "Who should have access to the WordPress SEO settings" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:414 +msgctxt "wordpress-seo" msgid "New blogs get the SEO settings from this blog" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:415 +msgctxt "wordpress-seo" msgid "Blog ID" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:418 +msgctxt "wordpress-seo" msgid "" "Strip the category base (usually /category/) from the category " "URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:428 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:419 +msgctxt "wordpress-seo" msgid "Enforce a trailing slash on all category and tag URL's" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:429 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:420 +msgctxt "wordpress-seo" msgid "Remove stop words from slugs." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:421 +msgctxt "wordpress-seo" msgid "Redirect attachment URL's to parent post URL." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:422 +msgctxt "wordpress-seo" msgid "Remove the ?replytocom variables." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:423 +msgctxt "wordpress-seo" msgid "" "Redirect ugly URL's to clean permalinks. (Not recommended in many cases!)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:424 +msgctxt "wordpress-seo" msgid "Force Transport" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:425 +msgctxt "wordpress-seo" msgid "Prevent cleaning out Google Site Search URL's." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:426 +msgctxt "wordpress-seo" msgid "" "Prevent cleaning out Google Analytics Campaign & Google AdWords Parameters." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:427 +msgctxt "wordpress-seo" msgid "Other variables not to clean" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:430 +msgctxt "wordpress-seo" msgid "Add Open Graph meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:440 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:431 +msgctxt "wordpress-seo" msgid "Facebook Page URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:441 -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:432 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:434 +msgctxt "wordpress-seo" msgid "Image URL" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:433 +msgctxt "wordpress-seo" msgid "Description" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:435 +msgctxt "wordpress-seo" msgid "Add Twitter card meta data" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:436 +msgctxt "wordpress-seo" msgid "Site Twitter Username" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:437 +msgctxt "wordpress-seo" msgid "The default card type to use" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:447 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:438 +msgctxt "wordpress-seo" msgid "Add Google+ specific post meta data (excluding author metadata)" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:448 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:439 +msgctxt "wordpress-seo" msgid "Google Publisher Page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:451 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:442 +msgctxt "wordpress-seo" msgid "Check this box to enable XML sitemap functionality." msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:452 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:443 +msgctxt "wordpress-seo" msgid "Disable author/user sitemap" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:453 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:444 +msgctxt "wordpress-seo" msgid "Ping Yahoo!" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:445 +msgctxt "wordpress-seo" msgid "Ping Ask.com" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:446 +msgctxt "wordpress-seo" msgid "Max entries per sitemap page" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:449 +msgctxt "wordpress-seo" msgid "Content to put before each post in the feed" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:450 +msgctxt "wordpress-seo" msgid "Content to put after each post" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:454 +msgctxt "wordpress-seo" msgid "Title template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:464 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:455 +msgctxt "wordpress-seo" msgid "Meta description template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:465 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:456 +msgctxt "wordpress-seo" msgid "Meta keywords template" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:466 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:457 +msgctxt "wordpress-seo" msgid "Meta Robots" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:467 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:458 +msgctxt "wordpress-seo" msgid "Authorship" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:468 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:459 +msgctxt "wordpress-seo" msgid "Show date in snippet preview?" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:469 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:460 +msgctxt "wordpress-seo" msgid "WordPress SEO Meta Box" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:470 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:461 +msgctxt "wordpress-seo" msgid "Breadcrumbs Title" msgstr "" -#: ../connectors/class-wp-stream-connector-wordpress-seo.php:471 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:462 +msgctxt "wordpress-seo" msgid "Post types" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:147 +#: ../connectors/class-wp-stream-connector-wordpress-seo.php:463 +msgctxt "wordpress-seo" +msgid "Taxonomies" +msgstr "" + +#: ../extensions/notifications/class-wp-stream-notifications.php:128 msgid "Stream Notifications" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:148 +#: ../extensions/notifications/class-wp-stream-notifications.php:129 msgid "Get notified instantly when important changes are made on your site." msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:150 +#: ../extensions/notifications/class-wp-stream-notifications.php:131 msgid "Create notification rules quickly and easily" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:132 msgid "Smart and powerful trigger matching" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:152 +#: ../extensions/notifications/class-wp-stream-notifications.php:133 msgid "Fully customized e-mail and SMS alerts" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:153 +#: ../extensions/notifications/class-wp-stream-notifications.php:134 msgid "Push alerts to your smartphone or tablet" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:170 -#: ../extensions/notifications/class-wp-stream-notifications.php:171 +#: ../extensions/notifications/class-wp-stream-notifications.php:151 +#: ../extensions/notifications/class-wp-stream-notifications.php:152 #: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:48 #: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:32 msgid "Notifications" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:218 +#: ../extensions/notifications/class-wp-stream-notifications.php:199 msgid "Sample Rule" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:272 +#: ../extensions/notifications/class-wp-stream-notifications.php:253 #, php-format msgid "[Site Activity Alert] %s" msgstr "" -#: ../extensions/notifications/class-wp-stream-notifications.php:273 +#: ../extensions/notifications/class-wp-stream-notifications.php:254 #, php-format msgid "The following just happened on your site: %s by %s Date of action: %s" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:49 -msgid "Type" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 +msgid "Email" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:50 -msgid "Occurrences" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 +msgid "Send to Users" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 -msgid "Publish" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 +msgid "Alert specific users via email." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 -msgid "Unpublish" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 +msgid "Send to Emails" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 -msgid "Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 +msgid "Alert any arbitrary email address not tied to a specific user." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 -msgid "Stream Notification Rules" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 +msgid "Subject" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 -msgid "New Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 +msgid "Data tags are allowed." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 -msgid "New Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 +msgid "Message" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 -msgid "Edit Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 +msgid "HTML and data tags are allowed." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 -msgid "View Stream Notification Rule" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 +msgid "Push" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 -msgid "Search Rules" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 +msgid "Missing Required Plugin" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 -msgid "No notification rules found." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 +#, php-format +msgid "Please install and activate the %1$s plugin to enable push alerts." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 -msgid "No notification rules found in Trash." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 +msgid "Pushover Notifications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 -msgid "Triggers" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 +msgid "Required Plugin Not Activated" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 -msgid "Alerts" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 +#, php-format +msgid "Please activate the %1$s plugin to enable push alerts." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 -msgid "Data Tags" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 +msgid "Alert specific users via push." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:121 -#: ../extensions/notifications/views/form-templates.php:34 -msgid "+ Add Trigger" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 +#, php-format +msgid "Only those users with a %s in their profile can be selected." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:122 -#: ../extensions/notifications/views/form-templates.php:35 -msgid "+ Add Group" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 +msgid "Pushover User Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:129 -msgid "+ Add Alert" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 +msgid "Application key is missing" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 #, php-format -msgid "This rule has occurred %1$s time." +msgid "Please provide your Application key on %1$s." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:168 -msgid "Reset Count" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 +msgid "Pushover Notifications settings page" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 -msgid "Basic" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 +msgid "Application API Token/Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 -msgid "Summary message of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 +msgid "Your User Key" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 -msgid "User ID of the triggered record author." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 +msgid "New Users" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 -msgid "Connector of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 +msgid "New Posts are Published" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 -msgid "Context of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 +msgid "Roles to Notify" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 -msgid "Action of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 +msgid "New Comments" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 -msgid "Timestamp of triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 +msgid "Notify the Post Author (for multi-author blogs)" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 -msgid "IP of the triggered record author." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 +msgid "Notify users when password resets are requested for their accounts" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 -msgid "Object ID of the triggered record." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 +msgid "WordPress Core Update is Available" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 -msgid "Advanced" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 +msgid "Plugin & Theme Updates are Available" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 -msgid "" -"Specific object data of the record, relative to what the object type is:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more Post values\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{object.name}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.taxonomy}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{object.description}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more Term values" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 +msgid "Use Multiple Application Keys" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:210 -msgid "" -"Specific user data of the record author:\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\t{author.display_name}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{author.user_email}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\t{author.user_login}\n" -"\t\t\t\t\t\t\t\t\t\t
\n" -"\t\t\t\t\t\t\t\t\t\tSee Codex for more User values" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 +msgid "Verify SSL from api.pushover.net" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:221 -msgid "" -"Specific meta data of the record, used to display specific meta values " -"created by Connectors.\n" -"\t\t\t\t\t\t\t\t\t\t

\n" -"\t\t\t\t\t\t\t\t\t\tExample: {meta.old_theme} to display " -"the old theme name when a new theme is activated." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 +msgid "Enable Logging" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 -msgid "Invalid nonce" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 +msgid "SMS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 -msgid "Invalid record ID" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 +msgid "Send to Mobile Number" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 -msgid "is" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 +msgid "Enter mobile numbers without dashes (ex: 8885550000)" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 -msgid "is not" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 +msgid "Carrier" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 -msgid "contains" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 +msgid "Select your mobile service provider." msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 -msgid "does not contain" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:24 +msgid "3 River Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 -msgid "starts with" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:25 +msgid "ACS Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 -msgid "ends with" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:26 +msgid "Alltel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 -msgid "regex" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:27 +msgid "AT&T, Cingular, Net10 or Tracfone" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 -msgid "equals" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:28 +msgid "Bell Canada" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 -msgid "not equal" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:29 +msgid "Bell Mobility (Canada), Presidents Choice or Solo Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 -msgid "less than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:30 +msgid "Bell Mobility" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 -msgid "equal or less than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:31 +msgid "Blue Sky Frog" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 -msgid "greater than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:32 +msgid "Bluegrass Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 -msgid "equal or greater than" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:33 +msgid "Boost Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 -msgid "Object ID" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:34 +msgid "BPL Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:407 -msgid "Author Role" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:35 +msgid "Carolina West Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 -msgid "IP" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:36 +msgid "Cellular One" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 -msgid "is on" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:37 +msgid "Cellular South" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 -msgid "is not on" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:38 +msgid "CenturyTel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 -msgid "is before" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:39 +msgid "Clearnet" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 -msgid "is on or before" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:40 +msgid "Comcast" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 -msgid "is after" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:41 +msgid "Corr Wireless Communications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 -msgid "is on or after" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:42 +msgid "Cricket" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 -msgid "Day of Week" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:43 +msgid "Dobson" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:408 -msgid "Connector" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:44 +msgid "Edge Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 -msgid "- Post" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:45 +msgid "Fido" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 -msgid "- Post: Title" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:46 +msgid "Golden Telecom" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 -msgid "- Post: Slug" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:47 +msgid "Houston Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 -msgid "- Post: Content" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:48 +msgid "Idea Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 -msgid "- Post: Excerpt" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:49 +msgid "Illinois Valley Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 -msgid "- Post: Author" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:50 +msgid "Inland Cellular Telephone" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 -msgid "- Post: Status" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:51 +msgid "MCI" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 -msgid "- Post: Format" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:52 +msgid "Metrocall" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 -msgid "- Post: Parent" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:53 +msgid "Metrocall 2-way" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 -msgid "- Post: Featured Image" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:54 +msgid "Metro PCS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 -msgid "None" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:55 +msgid "Midwest Wireless" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 -msgid "Has one" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:56 +msgid "Mobilcomm" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 -msgid "- Post: Comment Status" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:57 +msgid "MTS" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 -msgid "Open" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:58 +msgid "Nextel" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 -msgid "- Post: Comment Count" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:59 +msgid "OnlineBeep" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 -msgid "- User" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:60 +msgid "PCS One" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 -msgid "- User: Role" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:61 +msgid "Public Service Cellular" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 -msgid "- Taxonomy" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:62 +msgid "Qwest" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 -msgid "- Term" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:63 +msgid "Rogers AT&T Wireless and Rogers Canada" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 -msgid "- Term: Parent" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:64 +msgid "Satellink" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 -msgid "You cannot save a rule without any triggers." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:65 +msgid "Sprint or Helio" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 -msgid "You cannot save a rule with an empty first trigger." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:66 +msgid "Suncom and Triton" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 -msgid "There was an error submitting your request, please try again." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:67 +msgid "Surewest Communications" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 -msgid "" -"Are you sure you want to reset occurrences for this rule? This cannot be " -"undone." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:68 +msgid "T-Mobile" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 -msgid "Enter Rule Title here" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:69 +msgid "Telus" msgstr "" -#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 -msgid "" -"Users from the selected roles above will have permission to view, create and " -"edit Stream Notifications. However, only site Administrators can access " -"Stream Notifications Settings." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:70 +msgid "Unicel" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:6 -msgid "Email" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:71 +msgid "US Cellular" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:12 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:58 -msgid "Send to Users" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:72 +msgid "US West" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:17 -msgid "Alert specific users via email." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:73 +msgid "Verizon or Straight Talk" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:20 -msgid "Send to Emails" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:74 +msgid "Virgin Mobile" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:23 -msgid "Alert any arbitrary email address not tied to a specific user." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:75 +msgid "Virgin Mobile Canada" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:26 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:82 -msgid "Subject" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:76 +msgid "West Central Wireless" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:28 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:84 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:89 -msgid "Data tags are allowed." +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:77 +msgid "Western Wireless" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:31 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:87 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:81 -msgid "Message" +#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 +msgid "Data tags are allowed. HTML is not allowed." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-email.php:33 -msgid "HTML and data tags are allowed." +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:49 +msgid "Type" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:8 -msgid "Push" +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:50 +msgid "Occurrences" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:28 -msgid "Missing Required Plugin" +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:238 +msgid "Publish" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:31 -#, php-format -msgid "Please install and activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/class-wp-stream-notifications-list-table.php:239 +msgid "Unpublish" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:35 -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:50 -msgid "Pushover Notifications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:44 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:47 +msgid "Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:43 -msgid "Required Plugin Not Activated" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:46 +msgid "Stream Notification Rules" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:46 -#, php-format -msgid "Please activate the %1$s plugin to enable push alerts." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:49 +msgctxt "Stream Notifications" +msgid "New Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:68 -msgid "Alert specific users via push." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:50 +msgctxt "Stream Notifications" +msgid "Add New Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:72 -#, php-format -msgid "Only those users with a %s in their profile can be selected." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:51 +msgctxt "Stream Notifications" +msgid "New Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:76 -msgid "Pushover User Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:52 +msgctxt "Stream Notifications" +msgid "Edit Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:95 -msgid "Application key is missing" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:53 +msgctxt "Stream Notifications" +msgid "View Stream Notification Rule" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:98 -#, php-format -msgid "Please provide your Application key on %1$s." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:54 +msgctxt "Stream Notifications" +msgid "Search Rules" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:102 -msgid "Pushover Notifications settings page" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:55 +msgctxt "Stream Notifications" +msgid "No notification rules found." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:170 -msgid "Application API Token/Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:56 +msgctxt "Stream Notifications" +msgid "No notification rules found in Trash." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:171 -msgid "Your User Key" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:76 +msgid "Triggers" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:172 -msgid "New Users" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:77 +msgid "Alerts" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:173 -msgid "New Posts are Published" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:78 +msgid "Data Tags" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:174 -msgid "Roles to Notify" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:121 +#: ../extensions/notifications/views/form-templates.php:34 +msgid "+ Add Trigger" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:175 -msgid "New Comments" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:122 +#: ../extensions/notifications/views/form-templates.php:35 +msgid "+ Add Group" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:176 -msgid "Notify the Post Author (for multi-author blogs)" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:129 +msgid "+ Add Alert" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:177 -msgid "Notify users when password resets are requested for their accounts" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:156 +#, php-format +msgid "This rule has occurred %1$s time." +msgid_plural "This rule has occurred %1$s times." +msgstr[0] "" +msgstr[1] "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:168 +msgid "Reset Count" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:178 -msgid "WordPress Core Update is Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:178 +msgid "Basic" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:179 -msgid "Plugin & Theme Updates are Available" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:179 +msgid "Summary message of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:180 -msgid "Use Multiple Application Keys" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:180 +msgid "User ID of the triggered record author." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:181 -msgid "Verify SSL from api.pushover.net" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:181 +msgid "Connector of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-push.php:182 -msgid "Enable Logging" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:182 +msgid "Context of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:6 -msgid "SMS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:183 +msgid "Action of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:12 -msgid "Send to Mobile Number" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:184 +msgid "Timestamp of triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:16 -msgid "Enter mobile numbers without dashes (ex: 8885550000)" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:185 +msgid "IP of the triggered record author." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:19 -msgid "Carrier" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:186 +msgid "Object ID of the triggered record." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:21 -msgid "Select your mobile service provider." +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:188 +msgid "Advanced" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:24 -msgid "3 River Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:190 +msgid "" +"Specific object data of the record, relative to what the object type is:\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_title}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_excerpt}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.post_status}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more Post values\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{object.name}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.taxonomy}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{object.description}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more Term values" +msgstr "" + +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:210 +msgid "" +"Specific user data of the record author:\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\t{author.display_name}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{author.user_email}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\t{author.user_login}\n" +"\t\t\t\t\t\t\t\t\t\t
\n" +"\t\t\t\t\t\t\t\t\t\tSee Codex for more User values" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:25 -msgid "ACS Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:221 +msgid "" +"Specific meta data of the record, used to display specific meta values " +"created by Connectors.\n" +"\t\t\t\t\t\t\t\t\t\t

\n" +"\t\t\t\t\t\t\t\t\t\tExample: {meta.old_theme} to display " +"the old theme name when a new theme is activated." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:26 -msgid "Alltel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:420 +msgid "Invalid nonce" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:27 -msgid "AT&T, Cingular, Net10 or Tracfone" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:424 +msgid "Invalid record ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:28 -msgid "Bell Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:447 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:452 +msgid "is" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:29 -msgid "Bell Mobility (Canada), Presidents Choice or Solo Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:448 +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:453 +msgid "is not" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:30 -msgid "Bell Mobility" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:454 +msgid "contains" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:31 -msgid "Blue Sky Frog" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:455 +msgid "does not contain" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:32 -msgid "Bluegrass Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:456 +msgid "starts with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:33 -msgid "Boost Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:457 +msgid "ends with" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:34 -msgid "BPL Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:458 +msgid "regex" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:35 -msgid "Carolina West Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:462 +msgid "equals" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:36 -msgid "Cellular One" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:463 +msgid "not equal" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:37 -msgid "Cellular South" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:464 +msgid "less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:38 -msgid "CenturyTel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:465 +msgid "equal or less than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:39 -msgid "Clearnet" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:466 +msgid "greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:40 -msgid "Comcast" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:467 +msgid "equal or greater than" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:41 -msgid "Corr Wireless Communications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:477 +msgid "Object ID" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:42 -msgid "Cricket" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:484 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:369 +msgid "Author Role" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:43 -msgid "Dobson" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:499 +msgid "IP" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:44 -msgid "Edge Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:510 +msgid "is on" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:45 -msgid "Fido" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:511 +msgid "is not on" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:46 -msgid "Golden Telecom" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:512 +msgid "is before" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:47 -msgid "Houston Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:513 +msgid "is on or before" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:48 -msgid "Idea Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:514 +msgid "is after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:49 -msgid "Illinois Valley Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:515 +msgid "is on or after" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:50 -msgid "Inland Cellular Telephone" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:520 +msgid "Day of Week" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:51 -msgid "MCI" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:546 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:370 +msgid "Connector" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:52 -msgid "Metrocall" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:571 +msgid "- Post" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:53 -msgid "Metrocall 2-way" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:578 +msgid "- Post: Title" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:54 -msgid "Metro PCS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:584 +msgid "- Post: Slug" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:55 -msgid "Midwest Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:590 +msgid "- Post: Content" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:56 -msgid "Mobilcomm" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:596 +msgid "- Post: Excerpt" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:57 -msgid "MTS" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:602 +msgid "- Post: Author" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:58 -msgid "Nextel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:609 +msgid "- Post: Status" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:59 -msgid "OnlineBeep" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:616 +msgid "- Post: Format" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:60 -msgid "PCS One" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:623 +msgid "- Post: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:61 -msgid "Public Service Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:630 +msgid "- Post: Featured Image" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:62 -msgid "Qwest" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:634 +msgid "None" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:63 -msgid "Rogers AT&T Wireless and Rogers Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:635 +msgid "Has one" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:64 -msgid "Satellink" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:640 +msgid "- Post: Comment Status" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:65 -msgid "Sprint or Helio" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:644 +msgid "Open" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:66 -msgid "Suncom and Triton" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:645 +msgid "Closed" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:67 -msgid "Surewest Communications" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:650 +msgid "- Post: Comment Count" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:68 -msgid "T-Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:656 +msgid "- User" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:69 -msgid "Telus" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:663 +msgid "- User: Role" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:70 -msgid "Unicel" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:670 +msgid "- Taxonomy" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:71 -msgid "US Cellular" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:677 +msgid "- Term" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:72 -msgid "US West" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:684 +msgid "- Term: Parent" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:73 -msgid "Verizon or Straight Talk" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:704 +msgid "You cannot save a rule without any triggers." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:74 -msgid "Virgin Mobile" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:705 +msgid "You cannot save a rule with an empty first trigger." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:75 -msgid "Virgin Mobile Canada" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:706 +msgid "There was an error submitting your request, please try again." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:76 -msgid "West Central Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:707 +msgid "" +"Are you sure you want to reset occurrences for this rule? This cannot be " +"undone." msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:77 -msgid "Western Wireless" +#: ../extensions/notifications/includes/class-wp-stream-notifications-post-type.php:819 +msgid "Enter Rule Title here" msgstr "" -#: ../extensions/notifications/includes/adapters/class-wp-stream-notifications-adapter-sms.php:83 -msgid "Data tags are allowed. HTML is not allowed." +#: ../extensions/notifications/includes/class-wp-stream-notifications-settings.php:38 +msgid "" +"Users from the selected roles above will have permission to view, create and " +"edit Stream Notifications. However, only site Administrators can access " +"Stream Notifications Settings." msgstr "" #: ../extensions/notifications/views/form-templates.php:7 @@ -4595,19 +4971,25 @@ msgstr "" msgid "Delete Group" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:125 +#: ../extensions/reports/class-wp-stream-reports.php:123 msgid "Cheating huh?" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:223 +#: ../extensions/reports/class-wp-stream-reports.php:143 +#: ../extensions/reports/class-wp-stream-reports.php:144 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:51 +msgid "Reports" +msgstr "" + +#: ../extensions/reports/class-wp-stream-reports.php:221 msgid "Cancel" msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:224 +#: ../extensions/reports/class-wp-stream-reports.php:222 msgid "Do you really want to delete this section? This cannot be undone." msgstr "" -#: ../extensions/reports/class-wp-stream-reports.php:280 +#: ../extensions/reports/class-wp-stream-reports.php:278 #, php-format msgid "" "There's nothing here! Do you want to create some reports?" @@ -4617,158 +4999,156 @@ msgstr "" msgid "That time interval is not available." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:76 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:68 msgid "All Activity by Author" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:82 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:74 msgid "All Activity by Action" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:88 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:80 msgid "All Activity by Author Role" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:95 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:87 msgid "Comments Activity by Action" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:126 -#: ../extensions/reports/views/all.php:10 -#: ../extensions/reports/views/all.php:19 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:118 +#: ../extensions/reports/views/all.php:3 #: ../extensions/reports/views/examples.php:2 msgid "Stream Reports" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:127 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:119 msgid "" "Generate stunning visuals of logged-in user activity and share them with " "stakeholders or your clients." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:129 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:121 msgid "Fully-interactive charts" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:130 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:122 msgid "Monitor team contributions" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:131 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:123 msgid "Responsive for any screen size" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:275 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:267 msgid "All Others" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:285 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:277 #, php-format msgid "User ID: %d" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:326 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:309 msgid "All Activity" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:328 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:311 msgid "Connector Activity" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:336 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:319 msgid "Context Activity" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:344 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:327 msgid "Actions Activity" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:379 -msgid "Site Activity" +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:390 +msgid "Site" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:473 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:435 msgid "Unknown" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:472 #, php-format msgid "Report %d" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:529 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:491 #, php-format +msgctxt "1: Action 2: Dataset 3: Selector" msgid "%1$s in %2$s by %3$s" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:535 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:497 #, php-format +msgctxt "1: Action 3: Selector" msgid "All %1$s by %3$s" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:542 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:504 #, php-format +msgctxt "2: Dataset 3: Selector" msgid "All Activity in %2$s by %3$s" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:548 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:510 #, php-format +msgctxt "3: Selector" msgid "All Activity by %3$s" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:729 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:691 msgid "Chart height" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:735 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:697 msgid "px" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:737 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:699 msgid "Apply" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:783 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:745 msgid "All Contexts" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:797 +#: ../extensions/reports/includes/class-wp-stream-reports-meta-boxes.php:759 msgid "All Actions" msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:62 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:57 msgid "" "Users from the selected roles above will have permission to view and edit " "Stream Reports. However, only site Administrators can access Stream Reports " "Settings." msgstr "" -#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:243 +#: ../extensions/reports/includes/class-wp-stream-reports-settings.php:238 msgid "Uh no! This wasn't suppose to happen :(" msgstr "" -#: ../extensions/reports/views/all.php:6 -msgid "1 site" -msgstr "" - -#: ../extensions/reports/views/all.php:13 -#: ../extensions/reports/views/all.php:21 +#: ../extensions/reports/views/all.php:5 msgid "New Report" msgstr "" -#: ../extensions/reports/views/all.php:38 +#: ../extensions/reports/views/all.php:20 msgid "Well, this is embarrassing. There are no reports yet!" msgstr "" -#: ../extensions/reports/views/all.php:41 +#: ../extensions/reports/views/all.php:23 msgid "Add a new one" msgstr "" -#: ../extensions/reports/views/all.php:43 +#: ../extensions/reports/views/all.php:25 msgid "or" msgstr "" -#: ../extensions/reports/views/all.php:45 +#: ../extensions/reports/views/all.php:27 msgid "Generate some for me" msgstr "" @@ -4811,3 +5191,25 @@ msgstr "" #: ../includes/feeds/atom.php:7 ../includes/feeds/rss-2.0.php:21 msgid "Stream Feed" msgstr "" + +#: ../stream.php:100 +msgid "Stream: Could not load chosen DB driver." +msgstr "" + +#: ../stream.php:151 +msgid "Stream requires PHP version 5.3+, plugin is currently NOT ACTIVE." +msgstr "" + +#: ../stream.php:192 ../stream.php:207 +msgid "Deprecated Plugins Found" +msgstr "" + +#: ../stream.php:193 +msgid "" +"The following plugins are deprecated and will be deactivated in order to " +"activate" +msgstr "" + +#: ../stream.php:202 +msgid "Continue" +msgstr ""