From 6bf8f758bebdda78fcfaec52cf11bf8f52feb266 Mon Sep 17 00:00:00 2001 From: Nikola Date: Thu, 28 Sep 2017 23:18:05 +0200 Subject: [PATCH 01/27] Load styles when main shortcode is used --- includes/shortcodes.php | 5 +++++ readme.txt | 3 +++ 2 files changed, 8 insertions(+) diff --git a/includes/shortcodes.php b/includes/shortcodes.php index b33dcdd..7091066 100755 --- a/includes/shortcodes.php +++ b/includes/shortcodes.php @@ -605,6 +605,11 @@ public function displaySermonSorting( $atts = array() ) { * @return string */ function displaySermons( $atts = array() ) { + // enqueue scripts and styles + if ( ! defined( 'SM_ENQUEUE_SCRIPTS_STYLES' ) ) { + define( 'SM_ENQUEUE_SCRIPTS_STYLES', true ); + } + // default options $args = array( 'per_page' => '10', diff --git a/readme.txt b/readme.txt index 39b0ae5..d13f91f 100755 --- a/readme.txt +++ b/readme.txt @@ -93,6 +93,9 @@ Visit the [plugin homepage](https://wpforchurch.com/wordpress-plugins/sermon-man 2. Sermon Files ## Changelog ## +### 2.8 ### +* Fix styles not loading when "[sermons]" shortcode is used without filters + ### 2.7.2 ### * Fix 404 on series, preacher, topic, book and service type pages From 77487a34a9bb4a08d057e1eb17e7d564389ab835 Mon Sep 17 00:00:00 2001 From: Nikola Date: Fri, 29 Sep 2017 12:05:09 +0200 Subject: [PATCH 02/27] Fix image_size not working in main shortcode --- includes/shortcodes.php | 5 +++++ includes/template-tags.php | 2 +- readme.txt | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/includes/shortcodes.php b/includes/shortcodes.php index 7091066..a6274b9 100755 --- a/includes/shortcodes.php +++ b/includes/shortcodes.php @@ -779,6 +779,11 @@ function displaySermons( $atts = array() ) { $listing = new WP_Query( $query_args ); + // set image size + add_filter( 'wpfc_sermon_excerpt_sermon_image_size', function () use ( $args ) { + return $args['image_size']; + } ); + if ( $listing->have_posts() ) { ob_start(); ?>
diff --git a/includes/template-tags.php b/includes/template-tags.php index 0b602b6..e52f32a 100755 --- a/includes/template-tags.php +++ b/includes/template-tags.php @@ -425,7 +425,7 @@ function wpfc_sermon_excerpt() { global $post; ?>
- +

diff --git a/readme.txt b/readme.txt index d13f91f..ab4a130 100755 --- a/readme.txt +++ b/readme.txt @@ -95,6 +95,7 @@ Visit the [plugin homepage](https://wpforchurch.com/wordpress-plugins/sermon-man ## Changelog ## ### 2.8 ### * Fix styles not loading when "[sermons]" shortcode is used without filters +* Fix image_size not working in "[sermons]" shortcode ### 2.7.2 ### * Fix 404 on series, preacher, topic, book and service type pages From 50bfa9a95674ccf9422cb822a487bdc58926008f Mon Sep 17 00:00:00 2001 From: Nikola Date: Fri, 29 Sep 2017 12:34:51 +0200 Subject: [PATCH 03/27] Remove array dereferencing for the sake of PHP 5.3 compatibility --- includes/class-sm-error-recovery.php | 6 ++++-- readme.txt | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/includes/class-sm-error-recovery.php b/includes/class-sm-error-recovery.php index 79dbe48..5698870 100644 --- a/includes/class-sm-error-recovery.php +++ b/includes/class-sm-error-recovery.php @@ -190,7 +190,8 @@ public static function reset_db() { * Displays WordPress admin error message */ public static function render_admin_message() { - $plugin_name = get_plugin_data( constant( self::$_plugin_main_file ) )['Name']; + $plugin_data = get_plugin_data( constant( self::$_plugin_main_file ) ); + $plugin_name = $plugin_data['Name']; $old_error = get_option( '_sm_recovery_last_fatal_error_hash' ) === md5( get_option( '_sm_recovery_last_fatal_error' ) ); ?> @@ -242,13 +243,14 @@ public static function render_admin_message() { * Enqueue required scripts for displaying in admin area */ public static function enqueue_scripts_styles() { + $plugin_data = get_plugin_data( constant( self::$_plugin_main_file ) ); wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'jquery-ui-dialog' ); wp_enqueue_script( 'sm-error-recovery', SERMON_MANAGER_URL . 'js/error-recovery.js', array(), SERMON_MANAGER_VERSION ); wp_localize_script( 'sm-error-recovery', 'sm_error_recovery_data', array( 'stacktrace' => urlencode( str_replace( ABSPATH, '~/', get_option( '_sm_recovery_last_fatal_error' ) ) ), 'environment_info' => 'WordPress: ' . $GLOBALS['wp_version'] . '; Server: ' . ( function_exists( 'apache_get_version' ) ? apache_get_version() : 'N/A' ) . '; PHP: ' . PHP_VERSION . '; Sermon Manager:' . SERMON_MANAGER_VERSION . ';', - 'plugin_name' => get_plugin_data( constant( self::$_plugin_main_file ) )['Name'], + 'plugin_name' => $plugin_data['Name'], ) ); wp_enqueue_style( 'sm-error-recovery', SERMON_MANAGER_URL . 'css/error-recovery.css', array(), SERMON_MANAGER_VERSION ); diff --git a/readme.txt b/readme.txt index ab4a130..6cbb6e4 100755 --- a/readme.txt +++ b/readme.txt @@ -96,6 +96,7 @@ Visit the [plugin homepage](https://wpforchurch.com/wordpress-plugins/sermon-man ### 2.8 ### * Fix styles not loading when "[sermons]" shortcode is used without filters * Fix image_size not working in "[sermons]" shortcode +* Fix compatibility with PHP 5.3 ### 2.7.2 ### * Fix 404 on series, preacher, topic, book and service type pages From 8203c4e0a160c515b187b9fc0e756687cba1e17d Mon Sep 17 00:00:00 2001 From: Nikola Date: Fri, 29 Sep 2017 12:40:54 +0200 Subject: [PATCH 04/27] Add support for PHP 5.3-5.5 --- readme.txt | 3 ++- sermons.php | 22 ++++++++++++++++++++-- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index 6cbb6e4..a141ada 100755 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: http://wpforchurch.com/ Tags: church, sermon, sermons, preaching, podcasting, manage, managing, podcasts, itunes Requires at least: 4.5 Tested up to: 4.8.2 -Requires PHP: 5.6 +Requires PHP: 5.3 Stable tag: 2.7.2 License: GPLv2 License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -97,6 +97,7 @@ Visit the [plugin homepage](https://wpforchurch.com/wordpress-plugins/sermon-man * Fix styles not loading when "[sermons]" shortcode is used without filters * Fix image_size not working in "[sermons]" shortcode * Fix compatibility with PHP 5.3 +* Sermon Manager now supports PHP 5.5, 5.4 and 5.3, but we still recommend to use at least PHP 5.6 ### 2.7.2 ### * Fix 404 on series, preacher, topic, book and service type pages diff --git a/sermons.php b/sermons.php index ab838be..2c56d33 100755 --- a/sermons.php +++ b/sermons.php @@ -15,7 +15,26 @@ defined( 'ABSPATH' ) or die; -// All files must be PHP 5.6 compatible +// All files must be PHP 5.3 compatible + +// Check the PHP version +if ( version_compare( PHP_VERSION, '5.3.0', '<' ) ) { + if ( is_admin() && ! get_option( 'dismissed-render_php_version_warning', 0 ) ) { + add_action( 'admin_notices', 'sm_render_php_version_error' ); + } + + function sm_render_php_version_error() { + ?> +

+

+ PHP %s, but Sermon Manager requires at least PHP %s.", 'sermon-manager-for-wordpress' ), PHP_VERSION, '5.3.0' ); ?> +

+
+ Date: Fri, 29 Sep 2017 13:26:00 +0200 Subject: [PATCH 05/27] Fix Recovery catching 3rd party errors Closes #112 --- includes/class-sm-error-recovery.php | 18 ++++++++++++++---- readme.txt | 1 + 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/includes/class-sm-error-recovery.php b/includes/class-sm-error-recovery.php index 5698870..c7179b9 100644 --- a/includes/class-sm-error-recovery.php +++ b/includes/class-sm-error-recovery.php @@ -106,9 +106,19 @@ public static function do_catch() { } $mysqli->query( $sql ); - $headers = get_headers( get_site_url() ); - if ( substr( $headers[0], 9, 3 ) == 500 ) { - self::reset_db(); + if ( strpos( $_SERVER['REQUEST_URI'], 'wp-admin' ) === false ) { + $content = file_get_contents( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ); + $headers = get_headers( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ); + if ( ! ( strpos( strtolower( $content ), 'fatal error' ) === false && + $content !== '' && + substr( $headers[0], 9, 3 ) != 500 ) ) { + self::reset_db(); + } + } else { + if ( strpos( self::$_error['message'], 'sermon' ) === false && + strpos( $_SERVER['REQUEST_URI'], 'sermon' ) === false ) { + self::reset_db(); + } } $mysqli->query( "UPDATE {$table_prefix}options SET option_value = '0' WHERE option_name = '_sm_recovery_do_not_catch'" ); @@ -243,7 +253,7 @@ public static function render_admin_message() { * Enqueue required scripts for displaying in admin area */ public static function enqueue_scripts_styles() { - $plugin_data = get_plugin_data( constant( self::$_plugin_main_file ) ); + $plugin_data = get_plugin_data( constant( self::$_plugin_main_file ) ); wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'jquery-ui-dialog' ); wp_enqueue_script( 'sm-error-recovery', SERMON_MANAGER_URL . 'js/error-recovery.js', array(), SERMON_MANAGER_VERSION ); diff --git a/readme.txt b/readme.txt index a141ada..efe825b 100755 --- a/readme.txt +++ b/readme.txt @@ -97,6 +97,7 @@ Visit the [plugin homepage](https://wpforchurch.com/wordpress-plugins/sermon-man * Fix styles not loading when "[sermons]" shortcode is used without filters * Fix image_size not working in "[sermons]" shortcode * Fix compatibility with PHP 5.3 +* Fix Recovery catching 3rd party errors * Sermon Manager now supports PHP 5.5, 5.4 and 5.3, but we still recommend to use at least PHP 5.6 ### 2.7.2 ### From b978270f1af0e8fc36f7a27fbc811dc2d03cbc29 Mon Sep 17 00:00:00 2001 From: GITNE Date: Sat, 30 Sep 2017 07:03:00 +0200 Subject: [PATCH 06/27] Create a current POT file from source code Remove old and missleading sermon-manager-en_US.pot file. POT files are never supposed to have a locale. Convert new line characters in PO files from Windows (CRLF) to Unix (LF) for compatibility with original gettext tools Fix attribute and HTML escaping of messages Make all message identifiers static with proper parametrization Fix plural messages --- includes/admin-functions.php | 37 +- includes/options.php | 299 +- includes/taxonomy-images/taxonomy-images.php | 26 +- includes/types-taxonomies.php | 76 +- languages/sermon-manager-en_US.pot | 824 ------ languages/sermon-manager.pot | 2550 +++++++++--------- views/archive-wpfc_sermon.php | 23 +- views/taxonomy-wpfc_bible_book.php | 22 +- views/taxonomy-wpfc_preacher.php | 22 +- views/taxonomy-wpfc_sermon_series.php | 22 +- views/taxonomy-wpfc_sermon_topics.php | 22 +- views/taxonomy-wpfc_service_type.php | 22 +- 12 files changed, 1572 insertions(+), 2373 deletions(-) mode change 100755 => 100644 includes/admin-functions.php mode change 100755 => 100644 includes/taxonomy-images/taxonomy-images.php mode change 100755 => 100644 includes/types-taxonomies.php delete mode 100644 languages/sermon-manager-en_US.pot mode change 100755 => 100644 views/archive-wpfc_sermon.php mode change 100755 => 100644 views/taxonomy-wpfc_bible_book.php mode change 100755 => 100644 views/taxonomy-wpfc_preacher.php mode change 100755 => 100644 views/taxonomy-wpfc_sermon_series.php mode change 100755 => 100644 views/taxonomy-wpfc_sermon_topics.php mode change 100755 => 100644 views/taxonomy-wpfc_service_type.php diff --git a/includes/admin-functions.php b/includes/admin-functions.php old mode 100755 new mode 100644 index a7f993a..72bf3e5 --- a/includes/admin-functions.php +++ b/includes/admin-functions.php @@ -121,19 +121,19 @@ function wpfc_sermon_updated_messages( $messages ) { $messages['wpfc_sermon'] = array( 0 => '', // Unused. Messages start at index 1. - 1 => sprintf( __( 'Sermon updated. View sermon', 'sermon-manager' ), esc_url( get_permalink( $post_ID ) ) ), - 2 => __( 'Custom field updated.', 'sermon-manager' ), - 3 => __( 'Custom field deleted.', 'sermon-manager' ), - 4 => __( 'Sermon updated.', 'sermon-manager' ), + 1 => wp_sprintf( esc_html__( 'Sermon updated. %s', 'sermon-manager' ), '' . esc_html__( 'View sermon', 'sermon-manager' ) . '' ), + 2 => esc_html__( 'Custom field updated.', 'sermon-manager' ), + 3 => esc_html__( 'Custom field deleted.', 'sermon-manager' ), + 4 => esc_html__( 'Sermon updated.', 'sermon-manager' ), /* translators: %s: date and time of the revision */ - 5 => isset( $_GET['revision'] ) ? sprintf( __( 'Sermon restored to revision from %s', 'sermon-manager' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, - 6 => sprintf( __( 'Sermon published. View sermon', 'sermon-manager' ), esc_url( get_permalink( $post_ID ) ) ), - 7 => __( 'Sermon saved.', 'sermon-manager' ), - 8 => sprintf( __( 'Sermon submitted. Preview sermon', 'sermon-manager' ), esc_url( add_query_arg( 'preview', 'true', get_permalink( $post_ID ) ) ) ), - 9 => sprintf( __( 'Sermon scheduled for: %1$s. Preview sermon', 'sermon-manager' ), - // translators: Publish box date format, see http://php.net/date - date_i18n( __( 'M j, Y @ G:i', 'sermon-manager' ), strtotime( $post->post_date ) ), esc_url( get_permalink( $post_ID ) ) ), - 10 => sprintf( __( 'Sermon draft updated. Preview sermon', 'sermon-manager' ), esc_url( add_query_arg( 'preview', 'true', get_permalink( $post_ID ) ) ) ), + 5 => isset( $_GET['revision'] ) ? wp_sprintf( esc_html__( 'Sermon restored to revision from %s', 'sermon-manager' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, + 6 => wp_sprintf( esc_html__( 'Sermon published. %s', 'sermon-manager' ), '' . esc_html__( 'View sermon', 'sermon-manager' ) . '' ), + 7 => esc_html__( 'Sermon saved.', 'sermon-manager' ), + 8 => wp_sprintf( esc_html__( 'Sermon submitted. %s', 'sermon-manager' ), '' . esc_html__( 'Preview sermon', 'sermon-manager' ) . '' ), + 9 => wp_sprintf( esc_html__( 'Sermon scheduled for: %1$s. %2$s', 'sermon-manager' ), + '' . wp_sprintf( esc_html__( '%1$s at %2$s', 'sermon-manager'), get_post_time( get_option( 'date_format' ), false, null, true ), get_post_time( get_option( 'time_format' ), false, null, true ) ) . '', + '' . esc_html__( 'Preview sermon', 'sermon-manager' ) . '' ), + 10 => wp_sprintf( esc_html__( 'Sermon draft updated. %s', 'sermon-manager' ), '' . esc_html__( 'View sermon', 'sermon-manager' ) . '' ), ); return $messages; @@ -209,7 +209,7 @@ function wpfc_sermon_columns( $column ) { global $post; if ( empty( $post->ID ) ) { - echo 'Error. Can\'t find sermon ID.'; + echo wp_sprintf( esc_html__( '%s Can’t find sermon ID.', 'sermon-manager' ), '' . esc_html__( 'Error:', 'sermon-manager' ) . '' ); return; } @@ -238,7 +238,7 @@ function wpfc_sermon_columns( $column ) { $data = wpfc_entry_views_get( array( 'post_id' => $post->ID ) ); break; case "preached": - $data = sm_get_the_date( '', $post ); + $data = date_i18n( get_option ( 'date_format' ), sm_get_the_date( 'U', $post ) ); break; case "passage": $data = get_post_meta( $post->ID, 'bible_passage', true ); @@ -248,7 +248,8 @@ function wpfc_sermon_columns( $column ) { } if ( $data instanceof WP_Error ) { - echo 'Error: ' . $data->get_error_message(); + if ( is_rtl() ) echo $data->get_error_message() . ' ' . esc_html__( 'Error:', 'sermon-manager' ) . ''; + else echo '' . esc_html__( 'Error:', 'sermon-manager' ) . ' ' . $data->get_error_message(); return; } @@ -302,14 +303,14 @@ function wpfc_dashboard() { // format the number to current locale $num = number_format_i18n( $num_posts->publish ); // put correct singular or plural text - $text = _n( 'Sermon', 'Sermons', intval( $num_posts->publish ) ); + $text = wp_sprintf( esc_html( _n( '%s sermon', '%s sermons', intval( $num_posts->publish ), 'sermon-manager' ) ), $num ); $count = '
  • '; if ( current_user_can( 'edit_posts' ) ) { - $count .= '' . $num . ' ' . $text . ''; + $count .= '' . $text . ''; } else { - $count .= $num . ' ' . $text; + $count .= $text; } $count .= '
  • '; diff --git a/includes/options.php b/includes/options.php index b5271f5..3274ddd 100755 --- a/includes/options.php +++ b/includes/options.php @@ -96,7 +96,7 @@ function wpfc_sermon_manager_plugin_row_meta( $links, $file ) { $links[] = $link; } - $links[] = '' . __( 'Support', 'sermon-manager' ) . ''; + $links[] = '' . esc_html__( 'Support', 'sermon-manager' ) . ''; return $links; } @@ -194,23 +194,23 @@ function wpfc_sermon_options_render_form() {

    -

    +

    '; print_r($sermon_settings); echo ''; ?> -

    +

    @@ -219,25 +219,23 @@ function wpfc_sermon_options_render_form() {
    -

    +

    -

    Sign up today and get support from the developers who are building the Sermon Manager.', 'sermon-manager' ); ?>

    -
    +

    ' . esc_html__( 'Sign up', 'sermon-manager' ) . '' ); ?>

    +
    Free Support Priority - Support + target="_blank" class="button-secondary">  +
    -
    - We offer limited free support via WordPress.org +
    +
    -

    +

    - - -
    - Find out more in our Knowledgebase +
    + ' . esc_html__( 'knowledge base', 'sermon-manager' ) . '' ); ?>
    -

    +

    - -

    - -
    +

    +
    Submit Your Idea + target="_blank" class="button-secondary">
    -
    @@ -282,82 +274,84 @@ function wpfc_sermon_options_render_form() {
    -

    +

    - + - + - + - + - + - + - + - + - + - + - - + +
    + value="" + placeholder=""/>
    + value="" + placeholder=""/>
    ' . esc_html__( 'sermons/preacher', 'sermon-manager' ) . '', '' . esc_html__( 'sermons/series', 'sermon-manager' ) . '' ); ?>




    @@ -365,7 +359,7 @@ function wpfc_sermon_options_render_form() {

    - + value=""/> +
    @@ -411,24 +404,24 @@ function wpfc_sermon_options_render_form() {
    -

    +

    - + - + @@ -461,7 +459,7 @@ function wpfc_sermon_options_render_form() {
    -

    +


    - bib.ly.', 'sermon-manager' ); ?> + ESV', + 'NET', + 'KJV', + 'LEB', + '' . esc_html__( 'bib.ly', 'sermon-manager' ) . '' ); ?>
    - + ESV' ); ?>
    - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + -
    + placeholder="" + value=""/>
    + placeholder="" + value=""/>
    + placeholder="" + value=""/>
    + placeholder="" + value=""/>
    + placeholder="" + value=""/>

    - + ' . htmlspecialchars( '©' ) . ''); ?>

    + placeholder="" + value=""/>
    + placeholder="" + value=""/>
    + placeholder="" + value=""/> -

    +

    + placeholder="" + value=""/> -

    +

    + placeholder=""> -

    +

    + placeholder="" + value=""/> -

    +

    + placeholder="" + value=""/> -

    +

    + value=""/> + value=""/> -

    +

    + placeholder="" + value=""/> -

    +

    + placeholder="" + value=""/> -

    +


    -

    podtrac.com', 'sermon-manager' ); ?>

    +

    podtrac.com' ); ?>

    Enable HTML desciption
    -

    Enables showing of HTML in iTunes description field. Uncheck if - description looks messy.

    +

    Number of podcasts to show -

    Shows custom podcast count. If not defined, it uses WordPress - default count.

    +


    - -

    -
    - - -

    - -

    -

    - -

    - -

    - -

    - -

    - -

    -

    - +

    +
    + +

    + +

    ' . esc_html__( 'Feed Validator', 'sermon-manager' ) . '' ); ?> +

    + +

    ' . esc_html__( 'Submit Your Podcast', 'sermon-manager' ) . '' ); ?> +

    + +

    ' . esc_html__( 'FeedBurner', 'sermon-manager' ) . '' ); ?> +

    + +

    ' . esc_html__( 'iTunes FAQ for Podcast Makers', 'sermon-manager' ) . '' ); ?> +

    + value=""/>

    @@ -767,7 +752,7 @@ class="itunes_cover_image_field" function wpfc_plugin_action_links( $links, $file ) { if ( $file == plugin_basename( __FILE__ ) ) { - $wpfc_links = '' . __( 'Settings' ) . ''; + $wpfc_links = '' . esc_html__( 'Settings', 'sermon-manager' ) . ''; // make the 'Settings' link appear first array_unshift( $links, $wpfc_links ); } diff --git a/includes/taxonomy-images/taxonomy-images.php b/includes/taxonomy-images/taxonomy-images.php old mode 100755 new mode 100644 index 750b24d..c0b08e7 --- a/includes/taxonomy-images/taxonomy-images.php +++ b/includes/taxonomy-images/taxonomy-images.php @@ -127,8 +127,8 @@ function sermon_image_plugin_modal_button( $fields, $post ) { $image_id = (int) $post->ID; $o = '
    '; - $o .= '' . sprintf( esc_html__( 'Associate with %1$s', 'sermon-manager' ), '' . esc_html__( 'this term', 'sermon-manager' ) . '' ) . ''; - $o .= '' . sprintf( esc_html__( 'Remove association with %1$s', 'sermon-manager' ), '' . esc_html__( 'this term', 'sermon-manager' ) . '' ) . ''; + $o .= '' . wp_sprintf( esc_html__( 'Associate with %1$s', 'sermon-manager' ), '' . esc_html__( 'this term', 'sermon-manager' ) . '' ) . ''; + $o .= '' . wp_sprintf( esc_html__( 'Remove association with %1$s', 'sermon-manager' ), '' . esc_html__( 'this term', 'sermon-manager' ) . '' ) . ''; $o .= ''; $o .= ''; $o .= ''; @@ -843,9 +843,9 @@ function sermon_image_plugin_control_image( $term_id, $taxonomy ) { $thickbox_class = version_compare( get_bloginfo( 'version' ), 3.5 ) >= 0 ? '' : 'thickbox'; $o = "\n" . '
    '; - $o .= "\n" . ''; - $o .= "\n" . '' . esc_html__( 'Upload.', 'sermon-images' ) . ''; - $o .= "\n" . '' . esc_html__( 'Delete', 'sermon-images' ) . ''; + $o .= "\n" . ''; + $o .= "\n" . '' . esc_html__( 'Upload.', 'sermon-images' ) . ''; + $o .= "\n" . '' . esc_html__( 'Delete', 'sermon-images' ) . ''; $o .= "\n" . ''; $o .= "\n" . ''; @@ -1159,7 +1159,7 @@ function sermon_image_plugin_cache_queried_images() { */ function sermon_image_plugin_check_taxonomy( $taxonomy, $filter ) { if ( ! taxonomy_exists( $taxonomy ) ) { - trigger_error( sprintf( esc_html__( 'The %1$s argument for %2$s is set to %3$s which is not a registered taxonomy. Please check the spelling and update the argument.', 'sermon-manager' ), + trigger_error( wp_sprintf( esc_html__( 'The %1$s argument for %2$s is set to %3$s which is not a registered taxonomy. Please check the spelling and update the argument.', 'sermon-manager' ), '' . esc_html__( 'taxonomy', 'sermon-manager' ) . '', '' . esc_html( $filter ) . '', '' . esc_html( $taxonomy ) . '' @@ -1171,13 +1171,13 @@ function sermon_image_plugin_check_taxonomy( $taxonomy, $filter ) { $settings = get_option( 'sermon_image_plugin_settings' ); if ( ! isset( $settings['taxonomies'] ) ) { - trigger_error( sprintf( esc_html__( 'No taxonomies have image support. %1$s', 'sermon-manager' ), sermon_images_plugin_settings_page_link() ) ); + trigger_error( wp_sprintf( esc_html__( 'No taxonomies have image support. %1$s', 'sermon-manager' ), sermon_images_plugin_settings_page_link() ) ); return false; } if ( ! in_array( $taxonomy, (array) $settings['taxonomies'] ) ) { - trigger_error( sprintf( esc_html__( 'The %1$s taxonomy does not have image support. %2$s', 'sermon-manager' ), + trigger_error( wp_sprintf( esc_html__( 'The %1$s taxonomy does not have image support. %2$s', 'sermon-manager' ), '' . esc_html( $taxonomy ) . '', sermon_images_plugin_settings_page_link() ) ); @@ -1203,7 +1203,7 @@ function sermon_image_plugin_check_taxonomy( $taxonomy, $filter ) { * @since 0.7 */ function sermon_image_plugin_please_use_filter( $function, $filter ) { - trigger_error( sprintf( esc_html__( 'The %1$s has been called directly. Please use the %2$s filter instead.', 'sermon-manager' ), + trigger_error( wp_sprintf( esc_html__( 'The %1$s has been called directly. Please use the %2$s filter instead.', 'sermon-manager' ), '' . esc_html( $function . '()' ) . '', '' . esc_html( $filter ) . '' ) ); @@ -1299,10 +1299,10 @@ function sermon_images_admin_enqueue_scripts() { wp_localize_script( 'sermon-images-media-modal', 'taxonomyImagesMediaModal', array( 'wp_media_post_id' => 0, 'attachment_id' => 0, - 'uploader_title' => __( 'Set ' . ( \SermonManager::getOption( 'preacher_label' ) ?: 'Preacher' ) . '\'s image', 'sermon-manager' ), - 'uploader_button_text' => __( 'Set ' . ( \SermonManager::getOption( 'preacher_label' ) ?: 'Preacher' ) . '\'s image', 'sermon-manager' ), - 'series_title' => __( 'Set Series image', 'sermon-manager' ), - 'series_button_text' => __( 'Set Series image', 'sermon-manager' ), + 'uploader_title' => wp_sprintf( esc_html__( 'Set %s’s image', 'sermon-manager' ), \SermonManager::getOption( 'preacher_label' ) ? : esc_html__ ( 'Preacher', 'sermon-manager' ) ), + 'uploader_button_text' => wp_sprintf( esc_html__( 'Set %s’s image', 'sermon-manager' ), \SermonManager::getOption( 'preacher_label' ) ? : esc_html__ ( 'Preacher', 'sermon-manager' ) ), + 'series_title' => esc_html__( 'Set Series image', 'sermon-manager' ), + 'series_button_text' => esc_html__( 'Set Series image', 'sermon-manager' ), 'default_img_src' => sermon_image_plugin_url( 'default.png' ) ) ); diff --git a/includes/types-taxonomies.php b/includes/types-taxonomies.php old mode 100755 new mode 100644 index 1208f19..2f11dee --- a/includes/types-taxonomies.php +++ b/includes/types-taxonomies.php @@ -90,19 +90,19 @@ function create_wpfc_sermon_taxonomies() { //Preachers $labels = array( - 'name' => __( \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) . 's' : 'Preachers', 'sermon-manager' ), - 'singular_name' => __( \SermonManager::getOption( 'preacher_label' ) ?: 'Preacher', 'sermon-manager' ), - 'menu_name' => __( \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) . 's' : 'Preachers', 'sermon-manager' ), - 'search_items' => __( 'Search' . ( \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) . 's' : 'preachers' ), 'sermon-manager' ), - 'popular_items' => __( 'Most frequent ' . ( \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) . 's' : 'preachers' ), 'sermon-manager' ), - 'all_items' => __( 'All ' . ( \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) . 's' : 'preachers' ), 'sermon-manager' ), - 'edit_item' => __( 'Edit ' . ( \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) . 's' : 'preachers' ), 'sermon-manager' ), - 'update_item' => __( 'Update ' . ( \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) . 's' : 'preachers' ), 'sermon-manager' ), - 'add_new_item' => __( 'Add new ' . ( \SermonManager::getOption( 'preacher_label' ) ?: 'preacher' ), 'sermon-manager' ), - 'new_item_name' => __( 'New ' . ( \SermonManager::getOption( 'preacher_label' ) ?: 'preacher' ) . ' name', 'sermon-manager' ), - 'separate_items_with_commas' => __( 'Separate multiple ' . ( \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) . 's' : 'preachers' ) . ' with commas', 'sermon-manager' ), - 'add_or_remove_items' => __( 'Add or remove ' . ( \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) . 's' : 'preachers' ), 'sermon-manager' ), - 'choose_from_most_used' => __( 'Choose from most frequent ' . ( \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) . 's' : 'preachers' ), 'sermon-manager' ), + 'name' => \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) : __( 'Preachers', 'sermon-manager' ), + 'singular_name' => \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) : __( 'Preacher', 'sermon-manager' ), + 'menu_name' => __( 'Preachers', 'sermon-manager' ), + 'search_items' => wp_sprintf( __( 'Search %s', 'sermon-manager' ), \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) : __( 'Preacher', 'sermon-manager' ) ), + 'popular_items' => wp_sprintf( __( 'Most frequent %s', 'sermon-manager' ), \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) : __( 'Preacher', 'sermon-manager' ) ), + 'all_items' => wp_sprintf( __( 'All %s', 'sermon-manager' ), \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) : __( 'Preachers', 'sermon-manager' ) ), + 'edit_item' => wp_sprintf( __( 'Edit %s', 'sermon-manager' ), \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) : __( 'Preacher', 'sermon-manager' ) ), + 'update_item' => wp_sprintf( __( 'Update %s', 'sermon-manager' ), \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) : __( 'Preacher', 'sermon-manager' ) ), + 'add_new_item' => wp_sprintf( __( 'Add new %s', 'sermon-manager' ), \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) : __( 'Preacher', 'sermon-manager' ) ), + 'new_item_name' => wp_sprintf( __( 'New %s', 'sermon-manager' ), \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) : __( 'Preacher', 'sermon-manager' ) ), + 'separate_items_with_commas' => wp_sprintf( __( 'Separate multiple %s with commas', 'sermon-manager' ), \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) : __( 'Preachers', 'sermon-manager' ) ), + 'add_or_remove_items' => wp_sprintf( __( 'Add or remove %s', 'sermon-manager' ), \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) : __( 'Preacher', 'sermon-manager' ) ), + 'choose_from_most_used' => wp_sprintf( __( 'Choose from most frequent %s', 'sermon-manager' ), \SermonManager::getOption( 'preacher_label' ) ? \SermonManager::getOption( 'preacher_label' ) : __( 'Preachers', 'sermon-manager' ) ), 'parent_item' => null, 'parent_item_colon' => null, ); @@ -270,7 +270,7 @@ function wpfc_sermon_metaboxes() { $cmb = new_cmb2_box( array( 'id' => 'wpfc_sermon_details', - 'title' => __( 'Sermon Details', 'sermon-manager' ), + 'title' => esc_html__( 'Sermon Details', 'sermon-manager' ), 'object_types' => array( 'wpfc_sermon', ), // Post type 'context' => 'normal', 'priority' => 'high', @@ -298,30 +298,30 @@ function wpfc_sermon_metaboxes() { } $cmb->add_field( array( - 'name' => __( 'Date Preached', 'sermon-manager' ), - 'desc' => '
    (format: ' . $date_format . ')', + 'name' => esc_html__( 'Date Preached', 'sermon-manager' ), + 'desc' => '
    ' . wp_sprintf( esc_html__( 'format: %s', 'sermon-manager' ), '' . $date_format . '' ), 'id' => 'sermon_date', 'type' => 'text_date_timestamp', 'date_format' => $date_format, ) ); $cmb->add_field( array( - 'name' => __( 'Service Type', 'sermon-manager' ), - 'desc' => __( 'Select the type of service. Modify service types in Sermons -> Service Types.', 'sermon-manager' ), + 'name' => esc_html__( 'Service Type', 'sermon-manager' ), + 'desc' => esc_html__( 'Select the type of service. Modify service types in Sermons → Service Types.', 'sermon-manager' ), 'id' => 'wpfc_service_type', 'type' => 'select', 'show_option_none' => true, 'options' => cmb2_get_term_options( 'wpfc_service_type' ), ) ); $cmb->add_field( array( - 'name' => __( 'Main Bible Passage', 'sermon-manager' ), - 'desc' => __( 'Enter the Bible passage with the full book names,e.g. "John 3:16-18".', 'sermon-manager' ), + 'name' => esc_html__( 'Main Bible Passage', 'sermon-manager' ), + 'desc' => wp_sprintf( esc_html__( 'Enter the Bible passage with the full book names, e.g. %s.', 'sermon-manager' ), '' . esc_html__( 'John 3:16-18', 'sermon-manager' ) . '' ), 'id' => 'bible_passage', 'type' => 'text', ) ); $cmb->add_field( array( - 'name' => __( 'Description', 'sermon-manager' ), - 'desc' => __( 'Type a brief description about this sermon, an outline, or a full manuscript', 'sermon-manager' ), + 'name' => esc_html__( 'Description', 'sermon-manager' ), + 'desc' => esc_html__( 'Type a brief description about this sermon, an outline, or a full manuscript', 'sermon-manager' ), 'id' => 'sermon_description', 'type' => 'wysiwyg', 'options' => array( 'textarea_rows' => 7, 'media_buttons' => true, ), @@ -329,7 +329,7 @@ function wpfc_sermon_metaboxes() { $cmb2 = new_cmb2_box( array( 'id' => 'wpfc_sermon_files', - 'title' => __( 'Sermon Files', 'sermon-manager' ), + 'title' => esc_html__( 'Sermon Files', 'sermon-manager' ), 'object_types' => array( 'wpfc_sermon', ), // Post type 'context' => 'normal', 'priority' => 'high', @@ -338,49 +338,49 @@ function wpfc_sermon_metaboxes() { // 'closed' => true, // Keep the metabox closed by default ) ); $cmb2->add_field( array( - 'name' => __( 'Location of MP3', 'sermon-manager' ), - 'desc' => __( 'Upload an audio file or enter an URL.', 'sermon-manager' ), + 'name' => esc_html__( 'Location of MP3', 'sermon-manager' ), + 'desc' => esc_html__( 'Upload an audio file or enter an URL.', 'sermon-manager' ), 'id' => 'sermon_audio', 'type' => 'file', 'text' => array( - 'add_upload_file_text' => 'Add Sermon Audio' // Change upload button text. Default: "Add or Upload File" + 'add_upload_file_text' => __( 'Add Sermon Audio', 'sermon-manager' ) // Change upload button text. Default: "Add or Upload File" ), ) ); $cmb2->add_field( array( - 'name' => __( 'MP3 Duration', 'sermon-manager' ), - 'desc' => __( 'Length in hh:mm:ss format (if left blank, will attempt to calculate automatically when you save)', 'sermon-manager' ), + 'name' => esc_html__( 'MP3 Duration', 'sermon-manager' ), + 'desc' => wp_sprintf( esc_html__( 'Length in %s format (if left blank, will attempt to calculate automatically when you save)', 'sermon-manager' ), '' . esc_html__( 'hh:mm:ss', 'sermon-manager' ) . '' ), 'id' => '_wpfc_sermon_duration', 'type' => 'text', ) ); $cmb2->add_field( array( - 'name' => __( 'Video Embed Code', 'sermon-manager' ), - 'desc' => __( 'Paste your embed code for Vimeo, Youtube, or other service here', 'sermon-manager' ), + 'name' => esc_html__( 'Video Embed Code', 'sermon-manager' ), + 'desc' => esc_html__( 'Paste your embed code for Vimeo, Youtube, or other service here', 'sermon-manager' ), 'id' => 'sermon_video', 'type' => 'textarea_code' ) ); $cmb2->add_field( apply_filters( 'sm_cmb2_field_sermon_video_link', array( - 'name' => __( 'Video Link', 'sermon-manager' ), - 'desc' => __( 'Paste your link for Vimeo, Youtube, or other service here', 'sermon-manager' ), + 'name' => esc_html__( 'Video Link', 'sermon-manager' ), + 'desc' => esc_html__( 'Paste your link for Vimeo, Youtube, or other service here', 'sermon-manager' ), 'id' => 'sermon_video_link', 'type' => 'text' ) ) ); $cmb2->add_field( array( - 'name' => __( 'Sermon Notes', 'sermon-manager' ), - 'desc' => __( 'Upload a pdf file or enter an URL.', 'sermon-manager' ), + 'name' => esc_html__( 'Sermon Notes', 'sermon-manager' ), + 'desc' => esc_html__( 'Upload a pdf file or enter an URL.', 'sermon-manager' ), 'id' => 'sermon_notes', 'type' => 'file', 'text' => array( - 'add_upload_file_text' => 'Add File' // Change upload button text. Default: "Add or Upload File" + 'add_upload_file_text' => __( 'Add File', 'sermon-manager' ) // Change upload button text. Default: "Add or Upload File" ), ) ); $cmb2->add_field( array( - 'name' => __( 'Bulletin', 'sermon-manager' ), - 'desc' => __( 'Upload a pdf file or enter an URL.', 'sermon-manager' ), + 'name' => esc_html__( 'Bulletin', 'sermon-manager' ), + 'desc' => esc_html__( 'Upload a pdf file or enter an URL.', 'sermon-manager' ), 'id' => 'sermon_bulletin', 'type' => 'file', 'text' => array( - 'add_upload_file_text' => 'Add File' // Change upload button text. Default: "Add or Upload File" + 'add_upload_file_text' => __( 'Add File', 'sermon-manager' ) // Change upload button text. Default: "Add or Upload File" ), ) ); diff --git a/languages/sermon-manager-en_US.pot b/languages/sermon-manager-en_US.pot deleted file mode 100644 index d1b6b68..0000000 --- a/languages/sermon-manager-en_US.pot +++ /dev/null @@ -1,824 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Sermon Manager 1.5\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-10 15:34-0700\n" -"PO-Revision-Date: 2012-08-10 15:36-0700\n" -"Last-Translator: Jack \n" -"Language-Team: WP for Church \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-Language: English\n" -"X-Poedit-Country: United States\n" -"X-Poedit-SearchPath-0: .\n" - -#: sermons.php:39 -msgid "Sermons" -msgstr "" - -#: sermons.php:40 -msgid "Sermon" -msgstr "" - -#: sermons.php:41 -msgid "Add New" -msgstr "" - -#: sermons.php:42 -msgid "Add New Sermon" -msgstr "" - -#: sermons.php:43 -msgid "Edit Sermon" -msgstr "" - -#: sermons.php:44 -msgid "New Sermon" -msgstr "" - -#: sermons.php:45 -msgid "View Sermon" -msgstr "" - -#: sermons.php:46 -msgid "Search Sermons" -msgstr "" - -#: sermons.php:47 -msgid "No sermons found" -msgstr "" - -#: sermons.php:48 -msgid "No sermons found in Trash" -msgstr "" - -#: sermons.php:83 -#: sermons.php:85 -msgid "Preachers" -msgstr "" - -#: sermons.php:84 -#: sermons.php:397 -msgid "Preacher" -msgstr "" - -#: sermons.php:86 -msgid "Search preachers" -msgstr "" - -#: sermons.php:87 -msgid "Most frequent preachers" -msgstr "" - -#: sermons.php:88 -msgid "All preachers" -msgstr "" - -#: sermons.php:89 -msgid "Edit preachers" -msgstr "" - -#: sermons.php:90 -msgid "Update preachers" -msgstr "" - -#: sermons.php:91 -msgid "Add new preacher" -msgstr "" - -#: sermons.php:92 -msgid "New preacher name" -msgstr "" - -#: sermons.php:93 -msgid "Separate multiple preachers with commas" -msgstr "" - -#: sermons.php:94 -msgid "Add or remove preachers" -msgstr "" - -#: sermons.php:95 -msgid "Choose from most frequent preachers" -msgstr "" - -#: sermons.php:110 -#: sermons.php:112 -#: sermons.php:113 -#: sermons.php:398 -msgid "Sermon Series" -msgstr "" - -#: sermons.php:114 -msgid "Search sermon series" -msgstr "" - -#: sermons.php:115 -msgid "Most frequent sermon series" -msgstr "" - -#: sermons.php:116 -msgid "All sermon series" -msgstr "" - -#: sermons.php:117 -msgid "Edit sermon series" -msgstr "" - -#: sermons.php:118 -msgid "Update sermon series" -msgstr "" - -#: sermons.php:119 -msgid "Add new sermon series" -msgstr "" - -#: sermons.php:120 -msgid "New sermon series name" -msgstr "" - -#: sermons.php:121 -msgid "Separate sermon series with commas" -msgstr "" - -#: sermons.php:122 -msgid "Add or remove sermon series" -msgstr "" - -#: sermons.php:123 -msgid "Choose from most used sermon series" -msgstr "" - -#: sermons.php:138 -#: sermons.php:139 -#: sermons.php:140 -msgid "Sermon Topics" -msgstr "" - -#: sermons.php:141 -msgid "Search sermon topics" -msgstr "" - -#: sermons.php:142 -msgid "Most popular sermon topics" -msgstr "" - -#: sermons.php:143 -msgid "All sermon topics" -msgstr "" - -#: sermons.php:144 -msgid "Edit sermon topic" -msgstr "" - -#: sermons.php:145 -msgid "Update sermon topic" -msgstr "" - -#: sermons.php:146 -msgid "Add new sermon topic" -msgstr "" - -#: sermons.php:147 -msgid "New sermon topic" -msgstr "" - -#: sermons.php:148 -msgid "Separate sermon topics with commas" -msgstr "" - -#: sermons.php:149 -msgid "Add or remove sermon topics" -msgstr "" - -#: sermons.php:150 -msgid "Choose from most used sermon topics" -msgstr "" - -#: sermons.php:165 -#: sermons.php:166 -#: sermons.php:167 -msgid "Book of the Bible" -msgstr "" - -#: sermons.php:168 -msgid "Search books of the Bible" -msgstr "" - -#: sermons.php:169 -msgid "Most popular books of the Bible" -msgstr "" - -#: sermons.php:170 -msgid "All books of the Bible" -msgstr "" - -#: sermons.php:171 -msgid "Edit book of the Bible" -msgstr "" - -#: sermons.php:172 -msgid "Update book of the Bible" -msgstr "" - -#: sermons.php:173 -msgid "Add new books of the Bible" -msgstr "" - -#: sermons.php:174 -msgid "New book of the Bible" -msgstr "" - -#: sermons.php:175 -msgid "Separate books of the Bible with commas" -msgstr "" - -#: sermons.php:176 -msgid "Add or remove books of the Bible" -msgstr "" - -#: sermons.php:177 -msgid "Choose from most used books of the Bible" -msgstr "" - -#: sermons.php:198 -#, php-format -msgid "Sermon updated. View sermon" -msgstr "" - -#: sermons.php:199 -msgid "Custom field updated." -msgstr "" - -#: sermons.php:200 -msgid "Custom field deleted." -msgstr "" - -#: sermons.php:201 -msgid "Sermon updated." -msgstr "" - -#: sermons.php:203 -#, php-format -msgid "Sermon restored to revision from %s" -msgstr "" - -#: sermons.php:204 -#, php-format -msgid "Sermon published. View sermon" -msgstr "" - -#: sermons.php:205 -msgid "Sermon saved." -msgstr "" - -#: sermons.php:206 -#, php-format -msgid "Sermon submitted. Preview sermon" -msgstr "" - -#: sermons.php:207 -#, php-format -msgid "Sermon scheduled for: %1$s. Preview sermon" -msgstr "" - -#: sermons.php:209 -msgid "M j, Y @ G:i" -msgstr "" - -#: sermons.php:210 -#, php-format -msgid "Sermon draft updated. Preview sermon" -msgstr "" - -#: sermons.php:224 -msgid "Things to remember when adding or editing a sermon:" -msgstr "" - -#: sermons.php:226 -msgid "Specify a sermon series if appropriate. This will help your site visitors while browsing sermons." -msgstr "" - -#: sermons.php:227 -msgid "Specify the correct preacher of the sermon." -msgstr "" - -#: sermons.php:229 -msgid "If you want to schedule the sermon to be published in the future:" -msgstr "" - -#: sermons.php:231 -msgid "Under the Publish meta box, click on the Edit link next to Publish." -msgstr "" - -#: sermons.php:232 -msgid "Change the date to the date to actual publish this article, then click on Ok." -msgstr "" - -#: sermons.php:234 -msgid "For more help:" -msgstr "" - -#: sermons.php:235 -msgid "Wordpress for Church" -msgstr "" - -#: sermons.php:238 -msgid "This is the help screen displaying on the sermons page." -msgstr "" - -#: sermons.php:285 -msgid "Sermon Details" -msgstr "" - -#: sermons.php:292 -msgid "Date" -msgstr "" - -#: sermons.php:293 -msgid "Enter the date the sermon was given. NOTE: Each sermon must have a date!" -msgstr "" - -#: sermons.php:298 -msgid "Service Type" -msgstr "" - -#: sermons.php:299 -msgid "Select the type of service." -msgstr "" - -#: sermons.php:305 -msgid "Main Bible Passage" -msgstr "" - -#: sermons.php:306 -msgid "Enter the Bible passage with the full book names,e.g. \"John 3:16-18\"." -msgstr "" - -#: sermons.php:311 -#: includes/options.php:166 -msgid "Description" -msgstr "" - -#: sermons.php:312 -msgid "Type a brief description about this sermon, an outline, or a full manuscript" -msgstr "" - -#: sermons.php:322 -msgid "Sermon Files" -msgstr "" - -#: sermons.php:329 -msgid "Location of MP3" -msgstr "" - -#: sermons.php:330 -msgid "Upload an audio file or enter an URL." -msgstr "" - -#: sermons.php:335 -msgid "Video Embed Code" -msgstr "" - -#: sermons.php:336 -msgid "Paste your embed code for Vimeo, Youtube, or other service here" -msgstr "" - -#: sermons.php:341 -msgid "Sermon Notes" -msgstr "" - -#: sermons.php:342 -msgid "Upload a pdf file or enter an URL." -msgstr "" - -#: sermons.php:364 -#: includes/options.php:352 -msgid "Settings" -msgstr "" - -#: sermons.php:369 -msgid "Support" -msgstr "" - -#: sermons.php:379 -msgid "Manage Settings" -msgstr "" - -#: sermons.php:396 -msgid "Sermon Title" -msgstr "" - -#: sermons.php:399 -msgid "Topics" -msgstr "" - -#: sermons.php:400 -msgid "Views" -msgstr "" - -#: sermons.php:558 -msgid "The most recent sermons on your site" -msgstr "" - -#: sermons.php:559 -#: sermons.php:581 -msgid "Recent Sermons" -msgstr "" - -#: sermons.php:641 -msgid "Title:" -msgstr "" - -#: sermons.php:644 -msgid "Number of sermons to show:" -msgstr "" - -#: sermons.php:712 -msgid "Sort by Preacher" -msgstr "" - -#: sermons.php:721 -msgid "Sort by Series" -msgstr "" - -#: sermons.php:730 -msgid "Sort by Topic" -msgstr "" - -#: includes/options.php:67 -msgid "Sermon Manager Options" -msgstr "" - -#: includes/options.php:70 -msgid "Options saved" -msgstr "" - -#: includes/options.php:78 -msgid "Need Help?" -msgstr "" - -#: includes/options.php:80 -msgid "If you need help, please visit WP for Church" -msgstr "" - -#: includes/options.php:93 -msgid "General Settings" -msgstr "" - -#: includes/options.php:97 -msgid "Archive Page Title" -msgstr "" - -#: includes/options.php:104 -msgid "Archive Page Slug" -msgstr "" - -#: includes/options.php:106 -msgid "Go to Settings → Permalinks and re-save after changing this!" -msgstr "" - -#: includes/options.php:110 -msgid "Enable Template Files - this is for users upgrading from an older version who have issues with version 1.5+." -msgstr "" - -#: includes/options.php:112 -msgid "Enable template files found in the /views folder" -msgstr "" - -#: includes/options.php:116 -msgid "Disable Sermon Styles" -msgstr "" - -#: includes/options.php:118 -msgid "Disable Sermon CSS. If you do this, you should copy the styles from sermons.css and include them in your theme CSS." -msgstr "" - -#: includes/options.php:126 -msgid "Verse Settings" -msgstr "" - -#: includes/options.php:131 -msgid "Verse Popups" -msgstr "" - -#: includes/options.php:134 -msgid "Disable Bib.ly verse popups" -msgstr "" - -#: includes/options.php:139 -msgid "Select Bible Version for Verse Popups" -msgstr "" - -#: includes/options.php:147 -msgid "ESV, NET, KJV, or LEB are the currently supported popups for bib.ly." -msgstr "" - -#: includes/options.php:155 -msgid "Podcast Settings" -msgstr "" - -#: includes/options.php:159 -msgid "Title" -msgstr "" - -#: includes/options.php:161 -#: includes/options.php:168 -#: includes/options.php:175 -#: includes/options.php:182 -#: includes/options.php:206 -#: includes/options.php:243 -#: includes/options.php:253 -msgid "e.g. " -msgstr "" - -#: includes/options.php:173 -msgid "Website Link" -msgstr "" - -#: includes/options.php:180 -msgid "Language" -msgstr "" - -#: includes/options.php:187 -msgid "Copyright" -msgstr "" - -#: includes/options.php:189 -msgid "e.g. Copyright © " -msgstr "" - -#: includes/options.php:192 -msgid "Tip: Use \"" -msgstr "" - -#: includes/options.php:197 -msgid "Webmaster Name" -msgstr "" - -#: includes/options.php:199 -msgid "e.g. Your Name" -msgstr "" - -#: includes/options.php:204 -msgid "Webmaster Email" -msgstr "" - -#: includes/options.php:211 -msgid "Author" -msgstr "" - -#: includes/options.php:213 -msgid "e.g. Primary Speaker or Church Name" -msgstr "" - -#: includes/options.php:216 -msgid "This will display at the \"Artist\" in the iTunes Store." -msgstr "" - -#: includes/options.php:221 -msgid "Subtitle" -msgstr "" - -#: includes/options.php:223 -msgid "e.g. Preaching and teaching audio from " -msgstr "" - -#: includes/options.php:226 -msgid "Your subtitle should briefly tell the listener what they can expect to hear." -msgstr "" - -#: includes/options.php:231 -msgid "Summary" -msgstr "" - -#: includes/options.php:233 -msgid "e.g. Weekly teaching audio brought to you by " -msgstr "" - -#: includes/options.php:236 -msgid "Keep your Podcast Summary short, sweet and informative. Be sure to include a brief statement about your mission and in what region your audio content originates." -msgstr "" - -#: includes/options.php:241 -msgid "Owner Name" -msgstr "" - -#: includes/options.php:246 -msgid "This should typically be the name of your Church." -msgstr "" - -#: includes/options.php:251 -msgid "Owner Email" -msgstr "" - -#: includes/options.php:256 -msgid "Use an email address that you don't mind being made public. If someone wants to contact you regarding your Podcast this is the address they will use." -msgstr "" - -#: includes/options.php:261 -msgid "Cover Image" -msgstr "" - -#: includes/options.php:271 -msgid "This JPG will serve as the Podcast artwork in the iTunes Store. The image should be 1400px by 1400px" -msgstr "" - -#: includes/options.php:276 -msgid "Top Category" -msgstr "" - -#: includes/options.php:278 -msgid "e.g. Religion & Spirituality" -msgstr "" - -#: includes/options.php:281 -msgid "Choose the appropriate top-level category for your Podcast listing in iTunes." -msgstr "" - -#: includes/options.php:286 -msgid "Sub Category" -msgstr "" - -#: includes/options.php:288 -msgid "e.g. Christianity" -msgstr "" - -#: includes/options.php:291 -msgid "Choose the appropriate sub category for your Podcast listing in iTunes." -msgstr "" - -#: includes/options.php:300 -msgid "Save Changes" -msgstr "" - -#: includes/options.php:305 -msgid "Submit to iTunes" -msgstr "" - -#: includes/options.php:310 -msgid "Podcast Feed URL" -msgstr "" - -#: includes/options.php:315 -msgid "Use the " -msgstr "" - -#: includes/options.php:315 -msgid "Feed Validator" -msgstr "" - -#: includes/options.php:315 -msgid " to diagnose and fix any problems before submitting your Podcast to iTunes." -msgstr "" - -#: includes/options.php:321 -msgid "Once your Podcast Settings are complete and your Sermons are ready, it's time to " -msgstr "" - -#: includes/options.php:321 -msgid "Submit Your Podcast" -msgstr "" - -#: includes/options.php:321 -msgid " to the iTunes Store!" -msgstr "" - -#: includes/options.php:323 -msgid "Alternatively, if you want to track your Podcast subscribers, simply pass the Podcast Feed URL above through " -msgstr "" - -#: includes/options.php:323 -msgid "FeedBurner" -msgstr "" - -#: includes/options.php:323 -msgid ". FeedBurner will then give you a new URL to submit to iTunes instead." -msgstr "" - -#: includes/options.php:325 -msgid "Please read the " -msgstr "" - -#: includes/options.php:325 -msgid "iTunes FAQ for Podcast Makers" -msgstr "" - -#: includes/options.php:325 -msgid " for more information." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:274 -msgid "Image support for taxonomies successfully updated" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:277 -msgid "Image support has been disabled for all taxonomies." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:748 -msgid "term" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:802 -#, php-format -msgid "Associate an image with the %1$s named “%2$s”." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:803 -#, php-format -msgid "Upload a new image for this %s." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:804 -#, php-format -msgid "Remove image from this %s." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:1169 -msgid "Donate" -msgstr "" - -#: views/archive-wpfc_sermon.php:26 -#: views/archive-wpfc_sermon.php:86 -#: views/taxonomy-wpfc_preacher.php:33 -#: views/taxonomy-wpfc_preacher.php:93 -#: views/taxonomy-wpfc_sermon_series.php:34 -#: views/taxonomy-wpfc_sermon_series.php:94 -#: views/taxonomy-wpfc_sermon_topics.php:34 -#: views/taxonomy-wpfc_sermon_topics.php:94 -msgid " Older posts" -msgstr "" - -#: views/archive-wpfc_sermon.php:27 -#: views/archive-wpfc_sermon.php:87 -#: views/taxonomy-wpfc_preacher.php:34 -#: views/taxonomy-wpfc_preacher.php:94 -#: views/taxonomy-wpfc_sermon_series.php:35 -#: views/taxonomy-wpfc_sermon_series.php:95 -#: views/taxonomy-wpfc_sermon_topics.php:35 -#: views/taxonomy-wpfc_sermon_topics.php:95 -msgid "Newer posts " -msgstr "" - -#: views/archive-wpfc_sermon.php:34 -#: views/taxonomy-wpfc_preacher.php:41 -#: views/taxonomy-wpfc_sermon_series.php:42 -#: views/taxonomy-wpfc_sermon_topics.php:42 -msgid "Not Found" -msgstr "" - -#: views/archive-wpfc_sermon.php:36 -#: views/taxonomy-wpfc_preacher.php:43 -#: views/taxonomy-wpfc_sermon_series.php:44 -#: views/taxonomy-wpfc_sermon_topics.php:44 -msgid "Apologies, but no sermons were found." -msgstr "" - -#: views/archive-wpfc_sermon.php:76 -#: views/taxonomy-wpfc_preacher.php:83 -#: views/taxonomy-wpfc_sermon_series.php:84 -#: views/taxonomy-wpfc_sermon_topics.php:84 -msgid "Leave a comment" -msgstr "" - -#: views/archive-wpfc_sermon.php:76 -#: views/taxonomy-wpfc_preacher.php:83 -#: views/taxonomy-wpfc_sermon_series.php:84 -#: views/taxonomy-wpfc_sermon_topics.php:84 -msgid "1 Comment" -msgstr "" - -#: views/archive-wpfc_sermon.php:76 -#: views/taxonomy-wpfc_preacher.php:83 -#: views/taxonomy-wpfc_sermon_series.php:84 -#: views/taxonomy-wpfc_sermon_topics.php:84 -msgid "% Comments" -msgstr "" - -#: views/archive-wpfc_sermon.php:77 -#: views/single-wpfc_sermon.php:21 -#: views/taxonomy-wpfc_preacher.php:84 -#: views/taxonomy-wpfc_sermon_series.php:85 -#: views/taxonomy-wpfc_sermon_topics.php:85 -msgid "Edit" -msgstr "" - -#: views/taxonomy-wpfc_preacher.php:18 -#, php-format -msgid "Sermons by: %s" -msgstr "" - -#: views/taxonomy-wpfc_sermon_series.php:18 -#, php-format -msgid "Sermons Series: %s" -msgstr "" - -#: views/taxonomy-wpfc_sermon_topics.php:18 -#, php-format -msgid "Sermons Topic: %s" -msgstr "" - diff --git a/languages/sermon-manager.pot b/languages/sermon-manager.pot index fdc8667..e5c604f 100644 --- a/languages/sermon-manager.pot +++ b/languages/sermon-manager.pot @@ -1,1256 +1,1294 @@ -# Copyright (C) 2013 -# This file is distributed under the same license as the package. -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://wordpress.org/tag/sermon-manager-for-wordpress\n" -"POT-Creation-Date: 2013-03-01 22:03:54+00:00\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" - -#: includes/options.php:34 -msgid "Sermon Manager Settings" -msgstr "" - -#: includes/options.php:34 includes/options.php:50 includes/options.php:423 -#: includes/taxonomy-images/taxonomy-images-old.php:320 -#: includes/taxonomy-images/taxonomy-images.php:317 -#: includes/taxonomy-images/taxonomy-images.php:1164 -msgid "Settings" -msgstr "" - -#: includes/options.php:55 -msgid "Support" -msgstr "" - -#: includes/options.php:64 includes/taxonomy-images/taxonomy-images.php:1187 -msgid "Manage Settings" -msgstr "" - -#: includes/options.php:110 -msgid "Sermon Manager Options" -msgstr "" - -#: includes/options.php:113 -msgid "Options saved" -msgstr "" - -#: includes/options.php:121 -msgid "Need Help?" -msgstr "" - -#: includes/options.php:123 -msgid "" -"If you need help, please visit WP for Church" -msgstr "" - -#: includes/options.php:136 -msgid "General Settings" -msgstr "" - -#: includes/options.php:140 -msgid "Archive Page Title" -msgstr "" - -#: includes/options.php:147 -msgid "Archive Page Slug" -msgstr "" - -#: includes/options.php:154 -msgid "" -"Common Base Slug - this is for users who want to have a common base slug " -"across all taxonomies, e.g. sermons/preacher or sermons/series." -msgstr "" - -#: includes/options.php:156 -msgid "Enable a common base slug across all taxonomies" -msgstr "" - -#: includes/options.php:161 -msgid "" -"Enable Template Files - this is for users upgrading from an older version " -"who have issues with version 1.5+." -msgstr "" - -#: includes/options.php:163 -msgid "Enable template files found in the /views folder" -msgstr "" - -#: includes/options.php:168 -msgid "Disable Sermon Styles" -msgstr "" - -#: includes/options.php:170 -msgid "" -"Disable Sermon CSS. If you do this, you should copy the styles from sermons." -"css and include them in your theme CSS." -msgstr "" - -#: includes/options.php:175 -msgid "Display audio player or video on archive pages" -msgstr "" - -#: includes/options.php:177 -msgid "Display an audio player or video embed in the archive listing." -msgstr "" - -#: includes/options.php:182 -msgid "Version " -msgstr "" - -#: includes/options.php:184 -msgid "Current Version" -msgstr "" - -#: includes/options.php:192 -msgid "Verse Settings" -msgstr "" - -#: includes/options.php:197 -msgid "Verse Popups" -msgstr "" - -#: includes/options.php:200 -msgid "Disable Bib.ly verse popups" -msgstr "" - -#: includes/options.php:205 -msgid "Select Bible Version for Verse Popups" -msgstr "" - -#: includes/options.php:213 -msgid "" -"ESV, NET, KJV, or LEB are the currently supported popups for bib.ly." -msgstr "" - -#: includes/options.php:221 -msgid "Podcast Settings" -msgstr "" - -#: includes/options.php:225 -msgid "Title" -msgstr "" - -#: includes/options.php:232 includes/types-taxonomies.php:252 -msgid "Description" -msgstr "" - -#: includes/options.php:239 -msgid "Website Link" -msgstr "" - -#: includes/options.php:246 -msgid "Language" -msgstr "" - -#: includes/options.php:253 -msgid "Copyright" -msgstr "" - -#: includes/options.php:263 -msgid "Webmaster Name" -msgstr "" - -#: includes/options.php:265 -msgid "e.g. Your Name" -msgstr "" - -#: includes/options.php:270 -msgid "Webmaster Email" -msgstr "" - -#: includes/options.php:277 -msgid "Author" -msgstr "" - -#: includes/options.php:279 -msgid "e.g. Primary Speaker or Church Name" -msgstr "" - -#: includes/options.php:282 -msgid "This will display at the \"Artist\" in the iTunes Store." -msgstr "" - -#: includes/options.php:287 -msgid "Subtitle" -msgstr "" - -#: includes/options.php:292 -msgid "" -"Your subtitle should briefly tell the listener what they can expect to hear." -msgstr "" - -#: includes/options.php:297 -msgid "Summary" -msgstr "" - -#: includes/options.php:302 -msgid "" -"Keep your Podcast Summary short, sweet and informative. Be sure to include a " -"brief statement about your mission and in what region your audio content " -"originates." -msgstr "" - -#: includes/options.php:307 -msgid "Owner Name" -msgstr "" - -#: includes/options.php:312 -msgid "This should typically be the name of your Church." -msgstr "" - -#: includes/options.php:317 -msgid "Owner Email" -msgstr "" - -#: includes/options.php:322 -msgid "" -"Use an email address that you don't mind being made public. If someone wants " -"to contact you regarding your Podcast this is the address they will use." -msgstr "" - -#: includes/options.php:327 -msgid "Cover Image" -msgstr "" - -#: includes/options.php:337 -msgid "" -"This JPG will serve as the Podcast artwork in the iTunes Store. The image " -"should be 1400px by 1400px" -msgstr "" - -#: includes/options.php:342 -msgid "Top Category" -msgstr "" - -#: includes/options.php:344 -msgid "e.g. Religion & Spirituality" -msgstr "" - -#: includes/options.php:347 -msgid "" -"Choose the appropriate top-level category for your Podcast listing in iTunes." -msgstr "" - -#: includes/options.php:352 -msgid "Sub Category" -msgstr "" - -#: includes/options.php:354 -msgid "e.g. Christianity" -msgstr "" - -#: includes/options.php:357 -msgid "Choose the appropriate sub category for your Podcast listing in iTunes." -msgstr "" - -#. translators: Button on the custom administration page. -#: includes/options.php:367 includes/taxonomy-images/taxonomy-images.php:378 -msgid "Save Changes" -msgstr "" - -#: includes/options.php:372 -msgid "Submit to iTunes" -msgstr "" - -#: includes/options.php:377 -msgid "Podcast Feed URL" -msgstr "" - -#: includes/options.php:382 -msgid "Use the " -msgstr "" - -#: includes/options.php:382 -msgid "Feed Validator" -msgstr "" - -#: includes/options.php:382 -msgid "" -" to diagnose and fix any problems before submitting your Podcast to iTunes." -msgstr "" - -#: includes/options.php:388 -msgid "" -"Once your Podcast Settings are complete and your Sermons are ready, it's " -"time to " -msgstr "" - -#: includes/options.php:388 -msgid "Submit Your Podcast" -msgstr "" - -#: includes/options.php:388 -msgid " to the iTunes Store!" -msgstr "" - -#: includes/options.php:390 -msgid "" -"Alternatively, if you want to track your Podcast subscribers, simply pass " -"the Podcast Feed URL above through " -msgstr "" - -#: includes/options.php:390 -msgid "FeedBurner" -msgstr "" - -#: includes/options.php:390 -msgid ". FeedBurner will then give you a new URL to submit to iTunes instead." -msgstr "" - -#: includes/options.php:392 -msgid "Please read the " -msgstr "" - -#: includes/options.php:392 -msgid "iTunes FAQ for Podcast Makers" -msgstr "" - -#: includes/options.php:392 -msgid " for more information." -msgstr "" - -#: includes/shortcodes.php:131 includes/template-tags.php:77 -#: views/archive-wpfc_sermon.php:60 views/taxonomy-wpfc_bible_book.php:66 -#: views/taxonomy-wpfc_preacher.php:67 -#: views/taxonomy-wpfc_sermon_series.php:68 -#: views/taxonomy-wpfc_sermon_topics.php:68 -#: views/taxonomy-wpfc_service_type.php:66 -msgid "Permalink to %s" -msgstr "" - -#: includes/taxonomy-images/public-filters-old.php:369 -#: includes/taxonomy-images/public-filters.php:376 -msgid "" -"%1$s is not a property of the current queried object. This usually happens " -"when the %2$s filter is used in an unsupported template file. This filter " -"has been designed to work in taxonomy archives which are traditionally " -"served by one of the following template files: category.php, tag.php or " -"taxonomy.php. Learn more about %3$s." -msgstr "" - -#: includes/taxonomy-images/public-filters-old.php:370 -#: includes/taxonomy-images/public-filters.php:377 -msgid "term_taxonomy_id" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:120 -#: includes/taxonomy-images/taxonomy-images.php:119 -msgid "Associate with %1$s" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:120 -#: includes/taxonomy-images/taxonomy-images-old.php:122 -#: includes/taxonomy-images/taxonomy-images.php:119 -#: includes/taxonomy-images/taxonomy-images.php:121 -msgid "this term" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:122 -#: includes/taxonomy-images/taxonomy-images.php:121 -msgid "Remove association with %1$s" -msgstr "" - -#. translators: Notice displayed on the custom administration page. -#: includes/taxonomy-images/taxonomy-images-old.php:277 -#: includes/taxonomy-images/taxonomy-images.php:274 -msgid "Image support for taxonomies successfully updated" -msgstr "" - -#. translators: Notice displayed on the custom administration page. -#: includes/taxonomy-images/taxonomy-images-old.php:280 -#: includes/taxonomy-images/taxonomy-images.php:277 -msgid "Image support has been disabled for all taxonomies." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:326 -#: includes/taxonomy-images/taxonomy-images.php:323 -msgid "Taxonomies" -msgstr "" - -#. translators: An ajax request has failed for an unknown reason. -#: includes/taxonomy-images/taxonomy-images-old.php:376 -#: includes/taxonomy-images/taxonomy-images.php:425 -msgid "Unknown error encountered" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:450 -#: includes/taxonomy-images/taxonomy-images-old.php:532 -#: includes/taxonomy-images/taxonomy-images.php:501 -#: includes/taxonomy-images/taxonomy-images.php:583 -msgid "tt_id not sent" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:458 -#: includes/taxonomy-images/taxonomy-images-old.php:540 -#: includes/taxonomy-images/taxonomy-images.php:509 -#: includes/taxonomy-images/taxonomy-images.php:591 -msgid "tt_id is empty" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:465 -#: includes/taxonomy-images/taxonomy-images-old.php:547 -#: includes/taxonomy-images/taxonomy-images.php:516 -#: includes/taxonomy-images/taxonomy-images.php:598 -msgid "You do not have the correct capability to manage this term" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:472 -#: includes/taxonomy-images/taxonomy-images.php:523 -msgid "No nonce included." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:479 -#: includes/taxonomy-images/taxonomy-images-old.php:561 -#: includes/taxonomy-images/taxonomy-images.php:530 -#: includes/taxonomy-images/taxonomy-images.php:612 -msgid "Nonce did not match" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:486 -#: includes/taxonomy-images/taxonomy-images.php:537 -msgid "Image id not sent" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:494 -#: includes/taxonomy-images/taxonomy-images.php:545 -msgid "Image id is not a positive integer" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:503 -#: includes/taxonomy-images/taxonomy-images.php:554 -msgid "Image successfully associated" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:510 -#: includes/taxonomy-images/taxonomy-images.php:561 -msgid "Association could not be created" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:554 -#: includes/taxonomy-images/taxonomy-images.php:605 -msgid "No nonce included" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:569 -#: includes/taxonomy-images/taxonomy-images.php:620 -msgid "Nothing to remove" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:578 -#: includes/taxonomy-images/taxonomy-images.php:629 -msgid "Association successfully removed" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:584 -#: includes/taxonomy-images/taxonomy-images.php:635 -msgid "Association could not be removed" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:654 -#: includes/taxonomy-images/taxonomy-images-old.php:703 -#: includes/taxonomy-images/taxonomy-images.php:705 -#: includes/taxonomy-images/taxonomy-images.php:754 -#: includes/taxonomy-images.php:94 -msgid "Image" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:697 -#: includes/taxonomy-images/taxonomy-images-old.php:733 -#: includes/taxonomy-images/taxonomy-images.php:748 -#: includes/taxonomy-images/taxonomy-images.php:784 -msgid "term" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:707 -#: includes/taxonomy-images/taxonomy-images.php:758 -msgid "Associate an image from your media library to this %1$s." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:751 -#: includes/taxonomy-images/taxonomy-images.php:802 -msgid "Associate an image with the %1$s named “%2$s”." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:752 -#: includes/taxonomy-images/taxonomy-images.php:803 -msgid "Upload a new image for this %s." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:752 -#: includes/taxonomy-images/taxonomy-images.php:803 -msgid "Upload." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:753 -#: includes/taxonomy-images/taxonomy-images.php:804 -msgid "Remove image from this %s." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:753 -#: includes/taxonomy-images/taxonomy-images.php:804 -msgid "Delete" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:782 -#: includes/taxonomy-images/taxonomy-images.php:833 -msgid "“" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:783 -#: includes/taxonomy-images/taxonomy-images.php:834 -msgid "”" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:784 -#: includes/taxonomy-images/taxonomy-images.php:835 -msgid "Associating …" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:785 -#: includes/taxonomy-images/taxonomy-images.php:836 -msgid "Successfully Associated" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:786 -#: includes/taxonomy-images/taxonomy-images.php:837 -msgid "Removing …" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:787 -#: includes/taxonomy-images/taxonomy-images.php:838 -msgid "Successfully Removed" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:1055 -#: includes/taxonomy-images/taxonomy-images.php:1133 -msgid "The %1$s has been called directly. Please use the %2$s filter instead." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:342 -#: includes/taxonomy-images/taxonomy-images.php:343 -msgid "Taxonomy Images" -msgstr "" - -#. translators: Heading of the custom administration page. -#: includes/taxonomy-images/taxonomy-images.php:370 -msgid "Taxonomy Images Plugin Settings" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:1092 -msgid "" -"The %1$s argument for %2$s is set to %3$s which is not a registered " -"taxonomy. Please check the spelling and update the argument." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:1093 -msgid "taxonomy" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:1103 -msgid "No taxonomies have image support. %1$s" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:1108 -msgid "The %1$s taxonomy does not have image support. %2$s" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:1169 -msgid "Donate" -msgstr "" - -#: includes/taxonomy-images.php:36 -msgid "Photo" -msgstr "" - -#: includes/taxonomy-images.php:63 -msgid "Series Graphic" -msgstr "" - -#: includes/template-tags.php:87 includes/template-tags.php:281 -#: includes/template-tags.php:313 -msgid "Bible Text:" -msgstr "" - -#: includes/template-tags.php:89 includes/template-tags.php:283 -#: includes/template-tags.php:315 -msgid "Series:" -msgstr "" - -#: includes/template-tags.php:102 -msgid "Sort by Preacher" -msgstr "" - -#: includes/template-tags.php:111 -msgid "Sort by Series" -msgstr "" - -#: includes/template-tags.php:120 -msgid "Sort by Topic" -msgstr "" - -#: includes/template-tags.php:129 -msgid "Sort by Book" -msgstr "" - -#: includes/template-tags.php:240 -msgid "Notes" -msgstr "" - -#: includes/template-tags.php:258 -msgid "Download Files" -msgstr "" - -#: includes/template-tags.php:296 -msgid "Topics: " -msgstr "" - -#: includes/types-taxonomies.php:32 includes/types-taxonomies.php:43 -msgctxt "sermon-manager" -msgid "Sermons" -msgstr "" - -#: includes/types-taxonomies.php:33 -msgctxt "sermon-manager" -msgid "Sermon" -msgstr "" - -#: includes/types-taxonomies.php:34 -msgctxt "sermon-manager" -msgid "Add New" -msgstr "" - -#: includes/types-taxonomies.php:35 -msgctxt "sermon-manager" -msgid "Add New Sermon" -msgstr "" - -#: includes/types-taxonomies.php:36 -msgctxt "sermon-manager" -msgid "Edit Sermon" -msgstr "" - -#: includes/types-taxonomies.php:37 -msgctxt "sermon-manager" -msgid "New Sermon" -msgstr "" - -#: includes/types-taxonomies.php:38 -msgctxt "sermon-manager" -msgid "View Sermon" -msgstr "" - -#: includes/types-taxonomies.php:39 -msgctxt "sermon-manager" -msgid "Search Sermons" -msgstr "" - -#: includes/types-taxonomies.php:40 -msgctxt "sermon-manager" -msgid "No sermons found" -msgstr "" - -#: includes/types-taxonomies.php:41 -msgctxt "sermon-manager" -msgid "No sermons found in Trash" -msgstr "" - -#: includes/types-taxonomies.php:69 includes/types-taxonomies.php:71 -msgctxt "sermon-manager" -msgid "Preachers" -msgstr "" - -#: includes/types-taxonomies.php:70 -msgctxt "sermon-manager" -msgid "Preacher" -msgstr "" - -#: includes/types-taxonomies.php:72 -msgctxt "sermon-manager" -msgid "Search preachers" -msgstr "" - -#: includes/types-taxonomies.php:73 -msgctxt "sermon-manager" -msgid "Most frequent preachers" -msgstr "" - -#: includes/types-taxonomies.php:74 -msgctxt "sermon-manager" -msgid "All preachers" -msgstr "" - -#: includes/types-taxonomies.php:75 -msgctxt "sermon-manager" -msgid "Edit preachers" -msgstr "" - -#: includes/types-taxonomies.php:76 -msgctxt "sermon-manager" -msgid "Update preachers" -msgstr "" - -#: includes/types-taxonomies.php:77 -msgctxt "sermon-manager" -msgid "Add new preacher" -msgstr "" - -#: includes/types-taxonomies.php:78 -msgctxt "sermon-manager" -msgid "New preacher name" -msgstr "" - -#: includes/types-taxonomies.php:79 -msgctxt "sermon-manager" -msgid "Separate multiple preachers with commas" -msgstr "" - -#: includes/types-taxonomies.php:80 -msgctxt "sermon-manager" -msgid "Add or remove preachers" -msgstr "" - -#: includes/types-taxonomies.php:81 -msgctxt "sermon-manager" -msgid "Choose from most frequent preachers" -msgstr "" - -#: includes/types-taxonomies.php:96 includes/types-taxonomies.php:98 -#: includes/types-taxonomies.php:99 -msgctxt "sermon-manager" -msgid "Sermon Series" -msgstr "" - -#: includes/types-taxonomies.php:100 -msgctxt "sermon-manager" -msgid "Search sermon series" -msgstr "" - -#: includes/types-taxonomies.php:101 -msgctxt "sermon-manager" -msgid "Most frequent sermon series" -msgstr "" - -#: includes/types-taxonomies.php:102 -msgctxt "sermon-manager" -msgid "All sermon series" -msgstr "" - -#: includes/types-taxonomies.php:103 -msgctxt "sermon-manager" -msgid "Edit sermon series" -msgstr "" - -#: includes/types-taxonomies.php:104 -msgctxt "sermon-manager" -msgid "Update sermon series" -msgstr "" - -#: includes/types-taxonomies.php:105 -msgctxt "sermon-manager" -msgid "Add new sermon series" -msgstr "" - -#: includes/types-taxonomies.php:106 -msgctxt "sermon-manager" -msgid "New sermon series name" -msgstr "" - -#: includes/types-taxonomies.php:107 -msgctxt "sermon-manager" -msgid "Separate sermon series with commas" -msgstr "" - -#: includes/types-taxonomies.php:108 -msgctxt "sermon-manager" -msgid "Add or remove sermon series" -msgstr "" - -#: includes/types-taxonomies.php:109 -msgctxt "sermon-manager" -msgid "Choose from most used sermon series" -msgstr "" - -#: includes/types-taxonomies.php:124 includes/types-taxonomies.php:125 -#: includes/types-taxonomies.php:126 -msgctxt "sermon-manager" -msgid "Sermon Topics" -msgstr "" - -#: includes/types-taxonomies.php:127 -msgctxt "sermon-manager" -msgid "Search sermon topics" -msgstr "" - -#: includes/types-taxonomies.php:128 -msgctxt "sermon-manager" -msgid "Most popular sermon topics" -msgstr "" - -#: includes/types-taxonomies.php:129 -msgctxt "sermon-manager" -msgid "All sermon topics" -msgstr "" - -#: includes/types-taxonomies.php:130 -msgctxt "sermon-manager" -msgid "Edit sermon topic" -msgstr "" - -#: includes/types-taxonomies.php:131 -msgctxt "sermon-manager" -msgid "Update sermon topic" -msgstr "" - -#: includes/types-taxonomies.php:132 -msgctxt "sermon-manager" -msgid "Add new sermon topic" -msgstr "" - -#: includes/types-taxonomies.php:133 -msgctxt "sermon-manager" -msgid "New sermon topic" -msgstr "" - -#: includes/types-taxonomies.php:134 -msgctxt "sermon-manager" -msgid "Separate sermon topics with commas" -msgstr "" - -#: includes/types-taxonomies.php:135 -msgctxt "sermon-manager" -msgid "Add or remove sermon topics" -msgstr "" - -#: includes/types-taxonomies.php:136 -msgctxt "sermon-manager" -msgid "Choose from most used sermon topics" -msgstr "" - -#: includes/types-taxonomies.php:151 includes/types-taxonomies.php:152 -#: includes/types-taxonomies.php:153 -msgctxt "sermon-manager" -msgid "Book of the Bible" -msgstr "" - -#: includes/types-taxonomies.php:154 -msgctxt "sermon-manager" -msgid "Search books of the Bible" -msgstr "" - -#: includes/types-taxonomies.php:155 -msgctxt "sermon-manager" -msgid "Most popular books of the Bible" -msgstr "" - -#: includes/types-taxonomies.php:156 -msgctxt "sermon-manager" -msgid "All books of the Bible" -msgstr "" - -#: includes/types-taxonomies.php:157 -msgctxt "sermon-manager" -msgid "Edit book of the Bible" -msgstr "" - -#: includes/types-taxonomies.php:158 -msgctxt "sermon-manager" -msgid "Update book of the Bible" -msgstr "" - -#: includes/types-taxonomies.php:159 -msgctxt "sermon-manager" -msgid "Add new books of the Bible" -msgstr "" - -#: includes/types-taxonomies.php:160 -msgctxt "sermon-manager" -msgid "New book of the Bible" -msgstr "" - -#: includes/types-taxonomies.php:161 -msgctxt "sermon-manager" -msgid "Separate books of the Bible with commas" -msgstr "" - -#: includes/types-taxonomies.php:162 -msgctxt "sermon-manager" -msgid "Add or remove books of the Bible" -msgstr "" - -#: includes/types-taxonomies.php:163 -msgctxt "sermon-manager" -msgid "Choose from most used books of the Bible" -msgstr "" - -#: includes/types-taxonomies.php:178 includes/types-taxonomies.php:179 -#: includes/types-taxonomies.php:180 -msgctxt "sermon-manager" -msgid "Service Type" -msgstr "" - -#: includes/types-taxonomies.php:181 -msgctxt "sermon-manager" -msgid "Search service types" -msgstr "" - -#: includes/types-taxonomies.php:182 -msgctxt "sermon-manager" -msgid "Most popular service types" -msgstr "" - -#: includes/types-taxonomies.php:183 -msgctxt "sermon-manager" -msgid "All service types" -msgstr "" - -#: includes/types-taxonomies.php:184 -msgctxt "sermon-manager" -msgid "Edit service type" -msgstr "" - -#: includes/types-taxonomies.php:185 -msgctxt "sermon-manager" -msgid "Update service type" -msgstr "" - -#: includes/types-taxonomies.php:186 -msgctxt "sermon-manager" -msgid "Add new service types" -msgstr "" - -#: includes/types-taxonomies.php:187 -msgctxt "sermon-manager" -msgid "New Service Type" -msgstr "" - -#: includes/types-taxonomies.php:188 -msgctxt "sermon-manager" -msgid "Separate service types with commas" -msgstr "" - -#: includes/types-taxonomies.php:189 -msgctxt "sermon-manager" -msgid "Add or remove service types" -msgstr "" - -#: includes/types-taxonomies.php:190 -msgctxt "sermon-manager" -msgid "Choose from most used service types" -msgstr "" - -#: includes/types-taxonomies.php:226 -msgid "Sermon Details" -msgstr "" - -#: includes/types-taxonomies.php:233 -msgid "Date" -msgstr "" - -#: includes/types-taxonomies.php:234 -msgid "" -"Enter the date the sermon was given. NOTE: Each sermon must have a " -"date!" -msgstr "" - -#: includes/types-taxonomies.php:239 -msgid "Service Type" -msgstr "" - -#: includes/types-taxonomies.php:240 -msgid "" -"Select the type of service. Modify service types in Sermons -> Service Types." -msgstr "" - -#: includes/types-taxonomies.php:246 -msgid "Main Bible Passage" -msgstr "" - -#: includes/types-taxonomies.php:247 -msgid "Enter the Bible passage with the full book names,e.g. \"John 3:16-18\"." -msgstr "" - -#: includes/types-taxonomies.php:253 -msgid "" -"Type a brief description about this sermon, an outline, or a full manuscript" -msgstr "" - -#: includes/types-taxonomies.php:263 -msgid "Sermon Files" -msgstr "" - -#: includes/types-taxonomies.php:270 -msgid "Location of MP3" -msgstr "" - -#: includes/types-taxonomies.php:271 -msgid "Upload an audio file or enter an URL." -msgstr "" - -#: includes/types-taxonomies.php:276 -msgid "Video Embed Code" -msgstr "" - -#: includes/types-taxonomies.php:277 -msgid "Paste your embed code for Vimeo, Youtube, or other service here" -msgstr "" - -#: includes/types-taxonomies.php:282 -msgid "Sermon Notes" -msgstr "" - -#: includes/types-taxonomies.php:283 -msgid "Upload a pdf file or enter an URL." -msgstr "" - -#: includes/types-taxonomies.php:308 -msgid "Sermon updated. View sermon" -msgstr "" - -#: includes/types-taxonomies.php:309 -msgid "Custom field updated." -msgstr "" - -#: includes/types-taxonomies.php:310 -msgid "Custom field deleted." -msgstr "" - -#: includes/types-taxonomies.php:311 -msgid "Sermon updated." -msgstr "" - -#. translators: %s: date and time of the revision -#: includes/types-taxonomies.php:313 -msgid "Sermon restored to revision from %s" -msgstr "" - -#: includes/types-taxonomies.php:314 -msgid "Sermon published. View sermon" -msgstr "" - -#: includes/types-taxonomies.php:315 -msgid "Sermon saved." -msgstr "" - -#: includes/types-taxonomies.php:316 -msgid "Sermon submitted. Preview sermon" -msgstr "" - -#: includes/types-taxonomies.php:317 -msgid "" -"Sermon scheduled for: %1$s. Preview sermon" -msgstr "" - -#. translators: Publish box date format, see http:php.net/date -#: includes/types-taxonomies.php:319 -msgid "M j, Y @ G:i" -msgstr "" - -#: includes/types-taxonomies.php:320 -msgid "" -"Sermon draft updated. Preview sermon" -msgstr "" - -#: includes/types-taxonomies.php:334 -msgid "Things to remember when adding or editing a sermon:" -msgstr "" - -#: includes/types-taxonomies.php:336 -msgid "" -"Specify a sermon series if appropriate. This will help your site visitors " -"while browsing sermons." -msgstr "" - -#: includes/types-taxonomies.php:337 -msgid "Specify the correct preacher of the sermon." -msgstr "" - -#: includes/types-taxonomies.php:339 -msgid "If you want to schedule the sermon to be published in the future:" -msgstr "" - -#: includes/types-taxonomies.php:341 -msgid "Under the Publish meta box, click on the Edit link next to Publish." -msgstr "" - -#: includes/types-taxonomies.php:342 -msgid "" -"Change the date to the date to actual publish this article, then click on Ok." -msgstr "" - -#: includes/types-taxonomies.php:344 -msgid "For more help:" -msgstr "" - -#: includes/types-taxonomies.php:345 -msgid "" -"Wordpress for Church" -msgstr "" - -#: includes/types-taxonomies.php:348 -msgid "This is the help screen displaying on the sermons page." -msgstr "" - -#: includes/types-taxonomies.php:360 -msgid "Sermon Title" -msgstr "" - -#: includes/types-taxonomies.php:361 -msgid "Preacher" -msgstr "" - -#: includes/types-taxonomies.php:362 -msgid "Sermon Series" -msgstr "" - -#: includes/types-taxonomies.php:363 -msgid "Topics" -msgstr "" - -#: includes/types-taxonomies.php:364 -msgid "Views" -msgstr "" - -#: includes/upgrade.php:25 -msgid "Sermon Manager is almost ready." -msgstr "" - -#: includes/upgrade.php:25 -msgid "You must" -msgstr "" - -#: includes/upgrade.php:25 -msgid "resave your settings for it to function correctly!!!" -msgstr "" - -#: includes/widgets.php:9 -msgid "The most recent sermons on your site" -msgstr "" - -#: includes/widgets.php:10 includes/widgets.php:32 -msgid "Recent Sermons" -msgstr "" - -#: includes/widgets.php:112 -msgid "Title:" -msgstr "" - -#: includes/widgets.php:115 -msgid "Number of sermons to show:" -msgstr "" - -#: sermons.php:125 -msgid "Sermon" -msgid_plural "Sermons" -msgstr[0] "" -msgstr[1] "" - -#: views/archive-wpfc_sermon.php:26 views/archive-wpfc_sermon.php:81 -#: views/taxonomy-wpfc_bible_book.php:32 views/taxonomy-wpfc_bible_book.php:87 -#: views/taxonomy-wpfc_preacher.php:33 views/taxonomy-wpfc_preacher.php:88 -#: views/taxonomy-wpfc_sermon_series.php:34 -#: views/taxonomy-wpfc_sermon_series.php:89 -#: views/taxonomy-wpfc_sermon_topics.php:34 -#: views/taxonomy-wpfc_sermon_topics.php:89 -#: views/taxonomy-wpfc_service_type.php:32 -#: views/taxonomy-wpfc_service_type.php:87 -msgid " Older posts" -msgstr "" - -#: views/archive-wpfc_sermon.php:27 views/archive-wpfc_sermon.php:82 -#: views/taxonomy-wpfc_bible_book.php:33 views/taxonomy-wpfc_bible_book.php:88 -#: views/taxonomy-wpfc_preacher.php:34 views/taxonomy-wpfc_preacher.php:89 -#: views/taxonomy-wpfc_sermon_series.php:35 -#: views/taxonomy-wpfc_sermon_series.php:90 -#: views/taxonomy-wpfc_sermon_topics.php:35 -#: views/taxonomy-wpfc_sermon_topics.php:90 -#: views/taxonomy-wpfc_service_type.php:33 -#: views/taxonomy-wpfc_service_type.php:88 -msgid "Newer posts " -msgstr "" - -#: views/archive-wpfc_sermon.php:34 views/taxonomy-wpfc_bible_book.php:40 -#: views/taxonomy-wpfc_preacher.php:41 -#: views/taxonomy-wpfc_sermon_series.php:42 -#: views/taxonomy-wpfc_sermon_topics.php:42 -#: views/taxonomy-wpfc_service_type.php:40 -msgid "Not Found" -msgstr "" - -#: views/archive-wpfc_sermon.php:36 views/taxonomy-wpfc_bible_book.php:42 -#: views/taxonomy-wpfc_preacher.php:43 -#: views/taxonomy-wpfc_sermon_series.php:44 -#: views/taxonomy-wpfc_sermon_topics.php:44 -#: views/taxonomy-wpfc_service_type.php:42 -msgid "Apologies, but no sermons were found." -msgstr "" - -#: views/archive-wpfc_sermon.php:71 views/taxonomy-wpfc_bible_book.php:77 -#: views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -#: views/taxonomy-wpfc_service_type.php:77 -msgid "Leave a comment" -msgstr "" - -#: views/archive-wpfc_sermon.php:71 views/taxonomy-wpfc_bible_book.php:77 -#: views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -#: views/taxonomy-wpfc_service_type.php:77 -msgid "1 Comment" -msgstr "" - -#: views/archive-wpfc_sermon.php:71 views/taxonomy-wpfc_bible_book.php:77 -#: views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -#: views/taxonomy-wpfc_service_type.php:77 -msgid "% Comments" -msgstr "" - -#: views/archive-wpfc_sermon.php:72 views/single-wpfc_sermon.php:21 -#: views/taxonomy-wpfc_bible_book.php:78 views/taxonomy-wpfc_preacher.php:79 -#: views/taxonomy-wpfc_sermon_series.php:80 -#: views/taxonomy-wpfc_sermon_topics.php:80 -#: views/taxonomy-wpfc_service_type.php:78 -msgid "Edit" -msgstr "" - -#: views/single-wpfc_sermon.php:27 -msgctxt "Previous post link" -msgid "←" -msgstr "" - -#: views/single-wpfc_sermon.php:28 -msgctxt "Next post link" -msgid "→" -msgstr "" - -#: views/taxonomy-wpfc_bible_book.php:18 -msgid "Sermons by Book: %s" -msgstr "" - -#: views/taxonomy-wpfc_preacher.php:18 -msgid "Sermons by: %s" -msgstr "" - -#: views/taxonomy-wpfc_sermon_series.php:18 -msgid "Sermons Series: %s" -msgstr "" - -#: views/taxonomy-wpfc_sermon_topics.php:18 -msgid "Sermons Topic: %s" -msgstr "" - -#: views/taxonomy-wpfc_service_type.php:18 -msgid "Sermons By Service: %s" -msgstr "" +# Copyright (C) 2017 +# This file is distributed under the same license as the package. +msgid "" +msgstr "" +"Project-Id-Version: Sermon Manager 2.6\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/sermon-manager-for-wordpress\n" +"POT-Creation-Date: 2017-09-30 07:03:00+0200\n" +"PO-Revision-Date: 2017-09-30 07:03:00+0200\n" +"Last-Translator: GITNE \n" +"Language-Team: WP for Church \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. translators: plugin header field "Plugin Name" +#: sermons.php:3 +msgid "Sermon Manager for WordPress" +msgstr "" + +#. translators: plugin header field "Description" +#: sermons.php:5 +msgid "Add audio and video sermons, manage speakers, series, and more." +msgstr "" + +#. translators: %s see msgid "View sermon", effectively View sermon +#: includes/admin-functions.php:124 +msgid "Sermon updated. %s" +msgstr "" + +#: includes/admin-functions.php:124 +msgid "View sermon" +msgstr "" + +#: includes/admin-functions.php:125 +msgid "Custom field updated." +msgstr "" + +#: includes/admin-functions.php:126 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin-functions.php:127 +msgid "Sermon updated." +msgstr "" + +#: includes/admin-functions.php:129 +msgid "Sermon restored to revision from %s" +msgstr "" + +#. translators: %s see msgid "View sermon", effectively View sermon +#: includes/admin-functions.php:130 +msgid "Sermon published. %s" +msgstr "" + +#: includes/admin-functions.php:131 +msgid "Sermon saved." +msgstr "" + +#. translators: %s see msgid "Preview sermon", effectively Preview sermon +#: includes/admin-functions.php:132 +msgid "Sermon submitted. %s" +msgstr "" + +#: includes/admin-functions.php:132 +msgid "Preview sermon" +msgstr "" + +#. translators: %1$s see msgid "%1$s at %2$s", effectively at +#. translators: %2$s see msgid "Preview sermon", effectively Preview sermon +#: includes/admin-functions.php:133 +msgid "Sermon scheduled for: %1$s. %2$s" +msgstr "" + +#. translators: %1$s date +#. translators: %2$s time +#: includes/admin-functions.php:135 +msgid "%1$s at %2$s" +msgstr "" + +#. translators: %s see msgid "Preview sermon", effectively Preview sermon +#: includes/admin-functions.php:136 +msgid "" +"Sermon draft updated. %s" +msgstr "" + +#: includes/admin-functions.php:189 +msgid "Sermon Title" +msgstr "" + +#. translators: %s see msgid "Error:" +#: includes/admin-functions.php:212 +msgid "%s Can’t find sermon ID." +msgstr "" + +#: includes/admin-functions.php:212 +msgid "Error:" +msgstr "" + +#: includes/admin-functions.php:306 +msgid "%s sermon" +msgid_plural "%s sermons" +msgstr[0] "%s sermon" +msgstr[1] "%s sermons" + +#: includes/types-taxonomies.php:93 includes/types-taxonomies.php:95 +msgid "Preachers" +msgstr "" + +#: includes/types-taxonomies.php:94 includes/types-taxonomies.php:96 +#: includes/types-taxonomies.php:97 includes/types-taxonomies.php:98 +#: includes/types-taxonomies.php:99 includes/types-taxonomies.php:100 +#: includes/types-taxonomies.php:101 includes/types-taxonomies.php:102 +#: includes/types-taxonomies.php:103 includes/types-taxonomies.php:104 +#: includes/types-taxonomies.php:105 +msgid "Preacher" +msgstr "" + +#: includes/types-taxonomies.php:96 +msgid "Search %s" +msgstr "" + +#: includes/types-taxonomies.php:97 +msgid "Most frequent %s" +msgstr "" + +#: includes/types-taxonomies.php:98 +msgid "All %s" +msgstr "" + +#: includes/types-taxonomies.php:99 +msgid "Edit %s" +msgstr "" + +#: includes/types-taxonomies.php:100 +msgid "Update %s" +msgstr "" + +#: includes/types-taxonomies.php:101 +msgid "Add new %s" +msgstr "" + +#: includes/types-taxonomies.php:102 +msgid "New %s" +msgstr "" + +#: includes/types-taxonomies.php:103 +msgid "Separate multiple %s with commas" +msgstr "" + +#: includes/types-taxonomies.php:104 +msgid "Add or remove %s" +msgstr "" + +#: includes/types-taxonomies.php:105 +msgid "Choose from most frequent %s" +msgstr "" + +#: includes/admin-functions.php:191 includes/types-taxonomies.php:120 +#: includes/types-taxonomies.php:121 includes/types-taxonomies.php:122 +msgid "Sermon Series" +msgstr "" + +#: includes/admin-functions.php:192 +msgid "Topics" +msgstr "" + +#: includes/admin-functions.php:193 +msgid "Views" +msgstr "" + +#: includes/admin-functions.php:194 includes/types-taxonomies.php:301 +msgid "Date Preached" +msgstr "" + +#: includes/admin-functions.php:195 +msgid "Bible Passage" +msgstr "Bibelstelle" + +#: includes/helper-functions.php:193 includes/template-tags.php:129 +#: includes/template-tags.php:426 includes/template-tags.php:465 +msgid "Series: " +msgstr "" + +#: includes/options.php:74 +msgid "Sermon Manager Settings" +msgstr "" + +#: includes/options.php:94 includes/options.php:770 +#: includes/taxonomy-images/taxonomy-images.php:333 +#: includes/taxonomy-images/taxonomy-images.php:1238 +msgid "Settings" +msgstr "" + +#: includes/options.php:99 +msgid "Support" +msgstr "" + +#: includes/options.php:108 includes/taxonomy-images/taxonomy-images.php:1263 +msgid "Manage Settings" +msgstr "" + +#: includes/options.php:197 +msgid "Sermon Manager Options" +msgstr "" + +#: includes/options.php:203 +msgid "General" +msgstr "" + +#: includes/options.php:205 +msgid "Verse" +msgstr "" + +#: includes/options.php:207 +msgid "Podcast" +msgstr "" + +#: includes/options.php:213 +msgid "Options saved" +msgstr "" + +#: includes/options.php:222 +msgid "Need Some Help?" +msgstr "" + +#. translators: %s see msgid "Sign up" +#: includes/options.php:224 +msgid "" +"Did you know you can get expert support for only $49 per year! %s today and " +"get support from the developers who are building the Sermon Manager." +msgstr "" + +#: includes/options.php:224 +msgid "Sign up" +msgstr "" + +#: includes/options.php:227 +msgid "Free Support" +msgstr "" + +#: includes/options.php:228 +msgid "Priority Support" +msgstr "" + +#: includes/options.php:231 +msgid "We offer limited free support via WordPress.org" +msgstr "" + +#: includes/options.php:238 +msgid "Frequently Asked Questions" +msgstr "" + +#. translators: %s see msgid "Knowledge base" +#: includes/options.php:253 +msgid "Find out more in our %s" +msgstr "" + +#: includes/options.php:253 +msgid "knowledge base" +msgstr "" + +#: includes/options.php:259 +msgid "Lets Make It Even Better!" +msgstr "" + +#: includes/options.php:264 +msgid "Submit Your Idea" +msgstr "" + +#: includes/options.php:267 +msgid "" +"If you have ideas on how to make Sermon Manager or any of our products " +"better, let us know!" +msgstr "" + +#: includes/options.php:277 +msgid "General Settings" +msgstr "" + +#: includes/options.php:281 +msgid "Archive Page Title" +msgstr "" + +#: includes/options.php:289 +msgid "Archive Page Slug" +msgstr "" + +#. translators: %1$s see msgid "sermons/preacher", effectively sermons/preacher +#. translators: %2$s see msgid "sermons/series", effectively sermons/series +#: includes/options.php:297 +msgid "" +"Common Base Slug — this is for users who want to have a common base " +"slug across all taxonomies, e.g. %1$s or %2$s." +msgstr "" + +#: includes/options.php:297 +msgid "sermons/preacher" +msgstr "" + +#: includes/options.php:297 +msgid "sermons/series" +msgstr "" + +#: includes/options.php:302 +msgid "Enable a common base slug across all taxonomies" +msgstr "" + +#: includes/options.php:308 +msgid "" +"Enable Template Files — this is for users upgrading from an older " +"version who have issues with version 1.5+." +msgstr "" + +#. translators: %s effectively /views +#. Since /views is a locale independent folder name it MUST NOT be localized +#: includes/options.php:313 +msgid "Enable template files found in the %s folder" +msgstr "" + +#: includes/options.php:319 +msgid "Disable Sermon Styles" +msgstr "" + +#. translators: %s effectively sermons.css +#. Since sermons.css is a locale independent file name it MUST NOT be localized +#: includes/options.php:324 +msgid "" +"Disable Sermon CSS. If you do this, you should copy the styles from %s and " +"include them in your theme CSS." +msgstr "" + +#: includes/options.php:338 +msgid "Display audio player or video on archive pages" +msgstr "" + +#: includes/options.php:343 +msgid "Display an audio player or video embed in the archive listing." +msgstr "" + +#: includes/options.php:349 includes/options.php:354 +msgid "Use old audio player" +msgstr "" + +#: includes/options.php:352 +msgid "" +"Custom label for “Preacher”. Note: it will also change preacher " +"slugs." +msgstr "" + +#: includes/options.php:360 +msgid "Sermon date format (used when creating a new Sermon)" +msgstr "" + +#: includes/options.php:389 includes/options.php:395 +msgid "Show key verse in widget" +msgstr "" + +#: includes/options.php:393 +msgid "Version %s" +msgstr "" + +#: includes/options.php:406 +msgid "Current Version" +msgstr "" + +#: includes/options.php:414 +msgid "Verse Settings" +msgstr "" + +#: includes/options.php:419 +msgid "Verse Popups" +msgstr "" + +#: includes/options.php:425 +msgid "Disable Bib.ly verse popups" +msgstr "" + +#: includes/options.php:431 +msgid "Select Bible Version for Verse Popups" +msgstr "" + +#. translators: %1$s effectively ESV +#. translators: %2$s effectively NET +#. translators: %3$s effectively KJV +#. translators: %4$s effectively LEB +#. translators: %5$s see msgid "bib.ly", effectively bib.ly +#: includes/options.php:444 +msgid "%1$s, %2$s, %3$s, or %4$s are the currently supported popups for %5$s." +msgstr "" + +#: includes/options.php:449 +msgid "bib.ly" +msgstr "" + +#. translators: %s see effectively ESV +#: includes/options.php:451 +msgid "Warning! %s is not supported if your site uses SSL (HTTPS)." +msgstr "" + +#: includes/options.php:464 +msgid "Podcast Settings" +msgstr "" + +#: includes/options.php:486 +msgid "Title" +msgstr "" + +#: includes/options.php:490 includes/options.php:500 includes/options.php:510 +#: includes/options.php:520 includes/options.php:555 includes/options.php:603 +#: includes/options.php:616 +msgid "e.g. %s" +msgstr "" + +#: includes/options.php:496 includes/types-taxonomies.php:323 +msgid "Description" +msgstr "" + +#: includes/options.php:506 +msgid "Website Link" +msgstr "" + +#: includes/options.php:516 +msgid "Language" +msgstr "" + +#: includes/options.php:526 +msgid "Copyright" +msgstr "" + +#: includes/options.php:530 +msgid "e.g. Copyright © %s" +msgstr "" + +#. translators: %s &copy; +#: includes/options.php:535 +msgid "Tip: Use %s to generate a copyright symbol." +msgstr "" + +#: includes/options.php:541 +msgid "Webmaster Name" +msgstr "" + +#: includes/options.php:545 +msgid "e.g. Your Name" +msgstr "" + +#: includes/options.php:551 +msgid "Webmaster Email" +msgstr "" + +#: includes/options.php:561 +msgid "Author" +msgstr "" + +#: includes/options.php:565 +msgid "e.g. Primary Speaker or Church Name" +msgstr "" + +#: includes/options.php:569 +msgid "This will display at the “Artist” in the iTunes Store." +msgstr "" + +#: includes/options.php:574 +msgid "Subtitle" +msgstr "" + +#: includes/options.php:578 +msgid "e.g. Preaching and teaching audio from %s" +msgstr "" + +#: includes/options.php:582 +msgid "" +"Your subtitle should briefly tell the listener what they can expect to hear." +msgstr "" + +#: includes/options.php:587 +msgid "Summary" +msgstr "" + +#: includes/options.php:591 +msgid "e.g. Weekly teaching audio brought to you by %s in City, State." +msgstr "" + +#: includes/options.php:594 +msgid "" +"Keep your Podcast Summary short, sweet and informative. Be sure to include a " +"brief statement about your mission and in what region your audio content " +"originates." +msgstr "" + +#: includes/options.php:599 +msgid "Owner Name" +msgstr "" + +#: includes/options.php:607 +msgid "This should typically be the name of your Church." +msgstr "" + +#: includes/options.php:612 +msgid "Owner Email" +msgstr "" + +#: includes/options.php:620 +msgid "" +"Use an email address that you don’t mind being made public. If someone " +"wants to contact you regarding your Podcast this is the address they will use." +msgstr "" + +#: includes/options.php:625 +msgid "Cover Image" +msgstr "" + +#: includes/options.php:632 +msgid "Upload Image" +msgstr "" + +#: includes/options.php:635 +msgid "" +"This JPG will serve as the Podcast artwork in the iTunes Store. The image " +"must be between 1,400px by 1,400px and 3,000px by 3,000px or else iTunes will " +"not accept your feed." +msgstr "" + +#: includes/options.php:640 +msgid "Top Category" +msgstr "" + +#: includes/options.php:648 +msgid "" +"Choose the appropriate top-level category for your Podcast listing in iTunes." +msgstr "" + +#: includes/options.php:653 +msgid "Sub Category" +msgstr "" + +#: includes/options.php:661 +msgid "Choose the appropriate sub category for your Podcast listing in iTunes." +msgstr "" + +#: includes/options.php:666 +msgid "PodTrac Tracking" +msgstr "" + +#: includes/options.php:671 +msgid "Enables PodTrac tracking." +msgstr "" + +#. translators: %s podtrac.com +#: includes/options.php:675 +msgid "For more info on PodTrac or to sign up for an account, visit %s" +msgstr "" + +#: includes/options.php:680 +msgid "HTML in description" +msgstr "" + +#: includes/options.php:686 +msgid "Enable HTML description" +msgstr "" + +#: includes/options.php:690 +msgid "" +"Enables showing of HTML in iTunes description field. Uncheck if description " +"looks messy." +msgstr "" + +#: includes/options.php:695 +msgid "Number of podcasts to show" +msgstr "" + +#: includes/options.php:704 +msgid "" +"Shows custom podcast count. If not defined, it uses WordPress default count." +msgstr "" + +#: includes/options.php:715 +msgid "Feed URL to Submit to iTunes" +msgstr "" + +#. translators: %s Feed Validator link, see msgid "Feed Validator" +#: includes/options.php:722 +msgid "" +"Use the %s to diagnose and fix any problems before submitting your Podcast to " +"iTunes." +msgstr "" + +#: includes/options.php:722 +msgid "Feed Validator" +msgstr "" + +#. translators: %s see msgid "Submit Your Podcast" +#: includes/options.php:725 +msgid "" +"Once your Podcast Settings are complete and your Sermons are ready, " +"it’s time to %s to the iTunes Store!" +msgstr "" + +#: includes/options.php:725 +msgid "Submit Your Podcast" +msgstr "" + +#. translators: %s see msgid "FeedBurner" +#: includes/options.php:727 +msgid "" +"Alternatively, if you want to track your Podcast subscribers, simply pass the " +"Podcast Feed URL above through %s. FeedBurner will then give you a new URL to " +"submit to iTunes instead." +msgstr "" + +#: includes/options.php:727 +msgid "FeedBurner" +msgstr "" + +#. translators: %s see msgid "iTunes FAQ for Podcast Makers" +#: includes/options.php:730 +msgid "Please read the %s for more information." +msgstr "" + +#: includes/options.php:730 +msgid "iTunes FAQ for Podcast Makers" +msgstr "" + +#: includes/options.php:751 includes/taxonomy-images/taxonomy-images.php:395 +msgid "Save Changes" +msgstr "" + +#: includes/shortcodes.php:781 includes/template-tags.php:114 +#: views/archive-wpfc_sermon.php:40 views/taxonomy-wpfc_bible_book.php:72 +#: views/taxonomy-wpfc_preacher.php:78 +#: views/taxonomy-wpfc_sermon_series.php:79 +#: views/taxonomy-wpfc_sermon_topics.php:79 +#: views/taxonomy-wpfc_service_type.php:72 +msgid "Permalink to %s" +msgstr "" + +#: includes/taxonomy-images/public-filters.php:385 +msgid "" +"%1$s is not a property of the current queried object. This usually happens " +"when the %2$s filter is used in an unsupported template file. This filter " +"has been designed to work in taxonomy archives which are traditionally " +"served by one of the following template files: category.php, tag.php or " +"taxonomy.php. Learn more about %3$s." +msgstr "" + +#: includes/taxonomy-images/public-filters.php:386 +msgid "term_taxonomy_id" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:130 +msgid "Associate with %1$s" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:130 +#: includes/taxonomy-images/taxonomy-images.php:131 +msgid "this term" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:131 +msgid "Remove association with %1$s" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:290 +msgid "Image support for taxonomies successfully updated" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:293 +msgid "Image support has been disabled for all taxonomies." +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:339 +msgid "Taxonomies" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:359 +#: includes/taxonomy-images/taxonomy-images.php:360 +msgid "Taxonomy Images" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:387 +msgid "Taxonomy Images Plugin Settings" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:447 +msgid "Unknown error encountered" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:529 +#: includes/taxonomy-images/taxonomy-images.php:611 +msgid "tt_id not sent" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:537 +#: includes/taxonomy-images/taxonomy-images.php:619 +msgid "tt_id is empty" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:544 +#: includes/taxonomy-images/taxonomy-images.php:626 +msgid "You do not have the correct capability to manage this term" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:551 +#: includes/taxonomy-images/taxonomy-images.php:633 +msgid "No nonce included." +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:558 +#: includes/taxonomy-images/taxonomy-images.php:640 +msgid "Nonce did not match" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:565 +msgid "Image id not sent" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:573 +msgid "Image id is not a positive integer" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:582 +msgid "Image successfully associated" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:588 +msgid "Association could not be created" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:648 +msgid "Nothing to remove" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:657 +msgid "Association successfully removed" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:662 +msgid "Association could not be removed" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:739 +#: includes/taxonomy-images/taxonomy-images.php:793 +msgid "Image" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:786 +#: includes/taxonomy-images/taxonomy-images.php:823 +msgid "term" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:797 +msgid "Associate an image from your media library to this %1$s." +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:846 +msgid "Associate an image with the %1$s named “%2$s”." +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:847 +msgid "Upload a new image for this %s." +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:847 +msgid "Upload." +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:848 +msgid "Remove image from this %s." +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:848 +msgid "Delete" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:882 +msgid "“" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:883 +msgid "”" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:884 +msgid "Associating …" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:885 +msgid "Successfully Associated" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:886 +msgid "Removing …" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:887 +msgid "Successfully Removed" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:1162 +msgid "" +"The %1$s argument for %2$s is set to %3$s which is not a registered " +"taxonomy. Please check the spelling and update the argument." +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:1163 +msgid "taxonomy" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:1174 +msgid "No taxonomies have image support. %1$s" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:1180 +msgid "The %1$s taxonomy does not have image support. %2$s" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:1206 +msgid "The %1$s has been called directly. Please use the %2$s filter instead." +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:1243 +msgid "Donate" +msgstr "" + +#. translators: %s see msgid "Preacher" +#: includes/taxonomy-images/taxonomy-images.php:1302 +#: includes/taxonomy-images/taxonomy-images.php:1303 +msgid "Set %s’s image" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:1304 +#: includes/taxonomy-images/taxonomy-images.php:1305 +msgid "Set Series image" +msgstr "" + +#: includes/template-tags.php:127 includes/template-tags.php:424 +#: includes/template-tags.php:463 includes/widgets.php:96 +msgid "Bible Text: " +msgstr "" + +#: includes/template-tags.php:389 +msgid "Download Files" +msgstr "" + +#: includes/template-tags.php:391 +msgid "MP3" +msgstr "" + +#: includes/template-tags.php:394 +msgid "Notes" +msgstr "" + +#: includes/template-tags.php:397 includes/types-taxonomies.php:378 +msgid "Bulletin" +msgstr "" + +#: includes/template-tags.php:439 +msgid "Sermon Topics: " +msgstr "" + +#: includes/types-taxonomies.php:58 includes/types-taxonomies.php:68 +msgid "Sermons" +msgstr "" + +#: includes/types-taxonomies.php:59 +msgid "Sermon" +msgstr "" + +#: includes/types-taxonomies.php:60 +msgid "Add New" +msgstr "" + +#: includes/types-taxonomies.php:61 +msgid "Add New Sermon" +msgstr "" + +#: includes/types-taxonomies.php:62 +msgid "Edit Sermon" +msgstr "" + +#: includes/types-taxonomies.php:63 +msgid "New Sermon" +msgstr "" + +#: includes/types-taxonomies.php:64 +msgid "View Sermon" +msgstr "" + +#: includes/types-taxonomies.php:65 +msgid "Search Sermons" +msgstr "" + +#: includes/types-taxonomies.php:66 +msgid "No sermons found" +msgstr "" + +#: includes/types-taxonomies.php:67 +msgid "No sermons found in Trash" +msgstr "" + +#: includes/types-taxonomies.php:123 +msgid "Search sermon series" +msgstr "" + +#: includes/types-taxonomies.php:124 +msgid "Most frequent sermon series" +msgstr "" + +#: includes/types-taxonomies.php:125 +msgid "All sermon series" +msgstr "" + +#: includes/types-taxonomies.php:126 +msgid "Edit sermon series" +msgstr "" + +#: includes/types-taxonomies.php:127 +msgid "Update sermon series" +msgstr "" + +#: includes/types-taxonomies.php:128 +msgid "Add new sermon series" +msgstr "" + +#: includes/types-taxonomies.php:129 +msgid "New sermon series name" +msgstr "" + +#: includes/types-taxonomies.php:130 +msgid "Separate sermon series with commas" +msgstr "" + +#: includes/types-taxonomies.php:131 +msgid "Add or remove sermon series" +msgstr "" + +#: includes/types-taxonomies.php:132 +msgid "Choose from most used sermon series" +msgstr "" + +#: includes/types-taxonomies.php:147 includes/types-taxonomies.php:148 +#: includes/types-taxonomies.php:149 +msgid "Sermon Topics" +msgstr "" + +#: includes/types-taxonomies.php:150 +msgid "Search sermon topics" +msgstr "" + +#: includes/types-taxonomies.php:151 +msgid "Most popular sermon topics" +msgstr "" + +#: includes/types-taxonomies.php:152 +msgid "All sermon topics" +msgstr "" + +#: includes/types-taxonomies.php:153 +msgid "Edit sermon topic" +msgstr "" + +#: includes/types-taxonomies.php:154 +msgid "Update sermon topic" +msgstr "" + +#: includes/types-taxonomies.php:155 +msgid "Add new sermon topic" +msgstr "" + +#: includes/types-taxonomies.php:156 +msgid "New sermon topic" +msgstr "" + +#: includes/types-taxonomies.php:157 +msgid "Separate sermon topics with commas" +msgstr "" + +#: includes/types-taxonomies.php:158 +msgid "Add or remove sermon topics" +msgstr "" + +#: includes/types-taxonomies.php:159 +msgid "Choose from most used sermon topics" +msgstr "" + +#: includes/types-taxonomies.php:174 includes/types-taxonomies.php:175 +#: includes/types-taxonomies.php:176 +msgid "Book of the Bible" +msgstr "" + +#: includes/types-taxonomies.php:177 +msgid "Search books of the Bible" +msgstr "" + +#: includes/types-taxonomies.php:178 +msgid "Most popular books of the Bible" +msgstr "" + +#: includes/types-taxonomies.php:179 +msgid "All books of the Bible" +msgstr "" + +#: includes/types-taxonomies.php:180 +msgid "Edit book of the Bible" +msgstr "" + +#: includes/types-taxonomies.php:181 +msgid "Update book of the Bible" +msgstr "" + +#: includes/types-taxonomies.php:182 +msgid "Add new books of the Bible" +msgstr "" + +#: includes/types-taxonomies.php:183 +msgid "New book of the Bible" +msgstr "" + +#: includes/types-taxonomies.php:184 +msgid "Separate books of the Bible with commas" +msgstr "" + +#: includes/types-taxonomies.php:185 +msgid "Add or remove books of the Bible" +msgstr "" + +#: includes/types-taxonomies.php:186 +msgid "Choose from most used books of the Bible" +msgstr "" + +#: includes/types-taxonomies.php:201 includes/types-taxonomies.php:202 +#: includes/types-taxonomies.php:203 includes/types-taxonomies.php:309 +msgid "Service Type" +msgstr "" + +#: includes/types-taxonomies.php:204 +msgid "Search service types" +msgstr "" + +#: includes/types-taxonomies.php:205 +msgid "Most popular service types" +msgstr "" + +#: includes/types-taxonomies.php:206 +msgid "All service types" +msgstr "" + +#: includes/types-taxonomies.php:207 +msgid "Edit service type" +msgstr "" + +#: includes/types-taxonomies.php:208 +msgid "Update service type" +msgstr "" + +#: includes/types-taxonomies.php:209 +msgid "Add new service types" +msgstr "" + +#: includes/types-taxonomies.php:210 +msgid "New Service Type" +msgstr "" + +#: includes/types-taxonomies.php:211 +msgid "Separate service types with commas" +msgstr "" + +#: includes/types-taxonomies.php:212 +msgid "Add or remove service types" +msgstr "" + +#: includes/types-taxonomies.php:213 +msgid "Choose from most used service types" +msgstr "" + +#: includes/types-taxonomies.php:273 +msgid "Sermon Details" +msgstr "" + +#. translators: %s date format, effectively d/m/Y or the like +#: includes/types-taxonomies.php:302 +msgid "format: %s" +msgstr "" + +#: includes/types-taxonomies.php:310 +msgid "" +"Select the type of service. Modify service types in Sermons → Service " +"Types." +msgstr "" + +#: includes/types-taxonomies.php:317 +msgid "Main Bible Passage" +msgstr "" + +#. translators: %s see msgid "John 3:16-18", effectively John 3:16-18 +#: includes/types-taxonomies.php:318 +msgid "Enter the Bible passage with the full book names, e.g. %s." +msgstr "" + +#: includes/types-taxonomies.php:318 +msgid "John 3:16-18" +msgstr "" + +#: includes/types-taxonomies.php:324 +msgid "" +"Type a brief description about this sermon, an outline, or a full manuscript" +msgstr "" + +#: includes/types-taxonomies.php:332 +msgid "Sermon Files" +msgstr "" + +#: includes/types-taxonomies.php:341 +msgid "Location of MP3" +msgstr "" + +#: includes/types-taxonomies.php:342 +msgid "Upload an audio file or enter an URL." +msgstr "" + +#: includes/types-taxonomies.php:346 +msgid "Add Sermon Audio" +msgstr "" + +#: includes/types-taxonomies.php:350 +msgid "MP3 Duration" +msgstr "" + +#. translators: %s see msgid "hh:mm:ss", effectively hh:mm:ss +#: includes/types-taxonomies.php:351 +msgid "" +"Length in %s format (if left blank, will attempt to calculate automatically " +"when you save)" +msgstr "" + +#: includes/types-taxonomies.php:351 +msgid "hh:mm:ss" +msgstr"" + +#: includes/types-taxonomies.php:356 +msgid "Video Embed Code" +msgstr "" + +#: includes/types-taxonomies.php:357 +msgid "Paste your embed code for Vimeo, Youtube, or other service here" +msgstr "" + +#: includes/types-taxonomies.php:362 +msgid "Video Link" +msgstr "" + +#: includes/types-taxonomies.php:363 +msgid "Paste your link for Vimeo, Youtube, or other service here" +msgstr "" + +#: includes/types-taxonomies.php:369 +msgid "Sermon Notes" +msgstr "" + +#: includes/types-taxonomies.php:370 includes/types-taxonomies.php:379 +msgid "Upload a pdf file or enter an URL." +msgstr "" + +#: includes/types-taxonomies.php:374 includes/types-taxonomies.php:383 +msgid "Add File" +msgstr "" + +#: includes/widgets.php:12 +msgid "The most recent sermons on your site" +msgstr "" + +#: includes/widgets.php:14 includes/widgets.php:43 +msgid "Recent Sermons" +msgstr "" + +#: includes/widgets.php:134 +msgid "Title:" +msgstr "" + +#: includes/widgets.php:140 +msgid "Number of sermons to show:" +msgstr "" + +#. translators: %s see msgid "←", effectively +#: views/archive-wpfc_sermon.php:18 views/archive-wpfc_sermon.php:71 +msgid "%s Older sermons" +msgstr "" + +#. translators: %s see msgid "→", effectively +#: views/archive-wpfc_sermon.php:21 views/archive-wpfc_sermon.php:74 +msgid "Newer sermons %s" +msgstr "" + +#: views/archive-wpfc_sermon.php:28 views/taxonomy-wpfc_bible_book.php:45 +#: views/taxonomy-wpfc_preacher.php:51 +#: views/taxonomy-wpfc_sermon_series.php:52 +#: views/taxonomy-wpfc_sermon_topics.php:52 +#: views/taxonomy-wpfc_service_type.php:45 +msgid "Not Found" +msgstr "" + +#: views/archive-wpfc_sermon.php:30 views/taxonomy-wpfc_bible_book.php:47 +#: views/taxonomy-wpfc_preacher.php:53 +#: views/taxonomy-wpfc_sermon_series.php:54 +#: views/taxonomy-wpfc_sermon_topics.php:54 +#: views/taxonomy-wpfc_service_type.php:47 +msgid "Apologies, but no sermons were found." +msgstr "" + +#. translators: %s date +#:views/archive-wpfc_sermon.php:47 views/taxonomy-wpfc_bible_book.php:77 +msgid "Preached on %s" +msgstr "" + +#: views/archive-wpfc_sermon.php:60 views/taxonomy-wpfc_bible_book.php:88 +#: views/taxonomy-wpfc_preacher.php:94 +#: views/taxonomy-wpfc_sermon_series.php:95 +#: views/taxonomy-wpfc_sermon_topics.php:95 +#: views/taxonomy-wpfc_service_type.php:88 +msgid "Leave a comment" +msgstr "" + +#: views/archive-wpfc_sermon.php:60 views/taxonomy-wpfc_bible_book.php:88 +#: views/taxonomy-wpfc_preacher.php:94 +#: views/taxonomy-wpfc_sermon_series.php:95 +#: views/taxonomy-wpfc_sermon_topics.php:95 +#: views/taxonomy-wpfc_service_type.php:88 +msgid "%s Comment" +msgid_plural "%s Comments" +msgstr[0] "%s Comment" +msgstr[1] "%s Comments" + +#: views/archive-wpfc_sermon.php:62 views/single-wpfc_sermon.php:35 +#: views/taxonomy-wpfc_bible_book.php:89 views/taxonomy-wpfc_preacher.php:95 +#: views/taxonomy-wpfc_sermon_series.php:96 +#: views/taxonomy-wpfc_sermon_topics.php:96 +#: views/taxonomy-wpfc_service_type.php:89 +msgid "Edit" +msgstr "" + +#: views/single-wpfc_sermon.php:42 +msgctxt "Previous post link" +msgid "←" +msgstr "" + +#: views/single-wpfc_sermon.php:44 +msgctxt "Next post link" +msgid "→" +msgstr "" + +#: views/taxonomy-wpfc_bible_book.php:20 +msgid "Sermons by Book: %s" +msgstr "" + +#. translators: %s see msgid "←", effectively +#: views/taxonomy-wpfc_bible_book.php:36 views/taxonomy-wpfc_bible_book.php:99 +#: views/taxonomy-wpfc_preacher.php:42 views/taxonomy-wpfc_preacher.php:105 +#: views/taxonomy-wpfc_sermon_series.php:43 +#: views/taxonomy-wpfc_sermon_series.php:106 +#: views/taxonomy-wpfc_sermon_topics.php:43 +#: views/taxonomy-wpfc_sermon_topics.php:106 +#: views/taxonomy-wpfc_service_type.php:36 +#: views/taxonomy-wpfc_service_type.php:99 +msgid "%s Older posts" +msgstr "" + +#. translators: %s see msgid "→", effectively +#: views/taxonomy-wpfc_bible_book.php:38 +#: views/taxonomy-wpfc_bible_book.php:101 views/taxonomy-wpfc_preacher.php:44 +#: views/taxonomy-wpfc_preacher.php:107 +#: views/taxonomy-wpfc_sermon_series.php:45 +#: views/taxonomy-wpfc_sermon_series.php:108 +#: views/taxonomy-wpfc_sermon_topics.php:45 +#: views/taxonomy-wpfc_sermon_topics.php:108 +#: views/taxonomy-wpfc_service_type.php:38 +#: views/taxonomy-wpfc_service_type.php:101 +msgid "Newer posts %s" +msgstr "" + +#: views/taxonomy-wpfc_preacher.php:20 +msgid "Sermons by: %s" +msgstr "" + +#: views/taxonomy-wpfc_sermon_series.php:20 +msgid "Sermons Series: %s" +msgstr "" + +#: views/taxonomy-wpfc_sermon_topics.php:20 +msgid "Sermons Topic: %s" +msgstr "" + +#: views/taxonomy-wpfc_service_type.php:20 +msgid "Sermons By Service: %s" +msgstr "" diff --git a/views/archive-wpfc_sermon.php b/views/archive-wpfc_sermon.php old mode 100755 new mode 100644 index 509c301..97bf7c1 --- a/views/archive-wpfc_sermon.php +++ b/views/archive-wpfc_sermon.php @@ -10,24 +10,24 @@
    -

    +

    max_num_pages > 1 ) : ?>
    -

    +

    -

    +

    @@ -37,16 +37,15 @@
    >

    + title="">

    @@ -57,9 +56,9 @@
    - + ID )['approved'] ), 'sermon-manager' ) ), number_format_i18n( $approved_comments_count ) ) ); ?> - | ', '' ); ?> + | ', '' ); ?>
    @@ -68,10 +67,10 @@ max_num_pages > 1 ) : ?> diff --git a/views/taxonomy-wpfc_bible_book.php b/views/taxonomy-wpfc_bible_book.php old mode 100755 new mode 100644 index 27f8dc4..090e825 --- a/views/taxonomy-wpfc_bible_book.php +++ b/views/taxonomy-wpfc_bible_book.php @@ -17,7 +17,7 @@

    ' . single_cat_title( '', false ) . '' ); + echo wp_sprintf( esc_html__( 'Sermons by Book: %s', 'sermon-manager' ), '' . esc_html( single_cat_title( '', false ) ) . '' ); ?>

    max_num_pages > 1 ) : ?> + class="nav-next">' . esc_html__( '→', 'sermon-manager' ) . '' ) ); ?>
    -

    +

    -

    +

    @@ -69,12 +69,12 @@ class="nav-next">" >

    @@ -85,8 +85,8 @@ class="meta-sep"> by ID, 'wpfc_preacher', '
    - | ', '' ); ?> + class="comments-link">ID )['approved'] ), 'sermon-manager' ) ), number_format_i18n( $approved_comments_count ) ) ); ?> + | ', '' ); ?>
    @@ -96,9 +96,9 @@ class="comments-link">max_num_pages > 1 ) : ?> + class="nav-next">' . esc_html__( '→', 'sermon-manager' ) . '' ) ); ?>
    diff --git a/views/taxonomy-wpfc_preacher.php b/views/taxonomy-wpfc_preacher.php old mode 100755 new mode 100644 index 7f5ad95..36f0ed3 --- a/views/taxonomy-wpfc_preacher.php +++ b/views/taxonomy-wpfc_preacher.php @@ -17,7 +17,7 @@

    ' . single_cat_title( '', false ) . '' ); + echo wp_sprintf( esc_html__( 'Sermons by: %s', 'sermon-manager' ), '' . esc_html( single_cat_title( '', false ) ) . '' ); ?>

    max_num_pages > 1 ) : ?> + class="nav-next">' . esc_html__( '→', 'sermon-manager' ) . '' ) ); ?>
    -

    +

    -

    +

    @@ -75,12 +75,12 @@ class="nav-next">" >

    @@ -91,8 +91,8 @@ class="meta-sep"> by ID, 'wpfc_preacher', '
    - | ', '' ); ?> + class="comments-link">ID )['approved'] ), 'sermon-manager' ) ), number_format_i18n( $approved_comments_count ) ) ); ?> + | ', '' ); ?>
    @@ -102,9 +102,9 @@ class="comments-link">max_num_pages > 1 ) : ?> + class="nav-next">' . esc_html__( '→', 'sermon-manager' ) . '' ) ); ?>
    diff --git a/views/taxonomy-wpfc_sermon_series.php b/views/taxonomy-wpfc_sermon_series.php old mode 100755 new mode 100644 index d55d46d..a45f0bf --- a/views/taxonomy-wpfc_sermon_series.php +++ b/views/taxonomy-wpfc_sermon_series.php @@ -17,7 +17,7 @@

    ' . single_cat_title( '', false ) . '' ); + echo wp_sprintf( esc_html__( 'Sermons Series: %s', 'sermon-manager' ), '' . esc_html( single_cat_title( '', false ) ) . '' ); ?>

    max_num_pages > 1 ) : ?> + class="nav-next">' . esc_html__( '→', 'sermon-manager' ) . '' ) ); ?>
    -

    +

    -

    +

    @@ -76,12 +76,12 @@ class="nav-next">" >

    @@ -92,8 +92,8 @@ class="meta-sep"> by ID, 'wpfc_preacher', '
    - | ', '' ); ?> + class="comments-link">ID )['approved'] ), 'sermon-manager' ) ), number_format_i18n( $approved_comments_count ) ) ); ?> + | ', '' ); ?>
    @@ -103,9 +103,9 @@ class="comments-link">max_num_pages > 1 ) : ?> + class="nav-next">' . esc_html__( '→', 'sermon-manager' ) . '' ) ); ?>
    diff --git a/views/taxonomy-wpfc_sermon_topics.php b/views/taxonomy-wpfc_sermon_topics.php old mode 100755 new mode 100644 index 2825ecb..985ae87 --- a/views/taxonomy-wpfc_sermon_topics.php +++ b/views/taxonomy-wpfc_sermon_topics.php @@ -17,7 +17,7 @@

    ' . single_cat_title( '', false ) . '' ); + echo wp_sprintf( esc_html__( 'Sermons Topic: %s', 'sermon-manager' ), '' . esc_html( single_cat_title( '', false ) ) . '' ); ?>

    max_num_pages > 1 ) : ?> + class="nav-next">' . esc_html__( '→', 'sermon-manager' ) . '' ) ); ?>
    -

    +

    -

    +

    @@ -76,12 +76,12 @@ class="nav-next">" >

    @@ -92,8 +92,8 @@ class="meta-sep"> by ID, 'wpfc_preacher', '
    - | ', '' ); ?> + class="comments-link">ID )['approved'] ), 'sermon-manager' ) ), number_format_i18n( $approved_comments_count ) ) ); ?> + | ', '' ); ?>
    @@ -103,9 +103,9 @@ class="comments-link">max_num_pages > 1 ) : ?> + class="nav-next">' . esc_html__( '→', 'sermon-manager' ) . '' ) ); ?>
    diff --git a/views/taxonomy-wpfc_service_type.php b/views/taxonomy-wpfc_service_type.php old mode 100755 new mode 100644 index 0451a5b..bea61c9 --- a/views/taxonomy-wpfc_service_type.php +++ b/views/taxonomy-wpfc_service_type.php @@ -17,7 +17,7 @@

    ' . single_cat_title( '', false ) . '' ); + echo wp_sprintf( esc_html__( 'Sermons By Service: %s', 'sermon-manager' ), '' . esc_html( single_cat_title( '', false ) ) . '' ); ?>

    max_num_pages > 1 ) : ?> + class="nav-next">' . esc_html__( '→', 'sermon-manager' ) . '' ) ); ?>
    -

    +

    -

    +

    @@ -69,12 +69,12 @@ class="nav-next">" >

    @@ -85,8 +85,8 @@ class="meta-sep"> by ID, 'wpfc_preacher', '
    - | ', '' ); ?> + class="comments-link">ID )['approved'] ), 'sermon-manager' ) ), number_format_i18n( $approved_comments_count ) ) ); ?> + | ', '' ); ?>
    @@ -96,9 +96,9 @@ class="comments-link">max_num_pages > 1 ) : ?> + class="nav-next">' . esc_html__( '→', 'sermon-manager' ) . '' ) ); ?>
    From 4b62d80e0c227bbd2cd4ddc751d4166bf541859b Mon Sep 17 00:00:00 2001 From: GITNE Date: Sat, 30 Sep 2017 07:34:36 +0200 Subject: [PATCH 07/27] Update de translations --- languages/sermon-manager-de_DE.mo | Bin 0 -> 25689 bytes languages/sermon-manager-de_DE.po | 2545 ++++++++++++++++------------- 2 files changed, 1374 insertions(+), 1171 deletions(-) create mode 100644 languages/sermon-manager-de_DE.mo diff --git a/languages/sermon-manager-de_DE.mo b/languages/sermon-manager-de_DE.mo new file mode 100644 index 0000000000000000000000000000000000000000..6a81dcc2f0c2e49dae4df0a775cafc6e948a5fac GIT binary patch literal 25689 zcmbW937i~Pedi1CDH~tlBjGAxOW1g(b=hE#Y|A5QbfCksXJp03U}~moy4%xT-L9(E zXa~!p0^nY%nB*D;x>;nO&|0Y#@*TVV5I7Si()net-Y>s=B&0a`5)Y zZ+=y;-uZw3>;2!8zjD@bFAexT{6RtRNbub!1wo(Zo6b~j5Uf8p2u=kzfV;@Q3f#f_ zbIuEbM}waL&jG&+o(3NG8$oae_%QI{;054`;N>1CLAnTb`}gZW)w>Z?y%x9yTn1Nx z?*xAn{1A9H_)nnP{jq;Pg^#MY8VtdW;3L3kk6n+?2TvgXwV=lPMo?4ykjHyHehYjn z`M&_yfN!EPmAe-_3;Y&%8Td-0_ zsP-QPiZ1IwiUgN|7lH@D^TB6$yxZf4!JXuP8{7wOWHF9_w}U5xKLbwzAM%(WI2}A4 z6#X9K@lx3E{{4HP`u`9Aeilrqah?y-b#Nsp`qV-3*%9z~@L8bf@?21KeTB!jf(h@R0>x)r zE^>UZ57hW>0JSc4@N)3aLCxbUAXS3zfg1n0k9T+>sPSG7o&@d!PX@2``A-Hl&s+Ta z?V$MKg`mcD52*G&0*c=EfvW!vQ0;yn)O>#hO3$2kvBPnXTS1mII0Rk`{x%4yf=_}W z_!Cfkavsbo-0bnGpvL=5Q0wzNQ2o6aJQe&iQ0wvrQ2hEqP~-jw@Ko?;py+qPxO;y% zsQ1;N=(P^K1l$6mih~@~_9_k9iYbdN1)of3lx3d25P<^0X3dafqTJkfolH=>s-C7K()6A)cV{E zs@^gvIy@UxyLW=B_g5bO23*Dad%@GezXv53UjlCje*x|QZ(Hx=@&h2E8vF!&1NcaU zmj8l}^JgpgOOT}twrq6#yZ~yQZUr^JBmVskQ1f^JC_ecDDE|2&sCoW7sPUeIGSIv( z_P7O9JJX=X`7}`caXTn}dNru|eGI%4{4}U`I+tJrz-NJyv-?1`^A+$k@H?RB@N-af zKmJnpehzpF@2fqIgQ|ZyxEb66LZaa5;OXG&LACcTQ0;#loB;0yHQ%$I;OKEPsBzAN znr{LkqQP@O@!6X|$@AwxwRiRt-FPklr7zck%HIcSyf^vx4ybj%4LlCK!+(DsDEi(B zs@`inz6E^xgM#1#pxW7j^7v!k4}ibL`!^XpOA$;mS@Bg4njQc(?t8#`JOXMQZ}RvZkR=J$ z(D{DwDd0Zv9`GLU=itM^*KTv`{BBU=dLQ^W@H60Al>=`FS8sRYxf|4aywT&kz|Zmi zQBd_>HRb%a4}*{7{WgSuC-`zuKY=X-F9WVq>VG%`#F;M+(2en=|fTG(i;KRTp;3L2nfNQ|lfoks) z;053}K(({#8aJQEf~WF62A&394yyfKpz1#b)OtJ{RK1sh>gSDM2)-W_oxTpL{0Rq~ zypMqw^L{g^cApPwey;#k|88&`d>bgb|1&6kaniL;?jlg*y3OP7fd_ei8F)STFW~9m zw(FdHO@o^E%Rr6)uR-sKC6XED#^Jp|7LF9TKnNub6v z|yciU{c7R&Pr-EZ(2h_M;0j>kT z3TobG-W&w~1AHW?_PzzC;0aH2dT0sMc%I?$MWE{44T?^007bX=gQC}c9={2SUOxp7 zfG04Cec&PR5#VdUhk@?{PXa#&ik@EqZv)Sqb@ccHP<;GS@I3HOLGjz$K&|8FL6$gp z(43p^jiAQY0=I%WsP%t4DEfU66#ec6CC}dk)&9SM>%m|8_wl-G?^00n+zvhnyo0nv z`oE-qAcp! zpCD`@tXhXYs@Zqz{swL7FG&_hr)ONgvh=zqgVu zCw-2zj&vufM=E}=^AGO@KSe_Pf8EXiR6io^!p*{zmdK}`YP!mq~iA)|F9YSbJE|F&Z6#ipMN&^P~X0? zenxr&={VB8q&JiF`<{c~VU!hL7eC2@es3go?FpR>p6=Vcj_2o+PUHPj@D`Hv!C#Y# zpZGT+y_)nNq_>mwdlYGsw4d}U(hEpWBfXDw4e8HFFC$$+s{W4W)2YzQbFrVfS&mSO7`8>g_e|{nOCel^@U9e3073m42SCal0X%+on2sTOj z{g|{sT0?p%X^iwul63RGlAcAnjP!2Or%692>30zc6&id*FZ}+F^fA)8q!*FSBXvlx zC0$7>et+a2ZU!ULY5x65V2kuuq_ar>MmmnMJ{zo)R+Dy;ZX)T|aA1G`i+_F|c-TL` z+@l~TokUwtujJ`*E9v{BFOgnPs{Y=^%l{$$1?gW%zfJmE(&I?_jg$VJ^rw39zxCix zNt;OD^?4r!FZR#dJjNa$?eQ((Kau`7>5HV3Ni(GPkba+3{k3`dN7CC!|C96wr2kI( zHt8j#$CBPb+C%yU=|0jkNgGKICf!3ifpjMHI3GNsXOe!e&>!+o6#CyOy#F)L&nNv3 zY0l>dYc^bvg;5@^*?2+bURqh0bn`F@dug{9r}4KWcqa)p<+gS>ubgtPt9INBjT$9&0 z%+sje%3IyU2A0L?Vd~B@og^-%G~aEvyNj))F+6~5BAjC|jc&SB>ot30bkop7*iFkG z^G710wXgy?zg3sqCfJ zOcrj7lC^1eYrnfWhc-z)WFDPv67JqkFMRHHI;=_MkyXsXYua_l-Rov~<<-@+4ELy# zMdsS`FWb0r{pP@M!{%VJUJrM$7WS||UMw)2w*KwaJ%*G0daG+0k)BxEdU&{1kGnG&%j2ldviG{}Zo_zC7V$|+rU@5gL}k9)PgKfDcX&WtG~Mnu zhI3|Gxp*VXx^pcl5tK`-qoVU^x8o+=iR-N>Y`139C|xpwNNY*^(fZL97h8GL=wSLW ziKrfW5s^akQc|sIHB`E6PHII3Hz8I<7ign!uG??Jn&{YBlxi9?;`*@*I8GfdkoD*0 z;w+o*OXHRW`gyaP1|}yED$5{%f18Pq(RQ=dC2z*6emOPp=MY1Ioqd zd3XnTJnCaVlO{b{I#(_@%*yv$#xwUZ%T(Cimys^T5COT0CLnBvoLZKob(&CT!1;+w zO$29H?OD~%R6CkWy9gu(tgt&KDRHe)Gu}0`0zWd1Zf_}VHJUk3hmpwL;{RZqH`&+I zA*{!HmLn1Ktr!lh$EaaO zLd4s&K-A8<;aoFH5Wk);YLj7*+a;X7em&T3{R7fMJsIj?d#i5BVpm8fz<=YxnEs8Fa*)#RyQ)${wCxX&Pz|v2TSbF#I`l#JPtze#Z$cL4qY(6uC zmq!BY?0{)~)_fNiy`%v7av<>h!+y^MU+g}I5l!+j_&kHEU2_h7VM01TB3G=uxu`~kOc)rE5r)CNIR~m$LvNJ9gCo0b#P}#bcUoa zN^H}lsbQJw{kdFQm>fEfh3H%iKqw8jI&fOr{)VVN?1SHWb(xktsTPaVfG^4-`ku+- zcR53z01M|FpnCb$_E$zVzf;0~pcO0bgV*;XH3pk5rvU4Y@J(v%( z9F3#>jo)0ETI?X25>?j_63gy2jT_3c?@krYb)g&;yBNim6c_Be7o*gNwF7o-rM(p` z_r^&Be-CanNz~B73z3<2Jdcysj*^8jZ`@eJPR|_Kxu`wYw=HYb$EGqFa^N-F_%e_% zqmPSdnzi32HrbtrQ-|@8w;Cg?4)%80V`|h$^1cI`0#dlWpITn9FJdsmuAH+;176)X z>ZT264C`3?CcD*+(v>{7q3^z`cg99Pl}b4a_G@!6-Nj1nirc*{yxaawFzvR9{?Y2p zumQ6oM_UCI8yc{w8Y^5Kj55$wwy%}YyH{5NXP%5M0+g`X^PGemLsn71bna0ZT6T18 z*3_4ZlsJL6ZG?9toX8MX&5HGkoiO1ZDeg2KryA1v!|tK?HYw9qa2(y-CFE}oOt@v9JA z=fVtyVwSWI_KE&uYp_$bO#)kMS5N#?>>sD4u(p|3odwf4yTrH{rhh8B^RFxH%={PD zLE94mJ5bd2nO@unB`bnHjjKMFdxhjT6K>tiAwFP%E84SCS_uVP#Ot)JW@_QSZoM^+ zDX2JgiUNewo?q9pFHbk?wbT{RVLI+bXhfX!qc)q4klHatnu#yh>9_M1A|X~VN{<#` z00Ro#ZxKh2V-^`uXQYTo%Vyh6%tN?6&XFPw)Ven}wRrKHjnE6zHU)m0(YpJ z)?wAGY}jcZUlMT3Y<;>QiT^aC5LsEvy_JIwwFA`hnjN&wzF9SkRfsEHY{xZqQ8C_n z8euJq?W5yP>$umSWzW%MPg%)i&{8=T%uQptaqy+z5*00)77`P<_6N|q69s1R}Gt?=kbUh!J; zG{ca)S}J4{e#>;dxVV)voI^S-M{^-AcAf~#Vyn*1HqeKRki6~Zy+u)EDIp+_$C_Y| z>M;T1xGn>rkV7`$7JZ746kj2jcHVV>^G?9o1-|v7m>tTz3>o@7r}Ff{J?+LT)~DRU zaMM-qa&q934&^)DSErV_h@g3@!HkRNi*5bmQfQv;QSada0wktDJgH`60PHj)ZS>7) zl!Vyv1AcV|-DNZg#^a*th@f<~4ePoie~^x3 ze=@ICktws&>?UFgG36&6*a-{a$5TW;FpdC|E6ib(=H*;VI2hce`tvFgBf3SP3O z!KY8c4P%$AU*9{T!qTIMHK()>Tur7q>+Hi;vOW4XG{s=1)td+pGCs@) z+|sapqTDMa#mCpeY^gKbZPT4`yZxOAPzVFb@yb>HE;Zd&rm~~-n;A3qZlQDzqD?XU z<-DdSv`u#>O8PF=5gbgkV@$$WTkbGUOw`4*!9feyNn!b?qup!&!F8sUmwXLp=5}T> z$Schon+jI}A&IYO;$q6k`X%*R@;T#C{x z1~p?jpbDIs^d6_Lx)D9$hzcVzI6oTkR|OB zQ|u@v0P(c_m8P}8^zaba5!-P|Es)O@yT1sljtTusX(e)M}E)EFCL8=jPjGbq#3d&3KN&CDE_zNi))l0?q4 z(Crqpk(nkWQ$}D9bNW(xE46Ogp!_VZn>fSmFb40o%iz^IvQgh)Ydz3`BJf<7<7n1! zF6u?Itv0T>L>7@z@XA(?wmSh;*?)NBR45daNjB>_I^9-SK~V|23n$S0679lvgq`Vv zcANOzwP4o5z=02dIV>aZ;aVw)&5}eb;Pw!O$>6w)6KdHH3%3@ojxUKQ5h$5<=cAGa zr_@3tg_SuJ#|t*%p=M_7IL=1M+DHMzcc`{)kYg;IR{W&qMq_la=HR(b#CZ_o^xAL7 z%hF2(sy$X!(`g3!Ub#tp843;F%d6)fF zEM+Nhud)Ib*gBAQb+2H2cYWOR^hCJox>y$l#`k57R(*VHzmbj4bSJ`Qp7$o!t;1y1 z8B~^uuhwx^zs?PH+%ZEs&Wy*)LaPp3Gc&%8IVkutt|N(waO3(7PaI!=`S_;w;rb^| ztlu=Te*MMkH?Ch#+41YVclw_d-3v31v%yRs(rinO$|u1p|*b2 zHW%y~m&KWYsgLCA2M9_~(>5l$qgEsPfOzGR7mf>NgYRTv6Zq3*p8JOG`-kQF$$bbVU6I0`8XM4pMx=>2z~5K@jw}3 zpD?gL_h3KLPZq=_8oCDC#vLrDz&mpY594Fi8HE_B1zw?O$W_(rBUh}mtTF$|-zD+6 zA*Ivui@VICt0l!}Vn%T*hpbXn%q(UW1T^+5YR;mJTryExcFn|<3+El3P_eB9lath$ z9%GCMKE^X~28Lc~hBC1}LZMN@X2sLCF94JAs4 zUShqiozzNcbz_YpPuE7uAPPJ3(RUdq`ruzGkK}vqaLA#$k=$)T(5%aSKU-!q%qBxUPv61_U0>9RnQEe)rdRhd?hQ` zq*}0#q9W|ZVbjQx*l-d#=Wbvsr3*kXh7^G^r3e`_4dDq{?j1uU&CS<{nU&zNXg}4`i?`RH^(%>K!U4 z?BqmVjT{b+*^%@G7dT^`ORFo|dAWwFc^VDfJUV7`*B~wrxHY$OnF1sDGD)3aoEN3y z3X+7tyti_ETWyJSD$O@Hr-m`Wip`kIB}rCPtLiX`Lt4pV+#owo`~1 zjnsl;mXmABp^^EYD-}b_$Bnc#PrRb=me$S|H=S^T;&fdr@gby|oB{cL6Y`RD#E@$H zk5&}{9n)EP3}IyfOw+?CDW2QTSWYukiaNpGasslOTx)3}y|c)2Fg@4AuWZDN{VdD3 zFhY5O+!859nBf2E?$a%vB~!U8wzzv(dzN+Bu`7I!DZ55R=gWP!R=T|@ z8{_7Ii(S+eGf&|=x8@db;GNs<#SFbycsS(Nb47=wpN{UTTBQ~q(o%@UV}FpMJqdQ!T=xu)6wS3tu1Q4Onl&F%GjDZ# zM454GyMaMb>A_H3No{s!VjYuUE6dg3ay->K-OkKqBEKrq;a!nbc z-}WVSzwsInyS)EJ(*t(UzP04eLR&b^r#&1rhU!k7Y`4P362q)xDOxTx2y~N(5Tj58 zFE;0*D5mRSUaF9C+0p-BH9D9I*K)#Z97D1sg`Zqcw2B<+}w3v zfzXJHvcW!#&}nU%PQN(fwnp6SvZFVv$SZs3ggB#pNVWG=9K-MS_i(fmbL%qmyVj#M zbg;{Du3R+O#K?t4-ytg6ZpGPkZBpEmZN`fwph$7^t-6|=3$kg9SdWk+KK?>Pb7Hj# zP^9D-in)}sfeo-(8U+;zmy(wZ)%y#1yd@-ZrcH%OpzFl%>Hl}4Ez8G7l z?l_C@p<0@8PzHSD`I!OHg7H~5%OkalJ>{I+#gBGa#JRB1^lJ`WJEj<3oUK0B1Gx?_ z8?Lod4AFDHjiu5q2CAb#xr7-nq_}*?wB^(gbmk-_ZZlMImD_|u%tT(!tnn>J1R@ca zov_`~Qe3?A<1`bmi+KKh&~30Q>i2TO|Ai`&A+CzgK>WzHAWc;y$txTfvx_KcuHv~m z+Wdu;Es~AN1s+CAnd5;4XLVNGXz`)gy986Y7I;^y%@#Lt8Y*u!bVrXMlC;=xSWMaS zX>(Nr-7q^2KjiAoVJB-I_nihCGg7tM&y?qDT_FDTbQE;$9>{XhvjpF zEY&Fx$)0cu7>)$4d=& zSKCku#k`D!>c-#>M;Q!y6XG*Zb`rR>bdU1N6dgCmWBB@DX&LFhuo;d)$$%n9waQd+ z#Rj1rDMopA53tz-=n!|w5Pbqe`oVKF=$wIJ+ddX@Z~_OkwH*|-_bU2fOSy&&cQfIB zTrxC)-9%(UgVm{S5;X)TAhxlrJ}cUaBZ%sY`j9A#QEL$Xa5p8klONkxFbQRlrQB7c zND6*wAxA=6KA@xyWIgTFL*BKtd=YJufnbMdabRmhfiD;Tm(6EASonfrY>#2|k+!GZ zax{)=K6gdMI8?&dGv&k9NfaM$(FcL5UrI&CfU5bX=VXB7_Ln9bt|ACIa)45pQ$@eZ z=H&5KKG+#lp^=CD#8OoZ79sRkAP0>#VrL;lyuuvHGv?5Yod-t(_))`_!vegr%~2kW z7A)A&4r^BUz5*Rbi~1r}f{qp`M_*93EHJGz2qKQYkpeldvzw7V+wbN^^o(qfFTm>f zScAW{2G@PO7 zozpq)5R_`zwT9000U+m2UT98_0_vK@lnVt*b-{6DBv@1V%61$#IO4ph7y)ugJM+~& zDmMVvloL}GXZ^XGk#NIE!Lp(6aC&jXEm`IOihGAfr8(|D%qke1LH$iQQ<>kPiWtzI=lixyQgAgNVX z6k{YG&1N|zBL{2D7vXXO_6!$SY@EnDDRQQURQL2;v+blCkGL&eB3Jm3-P&Xu?ADid zu&518tDJf^SVYRT*W<#bLP|K_&Le<*2KHg#0wms*cK(eoJI}5UZ#r)1sM-g^23Kwh zk2c4Ya@`3xLmr2ONl_uJx4Q+&+!TPb4Q3gF4l1q)gJn9^TXUL2xw{UuQFKSLrHb<& zxogx3)07=uxuXik;J01XTyJmk;Kt#tPGBBwFyysW-)ya7{vlm;QA{K&ReT{&6L*o6 zf8dC}Y=P>@@&c)w1KzSOYC3r(sO@f%4$+&cZZQUAWECr2h8Oz#tgZMWIaM_rOZg2Y zm3par#9goBM!-gj1uNFfWh;ENicC;~{)$o7f)&iQ8>=p!E^xWBKTj09kNg+CR?qUZ zxW~SJQE&*R9f=s4(F)y;xX;Bdz4W1VS5?hOtKsgHij60QF5Mn?T7H&_>CUq5t3nUd ziwN(9!7rTqm(C;XXg1fpc3Lb>2&7M43^-gSwjh5a+)#6uR&n;qXAyc+&D~m6e(@~x zFJ+$buLm`3lP@m>MnC;SD7OiS7M8imYGMS*SSR1_(9IXq^}38@4=z}U6Rd8G&QilV zSzyYZ%6lAl&^^H|%hTPM5lPfPy4L0aapoo~S6Q$3@{JB13%S=r`}{9M{7qI*#c8|G z>Nd~IaUUN|wb?_vzx*2{0$1{B_Y?W)wqg1{T89AXT3+igRfawkk7 zowpN*89SqeDI;JFv=U3cPq$td^iRT38MCo&o)BRmW}vtp+IUD5@JH?Vg#zZhjeM+H zgq1&;Z5a6k?>Vn+B;Q=$CZPluFQ0;%#>vKR1N#TRigg)jSytf)7TBhKVEYbFdW$z$ zAx8wx;$0D))+?F;r8?pE?t;6|9ez(4w*;Rp z2w1tgP*^QQrc{bz9Q2-Hbqzf*pUQzT9`jcR9qEd?60g6_6$ zYUXy73%quR@$^hzg&gC#6|ZCzzVhYkk{%ruu*e+f!CrN}>4 zDXs@|E1AKWP4J;zR*%JNHBcV5JjNtMYWy)S%L4thNkB(!XIaggF~_4&#`4K4*J(@x zi2(+Ah&C(3d>0b?KUyhZQBV8)TYB2|9u4$^S*d3AIqBee(OsL8(y9e$B>t}vfja`v z9G2?0a$VR8_$BqcwO89a+h)Tk_T3_o=umbA97wx9k1`>ys8)2*Nv=$tdHuAjHj!z& z{#M-H^IhnGgWJM&e8;V@cFY}C7`&$t{jxmLnrm1F+5&+3_xfxy%~P)24v~cFmWdd} zojnY+V&TYo4_K!|^Ij(5FNKdYt{HO=pyv!loam;p9l%$z%(qX1#^Aap(r(B1fjE<6 m{F^J^bkF$0suy-;IB>(tip728oa;()THHtW;X8kB@c#gXNtxvU literal 0 HcmV?d00001 diff --git a/languages/sermon-manager-de_DE.po b/languages/sermon-manager-de_DE.po index 1108560..9616ae8 100644 --- a/languages/sermon-manager-de_DE.po +++ b/languages/sermon-manager-de_DE.po @@ -1,1171 +1,1374 @@ -# Copyright (C) 2012 -# This file is distributed under the same license as the package. -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: http://wordpress.org/tag/sermon-manager-for-wordpress\n" -"POT-Creation-Date: 2012-08-19 05:49:18+00:00\n" -"PO-Revision-Date: 2012-08-21 11:26+0100\n" -"Last-Translator: \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: includes/options.php:33 -#, fuzzy -msgid "Sermon Manager Settings" -msgstr "Sermon Manager Optionen" - -#: includes/options.php:33 includes/options.php:352 -#: includes/taxonomy-images/taxonomy-images.php:317 -#: includes/taxonomy-images/taxonomy-images.php:1164 options.php:156 -#: sermons.php:364 -msgid "Settings" -msgstr "Einstellungen" - -#: includes/options.php:67 options.php:62 -msgid "Sermon Manager Options" -msgstr "Sermon Manager Optionen" - -#: includes/options.php:70 -msgid "Options saved" -msgstr "Einstellungen gespeichert." - -#: includes/options.php:78 options.php:69 -msgid "Need Help?" -msgstr "Benötigst Du Hilfe?" - -#: includes/options.php:80 options.php:71 -msgid "" -"If you need help, please visit WP for Church" -msgstr "" -"Wenn Du Hilfe brauchst, besuche bitte WP for Church." - -#: includes/options.php:93 -msgid "General Settings" -msgstr "Einstellungen" - -#: includes/options.php:97 options.php:88 -msgid "Archive Page Title" -msgstr "Titel der Archivseite" - -#: includes/options.php:104 options.php:95 -msgid "Archive Page Slug" -msgstr "Titelform des Archivs" - -#: includes/options.php:106 -#, fuzzy -msgid "Go to Settings → Permalinks and re-save after changing this!" -msgstr "" -"Bitte gehe zu Einstellungen => Permalinks und speichere nach dem hier eine " -"Änderung vorgenommen wurde." - -#: includes/options.php:110 -msgid "" -"Enable Template Files - this is for users upgrading from an older version " -"who have issues with version 1.5+." -msgstr "" -"Aktiviere Vorlagen-Dateien - Diese Option ist für Benutzer die von " -"einer Älteren Version aktualisieren und Probleme mit Version 1.5+ haben." - -#: includes/options.php:112 -msgid "Enable template files found in the /views folder" -msgstr "Aktiviere im Ordner /views gefundene Vorlagen" - -#: includes/options.php:116 -msgid "Disable Sermon Styles" -msgstr "CSS-Styles deaktivieren" - -#: includes/options.php:118 -msgid "" -"Disable Sermon CSS. If you do this, you should copy the styles from sermons." -"css and include them in your theme CSS." -msgstr "" -"Deaktiviere die CSS-Styles des Sermon Managers. Wird diese Option aktiviert, " -"solltest Du die Styles aus der Datei sermons.css im Pluginordner in die CSS-" -"Datei deines Themes kopieren." - -#: includes/options.php:126 options.php:105 -msgid "Verse Settings" -msgstr "Verseinstellungen" - -#: includes/options.php:131 options.php:110 -msgid "Verse Popups" -msgstr "Verspopups" - -#: includes/options.php:134 options.php:113 -msgid "Disable Bib.ly verse popups" -msgstr "Bib.ly Popups deaktivieren" - -#: includes/options.php:139 options.php:118 -msgid "Select Bible Version for Verse Popups" -msgstr "Bibelversion auswählen für Verspopups" - -#: includes/options.php:147 -msgid "" -"ESV, NET, KJV, or LEB are the currently supported popups for bib.ly." -msgstr "" -"ESV, NET, KJV, oder LEB sind die momentan unterstützten Popups für " -"bib.ly." - -#: includes/options.php:155 -msgid "Podcast Settings" -msgstr "Podcasteinstellungen" - -#: includes/options.php:159 -msgid "Title" -msgstr "Titel" - -#: includes/options.php:166 sermons.php:311 -msgid "Description" -msgstr "Beschreibung:" - -#: includes/options.php:173 -msgid "Website Link" -msgstr "Webseite" - -#: includes/options.php:180 -msgid "Language" -msgstr "Sprache" - -#: includes/options.php:187 -msgid "Copyright" -msgstr "" - -#: includes/options.php:197 -msgid "Webmaster Name" -msgstr "Name des Webmasters" - -#: includes/options.php:199 -msgid "e.g. Your Name" -msgstr "z.B. Dein Name" - -#: includes/options.php:204 -msgid "Webmaster Email" -msgstr "E-Mail des Webmasters" - -#: includes/options.php:211 -msgid "Author" -msgstr "Autor" - -#: includes/options.php:213 -msgid "e.g. Primary Speaker or Church Name" -msgstr "z.B. Hauptredner/in oder Name der Gemeinde" - -#: includes/options.php:216 -msgid "This will display at the \"Artist\" in the iTunes Store." -msgstr "Dies wird als \"Künstler\" im iTunes Store angezeigt." - -#: includes/options.php:221 -msgid "Subtitle" -msgstr "Untertitel" - -#: includes/options.php:226 -msgid "" -"Your subtitle should briefly tell the listener what they can expect to hear." -msgstr "" -"Dein Untertitel sollte dem Hörer zusammengefasst erzälen was er " -"erwarten kann. " - -#: includes/options.php:231 -msgid "Summary" -msgstr "Zusammenfassung" - -#: includes/options.php:236 -msgid "" -"Keep your Podcast Summary short, sweet and informative. Be sure to include a " -"brief statement about your mission and in what region your audio content " -"originates." -msgstr "" -"Halte Deine Podcastzusammenfassung kurz, erfrischend und informativ. " -"Erwähne auch was euer Ziel ist und woher die Audioinhalte kommen. " - -#: includes/options.php:241 -msgid "Owner Name" -msgstr "Name " - -#: includes/options.php:246 -msgid "This should typically be the name of your Church." -msgstr "Das sollte normalerweise der Name der Gemeinde sein. " - -#: includes/options.php:251 -msgid "Owner Email" -msgstr "E-Mail" - -#: includes/options.php:256 -msgid "" -"Use an email address that you don't mind being made public. If someone wants " -"to contact you regarding your Podcast this is the address they will use." -msgstr "" -"Verwende eine E-Mail-Adresse, welche auf öffentlich gemacht werden " -"kann. Wenn Dich jemand bezüglich des Podcasts kontaktieren möchte, " -"wird das über diese Adresse geschehen. " - -#: includes/options.php:261 -#, fuzzy -msgid "Cover Image" -msgstr "Bild" - -#: includes/options.php:271 -msgid "" -"This JPG will serve as the Podcast artwork in the iTunes Store. The image " -"should be 1400px by 1400px" -msgstr "" -"Dieses JPG dient als Podcast-Cover im iTunes Store. Das Format sollte 1400px " -"mal 1400px sein. " - -#: includes/options.php:276 -msgid "Top Category" -msgstr "Oberste Kategorie" - -#: includes/options.php:278 -msgid "e.g. Religion & Spirituality" -msgstr "z.B. Religion & Spiritualität" - -#: includes/options.php:281 -msgid "" -"Choose the appropriate top-level category for your Podcast listing in iTunes." -msgstr "" -"Wähle eine passende Oberkategorie für den Podcasteintrag in iTunes." - -#: includes/options.php:286 -msgid "Sub Category" -msgstr "Unterkategorie" - -#: includes/options.php:288 -msgid "e.g. Christianity" -msgstr "z.B. Christentum" - -#: includes/options.php:291 -msgid "Choose the appropriate sub category for your Podcast listing in iTunes." -msgstr "" -"Wähle eine passende Unterkategorie für den Podcasteintrag in " -"iTunes." - -#. translators: Button on the custom administration page. -#: includes/options.php:300 includes/taxonomy-images/taxonomy-images.php:378 -#: options.php:133 -msgid "Save Changes" -msgstr "Änderungen speichern" - -#: includes/options.php:305 -msgid "Submit to iTunes" -msgstr "Bei iTunes einreichen" - -#: includes/options.php:310 -msgid "Podcast Feed URL" -msgstr "" - -#: includes/options.php:315 -msgid "Use the " -msgstr "Nutze die" - -#: includes/options.php:315 -msgid "Feed Validator" -msgstr "" - -#: includes/options.php:315 -msgid "" -" to diagnose and fix any problems before submitting your Podcast to iTunes." -msgstr "" -"um Probleme zu finden und zu beheben, bevor der Podcast bei iTunes " -"eingereicht wird. " - -#: includes/options.php:321 -msgid "" -"Once your Podcast Settings are complete and your Sermons are ready, it's " -"time to " -msgstr "" -"Nachdem die Podcasteinstellungen komplett und die Predigten fertig sind, ist " -"es Zeit " - -#: includes/options.php:321 -msgid "Submit Your Podcast" -msgstr "den Podcast einzureichen" - -#: includes/options.php:321 -msgid " to the iTunes Store!" -msgstr "in den iTunes Store!" - -#: includes/options.php:323 -msgid "" -"Alternatively, if you want to track your Podcast subscribers, simply pass " -"the Podcast Feed URL above through " -msgstr "" -"Alternativ, wenn Du Informationen über die Nutzung des Podcast erhalten " -"möchtest, leite die Feed-URL durch" - -#: includes/options.php:323 -msgid "FeedBurner" -msgstr "" - -#: includes/options.php:323 -msgid ". FeedBurner will then give you a new URL to submit to iTunes instead." -msgstr "" -". FeedBurner gibt Dir dann eine URL die Du dann stattdessen bei iTunes " -"einreichen kannst. " - -#: includes/options.php:325 -msgid "Please read the " -msgstr "Bitte lies die" - -#: includes/options.php:325 -msgid "iTunes FAQ for Podcast Makers" -msgstr "Häufigen Fragen für Podcastersteller" - -#: includes/options.php:325 -msgid " for more information." -msgstr "für weitere Informationen. " - -#: includes/shortcodes.php:131 sermons.php:686 -#: views/archive-wpfc_sermon.php:60 views/taxonomy-wpfc_preacher.php:67 -#: views/taxonomy-wpfc_sermon_series.php:68 -#: views/taxonomy-wpfc_sermon_topics.php:68 -msgid "Permalink to %s" -msgstr "Permalink zu %s" - -#: includes/tax-meta-class/Tax-meta-class.php:247 -msgid "Delete this image" -msgstr "Dieses Bild löschen" - -#: includes/tax-meta-class/Tax-meta-class.php:247 -#: includes/tax-meta-class/Tax-meta-class.php:852 -#: includes/taxonomy-images/taxonomy-images.php:804 -msgid "Delete" -msgstr "Löschen" - -#: includes/tax-meta-class/Tax-meta-class.php:341 -msgid "Cannot delete file. Something's wrong." -msgstr "Ich kann die Datei nicht entfernen, etwas ist schief gelaufen." - -#: includes/tax-meta-class/Tax-meta-class.php:556 -#: includes/tax-meta-class/Tax-meta-class.php:599 -msgid "Remove" -msgstr "Entfernen" - -#: includes/tax-meta-class/Tax-meta-class.php:569 -msgid "Add" -msgstr "Hinzufügen" - -#: includes/tax-meta-class/Tax-meta-class.php:848 -msgid "Uploaded files" -msgstr "Hochgeladene Dateien" - -#: includes/tax-meta-class/Tax-meta-class.php:859 -msgid "Upload new files" -msgstr "Neue Dateien hochladen" - -#: includes/tax-meta-class/Tax-meta-class.php:865 -msgid "Add more files" -msgstr "Weitere Dateien hinzufügen" - -#: includes/tax-meta-class/Tax-meta-class.php:917 -msgid "Select a color" -msgstr "Eine Farbe auswählen" - -#: includes/taxonomy-images/public-filters.php:376 -msgid "" -"%1$s is not a property of the current queried object. This usually happens " -"when the %2$s filter is used in an unsupported template file. This filter " -"has been designed to work in taxonomy archives which are traditionally " -"served by one of the following template files: category.php, tag.php or " -"taxonomy.php. Learn more about %3$s." -msgstr "" -"%1$s ist nicht Inhalt der des aktuell gesuchten Objekts. Das passiert " -"normalerweise, wenn der %2$s filter in einer nicht unterstützten " -"Vorlage verwendet wird. Dieser Filter wurde so designed, dass er in " -"Gruppierungsarchiven funktioniert, welche normaler weise von den Dateien " -"category.php, tag.php oder taxonomy.php bereitgestellt werden. " - -#: includes/taxonomy-images/public-filters.php:377 -msgid "term_taxonomy_id" -msgstr "begriff_gruppierung_id (Gruppierung = Taxonomie)" - -#: includes/taxonomy-images/taxonomy-images.php:119 -msgid "Associate with %1$s" -msgstr "Mit %1$s verbinden" - -#: includes/taxonomy-images/taxonomy-images.php:119 -#: includes/taxonomy-images/taxonomy-images.php:121 -#, fuzzy -msgid "this term" -msgstr "Begriff" - -#: includes/taxonomy-images/taxonomy-images.php:121 -msgid "Remove association with %1$s" -msgstr "Verbindung mit %1$s entfernen" - -#. translators: Notice displayed on the custom administration page. -#: includes/taxonomy-images/taxonomy-images.php:274 -msgid "Image support for taxonomies successfully updated" -msgstr "Bildunterstützung wurde erfolgreich aktualisiert" - -#. translators: Notice displayed on the custom administration page. -#: includes/taxonomy-images/taxonomy-images.php:277 -msgid "Image support has been disabled for all taxonomies." -msgstr "Bildunterstützung wurde deaktiviert. " - -#: includes/taxonomy-images/taxonomy-images.php:323 -msgid "Taxonomies" -msgstr "Gruppierungen" - -#: includes/taxonomy-images/taxonomy-images.php:342 -#: includes/taxonomy-images/taxonomy-images.php:343 -msgid "Taxonomy Images" -msgstr "Gruppierungsbilder" - -#. translators: Heading of the custom administration page. -#: includes/taxonomy-images/taxonomy-images.php:370 -#, fuzzy -msgid "Taxonomy Images Plugin Settings" -msgstr "Einstellungen" - -#. translators: An ajax request has failed for an unknown reason. -#: includes/taxonomy-images/taxonomy-images.php:425 -msgid "Unknown error encountered" -msgstr "Unbekannter Fehler" - -#: includes/taxonomy-images/taxonomy-images.php:501 -#: includes/taxonomy-images/taxonomy-images.php:583 -msgid "tt_id not sent" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:509 -#: includes/taxonomy-images/taxonomy-images.php:591 -msgid "tt_id is empty" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:516 -#: includes/taxonomy-images/taxonomy-images.php:598 -msgid "You do not have the correct capability to manage this term" -msgstr "Sie können diesen Begriff nicht ändern" - -#: includes/taxonomy-images/taxonomy-images.php:523 -msgid "No nonce included." -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:530 -#: includes/taxonomy-images/taxonomy-images.php:612 -msgid "Nonce did not match" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:537 -msgid "Image id not sent" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:545 -msgid "Image id is not a positive integer" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:554 -msgid "Image successfully associated" -msgstr "Das Bild wurde erfolgreich verbunden" - -#: includes/taxonomy-images/taxonomy-images.php:561 -msgid "Association could not be created" -msgstr "Die Verbindung konnte nicht erstellt werden" - -#: includes/taxonomy-images/taxonomy-images.php:605 -msgid "No nonce included" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:620 -msgid "Nothing to remove" -msgstr "Nichts zu entfernen" - -#: includes/taxonomy-images/taxonomy-images.php:629 -msgid "Association successfully removed" -msgstr "Verbindung erfolgreich entfernt" - -#: includes/taxonomy-images/taxonomy-images.php:635 -msgid "Association could not be removed" -msgstr "Die Verbindung konnte nicht entfernt werden" - -#: includes/taxonomy-images/taxonomy-images.php:705 -#: includes/taxonomy-images/taxonomy-images.php:754 -#: includes/taxonomy-images.php:94 -#, fuzzy -msgid "Image" -msgstr "Bild" - -#: includes/taxonomy-images/taxonomy-images.php:748 -#: includes/taxonomy-images/taxonomy-images.php:784 -msgid "term" -msgstr "Begriff" - -#: includes/taxonomy-images/taxonomy-images.php:758 -msgid "Associate an image from your media library to this %1$s." -msgstr "Verbinde ein Bild aus der Mediathek mit dieser %1$s." - -#: includes/taxonomy-images/taxonomy-images.php:802 -msgid "Associate an image with the %1$s named “%2$s”." -msgstr "Verknüpfe ein Bild mit %1$s mit dem Namen “%2$s”." - -#: includes/taxonomy-images/taxonomy-images.php:803 -msgid "Upload a new image for this %s." -msgstr "Ein neues Bild für dieses %s hochladen." - -#: includes/taxonomy-images/taxonomy-images.php:803 -msgid "Upload." -msgstr "Hochladen." - -#: includes/taxonomy-images/taxonomy-images.php:804 -msgid "Remove image from this %s." -msgstr "Bild von diesem %s entfernen." - -#: includes/taxonomy-images/taxonomy-images.php:833 -msgid "“" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:834 -msgid "”" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:835 -msgid "Associating …" -msgstr "Verbinde …" - -#: includes/taxonomy-images/taxonomy-images.php:836 -msgid "Successfully Associated" -msgstr "Erfolgreich verbunden" - -#: includes/taxonomy-images/taxonomy-images.php:837 -msgid "Removing …" -msgstr "Entferne …" - -#: includes/taxonomy-images/taxonomy-images.php:838 -msgid "Successfully Removed" -msgstr "Erfolgreich entfernt" - -#: includes/taxonomy-images/taxonomy-images.php:1092 -msgid "" -"The %1$s argument for %2$s is set to %3$s which is not a registered " -"taxonomy. Please check the spelling and update the argument." -msgstr "" -"Das %1$s Argument für %2$s wurde als %3$s festgelegt, was keine registrierte " -"Gruppierung (Taxonomie) ist. Bitte überprüfe die Schreibweise und " -"aktualisiere das Argument." - -#: includes/taxonomy-images/taxonomy-images.php:1093 -msgid "taxonomy" -msgstr "gruppierung" - -#: includes/taxonomy-images/taxonomy-images.php:1103 -msgid "No taxonomies have image support. %1$s" -msgstr "Keine Gruppierungen unterstützen Bilder. %1$s" - -#: includes/taxonomy-images/taxonomy-images.php:1108 -msgid "The %1$s taxonomy does not have image support. %2$s" -msgstr "Die %1$s Gruppierung unterstützt keine Bilder. %2$s" - -#: includes/taxonomy-images/taxonomy-images.php:1133 -msgid "The %1$s has been called directly. Please use the %2$s filter instead." -msgstr "" -"Die %1$s wurde direkt aufgerufen. Bitte verwende stattdessen den %2$s Filter." - -#: includes/taxonomy-images/taxonomy-images.php:1169 -msgid "Donate" -msgstr "Spenden" - -#: includes/taxonomy-images/taxonomy-images.php:1187 sermons.php:379 -#, fuzzy -msgid "Manage Settings" -msgstr "Einstellungen" - -#: includes/taxonomy-images.php:36 -msgid "Photo" -msgstr "Foto" - -#: includes/taxonomy-images.php:63 -msgid "Series Graphic" -msgstr "Grafik für diese Serie" - -#: options.php:84 -msgid "Archive Page Settings" -msgstr "Einstellungen für die Archivseite" - -#: options.php:97 -#, fuzzy -msgid "Go to Settings => Permalinks and re-save after changing this!" -msgstr "" -"Bitte gehe zu Einstellungen => Permalinks und speichere nach dem hier eine " -"Änderung vorgenommen wurde." - -#: options.php:126 -msgid "ESV, NET, KJV, or LEB are the currently supported popups." -msgstr "" -"ESV, NET, KJV, oder LEB sind die momentan unterstützten Popups für " -"bib.ly." - -#: sermons.php:39 sermons.php:50 -msgid "Sermons" -msgstr "Predigten" - -#: sermons.php:40 sermons.php:530 -msgid "Sermon" -msgstr "Predigt" - -#: sermons.php:41 -msgid "Add New" -msgstr "Neue Predigt" - -#: sermons.php:42 -msgid "Add New Sermon" -msgstr "Neue Predigt" - -#: sermons.php:43 -msgid "Edit Sermon" -msgstr "Predigt bearbeiten" - -#: sermons.php:44 -msgid "New Sermon" -msgstr "Neue Predigt" - -#: sermons.php:45 -msgid "View Sermon" -msgstr "Predigt ansehen" - -#: sermons.php:46 -msgid "Search Sermons" -msgstr "Predigten durchsuchen" - -#: sermons.php:47 -msgid "No sermons found" -msgstr "Es wurden keine Predigten gefunden" - -#: sermons.php:48 -msgid "No sermons found in Trash" -msgstr "Es sind keine Predigten im Papierkorb" - -#: sermons.php:83 sermons.php:85 -msgid "Preachers" -msgstr "Prediger/innen" - -#: sermons.php:84 sermons.php:397 -msgid "Preacher" -msgstr "Prediger/in" - -#: sermons.php:86 -msgid "Search preachers" -msgstr "Prediger/innen durchsuchen" - -#: sermons.php:87 -msgid "Most frequent preachers" -msgstr "Häufigste Prediger/innen" - -#: sermons.php:88 -msgid "All preachers" -msgstr "Alle Prediger/innen" - -#: sermons.php:89 -msgid "Edit preachers" -msgstr "Prediger/innen bearbeiten" - -#: sermons.php:90 -msgid "Update preachers" -msgstr "Prediger/innen aktualisieren" - -#: sermons.php:91 -msgid "Add new preacher" -msgstr "Neue/n Prediger/in " - -#: sermons.php:92 -msgid "New preacher name" -msgstr "Neuer Name für eine/n Prediger/in" - -#: sermons.php:93 -msgid "Separate multiple preachers with commas" -msgstr "Trenne mehrere Prediger/innen mit Kommas" - -#: sermons.php:94 -msgid "Add or remove preachers" -msgstr "Prediger/innen hinzufügen oder entfernen" - -#: sermons.php:95 -msgid "Choose from most frequent preachers" -msgstr "Von früheren Prediger/innen auswählen" - -#: sermons.php:110 sermons.php:112 sermons.php:113 sermons.php:398 -msgid "Sermon Series" -msgstr "Predigtserie" - -#: sermons.php:114 -msgid "Search sermon series" -msgstr "Predigtserien durchsuchen" - -#: sermons.php:115 -msgid "Most frequent sermon series" -msgstr "Häufigste Predigtserie" - -#: sermons.php:116 -msgid "All sermon series" -msgstr "Alle Predigtserien" - -#: sermons.php:117 -msgid "Edit sermon series" -msgstr "Predigtserie bearbeiten" - -#: sermons.php:118 -msgid "Update sermon series" -msgstr "Predigtserie aktualisieren" - -#: sermons.php:119 -msgid "Add new sermon series" -msgstr "Neue Serie hinzufügen" - -#: sermons.php:120 -msgid "New sermon series name" -msgstr "Neuer Name für eine Predigtserie" - -#: sermons.php:121 -msgid "Separate sermon series with commas" -msgstr "Trenne mehrere Predigtserien mit Kommas" - -#: sermons.php:122 -msgid "Add or remove sermon series" -msgstr "Predigtserie hinzufügen oder entfernen" - -#: sermons.php:123 -msgid "Choose from most used sermon series" -msgstr "Von dem am meisten genutzen Predigtserien auswählen " - -#: sermons.php:138 sermons.php:139 sermons.php:140 -msgid "Sermon Topics" -msgstr "Predigtthemen" - -#: sermons.php:141 -msgid "Search sermon topics" -msgstr "Predigtthemen durchsuchen" - -#: sermons.php:142 -msgid "Most popular sermon topics" -msgstr "Populärste Themen" - -#: sermons.php:143 -msgid "All sermon topics" -msgstr "Alle Predigtthemen" - -#: sermons.php:144 -msgid "Edit sermon topic" -msgstr "Predigtthema bearbeiten" - -#: sermons.php:145 -msgid "Update sermon topic" -msgstr "Predigtthema aktualisieren" - -#: sermons.php:146 -msgid "Add new sermon topic" -msgstr "Neues Predigtthema" - -#: sermons.php:147 -msgid "New sermon topic" -msgstr "Neues Predigtthema" - -#: sermons.php:148 -msgid "Separate sermon topics with commas" -msgstr "Trenne Predigtthemen mit Kommas" - -#: sermons.php:149 -msgid "Add or remove sermon topics" -msgstr "Predigtthemen hinzufügen oder entfernen" - -#: sermons.php:150 -msgid "Choose from most used sermon topics" -msgstr "Von dem am meisten genutzen Predigtthemen auswählen" - -#: sermons.php:165 sermons.php:166 sermons.php:167 -msgid "Book of the Bible" -msgstr "Buch der Bibel" - -#: sermons.php:168 -msgid "Search books of the Bible" -msgstr "Bücher der Bibel durchsuchen" - -#: sermons.php:169 -msgid "Most popular books of the Bible" -msgstr "Populärste Bücher der Bibel" - -#: sermons.php:170 -msgid "All books of the Bible" -msgstr "Alle Bücher der Bibel" - -#: sermons.php:171 -msgid "Edit book of the Bible" -msgstr "Buch der Bibel bearbeiten" - -#: sermons.php:172 -msgid "Update book of the Bible" -msgstr "Buch der Bibel aktualisieren" - -#: sermons.php:173 -msgid "Add new books of the Bible" -msgstr "Neues Buch hinzufügen" - -#: sermons.php:174 -msgid "New book of the Bible" -msgstr "Neues Buch der Bibel" - -#: sermons.php:175 -msgid "Separate books of the Bible with commas" -msgstr "Trenne mehrere Bücher mit Kommata " - -#: sermons.php:176 -msgid "Add or remove books of the Bible" -msgstr "Bücher hinzufügen oder entfernen" - -#: sermons.php:177 -msgid "Choose from most used books of the Bible" -msgstr "Von dem am meisten genutzen Büchern auswählen " - -#: sermons.php:198 -msgid "Sermon updated. View sermon" -msgstr "Predigt aktualisiert. Predigt ansehen" - -#: sermons.php:199 -msgid "Custom field updated." -msgstr "" - -#: sermons.php:200 -msgid "Custom field deleted." -msgstr "" - -#: sermons.php:201 -msgid "Sermon updated." -msgstr "Predigt aktualisiert." - -#. translators: %s: date and time of the revision -#: sermons.php:203 -msgid "Sermon restored to revision from %s" -msgstr "Predigt von Revision %s wiederhergestellt" - -#: sermons.php:204 -msgid "Sermon published. View sermon" -msgstr "Predigt veröffentlicht. Predigt ansehen" - -#: sermons.php:205 -msgid "Sermon saved." -msgstr "Predigt gespeichert." - -#: sermons.php:206 -msgid "Sermon submitted. Preview sermon" -msgstr "" -"Predigt abgeschickt. Vorschau ansehen" - -#: sermons.php:207 -msgid "" -"Sermon scheduled for: %1$s. Preview sermon" -msgstr "" -"Predigt geplant für: %1$s. Vorschau ansehen" - -#. translators: Publish box date format, see http:php.net/date -#: sermons.php:209 -msgid "M j, Y @ G:i" -msgstr "d.m.Y @ H:i" - -#: sermons.php:210 -msgid "" -"Sermon draft updated. Preview sermon" -msgstr "" -"Predigtentwurf aktualisiert. Vorschau " -"ansehen" - -#: sermons.php:224 -msgid "Things to remember when adding or editing a sermon:" -msgstr "Zu bedenken, wenn eine neue Predigt hinzugeügt wird:" - -#: sermons.php:226 -msgid "" -"Specify a sermon series if appropriate. This will help your site visitors " -"while browsing sermons." -msgstr "Falls zutreffend, lege eine Predigtserie fest." - -#: sermons.php:227 -msgid "Specify the correct preacher of the sermon." -msgstr "Lege den korrekten Prediger oder die korrekte Predigerin fest." - -#: sermons.php:229 -msgid "If you want to schedule the sermon to be published in the future:" -msgstr "" -"Wenn Du eine Predigt erst in der Zukunft veröffentlichen möchtest:" - -#: sermons.php:231 -msgid "Under the Publish meta box, click on the Edit link next to Publish." -msgstr "" -"Unter dem Veröffentlichen-Box klicke neben Veröffentlichen auf " -"bearbeiten. " - -#: sermons.php:232 -msgid "" -"Change the date to the date to actual publish this article, then click on Ok." -msgstr "" -"Ändere das Datum auf das heutige Datum um den Artikel zu verö" -"ffentlichen. " - -#: sermons.php:234 -msgid "For more help:" -msgstr "F¨r weitere Hilfe:" - -#: sermons.php:235 -msgid "" -"Wordpress for Church" -msgstr "" -"Wordpress for Church" - -#: sermons.php:238 -msgid "This is the help screen displaying on the sermons page." -msgstr "Dies ist die Hilfe, welche auf der Predigtseite angezeigt wird. " - -#: sermons.php:285 -msgid "Sermon Details" -msgstr "Predigtdetails" - -#: sermons.php:292 -#, fuzzy -msgid "Date" -msgstr "Datum" - -#: sermons.php:293 -msgid "" -"Enter the date the sermon was given. NOTE: Each sermon must have a " -"date!" -msgstr "" -"Trage das Datum ein an dem die Predigt gehalten wurde. Hinweis: Jede " -"predigt muss ein Datum haben" - -#: sermons.php:298 -#, fuzzy -msgid "Service Type" -msgstr "Art des Gottesdienstes" - -#: sermons.php:299 -msgid "Select the type of service." -msgstr "Wähle die Art des Gottesdienstes." - -#: sermons.php:305 -#, fuzzy -msgid "Main Bible Passage" -msgstr "Hauptbibelstelle:" - -#: sermons.php:306 -msgid "Enter the Bible passage with the full book names,e.g. \"John 3:16-18\"." -msgstr "" -"Trage die Bibelstelle mit ganzen Buchnamen ein. Z.B.: \"Johannes 3,16-18\"." - -#: sermons.php:312 -msgid "" -"Type a brief description about this sermon, an outline, or a full manuscript" -msgstr "" -"Schreibe ein kurze Beschreibung über die Predigt, eine Gliederung oder " -"ein ganzes Manuskript" - -#: sermons.php:322 -msgid "Sermon Files" -msgstr "Predigtdateien" - -#: sermons.php:329 -#, fuzzy -msgid "Location of MP3" -msgstr "Ort der mp3-Datei" - -#: sermons.php:330 -msgid "Upload an audio file or enter an URL." -msgstr "Lade eine Audio-Datei hoch oder gib eine URL an." - -#: sermons.php:335 -msgid "Video Embed Code" -msgstr "Einbettungscode für Videos" - -#: sermons.php:336 -msgid "Paste your embed code for Vimeo, Youtube, or other service here" -msgstr "" -"Füge hier den Einbettungscode von Vimeo, Youtube oder eines anderen " -"Services ein" - -#: sermons.php:341 -msgid "Sermon Notes" -msgstr "Predigtnotizen" - -#: sermons.php:342 -msgid "Upload a pdf file or enter an URL." -msgstr "Lade eine PDF-Datei hoch oder gib eine URL zu einem Dokument an." - -#: sermons.php:369 -msgid "Support" -msgstr "Hilfe" - -#: sermons.php:396 -msgid "Sermon Title" -msgstr "Predigttitel" - -#: sermons.php:399 -msgid "Topics" -msgstr "Themen" - -#: sermons.php:400 -msgid "Views" -msgstr "Ansichten" - -#: sermons.php:558 -msgid "The most recent sermons on your site" -msgstr "Die neuesten Predigten auf Deine Seite" - -#: sermons.php:559 sermons.php:581 -msgid "Recent Sermons" -msgstr "Neueste Predigten" - -#: sermons.php:641 -msgid "Title:" -msgstr "Titel:" - -#: sermons.php:644 -msgid "Number of sermons to show:" -msgstr "Anzahl der Predigten:" - -#: sermons.php:712 -msgid "Sort by Preacher" -msgstr "Nach Prediger/in sortieren" - -#: sermons.php:721 -msgid "Sort by Series" -msgstr "Nach Serie sortieren" - -#: sermons.php:730 -msgid "Sort by Topic" -msgstr "Nach Thema sortieren" - -#: views/archive-wpfc_sermon.php:26 views/archive-wpfc_sermon.php:81 -#: views/taxonomy-wpfc_preacher.php:33 views/taxonomy-wpfc_preacher.php:88 -#: views/taxonomy-wpfc_sermon_series.php:34 -#: views/taxonomy-wpfc_sermon_series.php:89 -#: views/taxonomy-wpfc_sermon_topics.php:34 -#: views/taxonomy-wpfc_sermon_topics.php:89 -msgid " Older posts" -msgstr " &Vorangehende Einträge" - -#: views/archive-wpfc_sermon.php:27 views/archive-wpfc_sermon.php:82 -#: views/taxonomy-wpfc_preacher.php:34 views/taxonomy-wpfc_preacher.php:89 -#: views/taxonomy-wpfc_sermon_series.php:35 -#: views/taxonomy-wpfc_sermon_series.php:90 -#: views/taxonomy-wpfc_sermon_topics.php:35 -#: views/taxonomy-wpfc_sermon_topics.php:90 -msgid "Newer posts " -msgstr "Neuere Einträge " - -#: views/archive-wpfc_sermon.php:34 views/taxonomy-wpfc_preacher.php:41 -#: views/taxonomy-wpfc_sermon_series.php:42 -#: views/taxonomy-wpfc_sermon_topics.php:42 -msgid "Not Found" -msgstr "Nicht gefunden" - -#: views/archive-wpfc_sermon.php:36 views/taxonomy-wpfc_preacher.php:43 -#: views/taxonomy-wpfc_sermon_series.php:44 -#: views/taxonomy-wpfc_sermon_topics.php:44 -msgid "Apologies, but no sermons were found." -msgstr "Es tut uns leid, aber es wurden keine Predigten gefunden. " - -#: views/archive-wpfc_sermon.php:71 views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -msgid "Leave a comment" -msgstr "Kommentar hinterlassen" - -#: views/archive-wpfc_sermon.php:71 views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -msgid "1 Comment" -msgstr "1 Kommentar" - -#: views/archive-wpfc_sermon.php:71 views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -msgid "% Comments" -msgstr "% Kommentare" - -#: views/archive-wpfc_sermon.php:72 views/single-wpfc_sermon.php:21 -#: views/taxonomy-wpfc_preacher.php:79 -#: views/taxonomy-wpfc_sermon_series.php:80 -#: views/taxonomy-wpfc_sermon_topics.php:80 -msgid "Edit" -msgstr "Bearbeiten" - -#: views/single-wpfc_sermon.php:27 -msgctxt "Previous post link" -msgid "←" -msgstr "" - -#: views/single-wpfc_sermon.php:28 -msgctxt "Next post link" -msgid "→" -msgstr "" - -#: views/taxonomy-wpfc_preacher.php:18 -msgid "Sermons by: %s" -msgstr "Predigten nach: %s" - -#: views/taxonomy-wpfc_sermon_series.php:18 -#, fuzzy -msgid "Sermons Series: %s" -msgstr "Predigtserie: %s" - -#: views/taxonomy-wpfc_sermon_topics.php:18 -#, fuzzy -msgid "Sermons Topic: %s" -msgstr "Predigtthema: %s" - -#~ msgid "e.g. " -#~ msgstr "z.B." - -#~ msgid "e.g. Copyright © " -#~ msgstr "z.B. Copyright © " - -#~ msgid "Tip: Use \"" -#~ msgstr "Tip: Verwende \"" - -#~ msgid "e.g. Preaching and teaching audio from " -#~ msgstr "z.B. Predigt- und Lehraufnahme von" - -#~ msgid "e.g. Weekly teaching audio brought to you by " -#~ msgstr "z.B. wöchentliche Predigten zur Verfügung gestellt von" - -#~ msgid "Adult Bible Class" -#~ msgstr "Hauskreis" - -#~ msgid "Sunday AM" -#~ msgstr "Sonntag Morgen" - -#~ msgid "Sunday PM" -#~ msgstr "Sonntag Abend" - -#~ msgid "Special Service" -#~ msgstr "Spezialgottesdienst" - -#~ msgid "Radio Broadcast" -#~ msgstr "Radioübertragung" - -#~ msgid "Paste your video embed code:" -#~ msgstr "Hier kann der Einbettungscode für Videos eingefügt werden:" - -#~ msgid "" -#~ "If you would like to add pdf, doc, ppt, or other file types upload them " -#~ "here. They'll be listed at the bottom of the sermon page." -#~ msgstr "" -#~ "Wenn gewünscht können hier pdf, doc, ppt oder andere " -#~ "Dateitüpen hochgladen werden. Sie werden am Ende der Predigtseite " -#~ "zum Download angeboten." - -#~ msgid "Upload Additional Files" -#~ msgstr "Weitere Dateien hochladen" - -#~ msgid "Currently Attached Files:" -#~ msgstr "Aktuell hochgeladene Dateien" - -#~ msgid "
    Series: " -#~ msgstr "
    Reihe: " +# Copyright (C) 2017 +# This file is distributed under the same license as the package. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/sermon-manager-for-wordpress\n" +"POT-Creation-Date: 2017-09-30 07:03:00+0200\n" +"PO-Revision-Date: 2017-09-30 07:03:00+0200\n" +"Last-Translator: GITNE \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. translators: %s see msgid "View sermon", effectively
    View sermon +#: includes/admin-functions.php:124 +msgid "Sermon updated. %s" +msgstr "Predigt aktualisiert. %s" + +#: includes/admin-functions.php:124 +msgid "View sermon" +msgstr "Predigt ansehen" + +#: includes/admin-functions.php:125 +msgid "Custom field updated." +msgstr "Benutzerdefiniertes Feld aktualisiert." + +#: includes/admin-functions.php:126 +msgid "Custom field deleted." +msgstr "Benutzerdefiniertes Feld gelöscht." + +#: includes/admin-functions.php:127 +msgid "Sermon updated." +msgstr "Predigt aktualisiert." + +#: includes/admin-functions.php:129 +msgid "Sermon restored to revision from %s" +msgstr "Predigt von Revision %s wiederhergestellt" + +#. translators: %s see msgid "View sermon", effectively View sermon +#: includes/admin-functions.php:130 +msgid "Sermon published. %s" +msgstr "Predigt veröffentlicht. %s" + +#: includes/admin-functions.php:131 +msgid "Sermon saved." +msgstr "Predigt gespeichert." + +#: includes/admin-functions.php:132 +msgid "Preview sermon" +msgstr "Vorschau ansehen" + +#. translators: %s see msgid "Preview sermon", effectively Preview sermon +#: includes/admin-functions.php:132 +msgid "Sermon submitted. %s" +msgstr "Predigt abgeschickt. %s" + +#. translators: %1$s see msgid "%1$s at %2$s", effectively at +#. translators: %2$s see msgid "Preview sermon", effectively Preview sermon +#: includes/admin-functions.php:133 +msgid "Sermon scheduled for: %1$s. %2$s" +msgstr "Predigt eingeplant für %1$s. %2$s" + +#. translators: %1$s date +#. translators: %2$s time +#: includes/admin-functions.php:135 +msgid "%1$s at %2$s" +msgstr "%1$s um %2$s Uhr" + +#. translators: %s see msgid "Preview sermon", effectively Preview sermon +#: includes/admin-functions.php:136 +msgid "Sermon draft updated. %s" +msgstr "Predigtentwurf aktualisiert. %s" + +#: includes/admin-functions.php:189 +msgid "Sermon Title" +msgstr "Predigttitel" + +#: includes/admin-functions.php:191 includes/types-taxonomies.php:120 +#: includes/types-taxonomies.php:121 includes/types-taxonomies.php:122 +msgid "Sermon Series" +msgstr "Predigtserie" + +#: includes/admin-functions.php:192 +msgid "Topics" +msgstr "Themen" + +#: includes/admin-functions.php:193 +msgid "Views" +msgstr "Einblendungen" + +#: includes/admin-functions.php:194 includes/types-taxonomies.php:301 +msgid "Date Preached" +msgstr "Gehalten am" + +#: includes/admin-functions.php:195 +msgid "Bible Passage" +msgstr "Bibelstelle" + +#. translators: %s see msgid "Error:" +#: includes/admin-functions.php:212 +msgid "%s Can’t find sermon ID." +msgstr "%s Die Predigt‑ID kann nicht gefunden werden" + +#: includes/admin-functions.php:212 +msgid "Error:" +msgstr "Fehler:" + +#: includes/admin-functions.php:306 +msgid "%s sermon" +msgid_plural "%s sermons" +msgstr[0] "%s Predigt" +msgstr[1] "%s Predigten" + +#: includes/helper-functions.php:193 includes/template-tags.php:129 +#: includes/template-tags.php:426 includes/template-tags.php:465 +msgid "Series: " +msgstr "Serie: " + +#: includes/options.php:74 +msgid "Sermon Manager Settings" +msgstr "Optionen der Predigtverwaltung" + +#: includes/options.php:94 includes/options.php:770 +#: includes/taxonomy-images/taxonomy-images.php:333 +#: includes/taxonomy-images/taxonomy-images.php:1238 +msgid "Settings" +msgstr "Einstellungen" + +#: includes/options.php:99 +msgid "Support" +msgstr "Hilfe" + +#: includes/options.php:108 includes/taxonomy-images/taxonomy-images.php:1263 +msgid "Manage Settings" +msgstr "Einstellungen" + +#: includes/options.php:197 +msgid "Sermon Manager Options" +msgstr "Einstellungen der Predigtverwaltung" + +#: includes/options.php:203 +msgid "General" +msgstr "Allgemein" + +#: includes/options.php:205 +msgid "Verse" +msgstr "Vers" + +#: includes/options.php:207 +msgid "Podcast" +msgstr "" + +#: includes/options.php:213 +msgid "Options saved" +msgstr "Einstellungen gespeichert." + +#: includes/options.php:222 +msgid "Need Some Help?" +msgstr "Etwas Hilfe nötig?" + +#. translators: %s see msgid "Sign up" +#: includes/options.php:224 +msgid "" +"Did you know you can get expert support for only $49 per year! %s today and " +"get support from the developers who are building the Sermon Manager." +msgstr "" +"Schon gewusst? Bereits für nur $49 jährlich ist Kundenunterstü" +"tzung von Experten zu haben. Noch heute %s und Unterstützung von den " +"Entwicklern der Predigtverwaltung für Wordpress erhalten." + +#: includes/options.php:224 +msgid "Sign up" +msgstr "registrieren" + +#: includes/options.php:227 +msgid "Free Support" +msgstr "Kostenlose Unterstützung" + +#: includes/options.php:228 +msgid "Priority Support" +msgstr "Bevorzugte Unterstützung" + +#: includes/options.php:231 +msgid "We offer limited free support via WordPress.org" +msgstr "" +"Wir bieten begrenzt kostenlose Unterstützung über WordPress.org an." + +#: includes/options.php:238 +msgid "Frequently Asked Questions" +msgstr "Häufig gestellte Fragen" + +#. translators: %s see msgid "Knowledge base" +#: includes/options.php:253 +msgid "Find out more in our %s" +msgstr "Finde weiteres in unserer %s heraus" + +#: includes/options.php:253 +msgid "knowledge base" +msgstr "Wissensbasis" + +#: includes/options.php:259 +msgid "Lets Make It Even Better!" +msgstr "Lasst uns es noch besser machen!" + +#: includes/options.php:264 +msgid "Submit Your Idea" +msgstr "Idee übermitteln" + +#: includes/options.php:267 +msgid "" +"If you have ideas on how to make Sermon Manager or any of our products " +"better, let us know!" +msgstr "" +"Sie haben Ideen zur Verbesserung der Predigtverwaltung für Wordpress " +"oder unser anderen Produkte? Lassen Sie es uns wissen!" + +#: includes/options.php:277 +msgid "General Settings" +msgstr "Allgemeine Einstellungen" + +#: includes/options.php:281 +msgid "Archive Page Title" +msgstr "Titel der Archivseite" + +#: includes/options.php:289 +msgid "Archive Page Slug" +msgstr "Titelform der Archivseite" + +#. translators: %1$s see msgid "sermons/preacher", effectively sermons/preacher +#. translators: %2$s see msgid "sermons/series", effectively sermons/series +#: includes/options.php:297 +msgid "" +"Common Base Slug — this is for users who want to have a common base " +"slug across all taxonomies, e.g. %1$s or %2$s." +msgstr "" +"Gemeinsame Grundtitelform — dies ist für Benutzer, die eine " +"gemeinsame Grundtitelform über alle Gruppierungen hinweg haben wollen, " +"also z.B. %1$s oder %2$s." + +#: includes/options.php:297 +msgid "sermons/preacher" +msgstr "predigten/prediger" + +#: includes/options.php:297 +msgid "sermons/series" +msgstr "predigten/serien" + +#: includes/options.php:302 +msgid "Enable a common base slug across all taxonomies" +msgstr "" +"Gemeinsame Grundtitelform über alle Gruppierungen hinweg aktivieren" + +#: includes/options.php:308 +msgid "" +"Enable Template Files — this is for users upgrading from an older " +"version who have issues with version 1.5+." +msgstr "" +"Vorlagendateien aktivieren — Diese Option ist für Benutzer, die " +"von einer älteren Version aktualisieren und Probleme mit Version 1.5+ " +"haben." + +#. translators: %s effectively /views +#. Since /views is a locale independent folder name it MUST NOT be localized +#: includes/options.php:313 +msgid "Enable template files found in the %s folder" +msgstr "Im Ordner %s gefundene Vorlagendateien aktivieren" + +#: includes/options.php:319 +msgid "Disable Sermon Styles" +msgstr "CSS‑Stile deaktivieren" + +#. translators: %s effectively sermons.css +#. Since sermons.css is a locale independent file name it MUST NOT be localized +#: includes/options.php:324 +msgid "" +"Disable Sermon CSS. If you do this, you should copy the styles from %s and " +"include them in your theme CSS." +msgstr "" +"CSS‑Stile der Predigtverwaltung deaktivieren. Wird diese Option " +"aktiviert, sollten die Stile aus der Datei %s im Pluginordner in die " +"CSS‑Datei des Themes kopiert werden." + +#: includes/options.php:338 +msgid "Display audio player or video on archive pages" +msgstr "Einen Audiospieler oder Video auf Archivseiten einblenden" + +#: includes/options.php:343 +msgid "Display an audio player or video embed in the archive listing." +msgstr "" +"Audiospieler oder ein eingebettetes Video in der Archivliste einblenden" + +#: includes/options.php:349 includes/options.php:354 +msgid "Use old audio player" +msgstr "Alten Audiospieler verwenden" + +#: includes/options.php:352 +msgid "" +"Custom label for “Preacher”. Note: it will also change preacher " +"slugs." +msgstr "" +"Benutzerdefinierter Begriff für „Prediger/in“. Hinweis: " +"Dies wird auch die Prediger/innentitelform ändern." + +#: includes/options.php:360 +msgid "Sermon date format (used when creating a new Sermon)" +msgstr "" +"Datumformat des Datums, an dem die Predigt gehalten wurde (wird bei der " +"Erstellung einer neuen Predigt verwendet)" + +#: includes/options.php:389 includes/options.php:395 +msgid "Show key verse in widget" +msgstr "Schlüsselvers im Widget darstellen" + +#: includes/options.php:393 +msgid "Version %s" +msgstr "Version %s" + +#: includes/options.php:406 +msgid "Current Version" +msgstr "Aktuelle Version" + +#: includes/options.php:414 +msgid "Verse Settings" +msgstr "Verseinstellungen" + +#: includes/options.php:419 +msgid "Verse Popups" +msgstr "Verseinblendungen" + +#: includes/options.php:425 +msgid "Disable Bib.ly verse popups" +msgstr "Bib.ly‑Einblendungen deaktivieren" + +#: includes/options.php:431 +msgid "Select Bible Version for Verse Popups" +msgstr "Bibelversion für Verseinblendungen auswählen" + +#. translators: %1$s effectively ESV +#. translators: %2$s effectively NET +#. translators: %3$s effectively KJV +#. translators: %4$s effectively LEB +#. translators: %5$s see msgid "bib.ly", effectively bib.ly +#: includes/options.php:444 +msgid "%1$s, %2$s, %3$s, or %4$s are the currently supported popups for %5$s." +msgstr "" +"Nur %1$s, %2$s, %3$s, oder %4$s werden für Einblendungen aus %5$s " +"unterstützt." + +#: includes/options.php:449 +msgid "bib.ly" +msgstr "Bib.ly" + +#. translators: %s see effectively ESV +#: includes/options.php:451 +msgid "Warning! %s is not supported if your site uses SSL (HTTPS)." +msgstr "" +"WARNUNG: %s wird nicht unterstützt, wenn die Website SSL (HTTPS) " +"verwendet." + +#: includes/options.php:464 +msgid "Podcast Settings" +msgstr "Podcasteinstellungen" + +#: includes/options.php:486 +msgid "Title" +msgstr "Titel" + +#: includes/options.php:490 includes/options.php:500 includes/options.php:510 +#: includes/options.php:520 includes/options.php:555 includes/options.php:603 +#: includes/options.php:616 +msgid "e.g. %s" +msgstr "z.B. %s" + +#: includes/options.php:496 includes/types-taxonomies.php:323 +msgid "Description" +msgstr "Beschreibung" + +#: includes/options.php:506 +msgid "Website Link" +msgstr "Webseite" + +#: includes/options.php:516 +msgid "Language" +msgstr "Sprache" + +#: includes/options.php:526 +msgid "Copyright" +msgstr "Urheberrechtshinweis" + +#: includes/options.php:530 +msgid "e.g. Copyright © %s" +msgstr "z.B. Copyright © %s" + +#. translators: %s &copy; +#: includes/options.php:535 +msgid "Tip: Use %s to generate a copyright symbol." +msgstr "Tipp: Verwende %s, um ein Copyright‑Symbol zu erzeugen." + +#: includes/options.php:541 +msgid "Webmaster Name" +msgstr "Name des Webmasters" + +#: includes/options.php:545 +msgid "e.g. Your Name" +msgstr "z.B. Dein Name" + +#: includes/options.php:551 +msgid "Webmaster Email" +msgstr "E‑Mail des Webmasters" + +#: includes/options.php:561 +msgid "Author" +msgstr "Autor" + +#: includes/options.php:565 +msgid "e.g. Primary Speaker or Church Name" +msgstr "z.B. Hauptredner/in oder Name der Gemeinde" + +#: includes/options.php:569 +msgid "This will display at the “Artist” in the iTunes Store." +msgstr "Dies wird als „Künstler“ im iTunes Store angezeigt." + +#: includes/options.php:574 +msgid "Subtitle" +msgstr "Untertitel" + +#: includes/options.php:578 +msgid "e.g. Preaching and teaching audio from %s" +msgstr "z.B. Predigten und Lehre von %s" + +#: includes/options.php:582 +msgid "" +"Your subtitle should briefly tell the listener what they can expect to hear." +msgstr "" +"Der Untertitel sollte dem Hörer oder der Hörerin einen knappen " +"Eindruck vermitteln, was er oder sie erwarten kann." + +#: includes/options.php:587 +msgid "Summary" +msgstr "Zusammenfassung" + +#: includes/options.php:591 +msgid "e.g. Weekly teaching audio brought to you by %s in City, State." +msgstr "" +"z.B. die wöchentlichen Lehraufnahmen werden von %s in Stadt, Bundesland " +"produziert." + +#: includes/options.php:594 +msgid "" +"Keep your Podcast Summary short, sweet and informative. Be sure to include a " +"brief statement about your mission and in what region your audio content " +"originates." +msgstr "" +"Halte Deine Podcastzusammenfassung kurz, erfrischend und informativ. " +"Erwähne auch was euer Ziel ist und woher die Audioinhalte kommen." + +#: includes/options.php:599 +msgid "Owner Name" +msgstr "Besitzername" + +#: includes/options.php:607 +msgid "This should typically be the name of your Church." +msgstr "Das sollte normalerweise der Name der Gemeinde sein." + +#: includes/options.php:612 +msgid "Owner Email" +msgstr "E‑Mail" + +#: includes/options.php:620 +msgid "" +"Use an email address that you don’t mind being made public. If someone " +"wants to contact you regarding your Podcast this is the address they will " +"use." +msgstr "" +"Verwende eine E‑Mail‑Adresse, welche auf öffentlich gemacht " +"werden kann. Wenn Dich jemand bezüglich des Podcasts kontaktieren " +"möchte, wird das über diese Adresse geschehen." + +#: includes/options.php:625 +msgid "Cover Image" +msgstr "Bild" + +#: includes/options.php:632 +msgid "Upload Image" +msgstr "Bild hochladen" + +#: includes/options.php:635 +msgid "" +"This JPG will serve as the Podcast artwork in the iTunes Store. The image " +"must be between 1,400px by 1,400px and 3,000px by 3,000px or else iTunes " +"will not accept your feed." +msgstr "" +"Dieses JPG dient als Podcast‑Cover im iTunes Store. Die Bildauflö" +"sung sollte zwischen 1.400px mal 1.400px und 3.000px mal 3.000px sein, " +"ansonsten wird iTunes den Feed nicht akzeptieren." + +#: includes/options.php:640 +msgid "Top Category" +msgstr "Oberste Kategorie" + +#: includes/options.php:648 +msgid "" +"Choose the appropriate top-level category for your Podcast listing in iTunes." +msgstr "" +"Wähle eine passende Oberkategorie für den Podcasteintrag in iTunes." + +#: includes/options.php:653 +msgid "Sub Category" +msgstr "Unterkategorie" + +#: includes/options.php:661 +msgid "Choose the appropriate sub category for your Podcast listing in iTunes." +msgstr "" +"Wähle eine passende Unterkategorie für den Podcasteintrag in " +"iTunes." + +#: includes/options.php:666 +msgid "PodTrac Tracking" +msgstr "PodTrac‑Nachverfolung" + +#: includes/options.php:671 +msgid "Enables PodTrac tracking." +msgstr "PodTrac‑Nachverfolung aktivieren" + +#. translators: %s podtrac.com +#: includes/options.php:675 +msgid "For more info on PodTrac or to sign up for an account, visit %s" +msgstr "" +"Auf %s können weitere Informationen über PodTrac eingeholt oder " +"ein Konto eingerichtet werden." + +#: includes/options.php:680 +msgid "HTML in description" +msgstr "HTML in Beschreibung" + +#: includes/options.php:686 +msgid "Enable HTML description" +msgstr "HTML‑Beschreibung aktivieren" + +#: includes/options.php:690 +msgid "" +"Enables showing of HTML in iTunes description field. Uncheck if description " +"looks messy." +msgstr "" +"Aktiviert die Anzeige von HTML‑Beschreibungen in iTunes. Falls die " +"Beschreibung durcheinander aussieht, dann sollte die Einstellung deaktiviert " +"bleiben." + +#: includes/options.php:695 +msgid "Number of podcasts to show" +msgstr "Anzahl der anzuzeigenden Podcasteinträge" + +#: includes/options.php:704 +msgid "" +"Shows custom podcast count. If not defined, it uses WordPress default count." +msgstr "" +"Zeigt eine benutzerdefinierte Anzahl an Podcasteinträgen. Wird keine " +"Anzahl festgelegt, wird die WordPress‑Standardanzahl verwendet." + +#: includes/options.php:715 +msgid "Feed URL to Submit to iTunes" +msgstr "Bei iTunes einzureichende Feed‑URL" + +#: includes/options.php:722 +msgid "Feed Validator" +msgstr "Feed‑Validator" + +#. translators: %s Feed Validator link, see msgid "Feed Validator" +#: includes/options.php:722 +msgid "" +"Use the %s to diagnose and fix any problems before submitting your Podcast " +"to iTunes." +msgstr "" +"Bevor der Podcast bei iTunes eingereicht wird, kann der %s verwendet werden, " +"um Probleme zu finden und zu beheben." + +#. translators: %s see msgid "Submit Your Podcast" +#: includes/options.php:725 +msgid "" +"Once your Podcast Settings are complete and your Sermons are ready, it’" +"s time to %s to the iTunes Store!" +msgstr "" +"Nachdem die Podcasteinstellungen komplett und die Predigten fertig sind, ist " +"es Zeit %s!" + +#: includes/options.php:725 +msgid "Submit Your Podcast" +msgstr "den Podcast beim iTunes Store einzureichen" + +#. translators: %s see msgid "FeedBurner" +#: includes/options.php:727 +msgid "" +"Alternatively, if you want to track your Podcast subscribers, simply pass " +"the Podcast Feed URL above through %s. FeedBurner will then give you a new " +"URL to submit to iTunes instead." +msgstr "" +"Alternativ, wenn Du die Aktivität deiner Podcasthörerinnen und " +"‑Hörer nachverfolgen möchtest, leite die Feed‑URL " +"durch %s. FeedBurner gibt Dir dann eine neue URL, die Du dann stattdessen " +"bei iTunes einreichen kannst." + +#: includes/options.php:727 +msgid "FeedBurner" +msgstr "" + +#. translators: %s see msgid "iTunes FAQ for Podcast Makers" +#: includes/options.php:730 +msgid "Please read the %s for more information." +msgstr "Für weitere Informationen, bitte lies die Liste der %s durch." + +#: includes/options.php:730 +msgid "iTunes FAQ for Podcast Makers" +msgstr "häufig gestellten Fragen für Podcastersteller auf iTunes" + +#: includes/options.php:751 includes/taxonomy-images/taxonomy-images.php:395 +msgid "Save Changes" +msgstr "Änderungen speichern" + +#: includes/shortcodes.php:781 includes/template-tags.php:114 +#: views/archive-wpfc_sermon.php:40 views/taxonomy-wpfc_bible_book.php:72 +#: views/taxonomy-wpfc_preacher.php:78 +#: views/taxonomy-wpfc_sermon_series.php:79 +#: views/taxonomy-wpfc_sermon_topics.php:79 +#: views/taxonomy-wpfc_service_type.php:72 +msgid "Permalink to %s" +msgstr "Permalink zu %s" + +#: includes/taxonomy-images/public-filters.php:385 +msgid "" +"%1$s is not a property of the current queried object. This usually happens " +"when the %2$s filter is used in an unsupported template file. This filter " +"has been designed to work in taxonomy archives which are traditionally " +"served by one of the following template files: category.php, tag.php or " +"taxonomy.php. Learn more about %3$s." +msgstr "" +"„%1$s“ ist nicht Inhalt des aktuell gesuchten Objekts. Das " +"passiert normalerweise, wenn der Filter „%2$s“ in einer nicht " +"unterstützten Vorlage verwendet wird. Dieser Filter wurde so entworfen, " +"dass er in Gruppierungsarchiven funktioniert, welche normaler weise von den " +"Dateien category.php, tag.php oder taxonomy." +"php bereitgestellt werden." + +#: includes/taxonomy-images/public-filters.php:386 +msgid "term_taxonomy_id" +msgstr "begriff_gruppierung_id (Gruppierung = Taxonomie)" + +#: includes/taxonomy-images/taxonomy-images.php:130 +msgid "Associate with %1$s" +msgstr "Mit „%1$s“ verbinden" + +#: includes/taxonomy-images/taxonomy-images.php:130 +#: includes/taxonomy-images/taxonomy-images.php:131 +msgid "this term" +msgstr "Begriff" + +#: includes/taxonomy-images/taxonomy-images.php:131 +msgid "Remove association with %1$s" +msgstr "Verbindung mit „%1$s“ entfernen" + +#: includes/taxonomy-images/taxonomy-images.php:290 +msgid "Image support for taxonomies successfully updated" +msgstr "Bildunterstützung wurde erfolgreich aktualisiert" + +#: includes/taxonomy-images/taxonomy-images.php:293 +msgid "Image support has been disabled for all taxonomies." +msgstr "Bildunterstützung wurde für alle Gruppierungen deaktiviert." + +#: includes/taxonomy-images/taxonomy-images.php:339 +msgid "Taxonomies" +msgstr "Gruppierungen" + +#: includes/taxonomy-images/taxonomy-images.php:359 +#: includes/taxonomy-images/taxonomy-images.php:360 +msgid "Taxonomy Images" +msgstr "Gruppierungsbilder" + +#: includes/taxonomy-images/taxonomy-images.php:387 +msgid "Taxonomy Images Plugin Settings" +msgstr "Einstellungen des Gruppierungsbilder‑Plugins" + +#: includes/taxonomy-images/taxonomy-images.php:447 +msgid "Unknown error encountered" +msgstr "Unbekannter Fehler" + +#: includes/taxonomy-images/taxonomy-images.php:529 +#: includes/taxonomy-images/taxonomy-images.php:611 +msgid "tt_id not sent" +msgstr "tt_id nicht gesendet" + +#: includes/taxonomy-images/taxonomy-images.php:537 +#: includes/taxonomy-images/taxonomy-images.php:619 +msgid "tt_id is empty" +msgstr "tt_id ist leer" + +#: includes/taxonomy-images/taxonomy-images.php:544 +#: includes/taxonomy-images/taxonomy-images.php:626 +msgid "You do not have the correct capability to manage this term" +msgstr "Keine Berechtigung, um diesen Begriff zu verwalten" + +#: includes/taxonomy-images/taxonomy-images.php:551 +#: includes/taxonomy-images/taxonomy-images.php:633 +msgid "No nonce included." +msgstr "Begriffsbildung nicht enthalten." + +#: includes/taxonomy-images/taxonomy-images.php:558 +#: includes/taxonomy-images/taxonomy-images.php:640 +msgid "Nonce did not match" +msgstr "Begriffsbildung stimmte nicht überein." + +#: includes/taxonomy-images/taxonomy-images.php:565 +msgid "Image id not sent" +msgstr "Keine Bild‑Id versendet" + +#: includes/taxonomy-images/taxonomy-images.php:573 +msgid "Image id is not a positive integer" +msgstr "Die Bild‑Id ist keine positive Ganzzahl." + +#: includes/taxonomy-images/taxonomy-images.php:582 +msgid "Image successfully associated" +msgstr "Das Bild wurde erfolgreich verbunden" + +#: includes/taxonomy-images/taxonomy-images.php:588 +msgid "Association could not be created" +msgstr "Die Verbindung konnte nicht erstellt werden" + +#: includes/taxonomy-images/taxonomy-images.php:648 +msgid "Nothing to remove" +msgstr "Nichts zu entfernen" + +#: includes/taxonomy-images/taxonomy-images.php:657 +msgid "Association successfully removed" +msgstr "Verbindung erfolgreich entfernt" + +#: includes/taxonomy-images/taxonomy-images.php:662 +msgid "Association could not be removed" +msgstr "Die Verbindung konnte nicht entfernt werden" + +#: includes/taxonomy-images/taxonomy-images.php:739 +#: includes/taxonomy-images/taxonomy-images.php:793 +msgid "Image" +msgstr "Bild" + +#: includes/taxonomy-images/taxonomy-images.php:786 +#: includes/taxonomy-images/taxonomy-images.php:823 +msgid "term" +msgstr "Begriff" + +#: includes/taxonomy-images/taxonomy-images.php:797 +msgid "Associate an image from your media library to this %1$s." +msgstr "Verbinde ein Bild aus der Mediathek mit dieser %1$s." + +#: includes/taxonomy-images/taxonomy-images.php:846 +msgid "Associate an image with the %1$s named “%2$s”." +msgstr "Verknüpfe ein Bild mit %1$s mit dem Namen „%2$s“." + +#: includes/taxonomy-images/taxonomy-images.php:847 +msgid "Upload a new image for this %s." +msgstr "Ein neues Bild für dieses %s hochladen." + +#: includes/taxonomy-images/taxonomy-images.php:847 +msgid "Upload." +msgstr "Hochladen." + +#: includes/taxonomy-images/taxonomy-images.php:848 +msgid "Delete" +msgstr "Löschen" + +#: includes/taxonomy-images/taxonomy-images.php:848 +msgid "Remove image from this %s." +msgstr "Bild von diesem %s entfernen." + +#: includes/taxonomy-images/taxonomy-images.php:882 +msgid "“" +msgstr "„" + +#: includes/taxonomy-images/taxonomy-images.php:883 +msgid "”" +msgstr "“" + +#: includes/taxonomy-images/taxonomy-images.php:884 +msgid "Associating …" +msgstr "Verbinde …" + +#: includes/taxonomy-images/taxonomy-images.php:885 +msgid "Successfully Associated" +msgstr "Erfolgreich verbunden" + +#: includes/taxonomy-images/taxonomy-images.php:886 +msgid "Removing …" +msgstr "Entferne …" + +#: includes/taxonomy-images/taxonomy-images.php:887 +msgid "Successfully Removed" +msgstr "Erfolgreich entfernt" + +#: includes/taxonomy-images/taxonomy-images.php:1162 +msgid "" +"The %1$s argument for %2$s is set to %3$s which is not a registered " +"taxonomy. Please check the spelling and update the argument." +msgstr "" +"Das %1$s Argument für %2$s wurde als %3$s festgelegt, was keine " +"registrierte Gruppierung (Taxonomie) ist. Bitte überprüfe die " +"Schreibweise und aktualisiere das Argument." + +#: includes/taxonomy-images/taxonomy-images.php:1163 +msgid "taxonomy" +msgstr "gruppierung" + +#: includes/taxonomy-images/taxonomy-images.php:1174 +msgid "No taxonomies have image support. %1$s" +msgstr "Keine Gruppierungen unterstützen Bilder. %1$s" + +#: includes/taxonomy-images/taxonomy-images.php:1180 +msgid "The %1$s taxonomy does not have image support. %2$s" +msgstr "Die Gruppierung „%1$s“ unterstützt keine Bilder. %2$s" + +#: includes/taxonomy-images/taxonomy-images.php:1206 +msgid "The %1$s has been called directly. Please use the %2$s filter instead." +msgstr "" +"„%1$s“ wurde direkt aufgerufen. Bitte stattdessen den Filter " +"„%2$s“ verwenden." + +#: includes/taxonomy-images/taxonomy-images.php:1243 +msgid "Donate" +msgstr "Spenden" + +#. translators: %s see msgid "Preacher" +#: includes/taxonomy-images/taxonomy-images.php:1302 +#: includes/taxonomy-images/taxonomy-images.php:1303 +msgid "Set %s’s image" +msgstr "%sbild setzen" + +#: includes/taxonomy-images/taxonomy-images.php:1304 +#: includes/taxonomy-images/taxonomy-images.php:1305 +msgid "Set Series image" +msgstr "Serienbild setzen" + +#: includes/template-tags.php:127 includes/template-tags.php:424 +#: includes/template-tags.php:463 includes/widgets.php:96 +msgid "Bible Text: " +msgstr "Bibelauszug: " + +#: includes/template-tags.php:389 +msgid "Download Files" +msgstr "Dateien zum Herunterladen" + +#: includes/template-tags.php:391 +msgid "MP3" +msgstr "" + +#: includes/template-tags.php:394 +msgid "Notes" +msgstr "Notizen" + +#: includes/template-tags.php:397 includes/types-taxonomies.php:378 +msgid "Bulletin" +msgstr "Gemeindebrief" + +#: includes/template-tags.php:439 +msgid "Sermon Topics: " +msgstr "Predigtthemen: " + +#: includes/types-taxonomies.php:58 includes/types-taxonomies.php:68 +msgid "Sermons" +msgstr "Predigten" + +#: includes/types-taxonomies.php:59 +msgid "Sermon" +msgstr "Predigt" + +#: includes/types-taxonomies.php:60 +msgid "Add New" +msgstr "Neue Predigt" + +#: includes/types-taxonomies.php:61 +msgid "Add New Sermon" +msgstr "Neue Predigt" + +#: includes/types-taxonomies.php:62 +msgid "Edit Sermon" +msgstr "Predigt bearbeiten" + +#: includes/types-taxonomies.php:63 +msgid "New Sermon" +msgstr "Neue Predigt" + +#: includes/types-taxonomies.php:64 +msgid "View Sermon" +msgstr "Predigt ansehen" + +#: includes/types-taxonomies.php:65 +msgid "Search Sermons" +msgstr "Predigten durchsuchen" + +#: includes/types-taxonomies.php:66 +msgid "No sermons found" +msgstr "Es wurden keine Predigten gefunden" + +#: includes/types-taxonomies.php:67 +msgid "No sermons found in Trash" +msgstr "Es sind keine Predigten im Papierkorb" + +#: includes/types-taxonomies.php:93 includes/types-taxonomies.php:95 +msgid "Preachers" +msgstr "Prediger/innen" + +#: includes/types-taxonomies.php:94 includes/types-taxonomies.php:96 +#: includes/types-taxonomies.php:97 includes/types-taxonomies.php:98 +#: includes/types-taxonomies.php:99 includes/types-taxonomies.php:100 +#: includes/types-taxonomies.php:101 includes/types-taxonomies.php:102 +#: includes/types-taxonomies.php:103 includes/types-taxonomies.php:104 +#: includes/types-taxonomies.php:105 +msgid "Preacher" +msgstr "Prediger/in" + +#: includes/types-taxonomies.php:96 +msgid "Search %s" +msgstr "%s durchsuchen" + +#: includes/types-taxonomies.php:97 +msgid "Most frequent %s" +msgstr "Häufigste/n %s" + +#: includes/types-taxonomies.php:98 +msgid "All %s" +msgstr "Alle %s" + +#: includes/types-taxonomies.php:99 +msgid "Edit %s" +msgstr "%s bearbeiten" + +#: includes/types-taxonomies.php:100 +msgid "Update %s" +msgstr "%s aktualisieren" + +#: includes/types-taxonomies.php:101 +msgid "Add new %s" +msgstr "Neue/n %s hinzufügen" + +#: includes/types-taxonomies.php:102 +msgid "New %s" +msgstr "Neue/r %s" + +#: includes/types-taxonomies.php:103 +msgid "Separate multiple %s with commas" +msgstr "Trenne mehrere %s durch Kommata" + +#: includes/types-taxonomies.php:104 +msgid "Add or remove %s" +msgstr "%s hinzufügen oder entfernen" + +#: includes/types-taxonomies.php:105 +msgid "Choose from most frequent %s" +msgstr "Aus den häufigsten %s auswählen" + +#: includes/types-taxonomies.php:123 +msgid "Search sermon series" +msgstr "Predigtserien durchsuchen" + +#: includes/types-taxonomies.php:124 +msgid "Most frequent sermon series" +msgstr "Häufigste Predigtserie" + +#: includes/types-taxonomies.php:125 +msgid "All sermon series" +msgstr "Alle Predigtserien" + +#: includes/types-taxonomies.php:126 +msgid "Edit sermon series" +msgstr "Predigtserie bearbeiten" + +#: includes/types-taxonomies.php:127 +msgid "Update sermon series" +msgstr "Predigtserie aktualisieren" + +#: includes/types-taxonomies.php:128 +msgid "Add new sermon series" +msgstr "Neue Serie hinzufügen" + +#: includes/types-taxonomies.php:129 +msgid "New sermon series name" +msgstr "Neuer Name für eine Predigtserie" + +#: includes/types-taxonomies.php:130 +msgid "Separate sermon series with commas" +msgstr "Trenne mehrere Predigtserien durch Kommata" + +#: includes/types-taxonomies.php:131 +msgid "Add or remove sermon series" +msgstr "Predigtserie hinzufügen oder entfernen" + +#: includes/types-taxonomies.php:132 +msgid "Choose from most used sermon series" +msgstr "Aus den am meisten genutzten Predigtserien auswählen" + +#: includes/types-taxonomies.php:147 includes/types-taxonomies.php:148 +#: includes/types-taxonomies.php:149 +msgid "Sermon Topics" +msgstr "Predigtthemen" + +#: includes/types-taxonomies.php:150 +msgid "Search sermon topics" +msgstr "Predigtthemen durchsuchen" + +#: includes/types-taxonomies.php:151 +msgid "Most popular sermon topics" +msgstr "Populärste Themen" + +#: includes/types-taxonomies.php:152 +msgid "All sermon topics" +msgstr "Alle Predigtthemen" + +#: includes/types-taxonomies.php:153 +msgid "Edit sermon topic" +msgstr "Predigtthema bearbeiten" + +#: includes/types-taxonomies.php:154 +msgid "Update sermon topic" +msgstr "Predigtthema aktualisieren" + +#: includes/types-taxonomies.php:155 +msgid "Add new sermon topic" +msgstr "Neues Predigtthema" + +#: includes/types-taxonomies.php:156 +msgid "New sermon topic" +msgstr "Neues Predigtthema" + +#: includes/types-taxonomies.php:157 +msgid "Separate sermon topics with commas" +msgstr "Trenne Predigtthemen durch Kommata" + +#: includes/types-taxonomies.php:158 +msgid "Add or remove sermon topics" +msgstr "Predigtthemen hinzufügen oder entfernen" + +#: includes/types-taxonomies.php:159 +msgid "Choose from most used sermon topics" +msgstr "Aus den am meisten genutzten Predigtthemen auswählen" + +#: includes/types-taxonomies.php:174 includes/types-taxonomies.php:175 +#: includes/types-taxonomies.php:176 +msgid "Book of the Bible" +msgstr "Buch der Bibel" + +#: includes/types-taxonomies.php:177 +msgid "Search books of the Bible" +msgstr "Bücher der Bibel durchsuchen" + +#: includes/types-taxonomies.php:178 +msgid "Most popular books of the Bible" +msgstr "Populärste Bücher der Bibel" + +#: includes/types-taxonomies.php:179 +msgid "All books of the Bible" +msgstr "Alle Bücher der Bibel" + +#: includes/types-taxonomies.php:180 +msgid "Edit book of the Bible" +msgstr "Buch der Bibel bearbeiten" + +#: includes/types-taxonomies.php:181 +msgid "Update book of the Bible" +msgstr "Buch der Bibel aktualisieren" + +#: includes/types-taxonomies.php:182 +msgid "Add new books of the Bible" +msgstr "Neues Buch hinzufügen" + +#: includes/types-taxonomies.php:183 +msgid "New book of the Bible" +msgstr "Neues Buch der Bibel" + +#: includes/types-taxonomies.php:184 +msgid "Separate books of the Bible with commas" +msgstr "Trenne mehrere Bücher durch Kommata" + +#: includes/types-taxonomies.php:185 +msgid "Add or remove books of the Bible" +msgstr "Bücher hinzufügen oder entfernen" + +#: includes/types-taxonomies.php:186 +msgid "Choose from most used books of the Bible" +msgstr "Aus den am meisten genutzten Büchern auswählen" + +#: includes/types-taxonomies.php:201 includes/types-taxonomies.php:202 +#: includes/types-taxonomies.php:203 includes/types-taxonomies.php:309 +msgid "Service Type" +msgstr "Dienstart" + +#: includes/types-taxonomies.php:204 +msgid "Search service types" +msgstr "Dienstarten durchsuchen" + +#: includes/types-taxonomies.php:205 +msgid "Most popular service types" +msgstr "Die am meisten genutzten Dienstarten" + +#: includes/types-taxonomies.php:206 +msgid "All service types" +msgstr "Alle Dienstarten" + +#: includes/types-taxonomies.php:207 +msgid "Edit service type" +msgstr "Dienstart bearbeiten" + +#: includes/types-taxonomies.php:208 +msgid "Update service type" +msgstr "Dienstart aktualisieren" + +#: includes/types-taxonomies.php:209 +msgid "Add new service types" +msgstr "Neue Dienstarten hinzufügen" + +#: includes/types-taxonomies.php:210 +msgid "New Service Type" +msgstr "Neue Dienstart" + +#: includes/types-taxonomies.php:211 +msgid "Separate service types with commas" +msgstr "Trenne Dienstarten durch Kommata" + +#: includes/types-taxonomies.php:212 +msgid "Add or remove service types" +msgstr "Dienstarten hinzufügen oder entfernen" + +#: includes/types-taxonomies.php:213 +msgid "Choose from most used service types" +msgstr "Aus den am meisten genutzten Dienstarten auswählen" + +#: includes/types-taxonomies.php:273 +msgid "Sermon Details" +msgstr "Predigtdetails" + +#. translators: %s date format, effectively d/m/Y or the like +#: includes/types-taxonomies.php:302 +msgid "format: %s" +msgstr "Format: %s" + +#: includes/types-taxonomies.php:310 +msgid "" +"Select the type of service. Modify service types in Sermons → Service " +"Types." +msgstr "" +"Dienstart auswählen. Dienstarten können über Predigten → " +"Dienstart geändert werden." + +#: includes/types-taxonomies.php:317 +msgid "Main Bible Passage" +msgstr "Hauptbibelstelle" + +#. translators: %s see msgid "John 3:16-18", effectively John 3:16-18 +#: includes/types-taxonomies.php:318 +msgid "Enter the Bible passage with the full book names, e.g. %s." +msgstr "Trage die Bibelstelle mit vollem Buchnamen ein, z.B.: %s." + +#: includes/types-taxonomies.php:318 +msgid "John 3:16-18" +msgstr "Johannes 3, 16-18" + +#: includes/types-taxonomies.php:324 +msgid "" +"Type a brief description about this sermon, an outline, or a full manuscript" +msgstr "" +"Schreibe ein kurze Beschreibung über die Predigt, eine Gliederung oder " +"ein ganzes Manuskript" + +#: includes/types-taxonomies.php:332 +msgid "Sermon Files" +msgstr "Predigtdateien" + +#: includes/types-taxonomies.php:341 +msgid "Location of MP3" +msgstr "Ort der MP3‑Datei" + +#: includes/types-taxonomies.php:342 +msgid "Upload an audio file or enter an URL." +msgstr "Lade eine Audiodatei hoch oder gib eine URL an." + +#: includes/types-taxonomies.php:346 +msgid "Add Sermon Audio" +msgstr "Aufnahme hinzufügen" + +#: includes/types-taxonomies.php:350 +msgid "MP3 Duration" +msgstr "MP3‑Spieldauer" + +#. translators: %s see msgid "hh:mm:ss", effectively hh:mm:ss +#: includes/types-taxonomies.php:351 +msgid "" +"Length in %s format (if left blank, will attempt to calculate automatically " +"when you save)" +msgstr "" +"Spieldauer im %s‑Format. Wird das Feld leer gelassen, so wird versucht " +"werden die Spieldauer beim Speichern automatisch zu ermitteln." + +#: includes/types-taxonomies.php:351 +msgid "hh:mm:ss" +msgstr "" + +#: includes/types-taxonomies.php:356 +msgid "Video Embed Code" +msgstr "Videoeinbettungscode" + +#: includes/types-taxonomies.php:357 +msgid "Paste your embed code for Vimeo, Youtube, or other service here" +msgstr "" +"Füge hier den Einbettungscode von Vimeo, Youtube oder eines anderen " +"Dienstes ein" + +#: includes/types-taxonomies.php:362 +msgid "Video Link" +msgstr "Videoverknüpfung" + +#: includes/types-taxonomies.php:363 +msgid "Paste your link for Vimeo, Youtube, or other service here" +msgstr "" +"Füge hier die Verknüpfung von Vimeo, Youtube oder eines anderen " +"Dienstes ein" + +#: includes/types-taxonomies.php:369 +msgid "Sermon Notes" +msgstr "Predigtnotizen" + +#: includes/types-taxonomies.php:370 includes/types-taxonomies.php:379 +msgid "Upload a pdf file or enter an URL." +msgstr "Lade eine PDF‑Datei hoch oder gib eine URL zu einem Dokument an." + +#: includes/types-taxonomies.php:374 includes/types-taxonomies.php:383 +msgid "Add File" +msgstr "Datei hinzufügen" + +#: includes/widgets.php:12 +msgid "The most recent sermons on your site" +msgstr "Die neuesten Predigten auf Deine Seite" + +#: includes/widgets.php:14 includes/widgets.php:43 +msgid "Recent Sermons" +msgstr "Neueste Predigten" + +#: includes/widgets.php:134 +msgid "Title:" +msgstr "Titel:" + +#: includes/widgets.php:140 +msgid "Number of sermons to show:" +msgstr "Anzahl der anzuzeigenden Predigten:" + +#. translators: plugin header field "Plugin Name" +#: sermons.php:3 +msgid "Sermon Manager for WordPress" +msgstr "Predigtverwaltung für WordPress" + +#. translators: plugin header field "Description" +#: sermons.php:5 +msgid "Add audio and video sermons, manage speakers, series, and more." +msgstr "" +"Ermöglicht das Hinzufügen von Audio‑ und Video‑" +"Predigten, die Verwaltung von Sprechern und Sprecherinnen sowie " +"Predigtserien und mehr." + +#. translators: %s see msgid "←", effectively +#: views/archive-wpfc_sermon.php:18 views/archive-wpfc_sermon.php:71 +msgid "%s Older sermons" +msgstr "%s Ältere Predigten" + +#. translators: %s see msgid "→", effectively +#: views/archive-wpfc_sermon.php:21 views/archive-wpfc_sermon.php:74 +msgid "Newer sermons %s" +msgstr "Neuere Predigten %s" + +#: views/archive-wpfc_sermon.php:28 views/taxonomy-wpfc_bible_book.php:45 +#: views/taxonomy-wpfc_preacher.php:51 +#: views/taxonomy-wpfc_sermon_series.php:52 +#: views/taxonomy-wpfc_sermon_topics.php:52 +#: views/taxonomy-wpfc_service_type.php:45 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: views/archive-wpfc_sermon.php:30 views/taxonomy-wpfc_bible_book.php:47 +#: views/taxonomy-wpfc_preacher.php:53 +#: views/taxonomy-wpfc_sermon_series.php:54 +#: views/taxonomy-wpfc_sermon_topics.php:54 +#: views/taxonomy-wpfc_service_type.php:47 +msgid "Apologies, but no sermons were found." +msgstr "Es tut uns leid, aber es wurden keine Predigten gefunden." + +#. translators: %s date +#: views/archive-wpfc_sermon.php:47 views/taxonomy-wpfc_bible_book.php:77 +msgid "Preached on %s" +msgstr "Gehalten am %s" + +#: views/archive-wpfc_sermon.php:60 views/taxonomy-wpfc_bible_book.php:88 +#: views/taxonomy-wpfc_preacher.php:94 +#: views/taxonomy-wpfc_sermon_series.php:95 +#: views/taxonomy-wpfc_sermon_topics.php:95 +#: views/taxonomy-wpfc_service_type.php:88 +msgid "%s Comment" +msgid_plural "%s Comments" +msgstr[0] "%s Kommentar" +msgstr[1] "%s Kommentare" + +#: views/archive-wpfc_sermon.php:60 views/taxonomy-wpfc_bible_book.php:88 +#: views/taxonomy-wpfc_preacher.php:94 +#: views/taxonomy-wpfc_sermon_series.php:95 +#: views/taxonomy-wpfc_sermon_topics.php:95 +#: views/taxonomy-wpfc_service_type.php:88 +msgid "Leave a comment" +msgstr "Kommentar hinterlassen" + +#: views/archive-wpfc_sermon.php:62 views/single-wpfc_sermon.php:35 +#: views/taxonomy-wpfc_bible_book.php:89 views/taxonomy-wpfc_preacher.php:95 +#: views/taxonomy-wpfc_sermon_series.php:96 +#: views/taxonomy-wpfc_sermon_topics.php:96 +#: views/taxonomy-wpfc_service_type.php:89 +msgid "Edit" +msgstr "Bearbeiten" + +#: views/single-wpfc_sermon.php:42 +msgctxt "Previous post link" +msgid "←" +msgstr "" + +#: views/single-wpfc_sermon.php:44 +msgctxt "Next post link" +msgid "→" +msgstr "" + +#: views/taxonomy-wpfc_bible_book.php:20 +msgid "Sermons by Book: %s" +msgstr "Predigten nach Buch: %s" + +#. translators: %s see msgid "←", effectively +#: views/taxonomy-wpfc_bible_book.php:36 views/taxonomy-wpfc_bible_book.php:99 +#: views/taxonomy-wpfc_preacher.php:42 views/taxonomy-wpfc_preacher.php:105 +#: views/taxonomy-wpfc_sermon_series.php:43 +#: views/taxonomy-wpfc_sermon_series.php:106 +#: views/taxonomy-wpfc_sermon_topics.php:43 +#: views/taxonomy-wpfc_sermon_topics.php:106 +#: views/taxonomy-wpfc_service_type.php:36 +#: views/taxonomy-wpfc_service_type.php:99 +msgid "%s Older posts" +msgstr "%s Ältere Einträge" + +#. translators: %s see msgid "→", effectively +#: views/taxonomy-wpfc_bible_book.php:38 +#: views/taxonomy-wpfc_bible_book.php:101 views/taxonomy-wpfc_preacher.php:44 +#: views/taxonomy-wpfc_preacher.php:107 +#: views/taxonomy-wpfc_sermon_series.php:45 +#: views/taxonomy-wpfc_sermon_series.php:108 +#: views/taxonomy-wpfc_sermon_topics.php:45 +#: views/taxonomy-wpfc_sermon_topics.php:108 +#: views/taxonomy-wpfc_service_type.php:38 +#: views/taxonomy-wpfc_service_type.php:101 +msgid "Newer posts %s" +msgstr "Neuere Einträge %s" + +#: views/taxonomy-wpfc_preacher.php:20 +msgid "Sermons by: %s" +msgstr "Predigten von: %s" + +#: views/taxonomy-wpfc_sermon_series.php:20 +msgid "Sermons Series: %s" +msgstr "Predigtserie: %s" + +#: views/taxonomy-wpfc_sermon_topics.php:20 +msgid "Sermons Topic: %s" +msgstr "Predigtthema: %s" + +#: views/taxonomy-wpfc_service_type.php:20 +msgid "Sermons By Service: %s" +msgstr "Predigten nach Dienstart: %s" From 8be80bdcf30e6274134839503533c2a30b1963d1 Mon Sep 17 00:00:00 2001 From: GITNE Date: Sat, 30 Sep 2017 07:34:47 +0200 Subject: [PATCH 08/27] Update pl translations --- languages/sermon-manager-pl_PL.mo | Bin 0 -> 25211 bytes languages/sermon-manager-pl_PL.po | 2687 +++++++++++++++-------------- 2 files changed, 1371 insertions(+), 1316 deletions(-) create mode 100644 languages/sermon-manager-pl_PL.mo diff --git a/languages/sermon-manager-pl_PL.mo b/languages/sermon-manager-pl_PL.mo new file mode 100644 index 0000000000000000000000000000000000000000..d60695a572f23dca39586e8aa4cfcbc46c248407 GIT binary patch literal 25211 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 gn})t{k98=j?h4?ex*M%7uucRhUKBsK&lAD_0|!\n" -"Language-Team: Polish\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" - -#: includes/options.php:34 -msgid "Sermon Manager Settings" -msgstr "Ustawienia Menadżera Kazań" - -#: includes/options.php:34 includes/options.php:50 includes/options.php:423 -#: includes/taxonomy-images/taxonomy-images-old.php:320 -#: includes/taxonomy-images/taxonomy-images.php:317 -#: includes/taxonomy-images/taxonomy-images.php:1164 -msgid "Settings" -msgstr "Ustawienia" - -#: includes/options.php:55 -msgid "Support" -msgstr "Wsparcie" - -#: includes/options.php:64 includes/taxonomy-images/taxonomy-images.php:1187 -msgid "Manage Settings" -msgstr "Zarządzaj ustawieniami" - -#: includes/options.php:110 -msgid "Sermon Manager Options" -msgstr "Opcje Menadżera Kazań" - -#: includes/options.php:113 -msgid "Options saved" -msgstr "Zapisano ustawienia" - -#: includes/options.php:121 -msgid "Need Help?" -msgstr "Potrzebujesz pomocy?" - -#: includes/options.php:123 -msgid "" -"If you need help, please visit WP for Church" -msgstr "" -"Jeśli potrzebujesz pomocy, proszę odwiedź " -"WP for Church" - -#: includes/options.php:136 -msgid "General Settings" -msgstr "Ustawienia ogólne" - -#: includes/options.php:140 -msgid "Archive Page Title" -msgstr "Tytuł strony archiwum" - -#: includes/options.php:147 -msgid "Archive Page Slug" -msgstr "Skrót autorski strony archiwum" - -#: includes/options.php:154 -msgid "" -"Common Base Slug - this is for users who want to have a common base slug " -"across all taxonomies, e.g. sermons/preacher or sermons/series." -msgstr "" -"Wspólna podstawa skrótu autorskiego – dla użytkowników, którzy chcą posiadać " -"wspólną podstawę skrótu autorskiego nad wszystkimi systematykami, np. " -"kazania/kaznodzieja lub kazania/seria." - -#: includes/options.php:156 -msgid "Enable a common base slug across all taxonomies" -msgstr "Włącz wspólną podstawę skrótu autorskiego nad wszystkimi systematykami" - -#: includes/options.php:161 -msgid "" -"Enable Template Files - this is for users upgrading from an older version " -"who have issues with version 1.5+." -msgstr "" -"Włącz obsługę plików szablonowych – przewidziane dla użytkowników, " -"którzy aktualizują z przestarzałych wersji na wersje 1.5 lub wyższe." - -#: includes/options.php:163 -msgid "Enable template files found in the /views folder" -msgstr "Włącz obsługę plików szablonowych w podkatalogu /views" - -#: includes/options.php:168 -msgid "Disable Sermon Styles" -msgstr "Wyłącz style kazań" - -#: includes/options.php:170 -msgid "" -"Disable Sermon CSS. If you do this, you should copy the styles from sermons." -"css and include them in your theme CSS." -msgstr "" -"Wyłącz CSS kazań. Jeśli tego dokonasz, powinieneś skopiować style z " -"sermons.css i scalić z twoim motywem CSS." - -#: includes/options.php:175 -msgid "Display audio player or video on archive pages" -msgstr "Wyświetlaj odtwarzacz audio lub wideo na stronach archiwum" - -#: includes/options.php:177 -msgid "Display an audio player or video embed in the archive listing." -msgstr "Wyświetlaj kod osadzania odtwarzacza audio lub wideo na liście archiwum" - -#: includes/options.php:182 -msgid "Version " -msgstr "Wersja " - -#: includes/options.php:184 -msgid "Current Version" -msgstr "Wersja bieżąca" - -#: includes/options.php:192 -msgid "Verse Settings" -msgstr "Ustawienia wersetów" - -#: includes/options.php:197 -msgid "Verse Popups" -msgstr "Baloniki z wersetami" - -#: includes/options.php:200 -msgid "Disable Bib.ly verse popups" -msgstr "Wyłącz baloniki z wersetami Bib.ly" - -#: includes/options.php:205 -msgid "Select Bible Version for Verse Popups" -msgstr "Wybierz wydanie biblii dla baloników z wersetami" - -#: includes/options.php:213 -msgid "" -"ESV, NET, KJV, or LEB are the currently supported popups for bib.ly." -msgstr "" -"Wyłącznie ESV, NET, KJV i " -"LEB są aktualnie obsługiwane dla baloników z wersetami " -"bib.ly." - -#: includes/options.php:221 -msgid "Podcast Settings" -msgstr "Ustawienia podcastingowe" - -#: includes/options.php:225 -msgid "Title" -msgstr "Tytuł" - -#: includes/options.php:232 includes/types-taxonomies.php:252 -msgid "Description" -msgstr "Opis" - -#: includes/options.php:239 -msgid "Website Link" -msgstr "Odnośnik witryny internetowej" - -#: includes/options.php:246 -msgid "Language" -msgstr "Język" - -#: includes/options.php:253 -msgid "Copyright" -msgstr "Prawa autorskie" - -#: includes/options.php:263 -msgid "Webmaster Name" -msgstr "Nazwa zarządcy witryny internetowej" - -#: includes/options.php:265 -msgid "e.g. Your Name" -msgstr "np. Twoje imię" - -#: includes/options.php:270 -msgid "Webmaster Email" -msgstr "E‑mail zarządcy witryny internetowej" - -#: includes/options.php:277 -msgid "Author" -msgstr "Autor" - -#: includes/options.php:279 -msgid "e.g. Primary Speaker or Church Name" -msgstr "np. mówca lub nazwa kościoła" - -#: includes/options.php:282 -msgid "This will display at the \"Artist\" in the iTunes Store." -msgstr "To będzie wyświetlane jako „Wykonawca” w sklepie iTunes." - -#: includes/options.php:287 -msgid "Subtitle" -msgstr "Podtytuł" - -#: includes/options.php:292 -msgid "" -"Your subtitle should briefly tell the listener what they can expect to hear." -msgstr "" -"Podtytuł powinien w krótki sposób opisywać czego słuchacze mogą się " -"spodziewać." - -#: includes/options.php:297 -msgid "Summary" -msgstr "Streszczenie" - -#: includes/options.php:302 -msgid "" -"Keep your Podcast Summary short, sweet and informative. Be sure to include a " -"brief statement about your mission and in what region your audio content " -"originates." -msgstr "" -"Ogranicz streszczenie podcastu do zachęcających i niezbędnych informacji. " -"Nie zapomnij przedstawić Twojego posłania i regionu z którego nagranie " -"dźwiękowe pochodzi." - -#: includes/options.php:307 -msgid "Owner Name" -msgstr "Nazwa właściciela" - -#: includes/options.php:312 -msgid "This should typically be the name of your Church." -msgstr "Zwykle, jest to nazwa kościoła." - -#: includes/options.php:317 -msgid "Owner Email" -msgstr "E‑mail właściciela" - -#: includes/options.php:322 -msgid "" -"Use an email address that you don't mind being made public. If someone wants " -"to contact you regarding your Podcast this is the address they will use." -msgstr "" -"Używaj w tym celu adresu e‑mail, który jest przeznaczony do " -"korespondencji publicznej. Jeśli ktoś będzie miał zamiar się skontaktować z " -"Tobą w sprawie podcastu, to będzie ten adres na który będą pisać." - -#: includes/options.php:327 -msgid "Cover Image" -msgstr "Obraz okładki" - -#: includes/options.php:337 -msgid "" -"This JPG will serve as the Podcast artwork in the iTunes Store. The image " -"should be 1400px by 1400px" -msgstr "" -"Ten obraz będzie służył jako dzieło rozpoznawcze podcastu w sklepie iTunes. " -"Obraz powinien się mieścić w rozmiarach od 1 400 na 1 400 piksli, do nie " -"więcej niż 3 000 na 3 000 piksli." - -#: includes/options.php:342 -msgid "Top Category" -msgstr "Kategoria naczelna" - -#: includes/options.php:344 -msgid "e.g. Religion & Spirituality" -msgstr "np. Religion & Spirituality" - -#: includes/options.php:347 -msgid "" -"Choose the appropriate top-level category for your Podcast listing in iTunes." -msgstr "" -"Wybierz właściwą kategorię naczelną dla Twojego podcastu w indeksie iTunes." - -#: includes/options.php:352 -msgid "Sub Category" -msgstr "Podkategoria" - -#: includes/options.php:354 -msgid "e.g. Christianity" -msgstr "np. Christianity" - -#: includes/options.php:357 -msgid "Choose the appropriate sub category for your Podcast listing in iTunes." -msgstr "Wybierz właściwą podkategorię dla Twojego podcastu w indeksie iTunes." - -#. translators: Button on the custom administration page. -#: includes/options.php:367 includes/taxonomy-images/taxonomy-images.php:378 -msgid "Save Changes" -msgstr "Zapisz zmiany" - -#: includes/options.php:372 -msgid "Submit to iTunes" -msgstr "Wyślij do iTunes" - -#: includes/options.php:377 -msgid "Podcast Feed URL" -msgstr "URL kanału internetowego podcastu" - -#: includes/options.php:382 -msgid "Use the " -msgstr "Stosuj " - -#: includes/options.php:382 -msgid "Feed Validator" -msgstr "walidatora kanału internetowego" - -#: includes/options.php:382 -msgid "" -" to diagnose and fix any problems before submitting your Podcast to iTunes." -msgstr "" -"do diagnozy i naprawy wszelkich problemów zanim wyślesz podcast do " -"iTunes." - -#: includes/options.php:388 -msgid "" -"Once your Podcast Settings are complete and your Sermons are ready, it's time " -"to " -msgstr "" -"Gdy sfinalizujesz ustawienia podcastingowe i przygotujesz kazania, nadejdzie " -"pora, aby " - -#: includes/options.php:388 -msgid "Submit Your Podcast" -msgstr "wysłać Twój podcast" - -#: includes/options.php:388 -msgid " to the iTunes Store!" -msgstr " do sklepu iTunes!" - -#: includes/options.php:390 -msgid "" -"Alternatively, if you want to track your Podcast subscribers, simply pass the " -"Podcast Feed URL above through " -msgstr "" -"Jeśli chcesz śledzić abonentów Twojego podcastu, po prostu przewlecz powyższy " -"URL kanału internetowego podcastu przez " - -#: includes/options.php:390 -msgid "FeedBurner" -msgstr "" - -#: includes/options.php:390 -msgid ". FeedBurner will then give you a new URL to submit to iTunes instead." -msgstr ". FeedBurner wtedy wyda Ci nowy URL, który w zamian przekażesz iTunes." - -#: includes/options.php:392 -msgid "Please read the " -msgstr "Proszę, zapoznaj się ze " - -#: includes/options.php:392 -msgid "iTunes FAQ for Podcast Makers" -msgstr "zbiorem często zadawanych pytań" - -#: includes/options.php:392 -msgid " for more information." -msgstr " przez twórców podcastów na iTunes." - -#: includes/shortcodes.php:131 includes/template-tags.php:77 -#: views/archive-wpfc_sermon.php:60 views/taxonomy-wpfc_bible_book.php:66 -#: views/taxonomy-wpfc_preacher.php:67 -#: views/taxonomy-wpfc_sermon_series.php:68 -#: views/taxonomy-wpfc_sermon_topics.php:68 -#: views/taxonomy-wpfc_service_type.php:66 -msgid "Permalink to %s" -msgstr "Odnośnik wieczny do „%s”" - -#: includes/taxonomy-images/public-filters-old.php:369 -#: includes/taxonomy-images/public-filters.php:376 -msgid "" -"%1$s is not a property of the current queried object. This usually happens " -"when the %2$s filter is used in an unsupported template file. This filter has " -"been designed to work in taxonomy archives which are traditionally served by " -"one of the following template files: category.php, tag.php or taxonomy.php. " -"Learn more about %3$s." -msgstr "" -"„%1$s” nie jest właściwością bieżąco wyszukiwanego obiektu. To się zdarza, " -"gdy filtr „%2$s” jest stosowany w nie obsługiwanym pliku szablonowym. Filtr " -"ten, został opracowany dla archiwów systematyk, które tradycyjnie są " -"obsługiwane przez jeden z następujących plików szablonowych: " -"category.php, tag.php lub taxonomy.php." -"Dowiedz się więcej na temat „%3$s”." - -#: includes/taxonomy-images/public-filters-old.php:370 -#: includes/taxonomy-images/public-filters.php:377 -msgid "term_taxonomy_id" -msgstr "hasło_systematyka_identyfikator" - -#: includes/taxonomy-images/taxonomy-images-old.php:120 -#: includes/taxonomy-images/taxonomy-images.php:119 -msgid "Associate with %1$s" -msgstr "Powiąż z tym %1$s" - -#: includes/taxonomy-images/taxonomy-images-old.php:120 -#: includes/taxonomy-images/taxonomy-images-old.php:122 -#: includes/taxonomy-images/taxonomy-images.php:119 -#: includes/taxonomy-images/taxonomy-images.php:121 -msgid "this term" -msgstr "hasłem" - -#: includes/taxonomy-images/taxonomy-images-old.php:122 -#: includes/taxonomy-images/taxonomy-images.php:121 -msgid "Remove association with %1$s" -msgstr "Usuń powiązanie z %1$s" - -#. translators: Notice displayed on the custom administration page. -#: includes/taxonomy-images/taxonomy-images-old.php:277 -#: includes/taxonomy-images/taxonomy-images.php:274 -msgid "Image support for taxonomies successfully updated" -msgstr "Uaktualniono obsługę obrazów dla systematyki." - -#. translators: Notice displayed on the custom administration page. -#: includes/taxonomy-images/taxonomy-images-old.php:280 -#: includes/taxonomy-images/taxonomy-images.php:277 -msgid "Image support has been disabled for all taxonomies." -msgstr "Wyłączono obsługę obrazów dla wszystkich systematyk." - -#: includes/taxonomy-images/taxonomy-images-old.php:326 -#: includes/taxonomy-images/taxonomy-images.php:323 -msgid "Taxonomies" -msgstr "Systematyki" - -#. translators: An ajax request has failed for an unknown reason. -#: includes/taxonomy-images/taxonomy-images-old.php:376 -#: includes/taxonomy-images/taxonomy-images.php:425 -msgid "Unknown error encountered" -msgstr "Nastąpił nieznany błąd." - -#: includes/taxonomy-images/taxonomy-images-old.php:450 -#: includes/taxonomy-images/taxonomy-images-old.php:532 -#: includes/taxonomy-images/taxonomy-images.php:501 -#: includes/taxonomy-images/taxonomy-images.php:583 -msgid "tt_id not sent" -msgstr "Nie wysłano tt_id." - -#: includes/taxonomy-images/taxonomy-images-old.php:458 -#: includes/taxonomy-images/taxonomy-images-old.php:540 -#: includes/taxonomy-images/taxonomy-images.php:509 -#: includes/taxonomy-images/taxonomy-images.php:591 -msgid "tt_id is empty" -msgstr "tt_id jest puste." - -#: includes/taxonomy-images/taxonomy-images-old.php:465 -#: includes/taxonomy-images/taxonomy-images-old.php:547 -#: includes/taxonomy-images/taxonomy-images.php:516 -#: includes/taxonomy-images/taxonomy-images.php:598 -msgid "You do not have the correct capability to manage this term" -msgstr "Brak poprawnej możliwości, aby zarządzać tym hasłem." - -#: includes/taxonomy-images/taxonomy-images-old.php:472 -#: includes/taxonomy-images/taxonomy-images.php:523 -msgid "No nonce included." -msgstr "Nie podano wyrazu." - -#: includes/taxonomy-images/taxonomy-images-old.php:479 -#: includes/taxonomy-images/taxonomy-images-old.php:561 -#: includes/taxonomy-images/taxonomy-images.php:530 -#: includes/taxonomy-images/taxonomy-images.php:612 -msgid "Nonce did not match" -msgstr "Wyraz nie pasuje." - -#: includes/taxonomy-images/taxonomy-images-old.php:486 -#: includes/taxonomy-images/taxonomy-images.php:537 -msgid "Image id not sent" -msgstr "Nie wysłano identyfikatora obrazu." - -#: includes/taxonomy-images/taxonomy-images-old.php:494 -#: includes/taxonomy-images/taxonomy-images.php:545 -msgid "Image id is not a positive integer" -msgstr "Identyfikator obrazu nie jest pozytywną liczbą całkowitą." - -#: includes/taxonomy-images/taxonomy-images-old.php:503 -#: includes/taxonomy-images/taxonomy-images.php:554 -msgid "Image successfully associated" -msgstr "Powiązano obraz." - -#: includes/taxonomy-images/taxonomy-images-old.php:510 -#: includes/taxonomy-images/taxonomy-images.php:561 -msgid "Association could not be created" -msgstr "Nie można utworzyć powiązania." - -#: includes/taxonomy-images/taxonomy-images-old.php:554 -#: includes/taxonomy-images/taxonomy-images.php:605 -msgid "No nonce included" -msgstr "Nie podano wyrazu." - -#: includes/taxonomy-images/taxonomy-images-old.php:569 -#: includes/taxonomy-images/taxonomy-images.php:620 -msgid "Nothing to remove" -msgstr "Nic do usunięcia." - -#: includes/taxonomy-images/taxonomy-images-old.php:578 -#: includes/taxonomy-images/taxonomy-images.php:629 -msgid "Association successfully removed" -msgstr "Usunięto powiązanie." - -#: includes/taxonomy-images/taxonomy-images-old.php:584 -#: includes/taxonomy-images/taxonomy-images.php:635 -msgid "Association could not be removed" -msgstr "Nie można usunąć powiązania." - -#: includes/taxonomy-images/taxonomy-images-old.php:654 -#: includes/taxonomy-images/taxonomy-images-old.php:703 -#: includes/taxonomy-images/taxonomy-images.php:705 -#: includes/taxonomy-images/taxonomy-images.php:754 -#: includes/taxonomy-images.php:94 -msgid "Image" -msgstr "Obraz" - -#: includes/taxonomy-images/taxonomy-images-old.php:697 -#: includes/taxonomy-images/taxonomy-images-old.php:733 -#: includes/taxonomy-images/taxonomy-images.php:748 -#: includes/taxonomy-images/taxonomy-images.php:784 -msgid "term" -msgstr "hasło" - -#: includes/taxonomy-images/taxonomy-images-old.php:707 -#: includes/taxonomy-images/taxonomy-images.php:758 -msgid "Associate an image from your media library to this %1$s." -msgstr "Powiąż obraz w galerii mediów z „%1$s”." - -#: includes/taxonomy-images/taxonomy-images-old.php:751 -#: includes/taxonomy-images/taxonomy-images.php:802 -msgid "Associate an image with the %1$s named “%2$s”." -msgstr "Powiąż obraz z „%1$s” o nazwie „%2$s”." - -#: includes/taxonomy-images/taxonomy-images-old.php:752 -#: includes/taxonomy-images/taxonomy-images.php:803 -msgid "Upload a new image for this %s." -msgstr "Załaduj nowy obraz dla „%s”." - -#: includes/taxonomy-images/taxonomy-images-old.php:752 -#: includes/taxonomy-images/taxonomy-images.php:803 -msgid "Upload." -msgstr "Załaduj" - -#: includes/taxonomy-images/taxonomy-images-old.php:753 -#: includes/taxonomy-images/taxonomy-images.php:804 -msgid "Remove image from this %s." -msgstr "Usuń obraz z „%s”." - -#: includes/taxonomy-images/taxonomy-images-old.php:753 -#: includes/taxonomy-images/taxonomy-images.php:804 -msgid "Delete" -msgstr "Usuń" - -#: includes/taxonomy-images/taxonomy-images-old.php:782 -#: includes/taxonomy-images/taxonomy-images.php:833 -msgid "“" -msgstr "„" - -#: includes/taxonomy-images/taxonomy-images-old.php:783 -#: includes/taxonomy-images/taxonomy-images.php:834 -msgid "”" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images-old.php:784 -#: includes/taxonomy-images/taxonomy-images.php:835 -msgid "Associating …" -msgstr "Związywanie…" - -#: includes/taxonomy-images/taxonomy-images-old.php:785 -#: includes/taxonomy-images/taxonomy-images.php:836 -msgid "Successfully Associated" -msgstr "Związano" - -#: includes/taxonomy-images/taxonomy-images-old.php:786 -#: includes/taxonomy-images/taxonomy-images.php:837 -msgid "Removing …" -msgstr "Rozwiązywanie…" - -#: includes/taxonomy-images/taxonomy-images-old.php:787 -#: includes/taxonomy-images/taxonomy-images.php:838 -msgid "Successfully Removed" -msgstr "Rozwiązano" - -#: includes/taxonomy-images/taxonomy-images-old.php:1055 -#: includes/taxonomy-images/taxonomy-images.php:1133 -msgid "The %1$s has been called directly. Please use the %2$s filter instead." -msgstr "Bezpośrednio wywołano %1$s, w zamian proszę zastosuj filtr „%2$s”." - -#: includes/taxonomy-images/taxonomy-images.php:342 -#: includes/taxonomy-images/taxonomy-images.php:343 -msgid "Taxonomy Images" -msgstr "Obrazy systematyki" - -#. translators: Heading of the custom administration page. -#: includes/taxonomy-images/taxonomy-images.php:370 -msgid "Taxonomy Images Plugin Settings" -msgstr "Ustawienia wtyczki obrazów systematyki" - -#: includes/taxonomy-images/taxonomy-images.php:1092 -msgid "" -"The %1$s argument for %2$s is set to %3$s which is not a registered taxonomy. " -"Please check the spelling and update the argument." -msgstr "" -"Ustawienie „%3$s” parametru „%1$s” dla „%2$s” nie jest zarejestrowaną " -"systematyką. Proszę sprawdź jego pisownię i dostosuj parametr." - -#: includes/taxonomy-images/taxonomy-images.php:1093 -msgid "taxonomy" -msgstr "systematyka" - -#: includes/taxonomy-images/taxonomy-images.php:1103 -msgid "No taxonomies have image support. %1$s" -msgstr "Brak systematyki powiązanej z obrazem. %1$s" - -#: includes/taxonomy-images/taxonomy-images.php:1108 -msgid "The %1$s taxonomy does not have image support. %2$s" -msgstr "Systematyce „%1$s” brakuje powiązanego obrazu. %2$s" - -#: includes/taxonomy-images/taxonomy-images.php:1169 -msgid "Donate" -msgstr "Ofiaruj" - -#: includes/taxonomy-images.php:36 -msgid "Photo" -msgstr "Fotografia" - -#: includes/taxonomy-images.php:63 -msgid "Series Graphic" -msgstr "Grafika serii" - -#: includes/template-tags.php:87 includes/template-tags.php:281 -#: includes/template-tags.php:313 -msgid "Bible Text:" -msgstr "Cytat biblijny:" - -#: includes/template-tags.php:89 includes/template-tags.php:283 -#: includes/template-tags.php:315 -msgid "Series:" -msgstr "Seria:" - -#: includes/template-tags.php:102 -msgid "Sort by Preacher" -msgstr "Sortuj według kaznodzieja" - -#: includes/template-tags.php:111 -msgid "Sort by Series" -msgstr "Sortuj według serii" - -#: includes/template-tags.php:120 -msgid "Sort by Topic" -msgstr "Sortuj według tematu" - -#: includes/template-tags.php:129 -msgid "Sort by Book" -msgstr "Sortuj według księgi" - -#: includes/template-tags.php:240 -msgid "Notes" -msgstr "Notatki" - -#: includes/template-tags.php:258 -msgid "Download Files" -msgstr "Pliki do pobrania" - -#: includes/template-tags.php:296 -msgid "Topics: " -msgstr "Tematy: " - -#: includes/types-taxonomies.php:32 includes/types-taxonomies.php:43 -msgctxt "sermon-manager" -msgid "Sermons" -msgstr "Kazania" - -#: includes/types-taxonomies.php:33 -msgctxt "sermon-manager" -msgid "Sermon" -msgstr "Kazanie" - -#: includes/types-taxonomies.php:34 -msgctxt "sermon-manager" -msgid "Add New" -msgstr "Dodaj nowe" - -#: includes/types-taxonomies.php:35 -msgctxt "sermon-manager" -msgid "Add New Sermon" -msgstr "Dodaj nowe kazanie" - -#: includes/types-taxonomies.php:36 -msgctxt "sermon-manager" -msgid "Edit Sermon" -msgstr "Edytuj kazanie" - -#: includes/types-taxonomies.php:37 -msgctxt "sermon-manager" -msgid "New Sermon" -msgstr "Nowe kazanie" - -#: includes/types-taxonomies.php:38 -msgctxt "sermon-manager" -msgid "View Sermon" -msgstr "Podgląd kazania" - -#: includes/types-taxonomies.php:39 -msgctxt "sermon-manager" -msgid "Search Sermons" -msgstr "Wyszukaj kazania" - -#: includes/types-taxonomies.php:40 -msgctxt "sermon-manager" -msgid "No sermons found" -msgstr "Nie znaleziono kazań" - -#: includes/types-taxonomies.php:41 -msgctxt "sermon-manager" -msgid "No sermons found in Trash" -msgstr "Nie znaleziono kazań w koszu" - -#: includes/types-taxonomies.php:69 includes/types-taxonomies.php:71 -msgctxt "sermon-manager" -msgid "Preachers" -msgstr "Kaznodzieje" - -#: includes/types-taxonomies.php:70 -msgctxt "sermon-manager" -msgid "Preacher" -msgstr "Kaznodzieja" - -#: includes/types-taxonomies.php:72 -msgctxt "sermon-manager" -msgid "Search preachers" -msgstr "Wyszukaj kaznodziei" - -#: includes/types-taxonomies.php:73 -msgctxt "sermon-manager" -msgid "Most frequent preachers" -msgstr "Najczęściej występujący kaznodzieje" - -#: includes/types-taxonomies.php:74 -msgctxt "sermon-manager" -msgid "All preachers" -msgstr "Wszyscy kaznodzieje" - -#: includes/types-taxonomies.php:75 -msgctxt "sermon-manager" -msgid "Edit preachers" -msgstr "Edytuj kaznodziei" - -#: includes/types-taxonomies.php:76 -msgctxt "sermon-manager" -msgid "Update preachers" -msgstr "Zaktualizuj kaznodziei" - -#: includes/types-taxonomies.php:77 -msgctxt "sermon-manager" -msgid "Add new preacher" -msgstr "Dodaj nowego kaznodzieja" - -#: includes/types-taxonomies.php:78 -msgctxt "sermon-manager" -msgid "New preacher name" -msgstr "Nowa nazwa kaznodzieja" - -#: includes/types-taxonomies.php:79 -msgctxt "sermon-manager" -msgid "Separate multiple preachers with commas" -msgstr "Przedzielaj kaznodziejów przecinkiem" - -#: includes/types-taxonomies.php:80 -msgctxt "sermon-manager" -msgid "Add or remove preachers" -msgstr "Dodaj lub usuń kaznodziei" - -#: includes/types-taxonomies.php:81 -msgctxt "sermon-manager" -msgid "Choose from most frequent preachers" -msgstr "Wybierz z najczęściej występujących kaznodziei" - -#: includes/types-taxonomies.php:96 includes/types-taxonomies.php:98 -#: includes/types-taxonomies.php:99 -msgctxt "sermon-manager" -msgid "Sermon Series" -msgstr "Seria kazań" - -#: includes/types-taxonomies.php:100 -msgctxt "sermon-manager" -msgid "Search sermon series" -msgstr "Wyszukaj serię kazań" - -#: includes/types-taxonomies.php:101 -msgctxt "sermon-manager" -msgid "Most frequent sermon series" -msgstr "Najczęstsza seria kazań" - -#: includes/types-taxonomies.php:102 -msgctxt "sermon-manager" -msgid "All sermon series" -msgstr "Wszystkie serie kazań" - -#: includes/types-taxonomies.php:103 -msgctxt "sermon-manager" -msgid "Edit sermon series" -msgstr "Edytuj serię kazań" - -#: includes/types-taxonomies.php:104 -msgctxt "sermon-manager" -msgid "Update sermon series" -msgstr "Zaktualizuj serię kazań" - -#: includes/types-taxonomies.php:105 -msgctxt "sermon-manager" -msgid "Add new sermon series" -msgstr "Dodaj nową serię kazań" - -#: includes/types-taxonomies.php:106 -msgctxt "sermon-manager" -msgid "New sermon series name" -msgstr "Nowa nazwa serii kazań" - -#: includes/types-taxonomies.php:107 -msgctxt "sermon-manager" -msgid "Separate sermon series with commas" -msgstr "Przedzielaj serie kazań przecinkiem" - -#: includes/types-taxonomies.php:108 -msgctxt "sermon-manager" -msgid "Add or remove sermon series" -msgstr "Dodaj lub usuń serię kazań" - -#: includes/types-taxonomies.php:109 -msgctxt "sermon-manager" -msgid "Choose from most used sermon series" -msgstr "Wybierz z najczęstszej serii kazań" - -#: includes/types-taxonomies.php:124 includes/types-taxonomies.php:125 -#: includes/types-taxonomies.php:126 -msgctxt "sermon-manager" -msgid "Sermon Topics" -msgstr "Tematy kazania" - -#: includes/types-taxonomies.php:127 -msgctxt "sermon-manager" -msgid "Search sermon topics" -msgstr "Wyszukaj tematy kazania" - -#: includes/types-taxonomies.php:128 -msgctxt "sermon-manager" -msgid "Most popular sermon topics" -msgstr "Najpopularniejsze tematy kazania" - -#: includes/types-taxonomies.php:129 -msgctxt "sermon-manager" -msgid "All sermon topics" -msgstr "Wszystkie tematy kazania" - -#: includes/types-taxonomies.php:130 -msgctxt "sermon-manager" -msgid "Edit sermon topic" -msgstr "Edytuj temat kazania" - -#: includes/types-taxonomies.php:131 -msgctxt "sermon-manager" -msgid "Update sermon topic" -msgstr "Zaktualizuj temat kazania" - -#: includes/types-taxonomies.php:132 -msgctxt "sermon-manager" -msgid "Add new sermon topic" -msgstr "Dodaj nowy temat kazania" - -#: includes/types-taxonomies.php:133 -msgctxt "sermon-manager" -msgid "New sermon topic" -msgstr "Nowy temat kazania" - -#: includes/types-taxonomies.php:134 -msgctxt "sermon-manager" -msgid "Separate sermon topics with commas" -msgstr "Przedzielaj tematy kazania przecinkiem" - -#: includes/types-taxonomies.php:135 -msgctxt "sermon-manager" -msgid "Add or remove sermon topics" -msgstr "Dodaj lub usuń tematy kazania" - -#: includes/types-taxonomies.php:136 -msgctxt "sermon-manager" -msgid "Choose from most used sermon topics" -msgstr "Wybierz z najczęstszych tematów kazania" - -#: includes/types-taxonomies.php:151 includes/types-taxonomies.php:152 -#: includes/types-taxonomies.php:153 -msgctxt "sermon-manager" -msgid "Book of the Bible" -msgstr "Księga biblijna" - -#: includes/types-taxonomies.php:154 -msgctxt "sermon-manager" -msgid "Search books of the Bible" -msgstr "Wyszukaj księgę biblijną" - -#: includes/types-taxonomies.php:155 -msgctxt "sermon-manager" -msgid "Most popular books of the Bible" -msgstr "Najpopularniejsze księgi biblijne" - -#: includes/types-taxonomies.php:156 -msgctxt "sermon-manager" -msgid "All books of the Bible" -msgstr "Wszystkie księgi biblijne" - -#: includes/types-taxonomies.php:157 -msgctxt "sermon-manager" -msgid "Edit book of the Bible" -msgstr "Edytuj księgę biblijną" - -#: includes/types-taxonomies.php:158 -msgctxt "sermon-manager" -msgid "Update book of the Bible" -msgstr "Zaktualizuj księgę biblijną" - -#: includes/types-taxonomies.php:159 -msgctxt "sermon-manager" -msgid "Add new books of the Bible" -msgstr "Dodaj nową księgę biblijną" - -#: includes/types-taxonomies.php:160 -msgctxt "sermon-manager" -msgid "New book of the Bible" -msgstr "Nowa księga biblijna" - -#: includes/types-taxonomies.php:161 -msgctxt "sermon-manager" -msgid "Separate books of the Bible with commas" -msgstr "Przedzielaj księgi biblijne przecinkiem" - -#: includes/types-taxonomies.php:162 -msgctxt "sermon-manager" -msgid "Add or remove books of the Bible" -msgstr "Dodaj lub usuń księgi biblijne" - -#: includes/types-taxonomies.php:163 -msgctxt "sermon-manager" -msgid "Choose from most used books of the Bible" -msgstr "Wybierz z najczęściej używanych ksiąg biblijnych" - -#: includes/types-taxonomies.php:178 includes/types-taxonomies.php:179 -#: includes/types-taxonomies.php:180 -msgctxt "sermon-manager" -msgid "Service Type" -msgstr "Rodzaj usługi" - -#: includes/types-taxonomies.php:181 -msgctxt "sermon-manager" -msgid "Search service types" -msgstr "Wyszukaj rodzaje usługi" - -#: includes/types-taxonomies.php:182 -msgctxt "sermon-manager" -msgid "Most popular service types" -msgstr "Najpopularniejsze rodzaje usługi" - -#: includes/types-taxonomies.php:183 -msgctxt "sermon-manager" -msgid "All service types" -msgstr "Wszystkie rodzaje usługi" - -#: includes/types-taxonomies.php:184 -msgctxt "sermon-manager" -msgid "Edit service type" -msgstr "Edytuj rodzaj usługi" - -#: includes/types-taxonomies.php:185 -msgctxt "sermon-manager" -msgid "Update service type" -msgstr "Zaktualizuj rodzaj usługi" - -#: includes/types-taxonomies.php:186 -msgctxt "sermon-manager" -msgid "Add new service types" -msgstr "Dodaj nowe rodzaje usługi" - -#: includes/types-taxonomies.php:187 -msgctxt "sermon-manager" -msgid "New Service Type" -msgstr "Nowy rodzaj usługi" - -#: includes/types-taxonomies.php:188 -msgctxt "sermon-manager" -msgid "Separate service types with commas" -msgstr "Przedzielaj rodzaje usługi przecinkami" - -#: includes/types-taxonomies.php:189 -msgctxt "sermon-manager" -msgid "Add or remove service types" -msgstr "Dodaj lub usuń rodzaje usługi" - -#: includes/types-taxonomies.php:190 -msgctxt "sermon-manager" -msgid "Choose from most used service types" -msgstr "Wybierz z najczęściej używanych rodzajów usługi" - -#: includes/types-taxonomies.php:226 -msgid "Sermon Details" -msgstr "Szczegóły kazania" - -#: includes/types-taxonomies.php:233 -msgid "Date" -msgstr "Data" - -#: includes/types-taxonomies.php:234 -msgid "" -"Enter the date the sermon was given. NOTE: Each sermon must have a " -"date!" -msgstr "" -"Wprowadź datę wygłoszenia kazania. ZAUWAŻ: Każde kazanie musi " -"zawierać datę!" - -#: includes/types-taxonomies.php:239 -msgid "Service Type" -msgstr "Rodzaj usługi" - -#: includes/types-taxonomies.php:240 -msgid "" -"Select the type of service. Modify service types in Sermons -> Service Types." -msgstr "" -"Wybierz rodzaj usługi. Możesz edytować rodzaje usługi poprzez Kazania → " -"Rodzaj usługi." - -#: includes/types-taxonomies.php:246 -msgid "Main Bible Passage" -msgstr "Główny fragment biblii" - -#: includes/types-taxonomies.php:247 -msgid "Enter the Bible passage with the full book names,e.g. \"John 3:16-18\"." -msgstr "Wprowadź fragment biblii razem z pełnymi nazwami ksiąg, np. „Jana " -"3, 16-18”" - -#: includes/types-taxonomies.php:253 -msgid "" -"Type a brief description about this sermon, an outline, or a full manuscript" -msgstr "" -"Wprowadź krótki opis, zarys lub pełny manuskrypt tego kazania." - -#: includes/types-taxonomies.php:263 -msgid "Sermon Files" -msgstr "Pliki do kazania" - -#: includes/types-taxonomies.php:270 -msgid "Location of MP3" -msgstr "Położenie pliku MP3" - -#: includes/types-taxonomies.php:271 -msgid "Upload an audio file or enter an URL." -msgstr "Załaduj plik dźwiękowy lub wprowadź URL." - -#: includes/types-taxonomies.php:276 -msgid "Video Embed Code" -msgstr "Kod osadzający wideo" - -#: includes/types-taxonomies.php:277 -msgid "Paste your embed code for Vimeo, Youtube, or other service here" -msgstr "Wprowadź tu kod osadzający Twoje wideo z Vimeo, YouTube lub innego " -"serwisu" - -#: includes/types-taxonomies.php:282 -msgid "Sermon Notes" -msgstr "Notatki do kazania" - -#: includes/types-taxonomies.php:283 -msgid "Upload a pdf file or enter an URL." -msgstr "Załaduj plik PDF lub wprowadź URL." - -#: includes/types-taxonomies.php:308 -msgid "Sermon updated. View sermon" -msgstr "Zaktualizowano kazanie. Podgląd kazania" - -#: includes/types-taxonomies.php:309 -msgid "Custom field updated." -msgstr "Zaktualizowano pole indywidualne" - -#: includes/types-taxonomies.php:310 -msgid "Custom field deleted." -msgstr "Usunięto pole indywidualne" - -#: includes/types-taxonomies.php:311 -msgid "Sermon updated." -msgstr "Zaktualizowano kazanie" - -#. translators: %s: date and time of the revision -#: includes/types-taxonomies.php:313 -msgid "Sermon restored to revision from %s" -msgstr "Przywrócono stan kazania z %s" - -#: includes/types-taxonomies.php:314 -msgid "Sermon published. View sermon" -msgstr "Opublikowano kazanie. Podgląd kazania" - -#: includes/types-taxonomies.php:315 -msgid "Sermon saved." -msgstr "Zapisano kazanie." - -#: includes/types-taxonomies.php:316 -msgid "Sermon submitted. Preview sermon" -msgstr "Wysłano kazanie. Podgląd kazania" - -#: includes/types-taxonomies.php:317 -msgid "" -"Sermon scheduled for: %1$s. Preview sermon" -msgstr "" -"Zaplanowano publikację kazania na: %1$s. Podgląd kazania" - -#. translators: Publish box date format, see http:php.net/date -#: includes/types-taxonomies.php:319 -msgid "M j, Y @ G:i" -msgstr "Y-m-d H:i:s" - -#: includes/types-taxonomies.php:320 -msgid "" -"Sermon draft updated. Preview sermon" -msgstr "" -"Zaktualizowano szkic kazania. Podgląd " -"kazania" - -#: includes/types-taxonomies.php:334 -msgid "Things to remember when adding or editing a sermon:" -msgstr "Warto o tym pamiętać w trakcie dodawania i edytowania kazania:" - -#: includes/types-taxonomies.php:336 -msgid "" -"Specify a sermon series if appropriate. This will help your site visitors " -"while browsing sermons." -msgstr "" -"Ustal serię kazań, jeśli to stosowne. To pomoże przeglądać kazania " -"odwiedzającym Twoją witrynę internetową." - -#: includes/types-taxonomies.php:337 -msgid "Specify the correct preacher of the sermon." -msgstr "Podaj prawidłowego kaznodzieja kazania." - -#: includes/types-taxonomies.php:339 -msgid "If you want to schedule the sermon to be published in the future:" -msgstr "Jeśli planujesz opublikować kazanie w przyszłości:" - -#: includes/types-taxonomies.php:341 -msgid "Under the Publish meta box, click on the Edit link next to Publish." -msgstr "W ramce „Publikacja”, kliknij na odnośnik „Edytuj” obok przycisku " -"„Publikuj”." - -#: includes/types-taxonomies.php:342 -msgid "" -"Change the date to the date to actual publish this article, then click on Ok." -msgstr "" -"Zmień datę na datę właściwego opublikowania artykułu i kliknij „OK”." - -#: includes/types-taxonomies.php:344 -msgid "For more help:" -msgstr "Aby otrzymać dalszą pomoc:" - -#: includes/types-taxonomies.php:345 -msgid "" -"Wordpress for Church" -msgstr "" - -#: includes/types-taxonomies.php:348 -msgid "This is the help screen displaying on the sermons page." -msgstr "Oto maska, która jest wyświetlana na stronie z kazaniami." - -#: includes/types-taxonomies.php:360 -msgid "Sermon Title" -msgstr "Tytuł kazania" - -#: includes/types-taxonomies.php:361 -msgid "Preacher" -msgstr "Kaznodzieja" - -#: includes/types-taxonomies.php:362 -msgid "Sermon Series" -msgstr "Seria kazań" - -#: includes/types-taxonomies.php:363 -msgid "Topics" -msgstr "Tematy" - -#: includes/types-taxonomies.php:364 -msgid "Views" -msgstr "Podglądy" - -#: includes/upgrade.php:25 -msgid "Sermon Manager is almost ready." -msgstr "Menadżer Kazań jest prawie gotowy." - -#: includes/upgrade.php:25 -msgid "You must" -msgstr "Musisz" - -#: includes/upgrade.php:25 -msgid "resave your settings for it to function correctly!!!" -msgstr "ponownie zapisać ustawienia, aby zadziałały!" - -#: includes/widgets.php:9 -msgid "The most recent sermons on your site" -msgstr "Najnowsze kazania w witrynie internetowej" - -#: includes/widgets.php:10 includes/widgets.php:32 -msgid "Recent Sermons" -msgstr "Najnowsze kazania" - -#: includes/widgets.php:112 -msgid "Title:" -msgstr "Tytuł:" - -#: includes/widgets.php:115 -msgid "Number of sermons to show:" -msgstr "Ilość kazań do pokazania:" - -#: sermons.php:125 -msgid "Sermon" -msgid_plural "Sermons" -msgstr[0] "kazanie" -msgstr[1] "kazania" -msgstr[2] "kazań" - -#: views/archive-wpfc_sermon.php:26 views/archive-wpfc_sermon.php:81 -#: views/taxonomy-wpfc_bible_book.php:32 views/taxonomy-wpfc_bible_book.php:87 -#: views/taxonomy-wpfc_preacher.php:33 views/taxonomy-wpfc_preacher.php:88 -#: views/taxonomy-wpfc_sermon_series.php:34 -#: views/taxonomy-wpfc_sermon_series.php:89 -#: views/taxonomy-wpfc_sermon_topics.php:34 -#: views/taxonomy-wpfc_sermon_topics.php:89 -#: views/taxonomy-wpfc_service_type.php:32 -#: views/taxonomy-wpfc_service_type.php:87 -msgid " Older posts" -msgstr " Starsze kazania" - -#: views/archive-wpfc_sermon.php:27 views/archive-wpfc_sermon.php:82 -#: views/taxonomy-wpfc_bible_book.php:33 views/taxonomy-wpfc_bible_book.php:88 -#: views/taxonomy-wpfc_preacher.php:34 views/taxonomy-wpfc_preacher.php:89 -#: views/taxonomy-wpfc_sermon_series.php:35 -#: views/taxonomy-wpfc_sermon_series.php:90 -#: views/taxonomy-wpfc_sermon_topics.php:35 -#: views/taxonomy-wpfc_sermon_topics.php:90 -#: views/taxonomy-wpfc_service_type.php:33 -#: views/taxonomy-wpfc_service_type.php:88 -msgid "Newer posts " -msgstr "Nowsze kazania " - -#: views/archive-wpfc_sermon.php:34 views/taxonomy-wpfc_bible_book.php:40 -#: views/taxonomy-wpfc_preacher.php:41 -#: views/taxonomy-wpfc_sermon_series.php:42 -#: views/taxonomy-wpfc_sermon_topics.php:42 -#: views/taxonomy-wpfc_service_type.php:40 -msgid "Not Found" -msgstr "Nie znaleziono" - -#: views/archive-wpfc_sermon.php:36 views/taxonomy-wpfc_bible_book.php:42 -#: views/taxonomy-wpfc_preacher.php:43 -#: views/taxonomy-wpfc_sermon_series.php:44 -#: views/taxonomy-wpfc_sermon_topics.php:44 -#: views/taxonomy-wpfc_service_type.php:42 -msgid "Apologies, but no sermons were found." -msgstr "Przepraszamy, ale nie znaleziono kazań" - -#: views/archive-wpfc_sermon.php:71 views/taxonomy-wpfc_bible_book.php:77 -#: views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -#: views/taxonomy-wpfc_service_type.php:77 -msgid "Leave a comment" -msgstr "Pozostaw komentarz" - -#: views/archive-wpfc_sermon.php:71 views/taxonomy-wpfc_bible_book.php:77 -#: views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -#: views/taxonomy-wpfc_service_type.php:77 -msgid "1 Comment" -msgstr "1 komentarz" - -#: views/archive-wpfc_sermon.php:71 views/taxonomy-wpfc_bible_book.php:77 -#: views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -#: views/taxonomy-wpfc_service_type.php:77 -msgid "% Comments" -msgid_plural "% Comments" -msgstr[0] "% komentarz" -msgstr[1] "% komentarze" -msgstr[2] "% komentarzy" - -#: views/archive-wpfc_sermon.php:72 views/single-wpfc_sermon.php:21 -#: views/taxonomy-wpfc_bible_book.php:78 views/taxonomy-wpfc_preacher.php:79 -#: views/taxonomy-wpfc_sermon_series.php:80 -#: views/taxonomy-wpfc_sermon_topics.php:80 -#: views/taxonomy-wpfc_service_type.php:78 -msgid "Edit" -msgstr "Edytuj" - -#: views/single-wpfc_sermon.php:27 -msgctxt "Previous post link" -msgid "←" -msgstr "" - -#: views/single-wpfc_sermon.php:28 -msgctxt "Next post link" -msgid "→" -msgstr "" - -#: views/taxonomy-wpfc_bible_book.php:18 -msgid "Sermons by Book: %s" -msgstr "Kazania według księgi: %s" - -#: views/taxonomy-wpfc_preacher.php:18 -msgid "Sermons by: %s" -msgstr "Kazania według kaznodzieja: %s" - -#: views/taxonomy-wpfc_sermon_series.php:18 -msgid "Sermons Series: %s" -msgstr "Kazania z serii: %s" - -#: views/taxonomy-wpfc_sermon_topics.php:18 -msgid "Sermons Topic: %s" -msgstr "Tematy kazań: %s" - -#: views/taxonomy-wpfc_service_type.php:18 -msgid "Sermons By Service: %s" -msgstr "Kazania według usługi: %s" - +# Copyright (C) 2017 +# This file is distributed under the same license as the package. +msgid "" +msgstr "" +"Project-Id-Version: Sermon Manager 2.6\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/sermon-manager-for-wordpress\n" +"POT-Creation-Date: 2017-09-30 07:03:00+0200\n" +"PO-Revision-Date: 2017-09-30 07:03:00+0200\n" +"Last-Translator: GITNE \n" +"Language-Team: Polish\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. translators: %s see msgid "View sermon", effectively View sermon +#: includes/admin-functions.php:124 +msgid "Sermon updated. %s" +msgstr "Zaktualizowano kazanie. %s" + +#: includes/admin-functions.php:124 +msgid "View sermon" +msgstr "Podgląd kazania" + +#: includes/admin-functions.php:125 +msgid "Custom field updated." +msgstr "Zaktualizowano pole zindywidualizowane" + +#: includes/admin-functions.php:126 +msgid "Custom field deleted." +msgstr "Usunięto pole zindywidualizowane" + +#: includes/admin-functions.php:127 +msgid "Sermon updated." +msgstr "Zaktualizowano kazanie" + +#: includes/admin-functions.php:129 +msgid "Sermon restored to revision from %s" +msgstr "Przywrócono stan kazania z %s" + +#. translators: %s see msgid "View sermon", effectively View sermon +#: includes/admin-functions.php:130 +msgid "Sermon published. %s" +msgstr "Opublikowano kazanie. %s" + +#: includes/admin-functions.php:131 +msgid "Sermon saved." +msgstr "Zapisano kazanie." + +#: includes/admin-functions.php:132 +msgid "Preview sermon" +msgstr "Podgląd prototypu kazania" + +#. translators: %s see msgid "Preview sermon", effectively Preview sermon +#: includes/admin-functions.php:132 +msgid "Sermon submitted. %s" +msgstr "Wysłano kazanie. %s" + +#. translators: %1$s see msgid "%1$s at %2$s", effectively at +#. translators: %2$s see msgid "Preview sermon", effectively Preview sermon +#: includes/admin-functions.php:133 +msgid "Sermon scheduled for: %1$s. %2$s" +msgstr "Zaplanowano kazanie na %1$s. %2$s" + +#. translators: %1$s date +#. translators: %2$s time +#: includes/admin-functions.php:135 +msgid "%1$s at %2$s" +msgstr "%1$s o godzinie %2$s" + +#. translators: %s see msgid "Preview sermon", effectively Preview sermon +#: includes/admin-functions.php:136 +msgid "Sermon draft updated. %s" +msgstr "Zaktualizowano szkic kazania. %s" + +#: includes/admin-functions.php:189 +msgid "Sermon Title" +msgstr "Tytuł kazania" + +#: includes/admin-functions.php:191 includes/types-taxonomies.php:120 +#: includes/types-taxonomies.php:121 includes/types-taxonomies.php:122 +msgid "Sermon Series" +msgstr "Seria kazań" + +#: includes/admin-functions.php:192 +msgid "Topics" +msgstr "Tematy" + +#: includes/admin-functions.php:193 +msgid "Views" +msgstr "Podglądy" + +#: includes/admin-functions.php:194 includes/types-taxonomies.php:301 +msgid "Date Preached" +msgstr "Data wygłoszenia" + +#: includes/admin-functions.php:195 +msgid "Bible Passage" +msgstr "Fragment biblii" + +#. translators: %s see msgid "Error:" +#: includes/admin-functions.php:212 +msgid "%s Can’t find sermon ID." +msgstr "%s Nie znaleziono identyfikatora kazania." + +#: includes/admin-functions.php:212 +msgid "Error:" +msgstr "Błąd:" + +#: includes/admin-functions.php:306 +msgid "%s sermon" +msgid_plural "%s sermons" +msgstr[0] "%s kazanie" +msgstr[1] "%s kazania" +msgstr[2] "%s kazań" + +#: includes/helper-functions.php:193 includes/template-tags.php:129 +#: includes/template-tags.php:426 includes/template-tags.php:465 +msgid "Series: " +msgstr "Seria: " + +#: includes/options.php:74 +msgid "Sermon Manager Settings" +msgstr "Ustawienia Menadżera Kazań" + +#: includes/options.php:94 includes/options.php:770 +#: includes/taxonomy-images/taxonomy-images.php:333 +#: includes/taxonomy-images/taxonomy-images.php:1238 +msgid "Settings" +msgstr "Ustawienia" + +#: includes/options.php:99 +msgid "Support" +msgstr "Wsparcie" + +#: includes/options.php:108 includes/taxonomy-images/taxonomy-images.php:1263 +msgid "Manage Settings" +msgstr "Zarządzaj ustawieniami" + +#: includes/options.php:197 +msgid "Sermon Manager Options" +msgstr "Opcje Menadżera Kazań" + +#: includes/options.php:203 +msgid "General" +msgstr "Ogólne" + +#: includes/options.php:205 +msgid "Verse" +msgstr "Werset" + +#: includes/options.php:207 +msgid "Podcast" +msgstr "" + +#: includes/options.php:213 +msgid "Options saved" +msgstr "Zapisano ustawienia" + +#: includes/options.php:222 +msgid "Need Some Help?" +msgstr "Potrzebujesz trochę pomocy?" + +#. translators: %s see msgid "Sign up" +#: includes/options.php:224 +msgid "" +"Did you know you can get expert support for only $49 per year! %s today and " +"get support from the developers who are building the Sermon Manager." +msgstr "" +"Czy wiesz, że od ekspertów możesz pozyskać wsparcie techniczne już za " +"tylko $49 rocznie? %s dziś i otrzymuj wsparcie techniczne od twó" +"rców Menadżera Kazań!" + +#: includes/options.php:224 +msgid "Sign up" +msgstr "Zarejestruj się" + +#: includes/options.php:227 +msgid "Free Support" +msgstr "Wsparcie bezpłatne" + +#: includes/options.php:228 +msgid "Priority Support" +msgstr "Wsparcie priorytetowe" + +#: includes/options.php:231 +msgid "We offer limited free support via WordPress.org" +msgstr "Udzielamy ograniczonego bezpłatnego wsparcia w ramach WordPress.org." + +#: includes/options.php:238 +msgid "Frequently Asked Questions" +msgstr "Często zadawane pytania" + +#. translators: %s see msgid "Knowledge base" +#: includes/options.php:253 +msgid "Find out more in our %s" +msgstr "Dowiedz się więcej z naszej %s" + +#: includes/options.php:253 +msgid "knowledge base" +msgstr "bazy wiedzy" + +#: includes/options.php:259 +msgid "Lets Make It Even Better!" +msgstr "Ulepszmy to razem!" + +#: includes/options.php:264 +msgid "Submit Your Idea" +msgstr "Wyślij Twój pomysł" + +#: includes/options.php:267 +msgid "" +"If you have ideas on how to make Sermon Manager or any of our products " +"better, let us know!" +msgstr "" +"Jeśli masz pomysły na ulepszenie Menadżera Kazań lub naszych innych " +"produktów, to daj nam znać!" + +#: includes/options.php:277 +msgid "General Settings" +msgstr "Ustawienia ogólne" + +#: includes/options.php:281 +msgid "Archive Page Title" +msgstr "Tytuł strony archiwum" + +#: includes/options.php:289 +msgid "Archive Page Slug" +msgstr "Uproszczona nazwa strony archiwum" + +#. translators: %1$s see msgid "sermons/preacher", effectively sermons/preacher +#. translators: %2$s see msgid "sermons/series", effectively sermons/series +#: includes/options.php:297 +msgid "" +"Common Base Slug — this is for users who want to have a common base " +"slug across all taxonomies, e.g. %1$s or %2$s." +msgstr "" +"Wspólna podstawa uproszczonej nazwy — dla użytkowników, " +"którzy chcą posiadać wspólną podstawową uproszczoną nazwę nad " +"wszystkimi systematykami, np. %1$s lub %2$s." + +#: includes/options.php:297 +msgid "sermons/preacher" +msgstr "kazania/kaznodzieja" + +#: includes/options.php:297 +msgid "sermons/series" +msgstr "kazania/seria" + +#: includes/options.php:302 +msgid "Enable a common base slug across all taxonomies" +msgstr "" +"Włącz wspólną podstawową uproszczoną nazwę nad wszystkimi " +"systematykami" + +#: includes/options.php:308 +msgid "" +"Enable Template Files — this is for users upgrading from an older " +"version who have issues with version 1.5+." +msgstr "" +"Włącz obsługę plików szablonowych — przewidziane dla " +"użytkowników, którzy aktualizują z przestarzałych wersji na " +"wersje 1.5 lub wyższe." + +#. translators: %s effectively /views +#. Since /views is a locale independent folder name it MUST NOT be localized +#: includes/options.php:313 +msgid "Enable template files found in the %s folder" +msgstr "Włącz obsługę plików szablonowych w podkatalogu %s" + +#: includes/options.php:319 +msgid "Disable Sermon Styles" +msgstr "Wyłącz style kazań" + +#. translators: %s effectively sermons.css +#. Since sermons.css is a locale independent file name it MUST NOT be localized +#: includes/options.php:324 +msgid "" +"Disable Sermon CSS. If you do this, you should copy the styles from %s and " +"include them in your theme CSS." +msgstr "" +"Wyłącz CSS kazań. Jeśli tego dokonasz, powinieneś skopiować style z %s i " +"scalić je z Twoim motywem CSS." + +#: includes/options.php:338 +msgid "Display audio player or video on archive pages" +msgstr "Wyświetlaj odtwarzacz audio lub wideo na stronach archiwum" + +#: includes/options.php:343 +msgid "Display an audio player or video embed in the archive listing." +msgstr "" +"Wyświetlaj kod osadzania odtwarzacza audio lub wideo na liście archiwum" + +#: includes/options.php:349 includes/options.php:354 +msgid "Use old audio player" +msgstr "Używaj starego odtwarzacza dźwięku" + +#: includes/options.php:352 +msgid "" +"Custom label for “Preacher”. Note: it will also change preacher " +"slugs." +msgstr "" +"Zindywidualizowana oznaka „Kaznodzieja”. Zauważ: To ró" +"wnież zmieni uproszczone nazwy kaznodziei" + +#: includes/options.php:360 +msgid "Sermon date format (used when creating a new Sermon)" +msgstr "" +"Format daty wygłoszenia kazania (potrzebne w trakcie tworzenia nowego " +"kazania)" + +#: includes/options.php:389 includes/options.php:395 +msgid "Show key verse in widget" +msgstr "Wyświetlaj werset kluczowy w widgetcie" + +#: includes/options.php:393 +msgid "Version %s" +msgstr "Wersja %s" + +#: includes/options.php:406 +msgid "Current Version" +msgstr "Wersja bieżąca" + +#: includes/options.php:414 +msgid "Verse Settings" +msgstr "Ustawienia wersetów" + +#: includes/options.php:419 +msgid "Verse Popups" +msgstr "Baloniki z wersetami" + +#: includes/options.php:425 +msgid "Disable Bib.ly verse popups" +msgstr "Wyłącz baloniki z wersetami Bib.ly" + +#: includes/options.php:431 +msgid "Select Bible Version for Verse Popups" +msgstr "Wybierz wydanie biblii dla baloników z wersetami" + +#. translators: %1$s effectively ESV +#. translators: %2$s effectively NET +#. translators: %3$s effectively KJV +#. translators: %4$s effectively LEB +#. translators: %5$s see msgid "bib.ly", effectively bib.ly +#: includes/options.php:444 +msgid "%1$s, %2$s, %3$s, or %4$s are the currently supported popups for %5$s." +msgstr "" +"Wyłącznie %1$s, %2$s, %3$s i %4$s są aktualnie obsługiwane dla " +"baloników z wersetami %5$s." + +#: includes/options.php:449 +msgid "bib.ly" +msgstr "" + +#. translators: %s see effectively ESV +#: includes/options.php:451 +msgid "Warning! %s is not supported if your site uses SSL (HTTPS)." +msgstr "" +"UWAGA: W witrynach internetowych korzystających z SSL (HTTPS) %s nie jest " +"obsługiwane." + +#: includes/options.php:464 +msgid "Podcast Settings" +msgstr "Ustawienia podcastingowe" + +#: includes/options.php:486 +msgid "Title" +msgstr "Tytuł" + +#: includes/options.php:490 includes/options.php:500 includes/options.php:510 +#: includes/options.php:520 includes/options.php:555 includes/options.php:603 +#: includes/options.php:616 +msgid "e.g. %s" +msgstr "np. %s" + +#: includes/options.php:496 includes/types-taxonomies.php:323 +msgid "Description" +msgstr "Opis" + +#: includes/options.php:506 +msgid "Website Link" +msgstr "Odnośnik witryny internetowej" + +#: includes/options.php:516 +msgid "Language" +msgstr "Język" + +#: includes/options.php:526 +msgid "Copyright" +msgstr "Prawa autorskie" + +#: includes/options.php:530 +msgid "e.g. Copyright © %s" +msgstr "np. Copyright © %s" + +#. translators: %s &copy; +#: includes/options.php:535 +msgid "Tip: Use %s to generate a copyright symbol." +msgstr "Wskazówka: Stosuj %s, aby wygenerować symbol copyright." + +#: includes/options.php:541 +msgid "Webmaster Name" +msgstr "Nazwa zarządcy witryny internetowej" + +#: includes/options.php:545 +msgid "e.g. Your Name" +msgstr "np. Twoje imię" + +#: includes/options.php:551 +msgid "Webmaster Email" +msgstr "E‑mail zarządcy witryny internetowej" + +#: includes/options.php:561 +msgid "Author" +msgstr "Autor" + +#: includes/options.php:565 +msgid "e.g. Primary Speaker or Church Name" +msgstr "np. mówca lub nazwa kościoła" + +#: includes/options.php:569 +msgid "This will display at the “Artist” in the iTunes Store." +msgstr "To będzie wyświetlane jako „Wykonawca” w sklepie iTunes." + +#: includes/options.php:574 +msgid "Subtitle" +msgstr "Podtytuł" + +#: includes/options.php:578 +msgid "e.g. Preaching and teaching audio from %s" +msgstr "np. słuchowisko kazań i nauczań z %s" + +#: includes/options.php:582 +msgid "" +"Your subtitle should briefly tell the listener what they can expect to hear." +msgstr "" +"Podtytuł powinien w krótki sposób opisywać czego słuchacze " +"mogą się spodziewać." + +#: includes/options.php:587 +msgid "Summary" +msgstr "Streszczenie" + +#: includes/options.php:591 +msgid "e.g. Weekly teaching audio brought to you by %s in City, State." +msgstr "" +"np. tygodniowe słuchowiska nauczań, produkowane przez %s w miasto, " +"województwo." + +#: includes/options.php:594 +msgid "" +"Keep your Podcast Summary short, sweet and informative. Be sure to include a " +"brief statement about your mission and in what region your audio content " +"originates." +msgstr "" +"Ogranicz streszczenie podcastu do zachęcających i niezbędnych informacji. " +"Nie zapomnij przedstawić Twojego posłania i regionu z którego " +"słuchowisko pochodzi." + +#: includes/options.php:599 +msgid "Owner Name" +msgstr "Nazwa właściciela" + +#: includes/options.php:607 +msgid "This should typically be the name of your Church." +msgstr "Zwykle, jest to nazwa kościoła." + +#: includes/options.php:612 +msgid "Owner Email" +msgstr "E‑mail właściciela" + +#: includes/options.php:620 +msgid "" +"Use an email address that you don’t mind being made public. If someone " +"wants to contact you regarding your Podcast this is the address they will " +"use." +msgstr "" +"Używaj w tym celu adresu e‑mail, który jest przeznaczony do " +"korespondencji publicznej. Jeśli ktoś będzie miał zamiar się skontaktować z " +"Tobą w sprawie podcastu, to będzie ten adres na który będą pisać." + +#: includes/options.php:625 +msgid "Cover Image" +msgstr "Obraz okładki" + +#: includes/options.php:632 +msgid "Upload Image" +msgstr "Załaduj obraz" + +#: includes/options.php:635 +msgid "" +"This JPG will serve as the Podcast artwork in the iTunes Store. The image " +"must be between 1,400px by 1,400px and 3,000px by 3,000px or else iTunes " +"will not accept your feed." +msgstr "" +"Ten obraz będzie służył jako dzieło rozpoznawcze podcastu w sklepie iTunes. " +"Obraz musi się mieścić w rozmiarach od 1 400 na 1 400 piksli, do nie więcej " +"niż 3 000 na 3 000 piksli." + +#: includes/options.php:640 +msgid "Top Category" +msgstr "Kategoria naczelna" + +#: includes/options.php:648 +msgid "" +"Choose the appropriate top-level category for your Podcast listing in iTunes." +msgstr "" +"Wybierz właściwą kategorię naczelną dla Twojego podcastu w indeksie iTunes." + +#: includes/options.php:653 +msgid "Sub Category" +msgstr "Podkategoria" + +#: includes/options.php:661 +msgid "Choose the appropriate sub category for your Podcast listing in iTunes." +msgstr "Wybierz właściwą podkategorię dla Twojego podcastu w indeksie iTunes." + +#: includes/options.php:666 +msgid "PodTrac Tracking" +msgstr "Śledzenie PodTrac‑iem" + +#: includes/options.php:671 +msgid "Enables PodTrac tracking." +msgstr "Włącza śledzenie PodTrac‑iem" + +#. translators: %s podtrac.com +#: includes/options.php:675 +msgid "For more info on PodTrac or to sign up for an account, visit %s" +msgstr "" +"Aby otrzymać więcej informacji o PodTrac‑u lub zarejestrować konto, " +"odwiedź %s." + +#: includes/options.php:680 +msgid "HTML in description" +msgstr "Obsługa HTML w opisie" + +#: includes/options.php:686 +msgid "Enable HTML description" +msgstr "Włącz obsługę HTML w opisie" + +#: includes/options.php:690 +msgid "" +"Enables showing of HTML in iTunes description field. Uncheck if description " +"looks messy." +msgstr "" +"Włącza obsługę HTML w polu „opis” wyświetlane w iTunes. Odhacz, " +"jeśli opis wygląda zaburzony." + +#: includes/options.php:695 +msgid "Number of podcasts to show" +msgstr "Ilość pozycji w podcast‑cie" + +#: includes/options.php:704 +msgid "" +"Shows custom podcast count. If not defined, it uses WordPress default count." +msgstr "" +"Wyświetla określoną ilość pozycji w podcast‑cie. Jeśli ilość " +"pozostanie niezdefiniowana, stosowana będzie domyślna ilość WordPressa." + +#: includes/options.php:715 +msgid "Feed URL to Submit to iTunes" +msgstr "URL kanału internetowego podcastu do przekazania iTunes" + +#: includes/options.php:722 +msgid "Feed Validator" +msgstr "walidatora kanału internetowego" + +#. translators: %s Feed Validator link, see msgid "Feed Validator" +#: includes/options.php:722 +msgid "" +"Use the %s to diagnose and fix any problems before submitting your Podcast " +"to iTunes." +msgstr "" +"Stosuj %s do diagnozy i naprawy wszelkich problemów zanim wyślesz " +"podcast do iTunes." + +#. translators: %s see msgid "Submit Your Podcast" +#: includes/options.php:725 +msgid "" +"Once your Podcast Settings are complete and your Sermons are ready, it’" +"s time to %s to the iTunes Store!" +msgstr "" +"Gdy sfinalizujesz ustawienia podcastingowe i przygotujesz kazania, nadejdzie " +"pora, aby %s do sklepu iTunes!" + +#: includes/options.php:725 +msgid "Submit Your Podcast" +msgstr "wysłać Twój podcast" + +#. translators: %s see msgid "FeedBurner" +#: includes/options.php:727 +msgid "" +"Alternatively, if you want to track your Podcast subscribers, simply pass " +"the Podcast Feed URL above through %s. FeedBurner will then give you a new " +"URL to submit to iTunes instead." +msgstr "" +"Jeśli chcesz śledzić abonentów Twojego podcastu, po prostu przewlecz " +"powyższy URL kanału internetowego podcastu przez %s. FeedBurner wtedy wyda " +"Ci nowy URL, który w zamian przekażesz iTunes." + +#: includes/options.php:727 +msgid "FeedBurner" +msgstr "" + +#. translators: %s see msgid "iTunes FAQ for Podcast Makers" +#: includes/options.php:730 +msgid "Please read the %s for more information." +msgstr "Proszę, zapoznaj się ze %s." + +#: includes/options.php:730 +msgid "iTunes FAQ for Podcast Makers" +msgstr "" +"zbiorem często zadawanych pytań dla twórców podcastów " +"na iTunes" + +#: includes/options.php:751 includes/taxonomy-images/taxonomy-images.php:395 +msgid "Save Changes" +msgstr "Zapisz zmiany" + +#: includes/shortcodes.php:781 includes/template-tags.php:114 +#: views/archive-wpfc_sermon.php:40 views/taxonomy-wpfc_bible_book.php:72 +#: views/taxonomy-wpfc_preacher.php:78 +#: views/taxonomy-wpfc_sermon_series.php:79 +#: views/taxonomy-wpfc_sermon_topics.php:79 +#: views/taxonomy-wpfc_service_type.php:72 +msgid "Permalink to %s" +msgstr "Odnośnik wieczny do „%s”" + +#: includes/taxonomy-images/public-filters.php:385 +msgid "" +"%1$s is not a property of the current queried object. This usually happens " +"when the %2$s filter is used in an unsupported template file. This filter " +"has been designed to work in taxonomy archives which are traditionally " +"served by one of the following template files: category.php, tag.php or " +"taxonomy.php. Learn more about %3$s." +msgstr "" +"„%1$s” nie jest właściwością bieżąco wyszukiwanego obiektu. To " +"się zdarza, gdy filtr „%2$s” jest stosowany w nie obsługiwanym " +"pliku szablonowym. Filtr ten, został opracowany dla archiwów " +"systematyk, które tradycyjnie są obsługiwane przez jeden z " +"następujących plików szablonowych: category.php, " +"tag.php lub taxonomy.php. Dowiedz się więcej na " +"temat „%3$s”." + +#: includes/taxonomy-images/public-filters.php:386 +msgid "term_taxonomy_id" +msgstr "hasło_systematyka_identyfikator" + +#: includes/taxonomy-images/taxonomy-images.php:130 +msgid "Associate with %1$s" +msgstr "Powiąż z tym %1$s" + +#: includes/taxonomy-images/taxonomy-images.php:130 +#: includes/taxonomy-images/taxonomy-images.php:131 +msgid "this term" +msgstr "hasłem" + +#: includes/taxonomy-images/taxonomy-images.php:131 +msgid "Remove association with %1$s" +msgstr "Usuń powiązanie z %1$s" + +#: includes/taxonomy-images/taxonomy-images.php:290 +msgid "Image support for taxonomies successfully updated" +msgstr "Uaktualniono obsługę obrazów dla systematyki." + +#: includes/taxonomy-images/taxonomy-images.php:293 +msgid "Image support has been disabled for all taxonomies." +msgstr "Wyłączono obsługę obrazów dla wszystkich systematyk." + +#: includes/taxonomy-images/taxonomy-images.php:339 +msgid "Taxonomies" +msgstr "Systematyki" + +#: includes/taxonomy-images/taxonomy-images.php:359 +#: includes/taxonomy-images/taxonomy-images.php:360 +msgid "Taxonomy Images" +msgstr "Obrazy systematyki" + +#: includes/taxonomy-images/taxonomy-images.php:387 +msgid "Taxonomy Images Plugin Settings" +msgstr "Ustawienia wtyczki obrazów systematyki" + +#: includes/taxonomy-images/taxonomy-images.php:447 +msgid "Unknown error encountered" +msgstr "Nastąpił nieznany błąd." + +#: includes/taxonomy-images/taxonomy-images.php:529 +#: includes/taxonomy-images/taxonomy-images.php:611 +msgid "tt_id not sent" +msgstr "Nie wysłano tt_id." + +#: includes/taxonomy-images/taxonomy-images.php:537 +#: includes/taxonomy-images/taxonomy-images.php:619 +msgid "tt_id is empty" +msgstr "tt_id jest puste." + +#: includes/taxonomy-images/taxonomy-images.php:544 +#: includes/taxonomy-images/taxonomy-images.php:626 +msgid "You do not have the correct capability to manage this term" +msgstr "Brak poprawnej możliwości, aby zarządzać tym hasłem." + +#: includes/taxonomy-images/taxonomy-images.php:551 +#: includes/taxonomy-images/taxonomy-images.php:633 +msgid "No nonce included." +msgstr "Nie podano wyrazu." + +#: includes/taxonomy-images/taxonomy-images.php:558 +#: includes/taxonomy-images/taxonomy-images.php:640 +msgid "Nonce did not match" +msgstr "Wyraz nie pasuje." + +#: includes/taxonomy-images/taxonomy-images.php:565 +msgid "Image id not sent" +msgstr "Nie wysłano identyfikatora obrazu." + +#: includes/taxonomy-images/taxonomy-images.php:573 +msgid "Image id is not a positive integer" +msgstr "Identyfikator obrazu nie jest pozytywną liczbą całkowitą." + +#: includes/taxonomy-images/taxonomy-images.php:582 +msgid "Image successfully associated" +msgstr "Powiązano obraz." + +#: includes/taxonomy-images/taxonomy-images.php:588 +msgid "Association could not be created" +msgstr "Nie można utworzyć powiązania." + +#: includes/taxonomy-images/taxonomy-images.php:648 +msgid "Nothing to remove" +msgstr "Nic do usunięcia." + +#: includes/taxonomy-images/taxonomy-images.php:657 +msgid "Association successfully removed" +msgstr "Usunięto powiązanie." + +#: includes/taxonomy-images/taxonomy-images.php:662 +msgid "Association could not be removed" +msgstr "Nie można usunąć powiązania." + +#: includes/taxonomy-images/taxonomy-images.php:739 +#: includes/taxonomy-images/taxonomy-images.php:793 +msgid "Image" +msgstr "Obraz" + +#: includes/taxonomy-images/taxonomy-images.php:786 +#: includes/taxonomy-images/taxonomy-images.php:823 +msgid "term" +msgstr "hasło" + +#: includes/taxonomy-images/taxonomy-images.php:797 +msgid "Associate an image from your media library to this %1$s." +msgstr "Powiąż obraz w galerii mediów z „%1$s”." + +#: includes/taxonomy-images/taxonomy-images.php:846 +msgid "Associate an image with the %1$s named “%2$s”." +msgstr "Powiąż obraz z „%1$s” o nazwie „%2$s”." + +#: includes/taxonomy-images/taxonomy-images.php:847 +msgid "Upload a new image for this %s." +msgstr "Załaduj nowy obraz dla „%s”." + +#: includes/taxonomy-images/taxonomy-images.php:847 +msgid "Upload." +msgstr "Załaduj" + +#: includes/taxonomy-images/taxonomy-images.php:848 +msgid "Delete" +msgstr "Usuń" + +#: includes/taxonomy-images/taxonomy-images.php:848 +msgid "Remove image from this %s." +msgstr "Usuń obraz z „%s”." + +#: includes/taxonomy-images/taxonomy-images.php:882 +msgid "“" +msgstr "„" + +#: includes/taxonomy-images/taxonomy-images.php:883 +msgid "”" +msgstr "&#rdquo;" + +#: includes/taxonomy-images/taxonomy-images.php:884 +msgid "Associating …" +msgstr "Związywanie…" + +#: includes/taxonomy-images/taxonomy-images.php:885 +msgid "Successfully Associated" +msgstr "Związano" + +#: includes/taxonomy-images/taxonomy-images.php:886 +msgid "Removing …" +msgstr "Rozwiązywanie…" + +#: includes/taxonomy-images/taxonomy-images.php:887 +msgid "Successfully Removed" +msgstr "Rozwiązano" + +#: includes/taxonomy-images/taxonomy-images.php:1162 +msgid "" +"The %1$s argument for %2$s is set to %3$s which is not a registered " +"taxonomy. Please check the spelling and update the argument." +msgstr "" +"Ustawienie „%3$s” parametru „%1$s” dla „" +"%2$s” nie jest zarejestrowaną systematyką. Proszę sprawdź jego " +"pisownię i dostosuj parametr." + +#: includes/taxonomy-images/taxonomy-images.php:1163 +msgid "taxonomy" +msgstr "systematyka" + +#: includes/taxonomy-images/taxonomy-images.php:1174 +msgid "No taxonomies have image support. %1$s" +msgstr "Brak systematyki powiązanej z obrazem. %1$s" + +#: includes/taxonomy-images/taxonomy-images.php:1180 +msgid "The %1$s taxonomy does not have image support. %2$s" +msgstr "Systematyce „%1$s” brakuje powiązanego obrazu. %2$s" + +#: includes/taxonomy-images/taxonomy-images.php:1206 +msgid "The %1$s has been called directly. Please use the %2$s filter instead." +msgstr "" +"Bezpośrednio wywołano %1$s, w zamian proszę zastosuj filtr „" +"%2$s”." + +#: includes/taxonomy-images/taxonomy-images.php:1243 +msgid "Donate" +msgstr "Ofiaruj" + +#. translators: %s see msgid "Preacher" +#: includes/taxonomy-images/taxonomy-images.php:1302 +#: includes/taxonomy-images/taxonomy-images.php:1303 +msgid "Set %s’s image" +msgstr "Ustaw obraz %s" + +#: includes/taxonomy-images/taxonomy-images.php:1304 +#: includes/taxonomy-images/taxonomy-images.php:1305 +msgid "Set Series image" +msgstr "Ustaw obraz serii" + +#: includes/template-tags.php:127 includes/template-tags.php:424 +#: includes/template-tags.php:463 includes/widgets.php:96 +msgid "Bible Text: " +msgstr "Cytat biblijny: " + +#: includes/template-tags.php:389 +msgid "Download Files" +msgstr "Pliki do pobrania" + +#: includes/template-tags.php:391 +msgid "MP3" +msgstr "" + +#: includes/template-tags.php:394 +msgid "Notes" +msgstr "Notatki" + +#: includes/template-tags.php:397 includes/types-taxonomies.php:378 +msgid "Bulletin" +msgstr "Biuletyn" + +#: includes/template-tags.php:439 +msgid "Sermon Topics: " +msgstr "Tematy kazania: " + +#: includes/types-taxonomies.php:58 includes/types-taxonomies.php:68 +msgid "Sermons" +msgstr "Kazania" + +#: includes/types-taxonomies.php:59 +msgid "Sermon" +msgstr "Kazanie" + +#: includes/types-taxonomies.php:60 +msgid "Add New" +msgstr "Dodaj nowe" + +#: includes/types-taxonomies.php:61 +msgid "Add New Sermon" +msgstr "Dodaj nowe kazanie" + +#: includes/types-taxonomies.php:62 +msgid "Edit Sermon" +msgstr "Edytuj kazanie" + +#: includes/types-taxonomies.php:63 +msgid "New Sermon" +msgstr "Nowe kazanie" + +#: includes/types-taxonomies.php:64 +msgid "View Sermon" +msgstr "Podgląd kazania" + +#: includes/types-taxonomies.php:65 +msgid "Search Sermons" +msgstr "Wyszukaj kazania" + +#: includes/types-taxonomies.php:66 +msgid "No sermons found" +msgstr "Nie znaleziono kazań" + +#: includes/types-taxonomies.php:67 +msgid "No sermons found in Trash" +msgstr "Nie znaleziono kazań w koszu" + +#: includes/types-taxonomies.php:93 includes/types-taxonomies.php:95 +msgid "Preachers" +msgstr "Kaznodzieje" + +#: includes/types-taxonomies.php:94 includes/types-taxonomies.php:96 +#: includes/types-taxonomies.php:97 includes/types-taxonomies.php:98 +#: includes/types-taxonomies.php:99 includes/types-taxonomies.php:100 +#: includes/types-taxonomies.php:101 includes/types-taxonomies.php:102 +#: includes/types-taxonomies.php:103 includes/types-taxonomies.php:104 +#: includes/types-taxonomies.php:105 +msgid "Preacher" +msgstr "Kaznodzieja" + +#: includes/types-taxonomies.php:96 +msgid "Search %s" +msgstr "Wyszukaj %s" + +#: includes/types-taxonomies.php:97 +msgid "Most frequent %s" +msgstr "Najczęstszy/a %s" + +#: includes/types-taxonomies.php:98 +msgid "All %s" +msgstr "Wszyscy/tkie %s" + +#: includes/types-taxonomies.php:99 +msgid "Edit %s" +msgstr "Edytuj %s" + +#: includes/types-taxonomies.php:100 +msgid "Update %s" +msgstr "Zaktualizuj %s" + +#: includes/types-taxonomies.php:101 +msgid "Add new %s" +msgstr "Dodaj nowego/ą %s" + +#: includes/types-taxonomies.php:102 +msgid "New %s" +msgstr "Nowy/a %s" + +#: includes/types-taxonomies.php:103 +msgid "Separate multiple %s with commas" +msgstr "Przedzielaj %s przecinkiem" + +#: includes/types-taxonomies.php:104 +msgid "Add or remove %s" +msgstr "Dodaj lub usuń %s" + +#: includes/types-taxonomies.php:105 +msgid "Choose from most frequent %s" +msgstr "Wybierz z najczęstszych %s" + +#: includes/types-taxonomies.php:123 +msgid "Search sermon series" +msgstr "Wyszukaj serię kazań" + +#: includes/types-taxonomies.php:124 +msgid "Most frequent sermon series" +msgstr "Najczęstsza seria kazań" + +#: includes/types-taxonomies.php:125 +msgid "All sermon series" +msgstr "Wszystkie serie kazań" + +#: includes/types-taxonomies.php:126 +msgid "Edit sermon series" +msgstr "Edytuj serię kazań" + +#: includes/types-taxonomies.php:127 +msgid "Update sermon series" +msgstr "Zaktualizuj serię kazań" + +#: includes/types-taxonomies.php:128 +msgid "Add new sermon series" +msgstr "Dodaj nową serię kazań" + +#: includes/types-taxonomies.php:129 +msgid "New sermon series name" +msgstr "Nowa nazwa serii kazań" + +#: includes/types-taxonomies.php:130 +msgid "Separate sermon series with commas" +msgstr "Przedzielaj serie kazań przecinkiem" + +#: includes/types-taxonomies.php:131 +msgid "Add or remove sermon series" +msgstr "Dodaj lub usuń serię kazań" + +#: includes/types-taxonomies.php:132 +msgid "Choose from most used sermon series" +msgstr "Wybierz z najczęstszej serii kazań" + +#: includes/types-taxonomies.php:147 includes/types-taxonomies.php:148 +#: includes/types-taxonomies.php:149 +msgid "Sermon Topics" +msgstr "Tematy kazania" + +#: includes/types-taxonomies.php:150 +msgid "Search sermon topics" +msgstr "Wyszukaj tematy kazania" + +#: includes/types-taxonomies.php:151 +msgid "Most popular sermon topics" +msgstr "Najpopularniejsze tematy kazania" + +#: includes/types-taxonomies.php:152 +msgid "All sermon topics" +msgstr "Wszystkie tematy kazania" + +#: includes/types-taxonomies.php:153 +msgid "Edit sermon topic" +msgstr "Edytuj temat kazania" + +#: includes/types-taxonomies.php:154 +msgid "Update sermon topic" +msgstr "Zaktualizuj temat kazania" + +#: includes/types-taxonomies.php:155 +msgid "Add new sermon topic" +msgstr "Dodaj nowy temat kazania" + +#: includes/types-taxonomies.php:156 +msgid "New sermon topic" +msgstr "Nowy temat kazania" + +#: includes/types-taxonomies.php:157 +msgid "Separate sermon topics with commas" +msgstr "Przedzielaj tematy kazania przecinkiem" + +#: includes/types-taxonomies.php:158 +msgid "Add or remove sermon topics" +msgstr "Dodaj lub usuń tematy kazania" + +#: includes/types-taxonomies.php:159 +msgid "Choose from most used sermon topics" +msgstr "Wybierz z najczęstszych tematów kazania" + +#: includes/types-taxonomies.php:174 includes/types-taxonomies.php:175 +#: includes/types-taxonomies.php:176 +msgid "Book of the Bible" +msgstr "Księga biblijna" + +#: includes/types-taxonomies.php:177 +msgid "Search books of the Bible" +msgstr "Wyszukaj księgę biblijną" + +#: includes/types-taxonomies.php:178 +msgid "Most popular books of the Bible" +msgstr "Najpopularniejsze księgi biblijne" + +#: includes/types-taxonomies.php:179 +msgid "All books of the Bible" +msgstr "Wszystkie księgi biblijne" + +#: includes/types-taxonomies.php:180 +msgid "Edit book of the Bible" +msgstr "Edytuj księgę biblijną" + +#: includes/types-taxonomies.php:181 +msgid "Update book of the Bible" +msgstr "Zaktualizuj księgę biblijną" + +#: includes/types-taxonomies.php:182 +msgid "Add new books of the Bible" +msgstr "Dodaj nową księgę biblijną" + +#: includes/types-taxonomies.php:183 +msgid "New book of the Bible" +msgstr "Nowa księga biblijna" + +#: includes/types-taxonomies.php:184 +msgid "Separate books of the Bible with commas" +msgstr "Przedzielaj księgi biblijne przecinkiem" + +#: includes/types-taxonomies.php:185 +msgid "Add or remove books of the Bible" +msgstr "Dodaj lub usuń księgi biblijne" + +#: includes/types-taxonomies.php:186 +msgid "Choose from most used books of the Bible" +msgstr "Wybierz z najczęściej używanych ksiąg biblijnych" + +#: includes/types-taxonomies.php:201 includes/types-taxonomies.php:202 +#: includes/types-taxonomies.php:203 includes/types-taxonomies.php:309 +msgid "Service Type" +msgstr "Rodzaj usługi" + +#: includes/types-taxonomies.php:204 +msgid "Search service types" +msgstr "Wyszukaj rodzaje usługi" + +#: includes/types-taxonomies.php:205 +msgid "Most popular service types" +msgstr "Najpopularniejsze rodzaje usługi" + +#: includes/types-taxonomies.php:206 +msgid "All service types" +msgstr "Wszystkie rodzaje usługi" + +#: includes/types-taxonomies.php:207 +msgid "Edit service type" +msgstr "Edytuj rodzaj usługi" + +#: includes/types-taxonomies.php:208 +msgid "Update service type" +msgstr "Zaktualizuj rodzaj usługi" + +#: includes/types-taxonomies.php:209 +msgid "Add new service types" +msgstr "Dodaj nowe rodzaje usługi" + +#: includes/types-taxonomies.php:210 +msgid "New Service Type" +msgstr "Nowy rodzaj usługi" + +#: includes/types-taxonomies.php:211 +msgid "Separate service types with commas" +msgstr "Przedzielaj rodzaje usługi przecinkami" + +#: includes/types-taxonomies.php:212 +msgid "Add or remove service types" +msgstr "Dodaj lub usuń rodzaje usługi" + +#: includes/types-taxonomies.php:213 +msgid "Choose from most used service types" +msgstr "Wybierz z najczęściej używanych rodzajów usługi" + +#: includes/types-taxonomies.php:273 +msgid "Sermon Details" +msgstr "Szczegóły kazania" + +#. translators: %s date format, effectively d/m/Y or the like +#: includes/types-taxonomies.php:302 +msgid "format: %s" +msgstr "" + +#: includes/types-taxonomies.php:310 +msgid "" +"Select the type of service. Modify service types in Sermons → Service " +"Types." +msgstr "" +"Wybierz rodzaj usługi. Możesz edytować rodzaje usługi poprzez Kazania → " +"Rodzaj usługi." + +#: includes/types-taxonomies.php:317 +msgid "Main Bible Passage" +msgstr "Główny fragment biblii" + +#. translators: %s see msgid "John 3:16-18", effectively John 3:16-18 +#: includes/types-taxonomies.php:318 +msgid "Enter the Bible passage with the full book names, e.g. %s." +msgstr "Wprowadź fragment biblii razem z pełnymi nazwami ksiąg, np. %s." + +#: includes/types-taxonomies.php:318 +msgid "John 3:16-18" +msgstr "Jana 3, 16-18" + +#: includes/types-taxonomies.php:324 +msgid "" +"Type a brief description about this sermon, an outline, or a full manuscript" +msgstr "Wprowadź krótki opis, zarys lub pełny rękopis kazania." + +#: includes/types-taxonomies.php:332 +msgid "Sermon Files" +msgstr "Pliki do kazania" + +#: includes/types-taxonomies.php:341 +msgid "Location of MP3" +msgstr "Położenie pliku MP3" + +#: includes/types-taxonomies.php:342 +msgid "Upload an audio file or enter an URL." +msgstr "Załaduj plik dźwiękowy lub wprowadź URL." + +#: includes/types-taxonomies.php:346 +msgid "Add Sermon Audio" +msgstr "Dodaj nagranie kazania" + +#: includes/types-taxonomies.php:350 +msgid "MP3 Duration" +msgstr "Czas nagrania MP3" + +#. translators: %s see msgid "hh:mm:ss", effectively hh:mm:ss +#: includes/types-taxonomies.php:351 +msgid "" +"Length in %s format (if left blank, will attempt to calculate automatically " +"when you save)" +msgstr "" +"Długość czasowa nagrania w formacie %s. Jeśli pole pozostanie puste, to gdy " +"zapiszesz kazanie, będzie próbowano automatycznie obliczyć długość czasową." + +#: includes/types-taxonomies.php:351 +msgid "hh:mm:ss" +msgstr "gg:mm:ss" + +#: includes/types-taxonomies.php:356 +msgid "Video Embed Code" +msgstr "Kod osadzający wideo" + +#: includes/types-taxonomies.php:357 +msgid "Paste your embed code for Vimeo, Youtube, or other service here" +msgstr "" +"Wprowadź tu kod osadzający Twoje wideo z Vimeo, YouTube lub innego serwisu" + +#: includes/types-taxonomies.php:362 +msgid "Video Link" +msgstr "Odnośnik wideo" + +#: includes/types-taxonomies.php:363 +msgid "Paste your link for Vimeo, Youtube, or other service here" +msgstr "Wprowadź tu odnośnik do Vimeo, YouTube lub innego serwisu" + +#: includes/types-taxonomies.php:369 +msgid "Sermon Notes" +msgstr "Notatki do kazania" + +#: includes/types-taxonomies.php:370 includes/types-taxonomies.php:379 +msgid "Upload a pdf file or enter an URL." +msgstr "Załaduj plik PDF lub wprowadź URL." + +#: includes/types-taxonomies.php:374 includes/types-taxonomies.php:383 +msgid "Add File" +msgstr "Dodaj plik" + +#: includes/widgets.php:12 +msgid "The most recent sermons on your site" +msgstr "Najnowsze kazania w witrynie internetowej" + +#: includes/widgets.php:14 includes/widgets.php:43 +msgid "Recent Sermons" +msgstr "Najnowsze kazania" + +#: includes/widgets.php:134 +msgid "Title:" +msgstr "Tytuł:" + +#: includes/widgets.php:140 +msgid "Number of sermons to show:" +msgstr "Ilość kazań do pokazania:" + +#. translators: plugin header field "Plugin Name" +#: sermons.php:3 +msgid "Sermon Manager for WordPress" +msgstr "Menadżer Kazań dla WordPress" + +#. translators: plugin header field "Description" +#: sermons.php:5 +msgid "Add audio and video sermons, manage speakers, series, and more." +msgstr "" +"Dodawaj kazania w postaci słuchowiska i wideo, zarządzaj kaznodziejami, " +"seriami kazań i wiele więcej." + +#. translators: %s see msgid "←", effectively +#: views/archive-wpfc_sermon.php:18 views/archive-wpfc_sermon.php:71 +msgid "%s Older sermons" +msgstr "%s Starsze kazania" + +#. translators: %s see msgid "→", effectively +#: views/archive-wpfc_sermon.php:21 views/archive-wpfc_sermon.php:74 +msgid "Newer sermons %s" +msgstr "Nowsze kazania %s" + +#: views/archive-wpfc_sermon.php:28 views/taxonomy-wpfc_bible_book.php:45 +#: views/taxonomy-wpfc_preacher.php:51 +#: views/taxonomy-wpfc_sermon_series.php:52 +#: views/taxonomy-wpfc_sermon_topics.php:52 +#: views/taxonomy-wpfc_service_type.php:45 +msgid "Not Found" +msgstr "Nie znaleziono" + +#: views/archive-wpfc_sermon.php:30 views/taxonomy-wpfc_bible_book.php:47 +#: views/taxonomy-wpfc_preacher.php:53 +#: views/taxonomy-wpfc_sermon_series.php:54 +#: views/taxonomy-wpfc_sermon_topics.php:54 +#: views/taxonomy-wpfc_service_type.php:47 +msgid "Apologies, but no sermons were found." +msgstr "Przepraszamy, ale nie znaleziono kazań" + +#. translators: %s date +#: views/archive-wpfc_sermon.php:47 views/taxonomy-wpfc_bible_book.php:77 +msgid "Preached on %s" +msgstr "Wygłoszono dnia %s" + +#: views/archive-wpfc_sermon.php:60 views/taxonomy-wpfc_bible_book.php:88 +#: views/taxonomy-wpfc_preacher.php:94 +#: views/taxonomy-wpfc_sermon_series.php:95 +#: views/taxonomy-wpfc_sermon_topics.php:95 +#: views/taxonomy-wpfc_service_type.php:88 +msgid "%s Comment" +msgid_plural "%s Comments" +msgstr[0] "%s komentarz" +msgstr[1] "%s komentarze" +msgstr[2] "%s komentarzy" + +#: views/archive-wpfc_sermon.php:60 views/taxonomy-wpfc_bible_book.php:88 +#: views/taxonomy-wpfc_preacher.php:94 +#: views/taxonomy-wpfc_sermon_series.php:95 +#: views/taxonomy-wpfc_sermon_topics.php:95 +#: views/taxonomy-wpfc_service_type.php:88 +msgid "Leave a comment" +msgstr "Pozostaw komentarz" + +#: views/archive-wpfc_sermon.php:62 views/single-wpfc_sermon.php:35 +#: views/taxonomy-wpfc_bible_book.php:89 views/taxonomy-wpfc_preacher.php:95 +#: views/taxonomy-wpfc_sermon_series.php:96 +#: views/taxonomy-wpfc_sermon_topics.php:96 +#: views/taxonomy-wpfc_service_type.php:89 +msgid "Edit" +msgstr "Edytuj" + +#: views/single-wpfc_sermon.php:42 +msgctxt "Previous post link" +msgid "←" +msgstr "" + +#: views/single-wpfc_sermon.php:44 +msgctxt "Next post link" +msgid "→" +msgstr "" + +#: views/taxonomy-wpfc_bible_book.php:20 +msgid "Sermons by Book: %s" +msgstr "Kazania według księgi: %s" + +#. translators: %s see msgid "←", effectively +#: views/taxonomy-wpfc_bible_book.php:36 views/taxonomy-wpfc_bible_book.php:99 +#: views/taxonomy-wpfc_preacher.php:42 views/taxonomy-wpfc_preacher.php:105 +#: views/taxonomy-wpfc_sermon_series.php:43 +#: views/taxonomy-wpfc_sermon_series.php:106 +#: views/taxonomy-wpfc_sermon_topics.php:43 +#: views/taxonomy-wpfc_sermon_topics.php:106 +#: views/taxonomy-wpfc_service_type.php:36 +#: views/taxonomy-wpfc_service_type.php:99 +msgid "%s Older posts" +msgstr "%s Starsze wpisy" + +#. translators: %s see msgid "→", effectively +#: views/taxonomy-wpfc_bible_book.php:38 +#: views/taxonomy-wpfc_bible_book.php:101 views/taxonomy-wpfc_preacher.php:44 +#: views/taxonomy-wpfc_preacher.php:107 +#: views/taxonomy-wpfc_sermon_series.php:45 +#: views/taxonomy-wpfc_sermon_series.php:108 +#: views/taxonomy-wpfc_sermon_topics.php:45 +#: views/taxonomy-wpfc_sermon_topics.php:108 +#: views/taxonomy-wpfc_service_type.php:38 +#: views/taxonomy-wpfc_service_type.php:101 +msgid "Newer posts %s" +msgstr "Nowsze wpisy %s" + +#: views/taxonomy-wpfc_preacher.php:20 +msgid "Sermons by: %s" +msgstr "Kazania według kaznodzieja: %s" + +#: views/taxonomy-wpfc_sermon_series.php:20 +msgid "Sermons Series: %s" +msgstr "Kazania z serii: %s" + +#: views/taxonomy-wpfc_sermon_topics.php:20 +msgid "Sermons Topic: %s" +msgstr "Tematy kazań: %s" + +#: views/taxonomy-wpfc_service_type.php:20 +msgid "Sermons By Service: %s" +msgstr "Kazania według usługi: %s" From 60db9128f2e36af1be78eb9aa5fb9e4d67312b88 Mon Sep 17 00:00:00 2001 From: Nikola Date: Mon, 2 Oct 2017 16:32:42 +0200 Subject: [PATCH 09/27] Flush rewrite rules on "Common Base Slug" change --- includes/options.php | 5 +++-- readme.txt | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/options.php b/includes/options.php index a8d82fb..07f2470 100755 --- a/includes/options.php +++ b/includes/options.php @@ -33,8 +33,9 @@ static function wpfc_validate_options( $input ) { update_option( '_sm_recovery_do_not_catch', '0' ); } - if ( SermonManager::getOption( 'archive_slug' ) != $input['archive_slug'] || - SermonManager::getOption( 'preacher_label' ) != $input['preacher_label'] ) { + if ( SermonManager::getOption( 'archive_slug' ) != $input['archive_slug'] || + SermonManager::getOption( 'common_base_slug' ) != $input['common_base_slug'] || + SermonManager::getOption( 'preacher_label' ) != $input['preacher_label'] ) { update_option( 'sm_flush_rewrite_rules', '1' ); } diff --git a/readme.txt b/readme.txt index efe825b..2ddd814 100755 --- a/readme.txt +++ b/readme.txt @@ -98,6 +98,7 @@ Visit the [plugin homepage](https://wpforchurch.com/wordpress-plugins/sermon-man * Fix image_size not working in "[sermons]" shortcode * Fix compatibility with PHP 5.3 * Fix Recovery catching 3rd party errors +* Fix 404 when "Common Base Slug" option is changed * Sermon Manager now supports PHP 5.5, 5.4 and 5.3, but we still recommend to use at least PHP 5.6 ### 2.7.2 ### From ffdf25109115d410710174406cea30409915cd93 Mon Sep 17 00:00:00 2001 From: Nikola Date: Mon, 2 Oct 2017 17:21:26 +0200 Subject: [PATCH 10/27] Show all terms in dropdown --- includes/template-tags.php | 7 ++++++- readme.txt | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/includes/template-tags.php b/includes/template-tags.php index e52f32a..cb01329 100755 --- a/includes/template-tags.php +++ b/includes/template-tags.php @@ -551,7 +551,12 @@ function wpfc_get_term_dropdown( $taxonomy, $default = '' ) { // reset var $html = ''; - foreach ( get_terms( $taxonomy ) as $term ) { + foreach ( + get_terms( array( + 'taxonomy' => $taxonomy, + 'hide_empty' => false, // todo: add option to disable/enable this globally + ) ) as $term + ) { $html .= ''; } diff --git a/readme.txt b/readme.txt index 2ddd814..7a0ee25 100755 --- a/readme.txt +++ b/readme.txt @@ -99,6 +99,7 @@ Visit the [plugin homepage](https://wpforchurch.com/wordpress-plugins/sermon-man * Fix compatibility with PHP 5.3 * Fix Recovery catching 3rd party errors * Fix 404 when "Common Base Slug" option is changed +* Changed: Show all options in filtering dropdown - even if they don't have associated sermon * Sermon Manager now supports PHP 5.5, 5.4 and 5.3, but we still recommend to use at least PHP 5.6 ### 2.7.2 ### From db72d62f1ed67fddd70446f36067541afd179392 Mon Sep 17 00:00:00 2001 From: Nikola Date: Mon, 2 Oct 2017 20:57:26 +0200 Subject: [PATCH 11/27] Add sorting by sermon date to series --- includes/class-sm-dates-wp.php | 71 +++++++++++++++++++++++++++++++++- includes/shortcodes.php | 17 ++++++-- 2 files changed, 83 insertions(+), 5 deletions(-) diff --git a/includes/class-sm-dates-wp.php b/includes/class-sm-dates-wp.php index 94e207b..c1fab5e 100644 --- a/includes/class-sm-dates-wp.php +++ b/includes/class-sm-dates-wp.php @@ -34,6 +34,9 @@ public static function get_the_date( $the_date = '', $d = '', $post = null ) { */ public static function hook() { add_action( 'save_post_wpfc_sermon', array( get_class(), 'maybe_update_date' ), 10, 3 ); + add_action( 'save_post_wpfc_sermon', array( get_class(), 'save_series_date' ), 20, 3 ); + add_action( 'save_post_wpfc_sermon', array( get_class(), 'update_series_date' ), 30 ); + add_action( 'pre_post_update', array( get_class(), 'get_original_series' ) ); add_action( 'pre_post_update', array( get_class(), 'get_original_date' ) ); add_filter( 'cmb2_override_sermon_date_meta_remove', '__return_true' ); @@ -48,7 +51,73 @@ public static function hook() { } /** - * If post that is being updated is sermon, then it saves post date to globals + * Used to save series that were there before sermon update, for later comparison + * + * @param int $post_ID Post ID. + * + * @since 2.8 + */ + public static function get_original_series( $post_ID ) { + if ( get_post_type( $post_ID ) === 'wpfc_sermon' ) { + $GLOBALS['sm_original_series'] = wp_get_object_terms( $post_ID, 'wpfc_sermon_series' ); + } + } + + /** + * Saves sermon date as term meta (for ordering) + * + * @param int $post_ID Post ID. + * @param WP_Post $post Post object. + * @param bool $update Whether this is an existing post being updated or not. + * + * @since 2.8 + */ + public static function save_series_date( $post_ID, $post, $update ) { + $series = $_POST['tax_input']['wpfc_sermon_series']; + $orig_series = $GLOBALS['sm_original_series']; + + if ( $update ) { + foreach ( $orig_series as $term ) { + delete_term_meta( $term->term_id, 'sermon_date' ); + } + } + + if ( ! empty( $series ) ) { + foreach ( $orig_series as $term_id ) { + update_term_meta( $term_id, 'sermon_date_' . $post_ID, get_post_meta( $post_ID, 'sermon_date', true ) ); + } + } + } + + /** + * Loops through all series and sets latest available date + * + * @since 2.8 + */ + public static function update_series_date() { + foreach ( + get_terms( array( + 'taxonomy' => 'wpfc_sermon_series', + ) ) as $term + ) { + $term_meta = get_term_meta( $term->term_id ); + + if ( empty( $term_meta['sermon_date'] ) ) { + $dates = array(); + foreach ( $term_meta as $name => $value ) { + if ( strpos( $name, 'sermon_date_' ) !== false ) { + $dates[] = $value[0]; + } + } + + arsort( $dates ); + update_term_meta( $term->term_id, 'sermon_date', $dates[0] ); + } + } + } + + /** + * Used to save date that was there before sermon update, for later comparison * * @param int $post_ID Post ID. * diff --git a/includes/shortcodes.php b/includes/shortcodes.php index a6274b9..a1c10df 100755 --- a/includes/shortcodes.php +++ b/includes/shortcodes.php @@ -96,12 +96,21 @@ public function displaySermonsList( $atts ) { return 'Error: Invalid "list" parameter.
    Possible values are: "series", "preachers", "topics" and "books".
    You entered: "' . $args['display'] . '"'; } + $query_args = array( + 'taxonomy' => $args['display'], + 'orderby' => $args['orderby'], + 'order' => $args['order'], + ); + + if ( $query_args['orderby'] === 'date' ) { + $query_args['orderby'] = 'meta_value_num'; + $query_args['meta_key'] = 'sermon_date'; + $query_args['meta_compare'] = '<='; + $query_args['meta_value'] = time(); + } // get items - $terms = get_terms( $args['display'], array( - 'orderby' => $args['orderby'], - 'order' => $args['order'], - ) ); + $terms = get_terms( $query_args ); if ( count( $terms ) > 0 ) { // sort books by order From 8f7045c5b488a56d179958415a9c5dba669d0554 Mon Sep 17 00:00:00 2001 From: Nikola Date: Mon, 2 Oct 2017 21:26:59 +0200 Subject: [PATCH 12/27] Reorganize files a bit, removed files that are not being used --- {css => assets/css}/bibly.min.css | 0 {css => assets/css}/error-recovery.css | 0 {css => assets/css}/error-recovery.css.map | 0 {css => assets/css}/error-recovery.scss | 0 {css => assets/css}/plyr.css | 0 {css => assets/css}/sermon.css | 644 +++++++++--------- .../img => assets/images/icons}/sm-icon.svg | 0 {js => assets/js/admin}/dismiss-php.js | 0 {js => assets/js/admin}/error-recovery.js | 0 {js => assets/js}/bibly.min.js | 0 {js => assets/js}/plyr.js | 0 css/icons/README.txt | 73 -- css/icons/audio.png | Bin 543 -> 0 bytes css/icons/mic-icon.png | Bin 1111 -> 0 bytes css/icons/pdf.png | Bin 713 -> 0 bytes css/icons/ppt.png | Bin 661 -> 0 bytes css/icons/video.png | Bin 648 -> 0 bytes css/icons/word.png | Bin 651 -> 0 bytes includes/class-sm-error-recovery.php | 4 +- includes/class-sm-post-types.php | 2 +- includes/img/README.txt | 73 -- sermons.php | 12 +- 22 files changed, 331 insertions(+), 477 deletions(-) rename {css => assets/css}/bibly.min.css (100%) rename {css => assets/css}/error-recovery.css (100%) rename {css => assets/css}/error-recovery.css.map (100%) rename {css => assets/css}/error-recovery.scss (100%) rename {css => assets/css}/plyr.css (100%) rename {css => assets/css}/sermon.css (95%) rename {includes/img => assets/images/icons}/sm-icon.svg (100%) rename {js => assets/js/admin}/dismiss-php.js (100%) rename {js => assets/js/admin}/error-recovery.js (100%) rename {js => assets/js}/bibly.min.js (100%) rename {js => assets/js}/plyr.js (100%) delete mode 100755 css/icons/README.txt delete mode 100755 css/icons/audio.png delete mode 100755 css/icons/mic-icon.png delete mode 100755 css/icons/pdf.png delete mode 100755 css/icons/ppt.png delete mode 100755 css/icons/video.png delete mode 100755 css/icons/word.png delete mode 100755 includes/img/README.txt diff --git a/css/bibly.min.css b/assets/css/bibly.min.css similarity index 100% rename from css/bibly.min.css rename to assets/css/bibly.min.css diff --git a/css/error-recovery.css b/assets/css/error-recovery.css similarity index 100% rename from css/error-recovery.css rename to assets/css/error-recovery.css diff --git a/css/error-recovery.css.map b/assets/css/error-recovery.css.map similarity index 100% rename from css/error-recovery.css.map rename to assets/css/error-recovery.css.map diff --git a/css/error-recovery.scss b/assets/css/error-recovery.scss similarity index 100% rename from css/error-recovery.scss rename to assets/css/error-recovery.scss diff --git a/css/plyr.css b/assets/css/plyr.css similarity index 100% rename from css/plyr.css rename to assets/css/plyr.css diff --git a/css/sermon.css b/assets/css/sermon.css similarity index 95% rename from css/sermon.css rename to assets/css/sermon.css index 630222a..87a301c 100755 --- a/css/sermon.css +++ b/assets/css/sermon.css @@ -1,322 +1,322 @@ -/* Sermon Manager CSS http://www.wpforchurch.com/products/sermon-manager-for-wordpress/ */ - -.single-wpfc_sermon .wpfc_sermon_image { - margin: 10px 0 10px; -} - -.wpfc_sermon_image_wide { - max-width: 100%; - float: left; -} - -.wpfc_sermon_image_wide img { - max-width: 100%; - height: auto; - margin: 0 0 10px 0; -} - -.wpfc_sermon_image { - max-width: 100%; - float: left; -} - -.wpfc_sermon_image img { - max-width: 100%; - height: auto; - margin: 0 10px 0 !important; -} - -.wpfc_sermon_wrap { - padding-bottom: 20px; - clear: both; -} - -#wpfc_sermon_sorting form { - display: inline; - margin: 0 10px 10px 0; -} - -.single-wpfc_sermon .wpfc_sermon_wrap { - padding-bottom: 0px; -} - -.wpfc_sermon_meta p { - margin: 0 !important; -} - -.sermon_date, .service_type { - text-transform: uppercase; - font-size: 12px; -} - -.sermon_series:before { - clear: left; -} - -#wpfc_sermon_tax_desc:after { - content: "."; - visibility: hidden; - display: block; - height: 0; - clear: right; -} - -/* controls padding around video embeds */ -.wpfc_sermon-video { - margin: 10px 0 10px; - max-width: 100%; - clear: both; -} - -.wpfc_sermon-video iframe, .wpfc_sermon-video embed, .wpfc_sermon-video-link iframe { - max-width: 100%; -} - -.mejs-container, #wpfc_sermon iframe, #wpfc_sermon object, #wpfc_sermon embed { - max-width: 100%; -} - -.wpfc_sermon-notes, -.wpfc_sermon-bulletin { - margin: 10px 0 10px; -} - -/* controls padding around audio player */ -.wpfc_sermon-audio { - margin: 10px 0 10px; - max-width: 500px; - clear: both; -} - -#wpfc_sermon_sorting { - padding: 10px 0 10px; -} - -/* Some clearfix code from HTML5 Boilerplate */ -.cf:before, .cf:after { - content: "\0020"; - display: block; - height: 0; - visibility: hidden; -} - -.cf:after { - clear: both; -} - -.cf { - zoom: 1; -} - -/* Recent Sermon Widget */ -.widget_recent_sermons ul { - margin-left: 0px !important; -} - -.widget_recent_sermons .dashicons-microphone { - font-size: 22px !important; - display: inline-block; - height: 40px; - float: left; - margin-right: 4px; -} - -.widget_recent_sermons .widget_recent_sermons_meta { - display: inline-block; - width: 100%; -} - -.widget_recent_sermons li { - list-style: none !important; - margin: 0px 0 12px; - line-height: 1.1em; -} - -.widget_recent_sermons span { - font-size: 0.75em; - color: #444444; - margin: 0; - display: block; -} - -.widget_recent_sermons .meta > span { - display: inline; -} - -#sermon-navigation { - padding-bottom: 15px; -} - -/* WP Pagenavi Styles */ -.wp-pagenavi { - font-size: 12px; - display: block; - clear: both; - padding: 20px 0px 20px 10px; -} - -.wp-pagenavi a, -.wp-pagenavi a:link, -.wp-pagenavi a:visited, -.wp-pagenavi a:active { - padding: 4px 8px !important; - margin: 3px !important; - text-decoration: none !important; - border: 1px solid #C8C8C2 !important; - background: #FCFCFC !important; - -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; - -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; - box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; - color: #999 !important; -} - -.wp-pagenavi a:hover { - border: 1px solid #a7a7a3 !important; - color: #444 !important; -} - -.wp-pagenavi span.pages { - padding: 4px 8px !important; - margin: 3px !important; - font-style: italic !important; - color: #999 !important; -} - -.wp-pagenavi span.current { - padding: 4px 8px !important; - margin: 3px !important; - text-decoration: none !important; - border: 1px solid #a7a7a3 !important; - background: #FCFCFC !important; - -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; - -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; - box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; - font-weight: bold !important; - color: #444 !important; -} - -.wp-pagenavi span.extend { - padding: 4px 8px !important; - margin: 3px !important; - text-decoration: none !important; - border: 1px solid #C8C8C2 !important; - background: #FCFCFC !important; - -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; - -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; - box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; -} - -/* Verse Popup Styles */ -.bibly_popup_outer { - font-size: 1.2em; -} - -.bibly_popup_footer { - display: none; -} - -/* Styles for additional files */ -#wpfc-attachments a { - display: block; -} - -#wpfc-attachments a[href$='.ppt'], #wpfc-attachments a[href$='.pptx'] { - height: 16px; - line-height: 16px; - margin: 10px 0; -} - -#wpfc-attachments a[href$='.doc'], #wpfc-attachments a[href$='.rtf'], #wpfc-attachments a[href$='.docx'] { - height: 16px; - line-height: 16px; - margin: 10px 0; -} - -#wpfc-attachments a[href$='.pdf'], a.sermon-notes, -#wpfc-attachments a[href$='.pdf'], a.sermon-bulletin { - height: 16px; - line-height: 16px; - margin: 10px 0; -} - -#wpfc-attachments a[href$='.mp3'] { - height: 16px; - line-height: 16px; - margin: 10px 0; -} - -#wpfc-attachments a[href$='.mp4'] { - height: 16px; - line-height: 16px; - margin: 10px 0; -} - -.sermon-notes .dashicons, .sermon-bulletin .dashicons, .dashicons-before:before, -#wpfc-attachments .dashicons, .dashicons-before:before { - vertical-align: text-top !important; -} - -/* Image styles for Sermon Series, Speakers */ -.sermon-images-the-terms { - margin: 10px 0; - padding: 0; - zoom: 1; -} - -.sermon-images-the-terms:before, -.sermon-images-the-terms:after { - content: "\0020"; - display: block; - height: 0; - visibility: hidden; - clear: both; -} - -.sermon-images-the-terms li, -.sermon-images-the-terms a, -.sermon-images-the-terms img { - float: left; - margin: 0; - padding: 0; -} - -.sermon-images-the-terms li { - list-style-type: none; - margin: 0 10px 10px 0; -} - -ul#wpfc_images_grid { - margin: 0 !important; -} - -ul#wpfc_images_grid:after { - content: "."; - visibility: hidden; - display: block; - height: 0; - clear: right; -} - -li.wpfc_grid_image { - list-style-type: none !important; - margin: 0 10px 10px 0 !important; - width: 47%; - float: left; -} - -li.wpfc_grid_image img { - max-width: 100%; - height: auto; -} - -h3.wpfc_grid_title a { - text-decoration: none; -} - -.wpfc_worship_audio { - max-width: 500px; -} - -.wpfc_worship_audio .wp-playlist { - border: 0px !important; -} +/* Sermon Manager CSS http://www.wpforchurch.com/products/sermon-manager-for-wordpress/ */ + +.single-wpfc_sermon .wpfc_sermon_image { + margin: 10px 0 10px; +} + +.wpfc_sermon_image_wide { + max-width: 100%; + float: left; +} + +.wpfc_sermon_image_wide img { + max-width: 100%; + height: auto; + margin: 0 0 10px 0; +} + +.wpfc_sermon_image { + max-width: 100%; + float: left; +} + +.wpfc_sermon_image img { + max-width: 100%; + height: auto; + margin: 0 10px 0 !important; +} + +.wpfc_sermon_wrap { + padding-bottom: 20px; + clear: both; +} + +#wpfc_sermon_sorting form { + display: inline; + margin: 0 10px 10px 0; +} + +.single-wpfc_sermon .wpfc_sermon_wrap { + padding-bottom: 0px; +} + +.wpfc_sermon_meta p { + margin: 0 !important; +} + +.sermon_date, .service_type { + text-transform: uppercase; + font-size: 12px; +} + +.sermon_series:before { + clear: left; +} + +#wpfc_sermon_tax_desc:after { + content: "."; + visibility: hidden; + display: block; + height: 0; + clear: right; +} + +/* controls padding around video embeds */ +.wpfc_sermon-video { + margin: 10px 0 10px; + max-width: 100%; + clear: both; +} + +.wpfc_sermon-video iframe, .wpfc_sermon-video embed, .wpfc_sermon-video-link iframe { + max-width: 100%; +} + +.mejs-container, #wpfc_sermon iframe, #wpfc_sermon object, #wpfc_sermon embed { + max-width: 100%; +} + +.wpfc_sermon-notes, +.wpfc_sermon-bulletin { + margin: 10px 0 10px; +} + +/* controls padding around audio player */ +.wpfc_sermon-audio { + margin: 10px 0 10px; + max-width: 500px; + clear: both; +} + +#wpfc_sermon_sorting { + padding: 10px 0 10px; +} + +/* Some clearfix code from HTML5 Boilerplate */ +.cf:before, .cf:after { + content: "\0020"; + display: block; + height: 0; + visibility: hidden; +} + +.cf:after { + clear: both; +} + +.cf { + zoom: 1; +} + +/* Recent Sermon Widget */ +.widget_recent_sermons ul { + margin-left: 0px !important; +} + +.widget_recent_sermons .dashicons-microphone { + font-size: 22px !important; + display: inline-block; + height: 40px; + float: left; + margin-right: 4px; +} + +.widget_recent_sermons .widget_recent_sermons_meta { + display: inline-block; + width: 100%; +} + +.widget_recent_sermons li { + list-style: none !important; + margin: 0px 0 12px; + line-height: 1.1em; +} + +.widget_recent_sermons span { + font-size: 0.75em; + color: #444444; + margin: 0; + display: block; +} + +.widget_recent_sermons .meta > span { + display: inline; +} + +#sermon-navigation { + padding-bottom: 15px; +} + +/* WP Pagenavi Styles */ +.wp-pagenavi { + font-size: 12px; + display: block; + clear: both; + padding: 20px 0px 20px 10px; +} + +.wp-pagenavi a, +.wp-pagenavi a:link, +.wp-pagenavi a:visited, +.wp-pagenavi a:active { + padding: 4px 8px !important; + margin: 3px !important; + text-decoration: none !important; + border: 1px solid #C8C8C2 !important; + background: #FCFCFC !important; + -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; + -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; + box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; + color: #999 !important; +} + +.wp-pagenavi a:hover { + border: 1px solid #a7a7a3 !important; + color: #444 !important; +} + +.wp-pagenavi span.pages { + padding: 4px 8px !important; + margin: 3px !important; + font-style: italic !important; + color: #999 !important; +} + +.wp-pagenavi span.current { + padding: 4px 8px !important; + margin: 3px !important; + text-decoration: none !important; + border: 1px solid #a7a7a3 !important; + background: #FCFCFC !important; + -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; + -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; + box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; + font-weight: bold !important; + color: #444 !important; +} + +.wp-pagenavi span.extend { + padding: 4px 8px !important; + margin: 3px !important; + text-decoration: none !important; + border: 1px solid #C8C8C2 !important; + background: #FCFCFC !important; + -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; + -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; + box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important; +} + +/* Verse Popup Styles */ +.bibly_popup_outer { + font-size: 1.2em; +} + +.bibly_popup_footer { + display: none; +} + +/* Styles for additional files */ +#wpfc-attachments a { + display: block; +} + +#wpfc-attachments a[href$='.ppt'], #wpfc-attachments a[href$='.pptx'] { + height: 16px; + line-height: 16px; + margin: 10px 0; +} + +#wpfc-attachments a[href$='.doc'], #wpfc-attachments a[href$='.rtf'], #wpfc-attachments a[href$='.docx'] { + height: 16px; + line-height: 16px; + margin: 10px 0; +} + +#wpfc-attachments a[href$='.pdf'], a.sermon-notes, +#wpfc-attachments a[href$='.pdf'], a.sermon-bulletin { + height: 16px; + line-height: 16px; + margin: 10px 0; +} + +#wpfc-attachments a[href$='.mp3'] { + height: 16px; + line-height: 16px; + margin: 10px 0; +} + +#wpfc-attachments a[href$='.mp4'] { + height: 16px; + line-height: 16px; + margin: 10px 0; +} + +.sermon-notes .dashicons, .sermon-bulletin .dashicons, .dashicons-before:before, +#wpfc-attachments .dashicons, .dashicons-before:before { + vertical-align: text-top !important; +} + +/* Image styles for Sermon Series, Speakers */ +.sermon-images-the-terms { + margin: 10px 0; + padding: 0; + zoom: 1; +} + +.sermon-images-the-terms:before, +.sermon-images-the-terms:after { + content: "\0020"; + display: block; + height: 0; + visibility: hidden; + clear: both; +} + +.sermon-images-the-terms li, +.sermon-images-the-terms a, +.sermon-images-the-terms img { + float: left; + margin: 0; + padding: 0; +} + +.sermon-images-the-terms li { + list-style-type: none; + margin: 0 10px 10px 0; +} + +ul#wpfc_images_grid { + margin: 0 !important; +} + +ul#wpfc_images_grid:after { + content: "."; + visibility: hidden; + display: block; + height: 0; + clear: right; +} + +li.wpfc_grid_image { + list-style-type: none !important; + margin: 0 10px 10px 0 !important; + width: 47%; + float: left; +} + +li.wpfc_grid_image img { + max-width: 100%; + height: auto; +} + +h3.wpfc_grid_title a { + text-decoration: none; +} + +.wpfc_worship_audio { + max-width: 500px; +} + +.wpfc_worship_audio .wp-playlist { + border: 0px !important; +} diff --git a/includes/img/sm-icon.svg b/assets/images/icons/sm-icon.svg similarity index 100% rename from includes/img/sm-icon.svg rename to assets/images/icons/sm-icon.svg diff --git a/js/dismiss-php.js b/assets/js/admin/dismiss-php.js similarity index 100% rename from js/dismiss-php.js rename to assets/js/admin/dismiss-php.js diff --git a/js/error-recovery.js b/assets/js/admin/error-recovery.js similarity index 100% rename from js/error-recovery.js rename to assets/js/admin/error-recovery.js diff --git a/js/bibly.min.js b/assets/js/bibly.min.js similarity index 100% rename from js/bibly.min.js rename to assets/js/bibly.min.js diff --git a/js/plyr.js b/assets/js/plyr.js similarity index 100% rename from js/plyr.js rename to assets/js/plyr.js diff --git a/css/icons/README.txt b/css/icons/README.txt deleted file mode 100755 index 1092580..0000000 --- a/css/icons/README.txt +++ /dev/null @@ -1,73 +0,0 @@ -Fugue Icons - -Copyright (C) 2010 Yusuke Kamiyamane. All rights reserved. -The icons are licensed under a Creative Commons Attribution -3.0 license. - -If you can't or don't want to provide a link back, please -purchase a royalty-free license. - - -I'm unavailable for custom icon design work. But your -suggestions are always welcome! - - ------------------------------------------------------------- - -- geotag - - Copyright (C) Geotag Icon Project. All rights reserved. - - - Geotag icon is licensed under a Creative Commons - Attribution-Share Alike 3.0 license or LGPL. - - - -- language - - Copyright (C) Language Icon Project. All rights reserved. - - - Language icon is licensed under a Creative Commons - Attribution-Share Alike 3.0 license. - - -- open-share - - Copyright (C) Open Share Icon Project. All rights reserved. - - - Open Share icon is licensed under a Creative Commons - Attribution-Share Alike 3.0 license. - - -- opml - - Copyright (C) OPML Icon Project. All rights reserved. - - - OPML icon is licensed under a Creative Commons - Attribution-Share Alike 2.5 license. - - -- share - - Copyright (C) Share Icon Project. All rights reserved. - - - Share icon is licensed under a GPL or LGPL or BSD or - Creative Commons Attribution 2.5 license. - - - - - -- xfn - - Copyright (C) Wolfgang Bartelme. All rights reserved. - - - XFN icon is licensed under a Creative Commons - Attribution-Share Alike 2.5 license. - \ No newline at end of file diff --git a/css/icons/audio.png b/css/icons/audio.png deleted file mode 100755 index 90f9fb771b5bebc4570684e7ee1786bb10b410a5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 543 zcmV+)0^t3LP)bk{0?3E1`%}gl0}}obnHWP=;Z5B5DJl?ZPk3=wg1Sjgmo)u z;Kw`<%>193*;&JIIAp&u!>zus_3DDHwc*F>*h|U!?Z6#rOfIBp$anjeEy77 zW3i1)Fu3Uqhqt_B-y5U9?&CVQkvY9i@9Np1} z$_h+~dW$9KrqpAEPel(EEu}$0WI??IQg2a7FFr(e#$4^8ZQ#tg@O|I^{r~yTXtI4@ zWyRJCilQnLZDNYd>&V#bDJTC|y!SYnw&2zb?nK=$tl=K zQLBKK&ftu6Kv0nGmtBnC(M`gpsK#c;l$Ab+K^FFCMuh(M@DU9(H9~jQNvveXV6WCT zWWmm%_Ovq8r-W6yxd}8n0uj(5mVu+6Fl@nz&se6G`ME$a6bjV>p5<7EO7%m(RyBa+2BM6^8Xkgj#8TPiKf(UKJ(oC!&1GtKE7WLx@O`QHoK{uCV z4STUnq+pCAn+)e?-IR(zN%}uj*O$;XPQhir{}i^(Xa0uy3{CVao9sRAFWZwLi~0Y0=h z%yF%3G#C#@V__~THbi4lF<#_~Na@$1fs0&qnHwz0bsIr9Nn{aP+5lAJ7Sh2&!h%-X z3s+Kak*k*W!k6SS#0=wJ>tEMgJR-g0E|;2?Y?j&{8l=}P($upPp<41FUM9q7+WC-G zTgtw)cs+%Q&4Mwk@eKwyE%Kg zdc3CU#r3s?cMa3m%4TrBe1Jak^wQUn8_vdgZ~oZZC*$pF4n6JI-Vu2=HpitN|6Hxz zul#)GEZ%eV&hsRfF+X;%uFkf2t2WJf3eRr_YX=WUwGElc3!ma0D}R-}$7NTBkJdam zxLK;1oO(Dsx4!Ak{#*Hq+3)l7r^hy(n;sjfuA$c7Zmdpy={Q5JqJFI1*(c+H0r#mV MTHD3Ddyk#{4Z=EVdH?_b diff --git a/css/icons/pdf.png b/css/icons/pdf.png deleted file mode 100755 index 4bdb47e0a5dc002d0d6599bc9585eddbf6d28e5c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 713 zcmV;)0yh1LP))J`sBJ>i@Nq7#e~`pB z^=cZKK-+xx{bfq{&Arr4Aqs;~^Tr7Upp3lWITCW3+ zQ*KB>4{YHc@Q4@tkLOX^tD;(~~b1mZu&*3S5GX&?G1XnQ%a;6MpAP z`0{nrn&bWY_UjMxH*f1Bv}jWa;%Rd@5NI^8H9QPnEP@-~?RFb3M9)%l4I#f5*$sK! z8bKr+8eP?q5j698IOB0$$)Tah>9px2jInl=#wClOaYV8`7QlNFi19j ze8bMK5(?V|8kz}XI|Pa`t2>c^e|8q0@o|v-h%PN5JTs${3`Qb2+1H0qFhH&g0`4#g zB-xNTy10n)@-iyfEcVydP~F`{Q&n|!yj}xWIS%SF>}P^qBS@lyz}ta=_IQS=+=#^p ze%}dF&EfO zYs>JLiMi1P7#B9eBgmtJLxuuaPocmh5eg{ZV-cXGm~p>EE!>i$J-aA2T-Dl}PUe*C vbUl^+4uRS<<3jTOvrqW1#R_KhM}PqU3Nja7a00z`00000NkvXXu0mjfdsRN8 diff --git a/css/icons/ppt.png b/css/icons/ppt.png deleted file mode 100755 index 7ae9ce49e6f79d9ee5b1cc036fe1261047124e9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 661 zcmV;G0&4wZ;7w5!Q3ORi8~>CZ3|n zs+faBTp!5JtkW}XRS&a|!-~bsbWK&)S5;jtN|&}^uYUz3L-cmz-!cuDMHqvb@txM7 z_;VqB3uBdIxw|I|H@u2Q7)1y}gD5iK%`ERft>EVL$K#|5{!NI2Dwv_Q&@AQ8RlRsS za1mctzG3%ZFAiRQIzr|ts^FciAPjV&>+D?9n#1$`5JKQ<=?CsjJjbq$>1$7BmmiSp zkOgQzfQdrr(lUNcj6t|ARJI4LTMs~W5m?}W&vX3YXAUoEhvh*6CPvos5yagPpBGud^>oO;+W0k*TBdzaE!h;5^;0v_YD`F+`@_rUaQ zw`J4avJiWY^#D4M!NtsGT+g4odgsj0NI3}XxcCAlH&NJNSV#;oHNa$c7?0Ns$5ish zld`)SGDnfH5P`-+RFhqMC_}({8;8ZSHccVyru}WT7POz}or+SlD%XZ{>G8^siC214 v$^pf6)&OCU=*7dQZ@gJ)i3AeRj6OeqD!FdhLoh~qNX2OUz%*JhkJ=ytogLZKjDw%!(mRFq;+ z8lWI)p(w`~@T7XL8*`(=g@8ec_k@RF3c*Df6>0&kpt^=5z1k1;kR?v%J+XpD~+ z0=4*k?s@I_fshQN$s9tcWufLtDNuWM{|!C%bdCfbE_={yHuv=T+=K&enQ&YSNzYz} z=R5FIiKquLcdd!MQmK5`2*q&`C~#)LaqK88)6{2$h`x^%?y5ke(b&;VosDHA5DY^M zzK-$je1JiJ2-lX_+Ong@$6UTT1+!YM{vf3|yK)$8>Q!W5MvL4~{fo7mpVz;$U?!^CH*9)|k=P^p;fEyqZsc|q$t6n8KAHy%^G iquQsD!2evo1sDL29{7aW6DuA70000eBDz(r9~c{YL?2?}aq z`~#EQ&Cc$O^JcSqIpoC0&VFy-oB7_~EIWH?7Ry-__xdf`aQHp?ec&%2zqq| z8b34Gd26Ix_0~c}N+F6gl+vKhB#R%v;>O&E3r1!1nJ@|%G7;%=-UCLj)cy*&BfkZM z$9LoRN&_>aC#pjePlne?-dO?}MCAupPqxkZ%*97wjA8l5FWkBR41@bNU7xLgx@%nL zEP?NZc=hHx#-7{_>ItH urlencode( str_replace( ABSPATH, '~/', get_option( '_sm_recovery_last_fatal_error' ) ) ), 'environment_info' => 'WordPress: ' . $GLOBALS['wp_version'] . '; Server: ' . ( function_exists( 'apache_get_version' ) ? apache_get_version() : 'N/A' ) . '; PHP: ' . PHP_VERSION . '; Sermon Manager:' . SERMON_MANAGER_VERSION . ';', 'plugin_name' => $plugin_data['Name'], ) ); - wp_enqueue_style( 'sm-error-recovery', SERMON_MANAGER_URL . 'css/error-recovery.css', array(), SERMON_MANAGER_VERSION ); + wp_enqueue_style( 'sm-error-recovery', SERMON_MANAGER_URL . 'assets/css/error-recovery.css', array(), SERMON_MANAGER_VERSION ); } /** diff --git a/includes/class-sm-post-types.php b/includes/class-sm-post-types.php index b8bf419..a6b8d21 100644 --- a/includes/class-sm-post-types.php +++ b/includes/class-sm-post-types.php @@ -221,7 +221,7 @@ public static function register_post_types() { 'publicly_queryable' => true, 'exclude_from_search' => false, 'show_in_menu' => true, - 'menu_icon' => SERMON_MANAGER_URL . 'includes/img/sm-icon.svg', + 'menu_icon' => SERMON_MANAGER_URL . 'assets/images/icons/sm-icon.svg', 'hierarchical' => false, 'rewrite' => array( 'slug' => $permalinks['wpfc_sermon'], 'with_front' => false ), 'query_var' => true, diff --git a/includes/img/README.txt b/includes/img/README.txt deleted file mode 100755 index 1092580..0000000 --- a/includes/img/README.txt +++ /dev/null @@ -1,73 +0,0 @@ -Fugue Icons - -Copyright (C) 2010 Yusuke Kamiyamane. All rights reserved. -The icons are licensed under a Creative Commons Attribution -3.0 license. - -If you can't or don't want to provide a link back, please -purchase a royalty-free license. - - -I'm unavailable for custom icon design work. But your -suggestions are always welcome! - - ------------------------------------------------------------- - -- geotag - - Copyright (C) Geotag Icon Project. All rights reserved. - - - Geotag icon is licensed under a Creative Commons - Attribution-Share Alike 3.0 license or LGPL. - - - -- language - - Copyright (C) Language Icon Project. All rights reserved. - - - Language icon is licensed under a Creative Commons - Attribution-Share Alike 3.0 license. - - -- open-share - - Copyright (C) Open Share Icon Project. All rights reserved. - - - Open Share icon is licensed under a Creative Commons - Attribution-Share Alike 3.0 license. - - -- opml - - Copyright (C) OPML Icon Project. All rights reserved. - - - OPML icon is licensed under a Creative Commons - Attribution-Share Alike 2.5 license. - - -- share - - Copyright (C) Share Icon Project. All rights reserved. - - - Share icon is licensed under a GPL or LGPL or BSD or - Creative Commons Attribution 2.5 license. - - - - - -- xfn - - Copyright (C) Wolfgang Bartelme. All rights reserved. - - - XFN icon is licensed under a Creative Commons - Attribution-Share Alike 2.5 license. - \ No newline at end of file diff --git a/sermons.php b/sermons.php index 2c56d33..d0d57de 100755 --- a/sermons.php +++ b/sermons.php @@ -68,7 +68,7 @@ public function __construct() { if ( is_admin() && ! get_option( 'dismissed-render_php_version_warning', 0 ) ) { add_action( 'admin_notices', array( $this, 'render_php_version_warning' ) ); add_action( 'admin_enqueue_scripts', function () { - wp_enqueue_script( 'wpfc-php-notice-handler', SERMON_MANAGER_URL . 'js/dismiss-php.js', array(), SERMON_MANAGER_VERSION ); + wp_enqueue_script( 'wpfc-php-notice-handler', SERMON_MANAGER_URL . 'assets/js/admin/dismiss-php.js', array(), SERMON_MANAGER_VERSION ); } ); } } @@ -320,19 +320,19 @@ public static function enqueue_scripts_styles() { } if ( ! \SermonManager::getOption( 'css' ) ) { - wp_enqueue_style( 'wpfc-sm-styles', SERMON_MANAGER_URL . 'css/sermon.css', array(), SERMON_MANAGER_VERSION ); + wp_enqueue_style( 'wpfc-sm-styles', SERMON_MANAGER_URL . 'assets/css/sermon.css', array(), SERMON_MANAGER_VERSION ); wp_enqueue_style( 'dashicons' ); if ( ! \SermonManager::getOption( 'use_old_player' ) ) { - wp_enqueue_script( 'wpfc-sm-plyr', SERMON_MANAGER_URL . 'js/plyr.js', array(), SERMON_MANAGER_VERSION ); - wp_enqueue_style( 'wpfc-sm-plyr-css', SERMON_MANAGER_URL . 'css/plyr.css', array(), SERMON_MANAGER_VERSION ); + wp_enqueue_script( 'wpfc-sm-plyr', SERMON_MANAGER_URL . 'assets/js/plyr.js', array(), SERMON_MANAGER_VERSION ); + wp_enqueue_style( 'wpfc-sm-plyr-css', SERMON_MANAGER_URL . 'assets/css/plyr.css', array(), SERMON_MANAGER_VERSION ); wp_add_inline_script( 'wpfc-sm-plyr', 'window.onload=function(){plyr.setup(document.querySelectorAll(\'.wpfc-sermon-player, #wpfc_sermon audio\'));}' ); } } if ( ! \SermonManager::getOption( 'bibly' ) ) { - wp_enqueue_script( 'wpfc-sm-bibly-script', SERMON_MANAGER_URL . 'js/bibly.min.js', array(), SERMON_MANAGER_VERSION ); - wp_enqueue_style( 'wpfc-sm-bibly-style', SERMON_MANAGER_URL . 'css/bibly.min.css', array(), SERMON_MANAGER_VERSION ); + wp_enqueue_script( 'wpfc-sm-bibly-script', SERMON_MANAGER_URL . 'assets/js/bibly.min.js', array(), SERMON_MANAGER_VERSION ); + wp_enqueue_style( 'wpfc-sm-bibly-style', SERMON_MANAGER_URL . 'assets/css/bibly.min.css', array(), SERMON_MANAGER_VERSION ); // get options for JS $bible_version = \SermonManager::getOption( 'bibly_version' ); From 8ddaf6c841b0787f28a61a04f36ceb731e53e337 Mon Sep 17 00:00:00 2001 From: Nikola Date: Mon, 2 Oct 2017 21:42:50 +0200 Subject: [PATCH 13/27] Fix admin menu icon not being blue on hover --- assets/css/admin-icon.css | 9 +++++++++ assets/css/admin-icon.css.map | 7 +++++++ assets/css/admin-icon.scss | 9 +++++++++ assets/fonts/Sermon-Manager.eot | Bin 0 -> 1320 bytes assets/fonts/Sermon-Manager.svg | 14 ++++++++++++++ assets/fonts/Sermon-Manager.ttf | Bin 0 -> 1156 bytes assets/fonts/Sermon-Manager.woff | Bin 0 -> 1232 bytes assets/images/icons/sm-icon.svg | 9 --------- includes/class-sm-post-types.php | 2 +- readme.txt | 5 +++-- sermons.php | 6 ++++++ 11 files changed, 49 insertions(+), 12 deletions(-) create mode 100644 assets/css/admin-icon.css create mode 100644 assets/css/admin-icon.css.map create mode 100644 assets/css/admin-icon.scss create mode 100644 assets/fonts/Sermon-Manager.eot create mode 100644 assets/fonts/Sermon-Manager.svg create mode 100644 assets/fonts/Sermon-Manager.ttf create mode 100644 assets/fonts/Sermon-Manager.woff delete mode 100644 assets/images/icons/sm-icon.svg diff --git a/assets/css/admin-icon.css b/assets/css/admin-icon.css new file mode 100644 index 0000000..57dfbd4 --- /dev/null +++ b/assets/css/admin-icon.css @@ -0,0 +1,9 @@ +.dashicons-sermon-manager:before { + font-family: "SermonManager"; + content: "\e900"; } + +@font-face { + font-family: SermonManager; + src: url(../fonts/Sermon-Manager.ttf); } + +/*# sourceMappingURL=admin-icon.css.map */ diff --git a/assets/css/admin-icon.css.map b/assets/css/admin-icon.css.map new file mode 100644 index 0000000..4fa13d9 --- /dev/null +++ b/assets/css/admin-icon.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAAA,gCAAiC;EAC/B,WAAW,EAAE,eAAe;EAC5B,OAAO,EAAE,OAAO;;AAGlB,UAGC;EAFC,WAAW,EAAE,aAAa;EAC1B,GAAG,EAAE,gCAAgC", +"sources": ["admin-icon.scss"], +"names": [], +"file": "admin-icon.css" +} \ No newline at end of file diff --git a/assets/css/admin-icon.scss b/assets/css/admin-icon.scss new file mode 100644 index 0000000..fe337b2 --- /dev/null +++ b/assets/css/admin-icon.scss @@ -0,0 +1,9 @@ +.dashicons-sermon-manager:before { + font-family: "SermonManager"; + content: "\e900"; +} + +@font-face { + font-family: SermonManager; + src: url(../fonts/Sermon-Manager.ttf); +} \ No newline at end of file diff --git a/assets/fonts/Sermon-Manager.eot b/assets/fonts/Sermon-Manager.eot new file mode 100644 index 0000000000000000000000000000000000000000..e1f4226850d7e7efd85a30d569261743fc5320d1 GIT binary patch literal 1320 zcmaJ>OK1~O6g_VyY1&j$G5vs)GO@PSf@v}~NsC%)tEsIPrAoJUl8i|p$%G`8Rs>y$ zf*ZRM3W^)o)~yxc~tP z^(L?)Oy$~*dfm*m&A(n+I~)Ui$RY^?c|HaTOz>e2I?`A~4jM{SIx$bBgfer@90g$n z5wda*S5q`6Y{f&!2wlH9q_!P%4^ny0XCax_ie2+xo-nDK{8m~k7wM0Zo4z@nTfXz- ztJFfiME)_OYboE|&zpcWP9Dur@C?cy$j$i4Oun+@B_MynS9{J#Y8U`x(p&N)d2Oi( zFH~}Kex;!0_0^e{zvSOI$K#?=uCPy~_`G;WUAsFkvx_kWFhs*mXO4a2i8wy}haTM1N#B8ViTiu-e%%B1VNj z5b7Tj=R~Me^qz_YIy}9RfTu6u4@CUZnYgOPFRMb0=c^I7FC5)^P?g7Wawa>m^Gg!j z)zJZQuTQ?BPED!dxQMIOcd?0Bp!zB?bulwJ*;9QfM1tSy^t@JD_upVsf`eVe_Z{r! z;pDEhYMZFfIoOL~yv`<#ykQjTPx!oEDrb#?5)OtMAM1uy4aGSeiV( I_*?4nKU^xlng9R* literal 0 HcmV?d00001 diff --git a/assets/fonts/Sermon-Manager.svg b/assets/fonts/Sermon-Manager.svg new file mode 100644 index 0000000..f44ef6b --- /dev/null +++ b/assets/fonts/Sermon-Manager.svg @@ -0,0 +1,14 @@ + + + + Generated by IcoMoon + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/Sermon-Manager.ttf b/assets/fonts/Sermon-Manager.ttf new file mode 100644 index 0000000000000000000000000000000000000000..b40050ecc43efc8f8d18989878d567959dc43c6e GIT binary patch literal 1156 zcmaJ=OK1~O6g_V~O`A$8rXP?}5^HNM*d}9>w5X-FIv^MAp+8LS_||-B<>vPodE|NV1E&R5?K45y`)vx?fV|dR!<5X$r1LDcE#d-a znzMSD^E^koT){Yf5Ur4S2}Cx~+-f!%!wweBZ#@e4?d>ZdSkVwBQ5Tl$X;CdQJfcub3H-Cg5iLWHBS!AWsO#JWZQiA1z3(4U9~2BP6; zA}pQKHBG;$2~D>e2{jZ?Zrp9ilO?%OoZk8=iOt5ukhnb{U((WPEv^e)YrIWOr=pGL zne_R>%uHY7nGhMC)z|#0`X+p%M@sf{K{uNz5Zeje2 zkApahht4}y+87Bj<6((7?_-(xoR1aaJ3dy?4Su!m-WJB^eH_FXUKF#oW!q&Gk%bM5 z%SL&@tk#NlIT9a*G<7@RlrOC_Vqp(cecp#%ff11ojAT#w|< zvRO6iW-gLhiOgp0Icgh$?#`}rdY)~{t|9|<`W#~!tnfbT9$?Np05y7l(B8N55B>{+ CzOFw2 literal 0 HcmV?d00001 diff --git a/assets/fonts/Sermon-Manager.woff b/assets/fonts/Sermon-Manager.woff new file mode 100644 index 0000000000000000000000000000000000000000..d980a1597cfb428858838cafc85ffb4ccbaee399 GIT binary patch literal 1232 zcmaJ=O=uHQ5T3W2ZA>a@G5rB4Wn*ov1>0n8k`}epR<~9ug(|(;O|oVK$!!we5g5lr34y;2ijuxOOjoypy*ooO=bI=W=b&7uT+Udky@S z>z7YT$g!;)k#Y}yifiQR`%MQVIG%TyYj8+?w8Lm~b!40DKZLaI*L%){2N)`J)-_28jRF&8R(ol0w z3TtolIG!ZhB6Xv_L6a&JjCfO=Ty$YY7oZ-*IPQVvSv?e>F`Qw%l!8A-`WDr9>UD6q zD>18o?heQsA^^jPA*)SP@i~PkJuX`B_5VK?AgXVx4yNv)UOGx6DBID}cW59vno1|) zM#AXo9Ao1w8jBB1uoEoa#rlpUW1YdiWGvVpi^h^s<(O$0=2?RoW~r9cB8k-2&6+w< zRGq@q&Ub}v*Tx6g^?vo7F*9Q%OlBIjm+7f=toArFbK04n?yWsyEF<<2TRbbjh+b|x z`GZ<99Axw7nTLC)oRfpC@RGzTa7y9;@QTD5{4(NSC+;{DQ<`8l@+NtXJ|pmkN|6k4jLF+(o-wDR{1)7>?5-*;J+q5)eS0 z1PxQX>8+;Zf}LL}T4gk~G3W{v$)a-8Ow)6#dfs;JvQ@QndS*?Z&3bc~ZJ12ayNd34 flySvG7FBWPz-4F+c2+Df=P!U6@o^hJ$-npyRm!tQ literal 0 HcmV?d00001 diff --git a/assets/images/icons/sm-icon.svg b/assets/images/icons/sm-icon.svg deleted file mode 100644 index 8630209..0000000 --- a/assets/images/icons/sm-icon.svg +++ /dev/null @@ -1,9 +0,0 @@ - - sm-icon - - - - - diff --git a/includes/class-sm-post-types.php b/includes/class-sm-post-types.php index a6b8d21..dc05fed 100644 --- a/includes/class-sm-post-types.php +++ b/includes/class-sm-post-types.php @@ -221,7 +221,7 @@ public static function register_post_types() { 'publicly_queryable' => true, 'exclude_from_search' => false, 'show_in_menu' => true, - 'menu_icon' => SERMON_MANAGER_URL . 'assets/images/icons/sm-icon.svg', + 'menu_icon' => 'dashicons-sermon-manager', 'hierarchical' => false, 'rewrite' => array( 'slug' => $permalinks['wpfc_sermon'], 'with_front' => false ), 'query_var' => true, diff --git a/readme.txt b/readme.txt index 7a0ee25..eede1cb 100755 --- a/readme.txt +++ b/readme.txt @@ -94,13 +94,14 @@ Visit the [plugin homepage](https://wpforchurch.com/wordpress-plugins/sermon-man ## Changelog ## ### 2.8 ### +* Sermon Manager now supports PHP 5.5, 5.4 and 5.3, but we still recommend to use at least PHP 5.6 +* Changed: Show all options in filtering dropdown - even if they don't have associated sermon * Fix styles not loading when "[sermons]" shortcode is used without filters * Fix image_size not working in "[sermons]" shortcode * Fix compatibility with PHP 5.3 * Fix Recovery catching 3rd party errors * Fix 404 when "Common Base Slug" option is changed -* Changed: Show all options in filtering dropdown - even if they don't have associated sermon -* Sermon Manager now supports PHP 5.5, 5.4 and 5.3, but we still recommend to use at least PHP 5.6 +* Fix admin menu icon not being blue on hover ### 2.7.2 ### * Fix 404 on series, preacher, topic, book and service type pages diff --git a/sermons.php b/sermons.php index d0d57de..6be78bb 100755 --- a/sermons.php +++ b/sermons.php @@ -102,6 +102,12 @@ public function __construct() { // Fill empty sermon dates $this->fill_out_empty_dates(); + + if ( is_admin() ) { + add_action( 'admin_enqueue_scripts', function () { + wp_enqueue_style( 'sm-icon', SERMON_MANAGER_URL . 'assets/css/admin-icon.css', array(), SERMON_MANAGER_VERSION ); + } ); + } } /** From 55723719adc538383e0cc7b746da7a829ebd5829 Mon Sep 17 00:00:00 2001 From: Nikola Date: Mon, 2 Oct 2017 21:51:17 +0200 Subject: [PATCH 14/27] Use div instead of span for filtering --- includes/template-tags.php | 4 ++-- readme.txt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/includes/template-tags.php b/includes/template-tags.php index cb01329..9bcf71c 100755 --- a/includes/template-tags.php +++ b/includes/template-tags.php @@ -180,7 +180,7 @@ function render_wpfc_sorting( $args = array() ) {
    - +
    -
    +
    diff --git a/readme.txt b/readme.txt index eede1cb..2ed5913 100755 --- a/readme.txt +++ b/readme.txt @@ -102,6 +102,7 @@ Visit the [plugin homepage](https://wpforchurch.com/wordpress-plugins/sermon-man * Fix Recovery catching 3rd party errors * Fix 404 when "Common Base Slug" option is changed * Fix admin menu icon not being blue on hover +* Fix HTML syntax for filtering ### 2.7.2 ### * Fix 404 on series, preacher, topic, book and service type pages From 1b896a282149625f5fb49f2d0f53b1a806c2d05b Mon Sep 17 00:00:00 2001 From: Nikola Date: Tue, 3 Oct 2017 09:33:43 +0200 Subject: [PATCH 15/27] Fix PHP formatting --- views/archive-wpfc_sermon.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/archive-wpfc_sermon.php b/views/archive-wpfc_sermon.php index 16578e1..0d7a825 100644 --- a/views/archive-wpfc_sermon.php +++ b/views/archive-wpfc_sermon.php @@ -15,10 +15,10 @@ max_num_pages > 1 ) : ?> From 7150827ebeb5d05dfa3b1e2c1f95da8ee2472456 Mon Sep 17 00:00:00 2001 From: Nikola Date: Tue, 3 Oct 2017 09:39:33 +0200 Subject: [PATCH 16/27] Update language files --- languages/sermon-manager-de_DE.mo | Bin 25689 -> 0 bytes .../sermon-manager-for-wordpress-de_DE.mo | Bin 31573 -> 10279 bytes .../sermon-manager-for-wordpress-de_DE.po | 2121 +++++++---------- .../sermon-manager-for-wordpress-fr_FR.mo | Bin 11649 -> 3795 bytes .../sermon-manager-for-wordpress-fr_FR.po | 2090 ++++++---------- .../sermon-manager-for-wordpress-pl_PL.mo | Bin 30901 -> 10071 bytes .../sermon-manager-for-wordpress-pl_PL.po | 2103 +++++++--------- languages/sermon-manager-for-wordpress.pot | 1579 ++---------- languages/sermon-manager-pl_PL.mo | Bin 25211 -> 0 bytes 9 files changed, 2705 insertions(+), 5188 deletions(-) delete mode 100644 languages/sermon-manager-de_DE.mo delete mode 100644 languages/sermon-manager-pl_PL.mo diff --git a/languages/sermon-manager-de_DE.mo b/languages/sermon-manager-de_DE.mo deleted file mode 100644 index 6a81dcc2f0c2e49dae4df0a775cafc6e948a5fac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25689 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 diff --git a/languages/sermon-manager-for-wordpress-de_DE.mo b/languages/sermon-manager-for-wordpress-de_DE.mo index 93237b004148d9aa206f8c89f65837deb3707b12..6ef433e8a5b85149656066ae7a385923372877ed 100644 GIT binary patch literal 10279 zcmbW5dypJQea8n!vdLkSL?kBS5swj)EUdjd$ykp&30tQ(lFoLGc@$I;=RxK3 z?e3kO-CHT;Ox^E3{rGkFuYdjP?wS48rVWn;JdY!uej<%jvl^QG&9;DzwZ z@H+Sx@Wt>O@JHb@a18z@0!DpfDe+sI< zKZCd;_$E~Q@4$`lyHNgk4$5EG{74Yo0&jv_;0e!`=fhC_{|=-{@JCSn{yCICzXmnl zx1j8Q7Rvtb`SKUx4As9BZh~8&?Ahaa0&1T3K-q7g#>pUm!TtQBtKbnRJ3avjE0d^|#} zTMf$3d!WX-)7Rex`3vslpX%>}s(%Q|ufGB{-p8Tl^#`6`fr{sEc>b&B1`4IO8E%K$ zVF>SnuYw)VM?HTR%AbD?W#_kj{u%gE^8W_a-wSb)?70ytzXfW(yL|Z}D8J1@Tprv5 z6=yA9UqH3HAIgs(fEw=!_-gn`xCed}%ASol)%p=CzX{4eo1wLMiw@{3$rbrU>BK-t%Yio1uP^gaY-=WqG?ryxrae9iM;pyJ|M7GHWVhibnQDozhT^*ies`T7Fh zPWc1yDEvHB9B2{jyrAN2JH*w&G~5c$LqaHcD^y&65Grmz2W9V5Q1S6MQ2u%r%D(43 zU(BMa{T3*_DX4yrL)qDe>gVlH{{INnygmap-jk3i2mb)I-#7A4?Qij%h0-e^Qwlx| z6(662x<{UbT8F2h?E7~pKdF)>3N}HFI|)^P%;(QR`TZhf=-{1D_Wqi$|2-(Xzv}sq zQ2N(kjPzaxb)VIs?7AB&u2&!?1RsSV{36^4pN6vgpFF<{=`#2)D8Jprq{W?3>$M+h z-H$`f@4T;Hf|_3kYMtKU`93JU$D!=|7*s!>h1=j$@OAK6sPkzDg&W}{RDKWCx*UXR zKMUC!K?D^y_d)HyM?60T<&Q7<`ftOX5UjW~QydHTc(na(fcCi1o_bwxEMJ^!n#XAr^_anJYu}<*q$Ufv3 zkk=x;C-#XD$_IL6lb)YJ?m%Q)?>R}Lj!YpBBIl4t5j{2JH1am&6w-SXi*H8GAc{N1 zsGj>A>|R^68Wa>(b8 zzz8XjxA?MI_#WgjAgPxv!04;gR~IEkk+^NjQfPn5Iu^Gmmu1k zioXeD8QFl`j_6UG>e2nX+os&VN$>{bgNV)$Js&{M+7#~)o?GETpB8o@+CwwQ3Zi}d zDr5(unAUR%Ibc&k@XK%-xzp!g4V%ah`Mi)IM-iPFbI6;J4x&A(hj0#l3Au>uM-A=e{%7La?8$CcrEFY-R*HONEAFCy6+P4ChVOP7|AT$?#CO9;db-F{|O$yi6{p>BWIe9;VA-(KO*qyy&}DliXyn={Fp6&+n0s?LHZ5TEX+(hT`@h=`vsc72%Gx~&eW=H z>+0-4Zrp*os!gqy9UIKsxuZ_nj^0lV`3?m}w|;ZUs+0O9z2RNS(4fB3u0}W)<$2UF zfy*tJOT|>^GtQD3EvNnsTB4FXnCZ4!rihc^a5GJF6E0_IJ8Y+ULCU1_a; zmSbG0QiD^l3Vw-tX~lIV-CMzGku|(jD$R5yu9AIOm@HhpESvfnEkq?tC@DJn^$T{d z_`GvvaI(#khk3WtNi&v;2rZ&ZX_B^SO7YT?$@68F_Hx+m)bUe&s6{i%!$o6~upZ|T zd%AA>h={g+KjXp4gy9M{t0pWToQV>RJ8ud?rjZ9{h681=z_sdm%hq+$PPY}|1V!JV z;|J<}Qy&h)Ri%6LVAh>o4q+0tjV+pY2CJB))nCx*q5`|-rRMqwkPhR^m8F)m$2ND# zD`@zW&394S+3(2C$Y)am0mpZfdN7-Mmy}s=K{d}3RP>!4z95W~a3PEGrg~aeQ&eh7 zn<`y7Hsle~KtW4y=S+k_0V%{HvXWhXZ+bFe1O3{pS zW;>3iJ+ob>q16cHO_VJ)wJUt8*N@NIVCmJ3h#ap*pV~S7oI-XW=NE0L&<9yxv+tsw zW~tJNG95eXjR;rcq8Tow?RF#+yk5K8D&kH{chqPF?+0i4RaN{NjU0yNeVd1R@jel_ z80Ou+a0uOg&cbp-`*Pqssa+o~#09s$uUgP)q#3#@n=AV**V9(E;=Jf7CecdVh>F;* zh-z&Y)@Zvg>95SFs_Qp1I(0G^ak-1Q5Hl~Q-7L)G!UPKnHvU$dCNnAz zm!c$$cq2;O*0vjoc(zSe&7xY32X>xQft{iIp9kmc@u|@CDXn}pJ$QzBC9IPF`Z>9A zWT9QviekBpy|SKyz1t!?0l%$u==XNjxsK{N#+j5YbbblWaiw$AyPWss-LX3qu_>@= zud8$(nDNHArfYdP?Oe{{MzaXFEs>lqE8G#l9S}wdgX#{p8NE`vcZgmW=Z(3@H8iBM zn5A8H>(;$RC~Bd;x_Q(?0xI#Ux9rP_F!H71IvG2teEg}&zQTBsf7 z4MTBT)BDC$xO;Nf-rBCo+T?BFDK_TDug2TC{eKy5HTq-6yttd{W!=+}F<)%1zZsAyM zUtdq=Et{-%G+9dPEbCObZ!s>$=33n>YSoUVS(}q2>DX+3aQAfRk_T@|!kZ6E zy|H%OB!-hxQ=ChU-oJK_PmaHq8keojvs;(UVQ0Zq=u9YUPnpYFs{AxZ$W(aY!t@2x zZ#om@oUcW5DjXm0m%8J7j`G?hHKQtyURr8(*(Fkl6PwN_4xgFXJr-zj<88@e-kBzn z*SgEwy4`kbx?vLT{H}e^tjCRFFmtH8oJ7sGxpKRSL?{2K9`kUf%boW;tHODmEF)X# zRahpDuDo))yw{KqymsU!cqBGSUPQe6jj}H+t9gMOrI3dl)9q+o-FjDqY29QY(Mh}| z_vl~|BbI*N#irye*VT&tMSy#YD&Ga#C zTCU2jj&E0;*IaiM`Y<)|9HahHLqG zG#v2F|EHyofaf!2#nZzh9yiU1Pdet%b_WQ_wQf5+VX`h~Zr0*TW=VLvT{OI5Bmo;> zv7hs^sTSFlsHhCCOjXlu=!)uy-m31Zw)N$5MpP{?r&=vkU=3)^a@p%tTehFGoR7*| zLkCKnfdfUZt6ovh;9hZ^1=mRvDW1UW3`*rO=z;^wAIK=%vjOIq8ssY8S`;U zkYA;hKgF|mZ zXx8Mb1iJ_CEUQ-b;Oew^!wvlX)ISw$Lw8UO>-HvXd&|OEKElJ&_4u0PH z)ufAZ=z-Ge%2c%n%6r%2KuZ^V14W~U@TE4|n813I3cJGwYO3C^w(t%gD9TJiOt(!l z)A!|o;TkJErC$MxC|DR&?78Pk^&`w4R`n`X`-fH5O{7$?{?i9}%y&R4%_B^>LlKi|{+mwVc+b@2cPmVOdJd-xsH z{zhP0{6?Tl(f-E{*0pjaQD85_5k=);I;3xxWT>p_^3hcaf@r9!^xaUowRflt_u1)l z(rX)+2XUO(1_&2*`0-(kjsdvJ`(vz}}FmArqJr@37o1&%#@ddtj@1i7i42xT4< z`0+X6+SiBH+W3t9>A`Z;PY<@DzqFkE;c0C`droc5T?d#Mu5L^9eyUTbXmJg)vQi`# u?Dtv{t{Qt+=zL?IID(%X>cvi8V>mSVHmB!Kme#v#?)6~CG_rVkIrv}q%CRp1 literal 31573 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 RqNDx`E0abL&)nqTzX95qB-#J~ diff --git a/languages/sermon-manager-for-wordpress-de_DE.po b/languages/sermon-manager-for-wordpress-de_DE.po index a23e8d8..dcf38c2 100644 --- a/languages/sermon-manager-for-wordpress-de_DE.po +++ b/languages/sermon-manager-for-wordpress-de_DE.po @@ -4,235 +4,86 @@ msgid "" msgstr "" "Project-Id-Version: sermon-manager-for-wordpress\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/sermon-manager-for-wordpress\n" -"POT-Creation-Date: 2017-10-01 07:03:00+0200\n" -"PO-Revision-Date: 2017-10-02 11:18:00+0200\n" +"POT-Creation-Date: 2017-10-03 09:37+0200\n" +"PO-Revision-Date: 2017-10-03 09:37+0200\n" "Last-Translator: GITNE \n" "Language-Team: WP for Church\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" - -#. translators: %s see msgid "View sermon", effectively View sermon -#: includes/admin-functions.php:124 -msgid "Sermon updated. %s" -msgstr "Predigt aktualisiert. %s" - -#: includes/admin-functions.php:124 includes/admin-functions.php:130 -#: includes/admin-functions.php:136 includes/class-sm-post-types.php:201 -#: includes/class-sm-post-types.php:202 -msgid "View sermon" -msgstr "Predigt ansehen" - -#: includes/admin-functions.php:125 -msgid "Custom field updated." -msgstr "Benutzerdefiniertes Feld aktualisiert." - -#: includes/admin-functions.php:126 -msgid "Custom field deleted." -msgstr "Benutzerdefiniertes Feld gelöscht." - -#: includes/admin-functions.php:127 -msgid "Sermon updated." -msgstr "Predigt aktualisiert." - -#: includes/admin-functions.php:129 -msgid "Sermon restored to revision from %s" -msgstr "Predigt von Revision %s wiederhergestellt" - -#. translators: %s see msgid "View sermon", effectively View sermon -#: includes/admin-functions.php:130 -msgid "Sermon published. %s" -msgstr "Predigt veröffentlicht. %s" - -#: includes/admin-functions.php:131 -msgid "Sermon saved." -msgstr "Predigt gespeichert." - -#: includes/admin-functions.php:132 includes/admin-functions.php:135 -msgid "Preview sermon" -msgstr "Vorschau ansehen" - -#. translators: %s see msgid "Preview sermon", effectively Preview sermon -#: includes/admin-functions.php:132 -msgid "Sermon submitted. %s" -msgstr "Predigt abgeschickt. %s" - -#. translators: %1$s see msgid "%1$s at %2$s", effectively at -#. translators: %2$s see msgid "Preview sermon", effectively Preview sermon -#: includes/admin-functions.php:133 -msgid "Sermon scheduled for: %1$s. %2$s" -msgstr "Predigt eingeplant für %1$s. %2$s" - -#. translators: %1$s date -#. translators: %2$s time -#: includes/admin-functions.php:134 includes/admin-functions.php:135 -msgid "%1$s at %2$s" -msgstr "%1$s um %2$s Uhr" - -#. translators: %s see msgid "Preview sermon", effectively Preview sermon -#: includes/admin-functions.php:136 -msgid "Sermon draft updated. %s" -msgstr "Predigtentwurf aktualisiert. %s" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.0.4\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: includes/CMB2\n" #: includes/admin-functions.php:189 msgid "Sermon Title" msgstr "Predigttitel" -#. translators: %s: Preachers label (sentence case; plural) #: includes/admin-functions.php:191 includes/class-sm-post-types.php:44 #: includes/class-sm-post-types.php:47 includes/class-sm-post-types.php:49 +#, php-format msgid "%s" msgstr "" -#: includes/admin-functions.php:191 includes/admin-functions.php:192 -#: includes/types-taxonomies.php:120 includes/types-taxonomies.php:121 -#: includes/types-taxonomies.php:122 +#: includes/admin-functions.php:192 includes/types-taxonomies.php:120 +#: includes/types-taxonomies.php:121 includes/types-taxonomies.php:122 msgid "Sermon Series" msgstr "Predigtserie" -#: includes/admin-functions.php:192 includes/admin-functions.php:193 -#: includes/class-sm-post-types.php:104 includes/class-sm-post-types.php:106 +#: includes/admin-functions.php:193 includes/class-sm-post-types.php:104 +#: includes/class-sm-post-types.php:106 msgid "Topics" msgstr "Themen" -#: includes/admin-functions.php:193 includes/admin-functions.php:194 +#: includes/admin-functions.php:194 msgid "Views" msgstr "Einblendungen" -#: includes/admin-functions.php:194 includes/admin-functions.php:195 -#: includes/sm-cmb-functions.php:85 includes/types-taxonomies.php:301 +#: includes/admin-functions.php:195 msgid "Date Preached" msgstr "Gehalten am" -#: includes/admin-functions.php:195 includes/admin-functions.php:196 +#: includes/admin-functions.php:196 msgid "Bible Passage" msgstr "Bibelstelle" -#. translators: %s see msgid "Error:" -#: includes/admin-functions.php:212 includes/admin-functions.php:213 -msgid "%s Can’t find sermon ID." -msgstr "%s Die Predigt‑ID kann nicht gefunden werden" - -#: includes/admin-functions.php:212 includes/admin-functions.php:213 -#: includes/admin-functions.php:252 includes/admin-functions.php:253 -msgid "Error:" -msgstr "Fehler:" - -#: includes/admin-functions.php:290 includes/class-sm-post-types.php:193 -#: includes/types-taxonomies.php:59 -msgid "Sermon" -msgstr "Predigt" - -#: includes/admin-functions.php:306 includes/admin-functions.php:307 -msgid "%s sermon" -msgid_plural "%s sermons" -msgstr[0] "%s Predigt" -msgstr[1] "%s Predigten" - -#. translators: %s: Plugin name -#: includes/class-sm-error-recovery.php:200 -msgid "%s encountered a fatal error and recovered successfully." -msgstr "" -"„%s“ hat einen schwerwiegenden Fehler festgestellt und ihn " -"erfolgreich korrigiert." - -#: includes/class-sm-error-recovery.php:203 -msgid "The issue has already been submitted." -msgstr "Dieses Problem wurde bereits gemeldet." - -#: includes/class-sm-error-recovery.php:208 -msgctxt "Button" -msgid "Send an anonymous report" -msgstr "Anonymen Bericht senden" - -#: includes/class-sm-error-recovery.php:212 -msgctxt "Button" -msgid "Show error message" -msgstr "Fehlermeldung anzeigen" - -#: includes/class-sm-error-recovery.php:215 -msgctxt "Button" -msgid "Reactivate Plugin" -msgstr "Plug‑in reaktivieren" - -#: includes/class-sm-error-recovery.php:222 -msgctxt "Title" -msgid "Are you sure?" -msgstr "Bist du sicher?" - -#: includes/class-sm-error-recovery.php:224 -msgid "" -"If the issue is not fixed, website will crash. (but we will recover it again)" -msgstr "" -"Falls das Problem nicht behoben wurde, wird die Webseite abstürzen (sie " -"wird jedoch wiederhergestellt werden)." - -#: includes/class-sm-error-recovery.php:226 -msgctxt "title" -msgid "Optional info" -msgstr "Optionale Angaben" - -#: includes/class-sm-error-recovery.php:228 -msgid "" -"If you have more information about the issue, please type it here (optional):" -msgstr "" -"Falls du weitere Angaben über das Problem hast, dann gib sie bitte hier " -"ein (optional):" - -#: includes/class-sm-error-recovery.php:230 -msgctxt "Label" -msgid "Issue details" -msgstr "Problemdetails" - -#: includes/class-sm-error-recovery.php:232 -msgctxt "Placeholder" -msgid "Steps for how to reproduce, etc…" -msgstr "Schritte zur Reproduktion, etc." - -#: includes/class-sm-error-recovery.php:233 -msgid "Email for further contact (optional)" -msgstr "E&8209;mail für Rückfragen (optional)" - -#: includes/class-sm-error-recovery.php:234 -msgid "name@example.com" -msgstr "name@beispiel.com" - -#: includes/class-sm-error-recovery.php:235 -msgctxt "Label" -msgid "Email" -msgstr "E‑Mail" - -#: includes/class-sm-post-types.php:51 -msgctxt "Admin menu name" -msgid "%s" -msgstr "" - #: includes/class-sm-post-types.php:53 includes/types-taxonomies.php:96 +#, php-format msgid "Search %s" msgstr "%s durchsuchen" #: includes/class-sm-post-types.php:55 includes/types-taxonomies.php:98 +#, php-format msgid "All %s" msgstr "Alle %s" #: includes/class-sm-post-types.php:59 includes/types-taxonomies.php:99 +#, php-format msgid "Edit %s" msgstr "%s bearbeiten" #: includes/class-sm-post-types.php:61 includes/types-taxonomies.php:100 +#, php-format msgid "Update %s" msgstr "%s aktualisieren" #: includes/class-sm-post-types.php:63 includes/types-taxonomies.php:101 +#, php-format msgid "Add new %s" msgstr "Neue/n %s hinzufügen" #: includes/class-sm-post-types.php:65 +#, php-format msgid "New %s name" msgstr "Neue %s‑bezeichnung" #: includes/class-sm-post-types.php:67 +#, php-format msgid "No %s found" msgstr "Kein %s gefunden" @@ -241,11 +92,6 @@ msgstr "Kein %s gefunden" msgid "Series" msgstr "Serie" -#: includes/class-sm-post-types.php:83 -msgctxt "Admin menu name" -msgid "Series" -msgstr "Serie" - #: includes/class-sm-post-types.php:84 msgid "Search series" msgstr "Serien durchsuchen" @@ -278,11 +124,6 @@ msgstr "Es wurden keine Serie gefunden" msgid "Topic" msgstr "Thema" -#: includes/class-sm-post-types.php:108 -msgctxt "Admin menu name" -msgid "Topics" -msgstr "Themen" - #: includes/class-sm-post-types.php:109 msgid "Search topics" msgstr "Themen durchsuchen" @@ -323,11 +164,6 @@ msgstr "Bücher der Bibel" msgid "Book" msgstr "Buch" -#: includes/class-sm-post-types.php:133 -msgctxt "Admin menu name" -msgid "Books" -msgstr "Bücher" - #: includes/class-sm-post-types.php:134 msgid "Search books" msgstr "Bücher durchsuchen" @@ -360,17 +196,11 @@ msgstr "Es wurden keine Bücher gefunden" msgid "Service Types" msgstr "Dienstarten" -#: includes/class-sm-post-types.php:157 includes/sm-cmb-functions.php:93 -#: includes/types-taxonomies.php:201 includes/types-taxonomies.php:202 -#: includes/types-taxonomies.php:203 includes/types-taxonomies.php:309 +#: includes/class-sm-post-types.php:157 includes/types-taxonomies.php:201 +#: includes/types-taxonomies.php:202 includes/types-taxonomies.php:203 msgid "Service Type" msgstr "Dienstart" -#: includes/class-sm-post-types.php:158 -msgctxt "Admin menu name" -msgid "Service Types" -msgstr "Dienstarten" - #: includes/class-sm-post-types.php:159 includes/types-taxonomies.php:204 msgid "Search service types" msgstr "Dienstarten durchsuchen" @@ -399,21 +229,19 @@ msgstr "Neue Dienstartbezeichnung" msgid "No service types found" msgstr "Es wurden keine Dienstarten gefunden" -#: includes/class-sm-post-types.php:192 includes/options.php:291 -#: includes/options.php:300 includes/types-taxonomies.php:58 -#: includes/types-taxonomies.php:68 views/archive-wpfc_sermon.php:13 +#: includes/class-sm-post-types.php:192 includes/types-taxonomies.php:58 +#: includes/types-taxonomies.php:68 msgid "Sermons" msgstr "Predigten" +#: includes/class-sm-post-types.php:193 includes/types-taxonomies.php:59 +msgid "Sermon" +msgstr "Predigt" + #: includes/class-sm-post-types.php:194 msgid "All Sermons" msgstr "Alle Predigten" -#: includes/class-sm-post-types.php:195 -msgctxt "Admin menu name" -msgid "Sermons" -msgstr "Predigten" - #: includes/class-sm-post-types.php:196 includes/types-taxonomies.php:60 msgid "Add New" msgstr "Neue Predigt" @@ -422,12 +250,7 @@ msgstr "Neue Predigt" msgid "Add new sermon" msgstr "Neue Predigt hinzufügen" -#: includes/class-sm-post-types.php:198 views/archive-wpfc_sermon.php:61 -#: views/archive-wpfc_sermon.php:62 views/single-wpfc_sermon.php:35 -#: views/taxonomy-wpfc_bible_book.php:89 views/taxonomy-wpfc_preacher.php:95 -#: views/taxonomy-wpfc_sermon_series.php:96 -#: views/taxonomy-wpfc_sermon_topics.php:96 -#: views/taxonomy-wpfc_service_type.php:89 +#: includes/class-sm-post-types.php:198 views/single-wpfc_sermon.php:35 msgid "Edit" msgstr "Bearbeiten" @@ -439,6 +262,10 @@ msgstr "Predigt bearbeiten" msgid "New sermon" msgstr "Neue Predigt" +#: includes/class-sm-post-types.php:201 includes/class-sm-post-types.php:202 +msgid "View sermon" +msgstr "Predigt ansehen" + #: includes/class-sm-post-types.php:203 msgid "Search sermon" msgstr "Predigten durchsuchen" @@ -492,703 +319,46 @@ msgid "This is where you can add new sermons to your website." msgstr "Hier kannst du neue Predigten zu deiner Seite hinzufügen." #: includes/helper-functions.php:193 includes/template-tags.php:129 -#: includes/template-tags.php:400 includes/template-tags.php:426 -#: includes/template-tags.php:439 includes/template-tags.php:465 +#: includes/template-tags.php:400 includes/template-tags.php:439 msgid "Series: " msgstr "Serie: " -#: includes/options.php:74 includes/options.php:81 +#: includes/options.php:82 msgid "Sermon Manager Settings" msgstr "Einstellungen der Predigtverwaltung" -#: includes/options.php:81 includes/options.php:94 includes/options.php:101 -#: includes/options.php:761 includes/options.php:770 -#: includes/taxonomy-images/taxonomy-images.php:333 -#: includes/taxonomy-images/taxonomy-images.php:1238 +#: includes/options.php:82 includes/options.php:102 msgid "Settings" msgstr "Einstellungen" -#: includes/options.php:99 includes/options.php:106 -msgid "Support" -msgstr "Hilfe" - -#: includes/options.php:108 includes/options.php:115 -#: includes/taxonomy-images/taxonomy-images.php:1263 +#: includes/options.php:116 includes/taxonomy-images/taxonomy-images.php:1263 msgid "Manage Settings" msgstr "Einstellungen" -#: includes/options.php:197 includes/options.php:204 -msgid "Sermon Manager Options" -msgstr "Einstellungen der Predigtverwaltung" - -#: includes/options.php:203 includes/options.php:209 -msgid "General" -msgstr "Allgemein" - -#: includes/options.php:205 includes/options.php:211 -msgid "Verse" -msgstr "Vers" - -#: includes/options.php:207 includes/options.php:213 -msgid "Podcast" -msgstr "" - -#: includes/options.php:213 includes/options.php:219 -msgid "Options saved" -msgstr "Einstellungen gespeichert." - -#: includes/options.php:222 includes/options.php:228 -msgid "Need Some Help?" -msgstr "Etwas Hilfe nötig?" - -#. translators: %s see msgid "Sign up" -#: includes/options.php:224 includes/options.php:230 -msgid "" -"Did you know you can get expert support for only $49 per year! %s today and " -"get support from the developers who are building the Sermon Manager." -msgstr "" -"Schon gewusst? Bereits für nur $49 jährlich ist Kundenunterstü" -"tzung von Experten zu haben. Noch heute %s und Unterstützung von den " -"Entwicklern der Predigtverwaltung für Wordpress erhalten." - -#: includes/options.php:224 includes/options.php:230 -msgid "Sign up" -msgstr "registrieren" - -#: includes/options.php:227 includes/options.php:233 -msgid "Free Support" -msgstr "Kostenlose Unterstützung" - -#: includes/options.php:228 includes/options.php:234 -msgid "Priority Support" -msgstr "Bevorzugte Unterstützung" - -#: includes/options.php:231 includes/options.php:237 -msgid "We offer limited free support via WordPress.org" -msgstr "" -"Wir bieten begrenzt kostenlose Unterstützung über WordPress.org an." - -#: includes/options.php:238 includes/options.php:243 -msgid "Frequently Asked Questions" -msgstr "Häufig gestellte Fragen" - -#. translators: %s see msgid "Knowledge base" -#: includes/options.php:253 includes/options.php:259 -msgid "Find out more in our %s" -msgstr "Finde weiteres in unserer %s heraus" - -#: includes/options.php:253 includes/options.php:259 -msgid "knowledge base" -msgstr "Wissensbasis" - -#: includes/options.php:259 includes/options.php:265 -msgid "Lets Make It Even Better!" -msgstr "Lasst uns es noch besser machen!" - -#: includes/options.php:264 includes/options.php:270 -msgid "Submit Your Idea" -msgstr "Idee übermitteln" - -#: includes/options.php:267 -msgid "" -"If you have ideas on how to make Sermon Manager or any of our products " -"better, let us know!" -msgstr "" -"Sie haben Ideen zur Verbesserung der Predigtverwaltung für Wordpress " -"oder unser anderen Produkte? Lassen Sie es uns wissen!" - -#: includes/options.php:277 includes/options.php:283 -msgid "General Settings" -msgstr "Allgemeine Einstellungen" - -#: includes/options.php:281 includes/options.php:287 -msgid "Archive Page Title" -msgstr "Titel der Archivseite" - -#: includes/options.php:289 includes/options.php:296 -msgid "Archive Page Slug" -msgstr "Titelform der Archivseite" - -#: includes/options.php:291 includes/options.php:300 includes/options.php:490 -#: includes/options.php:494 includes/options.php:500 includes/options.php:504 -#: includes/options.php:510 includes/options.php:514 includes/options.php:520 -#: includes/options.php:524 includes/options.php:555 includes/options.php:559 -#: includes/options.php:603 includes/options.php:607 includes/options.php:616 -#: includes/options.php:620 includes/options.php:648 includes/options.php:661 +#: includes/options.php:495 includes/options.php:505 includes/options.php:515 +#: includes/options.php:525 includes/options.php:560 includes/options.php:608 +#: includes/options.php:621 includes/options.php:649 includes/options.php:662 +#, php-format msgid "e.g. %s" msgstr "z.B. %s" -#. translators: %1$s see msgid "sermons/preacher", effectively sermons/preacher -#. translators: %2$s see msgid "sermons/series", effectively sermons/series -#: includes/options.php:297 includes/options.php:305 -msgid "" -"Common Base Slug — this is for users who want to have a common base " -"slug across all taxonomies, e.g. %1$s or %2$s." -msgstr "" -"Gemeinsame Grundtitelform — dies ist für Benutzer, die eine " -"gemeinsame Grundtitelform über alle Gruppierungen hinweg haben wollen, " -"also z.B. %1$s oder %2$s." - -#: includes/options.php:297 includes/options.php:305 -msgid "sermons/preacher" -msgstr "predigten/prediger" - -#: includes/options.php:297 includes/options.php:305 -msgid "sermons/series" -msgstr "predigten/serien" - -#: includes/options.php:302 includes/options.php:310 -msgid "Enable a common base slug across all taxonomies" -msgstr "" -"Gemeinsame Grundtitelform über alle Gruppierungen hinweg aktivieren" - -#: includes/options.php:308 includes/options.php:316 -msgid "" -"Enable Template Files — this is for users upgrading from an older " -"version who have issues with version 1.5+." -msgstr "" -"Vorlagendateien aktivieren — Diese Option ist für Benutzer, die " -"von einer älteren Version aktualisieren und Probleme mit Version 1.5+ " -"haben." - -#. translators: %s effectively /views -#. Since /views is a locale independent folder name it MUST NOT be localized -#: includes/options.php:313 includes/options.php:321 -msgid "Enable template files found in the %s folder" -msgstr "Im Ordner %s gefundene Vorlagendateien aktivieren" - -#: includes/options.php:319 includes/options.php:327 -msgid "Disable Sermon Styles" -msgstr "CSS‑Stile deaktivieren" - -#. translators: %s effectively sermons.css -#. Since sermons.css is a locale independent file name it MUST NOT be localized -#: includes/options.php:324 includes/options.php:332 -msgid "" -"Disable Sermon CSS. If you do this, you should copy the styles from %s and " -"include them in your theme CSS." -msgstr "" -"CSS‑Stile der Predigtverwaltung deaktivieren. Wird diese Option " -"aktiviert, sollten die Stile aus der Datei %s im Pluginordner in die " -"CSS‑Datei des Themes kopiert werden." - -#: includes/options.php:338 -msgid "Display audio player or video on archive pages" -msgstr "Einen Audiospieler oder Video auf Archivseiten einblenden" - -#: includes/options.php:343 -msgid "Display an audio player or video embed in the archive listing." -msgstr "" -"Audiospieler oder ein eingebettetes Video in der Archivliste einblenden" - -#: includes/options.php:349 includes/options.php:354 -msgid "Use old audio player" -msgstr "Alten Audiospieler verwenden" - -#: includes/options.php:352 includes/options.php:360 -msgid "" -"Custom label for “Preacher”. Note: it will also change preacher " -"slugs." -msgstr "" -"Benutzerdefinierter Begriff für „Prediger/in“. Hinweis: " -"Dies wird auch die Prediger/innentitelform ändern." - -#: includes/options.php:360 includes/options.php:368 -msgid "Sermon date format (used when creating a new Sermon)" -msgstr "" -"Datumformat des Datums, an dem die Predigt gehalten wurde (wird bei der " -"Erstellung einer neuen Predigt verwendet)" - -#: includes/options.php:389 includes/options.php:395 -msgid "Show key verse in widget" -msgstr "Schlüsselvers im Widget darstellen" - -#: includes/options.php:393 includes/options.php:401 -msgid "Version %s" -msgstr "Version %s" - -#: includes/options.php:405 includes/options.php:406 -msgid "Current Version" -msgstr "Aktuelle Version" - -#: includes/options.php:413 includes/options.php:414 -msgid "Verse Settings" -msgstr "Verseinstellungen" - -#: includes/options.php:418 includes/options.php:419 -msgid "Verse Popups" -msgstr "Verseinblendungen" - -#: includes/options.php:424 includes/options.php:425 -msgid "Disable Bib.ly verse popups" -msgstr "Bib.ly‑Einblendungen deaktivieren" - -#: includes/options.php:430 includes/options.php:431 -msgid "Select Bible Version for Verse Popups" -msgstr "Bibelversion für Verseinblendungen auswählen" - -#. translators: %1$s effectively ESV -#. translators: %2$s effectively NET -#. translators: %3$s effectively KJV -#. translators: %4$s effectively LEB -#. translators: %5$s see msgid "bib.ly", effectively bib.ly -#: includes/options.php:444 includes/options.php:452 -msgid "%1$s, %2$s, %3$s, or %4$s are the currently supported popups for %5$s." -msgstr "" -"Nur %1$s, %2$s, %3$s, oder %4$s werden für Einblendungen aus %5$s " -"unterstützt." - -#: includes/options.php:449 includes/options.php:457 -msgid "bib.ly" -msgstr "Bib.ly" - -#. translators: %s see effectively ESV -#: includes/options.php:451 includes/options.php:459 -msgid "Warning! %s is not supported if your site uses SSL (HTTPS)." -msgstr "" -"WARNUNG: %s wird nicht unterstützt, wenn die Website SSL (HTTPS) " -"verwendet." - -#: includes/options.php:464 includes/options.php:468 -msgid "Podcast Settings" -msgstr "Podcasteinstellungen" - -#: includes/options.php:486 includes/options.php:490 -msgid "Title" -msgstr "Titel" - -#: includes/options.php:496 includes/options.php:500 -#: includes/sm-cmb-functions.php:107 includes/types-taxonomies.php:323 -msgid "Description" -msgstr "Beschreibung" - -#: includes/options.php:506 includes/options.php:510 -msgid "Website Link" -msgstr "Webseite" - -#: includes/options.php:516 includes/options.php:520 -msgid "Language" -msgstr "Sprache" - -#: includes/options.php:526 includes/options.php:530 -msgid "Copyright" -msgstr "Urheberrechtshinweis" - -#: includes/options.php:530 includes/options.php:534 +#: includes/options.php:535 +#, php-format msgid "e.g. Copyright © %s" msgstr "z.B. Copyright © %s" -#. translators: %s &copy; -#: includes/options.php:535 includes/options.php:539 -msgid "Tip: Use %s to generate a copyright symbol." -msgstr "Tipp: Verwende %s, um ein Copyright‑Symbol zu erzeugen." - -#: includes/options.php:541 includes/options.php:545 -msgid "Webmaster Name" -msgstr "Name des Webmasters" - -#: includes/options.php:545 includes/options.php:549 -msgid "e.g. Your Name" -msgstr "z.B. Dein Name" - -#: includes/options.php:551 includes/options.php:555 -msgid "Webmaster Email" -msgstr "E‑Mail des Webmasters" - -#: includes/options.php:561 includes/options.php:565 -msgid "Author" -msgstr "Autor" - -#: includes/options.php:565 includes/options.php:569 -msgid "e.g. Primary Speaker or Church Name" -msgstr "z.B. Hauptredner/in oder Name der Gemeinde" - -#: includes/options.php:569 includes/options.php:573 -msgid "This will display at the “Artist” in the iTunes Store." -msgstr "Dies wird als „Künstler“ im iTunes Store angezeigt." - -#: includes/options.php:574 includes/options.php:578 -msgid "Subtitle" -msgstr "Untertitel" - -#: includes/options.php:578 includes/options.php:582 +#: includes/options.php:583 +#, php-format msgid "e.g. Preaching and teaching audio from %s" msgstr "z.B. Predigten und Lehre von %s" -#: includes/options.php:582 includes/options.php:586 -msgid "" -"Your subtitle should briefly tell the listener what they can expect to hear." -msgstr "" -"Der Untertitel sollte dem Hörer oder der Hörerin einen knappen " -"Eindruck vermitteln, was er oder sie erwarten kann." - -#: includes/options.php:587 includes/options.php:591 -msgid "Summary" -msgstr "Zusammenfassung" - -#: includes/options.php:591 includes/options.php:595 +#: includes/options.php:596 +#, php-format msgid "e.g. Weekly teaching audio brought to you by %s in City, State." msgstr "" "z.B. die wöchentlichen Lehraufnahmen werden von %s in Stadt, Bundesland " "produziert." -#: includes/options.php:594 includes/options.php:598 -msgid "" -"Keep your Podcast Summary short, sweet and informative. Be sure to include a " -"brief statement about your mission and in what region your audio content " -"originates." -msgstr "" -"Halte Deine Podcastzusammenfassung kurz, erfrischend und informativ. " -"Erwähne auch was euer Ziel ist und woher die Audioinhalte kommen." - -#: includes/options.php:599 includes/options.php:603 -msgid "Owner Name" -msgstr "Besitzername" - -#: includes/options.php:607 includes/options.php:611 -msgid "This should typically be the name of your Church." -msgstr "Das sollte normalerweise der Name der Gemeinde sein." - -#: includes/options.php:612 includes/options.php:616 -msgid "Owner Email" -msgstr "E‑Mail" - -#: includes/options.php:620 includes/options.php:624 -msgid "" -"Use an email address that you don’t mind being made public. If someone " -"wants to contact you regarding your Podcast this is the address they will " -"use." -msgstr "" -"Verwende eine E‑Mail‑Adresse, welche auf öffentlich gemacht " -"werden kann. Wenn Dich jemand bezüglich des Podcasts kontaktieren " -"möchte, wird das über diese Adresse geschehen." - -#: includes/options.php:625 includes/options.php:629 -msgid "Cover Image" -msgstr "Bild" - -#: includes/options.php:632 includes/options.php:636 -msgid "Upload Image" -msgstr "Bild hochladen" - -#: includes/options.php:635 includes/options.php:639 -msgid "" -"This JPG will serve as the Podcast artwork in the iTunes Store. The image " -"must be between 1,400px by 1,400px and 3,000px by 3,000px or else iTunes " -"will not accept your feed." -msgstr "" -"Dieses JPG dient als Podcast‑Cover im iTunes Store. Die Bildauflö" -"sung sollte zwischen 1.400px mal 1.400px und 3.000px mal 3.000px sein, " -"ansonsten wird iTunes den Feed nicht akzeptieren." - -#: includes/options.php:640 includes/options.php:644 -msgid "Top Category" -msgstr "Oberste Kategorie" - -#: includes/options.php:648 includes/options.php:652 -msgid "" -"Choose the appropriate top-level category for your Podcast listing in iTunes." -msgstr "" -"Wähle eine passende Oberkategorie für den Podcasteintrag in iTunes." - -#: includes/options.php:653 includes/options.php:657 -msgid "Sub Category" -msgstr "Unterkategorie" - -#: includes/options.php:661 includes/options.php:665 -msgid "Choose the appropriate sub category for your Podcast listing in iTunes." -msgstr "" -"Wähle eine passende Unterkategorie für den Podcasteintrag in " -"iTunes." - -#: includes/options.php:666 includes/options.php:670 -msgid "PodTrac Tracking" -msgstr "PodTrac‑Nachverfolung" - -#: includes/options.php:671 includes/options.php:675 -msgid "Enables PodTrac tracking." -msgstr "PodTrac‑Nachverfolung aktivieren" - -#. translators: %s podtrac.com -#: includes/options.php:675 includes/options.php:679 -msgid "For more info on PodTrac or to sign up for an account, visit %s" -msgstr "" -"Auf %s können weitere Informationen über PodTrac eingeholt oder " -"ein Konto eingerichtet werden." - -#: includes/options.php:680 includes/options.php:684 -msgid "HTML in description" -msgstr "HTML in Beschreibung" - -#: includes/options.php:686 includes/options.php:690 -msgid "Enable HTML description" -msgstr "HTML‑Beschreibung aktivieren" - -#: includes/options.php:690 includes/options.php:694 -msgid "" -"Enables showing of HTML in iTunes description field. Uncheck if description " -"looks messy." -msgstr "" -"Aktiviert die Anzeige von HTML‑Beschreibungen in iTunes. Falls die " -"Beschreibung durcheinander aussieht, dann sollte die Einstellung deaktiviert " -"bleiben." - -#: includes/options.php:695 includes/options.php:699 -msgid "Number of podcasts to show" -msgstr "Anzahl der anzuzeigenden Podcasteinträge" - -#: includes/options.php:704 includes/options.php:708 -msgid "" -"Shows custom podcast count. If not defined, it uses WordPress default count." -msgstr "" -"Zeigt eine benutzerdefinierte Anzahl an Podcasteinträgen. Wird keine " -"Anzahl festgelegt, wird die WordPress‑Standardanzahl verwendet." - -#: includes/options.php:715 -msgid "Feed URL to Submit to iTunes" -msgstr "Bei iTunes einzureichende Feed‑URL" - -#: includes/options.php:722 includes/options.php:725 -msgid "Feed Validator" -msgstr "Feed‑Validator" - -#. translators: %s Feed Validator link, see msgid "Feed Validator" -#: includes/options.php:722 includes/options.php:725 -msgid "" -"Use the %s to diagnose and fix any problems before submitting your Podcast " -"to iTunes." -msgstr "" -"Bevor der Podcast bei iTunes eingereicht wird, kann der %s verwendet werden, " -"um Probleme zu finden und zu beheben." - -#. translators: %s see msgid "Submit Your Podcast" -#: includes/options.php:725 includes/options.php:728 -msgid "" -"Once your Podcast Settings are complete and your Sermons are ready, it’" -"s time to %s to the iTunes Store!" -msgstr "" -"Nachdem die Podcasteinstellungen komplett und die Predigten fertig sind, ist " -"es Zeit %s!" - -#: includes/options.php:725 includes/options.php:728 -msgid "Submit Your Podcast" -msgstr "den Podcast beim iTunes Store einzureichen" - -#. translators: %s see msgid "FeedBurner" -#: includes/options.php:727 includes/options.php:731 -msgid "" -"Alternatively, if you want to track your Podcast subscribers, simply pass " -"the Podcast Feed URL above through %s. FeedBurner will then give you a new " -"URL to submit to iTunes instead." -msgstr "" -"Alternativ, wenn Du die Aktivität deiner Podcasthörerinnen und " -"‑Hörer nachverfolgen möchtest, leite die Feed‑URL " -"durch %s. FeedBurner gibt Dir dann eine neue URL, die Du dann stattdessen " -"bei iTunes einreichen kannst." - -#: includes/options.php:727 includes/options.php:731 -msgid "FeedBurner" -msgstr "" - -#. translators: %s see msgid "iTunes FAQ for Podcast Makers" -#: includes/options.php:730 includes/options.php:734 -msgid "Please read the %s for more information." -msgstr "Für weitere Informationen, bitte lies die Liste der %s durch." - -#: includes/options.php:730 includes/options.php:734 -msgid "iTunes FAQ for Podcast Makers" -msgstr "häufig gestellten Fragen für Podcastersteller auf iTunes" - -#: includes/options.php:742 includes/options.php:751 -#: includes/taxonomy-images/taxonomy-images.php:395 -msgid "Save Changes" -msgstr "Änderungen speichern" - -#: includes/shortcodes.php:781 includes/shortcodes.php:786 -#: includes/template-tags.php:114 views/archive-wpfc_sermon.php:40 -#: views/taxonomy-wpfc_bible_book.php:72 views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -#: views/taxonomy-wpfc_service_type.php:72 -msgid "Permalink to %s" -msgstr "Permalink zu %s" - -#: includes/sm-cmb-functions.php:57 includes/types-taxonomies.php:273 -msgid "Sermon Details" -msgstr "Predigtdetails" - -#: includes/sm-cmb-functions.php:86 -msgid "(optional)" -msgstr "" - -#. translators: %s date format, effectively d/m/Y or the like -#: includes/sm-cmb-functions.php:86 includes/types-taxonomies.php:302 -msgid "format: %s" -msgstr "Format: %s" - -#: includes/sm-cmb-functions.php:94 includes/types-taxonomies.php:310 -msgid "" -"Select the type of service. Modify service types in Sermons → Service " -"Types." -msgstr "" -"Dienstart auswählen. Dienstarten können über Predigten → " -"Dienstart geändert werden." - -#: includes/sm-cmb-functions.php:101 includes/types-taxonomies.php:317 -msgid "Main Bible Passage" -msgstr "Hauptbibelstelle" - -#. translators: %s see msgid "John 3:16-18", effectively John 3:16-18 -#: includes/sm-cmb-functions.php:102 includes/types-taxonomies.php:318 -msgid "Enter the Bible passage with the full book names, e.g. %s." -msgstr "Trage die Bibelstelle mit vollem Buchnamen ein, z.B.: %s." - -#: includes/sm-cmb-functions.php:102 includes/types-taxonomies.php:318 -msgid "John 3:16-18" -msgstr "Johannes 3, 16-18" - -#: includes/sm-cmb-functions.php:108 includes/types-taxonomies.php:324 -msgid "" -"Type a brief description about this sermon, an outline, or a full manuscript" -msgstr "" -"Schreibe ein kurze Beschreibung über die Predigt, eine Gliederung oder " -"ein ganzes Manuskript" - -#: includes/sm-cmb-functions.php:116 includes/types-taxonomies.php:332 -msgid "Sermon Files" -msgstr "Predigtdateien" - -#: includes/sm-cmb-functions.php:125 includes/types-taxonomies.php:341 -msgid "Location of MP3" -msgstr "Ort der MP3‑Datei" - -#: includes/sm-cmb-functions.php:126 includes/types-taxonomies.php:342 -msgid "Upload an audio file or enter an URL." -msgstr "Lade eine Audiodatei hoch oder gib eine URL an." - -#: includes/sm-cmb-functions.php:134 includes/types-taxonomies.php:350 -msgid "MP3 Duration" -msgstr "MP3‑Spieldauer" - -#. translators: %s see msgid "hh:mm:ss", effectively hh:mm:ss -#: includes/sm-cmb-functions.php:135 includes/types-taxonomies.php:351 -msgid "" -"Length in %s format (if left blank, will attempt to calculate automatically " -"when you save)" -msgstr "" -"Spieldauer im %s‑Format. Wird das Feld leer gelassen, so wird versucht " -"werden die Spieldauer beim Speichern automatisch zu ermitteln." - -#: includes/sm-cmb-functions.php:135 includes/types-taxonomies.php:351 -msgid "hh:mm:ss" -msgstr "" - -#: includes/sm-cmb-functions.php:140 includes/types-taxonomies.php:356 -msgid "Video Embed Code" -msgstr "Videoeinbettungscode" - -#: includes/sm-cmb-functions.php:141 includes/types-taxonomies.php:357 -msgid "Paste your embed code for Vimeo, Youtube, or other service here" -msgstr "" -"Füge hier den Einbettungscode von Vimeo, Youtube oder eines anderen " -"Dienstes ein" - -#: includes/sm-cmb-functions.php:146 includes/types-taxonomies.php:362 -msgid "Video Link" -msgstr "Videoverknüpfung" - -#: includes/sm-cmb-functions.php:147 includes/types-taxonomies.php:363 -msgid "Paste your link for Vimeo, Youtube, or other service here" -msgstr "" -"Füge hier die Verknüpfung von Vimeo, Youtube oder eines anderen " -"Dienstes ein" - -#: includes/sm-cmb-functions.php:153 includes/types-taxonomies.php:369 -msgid "Sermon Notes" -msgstr "Predigtnotizen" - -#: includes/sm-cmb-functions.php:154 includes/sm-cmb-functions.php:163 -#: includes/types-taxonomies.php:370 includes/types-taxonomies.php:379 -msgid "Upload a pdf file or enter an URL." -msgstr "Lade eine PDF‑Datei hoch oder gib eine URL zu einem Dokument an." - -#: includes/sm-cmb-functions.php:162 includes/template-tags.php:371 -#: includes/template-tags.php:397 includes/types-taxonomies.php:378 -msgid "Bulletin" -msgstr "Gemeindebrief" - -#: includes/sm-core-functions.php:121 -msgctxt "slug" -msgid "preacher" -msgstr "prediger" - -#: includes/sm-core-functions.php:122 -msgctxt "slug" -msgid "series" -msgstr "serie" - -#: includes/sm-core-functions.php:123 -msgctxt "slug" -msgid "topics" -msgstr "themen" - -#: includes/sm-core-functions.php:124 -msgctxt "slug" -msgid "book" -msgstr "buch" - -#: includes/sm-core-functions.php:125 -msgctxt "slug" -msgid "service-type" -msgstr "dienstart" - -#: includes/sm-core-functions.php:126 -msgctxt "slug" -msgid "sermons" -msgstr "predigten" - -#. translators: %1$s see msgid "term_taxonomy_id", effectively term_taxonomy_id -#. translators: %2$s effectively -#. translators: %3$s effectively category.php -#. translators: %4$s effectively tag.php -#. translators: %5$s effectively taxonomy.php -#. translators: %6$s see msgid "template hierarchy" -#: includes/taxonomy-images/public-filters.php:385 -msgid "" -"%1$s is not a property of the current queried object. This usually happens " -"when the %2$s filter is used in an unsupported template file. This filter " -"has been designed to work in taxonomy archives which are traditionally " -"served by one of the following template files: %3$s, %4$s or %5$s. Learn " -"more about %6$s." -msgstr "" -"%1$s ist keine Eigenschaft des aktuell gesuchten Objekts. Das passiert " -"üblicherweise, wenn der Filter %2$s in einer nicht unterstützten " -"Vorlagendatei verwendet wird. Dieser Filter wurde so entworfen, dass er in " -"Gruppierungsarchiven funktioniert, welche traditionell von einer der " -"folgenden Vorlagendateien bereitgestellt werden: %3$s, %4$s oder %5$s. Finde " -"weiteres über die %6$s heraus." - -#: includes/taxonomy-images/public-filters.php:386 -msgid "term_taxonomy_id" -msgstr "begriff_gruppierung_id (Gruppierung = Taxonomie)" - -#: includes/taxonomy-images/public-filters.php:391 -msgid "template hierarchy" -msgstr "Vorlagenhierarchie" - -#: includes/taxonomy-images/taxonomy-images.php:130 -msgid "Associate with %1$s" -msgstr "Mit „%1$s“ verbinden" - -#: includes/taxonomy-images/taxonomy-images.php:130 -#: includes/taxonomy-images/taxonomy-images.php:131 -msgid "this term" -msgstr "dieser Begriff" - -#: includes/taxonomy-images/taxonomy-images.php:131 -msgid "Remove association with %1$s" -msgstr "Verbindung mit „%1$s“ entfernen" - #: includes/taxonomy-images/taxonomy-images.php:290 msgid "Image support for taxonomies successfully updated" msgstr "Bildunterstützung wurde erfolgreich aktualisiert" @@ -1197,197 +367,33 @@ msgstr "Bildunterstützung wurde erfolgreich aktualisiert" msgid "Image support has been disabled for all taxonomies." msgstr "Bildunterstützung wurde für alle Gruppierungen deaktiviert." -#: includes/taxonomy-images/taxonomy-images.php:339 -msgid "Taxonomies" -msgstr "Gruppierungen" - -#: includes/taxonomy-images/taxonomy-images.php:359 -#: includes/taxonomy-images/taxonomy-images.php:360 -msgid "Taxonomy Images" -msgstr "Gruppierungsbilder" - -#: includes/taxonomy-images/taxonomy-images.php:387 -msgid "Taxonomy Images Plugin Settings" -msgstr "Einstellungen des Gruppierungsbilder‑Plugins" - -#: includes/taxonomy-images/taxonomy-images.php:447 -msgid "Unknown error encountered" -msgstr "Unbekannter Fehler" - -#: includes/taxonomy-images/taxonomy-images.php:529 -#: includes/taxonomy-images/taxonomy-images.php:611 -msgid "tt_id not sent" -msgstr "tt_id nicht gesendet" - -#: includes/taxonomy-images/taxonomy-images.php:537 -#: includes/taxonomy-images/taxonomy-images.php:619 -msgid "tt_id is empty" -msgstr "tt_id ist leer" - -#: includes/taxonomy-images/taxonomy-images.php:544 -#: includes/taxonomy-images/taxonomy-images.php:626 -msgid "You do not have the correct capability to manage this term" -msgstr "Keine Berechtigung, um diesen Begriff zu verwalten" - -#: includes/taxonomy-images/taxonomy-images.php:551 -#: includes/taxonomy-images/taxonomy-images.php:633 -msgid "No nonce included." -msgstr "Begriffsbildung nicht enthalten." - -#: includes/taxonomy-images/taxonomy-images.php:558 -#: includes/taxonomy-images/taxonomy-images.php:640 -msgid "Nonce did not match" -msgstr "Begriffsbildung stimmte nicht überein." - -#: includes/taxonomy-images/taxonomy-images.php:565 -msgid "Image id not sent" -msgstr "Keine Bild‑Id versendet" - -#: includes/taxonomy-images/taxonomy-images.php:573 -msgid "Image id is not a positive integer" -msgstr "Die Bild‑Id ist keine positive Ganzzahl." - -#: includes/taxonomy-images/taxonomy-images.php:582 -msgid "Image successfully associated" -msgstr "Das Bild wurde erfolgreich verbunden" - -#: includes/taxonomy-images/taxonomy-images.php:588 -msgid "Association could not be created" -msgstr "Die Verbindung konnte nicht erstellt werden" - -#: includes/taxonomy-images/taxonomy-images.php:633 -msgid "No nonce included" -msgstr "Begriffsbildung nicht enthalten." - -#: includes/taxonomy-images/taxonomy-images.php:648 -msgid "Nothing to remove" -msgstr "Nichts zu entfernen" - -#: includes/taxonomy-images/taxonomy-images.php:657 -msgid "Association successfully removed" -msgstr "Verbindung erfolgreich entfernt" - -#: includes/taxonomy-images/taxonomy-images.php:662 -msgid "Association could not be removed" -msgstr "Die Verbindung konnte nicht entfernt werden" - -#: includes/taxonomy-images/taxonomy-images.php:739 -#: includes/taxonomy-images/taxonomy-images.php:793 -msgid "Image" -msgstr "Bild" - #: includes/taxonomy-images/taxonomy-images.php:786 -#: includes/taxonomy-images/taxonomy-images.php:823 msgid "term" msgstr "Begriff" -#: includes/taxonomy-images/taxonomy-images.php:797 -msgid "Associate an image from your media library to this %1$s." -msgstr "Verbinde ein Bild aus der Mediathek mit dieser %1$s." - #: includes/taxonomy-images/taxonomy-images.php:846 -msgid "Associate an image with the %1$s named “%2$s”." +#, fuzzy, php-format +#| msgid "Associate an image with the %1$s named “%2$s”." +msgid "Associate an image with the %1$s named “%2$s”." msgstr "Verknüpfe ein Bild mit %1$s mit dem Namen „%2$s“." #: includes/taxonomy-images/taxonomy-images.php:847 +#, php-format msgid "Upload a new image for this %s." msgstr "Ein neues Bild für dieses %s hochladen." -#: includes/taxonomy-images/taxonomy-images.php:847 -msgid "Upload." -msgstr "Hochladen." - -#: includes/taxonomy-images/taxonomy-images.php:848 -msgid "Delete" -msgstr "Löschen" - #: includes/taxonomy-images/taxonomy-images.php:848 +#, php-format msgid "Remove image from this %s." msgstr "Bild von diesem %s entfernen." -#: includes/taxonomy-images/taxonomy-images.php:882 -msgid "“" -msgstr "„" - -#: includes/taxonomy-images/taxonomy-images.php:883 -msgid "”" -msgstr "“" - -#: includes/taxonomy-images/taxonomy-images.php:884 -msgid "Associating …" -msgstr "Verbinde …" - -#: includes/taxonomy-images/taxonomy-images.php:885 -msgid "Successfully Associated" -msgstr "Erfolgreich verbunden" - -#: includes/taxonomy-images/taxonomy-images.php:886 -msgid "Removing …" -msgstr "Entferne …" - -#: includes/taxonomy-images/taxonomy-images.php:887 -msgid "Successfully Removed" -msgstr "Erfolgreich entfernt" - -#: includes/taxonomy-images/taxonomy-images.php:1162 -msgid "" -"The %1$s argument for %2$s is set to %3$s which is not a registered " -"taxonomy. Please check the spelling and update the argument." -msgstr "" -"Das %1$s Argument für %2$s wurde als %3$s festgelegt, was keine " -"registrierte Gruppierung (Taxonomie) ist. Bitte überprüfe die " -"Schreibweise und aktualisiere das Argument." - -#: includes/taxonomy-images/taxonomy-images.php:1163 -msgid "taxonomy" -msgstr "gruppierung" - -#: includes/taxonomy-images/taxonomy-images.php:1174 -msgid "No taxonomies have image support. %1$s" -msgstr "Keine Gruppierungen unterstützen Bilder. %1$s" - -#: includes/taxonomy-images/taxonomy-images.php:1180 -msgid "The %1$s taxonomy does not have image support. %2$s" -msgstr "Die Gruppierung „%1$s“ unterstützt keine Bilder. %2$s" - -#: includes/taxonomy-images/taxonomy-images.php:1206 -msgid "The %1$s has been called directly. Please use the %2$s filter instead." -msgstr "" -"%1$s wurde direkt aufgerufen. Bitte stattdessen den Filter %2$s verwenden." - -#: includes/taxonomy-images/taxonomy-images.php:1243 -msgid "Donate" -msgstr "Spenden" - -#: includes/taxonomy-images/taxonomy-images.php:1302 -#: includes/taxonomy-images/taxonomy-images.php:1303 -#: includes/template-tags.php:160 includes/types-taxonomies.php:94 -#: includes/types-taxonomies.php:96 includes/types-taxonomies.php:97 -#: includes/types-taxonomies.php:98 includes/types-taxonomies.php:99 -#: includes/types-taxonomies.php:100 includes/types-taxonomies.php:101 -#: includes/types-taxonomies.php:102 includes/types-taxonomies.php:103 -#: includes/types-taxonomies.php:104 includes/types-taxonomies.php:105 -msgid "Preacher" -msgstr "Prediger/in" - -#. translators: %s see msgid "Preacher" -#: includes/taxonomy-images/taxonomy-images.php:1302 -#: includes/taxonomy-images/taxonomy-images.php:1303 -msgid "Set %s’s image" -msgstr "%sbild setzen" - -#: includes/taxonomy-images/taxonomy-images.php:1304 -#: includes/taxonomy-images/taxonomy-images.php:1305 -msgid "Set Series image" -msgstr "Serienbild setzen" - #: includes/template-tags.php:127 includes/template-tags.php:398 -#: includes/template-tags.php:424 includes/template-tags.php:437 -#: includes/template-tags.php:463 includes/widgets.php:96 +#: includes/template-tags.php:437 includes/widgets.php:96 msgid "Bible Text: " msgstr "Bibelauszug: " #: includes/template-tags.php:160 +#, php-format msgid "Filter by %s" msgstr "Nach %s filtern" @@ -1403,19 +409,23 @@ msgstr "Nach Thema filtern" msgid "Filter by Book" msgstr "Nach Buch filtern" -#: includes/template-tags.php:363 includes/template-tags.php:389 +#: includes/template-tags.php:363 msgid "Download Files" msgstr "Dateien zum Herunterladen" -#: includes/template-tags.php:365 includes/template-tags.php:391 +#: includes/template-tags.php:365 msgid "MP3" msgstr "" -#: includes/template-tags.php:368 includes/template-tags.php:394 +#: includes/template-tags.php:368 msgid "Notes" msgstr "Notizen" -#: includes/template-tags.php:413 includes/template-tags.php:439 +#: includes/template-tags.php:371 +msgid "Bulletin" +msgstr "Gemeindebrief" + +#: includes/template-tags.php:413 msgid "Sermon Topics: " msgstr "Predigtthemen: " @@ -1449,23 +459,35 @@ msgstr "Es sind keine Predigten im Papierkorb" msgid "Preachers" msgstr "Prediger/innen" +#: includes/types-taxonomies.php:94 includes/types-taxonomies.php:96 +#: includes/types-taxonomies.php:97 includes/types-taxonomies.php:99 +#: includes/types-taxonomies.php:100 includes/types-taxonomies.php:101 +#: includes/types-taxonomies.php:102 includes/types-taxonomies.php:104 +msgid "Preacher" +msgstr "Prediger/in" + #: includes/types-taxonomies.php:97 +#, php-format msgid "Most frequent %s" msgstr "Häufigste/n %s" #: includes/types-taxonomies.php:102 +#, php-format msgid "New %s" msgstr "Neue/r %s" #: includes/types-taxonomies.php:103 +#, php-format msgid "Separate multiple %s with commas" msgstr "Trenne mehrere %s durch Kommata" #: includes/types-taxonomies.php:104 +#, php-format msgid "Add or remove %s" msgstr "%s hinzufügen oder entfernen" #: includes/types-taxonomies.php:105 +#, php-format msgid "Choose from most frequent %s" msgstr "Aus den häufigsten %s auswählen" @@ -1631,45 +653,6 @@ msgstr "Aufnahme hinzufügen" msgid "Add File" msgstr "Datei hinzufügen" -#: includes/vendor/abstract-wp-rest-controller.php:29 -msgid "The %s method must be overridden." -msgstr "Die Methode %s muss überschrieben werden." - -#: includes/vendor/abstract-wp-rest-controller.php:41 -#: includes/vendor/abstract-wp-rest-controller.php:53 -#: includes/vendor/abstract-wp-rest-controller.php:65 -#: includes/vendor/abstract-wp-rest-controller.php:77 -#: includes/vendor/abstract-wp-rest-controller.php:89 -#: includes/vendor/abstract-wp-rest-controller.php:101 -#: includes/vendor/abstract-wp-rest-controller.php:113 -#: includes/vendor/abstract-wp-rest-controller.php:125 -#: includes/vendor/abstract-wp-rest-controller.php:137 -#: includes/vendor/abstract-wp-rest-controller.php:149 -#: includes/vendor/abstract-wp-rest-controller.php:161 -#: includes/vendor/abstract-wp-rest-controller.php:174 -msgid "Method %s not implemented. Must be overridden in subclass." -msgstr "" -"Die Methode %s wurde nicht implementiert. Sie muss in einer Unterklasse " -"überschrieben werden." - -#: includes/vendor/abstract-wp-rest-controller.php:287 -msgid "Current page of the collection." -msgstr "Aktuelle Seite der Sammlung." - -#: includes/vendor/abstract-wp-rest-controller.php:295 -msgid "Maximum number of items to be returned in result set." -msgstr "Maximale Anzahl der im Ergebnissatz zurückzugegeben Einträge." - -#: includes/vendor/abstract-wp-rest-controller.php:304 -msgid "Limit results to those matching a string." -msgstr "Ergebnisse auf übereinstimmende Zeichenketten beschränken." - -#: includes/vendor/abstract-wp-rest-controller.php:324 -msgid "" -"Scope under which the request is made; determines fields present in response." -msgstr "Der Sichtbereich, in dem die Abfrage erfolgt. Dies legt die Felder " -"fü das Ergebnis fest." - #: includes/widgets.php:12 msgid "The most recent sermons on your site" msgstr "Die neuesten Predigten auf Deine Seite" @@ -1686,150 +669,814 @@ msgstr "Titel:" msgid "Number of sermons to show:" msgstr "Anzahl der anzuzeigenden Predigten:" -#. translators: plugin header field "Plugin Name" -#: sermons.php:3 -msgid "Sermon Manager for WordPress" -msgstr "Predigtverwaltung für WordPress" - -#. translators: plugin header field "Description" -#: sermons.php:5 -msgid "Add audio and video sermons, manage speakers, series, and more." -msgstr "" -"Ermöglicht das Hinzufügen von Audio‑ und Video‑" -"Predigten, die Verwaltung von Sprechern und Sprecherinnen sowie " -"Predigtserien und mehr." - -#. translators: %s see msgid "←", effectively -#: views/archive-wpfc_sermon.php:18 views/archive-wpfc_sermon.php:70 -#: views/archive-wpfc_sermon.php:71 -msgid "%s Older sermons" -msgstr "%s Ältere Predigten" - -#: views/archive-wpfc_sermon.php:18 views/archive-wpfc_sermon.php:70 -#: views/taxonomy-wpfc_bible_book.php:36 views/taxonomy-wpfc_bible_book.php:99 -#: views/taxonomy-wpfc_preacher.php:42 views/taxonomy-wpfc_preacher.php:105 -#: views/taxonomy-wpfc_sermon_series.php:43 -#: views/taxonomy-wpfc_sermon_series.php:106 -#: views/taxonomy-wpfc_sermon_topics.php:43 -#: views/taxonomy-wpfc_sermon_topics.php:106 -#: views/taxonomy-wpfc_service_type.php:36 -#: views/taxonomy-wpfc_service_type.php:99 -msgid "←" +#: sermons.php:30 +#, php-format +msgid "" +"You are running PHP %s, but Sermon Manager requires at " +"least PHP %s." msgstr "" -#: views/archive-wpfc_sermon.php:21 views/archive-wpfc_sermon.php:73 -#: views/taxonomy-wpfc_bible_book.php:38 -#: views/taxonomy-wpfc_bible_book.php:101 views/taxonomy-wpfc_preacher.php:44 -#: views/taxonomy-wpfc_preacher.php:107 -#: views/taxonomy-wpfc_sermon_series.php:52 -#: views/taxonomy-wpfc_sermon_series.php:108 -#: views/taxonomy-wpfc_sermon_topics.php:45 -#: views/taxonomy-wpfc_service_type.php:20 -#: views/taxonomy-wpfc_service_type.php:38 -#: views/taxonomy-wpfc_service_type.php:101 -msgid "→" -msgstr "" +#~ msgid "Sermon updated. %s" +#~ msgstr "Predigt aktualisiert. %s" -#. translators: %s see msgid "→", effectively -#: views/archive-wpfc_sermon.php:21 views/archive-wpfc_sermon.php:73 -#: views/archive-wpfc_sermon.php:74 -msgid "Newer sermons %s" -msgstr "Neuere Predigten %s" - -#: views/archive-wpfc_sermon.php:28 views/taxonomy-wpfc_bible_book.php:45 -#: views/taxonomy-wpfc_preacher.php:51 -#: views/taxonomy-wpfc_sermon_series.php:52 -#: views/taxonomy-wpfc_sermon_topics.php:52 -#: views/taxonomy-wpfc_service_type.php:45 -msgid "Not Found" -msgstr "Nicht gefunden" - -#: views/archive-wpfc_sermon.php:30 views/taxonomy-wpfc_bible_book.php:47 -#: views/taxonomy-wpfc_preacher.php:53 -#: views/taxonomy-wpfc_sermon_series.php:54 -#: views/taxonomy-wpfc_sermon_topics.php:54 -#: views/taxonomy-wpfc_service_type.php:47 -msgid "Apologies, but no sermons were found." -msgstr "Es tut uns leid, aber es wurden keine Predigten gefunden." - -#. translators: %s date -#: views/archive-wpfc_sermon.php:47 views/taxonomy-wpfc_bible_book.php:77 -#: views/taxonomy-wpfc_preacher.php:83 -#: views/taxonomy-wpfc_sermon_series.php:84 -#: views/taxonomy-wpfc_sermon_topics.php:84 -#: views/taxonomy-wpfc_service_type.php:77 -msgid "Preached on %s" -msgstr "Gehalten am %s" - -#: views/archive-wpfc_sermon.php:59 views/archive-wpfc_sermon.php:60 -#: views/taxonomy-wpfc_bible_book.php:88 views/taxonomy-wpfc_preacher.php:94 -#: views/taxonomy-wpfc_sermon_series.php:95 -#: views/taxonomy-wpfc_sermon_topics.php:95 -#: views/taxonomy-wpfc_service_type.php:88 -msgid "%s comment" -msgid_plural "%s comments" -msgstr[0] "%s Kommentar" -msgstr[1] "%s Kommentare" - -#: views/archive-wpfc_sermon.php:59 views/archive-wpfc_sermon.php:60 -#: views/taxonomy-wpfc_bible_book.php:88 views/taxonomy-wpfc_preacher.php:94 -#: views/taxonomy-wpfc_sermon_series.php:95 -#: views/taxonomy-wpfc_sermon_topics.php:95 -#: views/taxonomy-wpfc_service_type.php:88 -msgid "Leave a comment" -msgstr "Kommentar hinterlassen" - -#: views/single-wpfc_sermon.php:42 -msgctxt "Previous post link" -msgid "←" -msgstr "" +#~ msgid "Custom field updated." +#~ msgstr "Benutzerdefiniertes Feld aktualisiert." -#: views/single-wpfc_sermon.php:44 -msgctxt "Next post link" -msgid "→" -msgstr "" +#~ msgid "Custom field deleted." +#~ msgstr "Benutzerdefiniertes Feld gelöscht." + +#~ msgid "Sermon updated." +#~ msgstr "Predigt aktualisiert." + +#~ msgid "Sermon restored to revision from %s" +#~ msgstr "Predigt von Revision %s wiederhergestellt" + +#~ msgid "Sermon published. %s" +#~ msgstr "Predigt veröffentlicht. %s" + +#~ msgid "Sermon saved." +#~ msgstr "Predigt gespeichert." + +#~ msgid "Preview sermon" +#~ msgstr "Vorschau ansehen" + +#~ msgid "Sermon submitted. %s" +#~ msgstr "Predigt abgeschickt. %s" + +#~ msgid "Sermon scheduled for: %1$s. %2$s" +#~ msgstr "Predigt eingeplant für %1$s. %2$s" + +#~ msgid "%1$s at %2$s" +#~ msgstr "%1$s um %2$s Uhr" + +#~ msgid "Sermon draft updated. %s" +#~ msgstr "Predigtentwurf aktualisiert. %s" + +#~ msgid "%s Can’t find sermon ID." +#~ msgstr "%s Die Predigt‑ID kann nicht gefunden werden" + +#~ msgid "Error:" +#~ msgstr "Fehler:" + +#~ msgid "%s sermon" +#~ msgid_plural "%s sermons" +#~ msgstr[0] "%s Predigt" +#~ msgstr[1] "%s Predigten" + +#~ msgid "%s encountered a fatal error and recovered successfully." +#~ msgstr "" +#~ "„%s“ hat einen schwerwiegenden Fehler festgestellt und ihn " +#~ "erfolgreich korrigiert." + +#~ msgid "The issue has already been submitted." +#~ msgstr "Dieses Problem wurde bereits gemeldet." + +#~ msgctxt "Button" +#~ msgid "Send an anonymous report" +#~ msgstr "Anonymen Bericht senden" + +#~ msgctxt "Button" +#~ msgid "Show error message" +#~ msgstr "Fehlermeldung anzeigen" + +#~ msgctxt "Button" +#~ msgid "Reactivate Plugin" +#~ msgstr "Plug‑in reaktivieren" + +#~ msgctxt "Title" +#~ msgid "Are you sure?" +#~ msgstr "Bist du sicher?" + +#~ msgid "" +#~ "If the issue is not fixed, website will crash. (but we will recover it " +#~ "again)" +#~ msgstr "" +#~ "Falls das Problem nicht behoben wurde, wird die Webseite abstürzen " +#~ "(sie wird jedoch wiederhergestellt werden)." + +#~ msgctxt "title" +#~ msgid "Optional info" +#~ msgstr "Optionale Angaben" + +#~ msgid "" +#~ "If you have more information about the issue, please type it here " +#~ "(optional):" +#~ msgstr "" +#~ "Falls du weitere Angaben über das Problem hast, dann gib sie bitte " +#~ "hier ein (optional):" + +#~ msgctxt "Label" +#~ msgid "Issue details" +#~ msgstr "Problemdetails" + +#~ msgctxt "Placeholder" +#~ msgid "Steps for how to reproduce, etc…" +#~ msgstr "Schritte zur Reproduktion, etc." + +#~ msgid "Email for further contact (optional)" +#~ msgstr "E&8209;mail für Rückfragen (optional)" + +#~ msgid "name@example.com" +#~ msgstr "name@beispiel.com" + +#~ msgctxt "Label" +#~ msgid "Email" +#~ msgstr "E‑Mail" + +#~ msgctxt "Admin menu name" +#~ msgid "Series" +#~ msgstr "Serie" + +#~ msgctxt "Admin menu name" +#~ msgid "Topics" +#~ msgstr "Themen" + +#~ msgctxt "Admin menu name" +#~ msgid "Books" +#~ msgstr "Bücher" + +#~ msgctxt "Admin menu name" +#~ msgid "Service Types" +#~ msgstr "Dienstarten" + +#~ msgctxt "Admin menu name" +#~ msgid "Sermons" +#~ msgstr "Predigten" + +#~ msgid "Support" +#~ msgstr "Hilfe" + +#~ msgid "Sermon Manager Options" +#~ msgstr "Einstellungen der Predigtverwaltung" + +#~ msgid "General" +#~ msgstr "Allgemein" + +#~ msgid "Verse" +#~ msgstr "Vers" + +#~ msgid "Options saved" +#~ msgstr "Einstellungen gespeichert." + +#~ msgid "Need Some Help?" +#~ msgstr "Etwas Hilfe nötig?" + +#~ msgid "" +#~ "Did you know you can get expert support for only $49 per year! %s today " +#~ "and get support from the developers who are building the Sermon Manager." +#~ msgstr "" +#~ "Schon gewusst? Bereits für nur $49 jährlich ist " +#~ "Kundenunterstützung von Experten zu haben. Noch heute %s und " +#~ "Unterstützung von den Entwicklern der Predigtverwaltung für " +#~ "Wordpress erhalten." + +#~ msgid "Sign up" +#~ msgstr "registrieren" + +#~ msgid "Free Support" +#~ msgstr "Kostenlose Unterstützung" + +#~ msgid "Priority Support" +#~ msgstr "Bevorzugte Unterstützung" + +#~ msgid "We offer limited free support via WordPress.org" +#~ msgstr "" +#~ "Wir bieten begrenzt kostenlose Unterstützung über WordPress.org " +#~ "an." + +#~ msgid "Frequently Asked Questions" +#~ msgstr "Häufig gestellte Fragen" + +#~ msgid "Find out more in our %s" +#~ msgstr "Finde weiteres in unserer %s heraus" + +#~ msgid "knowledge base" +#~ msgstr "Wissensbasis" + +#~ msgid "Lets Make It Even Better!" +#~ msgstr "Lasst uns es noch besser machen!" + +#~ msgid "Submit Your Idea" +#~ msgstr "Idee übermitteln" + +#~ msgid "" +#~ "If you have ideas on how to make Sermon Manager or any of our products " +#~ "better, let us know!" +#~ msgstr "" +#~ "Sie haben Ideen zur Verbesserung der Predigtverwaltung für Wordpress " +#~ "oder unser anderen Produkte? Lassen Sie es uns wissen!" + +#~ msgid "General Settings" +#~ msgstr "Allgemeine Einstellungen" + +#~ msgid "Archive Page Title" +#~ msgstr "Titel der Archivseite" + +#~ msgid "Archive Page Slug" +#~ msgstr "Titelform der Archivseite" + +#~ msgid "" +#~ "Common Base Slug — this is for users who want to have a common base " +#~ "slug across all taxonomies, e.g. %1$s or %2$s." +#~ msgstr "" +#~ "Gemeinsame Grundtitelform — dies ist für Benutzer, die eine " +#~ "gemeinsame Grundtitelform über alle Gruppierungen hinweg haben " +#~ "wollen, also z.B. %1$s oder %2$s." + +#~ msgid "sermons/preacher" +#~ msgstr "predigten/prediger" + +#~ msgid "sermons/series" +#~ msgstr "predigten/serien" + +#~ msgid "Enable a common base slug across all taxonomies" +#~ msgstr "" +#~ "Gemeinsame Grundtitelform über alle Gruppierungen hinweg aktivieren" + +#~ msgid "" +#~ "Enable Template Files — this is for users upgrading from an older " +#~ "version who have issues with version 1.5+." +#~ msgstr "" +#~ "Vorlagendateien aktivieren — Diese Option ist für Benutzer, " +#~ "die von einer älteren Version aktualisieren und Probleme mit Version " +#~ "1.5+ haben." + +#~ msgid "Enable template files found in the %s folder" +#~ msgstr "Im Ordner %s gefundene Vorlagendateien aktivieren" + +#~ msgid "Disable Sermon Styles" +#~ msgstr "CSS‑Stile deaktivieren" + +#~ msgid "" +#~ "Disable Sermon CSS. If you do this, you should copy the styles from %s " +#~ "and include them in your theme CSS." +#~ msgstr "" +#~ "CSS‑Stile der Predigtverwaltung deaktivieren. Wird diese Option " +#~ "aktiviert, sollten die Stile aus der Datei %s im Pluginordner in die " +#~ "CSS‑Datei des Themes kopiert werden." + +#~ msgid "Display audio player or video on archive pages" +#~ msgstr "Einen Audiospieler oder Video auf Archivseiten einblenden" + +#~ msgid "Display an audio player or video embed in the archive listing." +#~ msgstr "" +#~ "Audiospieler oder ein eingebettetes Video in der Archivliste einblenden" + +#~ msgid "Use old audio player" +#~ msgstr "Alten Audiospieler verwenden" + +#~ msgid "" +#~ "Custom label for “Preacher”. Note: it will also change " +#~ "preacher slugs." +#~ msgstr "" +#~ "Benutzerdefinierter Begriff für „Prediger/in“. Hinweis: " +#~ "Dies wird auch die Prediger/innentitelform ändern." + +#~ msgid "Sermon date format (used when creating a new Sermon)" +#~ msgstr "" +#~ "Datumformat des Datums, an dem die Predigt gehalten wurde (wird bei der " +#~ "Erstellung einer neuen Predigt verwendet)" + +#~ msgid "Show key verse in widget" +#~ msgstr "Schlüsselvers im Widget darstellen" + +#~ msgid "Version %s" +#~ msgstr "Version %s" + +#~ msgid "Current Version" +#~ msgstr "Aktuelle Version" + +#~ msgid "Verse Settings" +#~ msgstr "Verseinstellungen" + +#~ msgid "Verse Popups" +#~ msgstr "Verseinblendungen" + +#~ msgid "Disable Bib.ly verse popups" +#~ msgstr "Bib.ly‑Einblendungen deaktivieren" + +#~ msgid "Select Bible Version for Verse Popups" +#~ msgstr "Bibelversion für Verseinblendungen auswählen" + +#~ msgid "" +#~ "%1$s, %2$s, %3$s, or %4$s are the currently supported popups for %5$s." +#~ msgstr "" +#~ "Nur %1$s, %2$s, %3$s, oder %4$s werden für Einblendungen aus %5$s " +#~ "unterstützt." + +#~ msgid "bib.ly" +#~ msgstr "Bib.ly" + +#~ msgid "Warning! %s is not supported if your site uses SSL (HTTPS)." +#~ msgstr "" +#~ "WARNUNG: %s wird nicht unterstützt, wenn die Website SSL (HTTPS) " +#~ "verwendet." + +#~ msgid "Podcast Settings" +#~ msgstr "Podcasteinstellungen" + +#~ msgid "Title" +#~ msgstr "Titel" + +#~ msgid "Description" +#~ msgstr "Beschreibung" + +#~ msgid "Website Link" +#~ msgstr "Webseite" + +#~ msgid "Language" +#~ msgstr "Sprache" + +#~ msgid "Copyright" +#~ msgstr "Urheberrechtshinweis" + +#~ msgid "Tip: Use %s to generate a copyright symbol." +#~ msgstr "Tipp: Verwende %s, um ein Copyright‑Symbol zu erzeugen." + +#~ msgid "Webmaster Name" +#~ msgstr "Name des Webmasters" + +#~ msgid "e.g. Your Name" +#~ msgstr "z.B. Dein Name" + +#~ msgid "Webmaster Email" +#~ msgstr "E‑Mail des Webmasters" + +#~ msgid "Author" +#~ msgstr "Autor" + +#~ msgid "e.g. Primary Speaker or Church Name" +#~ msgstr "z.B. Hauptredner/in oder Name der Gemeinde" + +#~ msgid "This will display at the “Artist” in the iTunes Store." +#~ msgstr "" +#~ "Dies wird als „Künstler“ im iTunes Store angezeigt." + +#~ msgid "Subtitle" +#~ msgstr "Untertitel" + +#~ msgid "" +#~ "Your subtitle should briefly tell the listener what they can expect to " +#~ "hear." +#~ msgstr "" +#~ "Der Untertitel sollte dem Hörer oder der Hörerin einen knappen " +#~ "Eindruck vermitteln, was er oder sie erwarten kann." + +#~ msgid "Summary" +#~ msgstr "Zusammenfassung" + +#~ msgid "" +#~ "Keep your Podcast Summary short, sweet and informative. Be sure to " +#~ "include a brief statement about your mission and in what region your " +#~ "audio content originates." +#~ msgstr "" +#~ "Halte Deine Podcastzusammenfassung kurz, erfrischend und informativ. " +#~ "Erwähne auch was euer Ziel ist und woher die Audioinhalte kommen." + +#~ msgid "Owner Name" +#~ msgstr "Besitzername" + +#~ msgid "This should typically be the name of your Church." +#~ msgstr "Das sollte normalerweise der Name der Gemeinde sein." + +#~ msgid "Owner Email" +#~ msgstr "E‑Mail" + +#~ msgid "" +#~ "Use an email address that you don’t mind being made public. If " +#~ "someone wants to contact you regarding your Podcast this is the address " +#~ "they will use." +#~ msgstr "" +#~ "Verwende eine E‑Mail‑Adresse, welche auf öffentlich " +#~ "gemacht werden kann. Wenn Dich jemand bezüglich des Podcasts " +#~ "kontaktieren möchte, wird das über diese Adresse geschehen." + +#~ msgid "Cover Image" +#~ msgstr "Bild" + +#~ msgid "Upload Image" +#~ msgstr "Bild hochladen" + +#~ msgid "" +#~ "This JPG will serve as the Podcast artwork in the iTunes Store. The image " +#~ "must be between 1,400px by 1,400px and 3,000px by 3,000px or else iTunes " +#~ "will not accept your feed." +#~ msgstr "" +#~ "Dieses JPG dient als Podcast‑Cover im iTunes Store. Die " +#~ "Bildauflösung sollte zwischen 1.400px mal 1.400px und 3.000px mal " +#~ "3.000px sein, ansonsten wird iTunes den Feed nicht akzeptieren." + +#~ msgid "Top Category" +#~ msgstr "Oberste Kategorie" + +#~ msgid "" +#~ "Choose the appropriate top-level category for your Podcast listing in " +#~ "iTunes." +#~ msgstr "" +#~ "Wähle eine passende Oberkategorie für den Podcasteintrag in " +#~ "iTunes." + +#~ msgid "Sub Category" +#~ msgstr "Unterkategorie" + +#~ msgid "" +#~ "Choose the appropriate sub category for your Podcast listing in iTunes." +#~ msgstr "" +#~ "Wähle eine passende Unterkategorie für den Podcasteintrag in " +#~ "iTunes." + +#~ msgid "PodTrac Tracking" +#~ msgstr "PodTrac‑Nachverfolung" + +#~ msgid "Enables PodTrac tracking." +#~ msgstr "PodTrac‑Nachverfolung aktivieren" + +#~ msgid "For more info on PodTrac or to sign up for an account, visit %s" +#~ msgstr "" +#~ "Auf %s können weitere Informationen über PodTrac eingeholt oder " +#~ "ein Konto eingerichtet werden." + +#~ msgid "HTML in description" +#~ msgstr "HTML in Beschreibung" + +#~ msgid "Enable HTML description" +#~ msgstr "HTML‑Beschreibung aktivieren" + +#~ msgid "" +#~ "Enables showing of HTML in iTunes description field. Uncheck if " +#~ "description looks messy." +#~ msgstr "" +#~ "Aktiviert die Anzeige von HTML‑Beschreibungen in iTunes. Falls die " +#~ "Beschreibung durcheinander aussieht, dann sollte die Einstellung " +#~ "deaktiviert bleiben." + +#~ msgid "Number of podcasts to show" +#~ msgstr "Anzahl der anzuzeigenden Podcasteinträge" + +#~ msgid "" +#~ "Shows custom podcast count. If not defined, it uses WordPress default " +#~ "count." +#~ msgstr "" +#~ "Zeigt eine benutzerdefinierte Anzahl an Podcasteinträgen. Wird keine " +#~ "Anzahl festgelegt, wird die WordPress‑Standardanzahl verwendet." + +#~ msgid "Feed URL to Submit to iTunes" +#~ msgstr "Bei iTunes einzureichende Feed‑URL" + +#~ msgid "Feed Validator" +#~ msgstr "Feed‑Validator" + +#~ msgid "" +#~ "Use the %s to diagnose and fix any problems before submitting your " +#~ "Podcast to iTunes." +#~ msgstr "" +#~ "Bevor der Podcast bei iTunes eingereicht wird, kann der %s verwendet " +#~ "werden, um Probleme zu finden und zu beheben." + +#~ msgid "" +#~ "Once your Podcast Settings are complete and your Sermons are ready, " +#~ "it’s time to %s to the iTunes Store!" +#~ msgstr "" +#~ "Nachdem die Podcasteinstellungen komplett und die Predigten fertig sind, " +#~ "ist es Zeit %s!" + +#~ msgid "Submit Your Podcast" +#~ msgstr "den Podcast beim iTunes Store einzureichen" + +#~ msgid "" +#~ "Alternatively, if you want to track your Podcast subscribers, simply pass " +#~ "the Podcast Feed URL above through %s. FeedBurner will then give you a " +#~ "new URL to submit to iTunes instead." +#~ msgstr "" +#~ "Alternativ, wenn Du die Aktivität deiner Podcasthörerinnen und " +#~ "‑Hörer nachverfolgen möchtest, leite die Feed‑URL " +#~ "durch %s. FeedBurner gibt Dir dann eine neue URL, die Du dann stattdessen " +#~ "bei iTunes einreichen kannst." + +#~ msgid "Please read the %s for more information." +#~ msgstr "Für weitere Informationen, bitte lies die Liste der %s durch." + +#~ msgid "iTunes FAQ for Podcast Makers" +#~ msgstr "häufig gestellten Fragen für Podcastersteller auf iTunes" + +#~ msgid "Save Changes" +#~ msgstr "Änderungen speichern" + +#~ msgid "Permalink to %s" +#~ msgstr "Permalink zu %s" + +#~ msgid "Sermon Details" +#~ msgstr "Predigtdetails" + +#~ msgid "format: %s" +#~ msgstr "Format: %s" + +#~ msgid "" +#~ "Select the type of service. Modify service types in Sermons → " +#~ "Service Types." +#~ msgstr "" +#~ "Dienstart auswählen. Dienstarten können über Predigten " +#~ "→ Dienstart geändert werden." + +#~ msgid "Main Bible Passage" +#~ msgstr "Hauptbibelstelle" + +#~ msgid "Enter the Bible passage with the full book names, e.g. %s." +#~ msgstr "Trage die Bibelstelle mit vollem Buchnamen ein, z.B.: %s." + +#~ msgid "John 3:16-18" +#~ msgstr "Johannes 3, 16-18" + +#~ msgid "" +#~ "Type a brief description about this sermon, an outline, or a full " +#~ "manuscript" +#~ msgstr "" +#~ "Schreibe ein kurze Beschreibung über die Predigt, eine Gliederung " +#~ "oder ein ganzes Manuskript" + +#~ msgid "Sermon Files" +#~ msgstr "Predigtdateien" + +#~ msgid "Location of MP3" +#~ msgstr "Ort der MP3‑Datei" + +#~ msgid "Upload an audio file or enter an URL." +#~ msgstr "Lade eine Audiodatei hoch oder gib eine URL an." + +#~ msgid "MP3 Duration" +#~ msgstr "MP3‑Spieldauer" + +#~ msgid "" +#~ "Length in %s format (if left blank, will attempt to calculate " +#~ "automatically when you save)" +#~ msgstr "" +#~ "Spieldauer im %s‑Format. Wird das Feld leer gelassen, so wird " +#~ "versucht werden die Spieldauer beim Speichern automatisch zu ermitteln." + +#~ msgid "Video Embed Code" +#~ msgstr "Videoeinbettungscode" + +#~ msgid "Paste your embed code for Vimeo, Youtube, or other service here" +#~ msgstr "" +#~ "Füge hier den Einbettungscode von Vimeo, Youtube oder eines anderen " +#~ "Dienstes ein" + +#~ msgid "Video Link" +#~ msgstr "Videoverknüpfung" + +#~ msgid "Paste your link for Vimeo, Youtube, or other service here" +#~ msgstr "" +#~ "Füge hier die Verknüpfung von Vimeo, Youtube oder eines anderen " +#~ "Dienstes ein" + +#~ msgid "Sermon Notes" +#~ msgstr "Predigtnotizen" + +#~ msgid "Upload a pdf file or enter an URL." +#~ msgstr "" +#~ "Lade eine PDF‑Datei hoch oder gib eine URL zu einem Dokument an." + +#~ msgctxt "slug" +#~ msgid "preacher" +#~ msgstr "prediger" + +#~ msgctxt "slug" +#~ msgid "series" +#~ msgstr "serie" + +#~ msgctxt "slug" +#~ msgid "topics" +#~ msgstr "themen" + +#~ msgctxt "slug" +#~ msgid "book" +#~ msgstr "buch" + +#~ msgctxt "slug" +#~ msgid "service-type" +#~ msgstr "dienstart" + +#~ msgctxt "slug" +#~ msgid "sermons" +#~ msgstr "predigten" + +#~ msgid "" +#~ "%1$s is not a property of the current queried object. This usually " +#~ "happens when the %2$s filter is used in an unsupported template file. " +#~ "This filter has been designed to work in taxonomy archives which are " +#~ "traditionally served by one of the following template files: %3$s, %4$s " +#~ "or %5$s. Learn more about %6$s." +#~ msgstr "" +#~ "%1$s ist keine Eigenschaft des aktuell gesuchten Objekts. Das passiert " +#~ "üblicherweise, wenn der Filter %2$s in einer nicht unterstü" +#~ "tzten Vorlagendatei verwendet wird. Dieser Filter wurde so entworfen, " +#~ "dass er in Gruppierungsarchiven funktioniert, welche traditionell von " +#~ "einer der folgenden Vorlagendateien bereitgestellt werden: %3$s, %4$s " +#~ "oder %5$s. Finde weiteres über die %6$s heraus." + +#~ msgid "term_taxonomy_id" +#~ msgstr "begriff_gruppierung_id (Gruppierung = Taxonomie)" + +#~ msgid "template hierarchy" +#~ msgstr "Vorlagenhierarchie" + +#~ msgid "Associate with %1$s" +#~ msgstr "Mit „%1$s“ verbinden" + +#~ msgid "this term" +#~ msgstr "dieser Begriff" + +#~ msgid "Remove association with %1$s" +#~ msgstr "Verbindung mit „%1$s“ entfernen" + +#~ msgid "Taxonomies" +#~ msgstr "Gruppierungen" + +#~ msgid "Taxonomy Images" +#~ msgstr "Gruppierungsbilder" + +#~ msgid "Taxonomy Images Plugin Settings" +#~ msgstr "Einstellungen des Gruppierungsbilder‑Plugins" + +#~ msgid "Unknown error encountered" +#~ msgstr "Unbekannter Fehler" + +#~ msgid "tt_id not sent" +#~ msgstr "tt_id nicht gesendet" + +#~ msgid "tt_id is empty" +#~ msgstr "tt_id ist leer" + +#~ msgid "You do not have the correct capability to manage this term" +#~ msgstr "Keine Berechtigung, um diesen Begriff zu verwalten" + +#~ msgid "No nonce included." +#~ msgstr "Begriffsbildung nicht enthalten." + +#~ msgid "Nonce did not match" +#~ msgstr "Begriffsbildung stimmte nicht überein." + +#~ msgid "Image id not sent" +#~ msgstr "Keine Bild‑Id versendet" + +#~ msgid "Image id is not a positive integer" +#~ msgstr "Die Bild‑Id ist keine positive Ganzzahl." + +#~ msgid "Image successfully associated" +#~ msgstr "Das Bild wurde erfolgreich verbunden" + +#~ msgid "Association could not be created" +#~ msgstr "Die Verbindung konnte nicht erstellt werden" + +#~ msgid "No nonce included" +#~ msgstr "Begriffsbildung nicht enthalten." + +#~ msgid "Nothing to remove" +#~ msgstr "Nichts zu entfernen" + +#~ msgid "Association successfully removed" +#~ msgstr "Verbindung erfolgreich entfernt" + +#~ msgid "Association could not be removed" +#~ msgstr "Die Verbindung konnte nicht entfernt werden" + +#~ msgid "Image" +#~ msgstr "Bild" + +#~ msgid "Associate an image from your media library to this %1$s." +#~ msgstr "Verbinde ein Bild aus der Mediathek mit dieser %1$s." + +#~ msgid "Upload." +#~ msgstr "Hochladen." + +#~ msgid "Delete" +#~ msgstr "Löschen" + +#~ msgid "“" +#~ msgstr "„" + +#~ msgid "”" +#~ msgstr "“" + +#~ msgid "Associating …" +#~ msgstr "Verbinde …" + +#~ msgid "Successfully Associated" +#~ msgstr "Erfolgreich verbunden" + +#~ msgid "Removing …" +#~ msgstr "Entferne …" + +#~ msgid "Successfully Removed" +#~ msgstr "Erfolgreich entfernt" + +#~ msgid "" +#~ "The %1$s argument for %2$s is set to %3$s which is not a registered " +#~ "taxonomy. Please check the spelling and update the argument." +#~ msgstr "" +#~ "Das %1$s Argument für %2$s wurde als %3$s festgelegt, was keine " +#~ "registrierte Gruppierung (Taxonomie) ist. Bitte überprüfe die " +#~ "Schreibweise und aktualisiere das Argument." + +#~ msgid "taxonomy" +#~ msgstr "gruppierung" + +#~ msgid "No taxonomies have image support. %1$s" +#~ msgstr "Keine Gruppierungen unterstützen Bilder. %1$s" + +#~ msgid "The %1$s taxonomy does not have image support. %2$s" +#~ msgstr "" +#~ "Die Gruppierung „%1$s“ unterstützt keine Bilder. %2$s" + +#~ msgid "" +#~ "The %1$s has been called directly. Please use the %2$s filter instead." +#~ msgstr "" +#~ "%1$s wurde direkt aufgerufen. Bitte stattdessen den Filter %2$s verwenden." + +#~ msgid "Donate" +#~ msgstr "Spenden" + +#~ msgid "Set %s’s image" +#~ msgstr "%sbild setzen" + +#~ msgid "Set Series image" +#~ msgstr "Serienbild setzen" + +#~ msgid "The %s method must be overridden." +#~ msgstr "Die Methode %s muss überschrieben werden." + +#~ msgid "Method %s not implemented. Must be overridden in subclass." +#~ msgstr "" +#~ "Die Methode %s wurde nicht implementiert. Sie muss in einer Unterklasse " +#~ "überschrieben werden." + +#~ msgid "Current page of the collection." +#~ msgstr "Aktuelle Seite der Sammlung." + +#~ msgid "Maximum number of items to be returned in result set." +#~ msgstr "" +#~ "Maximale Anzahl der im Ergebnissatz zurückzugegeben Einträge." + +#~ msgid "Limit results to those matching a string." +#~ msgstr "" +#~ "Ergebnisse auf übereinstimmende Zeichenketten beschränken." + +#~ msgid "" +#~ "Scope under which the request is made; determines fields present in " +#~ "response." +#~ msgstr "" +#~ "Der Sichtbereich, in dem die Abfrage erfolgt. Dies legt die Felder " +#~ "fü das Ergebnis fest." + +#~ msgid "Sermon Manager for WordPress" +#~ msgstr "Predigtverwaltung für WordPress" + +#~ msgid "Add audio and video sermons, manage speakers, series, and more." +#~ msgstr "" +#~ "Ermöglicht das Hinzufügen von Audio‑ und Video‑" +#~ "Predigten, die Verwaltung von Sprechern und Sprecherinnen sowie " +#~ "Predigtserien und mehr." + +#~ msgid "%s Older sermons" +#~ msgstr "%s Ältere Predigten" + +#~ msgid "Newer sermons %s" +#~ msgstr "Neuere Predigten %s" + +#~ msgid "Not Found" +#~ msgstr "Nicht gefunden" + +#~ msgid "Apologies, but no sermons were found." +#~ msgstr "Es tut uns leid, aber es wurden keine Predigten gefunden." + +#~ msgid "Preached on %s" +#~ msgstr "Gehalten am %s" + +#~ msgid "%s comment" +#~ msgid_plural "%s comments" +#~ msgstr[0] "%s Kommentar" +#~ msgstr[1] "%s Kommentare" + +#~ msgid "Leave a comment" +#~ msgstr "Kommentar hinterlassen" + +#~ msgid "Sermons by Book: %s" +#~ msgstr "Predigten nach Buch: %s" + +#~ msgid "%s Older posts" +#~ msgstr "%s Ältere Einträge" + +#~ msgid "Newer posts %s" +#~ msgstr "Neuere Einträge %s" + +#~ msgid "Sermons by: %s" +#~ msgstr "Predigten von: %s" + +#~ msgid "Sermons Series: %s" +#~ msgstr "Predigtserie: %s" + +#~ msgid "Sermons Topic: %s" +#~ msgstr "Predigtthema: %s" -#: views/taxonomy-wpfc_bible_book.php:20 -msgid "Sermons by Book: %s" -msgstr "Predigten nach Buch: %s" - -#. translators: %s see msgid "←", effectively -#: views/taxonomy-wpfc_bible_book.php:36 views/taxonomy-wpfc_bible_book.php:99 -#: views/taxonomy-wpfc_preacher.php:42 views/taxonomy-wpfc_preacher.php:105 -#: views/taxonomy-wpfc_sermon_series.php:43 -#: views/taxonomy-wpfc_sermon_series.php:106 -#: views/taxonomy-wpfc_sermon_topics.php:43 -#: views/taxonomy-wpfc_sermon_topics.php:106 -#: views/taxonomy-wpfc_service_type.php:36 -#: views/taxonomy-wpfc_service_type.php:99 -msgid "%s Older posts" -msgstr "%s Ältere Einträge" - -#. translators: %s see msgid "→", effectively -#: views/taxonomy-wpfc_bible_book.php:38 -#: views/taxonomy-wpfc_bible_book.php:101 views/taxonomy-wpfc_preacher.php:44 -#: views/taxonomy-wpfc_preacher.php:107 -#: views/taxonomy-wpfc_sermon_series.php:45 -#: views/taxonomy-wpfc_sermon_series.php:108 -#: views/taxonomy-wpfc_sermon_topics.php:45 -#: views/taxonomy-wpfc_sermon_topics.php:108 -#: views/taxonomy-wpfc_service_type.php:38 -#: views/taxonomy-wpfc_service_type.php:101 -msgid "Newer posts %s" -msgstr "Neuere Einträge %s" - -#: views/taxonomy-wpfc_preacher.php:20 -msgid "Sermons by: %s" -msgstr "Predigten von: %s" - -#: views/taxonomy-wpfc_sermon_series.php:20 -msgid "Sermons Series: %s" -msgstr "Predigtserie: %s" - -#: views/taxonomy-wpfc_sermon_topics.php:20 -msgid "Sermons Topic: %s" -msgstr "Predigtthema: %s" - -#: views/taxonomy-wpfc_service_type.php:20 -msgid "Sermons By Service: %s" -msgstr "Predigten nach Dienstart: %s" +#~ msgid "Sermons By Service: %s" +#~ msgstr "Predigten nach Dienstart: %s" diff --git a/languages/sermon-manager-for-wordpress-fr_FR.mo b/languages/sermon-manager-for-wordpress-fr_FR.mo index d2f74429bae5a9512d261b764ca05640162db93e..d51e870be18f5ce9ea7342b48712494f2f4a3823 100644 GIT binary patch delta 1401 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 RE}5s(iW7BiuYS^){{ed_IEMfL diff --git a/languages/sermon-manager-for-wordpress-fr_FR.po b/languages/sermon-manager-for-wordpress-fr_FR.po index d0e5780..ee8d6a9 100644 --- a/languages/sermon-manager-for-wordpress-fr_FR.po +++ b/languages/sermon-manager-for-wordpress-fr_FR.po @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: sermon-manager-for-wordpress\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/sermon-manager-for-wordpress\n" -"POT-Creation-Date: 2017-10-01 07:03:00+0200\n" -"PO-Revision-Date: 2017-09-27 16:55+0200\n" +"POT-Creation-Date: 2017-10-03 09:38+0200\n" +"PO-Revision-Date: 2017-10-03 09:38+0200\n" "Last-Translator: Gilles PILLOUD \n" "Language-Team: \n" "Language: fr_FR\n" @@ -14,217 +14,46 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2;plural=n>2;\n" "X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 2.0.3\n" +"X-Generator: Poedit 2.0.4\n" "X-Poedit-KeywordsList: __;_e\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: includes/CMB2\n" -#. translators: %s see msgid "View sermon", effectively View sermon -#: includes/admin-functions.php:124 -#, php-format -msgid "Sermon updated. %s" -msgstr "Prédication mise à jour. %s" - -#: includes/admin-functions.php:124 includes/admin-functions.php:130 -#: includes/admin-functions.php:136 includes/class-sm-post-types.php:201 -#: includes/class-sm-post-types.php:202 -msgid "View sermon" -msgstr "Voir la prédication" - -#: includes/admin-functions.php:125 -msgid "Custom field updated." -msgstr "Champ personnalisé mis à jour." - -#: includes/admin-functions.php:126 -msgid "Custom field deleted." -msgstr "Champ personnalisé supprimé." - -#: includes/admin-functions.php:127 -msgid "Sermon updated." -msgstr "Prédication mise à jour." - -#: includes/admin-functions.php:129 -#, php-format -msgid "Sermon restored to revision from %s" -msgstr "Prédication restaurée à la révision depuis %s" - -#. translators: %s see msgid "View sermon", effectively View sermon -#: includes/admin-functions.php:130 -#, fuzzy, php-format -msgid "Sermon published. %s" -msgstr "prédication sauvegardée." - -#: includes/admin-functions.php:131 -msgid "Sermon saved." -msgstr "prédication sauvegardée." - -#: includes/admin-functions.php:132 includes/admin-functions.php:135 -#, fuzzy -msgid "Preview sermon" -msgstr "Voir la prédication" - -#. translators: %s see msgid "Preview sermon", effectively Preview sermon -#: includes/admin-functions.php:132 -#, fuzzy, php-format -msgid "Sermon submitted. %s" -msgstr "Prédication mise à jour." - -#. translators: %1$s see msgid "%1$s at %2$s", effectively at -#. translators: %2$s see msgid "Preview sermon", effectively Preview sermon -#: includes/admin-functions.php:133 -#, php-format -msgid "Sermon scheduled for: %1$s. %2$s" -msgstr "" - -#. translators: %1$s date -#. translators: %2$s time -#: includes/admin-functions.php:134 includes/admin-functions.php:135 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#. translators: %s see msgid "Preview sermon", effectively Preview sermon -#: includes/admin-functions.php:136 -#, fuzzy, php-format -msgid "Sermon draft updated. %s" -msgstr "Prédication mise à jour." - #: includes/admin-functions.php:189 msgid "Sermon Title" msgstr "Titre de la prédication" -#. translators: %s: Preachers label (sentence case; plural) #: includes/admin-functions.php:191 includes/class-sm-post-types.php:44 #: includes/class-sm-post-types.php:47 includes/class-sm-post-types.php:49 #, php-format msgid "%s" msgstr "" -#: includes/admin-functions.php:191 includes/admin-functions.php:192 -#: includes/types-taxonomies.php:120 includes/types-taxonomies.php:121 -#: includes/types-taxonomies.php:122 +#: includes/admin-functions.php:192 includes/types-taxonomies.php:120 +#: includes/types-taxonomies.php:121 includes/types-taxonomies.php:122 msgid "Sermon Series" msgstr "Séries de prédications" -#: includes/admin-functions.php:192 includes/admin-functions.php:193 -#: includes/class-sm-post-types.php:104 includes/class-sm-post-types.php:106 +#: includes/admin-functions.php:193 includes/class-sm-post-types.php:104 +#: includes/class-sm-post-types.php:106 msgid "Topics" msgstr "Sujets" -#: includes/admin-functions.php:193 includes/admin-functions.php:194 +#: includes/admin-functions.php:194 msgid "Views" msgstr "Vues" -#: includes/admin-functions.php:194 includes/admin-functions.php:195 -#: includes/sm-cmb-functions.php:85 includes/types-taxonomies.php:301 +#: includes/admin-functions.php:195 #, fuzzy msgid "Date Preached" msgstr "Mettre à jour les prédicateurs" -#: includes/admin-functions.php:195 includes/admin-functions.php:196 +#: includes/admin-functions.php:196 #, fuzzy msgid "Bible Passage" msgstr "Passage biblique principal" -#. translators: %s see msgid "Error:" -#: includes/admin-functions.php:212 includes/admin-functions.php:213 -#, php-format -msgid "%s Can’t find sermon ID." -msgstr "" - -#: includes/admin-functions.php:212 includes/admin-functions.php:213 -#: includes/admin-functions.php:252 includes/admin-functions.php:253 -msgid "Error:" -msgstr "" - -#: includes/admin-functions.php:290 includes/class-sm-post-types.php:193 -#: includes/types-taxonomies.php:59 -msgid "Sermon" -msgstr "Prédication" - -#: includes/admin-functions.php:306 includes/admin-functions.php:307 -#, fuzzy, php-format -msgid "%s sermon" -msgid_plural "%s sermons" -msgstr[0] "Nouvelle prédication" -msgstr[1] "Nouvelle prédication" - -#. translators: %s: Plugin name -#: includes/class-sm-error-recovery.php:200 -#, php-format -msgid "%s encountered a fatal error and recovered successfully." -msgstr "" - -#: includes/class-sm-error-recovery.php:203 -msgid "The issue has already been submitted." -msgstr "" - -#: includes/class-sm-error-recovery.php:208 -msgctxt "Button" -msgid "Send an anonymous report" -msgstr "" - -#: includes/class-sm-error-recovery.php:212 -msgctxt "Button" -msgid "Show error message" -msgstr "" - -#: includes/class-sm-error-recovery.php:215 -msgctxt "Button" -msgid "Reactivate Plugin" -msgstr "" - -#: includes/class-sm-error-recovery.php:222 -msgctxt "Title" -msgid "Are you sure?" -msgstr "" - -#: includes/class-sm-error-recovery.php:224 -msgid "" -"If the issue is not fixed, website will crash. (but we will recover it again)" -msgstr "" - -#: includes/class-sm-error-recovery.php:226 -msgctxt "title" -msgid "Optional info" -msgstr "" - -#: includes/class-sm-error-recovery.php:228 -msgid "" -"If you have more information about the issue, please type it here (optional):" -msgstr "" - -#: includes/class-sm-error-recovery.php:230 -msgctxt "Label" -msgid "Issue details" -msgstr "" - -#: includes/class-sm-error-recovery.php:232 -msgctxt "Placeholder" -msgid "Steps for how to reproduce, etc…" -msgstr "" - -#: includes/class-sm-error-recovery.php:233 -msgid "Email for further contact (optional)" -msgstr "" - -#: includes/class-sm-error-recovery.php:234 -msgid "name@example.com" -msgstr "" - -#: includes/class-sm-error-recovery.php:235 -#, fuzzy -msgctxt "Label" -msgid "Email" -msgstr "E-mail du propriétaire" - -#: includes/class-sm-post-types.php:51 -#, php-format -msgctxt "Admin menu name" -msgid "%s" -msgstr "" - #: includes/class-sm-post-types.php:53 includes/types-taxonomies.php:96 #, fuzzy, php-format msgid "Search %s" @@ -266,12 +95,6 @@ msgstr "Pas de prédication trouvée" msgid "Series" msgstr "Séries de prédications" -#: includes/class-sm-post-types.php:83 -#, fuzzy -msgctxt "Admin menu name" -msgid "Series" -msgstr "Séries de prédications" - #: includes/class-sm-post-types.php:84 #, fuzzy msgid "Search series" @@ -312,12 +135,6 @@ msgstr "Pas de prédication trouvée" msgid "Topic" msgstr "Sujets" -#: includes/class-sm-post-types.php:108 -#, fuzzy -msgctxt "Admin menu name" -msgid "Topics" -msgstr "Sujets" - #: includes/class-sm-post-types.php:109 #, fuzzy msgid "Search topics" @@ -365,11 +182,6 @@ msgstr "" msgid "Book" msgstr "" -#: includes/class-sm-post-types.php:133 -msgctxt "Admin menu name" -msgid "Books" -msgstr "" - #: includes/class-sm-post-types.php:134 #, fuzzy msgid "Search books" @@ -409,18 +221,11 @@ msgstr "Pas de prédication trouvée" msgid "Service Types" msgstr "Type de culte" -#: includes/class-sm-post-types.php:157 includes/sm-cmb-functions.php:93 -#: includes/types-taxonomies.php:201 includes/types-taxonomies.php:202 -#: includes/types-taxonomies.php:203 includes/types-taxonomies.php:309 +#: includes/class-sm-post-types.php:157 includes/types-taxonomies.php:201 +#: includes/types-taxonomies.php:202 includes/types-taxonomies.php:203 msgid "Service Type" msgstr "Type de culte" -#: includes/class-sm-post-types.php:158 -#, fuzzy -msgctxt "Admin menu name" -msgid "Service Types" -msgstr "Type de culte" - #: includes/class-sm-post-types.php:159 includes/types-taxonomies.php:204 #, fuzzy msgid "Search service types" @@ -456,23 +261,20 @@ msgstr "Nom de la nouvelle série de prédication" msgid "No service types found" msgstr "Pas de prédication trouvée" -#: includes/class-sm-post-types.php:192 includes/options.php:291 -#: includes/options.php:300 includes/types-taxonomies.php:58 -#: includes/types-taxonomies.php:68 views/archive-wpfc_sermon.php:13 +#: includes/class-sm-post-types.php:192 includes/types-taxonomies.php:58 +#: includes/types-taxonomies.php:68 msgid "Sermons" msgstr "Prédications" +#: includes/class-sm-post-types.php:193 includes/types-taxonomies.php:59 +msgid "Sermon" +msgstr "Prédication" + #: includes/class-sm-post-types.php:194 #, fuzzy msgid "All Sermons" msgstr "Prédications" -#: includes/class-sm-post-types.php:195 -#, fuzzy -msgctxt "Admin menu name" -msgid "Sermons" -msgstr "Prédications" - #: includes/class-sm-post-types.php:196 includes/types-taxonomies.php:60 msgid "Add New" msgstr "Ajouter" @@ -482,12 +284,7 @@ msgstr "Ajouter" msgid "Add new sermon" msgstr "Ajouter une nouvelle prédication" -#: includes/class-sm-post-types.php:198 views/archive-wpfc_sermon.php:61 -#: views/archive-wpfc_sermon.php:62 views/single-wpfc_sermon.php:35 -#: views/taxonomy-wpfc_bible_book.php:89 views/taxonomy-wpfc_preacher.php:95 -#: views/taxonomy-wpfc_sermon_series.php:96 -#: views/taxonomy-wpfc_sermon_topics.php:96 -#: views/taxonomy-wpfc_service_type.php:89 +#: includes/class-sm-post-types.php:198 views/single-wpfc_sermon.php:35 msgid "Edit" msgstr "Modifier" @@ -501,6 +298,10 @@ msgstr "Modifier la prédication" msgid "New sermon" msgstr "Nouvelle prédication" +#: includes/class-sm-post-types.php:201 includes/class-sm-post-types.php:202 +msgid "View sermon" +msgstr "Voir la prédication" + #: includes/class-sm-post-types.php:203 #, fuzzy msgid "Search sermon" @@ -564,1015 +365,183 @@ msgid "This is where you can add new sermons to your website." msgstr "Les prédications les plus récentes sur votre site" #: includes/helper-functions.php:193 includes/template-tags.php:129 -#: includes/template-tags.php:400 includes/template-tags.php:426 -#: includes/template-tags.php:439 includes/template-tags.php:465 +#: includes/template-tags.php:400 includes/template-tags.php:439 #, fuzzy msgid "Series: " msgstr "
    Séries :" -#: includes/options.php:74 includes/options.php:81 +#: includes/options.php:82 msgid "Sermon Manager Settings" msgstr "Préférences de Sermon Manager" -#: includes/options.php:81 includes/options.php:94 includes/options.php:101 -#: includes/options.php:761 includes/options.php:770 -#: includes/taxonomy-images/taxonomy-images.php:333 -#: includes/taxonomy-images/taxonomy-images.php:1238 +#: includes/options.php:82 includes/options.php:102 msgid "Settings" msgstr "Préférences" -#: includes/options.php:99 includes/options.php:106 -msgid "Support" -msgstr "Support" - -#: includes/options.php:108 includes/options.php:115 -#: includes/taxonomy-images/taxonomy-images.php:1263 +#: includes/options.php:116 includes/taxonomy-images/taxonomy-images.php:1263 msgid "Manage Settings" msgstr "Préférences" -#: includes/options.php:197 includes/options.php:204 -msgid "Sermon Manager Options" -msgstr "Options de Sermon Manager" - -#: includes/options.php:203 includes/options.php:209 -#, fuzzy -msgid "General" -msgstr "Préférence générales" - -#: includes/options.php:205 includes/options.php:211 -msgid "Verse" -msgstr "" - -#: includes/options.php:207 includes/options.php:213 -#, fuzzy -msgid "Podcast" -msgstr "Préférence du podcast" - -#: includes/options.php:213 includes/options.php:219 -msgid "Options saved" -msgstr "Options sauvegardées." +#: includes/options.php:495 includes/options.php:505 includes/options.php:515 +#: includes/options.php:525 includes/options.php:560 includes/options.php:608 +#: includes/options.php:621 includes/options.php:649 includes/options.php:662 +#, fuzzy, php-format +msgid "e.g. %s" +msgstr "ex " -#: includes/options.php:222 includes/options.php:228 -#, fuzzy -msgid "Need Some Help?" -msgstr "Besoin d'aide ?" +#: includes/options.php:535 +#, fuzzy, php-format +msgid "e.g. Copyright © %s" +msgstr "ex Tous droits réservés" -#. translators: %s see msgid "Sign up" -#: includes/options.php:224 includes/options.php:230 -#, php-format -msgid "" -"Did you know you can get expert support for only $49 per year! %s today and " -"get support from the developers who are building the Sermon Manager." -msgstr "" +#: includes/options.php:583 +#, fuzzy, php-format +msgid "e.g. Preaching and teaching audio from %s" +msgstr "ex : Prédication et enseignements audio" -#: includes/options.php:224 includes/options.php:230 -msgid "Sign up" -msgstr "" +#: includes/options.php:596 +#, fuzzy, php-format +msgid "e.g. Weekly teaching audio brought to you by %s in City, State." +msgstr "ex : Enseignement hebdomadaire présenté par" -#: includes/options.php:227 includes/options.php:233 -msgid "Free Support" -msgstr "" +#: includes/taxonomy-images/taxonomy-images.php:290 +msgid "Image support for taxonomies successfully updated" +msgstr "Support des images pour les taxonomies mises à jour avec succès" -#: includes/options.php:228 includes/options.php:234 -msgid "Priority Support" -msgstr "" +#: includes/taxonomy-images/taxonomy-images.php:293 +msgid "Image support has been disabled for all taxonomies." +msgstr "Le support des images à été désactivé pour toutes les taxonomies." -#: includes/options.php:231 includes/options.php:237 -msgid "We offer limited free support via WordPress.org" -msgstr "" +#: includes/taxonomy-images/taxonomy-images.php:786 +msgid "term" +msgstr "terme" -#: includes/options.php:238 includes/options.php:243 -msgid "Frequently Asked Questions" -msgstr "" +#: includes/taxonomy-images/taxonomy-images.php:846 +#, fuzzy, php-format +msgid "Associate an image with the %1$s named “%2$s”." +msgstr "Associer une image avec le nom %1$s “%2$s”." -#. translators: %s see msgid "Knowledge base" -#: includes/options.php:253 includes/options.php:259 +#: includes/taxonomy-images/taxonomy-images.php:847 #, php-format -msgid "Find out more in our %s" -msgstr "" - -#: includes/options.php:253 includes/options.php:259 -msgid "knowledge base" -msgstr "" - -#: includes/options.php:259 includes/options.php:265 -msgid "Lets Make It Even Better!" -msgstr "" +msgid "Upload a new image for this %s." +msgstr "Charger une nouvelle image pour cela %s/" -#: includes/options.php:264 includes/options.php:270 -msgid "Submit Your Idea" -msgstr "" +#: includes/taxonomy-images/taxonomy-images.php:848 +#, php-format +msgid "Remove image from this %s." +msgstr "Retier une image depuis %s/" -#: includes/options.php:267 -msgid "" -"If you have ideas on how to make Sermon Manager or any of our products " -"better, let us know!" +#: includes/template-tags.php:127 includes/template-tags.php:398 +#: includes/template-tags.php:437 includes/widgets.php:96 +msgid "Bible Text: " msgstr "" -#: includes/options.php:277 includes/options.php:283 -msgid "General Settings" -msgstr "Préférence générales" - -#: includes/options.php:281 includes/options.php:287 -msgid "Archive Page Title" -msgstr "Archiver la page de titre" - -#: includes/options.php:289 includes/options.php:296 -msgid "Archive Page Slug" -msgstr "Archiver le modèle de page" - -#: includes/options.php:291 includes/options.php:300 includes/options.php:490 -#: includes/options.php:494 includes/options.php:500 includes/options.php:504 -#: includes/options.php:510 includes/options.php:514 includes/options.php:520 -#: includes/options.php:524 includes/options.php:555 includes/options.php:559 -#: includes/options.php:603 includes/options.php:607 includes/options.php:616 -#: includes/options.php:620 includes/options.php:648 includes/options.php:661 +#: includes/template-tags.php:160 #, fuzzy, php-format -msgid "e.g. %s" -msgstr "ex " - -#. translators: %1$s see msgid "sermons/preacher", effectively sermons/preacher -#. translators: %2$s see msgid "sermons/series", effectively sermons/series -#: includes/options.php:297 includes/options.php:305 -#, php-format -msgid "" -"Common Base Slug — this is for users who want to have a common base " -"slug across all taxonomies, e.g. %1$s or %2$s." -msgstr "" +msgid "Filter by %s" +msgstr "Modifier la prédication" -#: includes/options.php:297 includes/options.php:305 +#: includes/template-tags.php:165 #, fuzzy -msgid "sermons/preacher" -msgstr "Rechercher dans les prédicateurs" +msgid "Filter by Series" +msgstr "Organiser par séries" -#: includes/options.php:297 includes/options.php:305 +#: includes/template-tags.php:170 #, fuzzy -msgid "sermons/series" -msgstr "Séries de prédications" - -#: includes/options.php:302 includes/options.php:310 -msgid "Enable a common base slug across all taxonomies" -msgstr "" +msgid "Filter by Topic" +msgstr "Organiser par séries" -#: includes/options.php:308 includes/options.php:316 +#: includes/template-tags.php:175 #, fuzzy -msgid "" -"Enable Template Files — this is for users upgrading from an older " -"version who have issues with version 1.5+." -msgstr "" -"Permettre les fichiers de template - Cela est pour les utilisateurs mettant " -"à jour depuis une vieille version et qui ont des soucis avec la version 1.5+." - -#. translators: %s effectively /views -#. Since /views is a locale independent folder name it MUST NOT be localized -#: includes/options.php:313 includes/options.php:321 -#, fuzzy, php-format -msgid "Enable template files found in the %s folder" -msgstr "Permettre les fichiers de template trouvés dans le dossier /views" - -#: includes/options.php:319 includes/options.php:327 -msgid "Disable Sermon Styles" -msgstr "Désactiver les styles de prédication" +msgid "Filter by Book" +msgstr "Prédications par : %s" -#. translators: %s effectively sermons.css -#. Since sermons.css is a locale independent file name it MUST NOT be localized -#: includes/options.php:324 includes/options.php:332 +#: includes/template-tags.php:363 #, fuzzy -msgid "" -"Disable Sermon CSS. If you do this, you should copy the styles from %s and " -"include them in your theme CSS." -msgstr "" -"Désactiver les CSS sur les prédications. Si vous faites cela, vous devez " -"copier les styles depuis sermons.css et l'inclure dans votre propre thème " -"css." +msgid "Download Files" +msgstr "Fichier uploadés" -#: includes/options.php:338 -msgid "Display audio player or video on archive pages" +#: includes/template-tags.php:365 +msgid "MP3" msgstr "" -#: includes/options.php:343 -msgid "Display an audio player or video embed in the archive listing." +#: includes/template-tags.php:368 +msgid "Notes" msgstr "" -#: includes/options.php:349 includes/options.php:354 -msgid "Use old audio player" +#: includes/template-tags.php:371 +msgid "Bulletin" msgstr "" -#: includes/options.php:352 includes/options.php:360 -msgid "" -"Custom label for “Preacher”. Note: it will also change preacher " -"slugs." -msgstr "" +#: includes/template-tags.php:413 +#, fuzzy +msgid "Sermon Topics: " +msgstr "Sujets des prédications" -#: includes/options.php:360 includes/options.php:368 -msgid "Sermon date format (used when creating a new Sermon)" -msgstr "" +#: includes/types-taxonomies.php:61 +#, fuzzy +msgid "Add New Sermon" +msgstr "Ajouter une nouvelle prédication" -#: includes/options.php:389 includes/options.php:395 -msgid "Show key verse in widget" -msgstr "" +#: includes/types-taxonomies.php:62 +#, fuzzy +msgid "Edit Sermon" +msgstr "Modifier la prédication" -#: includes/options.php:393 includes/options.php:401 -#, php-format -msgid "Version %s" -msgstr "" +#: includes/types-taxonomies.php:63 +#, fuzzy +msgid "New Sermon" +msgstr "Nouvelle prédication" -#: includes/options.php:405 includes/options.php:406 -msgid "Current Version" -msgstr "" +#: includes/types-taxonomies.php:64 +#, fuzzy +msgid "View Sermon" +msgstr "Voir la prédication" -#: includes/options.php:413 includes/options.php:414 -msgid "Verse Settings" -msgstr "Préférence des versets" +#: includes/types-taxonomies.php:65 +#, fuzzy +msgid "Search Sermons" +msgstr "Rechercher dans les prédications" -#: includes/options.php:418 includes/options.php:419 -msgid "Verse Popups" -msgstr "Popup des versets" +#: includes/types-taxonomies.php:67 +#, fuzzy +msgid "No sermons found in Trash" +msgstr "Pas de prédications trouvées dans la poubelle" -#: includes/options.php:424 includes/options.php:425 -msgid "Disable Bib.ly verse popups" -msgstr "Désactiver les popup de Bib.ly" +#: includes/types-taxonomies.php:93 includes/types-taxonomies.php:95 +#: includes/types-taxonomies.php:98 includes/types-taxonomies.php:103 +#: includes/types-taxonomies.php:105 +msgid "Preachers" +msgstr "Prédicateurs" -#: includes/options.php:430 includes/options.php:431 -msgid "Select Bible Version for Verse Popups" -msgstr "Sélectionner la version de la bible à utiliser pour les popups" +#: includes/types-taxonomies.php:94 includes/types-taxonomies.php:96 +#: includes/types-taxonomies.php:97 includes/types-taxonomies.php:99 +#: includes/types-taxonomies.php:100 includes/types-taxonomies.php:101 +#: includes/types-taxonomies.php:102 includes/types-taxonomies.php:104 +msgid "Preacher" +msgstr "Prédicateur" -#. translators: %1$s effectively ESV -#. translators: %2$s effectively NET -#. translators: %3$s effectively KJV -#. translators: %4$s effectively LEB -#. translators: %5$s see msgid "bib.ly", effectively bib.ly -#: includes/options.php:444 includes/options.php:452 +#: includes/types-taxonomies.php:97 #, fuzzy, php-format -msgid "%1$s, %2$s, %3$s, or %4$s are the currently supported popups for %5$s." -msgstr "Les versions ESV, NET, KJV, et LEB sont actuellement supportées." - -#: includes/options.php:449 includes/options.php:457 -msgid "bib.ly" -msgstr "" - -#. translators: %s see effectively ESV -#: includes/options.php:451 includes/options.php:459 -#, php-format -msgid "Warning! %s is not supported if your site uses SSL (HTTPS)." -msgstr "" - -#: includes/options.php:464 includes/options.php:468 -msgid "Podcast Settings" -msgstr "Préférence du podcast" - -#: includes/options.php:486 includes/options.php:490 -msgid "Title" -msgstr "Titre" - -#: includes/options.php:496 includes/options.php:500 -#: includes/sm-cmb-functions.php:107 includes/types-taxonomies.php:323 -msgid "Description" -msgstr "Description" +msgid "Most frequent %s" +msgstr "Prédicateurs les plus courrants" -#: includes/options.php:506 includes/options.php:510 -msgid "Website Link" -msgstr "Lien sur le site" +#: includes/types-taxonomies.php:102 +#, fuzzy, php-format +msgid "New %s" +msgstr "Nom du nouveau prédicateur" -#: includes/options.php:516 includes/options.php:520 -msgid "Language" -msgstr "Langue" +#: includes/types-taxonomies.php:103 +#, fuzzy, php-format +msgid "Separate multiple %s with commas" +msgstr "Séparer les différents prédicateurs par des virgules" -#: includes/options.php:526 includes/options.php:530 -msgid "Copyright" -msgstr "Copyroght" +#: includes/types-taxonomies.php:104 +#, fuzzy, php-format +msgid "Add or remove %s" +msgstr "Ajouter ou supprimer des prédicateurs" -#: includes/options.php:530 includes/options.php:534 -#, fuzzy, php-format -msgid "e.g. Copyright © %s" -msgstr "ex Tous droits réservés" - -#. translators: %s &copy; -#: includes/options.php:535 includes/options.php:539 -#, php-format -msgid "Tip: Use %s to generate a copyright symbol." -msgstr "" - -#: includes/options.php:541 includes/options.php:545 -msgid "Webmaster Name" -msgstr "Nom du Webmaster" - -#: includes/options.php:545 includes/options.php:549 -msgid "e.g. Your Name" -msgstr "ex : Votre Nom" - -#: includes/options.php:551 includes/options.php:555 -msgid "Webmaster Email" -msgstr "E-mail du Webmaster" - -#: includes/options.php:561 includes/options.php:565 -msgid "Author" -msgstr "Auteur" - -#: includes/options.php:565 includes/options.php:569 -msgid "e.g. Primary Speaker or Church Name" -msgstr "ex : Personne principale ou nom de l'église" - -#: includes/options.php:569 includes/options.php:573 -#, fuzzy -msgid "This will display at the “Artist” in the iTunes Store." -msgstr "Cela va apparaître dans la partie \"Artiste\" dans l'iTunes store." - -#: includes/options.php:574 includes/options.php:578 -msgid "Subtitle" -msgstr "Sous-titre" - -#: includes/options.php:578 includes/options.php:582 -#, fuzzy, php-format -msgid "e.g. Preaching and teaching audio from %s" -msgstr "ex : Prédication et enseignements audio" - -#: includes/options.php:582 includes/options.php:586 -msgid "" -"Your subtitle should briefly tell the listener what they can expect to hear." -msgstr "" -"Vos sous-titres doivent courtement expliquer à votre auditeur ce qu'il est " -"sensé écouter." - -#: includes/options.php:587 includes/options.php:591 -msgid "Summary" -msgstr "Résumé" - -#: includes/options.php:591 includes/options.php:595 -#, fuzzy, php-format -msgid "e.g. Weekly teaching audio brought to you by %s in City, State." -msgstr "ex : Enseignement hebdomadaire présenté par" - -#: includes/options.php:594 includes/options.php:598 -msgid "" -"Keep your Podcast Summary short, sweet and informative. Be sure to include a " -"brief statement about your mission and in what region your audio content " -"originates." -msgstr "" -"Garder votre résumé du podcast court, sympa et informatif. Soyez sure " -"d'inclure un bref résumé à propos de votre mission, et quelle est la " -"provenance de votre contenu." - -#: includes/options.php:599 includes/options.php:603 -msgid "Owner Name" -msgstr "Propriétaire" - -#: includes/options.php:607 includes/options.php:611 -msgid "This should typically be the name of your Church." -msgstr "Cela est typiquement le nom de votre église." - -#: includes/options.php:612 includes/options.php:616 -msgid "Owner Email" -msgstr "E-mail du propriétaire" - -#: includes/options.php:620 includes/options.php:624 -#, fuzzy -msgid "" -"Use an email address that you don’t mind being made public. If someone " -"wants to contact you regarding your Podcast this is the address they will " -"use." -msgstr "" -"Utilisez une adresse qui ne vous dérange pas d'être publique. Si quelqu'un " -"désire vous contacter suite à l'écoute du podcast, il utilisera surement " -"cette adresse." - -#: includes/options.php:625 includes/options.php:629 -msgid "Cover Image" -msgstr "Image de couverture" - -#: includes/options.php:632 includes/options.php:636 -#, fuzzy -msgid "Upload Image" -msgstr "Charger." - -#: includes/options.php:635 includes/options.php:639 -#, fuzzy -msgid "" -"This JPG will serve as the Podcast artwork in the iTunes Store. The image " -"must be between 1,400px by 1,400px and 3,000px by 3,000px or else iTunes " -"will not accept your feed." -msgstr "" -"Cette image jpeg sera utilisée comme icône par l'iTunes store. Cela doit " -"être une image de 1400px par 1400px." - -#: includes/options.php:640 includes/options.php:644 -msgid "Top Category" -msgstr "Catégorie principale" - -#: includes/options.php:648 includes/options.php:652 -msgid "" -"Choose the appropriate top-level category for your Podcast listing in iTunes." -msgstr "" -"Choisissez la catégorie principale appropriée pour votre liste de podcast " -"sur iTunes." - -#: includes/options.php:653 includes/options.php:657 -msgid "Sub Category" -msgstr "Sous-catégorie" - -#: includes/options.php:661 includes/options.php:665 -msgid "Choose the appropriate sub category for your Podcast listing in iTunes." -msgstr "" -"Choisissez la sous-catégorie appropriée pour votre liste de podcast sur " -"iTunes." - -#: includes/options.php:666 includes/options.php:670 -msgid "PodTrac Tracking" -msgstr "" - -#: includes/options.php:671 includes/options.php:675 -msgid "Enables PodTrac tracking." -msgstr "" - -#. translators: %s podtrac.com -#: includes/options.php:675 includes/options.php:679 -#, php-format -msgid "For more info on PodTrac or to sign up for an account, visit %s" -msgstr "" - -#: includes/options.php:680 includes/options.php:684 -#, fuzzy -msgid "HTML in description" -msgstr "Description" - -#: includes/options.php:686 includes/options.php:690 -msgid "Enable HTML description" -msgstr "" - -#: includes/options.php:690 includes/options.php:694 -msgid "" -"Enables showing of HTML in iTunes description field. Uncheck if description " -"looks messy." -msgstr "" - -#: includes/options.php:695 includes/options.php:699 -#, fuzzy -msgid "Number of podcasts to show" -msgstr "Nombre de prédication à afficher :" - -#: includes/options.php:704 includes/options.php:708 -msgid "" -"Shows custom podcast count. If not defined, it uses WordPress default count." -msgstr "" - -#: includes/options.php:715 -#, fuzzy -msgid "Feed URL to Submit to iTunes" -msgstr "Soumettre à iTunes" - -#: includes/options.php:722 includes/options.php:725 -msgid "Feed Validator" -msgstr "validateur de flux" - -#. translators: %s Feed Validator link, see msgid "Feed Validator" -#: includes/options.php:722 includes/options.php:725 -#, fuzzy, php-format -msgid "" -"Use the %s to diagnose and fix any problems before submitting your Podcast " -"to iTunes." -msgstr "" -"pour diagnostiquer et corriger tous les problèmes avant de soumettre votre " -"podcast à iTunes." - -#. translators: %s see msgid "Submit Your Podcast" -#: includes/options.php:725 includes/options.php:728 -#, fuzzy, php-format -msgid "" -"Once your Podcast Settings are complete and your Sermons are ready, it’" -"s time to %s to the iTunes Store!" -msgstr "" -"Une fois les préférences de votre podcast complétées, et que vos " -"prédications sont prêtes, il est temps de" - -#: includes/options.php:725 includes/options.php:728 -msgid "Submit Your Podcast" -msgstr "Soumettre votre podcast" - -#. translators: %s see msgid "FeedBurner" -#: includes/options.php:727 includes/options.php:731 -#, fuzzy, php-format -msgid "" -"Alternatively, if you want to track your Podcast subscribers, simply pass " -"the Podcast Feed URL above through %s. FeedBurner will then give you a new " -"URL to submit to iTunes instead." -msgstr "" -"Alternativement, si vous voulez tracer les souscrivants à votre podcast, " -"passez simplement l'url du flux à travers" - -#: includes/options.php:727 includes/options.php:731 -msgid "FeedBurner" -msgstr "FeedBurner" - -#. translators: %s see msgid "iTunes FAQ for Podcast Makers" -#: includes/options.php:730 includes/options.php:734 -#, fuzzy, php-format -msgid "Please read the %s for more information." -msgstr "pour d'avantage d'informations." - -#: includes/options.php:730 includes/options.php:734 -msgid "iTunes FAQ for Podcast Makers" -msgstr "FAQ d'iTunes pour les créateurs de podcasts" - -#: includes/options.php:742 includes/options.php:751 -#: includes/taxonomy-images/taxonomy-images.php:395 -msgid "Save Changes" -msgstr "Sauvegarder les changements" - -#: includes/shortcodes.php:781 includes/shortcodes.php:786 -#: includes/template-tags.php:114 views/archive-wpfc_sermon.php:40 -#: views/taxonomy-wpfc_bible_book.php:72 views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -#: views/taxonomy-wpfc_service_type.php:72 -#, php-format -msgid "Permalink to %s" -msgstr "Lien permanent pour %s" - -#: includes/sm-cmb-functions.php:57 includes/types-taxonomies.php:273 -msgid "Sermon Details" -msgstr "Détails de la prédication" - -#: includes/sm-cmb-functions.php:86 -msgid "(optional)" -msgstr "" - -#. translators: %s date format, effectively d/m/Y or the like -#: includes/sm-cmb-functions.php:86 includes/types-taxonomies.php:302 -#, php-format -msgid "format: %s" -msgstr "" - -#: includes/sm-cmb-functions.php:94 includes/types-taxonomies.php:310 -msgid "" -"Select the type of service. Modify service types in Sermons → Service " -"Types." -msgstr "" - -#: includes/sm-cmb-functions.php:101 includes/types-taxonomies.php:317 -msgid "Main Bible Passage" -msgstr "Passage biblique principal" - -#. translators: %s see msgid "John 3:16-18", effectively John 3:16-18 -#: includes/sm-cmb-functions.php:102 includes/types-taxonomies.php:318 -#, fuzzy, php-format -msgid "Enter the Bible passage with the full book names, e.g. %s." -msgstr "" -"Indiquez le passage de la bible avec le nom complet (ex : Jean 3:16-18)." - -#: includes/sm-cmb-functions.php:102 includes/types-taxonomies.php:318 -msgid "John 3:16-18" -msgstr "" - -#: includes/sm-cmb-functions.php:108 includes/types-taxonomies.php:324 -msgid "" -"Type a brief description about this sermon, an outline, or a full manuscript" -msgstr "" -"Indiquez une brève description à propose de ce message, un résumé ou le " -"texte complet" - -#: includes/sm-cmb-functions.php:116 includes/types-taxonomies.php:332 -msgid "Sermon Files" -msgstr "Fichiers de la prédication" - -#: includes/sm-cmb-functions.php:125 includes/types-taxonomies.php:341 -msgid "Location of MP3" -msgstr "Localisation du fichier mp3" - -#: includes/sm-cmb-functions.php:126 includes/types-taxonomies.php:342 -msgid "Upload an audio file or enter an URL." -msgstr "Chargez un fichier audio ou indiquez une URL." - -#: includes/sm-cmb-functions.php:134 includes/types-taxonomies.php:350 -msgid "MP3 Duration" -msgstr "" - -#. translators: %s see msgid "hh:mm:ss", effectively hh:mm:ss -#: includes/sm-cmb-functions.php:135 includes/types-taxonomies.php:351 -#, php-format -msgid "" -"Length in %s format (if left blank, will attempt to calculate automatically " -"when you save)" -msgstr "" - -#: includes/sm-cmb-functions.php:135 includes/types-taxonomies.php:351 -msgid "hh:mm:ss" -msgstr "" - -#: includes/sm-cmb-functions.php:140 includes/types-taxonomies.php:356 -msgid "Video Embed Code" -msgstr "Code d'embarquement de video" - -#: includes/sm-cmb-functions.php:141 includes/types-taxonomies.php:357 -msgid "Paste your embed code for Vimeo, Youtube, or other service here" -msgstr "Coller le code embed pour Vimeo, Youtube ou un autre service ici" - -#: includes/sm-cmb-functions.php:146 includes/types-taxonomies.php:362 -#, fuzzy -msgid "Video Link" -msgstr "Lien sur le site" - -#: includes/sm-cmb-functions.php:147 includes/types-taxonomies.php:363 -#, fuzzy -msgid "Paste your link for Vimeo, Youtube, or other service here" -msgstr "Coller le code embed pour Vimeo, Youtube ou un autre service ici" - -#: includes/sm-cmb-functions.php:153 includes/types-taxonomies.php:369 -msgid "Sermon Notes" -msgstr "Fichiers de la prédication" - -#: includes/sm-cmb-functions.php:154 includes/sm-cmb-functions.php:163 -#: includes/types-taxonomies.php:370 includes/types-taxonomies.php:379 -msgid "Upload a pdf file or enter an URL." -msgstr "Charger un fichier pdf ou indiquez une URL." - -#: includes/sm-cmb-functions.php:162 includes/template-tags.php:371 -#: includes/template-tags.php:397 includes/types-taxonomies.php:378 -msgid "Bulletin" -msgstr "" - -#: includes/sm-core-functions.php:121 -#, fuzzy -msgctxt "slug" -msgid "preacher" -msgstr "Prédicateur" - -#: includes/sm-core-functions.php:122 -#, fuzzy -msgctxt "slug" -msgid "series" -msgstr "Séries de prédications" - -#: includes/sm-core-functions.php:123 -#, fuzzy -msgctxt "slug" -msgid "topics" -msgstr "Sujets" - -#: includes/sm-core-functions.php:124 -#, fuzzy -msgctxt "slug" -msgid "book" -msgstr "Modifier" - -#: includes/sm-core-functions.php:125 -#, fuzzy -msgctxt "slug" -msgid "service-type" -msgstr "Type de culte" - -#: includes/sm-core-functions.php:126 -#, fuzzy -msgctxt "slug" -msgid "sermons" -msgstr "Prédications" - -#. translators: %1$s see msgid "term_taxonomy_id", effectively term_taxonomy_id -#. translators: %2$s effectively -#. translators: %3$s effectively category.php -#. translators: %4$s effectively tag.php -#. translators: %5$s effectively taxonomy.php -#. translators: %6$s see msgid "template hierarchy" -#: includes/taxonomy-images/public-filters.php:385 -#, fuzzy, php-format -msgid "" -"%1$s is not a property of the current queried object. This usually happens " -"when the %2$s filter is used in an unsupported template file. This filter " -"has been designed to work in taxonomy archives which are traditionally " -"served by one of the following template files: %3$s, %4$s or %5$s. Learn " -"more about %6$s." -msgstr "" -"%1$s n'est pas une propriété de la requête sur l'objet courant. Cela " -"intervient habituellement quand le filtre %2$s est utilisé avec un fichier " -"de template non-supporté. Ce filtre a été concu pour travaillé avec les " -"anciennes archives qui sont traditionellement servies par l'un des templates " -"suivant : category.php, tag.php ou taxonomy.php. En savoir d'avantage à " -"propos de %3$s." - -#: includes/taxonomy-images/public-filters.php:386 -msgid "term_taxonomy_id" -msgstr "term_taxonomy_id" - -#: includes/taxonomy-images/public-filters.php:391 -msgid "template hierarchy" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:130 -#, php-format -msgid "Associate with %1$s" -msgstr "Associé avec %1$s" - -#: includes/taxonomy-images/taxonomy-images.php:130 -#: includes/taxonomy-images/taxonomy-images.php:131 -msgid "this term" -msgstr "ce terme" - -#: includes/taxonomy-images/taxonomy-images.php:131 -#, php-format -msgid "Remove association with %1$s" -msgstr "Retirer l'association avec %1$s" - -#: includes/taxonomy-images/taxonomy-images.php:290 -msgid "Image support for taxonomies successfully updated" -msgstr "Support des images pour les taxonomies mises à jour avec succès" - -#: includes/taxonomy-images/taxonomy-images.php:293 -msgid "Image support has been disabled for all taxonomies." -msgstr "Le support des images à été désactivé pour toutes les taxonomies." - -#: includes/taxonomy-images/taxonomy-images.php:339 -msgid "Taxonomies" -msgstr "Taxonomies" - -#: includes/taxonomy-images/taxonomy-images.php:359 -#: includes/taxonomy-images/taxonomy-images.php:360 -msgid "Taxonomy Images" -msgstr "Images des Taxonomies" - -#: includes/taxonomy-images/taxonomy-images.php:387 -msgid "Taxonomy Images Plugin Settings" -msgstr "Préférences du plugin de gestion des images de taxonomie" - -#: includes/taxonomy-images/taxonomy-images.php:447 -msgid "Unknown error encountered" -msgstr "Une erreur inconnue est intervenue" - -#: includes/taxonomy-images/taxonomy-images.php:529 -#: includes/taxonomy-images/taxonomy-images.php:611 -msgid "tt_id not sent" -msgstr "tt_id non-envoyé" - -#: includes/taxonomy-images/taxonomy-images.php:537 -#: includes/taxonomy-images/taxonomy-images.php:619 -msgid "tt_id is empty" -msgstr "tt_id est vide" - -#: includes/taxonomy-images/taxonomy-images.php:544 -#: includes/taxonomy-images/taxonomy-images.php:626 -msgid "You do not have the correct capability to manage this term" -msgstr "Vous n'avez pas les bonnes capacité pour gérer ce terme" - -#: includes/taxonomy-images/taxonomy-images.php:551 -#: includes/taxonomy-images/taxonomy-images.php:633 -msgid "No nonce included." -msgstr "Pas d'instance incluse." - -#: includes/taxonomy-images/taxonomy-images.php:558 -#: includes/taxonomy-images/taxonomy-images.php:640 -msgid "Nonce did not match" -msgstr "L'instance ne correspond pas" - -#: includes/taxonomy-images/taxonomy-images.php:565 -msgid "Image id not sent" -msgstr "Identifiant de l'image non-envoyée" - -#: includes/taxonomy-images/taxonomy-images.php:573 -msgid "Image id is not a positive integer" -msgstr "l'identifiant de l'image n'est pas un entier positif" - -#: includes/taxonomy-images/taxonomy-images.php:582 -msgid "Image successfully associated" -msgstr "L'images a été associée avec succès" - -#: includes/taxonomy-images/taxonomy-images.php:588 -msgid "Association could not be created" -msgstr "L'association ne peux pas être crée" - -#: includes/taxonomy-images/taxonomy-images.php:633 -msgid "No nonce included" -msgstr "Pas d'instance incule" - -#: includes/taxonomy-images/taxonomy-images.php:648 -msgid "Nothing to remove" -msgstr "Rien à retirer" - -#: includes/taxonomy-images/taxonomy-images.php:657 -msgid "Association successfully removed" -msgstr "Association retirée avec succès" - -#: includes/taxonomy-images/taxonomy-images.php:662 -msgid "Association could not be removed" -msgstr "L'association ne peux pas être retirée" - -#: includes/taxonomy-images/taxonomy-images.php:739 -#: includes/taxonomy-images/taxonomy-images.php:793 -msgid "Image" -msgstr "Images" - -#: includes/taxonomy-images/taxonomy-images.php:786 -#: includes/taxonomy-images/taxonomy-images.php:823 -msgid "term" -msgstr "terme" - -#: includes/taxonomy-images/taxonomy-images.php:797 -#, php-format -msgid "Associate an image from your media library to this %1$s." -msgstr "Associer une image depuis votre librairie de médias à %1$s." - -#: includes/taxonomy-images/taxonomy-images.php:846 -#, fuzzy, php-format -msgid "Associate an image with the %1$s named “%2$s”." -msgstr "Associer une image avec le nom %1$s “%2$s”." - -#: includes/taxonomy-images/taxonomy-images.php:847 -#, php-format -msgid "Upload a new image for this %s." -msgstr "Charger une nouvelle image pour cela %s/" - -#: includes/taxonomy-images/taxonomy-images.php:847 -msgid "Upload." -msgstr "Charger." - -#: includes/taxonomy-images/taxonomy-images.php:848 -msgid "Delete" -msgstr "Supprimer" - -#: includes/taxonomy-images/taxonomy-images.php:848 -#, php-format -msgid "Remove image from this %s." -msgstr "Retier une image depuis %s/" - -#: includes/taxonomy-images/taxonomy-images.php:882 -msgid "“" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:883 -msgid "”" -msgstr "" - -#: includes/taxonomy-images/taxonomy-images.php:884 -msgid "Associating …" -msgstr "Associer …" - -#: includes/taxonomy-images/taxonomy-images.php:885 -msgid "Successfully Associated" -msgstr "Associé avec succès" - -#: includes/taxonomy-images/taxonomy-images.php:886 -msgid "Removing …" -msgstr "Retirer …" - -#: includes/taxonomy-images/taxonomy-images.php:887 -msgid "Successfully Removed" -msgstr "Retiré avec succès" - -#: includes/taxonomy-images/taxonomy-images.php:1162 -#, php-format -msgid "" -"The %1$s argument for %2$s is set to %3$s which is not a registered " -"taxonomy. Please check the spelling and update the argument." -msgstr "" -"L'argument %1$s pour %2$s est définit pour %3$s avec une taxonomie non-" -"enregistrée. Merci de vérifier l'orthographe et mettre à jour l'argument." - -#: includes/taxonomy-images/taxonomy-images.php:1163 -msgid "taxonomy" -msgstr "taxonomie" - -#: includes/taxonomy-images/taxonomy-images.php:1174 -#, php-format -msgid "No taxonomies have image support. %1$s" -msgstr "Pas de taxonomie n'a de support d'image. %1$s" - -#: includes/taxonomy-images/taxonomy-images.php:1180 -#, php-format -msgid "The %1$s taxonomy does not have image support. %2$s" -msgstr "La taxonomie %1$s n'a pas de support d'image. %2$s" - -#: includes/taxonomy-images/taxonomy-images.php:1206 -#, php-format -msgid "The %1$s has been called directly. Please use the %2$s filter instead." -msgstr "" -"Le %1$s a été appelé directement. Merci d'utiliser le filtre %2$s à la place." - -#: includes/taxonomy-images/taxonomy-images.php:1243 -msgid "Donate" -msgstr "Don" - -#: includes/taxonomy-images/taxonomy-images.php:1302 -#: includes/taxonomy-images/taxonomy-images.php:1303 -#: includes/template-tags.php:160 includes/types-taxonomies.php:94 -#: includes/types-taxonomies.php:96 includes/types-taxonomies.php:97 -#: includes/types-taxonomies.php:98 includes/types-taxonomies.php:99 -#: includes/types-taxonomies.php:100 includes/types-taxonomies.php:101 -#: includes/types-taxonomies.php:102 includes/types-taxonomies.php:103 -#: includes/types-taxonomies.php:104 includes/types-taxonomies.php:105 -msgid "Preacher" -msgstr "Prédicateur" - -#. translators: %s see msgid "Preacher" -#: includes/taxonomy-images/taxonomy-images.php:1302 -#: includes/taxonomy-images/taxonomy-images.php:1303 -#, fuzzy, php-format -msgid "Set %s’s image" -msgstr "Rechercher une série de prédication" - -#: includes/taxonomy-images/taxonomy-images.php:1304 -#: includes/taxonomy-images/taxonomy-images.php:1305 -#, fuzzy -msgid "Set Series image" -msgstr "Supprimer cette image" - -#: includes/template-tags.php:127 includes/template-tags.php:398 -#: includes/template-tags.php:424 includes/template-tags.php:437 -#: includes/template-tags.php:463 includes/widgets.php:96 -msgid "Bible Text: " -msgstr "" - -#: includes/template-tags.php:160 -#, fuzzy, php-format -msgid "Filter by %s" -msgstr "Modifier la prédication" - -#: includes/template-tags.php:165 -#, fuzzy -msgid "Filter by Series" -msgstr "Organiser par séries" - -#: includes/template-tags.php:170 -#, fuzzy -msgid "Filter by Topic" -msgstr "Organiser par séries" - -#: includes/template-tags.php:175 -#, fuzzy -msgid "Filter by Book" -msgstr "Prédications par : %s" - -#: includes/template-tags.php:363 includes/template-tags.php:389 -#, fuzzy -msgid "Download Files" -msgstr "Fichier uploadés" - -#: includes/template-tags.php:365 includes/template-tags.php:391 -msgid "MP3" -msgstr "" - -#: includes/template-tags.php:368 includes/template-tags.php:394 -msgid "Notes" -msgstr "" - -#: includes/template-tags.php:413 includes/template-tags.php:439 -#, fuzzy -msgid "Sermon Topics: " -msgstr "Sujets des prédications" - -#: includes/types-taxonomies.php:61 -#, fuzzy -msgid "Add New Sermon" -msgstr "Ajouter une nouvelle prédication" - -#: includes/types-taxonomies.php:62 -#, fuzzy -msgid "Edit Sermon" -msgstr "Modifier la prédication" - -#: includes/types-taxonomies.php:63 -#, fuzzy -msgid "New Sermon" -msgstr "Nouvelle prédication" - -#: includes/types-taxonomies.php:64 -#, fuzzy -msgid "View Sermon" -msgstr "Voir la prédication" - -#: includes/types-taxonomies.php:65 -#, fuzzy -msgid "Search Sermons" -msgstr "Rechercher dans les prédications" - -#: includes/types-taxonomies.php:67 -#, fuzzy -msgid "No sermons found in Trash" -msgstr "Pas de prédications trouvées dans la poubelle" - -#: includes/types-taxonomies.php:93 includes/types-taxonomies.php:95 -#: includes/types-taxonomies.php:98 includes/types-taxonomies.php:103 -#: includes/types-taxonomies.php:105 -msgid "Preachers" -msgstr "Prédicateurs" - -#: includes/types-taxonomies.php:97 -#, fuzzy, php-format -msgid "Most frequent %s" -msgstr "Prédicateurs les plus courrants" - -#: includes/types-taxonomies.php:102 -#, fuzzy, php-format -msgid "New %s" -msgstr "Nom du nouveau prédicateur" - -#: includes/types-taxonomies.php:103 -#, fuzzy, php-format -msgid "Separate multiple %s with commas" -msgstr "Séparer les différents prédicateurs par des virgules" - -#: includes/types-taxonomies.php:104 -#, fuzzy, php-format -msgid "Add or remove %s" -msgstr "Ajouter ou supprimer des prédicateurs" - -#: includes/types-taxonomies.php:105 +#: includes/types-taxonomies.php:105 #, fuzzy, php-format msgid "Choose from most frequent %s" msgstr "Choisir dans les prédicateurs les plus fréquents" @@ -1762,44 +731,6 @@ msgstr "Ajouter une nouvelle prédication" msgid "Add File" msgstr "Ajouter" -#: includes/vendor/abstract-wp-rest-controller.php:29 -#, php-format -msgid "The %s method must be overridden." -msgstr "" - -#: includes/vendor/abstract-wp-rest-controller.php:41 -#: includes/vendor/abstract-wp-rest-controller.php:53 -#: includes/vendor/abstract-wp-rest-controller.php:65 -#: includes/vendor/abstract-wp-rest-controller.php:77 -#: includes/vendor/abstract-wp-rest-controller.php:89 -#: includes/vendor/abstract-wp-rest-controller.php:101 -#: includes/vendor/abstract-wp-rest-controller.php:113 -#: includes/vendor/abstract-wp-rest-controller.php:125 -#: includes/vendor/abstract-wp-rest-controller.php:137 -#: includes/vendor/abstract-wp-rest-controller.php:149 -#: includes/vendor/abstract-wp-rest-controller.php:161 -#: includes/vendor/abstract-wp-rest-controller.php:174 -#, php-format -msgid "Method %s not implemented. Must be overridden in subclass." -msgstr "" - -#: includes/vendor/abstract-wp-rest-controller.php:287 -msgid "Current page of the collection." -msgstr "" - -#: includes/vendor/abstract-wp-rest-controller.php:295 -msgid "Maximum number of items to be returned in result set." -msgstr "" - -#: includes/vendor/abstract-wp-rest-controller.php:304 -msgid "Limit results to those matching a string." -msgstr "" - -#: includes/vendor/abstract-wp-rest-controller.php:324 -msgid "" -"Scope under which the request is made; determines fields present in response." -msgstr "" - #: includes/widgets.php:12 msgid "The most recent sermons on your site" msgstr "Les prédications les plus récentes sur votre site" @@ -1816,161 +747,602 @@ msgstr "Titre :" msgid "Number of sermons to show:" msgstr "Nombre de prédication à afficher :" -#. translators: plugin header field "Plugin Name" -#: sermons.php:3 +#: sermons.php:30 +#, php-format +msgid "" +"You are running PHP %s, but Sermon Manager requires at " +"least PHP %s." +msgstr "" + +#~ msgid "Sermon updated. %s" +#~ msgstr "Prédication mise à jour. %s" + +#~ msgid "Custom field updated." +#~ msgstr "Champ personnalisé mis à jour." + +#~ msgid "Custom field deleted." +#~ msgstr "Champ personnalisé supprimé." + +#~ msgid "Sermon updated." +#~ msgstr "Prédication mise à jour." + +#~ msgid "Sermon restored to revision from %s" +#~ msgstr "Prédication restaurée à la révision depuis %s" + #, fuzzy -msgid "Sermon Manager for WordPress" -msgstr "Options de Sermon Manager" +#~ msgid "Sermon published. %s" +#~ msgstr "prédication sauvegardée." -#. translators: plugin header field "Description" -#: sermons.php:5 -msgid "Add audio and video sermons, manage speakers, series, and more." -msgstr "" +#~ msgid "Sermon saved." +#~ msgstr "prédication sauvegardée." -#. translators: %s see msgid "←", effectively -#: views/archive-wpfc_sermon.php:18 views/archive-wpfc_sermon.php:70 -#: views/archive-wpfc_sermon.php:71 -#, fuzzy, php-format -msgid "%s Older sermons" -msgstr "Modifier la prédication" +#, fuzzy +#~ msgid "Preview sermon" +#~ msgstr "Voir la prédication" -#: views/archive-wpfc_sermon.php:18 views/archive-wpfc_sermon.php:70 -#: views/taxonomy-wpfc_bible_book.php:36 views/taxonomy-wpfc_bible_book.php:99 -#: views/taxonomy-wpfc_preacher.php:42 views/taxonomy-wpfc_preacher.php:105 -#: views/taxonomy-wpfc_sermon_series.php:43 -#: views/taxonomy-wpfc_sermon_series.php:106 -#: views/taxonomy-wpfc_sermon_topics.php:43 -#: views/taxonomy-wpfc_sermon_topics.php:106 -#: views/taxonomy-wpfc_service_type.php:36 -#: views/taxonomy-wpfc_service_type.php:99 -#, fuzzy -msgid "←" -msgstr "←" - -#: views/archive-wpfc_sermon.php:21 views/archive-wpfc_sermon.php:73 -#: views/taxonomy-wpfc_bible_book.php:38 -#: views/taxonomy-wpfc_bible_book.php:101 views/taxonomy-wpfc_preacher.php:44 -#: views/taxonomy-wpfc_preacher.php:107 -#: views/taxonomy-wpfc_sermon_series.php:52 -#: views/taxonomy-wpfc_sermon_series.php:108 -#: views/taxonomy-wpfc_sermon_topics.php:45 -#: views/taxonomy-wpfc_service_type.php:20 -#: views/taxonomy-wpfc_service_type.php:38 -#: views/taxonomy-wpfc_service_type.php:101 -#, fuzzy -msgid "→" -msgstr "→" - -#. translators: %s see msgid "→", effectively -#: views/archive-wpfc_sermon.php:21 views/archive-wpfc_sermon.php:73 -#: views/archive-wpfc_sermon.php:74 -#, fuzzy, php-format -msgid "Newer sermons %s" -msgstr "Nouvelle prédication" +#, fuzzy +#~ msgid "Sermon submitted. %s" +#~ msgstr "Prédication mise à jour." -#: views/archive-wpfc_sermon.php:28 views/taxonomy-wpfc_bible_book.php:45 -#: views/taxonomy-wpfc_preacher.php:51 -#: views/taxonomy-wpfc_sermon_series.php:52 -#: views/taxonomy-wpfc_sermon_topics.php:52 -#: views/taxonomy-wpfc_service_type.php:45 -msgid "Not Found" -msgstr "Pas trouvé" - -#: views/archive-wpfc_sermon.php:30 views/taxonomy-wpfc_bible_book.php:47 -#: views/taxonomy-wpfc_preacher.php:53 -#: views/taxonomy-wpfc_sermon_series.php:54 -#: views/taxonomy-wpfc_sermon_topics.php:54 -#: views/taxonomy-wpfc_service_type.php:47 -msgid "Apologies, but no sermons were found." -msgstr "Désolé, mais aucune prédication n'a été trouvée." - -#. translators: %s date -#: views/archive-wpfc_sermon.php:47 views/taxonomy-wpfc_bible_book.php:77 -#: views/taxonomy-wpfc_preacher.php:83 -#: views/taxonomy-wpfc_sermon_series.php:84 -#: views/taxonomy-wpfc_sermon_topics.php:84 -#: views/taxonomy-wpfc_service_type.php:77 -#, fuzzy, php-format -msgid "Preached on %s" -msgstr "Prédicateurs" +#, fuzzy +#~ msgid "Sermon draft updated. %s" +#~ msgstr "Prédication mise à jour." -#: views/archive-wpfc_sermon.php:59 views/archive-wpfc_sermon.php:60 -#: views/taxonomy-wpfc_bible_book.php:88 views/taxonomy-wpfc_preacher.php:94 -#: views/taxonomy-wpfc_sermon_series.php:95 -#: views/taxonomy-wpfc_sermon_topics.php:95 -#: views/taxonomy-wpfc_service_type.php:88 -#, fuzzy, php-format -msgid "%s comment" -msgid_plural "%s comments" -msgstr[0] "% commentaires" -msgstr[1] "% commentaires" - -#: views/archive-wpfc_sermon.php:59 views/archive-wpfc_sermon.php:60 -#: views/taxonomy-wpfc_bible_book.php:88 views/taxonomy-wpfc_preacher.php:94 -#: views/taxonomy-wpfc_sermon_series.php:95 -#: views/taxonomy-wpfc_sermon_topics.php:95 -#: views/taxonomy-wpfc_service_type.php:88 -msgid "Leave a comment" -msgstr "Laisser un commentaire" - -#: views/single-wpfc_sermon.php:42 -msgctxt "Previous post link" -msgid "←" -msgstr "←" - -#: views/single-wpfc_sermon.php:44 -msgctxt "Next post link" -msgid "→" -msgstr "→" - -#: views/taxonomy-wpfc_bible_book.php:20 -#, fuzzy, php-format -msgid "Sermons by Book: %s" -msgstr "Prédications par : %s" +#, fuzzy +#~ msgid "%s sermon" +#~ msgid_plural "%s sermons" +#~ msgstr[0] "Nouvelle prédication" +#~ msgstr[1] "Nouvelle prédication" -#. translators: %s see msgid "←", effectively -#: views/taxonomy-wpfc_bible_book.php:36 views/taxonomy-wpfc_bible_book.php:99 -#: views/taxonomy-wpfc_preacher.php:42 views/taxonomy-wpfc_preacher.php:105 -#: views/taxonomy-wpfc_sermon_series.php:43 -#: views/taxonomy-wpfc_sermon_series.php:106 -#: views/taxonomy-wpfc_sermon_topics.php:43 -#: views/taxonomy-wpfc_sermon_topics.php:106 -#: views/taxonomy-wpfc_service_type.php:36 -#: views/taxonomy-wpfc_service_type.php:99 -#, php-format -msgid "%s Older posts" -msgstr "" +#, fuzzy +#~ msgctxt "Label" +#~ msgid "Email" +#~ msgstr "E-mail du propriétaire" -#. translators: %s see msgid "→", effectively -#: views/taxonomy-wpfc_bible_book.php:38 -#: views/taxonomy-wpfc_bible_book.php:101 views/taxonomy-wpfc_preacher.php:44 -#: views/taxonomy-wpfc_preacher.php:107 -#: views/taxonomy-wpfc_sermon_series.php:45 -#: views/taxonomy-wpfc_sermon_series.php:108 -#: views/taxonomy-wpfc_sermon_topics.php:45 -#: views/taxonomy-wpfc_sermon_topics.php:108 -#: views/taxonomy-wpfc_service_type.php:38 -#: views/taxonomy-wpfc_service_type.php:101 -#, php-format -msgid "Newer posts %s" -msgstr "" +#, fuzzy +#~ msgctxt "Admin menu name" +#~ msgid "Series" +#~ msgstr "Séries de prédications" -#: views/taxonomy-wpfc_preacher.php:20 -#, php-format -msgid "Sermons by: %s" -msgstr "Prédications par : %s" +#, fuzzy +#~ msgctxt "Admin menu name" +#~ msgid "Topics" +#~ msgstr "Sujets" -#: views/taxonomy-wpfc_sermon_series.php:20 -#, php-format -msgid "Sermons Series: %s" -msgstr "Séries de prédications : %s" +#, fuzzy +#~ msgctxt "Admin menu name" +#~ msgid "Service Types" +#~ msgstr "Type de culte" -#: views/taxonomy-wpfc_sermon_topics.php:20 -#, php-format -msgid "Sermons Topic: %s" -msgstr "Sujet de prédication : %s" +#, fuzzy +#~ msgctxt "Admin menu name" +#~ msgid "Sermons" +#~ msgstr "Prédications" -#: views/taxonomy-wpfc_service_type.php:20 -#, fuzzy, php-format -msgid "Sermons By Service: %s" -msgstr "Séries de prédications : %s" +#~ msgid "Support" +#~ msgstr "Support" + +#~ msgid "Sermon Manager Options" +#~ msgstr "Options de Sermon Manager" + +#, fuzzy +#~ msgid "General" +#~ msgstr "Préférence générales" + +#, fuzzy +#~ msgid "Podcast" +#~ msgstr "Préférence du podcast" + +#~ msgid "Options saved" +#~ msgstr "Options sauvegardées." + +#, fuzzy +#~ msgid "Need Some Help?" +#~ msgstr "Besoin d'aide ?" + +#~ msgid "General Settings" +#~ msgstr "Préférence générales" + +#~ msgid "Archive Page Title" +#~ msgstr "Archiver la page de titre" + +#~ msgid "Archive Page Slug" +#~ msgstr "Archiver le modèle de page" + +#, fuzzy +#~ msgid "sermons/preacher" +#~ msgstr "Rechercher dans les prédicateurs" + +#, fuzzy +#~ msgid "sermons/series" +#~ msgstr "Séries de prédications" + +#, fuzzy +#~ msgid "" +#~ "Enable Template Files — this is for users upgrading from an older " +#~ "version who have issues with version 1.5+." +#~ msgstr "" +#~ "Permettre les fichiers de template - Cela est pour les utilisateurs " +#~ "mettant à jour depuis une vieille version et qui ont des soucis avec la " +#~ "version 1.5+." + +#, fuzzy +#~ msgid "Enable template files found in the %s folder" +#~ msgstr "Permettre les fichiers de template trouvés dans le dossier /views" + +#~ msgid "Disable Sermon Styles" +#~ msgstr "Désactiver les styles de prédication" + +#, fuzzy +#~ msgid "" +#~ "Disable Sermon CSS. If you do this, you should copy the styles from %s " +#~ "and include them in your theme CSS." +#~ msgstr "" +#~ "Désactiver les CSS sur les prédications. Si vous faites cela, vous devez " +#~ "copier les styles depuis sermons.css et l'inclure dans votre propre thème " +#~ "css." + +#~ msgid "Verse Settings" +#~ msgstr "Préférence des versets" + +#~ msgid "Verse Popups" +#~ msgstr "Popup des versets" + +#~ msgid "Disable Bib.ly verse popups" +#~ msgstr "Désactiver les popup de Bib.ly" + +#~ msgid "Select Bible Version for Verse Popups" +#~ msgstr "Sélectionner la version de la bible à utiliser pour les popups" + +#, fuzzy +#~ msgid "" +#~ "%1$s, %2$s, %3$s, or %4$s are the currently supported popups for %5$s." +#~ msgstr "Les versions ESV, NET, KJV, et LEB sont actuellement supportées." + +#~ msgid "Podcast Settings" +#~ msgstr "Préférence du podcast" + +#~ msgid "Title" +#~ msgstr "Titre" + +#~ msgid "Description" +#~ msgstr "Description" + +#~ msgid "Website Link" +#~ msgstr "Lien sur le site" + +#~ msgid "Language" +#~ msgstr "Langue" + +#~ msgid "Copyright" +#~ msgstr "Copyroght" + +#~ msgid "Webmaster Name" +#~ msgstr "Nom du Webmaster" + +#~ msgid "e.g. Your Name" +#~ msgstr "ex : Votre Nom" + +#~ msgid "Webmaster Email" +#~ msgstr "E-mail du Webmaster" + +#~ msgid "Author" +#~ msgstr "Auteur" + +#~ msgid "e.g. Primary Speaker or Church Name" +#~ msgstr "ex : Personne principale ou nom de l'église" + +#, fuzzy +#~ msgid "This will display at the “Artist” in the iTunes Store." +#~ msgstr "Cela va apparaître dans la partie \"Artiste\" dans l'iTunes store." + +#~ msgid "Subtitle" +#~ msgstr "Sous-titre" + +#~ msgid "" +#~ "Your subtitle should briefly tell the listener what they can expect to " +#~ "hear." +#~ msgstr "" +#~ "Vos sous-titres doivent courtement expliquer à votre auditeur ce qu'il " +#~ "est sensé écouter." + +#~ msgid "Summary" +#~ msgstr "Résumé" + +#~ msgid "" +#~ "Keep your Podcast Summary short, sweet and informative. Be sure to " +#~ "include a brief statement about your mission and in what region your " +#~ "audio content originates." +#~ msgstr "" +#~ "Garder votre résumé du podcast court, sympa et informatif. Soyez sure " +#~ "d'inclure un bref résumé à propos de votre mission, et quelle est la " +#~ "provenance de votre contenu." + +#~ msgid "Owner Name" +#~ msgstr "Propriétaire" + +#~ msgid "This should typically be the name of your Church." +#~ msgstr "Cela est typiquement le nom de votre église." + +#~ msgid "Owner Email" +#~ msgstr "E-mail du propriétaire" + +#, fuzzy +#~ msgid "" +#~ "Use an email address that you don’t mind being made public. If " +#~ "someone wants to contact you regarding your Podcast this is the address " +#~ "they will use." +#~ msgstr "" +#~ "Utilisez une adresse qui ne vous dérange pas d'être publique. Si " +#~ "quelqu'un désire vous contacter suite à l'écoute du podcast, il utilisera " +#~ "surement cette adresse." + +#~ msgid "Cover Image" +#~ msgstr "Image de couverture" + +#, fuzzy +#~ msgid "Upload Image" +#~ msgstr "Charger." + +#, fuzzy +#~ msgid "" +#~ "This JPG will serve as the Podcast artwork in the iTunes Store. The image " +#~ "must be between 1,400px by 1,400px and 3,000px by 3,000px or else iTunes " +#~ "will not accept your feed." +#~ msgstr "" +#~ "Cette image jpeg sera utilisée comme icône par l'iTunes store. Cela doit " +#~ "être une image de 1400px par 1400px." + +#~ msgid "Top Category" +#~ msgstr "Catégorie principale" + +#~ msgid "" +#~ "Choose the appropriate top-level category for your Podcast listing in " +#~ "iTunes." +#~ msgstr "" +#~ "Choisissez la catégorie principale appropriée pour votre liste de podcast " +#~ "sur iTunes." + +#~ msgid "Sub Category" +#~ msgstr "Sous-catégorie" + +#~ msgid "" +#~ "Choose the appropriate sub category for your Podcast listing in iTunes." +#~ msgstr "" +#~ "Choisissez la sous-catégorie appropriée pour votre liste de podcast sur " +#~ "iTunes." + +#, fuzzy +#~ msgid "HTML in description" +#~ msgstr "Description" + +#, fuzzy +#~ msgid "Number of podcasts to show" +#~ msgstr "Nombre de prédication à afficher :" + +#, fuzzy +#~ msgid "Feed URL to Submit to iTunes" +#~ msgstr "Soumettre à iTunes" + +#~ msgid "Feed Validator" +#~ msgstr "validateur de flux" + +#, fuzzy +#~ msgid "" +#~ "Use the %s to diagnose and fix any problems before submitting your " +#~ "Podcast to iTunes." +#~ msgstr "" +#~ "pour diagnostiquer et corriger tous les problèmes avant de soumettre " +#~ "votre podcast à iTunes." + +#, fuzzy +#~ msgid "" +#~ "Once your Podcast Settings are complete and your Sermons are ready, " +#~ "it’s time to %s to the iTunes Store!" +#~ msgstr "" +#~ "Une fois les préférences de votre podcast complétées, et que vos " +#~ "prédications sont prêtes, il est temps de" + +#~ msgid "Submit Your Podcast" +#~ msgstr "Soumettre votre podcast" + +#, fuzzy +#~ msgid "" +#~ "Alternatively, if you want to track your Podcast subscribers, simply pass " +#~ "the Podcast Feed URL above through %s. FeedBurner will then give you a " +#~ "new URL to submit to iTunes instead." +#~ msgstr "" +#~ "Alternativement, si vous voulez tracer les souscrivants à votre podcast, " +#~ "passez simplement l'url du flux à travers" + +#~ msgid "FeedBurner" +#~ msgstr "FeedBurner" + +#, fuzzy +#~ msgid "Please read the %s for more information." +#~ msgstr "pour d'avantage d'informations." + +#~ msgid "iTunes FAQ for Podcast Makers" +#~ msgstr "FAQ d'iTunes pour les créateurs de podcasts" + +#~ msgid "Save Changes" +#~ msgstr "Sauvegarder les changements" + +#~ msgid "Permalink to %s" +#~ msgstr "Lien permanent pour %s" + +#~ msgid "Sermon Details" +#~ msgstr "Détails de la prédication" + +#~ msgid "Main Bible Passage" +#~ msgstr "Passage biblique principal" + +#, fuzzy +#~ msgid "Enter the Bible passage with the full book names, e.g. %s." +#~ msgstr "" +#~ "Indiquez le passage de la bible avec le nom complet (ex : Jean 3:16-18)." + +#~ msgid "" +#~ "Type a brief description about this sermon, an outline, or a full " +#~ "manuscript" +#~ msgstr "" +#~ "Indiquez une brève description à propose de ce message, un résumé ou le " +#~ "texte complet" + +#~ msgid "Sermon Files" +#~ msgstr "Fichiers de la prédication" + +#~ msgid "Location of MP3" +#~ msgstr "Localisation du fichier mp3" + +#~ msgid "Upload an audio file or enter an URL." +#~ msgstr "Chargez un fichier audio ou indiquez une URL." + +#~ msgid "Video Embed Code" +#~ msgstr "Code d'embarquement de video" + +#~ msgid "Paste your embed code for Vimeo, Youtube, or other service here" +#~ msgstr "Coller le code embed pour Vimeo, Youtube ou un autre service ici" + +#, fuzzy +#~ msgid "Video Link" +#~ msgstr "Lien sur le site" + +#, fuzzy +#~ msgid "Paste your link for Vimeo, Youtube, or other service here" +#~ msgstr "Coller le code embed pour Vimeo, Youtube ou un autre service ici" + +#~ msgid "Sermon Notes" +#~ msgstr "Fichiers de la prédication" + +#~ msgid "Upload a pdf file or enter an URL." +#~ msgstr "Charger un fichier pdf ou indiquez une URL." + +#, fuzzy +#~ msgctxt "slug" +#~ msgid "preacher" +#~ msgstr "Prédicateur" + +#, fuzzy +#~ msgctxt "slug" +#~ msgid "series" +#~ msgstr "Séries de prédications" + +#, fuzzy +#~ msgctxt "slug" +#~ msgid "topics" +#~ msgstr "Sujets" + +#, fuzzy +#~ msgctxt "slug" +#~ msgid "book" +#~ msgstr "Modifier" + +#, fuzzy +#~ msgctxt "slug" +#~ msgid "service-type" +#~ msgstr "Type de culte" + +#, fuzzy +#~ msgctxt "slug" +#~ msgid "sermons" +#~ msgstr "Prédications" + +#, fuzzy +#~ msgid "" +#~ "%1$s is not a property of the current queried object. This usually " +#~ "happens when the %2$s filter is used in an unsupported template file. " +#~ "This filter has been designed to work in taxonomy archives which are " +#~ "traditionally served by one of the following template files: %3$s, %4$s " +#~ "or %5$s. Learn more about %6$s." +#~ msgstr "" +#~ "%1$s n'est pas une propriété de la requête sur l'objet courant. Cela " +#~ "intervient habituellement quand le filtre %2$s est utilisé avec un " +#~ "fichier de template non-supporté. Ce filtre a été concu pour travaillé " +#~ "avec les anciennes archives qui sont traditionellement servies par l'un " +#~ "des templates suivant : category.php, tag.php ou taxonomy.php. En savoir " +#~ "d'avantage à propos de %3$s." + +#~ msgid "term_taxonomy_id" +#~ msgstr "term_taxonomy_id" + +#~ msgid "Associate with %1$s" +#~ msgstr "Associé avec %1$s" + +#~ msgid "this term" +#~ msgstr "ce terme" + +#~ msgid "Remove association with %1$s" +#~ msgstr "Retirer l'association avec %1$s" + +#~ msgid "Taxonomies" +#~ msgstr "Taxonomies" + +#~ msgid "Taxonomy Images" +#~ msgstr "Images des Taxonomies" + +#~ msgid "Taxonomy Images Plugin Settings" +#~ msgstr "Préférences du plugin de gestion des images de taxonomie" + +#~ msgid "Unknown error encountered" +#~ msgstr "Une erreur inconnue est intervenue" + +#~ msgid "tt_id not sent" +#~ msgstr "tt_id non-envoyé" + +#~ msgid "tt_id is empty" +#~ msgstr "tt_id est vide" + +#~ msgid "You do not have the correct capability to manage this term" +#~ msgstr "Vous n'avez pas les bonnes capacité pour gérer ce terme" + +#~ msgid "No nonce included." +#~ msgstr "Pas d'instance incluse." + +#~ msgid "Nonce did not match" +#~ msgstr "L'instance ne correspond pas" + +#~ msgid "Image id not sent" +#~ msgstr "Identifiant de l'image non-envoyée" + +#~ msgid "Image id is not a positive integer" +#~ msgstr "l'identifiant de l'image n'est pas un entier positif" + +#~ msgid "Image successfully associated" +#~ msgstr "L'images a été associée avec succès" + +#~ msgid "Association could not be created" +#~ msgstr "L'association ne peux pas être crée" + +#~ msgid "No nonce included" +#~ msgstr "Pas d'instance incule" + +#~ msgid "Nothing to remove" +#~ msgstr "Rien à retirer" + +#~ msgid "Association successfully removed" +#~ msgstr "Association retirée avec succès" + +#~ msgid "Association could not be removed" +#~ msgstr "L'association ne peux pas être retirée" + +#~ msgid "Image" +#~ msgstr "Images" + +#~ msgid "Associate an image from your media library to this %1$s." +#~ msgstr "Associer une image depuis votre librairie de médias à %1$s." + +#~ msgid "Upload." +#~ msgstr "Charger." + +#~ msgid "Delete" +#~ msgstr "Supprimer" + +#~ msgid "Associating …" +#~ msgstr "Associer …" + +#~ msgid "Successfully Associated" +#~ msgstr "Associé avec succès" + +#~ msgid "Removing …" +#~ msgstr "Retirer …" + +#~ msgid "Successfully Removed" +#~ msgstr "Retiré avec succès" + +#~ msgid "" +#~ "The %1$s argument for %2$s is set to %3$s which is not a registered " +#~ "taxonomy. Please check the spelling and update the argument." +#~ msgstr "" +#~ "L'argument %1$s pour %2$s est définit pour %3$s avec une taxonomie non-" +#~ "enregistrée. Merci de vérifier l'orthographe et mettre à jour l'argument." + +#~ msgid "taxonomy" +#~ msgstr "taxonomie" + +#~ msgid "No taxonomies have image support. %1$s" +#~ msgstr "Pas de taxonomie n'a de support d'image. %1$s" + +#~ msgid "The %1$s taxonomy does not have image support. %2$s" +#~ msgstr "La taxonomie %1$s n'a pas de support d'image. %2$s" + +#~ msgid "" +#~ "The %1$s has been called directly. Please use the %2$s filter instead." +#~ msgstr "" +#~ "Le %1$s a été appelé directement. Merci d'utiliser le filtre %2$s à la " +#~ "place." + +#~ msgid "Donate" +#~ msgstr "Don" + +#, fuzzy +#~ msgid "Set %s’s image" +#~ msgstr "Rechercher une série de prédication" + +#, fuzzy +#~ msgid "Set Series image" +#~ msgstr "Supprimer cette image" + +#, fuzzy +#~ msgid "Sermon Manager for WordPress" +#~ msgstr "Options de Sermon Manager" + +#, fuzzy +#~ msgid "%s Older sermons" +#~ msgstr "Modifier la prédication" + +#, fuzzy +#~ msgid "←" +#~ msgstr "←" + +#, fuzzy +#~ msgid "→" +#~ msgstr "→" + +#, fuzzy +#~ msgid "Newer sermons %s" +#~ msgstr "Nouvelle prédication" + +#~ msgid "Not Found" +#~ msgstr "Pas trouvé" + +#~ msgid "Apologies, but no sermons were found." +#~ msgstr "Désolé, mais aucune prédication n'a été trouvée." + +#, fuzzy +#~ msgid "Preached on %s" +#~ msgstr "Prédicateurs" + +#, fuzzy +#~ msgid "%s comment" +#~ msgid_plural "%s comments" +#~ msgstr[0] "% commentaires" +#~ msgstr[1] "% commentaires" + +#~ msgid "Leave a comment" +#~ msgstr "Laisser un commentaire" + +#~ msgctxt "Previous post link" +#~ msgid "←" +#~ msgstr "←" + +#~ msgctxt "Next post link" +#~ msgid "→" +#~ msgstr "→" + +#, fuzzy +#~ msgid "Sermons by Book: %s" +#~ msgstr "Prédications par : %s" + +#~ msgid "Sermons by: %s" +#~ msgstr "Prédications par : %s" + +#~ msgid "Sermons Series: %s" +#~ msgstr "Séries de prédications : %s" + +#~ msgid "Sermons Topic: %s" +#~ msgstr "Sujet de prédication : %s" + +#, fuzzy +#~ msgid "Sermons By Service: %s" +#~ msgstr "Séries de prédications : %s" diff --git a/languages/sermon-manager-for-wordpress-pl_PL.mo b/languages/sermon-manager-for-wordpress-pl_PL.mo index 1b9fd90a572d6003d6ac627c7a41eb7254d3a080..5a0d7ba7a71d8497f3336a3561255e0a28a66c83 100644 GIT binary patch delta 4068 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 BDW3oU literal 30901 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 diff --git a/languages/sermon-manager-for-wordpress-pl_PL.po b/languages/sermon-manager-for-wordpress-pl_PL.po index 4317e9b..3d003e0 100644 --- a/languages/sermon-manager-for-wordpress-pl_PL.po +++ b/languages/sermon-manager-for-wordpress-pl_PL.po @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: sermon-manager-for-wordpress\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/sermon-manager-for-wordpress\n" -"POT-Creation-Date: 2017-10-01 07:03:00+0200\n" -"PO-Revision-Date: 2017-10-02 12:56:00+0200\n" +"POT-Creation-Date: 2017-10-03 09:39+0200\n" +"PO-Revision-Date: 2017-10-03 09:39+0200\n" "Last-Translator: GITNE \n" "Language-Team: WP for Church\n" "Language: pl\n" @@ -14,226 +14,77 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" - -#. translators: %s see msgid "View sermon", effectively View sermon -#: includes/admin-functions.php:124 -msgid "Sermon updated. %s" -msgstr "Zaktualizowano kazanie. %s" - -#: includes/admin-functions.php:124 includes/admin-functions.php:130 -#: includes/admin-functions.php:136 includes/class-sm-post-types.php:201 -#: includes/class-sm-post-types.php:202 -msgid "View sermon" -msgstr "Podgląd kazania" - -#: includes/admin-functions.php:125 -msgid "Custom field updated." -msgstr "Zaktualizowano pole zindywidualizowane" - -#: includes/admin-functions.php:126 -msgid "Custom field deleted." -msgstr "Usunięto pole zindywidualizowane" - -#: includes/admin-functions.php:127 -msgid "Sermon updated." -msgstr "Zaktualizowano kazanie" - -#: includes/admin-functions.php:129 -msgid "Sermon restored to revision from %s" -msgstr "Przywrócono stan kazania z %s" - -#. translators: %s see msgid "View sermon", effectively View sermon -#: includes/admin-functions.php:130 -msgid "Sermon published. %s" -msgstr "Opublikowano kazanie. %s" - -#: includes/admin-functions.php:131 -msgid "Sermon saved." -msgstr "Zapisano kazanie." - -#: includes/admin-functions.php:132 includes/admin-functions.php:135 -msgid "Preview sermon" -msgstr "Podgląd prototypu kazania" - -#. translators: %s see msgid "Preview sermon", effectively Preview sermon -#: includes/admin-functions.php:132 -msgid "Sermon submitted. %s" -msgstr "Wysłano kazanie. %s" - -#. translators: %1$s see msgid "%1$s at %2$s", effectively at -#. translators: %2$s see msgid "Preview sermon", effectively Preview sermon -#: includes/admin-functions.php:133 -msgid "Sermon scheduled for: %1$s. %2$s" -msgstr "Zaplanowano kazanie na %1$s. %2$s" - -#. translators: %1$s date -#. translators: %2$s time -#: includes/admin-functions.php:134 includes/admin-functions.php:135 -msgid "%1$s at %2$s" -msgstr "%1$s o godzinie %2$s" - -#. translators: %s see msgid "Preview sermon", effectively Preview sermon -#: includes/admin-functions.php:136 -msgid "Sermon draft updated. %s" -msgstr "Zaktualizowano szkic kazania. %s" +"X-Generator: Poedit 2.0.4\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: includes/CMB2\n" #: includes/admin-functions.php:189 msgid "Sermon Title" msgstr "Tytuł kazania" -#. translators: %s: Preachers label (sentence case; plural) #: includes/admin-functions.php:191 includes/class-sm-post-types.php:44 #: includes/class-sm-post-types.php:47 includes/class-sm-post-types.php:49 +#, php-format msgid "%s" msgstr "" -#: includes/admin-functions.php:191 includes/admin-functions.php:192 -#: includes/types-taxonomies.php:120 includes/types-taxonomies.php:121 -#: includes/types-taxonomies.php:122 +#: includes/admin-functions.php:192 includes/types-taxonomies.php:120 +#: includes/types-taxonomies.php:121 includes/types-taxonomies.php:122 msgid "Sermon Series" msgstr "Seria kazań" -#: includes/admin-functions.php:192 includes/admin-functions.php:193 -#: includes/class-sm-post-types.php:104 includes/class-sm-post-types.php:106 +#: includes/admin-functions.php:193 includes/class-sm-post-types.php:104 +#: includes/class-sm-post-types.php:106 msgid "Topics" msgstr "Tematy" -#: includes/admin-functions.php:193 includes/admin-functions.php:194 +#: includes/admin-functions.php:194 msgid "Views" msgstr "Podglądy" -#: includes/admin-functions.php:194 includes/admin-functions.php:195 -#: includes/sm-cmb-functions.php:85 includes/types-taxonomies.php:301 +#: includes/admin-functions.php:195 msgid "Date Preached" msgstr "Data wygłoszenia" -#: includes/admin-functions.php:195 includes/admin-functions.php:196 +#: includes/admin-functions.php:196 msgid "Bible Passage" msgstr "Fragment biblii" -#. translators: %s see msgid "Error:" -#: includes/admin-functions.php:212 includes/admin-functions.php:213 -msgid "%s Can’t find sermon ID." -msgstr "%s Nie znaleziono identyfikatora kazania." - -#: includes/admin-functions.php:212 includes/admin-functions.php:213 -#: includes/admin-functions.php:252 includes/admin-functions.php:253 -msgid "Error:" -msgstr "Błąd:" - -#: includes/admin-functions.php:290 includes/class-sm-post-types.php:193 -#: includes/types-taxonomies.php:59 -msgid "Sermon" -msgstr "Kazanie" - -#: includes/admin-functions.php:306 includes/admin-functions.php:307 -msgid "%s sermon" -msgid_plural "%s sermons" -msgstr[0] "%s kazanie" -msgstr[1] "%s kazania" -msgstr[2] "%s kazań" - -#. translators: %s: Plugin name -#: includes/class-sm-error-recovery.php:200 -msgid "%s encountered a fatal error and recovered successfully." -msgstr "„%s” napotkał błąd fatalny i skorygował go pomyślnie." - -#: includes/class-sm-error-recovery.php:203 -msgid "The issue has already been submitted." -msgstr "Ten problem już wysłano." - -#: includes/class-sm-error-recovery.php:208 -msgctxt "Button" -msgid "Send an anonymous report" -msgstr "Wyślij raport anonimowy" - -#: includes/class-sm-error-recovery.php:212 -msgctxt "Button" -msgid "Show error message" -msgstr "Pokaż komunikat błędu" - -#: includes/class-sm-error-recovery.php:215 -msgctxt "Button" -msgid "Reactivate Plugin" -msgstr "Reaktywuj wtyczkę" - -#: includes/class-sm-error-recovery.php:222 -msgctxt "Title" -msgid "Are you sure?" -msgstr "Jesteś pewien?" - -#: includes/class-sm-error-recovery.php:224 -msgid "" -"If the issue is not fixed, website will crash. (but we will recover it again)" -msgstr "" -"Jeśli nie naprawiono problemu, witryna internetowa się zawiesi (mimo to " -"zostanie odrestaurowana)." - -#: includes/class-sm-error-recovery.php:226 -msgctxt "title" -msgid "Optional info" -msgstr "Informacje opcjonalne" - -#: includes/class-sm-error-recovery.php:228 -msgid "" -"If you have more information about the issue, please type it here (optional):" -msgstr "" -"Jeśli posiadasz dalsze informacje o problemie, proszę wprowadź je tutaj " -"(opcjonalne):" - -#: includes/class-sm-error-recovery.php:230 -msgctxt "Label" -msgid "Issue details" -msgstr "Szczegóły problemu" - -#: includes/class-sm-error-recovery.php:232 -msgctxt "Placeholder" -msgid "Steps for how to reproduce, etc…" -msgstr "Instrukcja jak zreprodukować problem, itp…" - -#: includes/class-sm-error-recovery.php:233 -msgid "Email for further contact (optional)" -msgstr "E‑mail do dalszej korespondencji (opcjonalny)" - -#: includes/class-sm-error-recovery.php:234 -msgid "name@example.com" -msgstr "nazwisko@przykład.com" - -#: includes/class-sm-error-recovery.php:235 -msgctxt "Label" -msgid "Email" -msgstr "E‑mail" - -#: includes/class-sm-post-types.php:51 -msgctxt "Admin menu name" -msgid "%s" -msgstr "" - #: includes/class-sm-post-types.php:53 includes/types-taxonomies.php:96 +#, php-format msgid "Search %s" msgstr "Wyszukaj %s" #: includes/class-sm-post-types.php:55 includes/types-taxonomies.php:98 +#, php-format msgid "All %s" msgstr "Wszyscy/tkie %s" #: includes/class-sm-post-types.php:59 includes/types-taxonomies.php:99 +#, php-format msgid "Edit %s" msgstr "Edytuj %s" #: includes/class-sm-post-types.php:61 includes/types-taxonomies.php:100 +#, php-format msgid "Update %s" msgstr "Zaktualizuj %s" #: includes/class-sm-post-types.php:63 includes/types-taxonomies.php:101 +#, php-format msgid "Add new %s" msgstr "Dodaj nowego/ą %s" #: includes/class-sm-post-types.php:65 +#, php-format msgid "New %s name" msgstr "Nowa nazwa %s" #: includes/class-sm-post-types.php:67 +#, php-format msgid "No %s found" msgstr "Nie znaleziono %s" @@ -242,11 +93,6 @@ msgstr "Nie znaleziono %s" msgid "Series" msgstr "Seria" -#: includes/class-sm-post-types.php:83 -msgctxt "Admin menu name" -msgid "Series" -msgstr "Seria" - #: includes/class-sm-post-types.php:84 msgid "Search series" msgstr "Wyszukaj serię" @@ -279,11 +125,6 @@ msgstr "Nie znaleziono serii" msgid "Topic" msgstr "Temat" -#: includes/class-sm-post-types.php:108 -msgctxt "Admin menu name" -msgid "Topics" -msgstr "Tematy" - #: includes/class-sm-post-types.php:109 msgid "Search topics" msgstr "Wyszukaj tematy" @@ -324,11 +165,6 @@ msgstr "Księgi biblijne" msgid "Book" msgstr "Księga" -#: includes/class-sm-post-types.php:133 -msgctxt "Admin menu name" -msgid "Books" -msgstr "Księgi" - #: includes/class-sm-post-types.php:134 msgid "Search books" msgstr "Wyszukaj księgi" @@ -361,17 +197,11 @@ msgstr "Nie znaleziono ksiąg" msgid "Service Types" msgstr "Rodzaje usługi" -#: includes/class-sm-post-types.php:157 includes/sm-cmb-functions.php:93 -#: includes/types-taxonomies.php:201 includes/types-taxonomies.php:202 -#: includes/types-taxonomies.php:203 includes/types-taxonomies.php:309 +#: includes/class-sm-post-types.php:157 includes/types-taxonomies.php:201 +#: includes/types-taxonomies.php:202 includes/types-taxonomies.php:203 msgid "Service Type" msgstr "Rodzaj usługi" -#: includes/class-sm-post-types.php:158 -msgctxt "Admin menu name" -msgid "Service Types" -msgstr "Rodzaje usługi" - #: includes/class-sm-post-types.php:159 includes/types-taxonomies.php:204 msgid "Search service types" msgstr "Wyszukaj rodzaje usługi" @@ -400,21 +230,19 @@ msgstr "Nowa nazwa rodzaju usługi" msgid "No service types found" msgstr "Nie znaleziono rodzajów usługi" -#: includes/class-sm-post-types.php:192 includes/options.php:291 -#: includes/options.php:300 includes/types-taxonomies.php:58 -#: includes/types-taxonomies.php:68 views/archive-wpfc_sermon.php:13 +#: includes/class-sm-post-types.php:192 includes/types-taxonomies.php:58 +#: includes/types-taxonomies.php:68 msgid "Sermons" msgstr "Kazania" +#: includes/class-sm-post-types.php:193 includes/types-taxonomies.php:59 +msgid "Sermon" +msgstr "Kazanie" + #: includes/class-sm-post-types.php:194 msgid "All Sermons" msgstr "Wszystkie kazania" -#: includes/class-sm-post-types.php:195 -msgctxt "Admin menu name" -msgid "Sermons" -msgstr "Kazania" - #: includes/class-sm-post-types.php:196 includes/types-taxonomies.php:60 msgid "Add New" msgstr "Dodaj nowe" @@ -423,12 +251,7 @@ msgstr "Dodaj nowe" msgid "Add new sermon" msgstr "Dodaj nowe kazanie" -#: includes/class-sm-post-types.php:198 views/archive-wpfc_sermon.php:61 -#: views/archive-wpfc_sermon.php:62 views/single-wpfc_sermon.php:35 -#: views/taxonomy-wpfc_bible_book.php:89 views/taxonomy-wpfc_preacher.php:95 -#: views/taxonomy-wpfc_sermon_series.php:96 -#: views/taxonomy-wpfc_sermon_topics.php:96 -#: views/taxonomy-wpfc_service_type.php:89 +#: includes/class-sm-post-types.php:198 views/single-wpfc_sermon.php:35 msgid "Edit" msgstr "Edytuj" @@ -440,6 +263,10 @@ msgstr "Edytuj kazanie" msgid "New sermon" msgstr "Nowe kazanie" +#: includes/class-sm-post-types.php:201 includes/class-sm-post-types.php:202 +msgid "View sermon" +msgstr "Podgląd kazania" + #: includes/class-sm-post-types.php:203 msgid "Search sermon" msgstr "Wyszukaj kazanie" @@ -493,695 +320,46 @@ msgid "This is where you can add new sermons to your website." msgstr "Tu możesz dodać nowe kazania do Twojej witryny internetowej." #: includes/helper-functions.php:193 includes/template-tags.php:129 -#: includes/template-tags.php:400 includes/template-tags.php:426 -#: includes/template-tags.php:439 includes/template-tags.php:465 +#: includes/template-tags.php:400 includes/template-tags.php:439 msgid "Series: " msgstr "Seria: " -#: includes/options.php:74 includes/options.php:81 +#: includes/options.php:82 msgid "Sermon Manager Settings" msgstr "Ustawienia Menadżera Kazań" -#: includes/options.php:81 includes/options.php:94 includes/options.php:101 -#: includes/options.php:761 includes/options.php:770 -#: includes/taxonomy-images/taxonomy-images.php:333 -#: includes/taxonomy-images/taxonomy-images.php:1238 +#: includes/options.php:82 includes/options.php:102 msgid "Settings" msgstr "Ustawienia" -#: includes/options.php:99 includes/options.php:106 -msgid "Support" -msgstr "Wsparcie" - -#: includes/options.php:108 includes/options.php:115 -#: includes/taxonomy-images/taxonomy-images.php:1263 +#: includes/options.php:116 includes/taxonomy-images/taxonomy-images.php:1263 msgid "Manage Settings" msgstr "Zarządzaj ustawieniami" -#: includes/options.php:197 includes/options.php:204 -msgid "Sermon Manager Options" -msgstr "Opcje Menadżera Kazań" - -#: includes/options.php:203 includes/options.php:209 -msgid "General" -msgstr "Ogólne" - -#: includes/options.php:205 includes/options.php:211 -msgid "Verse" -msgstr "Werset" - -#: includes/options.php:207 includes/options.php:213 -msgid "Podcast" -msgstr "" - -#: includes/options.php:213 includes/options.php:219 -msgid "Options saved" -msgstr "Zapisano ustawienia" - -#: includes/options.php:222 includes/options.php:228 -msgid "Need Some Help?" -msgstr "Potrzebujesz trochę pomocy?" - -#. translators: %s see msgid "Sign up" -#: includes/options.php:224 includes/options.php:230 -msgid "" -"Did you know you can get expert support for only $49 per year! %s today and " -"get support from the developers who are building the Sermon Manager." -msgstr "" -"Czy wiesz, że od ekspertów możesz pozyskać wsparcie techniczne już za " -"tylko $49 rocznie? %s dziś i otrzymuj wsparcie techniczne od twó" -"rców Menadżera Kazań!" - -#: includes/options.php:224 includes/options.php:230 -msgid "Sign up" -msgstr "Zarejestruj się" - -#: includes/options.php:227 includes/options.php:233 -msgid "Free Support" -msgstr "Wsparcie bezpłatne" - -#: includes/options.php:228 includes/options.php:234 -msgid "Priority Support" -msgstr "Wsparcie priorytetowe" - -#: includes/options.php:231 includes/options.php:237 -msgid "We offer limited free support via WordPress.org" -msgstr "Udzielamy ograniczonego bezpłatnego wsparcia w ramach WordPress.org." - -#: includes/options.php:238 includes/options.php:243 -msgid "Frequently Asked Questions" -msgstr "Często zadawane pytania" - -#. translators: %s see msgid "Knowledge base" -#: includes/options.php:253 includes/options.php:259 -msgid "Find out more in our %s" -msgstr "Dowiedz się więcej z naszej %s" - -#: includes/options.php:253 includes/options.php:259 -msgid "knowledge base" -msgstr "bazy wiedzy" - -#: includes/options.php:259 includes/options.php:265 -msgid "Lets Make It Even Better!" -msgstr "Ulepszmy to razem!" - -#: includes/options.php:264 includes/options.php:270 -msgid "Submit Your Idea" -msgstr "Wyślij Twój pomysł" - -#: includes/options.php:267 -msgid "" -"If you have ideas on how to make Sermon Manager or any of our products " -"better, let us know!" -msgstr "" -"Jeśli masz pomysły na ulepszenie Menadżera Kazań lub naszych innych " -"produktów, to daj nam znać!" - -#: includes/options.php:277 includes/options.php:283 -msgid "General Settings" -msgstr "Ustawienia ogólne" - -#: includes/options.php:281 includes/options.php:287 -msgid "Archive Page Title" -msgstr "Tytuł strony archiwum" - -#: includes/options.php:289 includes/options.php:296 -msgid "Archive Page Slug" -msgstr "Uproszczona nazwa strony archiwum" - -#: includes/options.php:291 includes/options.php:300 includes/options.php:490 -#: includes/options.php:494 includes/options.php:500 includes/options.php:504 -#: includes/options.php:510 includes/options.php:514 includes/options.php:520 -#: includes/options.php:524 includes/options.php:555 includes/options.php:559 -#: includes/options.php:603 includes/options.php:607 includes/options.php:616 -#: includes/options.php:620 includes/options.php:648 includes/options.php:661 +#: includes/options.php:495 includes/options.php:505 includes/options.php:515 +#: includes/options.php:525 includes/options.php:560 includes/options.php:608 +#: includes/options.php:621 includes/options.php:649 includes/options.php:662 +#, php-format msgid "e.g. %s" msgstr "np. %s" -#. translators: %1$s see msgid "sermons/preacher", effectively sermons/preacher -#. translators: %2$s see msgid "sermons/series", effectively sermons/series -#: includes/options.php:297 includes/options.php:305 -msgid "" -"Common Base Slug — this is for users who want to have a common base " -"slug across all taxonomies, e.g. %1$s or %2$s." -msgstr "" -"Wspólna podstawa uproszczonej nazwy — dla użytkowników, " -"którzy chcą posiadać wspólną podstawową uproszczoną nazwę nad " -"wszystkimi systematykami, np. %1$s lub %2$s." - -#: includes/options.php:297 includes/options.php:305 -msgid "sermons/preacher" -msgstr "kazania/kaznodzieja" - -#: includes/options.php:297 includes/options.php:305 -msgid "sermons/series" -msgstr "kazania/seria" - -#: includes/options.php:302 includes/options.php:310 -msgid "Enable a common base slug across all taxonomies" -msgstr "" -"Włącz wspólną podstawową uproszczoną nazwę nad wszystkimi " -"systematykami" - -#: includes/options.php:308 includes/options.php:316 -msgid "" -"Enable Template Files — this is for users upgrading from an older " -"version who have issues with version 1.5+." -msgstr "" -"Włącz obsługę plików szablonowych — przewidziane dla " -"użytkowników, którzy aktualizują z przestarzałych wersji na " -"wersje 1.5 lub wyższe." - -#. translators: %s effectively /views -#. Since /views is a locale independent folder name it MUST NOT be localized -#: includes/options.php:313 includes/options.php:321 -msgid "Enable template files found in the %s folder" -msgstr "Włącz obsługę plików szablonowych w podkatalogu %s" - -#: includes/options.php:319 includes/options.php:327 -msgid "Disable Sermon Styles" -msgstr "Wyłącz style kazań" - -#. translators: %s effectively sermons.css -#. Since sermons.css is a locale independent file name it MUST NOT be localized -#: includes/options.php:324 includes/options.php:332 -msgid "" -"Disable Sermon CSS. If you do this, you should copy the styles from %s and " -"include them in your theme CSS." -msgstr "" -"Wyłącz CSS kazań. Jeśli tego dokonasz, powinieneś skopiować style z %s i " -"scalić je z Twoim motywem CSS." - -#: includes/options.php:338 -msgid "Display audio player or video on archive pages" -msgstr "Wyświetlaj odtwarzacz audio lub wideo na stronach archiwum" - -#: includes/options.php:343 -msgid "Display an audio player or video embed in the archive listing." -msgstr "" -"Wyświetlaj kod osadzania odtwarzacza audio lub wideo na liście archiwum" - -#: includes/options.php:349 includes/options.php:354 -msgid "Use old audio player" -msgstr "Używaj starego odtwarzacza dźwięku" - -#: includes/options.php:352 includes/options.php:360 -msgid "" -"Custom label for “Preacher”. Note: it will also change preacher " -"slugs." -msgstr "" -"Zindywidualizowana oznaka „Kaznodzieja”. Zauważ: To ró" -"wnież zmieni uproszczone nazwy kaznodziei" - -#: includes/options.php:360 includes/options.php:368 -msgid "Sermon date format (used when creating a new Sermon)" -msgstr "" -"Format daty wygłoszenia kazania (potrzebne w trakcie tworzenia nowego " -"kazania)" - -#: includes/options.php:389 includes/options.php:395 -msgid "Show key verse in widget" -msgstr "Wyświetlaj werset kluczowy w widgetcie" - -#: includes/options.php:393 includes/options.php:401 -msgid "Version %s" -msgstr "Wersja %s" - -#: includes/options.php:405 includes/options.php:406 -msgid "Current Version" -msgstr "Wersja bieżąca" - -#: includes/options.php:413 includes/options.php:414 -msgid "Verse Settings" -msgstr "Ustawienia wersetów" - -#: includes/options.php:418 includes/options.php:419 -msgid "Verse Popups" -msgstr "Baloniki z wersetami" - -#: includes/options.php:424 includes/options.php:425 -msgid "Disable Bib.ly verse popups" -msgstr "Wyłącz baloniki z wersetami Bib.ly" - -#: includes/options.php:430 includes/options.php:431 -msgid "Select Bible Version for Verse Popups" -msgstr "Wybierz wydanie biblii dla baloników z wersetami" - -#. translators: %1$s effectively ESV -#. translators: %2$s effectively NET -#. translators: %3$s effectively KJV -#. translators: %4$s effectively LEB -#. translators: %5$s see msgid "bib.ly", effectively bib.ly -#: includes/options.php:444 includes/options.php:452 -msgid "%1$s, %2$s, %3$s, or %4$s are the currently supported popups for %5$s." -msgstr "" -"Wyłącznie %1$s, %2$s, %3$s i %4$s są aktualnie obsługiwane dla " -"baloników z wersetami %5$s." - -#: includes/options.php:449 includes/options.php:457 -msgid "bib.ly" -msgstr "" - -#. translators: %s see effectively ESV -#: includes/options.php:451 includes/options.php:459 -msgid "Warning! %s is not supported if your site uses SSL (HTTPS)." -msgstr "" -"UWAGA: W witrynach internetowych korzystających z SSL (HTTPS) %s nie jest " -"obsługiwane." - -#: includes/options.php:464 includes/options.php:468 -msgid "Podcast Settings" -msgstr "Ustawienia podcastingowe" - -#: includes/options.php:486 includes/options.php:490 -msgid "Title" -msgstr "Tytuł" - -#: includes/options.php:496 includes/options.php:500 -#: includes/sm-cmb-functions.php:107 includes/types-taxonomies.php:323 -msgid "Description" -msgstr "Opis" - -#: includes/options.php:506 includes/options.php:510 -msgid "Website Link" -msgstr "Odnośnik witryny internetowej" - -#: includes/options.php:516 includes/options.php:520 -msgid "Language" -msgstr "Język" - -#: includes/options.php:526 includes/options.php:530 -msgid "Copyright" -msgstr "Prawa autorskie" - -#: includes/options.php:530 includes/options.php:534 +#: includes/options.php:535 +#, php-format msgid "e.g. Copyright © %s" msgstr "np. Copyright © %s" -#. translators: %s &copy; -#: includes/options.php:535 includes/options.php:539 -msgid "Tip: Use %s to generate a copyright symbol." -msgstr "Wskazówka: Stosuj %s, aby wygenerować symbol copyright." - -#: includes/options.php:541 includes/options.php:545 -msgid "Webmaster Name" -msgstr "Nazwa zarządcy witryny internetowej" - -#: includes/options.php:545 includes/options.php:549 -msgid "e.g. Your Name" -msgstr "np. Twoje imię" - -#: includes/options.php:551 includes/options.php:555 -msgid "Webmaster Email" -msgstr "E‑mail zarządcy witryny internetowej" - -#: includes/options.php:561 includes/options.php:565 -msgid "Author" -msgstr "Autor" - -#: includes/options.php:565 includes/options.php:569 -msgid "e.g. Primary Speaker or Church Name" -msgstr "np. mówca lub nazwa kościoła" - -#: includes/options.php:569 includes/options.php:573 -msgid "This will display at the “Artist” in the iTunes Store." -msgstr "To będzie wyświetlane jako „Wykonawca” w sklepie iTunes." - -#: includes/options.php:574 includes/options.php:578 -msgid "Subtitle" -msgstr "Podtytuł" - -#: includes/options.php:578 includes/options.php:582 +#: includes/options.php:583 +#, php-format msgid "e.g. Preaching and teaching audio from %s" msgstr "np. słuchowisko kazań i nauczań z %s" -#: includes/options.php:582 includes/options.php:586 -msgid "" -"Your subtitle should briefly tell the listener what they can expect to hear." -msgstr "" -"Podtytuł powinien w krótki sposób opisywać czego słuchacze " -"mogą się spodziewać." - -#: includes/options.php:587 includes/options.php:591 -msgid "Summary" -msgstr "Streszczenie" - -#: includes/options.php:591 includes/options.php:595 +#: includes/options.php:596 +#, php-format msgid "e.g. Weekly teaching audio brought to you by %s in City, State." msgstr "" "np. tygodniowe słuchowiska nauczań, produkowane przez %s w miasto, " "województwo." -#: includes/options.php:594 includes/options.php:598 -msgid "" -"Keep your Podcast Summary short, sweet and informative. Be sure to include a " -"brief statement about your mission and in what region your audio content " -"originates." -msgstr "" -"Ogranicz streszczenie podcastu do zachęcających i niezbędnych informacji. " -"Nie zapomnij przedstawić Twojego posłania i regionu z którego " -"słuchowisko pochodzi." - -#: includes/options.php:599 includes/options.php:603 -msgid "Owner Name" -msgstr "Nazwa właściciela" - -#: includes/options.php:607 includes/options.php:611 -msgid "This should typically be the name of your Church." -msgstr "Zwykle, jest to nazwa kościoła." - -#: includes/options.php:612 includes/options.php:616 -msgid "Owner Email" -msgstr "E‑mail właściciela" - -#: includes/options.php:620 includes/options.php:624 -msgid "" -"Use an email address that you don’t mind being made public. If someone " -"wants to contact you regarding your Podcast this is the address they will " -"use." -msgstr "" -"Używaj w tym celu adresu e‑mail, który jest przeznaczony do " -"korespondencji publicznej. Jeśli ktoś będzie miał zamiar się skontaktować z " -"Tobą w sprawie podcastu, to będzie ten adres na który będą pisać." - -#: includes/options.php:625 includes/options.php:629 -msgid "Cover Image" -msgstr "Obraz okładki" - -#: includes/options.php:632 includes/options.php:636 -msgid "Upload Image" -msgstr "Załaduj obraz" - -#: includes/options.php:635 includes/options.php:639 -msgid "" -"This JPG will serve as the Podcast artwork in the iTunes Store. The image " -"must be between 1,400px by 1,400px and 3,000px by 3,000px or else iTunes " -"will not accept your feed." -msgstr "" -"Ten obraz będzie służył jako dzieło rozpoznawcze podcastu w sklepie iTunes. " -"Obraz musi się mieścić w rozmiarach od 1 400 na 1 400 piksli, do nie więcej " -"niż 3 000 na 3 000 piksli." - -#: includes/options.php:640 includes/options.php:644 -msgid "Top Category" -msgstr "Kategoria naczelna" - -#: includes/options.php:648 includes/options.php:652 -msgid "" -"Choose the appropriate top-level category for your Podcast listing in iTunes." -msgstr "" -"Wybierz właściwą kategorię naczelną dla Twojego podcastu w indeksie iTunes." - -#: includes/options.php:653 includes/options.php:657 -msgid "Sub Category" -msgstr "Podkategoria" - -#: includes/options.php:661 includes/options.php:665 -msgid "Choose the appropriate sub category for your Podcast listing in iTunes." -msgstr "Wybierz właściwą podkategorię dla Twojego podcastu w indeksie iTunes." - -#: includes/options.php:666 includes/options.php:670 -msgid "PodTrac Tracking" -msgstr "Śledzenie PodTrac‑iem" - -#: includes/options.php:671 includes/options.php:675 -msgid "Enables PodTrac tracking." -msgstr "Włącza śledzenie PodTrac‑iem" - -#. translators: %s podtrac.com -#: includes/options.php:675 includes/options.php:679 -msgid "For more info on PodTrac or to sign up for an account, visit %s" -msgstr "" -"Aby otrzymać więcej informacji o PodTrac‑u lub zarejestrować konto, " -"odwiedź %s." - -#: includes/options.php:680 includes/options.php:684 -msgid "HTML in description" -msgstr "Obsługa HTML w opisie" - -#: includes/options.php:686 includes/options.php:690 -msgid "Enable HTML description" -msgstr "Włącz obsługę HTML w opisie" - -#: includes/options.php:690 includes/options.php:694 -msgid "" -"Enables showing of HTML in iTunes description field. Uncheck if description " -"looks messy." -msgstr "" -"Włącza obsługę HTML w polu „opis” wyświetlane w iTunes. Odhacz, " -"jeśli opis wygląda zaburzony." - -#: includes/options.php:695 includes/options.php:699 -msgid "Number of podcasts to show" -msgstr "Ilość pozycji w podcast‑cie" - -#: includes/options.php:704 includes/options.php:708 -msgid "" -"Shows custom podcast count. If not defined, it uses WordPress default count." -msgstr "" -"Wyświetla określoną ilość pozycji w podcast‑cie. Jeśli ilość " -"pozostanie niezdefiniowana, stosowana będzie domyślna ilość WordPressa." - -#: includes/options.php:715 -msgid "Feed URL to Submit to iTunes" -msgstr "URL kanału internetowego podcastu do przekazania iTunes" - -#: includes/options.php:722 includes/options.php:725 -msgid "Feed Validator" -msgstr "walidatora kanału internetowego" - -#. translators: %s Feed Validator link, see msgid "Feed Validator" -#: includes/options.php:722 includes/options.php:725 -msgid "" -"Use the %s to diagnose and fix any problems before submitting your Podcast " -"to iTunes." -msgstr "" -"Stosuj %s do diagnozy i naprawy wszelkich problemów zanim wyślesz " -"podcast do iTunes." - -#. translators: %s see msgid "Submit Your Podcast" -#: includes/options.php:725 includes/options.php:728 -msgid "" -"Once your Podcast Settings are complete and your Sermons are ready, it’" -"s time to %s to the iTunes Store!" -msgstr "" -"Gdy sfinalizujesz ustawienia podcastingowe i przygotujesz kazania, nadejdzie " -"pora, aby %s do sklepu iTunes!" - -#: includes/options.php:725 includes/options.php:728 -msgid "Submit Your Podcast" -msgstr "wysłać Twój podcast" - -#. translators: %s see msgid "FeedBurner" -#: includes/options.php:727 includes/options.php:731 -msgid "" -"Alternatively, if you want to track your Podcast subscribers, simply pass " -"the Podcast Feed URL above through %s. FeedBurner will then give you a new " -"URL to submit to iTunes instead." -msgstr "" -"Jeśli chcesz śledzić abonentów Twojego podcastu, po prostu przewlecz " -"powyższy URL kanału internetowego podcastu przez %s. FeedBurner wtedy wyda " -"Ci nowy URL, który w zamian przekażesz iTunes." - -#: includes/options.php:727 includes/options.php:731 -msgid "FeedBurner" -msgstr "" - -#. translators: %s see msgid "iTunes FAQ for Podcast Makers" -#: includes/options.php:730 includes/options.php:734 -msgid "Please read the %s for more information." -msgstr "Proszę, zapoznaj się ze %s." - -#: includes/options.php:730 includes/options.php:734 -msgid "iTunes FAQ for Podcast Makers" -msgstr "" -"zbiorem często zadawanych pytań dla twórców podcastów " -"na iTunes" - -#: includes/options.php:742 includes/options.php:751 -#: includes/taxonomy-images/taxonomy-images.php:395 -msgid "Save Changes" -msgstr "Zapisz zmiany" - -#: includes/shortcodes.php:781 includes/shortcodes.php:786 -#: includes/template-tags.php:114 views/archive-wpfc_sermon.php:40 -#: views/taxonomy-wpfc_bible_book.php:72 views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -#: views/taxonomy-wpfc_service_type.php:72 -msgid "Permalink to %s" -msgstr "Odnośnik wieczny do „%s”" - -#: includes/sm-cmb-functions.php:57 includes/types-taxonomies.php:273 -msgid "Sermon Details" -msgstr "Szczegóły kazania" - -#: includes/sm-cmb-functions.php:86 -msgid "(optional)" -msgstr "(opcjonalne)" - -#. translators: %s date format, effectively d/m/Y or the like -#: includes/sm-cmb-functions.php:86 includes/types-taxonomies.php:302 -msgid "format: %s" -msgstr "" - -#: includes/sm-cmb-functions.php:94 includes/types-taxonomies.php:310 -msgid "" -"Select the type of service. Modify service types in Sermons → Service " -"Types." -msgstr "" -"Wybierz rodzaj usługi. Możesz edytować rodzaje usługi poprzez Kazania → " -"Rodzaj usługi." - -#: includes/sm-cmb-functions.php:101 includes/types-taxonomies.php:317 -msgid "Main Bible Passage" -msgstr "Główny fragment biblii" - -#. translators: %s see msgid "John 3:16-18", effectively John 3:16-18 -#: includes/sm-cmb-functions.php:102 includes/types-taxonomies.php:318 -msgid "Enter the Bible passage with the full book names, e.g. %s." -msgstr "Wprowadź fragment biblii razem z pełnymi nazwami ksiąg, np. %s." - -#: includes/sm-cmb-functions.php:102 includes/types-taxonomies.php:318 -msgid "John 3:16-18" -msgstr "Jana 3, 16-18" - -#: includes/sm-cmb-functions.php:108 includes/types-taxonomies.php:324 -msgid "" -"Type a brief description about this sermon, an outline, or a full manuscript" -msgstr "Wprowadź krótki opis, zarys lub pełny rękopis kazania." - -#: includes/sm-cmb-functions.php:116 includes/types-taxonomies.php:332 -msgid "Sermon Files" -msgstr "Pliki do kazania" - -#: includes/sm-cmb-functions.php:125 includes/types-taxonomies.php:341 -msgid "Location of MP3" -msgstr "Położenie pliku MP3" - -#: includes/sm-cmb-functions.php:126 includes/types-taxonomies.php:342 -msgid "Upload an audio file or enter an URL." -msgstr "Załaduj plik dźwiękowy lub wprowadź URL." - -#: includes/sm-cmb-functions.php:134 includes/types-taxonomies.php:350 -msgid "MP3 Duration" -msgstr "Czas nagrania MP3" - -#. translators: %s see msgid "hh:mm:ss", effectively hh:mm:ss -#: includes/sm-cmb-functions.php:135 includes/types-taxonomies.php:351 -msgid "" -"Length in %s format (if left blank, will attempt to calculate automatically " -"when you save)" -msgstr "" -"Długość czasowa nagrania w formacie %s. Jeśli pole pozostanie puste, to gdy " -"zapiszesz kazanie, będzie próbowano automatycznie obliczyć długość czasową." - -#: includes/sm-cmb-functions.php:135 includes/types-taxonomies.php:351 -msgid "hh:mm:ss" -msgstr "gg:mm:ss" - -#: includes/sm-cmb-functions.php:140 includes/types-taxonomies.php:356 -msgid "Video Embed Code" -msgstr "Kod osadzający wideo" - -#: includes/sm-cmb-functions.php:141 includes/types-taxonomies.php:357 -msgid "Paste your embed code for Vimeo, Youtube, or other service here" -msgstr "" -"Wprowadź tu kod osadzający Twoje wideo z Vimeo, YouTube lub innego serwisu" - -#: includes/sm-cmb-functions.php:146 includes/types-taxonomies.php:362 -msgid "Video Link" -msgstr "Odnośnik wideo" - -#: includes/sm-cmb-functions.php:147 includes/types-taxonomies.php:363 -msgid "Paste your link for Vimeo, Youtube, or other service here" -msgstr "Wprowadź tu odnośnik do Vimeo, YouTube lub innego serwisu" - -#: includes/sm-cmb-functions.php:153 includes/types-taxonomies.php:369 -msgid "Sermon Notes" -msgstr "Notatki do kazania" - -#: includes/sm-cmb-functions.php:154 includes/sm-cmb-functions.php:163 -#: includes/types-taxonomies.php:370 includes/types-taxonomies.php:379 -msgid "Upload a pdf file or enter an URL." -msgstr "Załaduj plik PDF lub wprowadź URL." - -#: includes/sm-cmb-functions.php:162 includes/template-tags.php:371 -#: includes/template-tags.php:397 includes/types-taxonomies.php:378 -msgid "Bulletin" -msgstr "Biuletyn" - -#: includes/sm-core-functions.php:121 -msgctxt "slug" -msgid "preacher" -msgstr "kaznodzieja" - -#: includes/sm-core-functions.php:122 -msgctxt "slug" -msgid "series" -msgstr "seria" - -#: includes/sm-core-functions.php:123 -msgctxt "slug" -msgid "topics" -msgstr "tematy" - -#: includes/sm-core-functions.php:124 -msgctxt "slug" -msgid "book" -msgstr "ksiega" - -#: includes/sm-core-functions.php:125 -msgctxt "slug" -msgid "service-type" -msgstr "rodzaj-uslugi" - -#: includes/sm-core-functions.php:126 -msgctxt "slug" -msgid "sermons" -msgstr "kazania" - -#. translators: %1$s see msgid "term_taxonomy_id", effectively term_taxonomy_id -#. translators: %2$s effectively -#. translators: %3$s effectively category.php -#. translators: %4$s effectively tag.php -#. translators: %5$s effectively taxonomy.php -#. translators: %6$s see msgid "template hierarchy" -#: includes/taxonomy-images/public-filters.php:385 -msgid "" -"%1$s is not a property of the current queried object. This usually happens " -"when the %2$s filter is used in an unsupported template file. This filter " -"has been designed to work in taxonomy archives which are traditionally " -"served by one of the following template files: %3$s, %4$s or %5$s. Learn " -"more about %6$s." -msgstr "" -"%1$s nie jest właściwością bieżąco wyszukiwanego obiektu. To się zdarza, gdy " -"filtr %2$s jest stosowany w nie obsługiwanym pliku szablonowym. Filtr ten, " -"został opracowany dla archiwów systematyk, które tradycyjnie są " -"obsługiwane przez jeden z następujących plików szablonowych: %3$s, " -"%4$s lub %5$s. Dowiedz się więcej o %6$s." - -#: includes/taxonomy-images/public-filters.php:386 -msgid "term_taxonomy_id" -msgstr "hasło_systematyka_identyfikator" - -#: includes/taxonomy-images/public-filters.php:391 -msgid "template hierarchy" -msgstr "hierarchii szablonów" - -#: includes/taxonomy-images/taxonomy-images.php:130 -msgid "Associate with %1$s" -msgstr "Powiąż z tym %1$s" - -#: includes/taxonomy-images/taxonomy-images.php:130 -#: includes/taxonomy-images/taxonomy-images.php:131 -msgid "this term" -msgstr "hasłem" - -#: includes/taxonomy-images/taxonomy-images.php:131 -msgid "Remove association with %1$s" -msgstr "Usuń powiązanie z %1$s" - #: includes/taxonomy-images/taxonomy-images.php:290 msgid "Image support for taxonomies successfully updated" msgstr "Uaktualniono obsługę obrazów dla systematyki." @@ -1190,198 +368,33 @@ msgstr "Uaktualniono obsługę obrazów dla systematyki." msgid "Image support has been disabled for all taxonomies." msgstr "Wyłączono obsługę obrazów dla wszystkich systematyk." -#: includes/taxonomy-images/taxonomy-images.php:339 -msgid "Taxonomies" -msgstr "Systematyki" - -#: includes/taxonomy-images/taxonomy-images.php:359 -#: includes/taxonomy-images/taxonomy-images.php:360 -msgid "Taxonomy Images" -msgstr "Obrazy systematyki" - -#: includes/taxonomy-images/taxonomy-images.php:387 -msgid "Taxonomy Images Plugin Settings" -msgstr "Ustawienia wtyczki obrazów systematyki" - -#: includes/taxonomy-images/taxonomy-images.php:447 -msgid "Unknown error encountered" -msgstr "Nastąpił nieznany błąd." - -#: includes/taxonomy-images/taxonomy-images.php:529 -#: includes/taxonomy-images/taxonomy-images.php:611 -msgid "tt_id not sent" -msgstr "Nie wysłano tt_id." - -#: includes/taxonomy-images/taxonomy-images.php:537 -#: includes/taxonomy-images/taxonomy-images.php:619 -msgid "tt_id is empty" -msgstr "tt_id jest puste." - -#: includes/taxonomy-images/taxonomy-images.php:544 -#: includes/taxonomy-images/taxonomy-images.php:626 -msgid "You do not have the correct capability to manage this term" -msgstr "Brak poprawnej możliwości, aby zarządzać tym hasłem." - -#: includes/taxonomy-images/taxonomy-images.php:551 -#: includes/taxonomy-images/taxonomy-images.php:633 -msgid "No nonce included." -msgstr "Nie podano wyrazu." - -#: includes/taxonomy-images/taxonomy-images.php:558 -#: includes/taxonomy-images/taxonomy-images.php:640 -msgid "Nonce did not match" -msgstr "Wyraz nie pasuje." - -#: includes/taxonomy-images/taxonomy-images.php:565 -msgid "Image id not sent" -msgstr "Nie wysłano identyfikatora obrazu." - -#: includes/taxonomy-images/taxonomy-images.php:573 -msgid "Image id is not a positive integer" -msgstr "Identyfikator obrazu nie jest pozytywną liczbą całkowitą." - -#: includes/taxonomy-images/taxonomy-images.php:582 -msgid "Image successfully associated" -msgstr "Powiązano obraz." - -#: includes/taxonomy-images/taxonomy-images.php:588 -msgid "Association could not be created" -msgstr "Nie można utworzyć powiązania." - -#: includes/taxonomy-images/taxonomy-images.php:633 -msgid "No nonce included" -msgstr "Nie podano wyrazu." - -#: includes/taxonomy-images/taxonomy-images.php:648 -msgid "Nothing to remove" -msgstr "Nic do usunięcia." - -#: includes/taxonomy-images/taxonomy-images.php:657 -msgid "Association successfully removed" -msgstr "Usunięto powiązanie." - -#: includes/taxonomy-images/taxonomy-images.php:662 -msgid "Association could not be removed" -msgstr "Nie można usunąć powiązania." - -#: includes/taxonomy-images/taxonomy-images.php:739 -#: includes/taxonomy-images/taxonomy-images.php:793 -msgid "Image" -msgstr "Obraz" - #: includes/taxonomy-images/taxonomy-images.php:786 -#: includes/taxonomy-images/taxonomy-images.php:823 msgid "term" msgstr "hasło" -#: includes/taxonomy-images/taxonomy-images.php:797 -msgid "Associate an image from your media library to this %1$s." -msgstr "Powiąż obraz w galerii mediów z „%1$s”." - #: includes/taxonomy-images/taxonomy-images.php:846 -msgid "Associate an image with the %1$s named “%2$s”." +#, fuzzy, php-format +#| msgid "Associate an image with the %1$s named “%2$s”." +msgid "Associate an image with the %1$s named “%2$s”." msgstr "Powiąż obraz z „%1$s” o nazwie „%2$s”." #: includes/taxonomy-images/taxonomy-images.php:847 +#, php-format msgid "Upload a new image for this %s." msgstr "Załaduj nowy obraz dla „%s”." -#: includes/taxonomy-images/taxonomy-images.php:847 -msgid "Upload." -msgstr "Załaduj" - -#: includes/taxonomy-images/taxonomy-images.php:848 -msgid "Delete" -msgstr "Usuń" - #: includes/taxonomy-images/taxonomy-images.php:848 +#, php-format msgid "Remove image from this %s." msgstr "Usuń obraz z „%s”." -#: includes/taxonomy-images/taxonomy-images.php:882 -msgid "“" -msgstr "„" - -#: includes/taxonomy-images/taxonomy-images.php:883 -msgid "”" -msgstr "”" - -#: includes/taxonomy-images/taxonomy-images.php:884 -msgid "Associating …" -msgstr "Związywanie…" - -#: includes/taxonomy-images/taxonomy-images.php:885 -msgid "Successfully Associated" -msgstr "Związano" - -#: includes/taxonomy-images/taxonomy-images.php:886 -msgid "Removing …" -msgstr "Rozwiązywanie…" - -#: includes/taxonomy-images/taxonomy-images.php:887 -msgid "Successfully Removed" -msgstr "Rozwiązano" - -#: includes/taxonomy-images/taxonomy-images.php:1162 -msgid "" -"The %1$s argument for %2$s is set to %3$s which is not a registered " -"taxonomy. Please check the spelling and update the argument." -msgstr "" -"Ustawienie „%3$s” parametru „%1$s” dla „" -"%2$s” nie jest zarejestrowaną systematyką. Proszę sprawdź jego " -"pisownię i dostosuj parametr." - -#: includes/taxonomy-images/taxonomy-images.php:1163 -msgid "taxonomy" -msgstr "systematyka" - -#: includes/taxonomy-images/taxonomy-images.php:1174 -msgid "No taxonomies have image support. %1$s" -msgstr "Brak systematyki powiązanej z obrazem. %1$s" - -#: includes/taxonomy-images/taxonomy-images.php:1180 -msgid "The %1$s taxonomy does not have image support. %2$s" -msgstr "Systematyce „%1$s” brakuje powiązanego obrazu. %2$s" - -#: includes/taxonomy-images/taxonomy-images.php:1206 -msgid "The %1$s has been called directly. Please use the %2$s filter instead." -msgstr "" -"Bezpośrednio wywołano %1$s, w zamian proszę zastosuj filtr „" -"%2$s”." - -#: includes/taxonomy-images/taxonomy-images.php:1243 -msgid "Donate" -msgstr "Ofiaruj" - -#: includes/taxonomy-images/taxonomy-images.php:1302 -#: includes/taxonomy-images/taxonomy-images.php:1303 -#: includes/template-tags.php:160 includes/types-taxonomies.php:94 -#: includes/types-taxonomies.php:96 includes/types-taxonomies.php:97 -#: includes/types-taxonomies.php:98 includes/types-taxonomies.php:99 -#: includes/types-taxonomies.php:100 includes/types-taxonomies.php:101 -#: includes/types-taxonomies.php:102 includes/types-taxonomies.php:103 -#: includes/types-taxonomies.php:104 includes/types-taxonomies.php:105 -msgid "Preacher" -msgstr "Kaznodzieja" - -#. translators: %s see msgid "Preacher" -#: includes/taxonomy-images/taxonomy-images.php:1302 -#: includes/taxonomy-images/taxonomy-images.php:1303 -msgid "Set %s’s image" -msgstr "Ustaw obraz %s" - -#: includes/taxonomy-images/taxonomy-images.php:1304 -#: includes/taxonomy-images/taxonomy-images.php:1305 -msgid "Set Series image" -msgstr "Ustaw obraz serii" - #: includes/template-tags.php:127 includes/template-tags.php:398 -#: includes/template-tags.php:424 includes/template-tags.php:437 -#: includes/template-tags.php:463 includes/widgets.php:96 +#: includes/template-tags.php:437 includes/widgets.php:96 msgid "Bible Text: " msgstr "Cytat biblijny: " #: includes/template-tags.php:160 +#, php-format msgid "Filter by %s" msgstr "Filtruj według %s" @@ -1397,19 +410,23 @@ msgstr "Filtruj według tematu" msgid "Filter by Book" msgstr "Filtruj według księgi" -#: includes/template-tags.php:363 includes/template-tags.php:389 +#: includes/template-tags.php:363 msgid "Download Files" msgstr "Pliki do pobrania" -#: includes/template-tags.php:365 includes/template-tags.php:391 +#: includes/template-tags.php:365 msgid "MP3" msgstr "" -#: includes/template-tags.php:368 includes/template-tags.php:394 +#: includes/template-tags.php:368 msgid "Notes" msgstr "Notatki" -#: includes/template-tags.php:413 includes/template-tags.php:439 +#: includes/template-tags.php:371 +msgid "Bulletin" +msgstr "Biuletyn" + +#: includes/template-tags.php:413 msgid "Sermon Topics: " msgstr "Tematy kazania: " @@ -1443,23 +460,35 @@ msgstr "Nie znaleziono kazań w koszu" msgid "Preachers" msgstr "Kaznodzieje" +#: includes/types-taxonomies.php:94 includes/types-taxonomies.php:96 +#: includes/types-taxonomies.php:97 includes/types-taxonomies.php:99 +#: includes/types-taxonomies.php:100 includes/types-taxonomies.php:101 +#: includes/types-taxonomies.php:102 includes/types-taxonomies.php:104 +msgid "Preacher" +msgstr "Kaznodzieja" + #: includes/types-taxonomies.php:97 +#, php-format msgid "Most frequent %s" msgstr "Najczęstszy/a %s" #: includes/types-taxonomies.php:102 +#, php-format msgid "New %s" msgstr "Nowy/a %s" #: includes/types-taxonomies.php:103 +#, php-format msgid "Separate multiple %s with commas" msgstr "Przedzielaj %s przecinkiem" #: includes/types-taxonomies.php:104 +#, php-format msgid "Add or remove %s" msgstr "Dodaj lub usuń %s" #: includes/types-taxonomies.php:105 +#, php-format msgid "Choose from most frequent %s" msgstr "Wybierz z najczęstszych %s" @@ -1625,46 +654,6 @@ msgstr "Dodaj nagranie kazania" msgid "Add File" msgstr "Dodaj plik" -#: includes/vendor/abstract-wp-rest-controller.php:29 -msgid "The %s method must be overridden." -msgstr "Metodę %s trzeba nadpisać." - -#: includes/vendor/abstract-wp-rest-controller.php:41 -#: includes/vendor/abstract-wp-rest-controller.php:53 -#: includes/vendor/abstract-wp-rest-controller.php:65 -#: includes/vendor/abstract-wp-rest-controller.php:77 -#: includes/vendor/abstract-wp-rest-controller.php:89 -#: includes/vendor/abstract-wp-rest-controller.php:101 -#: includes/vendor/abstract-wp-rest-controller.php:113 -#: includes/vendor/abstract-wp-rest-controller.php:125 -#: includes/vendor/abstract-wp-rest-controller.php:137 -#: includes/vendor/abstract-wp-rest-controller.php:149 -#: includes/vendor/abstract-wp-rest-controller.php:161 -#: includes/vendor/abstract-wp-rest-controller.php:174 -msgid "Method %s not implemented. Must be overridden in subclass." -msgstr "" -"Brak implementacji metody %s. Metodę trzeba nadpisać w klasie podrzędnej." - -#: includes/vendor/abstract-wp-rest-controller.php:287 -msgid "Current page of the collection." -msgstr "Bieżąca strona zbioru." - -#: includes/vendor/abstract-wp-rest-controller.php:295 -msgid "Maximum number of items to be returned in result set." -msgstr "" -"Maksymalna ilość wpisów, które mają być zwrócone w " -"zbiorze wynikowym." - -#: includes/vendor/abstract-wp-rest-controller.php:304 -msgid "Limit results to those matching a string." -msgstr "Ogranicz wyniki do pasujących ciągów znaków." - -#: includes/vendor/abstract-wp-rest-controller.php:324 -msgid "" -"Scope under which the request is made; determines fields present in response." -msgstr "" -"Zakres zapytania — ustala które pola będą zawarte w odpowiedzi." - #: includes/widgets.php:12 msgid "The most recent sermons on your site" msgstr "Najnowsze kazania w witrynie internetowej" @@ -1681,153 +670,807 @@ msgstr "Tytuł:" msgid "Number of sermons to show:" msgstr "Ilość kazań do pokazania:" -#. translators: plugin header field "Plugin Name" -#: sermons.php:3 -msgid "Sermon Manager for WordPress" -msgstr "Menadżer Kazań dla WordPress" - -#. translators: plugin header field "Description" -#: sermons.php:5 -msgid "Add audio and video sermons, manage speakers, series, and more." -msgstr "" -"Dodawaj kazania w postaci słuchowiska i wideo, zarządzaj kaznodziejami, " -"seriami kazań i wiele więcej." - -#. translators: %s see msgid "←", effectively -#: views/archive-wpfc_sermon.php:18 views/archive-wpfc_sermon.php:70 -#: views/archive-wpfc_sermon.php:71 -msgid "%s Older sermons" -msgstr "%s Starsze kazania" - -#: views/archive-wpfc_sermon.php:18 views/archive-wpfc_sermon.php:70 -#: views/taxonomy-wpfc_bible_book.php:36 views/taxonomy-wpfc_bible_book.php:99 -#: views/taxonomy-wpfc_preacher.php:42 views/taxonomy-wpfc_preacher.php:105 -#: views/taxonomy-wpfc_sermon_series.php:43 -#: views/taxonomy-wpfc_sermon_series.php:106 -#: views/taxonomy-wpfc_sermon_topics.php:43 -#: views/taxonomy-wpfc_sermon_topics.php:106 -#: views/taxonomy-wpfc_service_type.php:36 -#: views/taxonomy-wpfc_service_type.php:99 -msgid "←" +#: sermons.php:30 +#, php-format +msgid "" +"You are running PHP %s, but Sermon Manager requires at " +"least PHP %s." msgstr "" -#: views/archive-wpfc_sermon.php:21 views/archive-wpfc_sermon.php:73 -#: views/taxonomy-wpfc_bible_book.php:38 -#: views/taxonomy-wpfc_bible_book.php:101 views/taxonomy-wpfc_preacher.php:44 -#: views/taxonomy-wpfc_preacher.php:107 -#: views/taxonomy-wpfc_sermon_series.php:52 -#: views/taxonomy-wpfc_sermon_series.php:108 -#: views/taxonomy-wpfc_sermon_topics.php:45 -#: views/taxonomy-wpfc_service_type.php:20 -#: views/taxonomy-wpfc_service_type.php:38 -#: views/taxonomy-wpfc_service_type.php:101 -msgid "→" -msgstr "" +#~ msgid "Sermon updated. %s" +#~ msgstr "Zaktualizowano kazanie. %s" -#. translators: %s see msgid "→", effectively -#: views/archive-wpfc_sermon.php:21 views/archive-wpfc_sermon.php:73 -#: views/archive-wpfc_sermon.php:74 -msgid "Newer sermons %s" -msgstr "Nowsze kazania %s" - -#: views/archive-wpfc_sermon.php:28 views/taxonomy-wpfc_bible_book.php:45 -#: views/taxonomy-wpfc_preacher.php:51 -#: views/taxonomy-wpfc_sermon_series.php:52 -#: views/taxonomy-wpfc_sermon_topics.php:52 -#: views/taxonomy-wpfc_service_type.php:45 -msgid "Not Found" -msgstr "Nie znaleziono" - -#: views/archive-wpfc_sermon.php:30 views/taxonomy-wpfc_bible_book.php:47 -#: views/taxonomy-wpfc_preacher.php:53 -#: views/taxonomy-wpfc_sermon_series.php:54 -#: views/taxonomy-wpfc_sermon_topics.php:54 -#: views/taxonomy-wpfc_service_type.php:47 -msgid "Apologies, but no sermons were found." -msgstr "Przepraszamy, ale nie znaleziono kazań" - -#. translators: %s date -#: views/archive-wpfc_sermon.php:47 views/taxonomy-wpfc_bible_book.php:77 -#: views/taxonomy-wpfc_preacher.php:83 -#: views/taxonomy-wpfc_sermon_series.php:84 -#: views/taxonomy-wpfc_sermon_topics.php:84 -#: views/taxonomy-wpfc_service_type.php:77 -msgid "Preached on %s" -msgstr "Wygłoszono dnia %s" - -#: views/archive-wpfc_sermon.php:59 views/archive-wpfc_sermon.php:60 -#: views/taxonomy-wpfc_bible_book.php:88 views/taxonomy-wpfc_preacher.php:94 -#: views/taxonomy-wpfc_sermon_series.php:95 -#: views/taxonomy-wpfc_sermon_topics.php:95 -#: views/taxonomy-wpfc_service_type.php:88 -msgid "%s comment" -msgid_plural "%s comments" -msgstr[0] "%s komentarz" -msgstr[1] "%s komentarze" -msgstr[2] "%s komentarzy" - -#: views/archive-wpfc_sermon.php:59 views/archive-wpfc_sermon.php:60 -#: views/taxonomy-wpfc_bible_book.php:88 views/taxonomy-wpfc_preacher.php:94 -#: views/taxonomy-wpfc_sermon_series.php:95 -#: views/taxonomy-wpfc_sermon_topics.php:95 -#: views/taxonomy-wpfc_service_type.php:88 -msgid "Leave a comment" -msgstr "Pozostaw komentarz" - -#: views/single-wpfc_sermon.php:42 -msgctxt "Previous post link" -msgid "←" -msgstr "" +#~ msgid "Custom field updated." +#~ msgstr "Zaktualizowano pole zindywidualizowane" -#: views/single-wpfc_sermon.php:44 -msgctxt "Next post link" -msgid "→" -msgstr "" +#~ msgid "Custom field deleted." +#~ msgstr "Usunięto pole zindywidualizowane" + +#~ msgid "Sermon updated." +#~ msgstr "Zaktualizowano kazanie" + +#~ msgid "Sermon restored to revision from %s" +#~ msgstr "Przywrócono stan kazania z %s" + +#~ msgid "Sermon published. %s" +#~ msgstr "Opublikowano kazanie. %s" + +#~ msgid "Sermon saved." +#~ msgstr "Zapisano kazanie." + +#~ msgid "Preview sermon" +#~ msgstr "Podgląd prototypu kazania" + +#~ msgid "Sermon submitted. %s" +#~ msgstr "Wysłano kazanie. %s" + +#~ msgid "Sermon scheduled for: %1$s. %2$s" +#~ msgstr "Zaplanowano kazanie na %1$s. %2$s" + +#~ msgid "%1$s at %2$s" +#~ msgstr "%1$s o godzinie %2$s" + +#~ msgid "Sermon draft updated. %s" +#~ msgstr "Zaktualizowano szkic kazania. %s" + +#~ msgid "%s Can’t find sermon ID." +#~ msgstr "%s Nie znaleziono identyfikatora kazania." + +#~ msgid "Error:" +#~ msgstr "Błąd:" + +#~ msgid "%s sermon" +#~ msgid_plural "%s sermons" +#~ msgstr[0] "%s kazanie" +#~ msgstr[1] "%s kazania" +#~ msgstr[2] "%s kazań" + +#~ msgid "%s encountered a fatal error and recovered successfully." +#~ msgstr "„%s” napotkał błąd fatalny i skorygował go pomyślnie." + +#~ msgid "The issue has already been submitted." +#~ msgstr "Ten problem już wysłano." + +#~ msgctxt "Button" +#~ msgid "Send an anonymous report" +#~ msgstr "Wyślij raport anonimowy" + +#~ msgctxt "Button" +#~ msgid "Show error message" +#~ msgstr "Pokaż komunikat błędu" + +#~ msgctxt "Button" +#~ msgid "Reactivate Plugin" +#~ msgstr "Reaktywuj wtyczkę" + +#~ msgctxt "Title" +#~ msgid "Are you sure?" +#~ msgstr "Jesteś pewien?" + +#~ msgid "" +#~ "If the issue is not fixed, website will crash. (but we will recover it " +#~ "again)" +#~ msgstr "" +#~ "Jeśli nie naprawiono problemu, witryna internetowa się zawiesi (mimo to " +#~ "zostanie odrestaurowana)." + +#~ msgctxt "title" +#~ msgid "Optional info" +#~ msgstr "Informacje opcjonalne" + +#~ msgid "" +#~ "If you have more information about the issue, please type it here " +#~ "(optional):" +#~ msgstr "" +#~ "Jeśli posiadasz dalsze informacje o problemie, proszę wprowadź je tutaj " +#~ "(opcjonalne):" + +#~ msgctxt "Label" +#~ msgid "Issue details" +#~ msgstr "Szczegóły problemu" + +#~ msgctxt "Placeholder" +#~ msgid "Steps for how to reproduce, etc…" +#~ msgstr "Instrukcja jak zreprodukować problem, itp…" + +#~ msgid "Email for further contact (optional)" +#~ msgstr "E‑mail do dalszej korespondencji (opcjonalny)" + +#~ msgid "name@example.com" +#~ msgstr "nazwisko@przykład.com" + +#~ msgctxt "Label" +#~ msgid "Email" +#~ msgstr "E‑mail" + +#~ msgctxt "Admin menu name" +#~ msgid "Series" +#~ msgstr "Seria" + +#~ msgctxt "Admin menu name" +#~ msgid "Topics" +#~ msgstr "Tematy" + +#~ msgctxt "Admin menu name" +#~ msgid "Books" +#~ msgstr "Księgi" + +#~ msgctxt "Admin menu name" +#~ msgid "Service Types" +#~ msgstr "Rodzaje usługi" + +#~ msgctxt "Admin menu name" +#~ msgid "Sermons" +#~ msgstr "Kazania" + +#~ msgid "Support" +#~ msgstr "Wsparcie" + +#~ msgid "Sermon Manager Options" +#~ msgstr "Opcje Menadżera Kazań" + +#~ msgid "General" +#~ msgstr "Ogólne" + +#~ msgid "Verse" +#~ msgstr "Werset" + +#~ msgid "Options saved" +#~ msgstr "Zapisano ustawienia" + +#~ msgid "Need Some Help?" +#~ msgstr "Potrzebujesz trochę pomocy?" + +#~ msgid "" +#~ "Did you know you can get expert support for only $49 per year! %s today " +#~ "and get support from the developers who are building the Sermon Manager." +#~ msgstr "" +#~ "Czy wiesz, że od ekspertów możesz pozyskać wsparcie techniczne już " +#~ "za tylko $49 rocznie? %s dziś i otrzymuj wsparcie techniczne od twó" +#~ "rców Menadżera Kazań!" + +#~ msgid "Sign up" +#~ msgstr "Zarejestruj się" + +#~ msgid "Free Support" +#~ msgstr "Wsparcie bezpłatne" + +#~ msgid "Priority Support" +#~ msgstr "Wsparcie priorytetowe" + +#~ msgid "We offer limited free support via WordPress.org" +#~ msgstr "" +#~ "Udzielamy ograniczonego bezpłatnego wsparcia w ramach WordPress.org." + +#~ msgid "Frequently Asked Questions" +#~ msgstr "Często zadawane pytania" + +#~ msgid "Find out more in our %s" +#~ msgstr "Dowiedz się więcej z naszej %s" + +#~ msgid "knowledge base" +#~ msgstr "bazy wiedzy" + +#~ msgid "Lets Make It Even Better!" +#~ msgstr "Ulepszmy to razem!" + +#~ msgid "Submit Your Idea" +#~ msgstr "Wyślij Twój pomysł" + +#~ msgid "" +#~ "If you have ideas on how to make Sermon Manager or any of our products " +#~ "better, let us know!" +#~ msgstr "" +#~ "Jeśli masz pomysły na ulepszenie Menadżera Kazań lub naszych innych " +#~ "produktów, to daj nam znać!" + +#~ msgid "General Settings" +#~ msgstr "Ustawienia ogólne" + +#~ msgid "Archive Page Title" +#~ msgstr "Tytuł strony archiwum" + +#~ msgid "Archive Page Slug" +#~ msgstr "Uproszczona nazwa strony archiwum" + +#~ msgid "" +#~ "Common Base Slug — this is for users who want to have a common base " +#~ "slug across all taxonomies, e.g. %1$s or %2$s." +#~ msgstr "" +#~ "Wspólna podstawa uproszczonej nazwy — dla użytkownikó" +#~ "w, którzy chcą posiadać wspólną podstawową uproszczoną " +#~ "nazwę nad wszystkimi systematykami, np. %1$s lub %2$s." + +#~ msgid "sermons/preacher" +#~ msgstr "kazania/kaznodzieja" + +#~ msgid "sermons/series" +#~ msgstr "kazania/seria" + +#~ msgid "Enable a common base slug across all taxonomies" +#~ msgstr "" +#~ "Włącz wspólną podstawową uproszczoną nazwę nad wszystkimi " +#~ "systematykami" + +#~ msgid "" +#~ "Enable Template Files — this is for users upgrading from an older " +#~ "version who have issues with version 1.5+." +#~ msgstr "" +#~ "Włącz obsługę plików szablonowych — przewidziane dla " +#~ "użytkowników, którzy aktualizują z przestarzałych wersji na " +#~ "wersje 1.5 lub wyższe." + +#~ msgid "Enable template files found in the %s folder" +#~ msgstr "Włącz obsługę plików szablonowych w podkatalogu %s" + +#~ msgid "Disable Sermon Styles" +#~ msgstr "Wyłącz style kazań" + +#~ msgid "" +#~ "Disable Sermon CSS. If you do this, you should copy the styles from %s " +#~ "and include them in your theme CSS." +#~ msgstr "" +#~ "Wyłącz CSS kazań. Jeśli tego dokonasz, powinieneś skopiować style z %s i " +#~ "scalić je z Twoim motywem CSS." + +#~ msgid "Display audio player or video on archive pages" +#~ msgstr "Wyświetlaj odtwarzacz audio lub wideo na stronach archiwum" + +#~ msgid "Display an audio player or video embed in the archive listing." +#~ msgstr "" +#~ "Wyświetlaj kod osadzania odtwarzacza audio lub wideo na liście archiwum" + +#~ msgid "Use old audio player" +#~ msgstr "Używaj starego odtwarzacza dźwięku" + +#~ msgid "" +#~ "Custom label for “Preacher”. Note: it will also change " +#~ "preacher slugs." +#~ msgstr "" +#~ "Zindywidualizowana oznaka „Kaznodzieja”. Zauważ: To ró" +#~ "wnież zmieni uproszczone nazwy kaznodziei" + +#~ msgid "Sermon date format (used when creating a new Sermon)" +#~ msgstr "" +#~ "Format daty wygłoszenia kazania (potrzebne w trakcie tworzenia nowego " +#~ "kazania)" + +#~ msgid "Show key verse in widget" +#~ msgstr "Wyświetlaj werset kluczowy w widgetcie" + +#~ msgid "Version %s" +#~ msgstr "Wersja %s" + +#~ msgid "Current Version" +#~ msgstr "Wersja bieżąca" + +#~ msgid "Verse Settings" +#~ msgstr "Ustawienia wersetów" + +#~ msgid "Verse Popups" +#~ msgstr "Baloniki z wersetami" + +#~ msgid "Disable Bib.ly verse popups" +#~ msgstr "Wyłącz baloniki z wersetami Bib.ly" + +#~ msgid "Select Bible Version for Verse Popups" +#~ msgstr "Wybierz wydanie biblii dla baloników z wersetami" + +#~ msgid "" +#~ "%1$s, %2$s, %3$s, or %4$s are the currently supported popups for %5$s." +#~ msgstr "" +#~ "Wyłącznie %1$s, %2$s, %3$s i %4$s są aktualnie obsługiwane dla " +#~ "baloników z wersetami %5$s." + +#~ msgid "Warning! %s is not supported if your site uses SSL (HTTPS)." +#~ msgstr "" +#~ "UWAGA: W witrynach internetowych korzystających z SSL (HTTPS) %s nie jest " +#~ "obsługiwane." + +#~ msgid "Podcast Settings" +#~ msgstr "Ustawienia podcastingowe" + +#~ msgid "Title" +#~ msgstr "Tytuł" + +#~ msgid "Description" +#~ msgstr "Opis" + +#~ msgid "Website Link" +#~ msgstr "Odnośnik witryny internetowej" + +#~ msgid "Language" +#~ msgstr "Język" + +#~ msgid "Copyright" +#~ msgstr "Prawa autorskie" + +#~ msgid "Tip: Use %s to generate a copyright symbol." +#~ msgstr "Wskazówka: Stosuj %s, aby wygenerować symbol copyright." + +#~ msgid "Webmaster Name" +#~ msgstr "Nazwa zarządcy witryny internetowej" + +#~ msgid "e.g. Your Name" +#~ msgstr "np. Twoje imię" + +#~ msgid "Webmaster Email" +#~ msgstr "E‑mail zarządcy witryny internetowej" + +#~ msgid "Author" +#~ msgstr "Autor" + +#~ msgid "e.g. Primary Speaker or Church Name" +#~ msgstr "np. mówca lub nazwa kościoła" + +#~ msgid "This will display at the “Artist” in the iTunes Store." +#~ msgstr "" +#~ "To będzie wyświetlane jako „Wykonawca” w sklepie iTunes." + +#~ msgid "Subtitle" +#~ msgstr "Podtytuł" + +#~ msgid "" +#~ "Your subtitle should briefly tell the listener what they can expect to " +#~ "hear." +#~ msgstr "" +#~ "Podtytuł powinien w krótki sposób opisywać czego słuchacze " +#~ "mogą się spodziewać." + +#~ msgid "Summary" +#~ msgstr "Streszczenie" + +#~ msgid "" +#~ "Keep your Podcast Summary short, sweet and informative. Be sure to " +#~ "include a brief statement about your mission and in what region your " +#~ "audio content originates." +#~ msgstr "" +#~ "Ogranicz streszczenie podcastu do zachęcających i niezbędnych informacji. " +#~ "Nie zapomnij przedstawić Twojego posłania i regionu z którego " +#~ "słuchowisko pochodzi." + +#~ msgid "Owner Name" +#~ msgstr "Nazwa właściciela" + +#~ msgid "This should typically be the name of your Church." +#~ msgstr "Zwykle, jest to nazwa kościoła." + +#~ msgid "Owner Email" +#~ msgstr "E‑mail właściciela" + +#~ msgid "" +#~ "Use an email address that you don’t mind being made public. If " +#~ "someone wants to contact you regarding your Podcast this is the address " +#~ "they will use." +#~ msgstr "" +#~ "Używaj w tym celu adresu e‑mail, który jest przeznaczony do " +#~ "korespondencji publicznej. Jeśli ktoś będzie miał zamiar się skontaktować " +#~ "z Tobą w sprawie podcastu, to będzie ten adres na który będą pisać." + +#~ msgid "Cover Image" +#~ msgstr "Obraz okładki" + +#~ msgid "Upload Image" +#~ msgstr "Załaduj obraz" + +#~ msgid "" +#~ "This JPG will serve as the Podcast artwork in the iTunes Store. The image " +#~ "must be between 1,400px by 1,400px and 3,000px by 3,000px or else iTunes " +#~ "will not accept your feed." +#~ msgstr "" +#~ "Ten obraz będzie służył jako dzieło rozpoznawcze podcastu w sklepie " +#~ "iTunes. Obraz musi się mieścić w rozmiarach od 1 400 na 1 400 piksli, do " +#~ "nie więcej niż 3 000 na 3 000 piksli." + +#~ msgid "Top Category" +#~ msgstr "Kategoria naczelna" + +#~ msgid "" +#~ "Choose the appropriate top-level category for your Podcast listing in " +#~ "iTunes." +#~ msgstr "" +#~ "Wybierz właściwą kategorię naczelną dla Twojego podcastu w indeksie " +#~ "iTunes." + +#~ msgid "Sub Category" +#~ msgstr "Podkategoria" + +#~ msgid "" +#~ "Choose the appropriate sub category for your Podcast listing in iTunes." +#~ msgstr "" +#~ "Wybierz właściwą podkategorię dla Twojego podcastu w indeksie iTunes." + +#~ msgid "PodTrac Tracking" +#~ msgstr "Śledzenie PodTrac‑iem" + +#~ msgid "Enables PodTrac tracking." +#~ msgstr "Włącza śledzenie PodTrac‑iem" + +#~ msgid "For more info on PodTrac or to sign up for an account, visit %s" +#~ msgstr "" +#~ "Aby otrzymać więcej informacji o PodTrac‑u lub zarejestrować konto, " +#~ "odwiedź %s." + +#~ msgid "HTML in description" +#~ msgstr "Obsługa HTML w opisie" + +#~ msgid "Enable HTML description" +#~ msgstr "Włącz obsługę HTML w opisie" + +#~ msgid "" +#~ "Enables showing of HTML in iTunes description field. Uncheck if " +#~ "description looks messy." +#~ msgstr "" +#~ "Włącza obsługę HTML w polu „opis” wyświetlane w iTunes. " +#~ "Odhacz, jeśli opis wygląda zaburzony." + +#~ msgid "Number of podcasts to show" +#~ msgstr "Ilość pozycji w podcast‑cie" + +#~ msgid "" +#~ "Shows custom podcast count. If not defined, it uses WordPress default " +#~ "count." +#~ msgstr "" +#~ "Wyświetla określoną ilość pozycji w podcast‑cie. Jeśli ilość " +#~ "pozostanie niezdefiniowana, stosowana będzie domyślna ilość WordPressa." + +#~ msgid "Feed URL to Submit to iTunes" +#~ msgstr "URL kanału internetowego podcastu do przekazania iTunes" + +#~ msgid "Feed Validator" +#~ msgstr "walidatora kanału internetowego" + +#~ msgid "" +#~ "Use the %s to diagnose and fix any problems before submitting your " +#~ "Podcast to iTunes." +#~ msgstr "" +#~ "Stosuj %s do diagnozy i naprawy wszelkich problemów zanim wyślesz " +#~ "podcast do iTunes." + +#~ msgid "" +#~ "Once your Podcast Settings are complete and your Sermons are ready, " +#~ "it’s time to %s to the iTunes Store!" +#~ msgstr "" +#~ "Gdy sfinalizujesz ustawienia podcastingowe i przygotujesz kazania, " +#~ "nadejdzie pora, aby %s do sklepu iTunes!" + +#~ msgid "Submit Your Podcast" +#~ msgstr "wysłać Twój podcast" + +#~ msgid "" +#~ "Alternatively, if you want to track your Podcast subscribers, simply pass " +#~ "the Podcast Feed URL above through %s. FeedBurner will then give you a " +#~ "new URL to submit to iTunes instead." +#~ msgstr "" +#~ "Jeśli chcesz śledzić abonentów Twojego podcastu, po prostu " +#~ "przewlecz powyższy URL kanału internetowego podcastu przez %s. FeedBurner " +#~ "wtedy wyda Ci nowy URL, który w zamian przekażesz iTunes." + +#~ msgid "Please read the %s for more information." +#~ msgstr "Proszę, zapoznaj się ze %s." + +#~ msgid "iTunes FAQ for Podcast Makers" +#~ msgstr "" +#~ "zbiorem często zadawanych pytań dla twórców podcastó" +#~ "w na iTunes" + +#~ msgid "Save Changes" +#~ msgstr "Zapisz zmiany" + +#~ msgid "Permalink to %s" +#~ msgstr "Odnośnik wieczny do „%s”" + +#~ msgid "Sermon Details" +#~ msgstr "Szczegóły kazania" + +#~ msgid "(optional)" +#~ msgstr "(opcjonalne)" + +#~ msgid "" +#~ "Select the type of service. Modify service types in Sermons → " +#~ "Service Types." +#~ msgstr "" +#~ "Wybierz rodzaj usługi. Możesz edytować rodzaje usługi poprzez Kazania " +#~ "→ Rodzaj usługi." + +#~ msgid "Main Bible Passage" +#~ msgstr "Główny fragment biblii" + +#~ msgid "Enter the Bible passage with the full book names, e.g. %s." +#~ msgstr "Wprowadź fragment biblii razem z pełnymi nazwami ksiąg, np. %s." + +#~ msgid "John 3:16-18" +#~ msgstr "Jana 3, 16-18" + +#~ msgid "" +#~ "Type a brief description about this sermon, an outline, or a full " +#~ "manuscript" +#~ msgstr "Wprowadź krótki opis, zarys lub pełny rękopis kazania." + +#~ msgid "Sermon Files" +#~ msgstr "Pliki do kazania" + +#~ msgid "Location of MP3" +#~ msgstr "Położenie pliku MP3" + +#~ msgid "Upload an audio file or enter an URL." +#~ msgstr "Załaduj plik dźwiękowy lub wprowadź URL." + +#~ msgid "MP3 Duration" +#~ msgstr "Czas nagrania MP3" + +#~ msgid "" +#~ "Length in %s format (if left blank, will attempt to calculate " +#~ "automatically when you save)" +#~ msgstr "" +#~ "Długość czasowa nagrania w formacie %s. Jeśli pole pozostanie puste, to " +#~ "gdy zapiszesz kazanie, będzie próbowano automatycznie obliczyć długość " +#~ "czasową." + +#~ msgid "hh:mm:ss" +#~ msgstr "gg:mm:ss" + +#~ msgid "Video Embed Code" +#~ msgstr "Kod osadzający wideo" + +#~ msgid "Paste your embed code for Vimeo, Youtube, or other service here" +#~ msgstr "" +#~ "Wprowadź tu kod osadzający Twoje wideo z Vimeo, YouTube lub innego serwisu" + +#~ msgid "Video Link" +#~ msgstr "Odnośnik wideo" + +#~ msgid "Paste your link for Vimeo, Youtube, or other service here" +#~ msgstr "Wprowadź tu odnośnik do Vimeo, YouTube lub innego serwisu" + +#~ msgid "Sermon Notes" +#~ msgstr "Notatki do kazania" + +#~ msgid "Upload a pdf file or enter an URL." +#~ msgstr "Załaduj plik PDF lub wprowadź URL." + +#~ msgctxt "slug" +#~ msgid "preacher" +#~ msgstr "kaznodzieja" + +#~ msgctxt "slug" +#~ msgid "series" +#~ msgstr "seria" + +#~ msgctxt "slug" +#~ msgid "topics" +#~ msgstr "tematy" + +#~ msgctxt "slug" +#~ msgid "book" +#~ msgstr "ksiega" + +#~ msgctxt "slug" +#~ msgid "service-type" +#~ msgstr "rodzaj-uslugi" + +#~ msgctxt "slug" +#~ msgid "sermons" +#~ msgstr "kazania" + +#~ msgid "" +#~ "%1$s is not a property of the current queried object. This usually " +#~ "happens when the %2$s filter is used in an unsupported template file. " +#~ "This filter has been designed to work in taxonomy archives which are " +#~ "traditionally served by one of the following template files: %3$s, %4$s " +#~ "or %5$s. Learn more about %6$s." +#~ msgstr "" +#~ "%1$s nie jest właściwością bieżąco wyszukiwanego obiektu. To się zdarza, " +#~ "gdy filtr %2$s jest stosowany w nie obsługiwanym pliku szablonowym. Filtr " +#~ "ten, został opracowany dla archiwów systematyk, które " +#~ "tradycyjnie są obsługiwane przez jeden z następujących plików " +#~ "szablonowych: %3$s, %4$s lub %5$s. Dowiedz się więcej o %6$s." + +#~ msgid "term_taxonomy_id" +#~ msgstr "hasło_systematyka_identyfikator" + +#~ msgid "template hierarchy" +#~ msgstr "hierarchii szablonów" + +#~ msgid "Associate with %1$s" +#~ msgstr "Powiąż z tym %1$s" + +#~ msgid "this term" +#~ msgstr "hasłem" + +#~ msgid "Remove association with %1$s" +#~ msgstr "Usuń powiązanie z %1$s" + +#~ msgid "Taxonomies" +#~ msgstr "Systematyki" + +#~ msgid "Taxonomy Images" +#~ msgstr "Obrazy systematyki" + +#~ msgid "Taxonomy Images Plugin Settings" +#~ msgstr "Ustawienia wtyczki obrazów systematyki" + +#~ msgid "Unknown error encountered" +#~ msgstr "Nastąpił nieznany błąd." + +#~ msgid "tt_id not sent" +#~ msgstr "Nie wysłano tt_id." + +#~ msgid "tt_id is empty" +#~ msgstr "tt_id jest puste." + +#~ msgid "You do not have the correct capability to manage this term" +#~ msgstr "Brak poprawnej możliwości, aby zarządzać tym hasłem." + +#~ msgid "No nonce included." +#~ msgstr "Nie podano wyrazu." + +#~ msgid "Nonce did not match" +#~ msgstr "Wyraz nie pasuje." + +#~ msgid "Image id not sent" +#~ msgstr "Nie wysłano identyfikatora obrazu." + +#~ msgid "Image id is not a positive integer" +#~ msgstr "Identyfikator obrazu nie jest pozytywną liczbą całkowitą." + +#~ msgid "Image successfully associated" +#~ msgstr "Powiązano obraz." + +#~ msgid "Association could not be created" +#~ msgstr "Nie można utworzyć powiązania." + +#~ msgid "No nonce included" +#~ msgstr "Nie podano wyrazu." + +#~ msgid "Nothing to remove" +#~ msgstr "Nic do usunięcia." + +#~ msgid "Association successfully removed" +#~ msgstr "Usunięto powiązanie." + +#~ msgid "Association could not be removed" +#~ msgstr "Nie można usunąć powiązania." + +#~ msgid "Image" +#~ msgstr "Obraz" + +#~ msgid "Associate an image from your media library to this %1$s." +#~ msgstr "Powiąż obraz w galerii mediów z „%1$s”." + +#~ msgid "Upload." +#~ msgstr "Załaduj" + +#~ msgid "Delete" +#~ msgstr "Usuń" + +#~ msgid "“" +#~ msgstr "„" + +#~ msgid "”" +#~ msgstr "”" + +#~ msgid "Associating …" +#~ msgstr "Związywanie…" + +#~ msgid "Successfully Associated" +#~ msgstr "Związano" + +#~ msgid "Removing …" +#~ msgstr "Rozwiązywanie…" + +#~ msgid "Successfully Removed" +#~ msgstr "Rozwiązano" + +#~ msgid "" +#~ "The %1$s argument for %2$s is set to %3$s which is not a registered " +#~ "taxonomy. Please check the spelling and update the argument." +#~ msgstr "" +#~ "Ustawienie „%3$s” parametru „%1$s” dla „" +#~ "%2$s” nie jest zarejestrowaną systematyką. Proszę sprawdź jego " +#~ "pisownię i dostosuj parametr." + +#~ msgid "taxonomy" +#~ msgstr "systematyka" + +#~ msgid "No taxonomies have image support. %1$s" +#~ msgstr "Brak systematyki powiązanej z obrazem. %1$s" + +#~ msgid "The %1$s taxonomy does not have image support. %2$s" +#~ msgstr "Systematyce „%1$s” brakuje powiązanego obrazu. %2$s" + +#~ msgid "" +#~ "The %1$s has been called directly. Please use the %2$s filter instead." +#~ msgstr "" +#~ "Bezpośrednio wywołano %1$s, w zamian proszę zastosuj filtr „" +#~ "%2$s”." + +#~ msgid "Donate" +#~ msgstr "Ofiaruj" + +#~ msgid "Set %s’s image" +#~ msgstr "Ustaw obraz %s" + +#~ msgid "Set Series image" +#~ msgstr "Ustaw obraz serii" + +#~ msgid "The %s method must be overridden." +#~ msgstr "Metodę %s trzeba nadpisać." + +#~ msgid "Method %s not implemented. Must be overridden in subclass." +#~ msgstr "" +#~ "Brak implementacji metody %s. Metodę trzeba nadpisać w klasie podrzędnej." + +#~ msgid "Current page of the collection." +#~ msgstr "Bieżąca strona zbioru." + +#~ msgid "Maximum number of items to be returned in result set." +#~ msgstr "" +#~ "Maksymalna ilość wpisów, które mają być zwrócone w " +#~ "zbiorze wynikowym." + +#~ msgid "Limit results to those matching a string." +#~ msgstr "Ogranicz wyniki do pasujących ciągów znaków." + +#~ msgid "" +#~ "Scope under which the request is made; determines fields present in " +#~ "response." +#~ msgstr "" +#~ "Zakres zapytania — ustala które pola będą zawarte w " +#~ "odpowiedzi." + +#~ msgid "Sermon Manager for WordPress" +#~ msgstr "Menadżer Kazań dla WordPress" + +#~ msgid "Add audio and video sermons, manage speakers, series, and more." +#~ msgstr "" +#~ "Dodawaj kazania w postaci słuchowiska i wideo, zarządzaj kaznodziejami, " +#~ "seriami kazań i wiele więcej." + +#~ msgid "%s Older sermons" +#~ msgstr "%s Starsze kazania" + +#~ msgid "Newer sermons %s" +#~ msgstr "Nowsze kazania %s" + +#~ msgid "Not Found" +#~ msgstr "Nie znaleziono" + +#~ msgid "Apologies, but no sermons were found." +#~ msgstr "Przepraszamy, ale nie znaleziono kazań" + +#~ msgid "Preached on %s" +#~ msgstr "Wygłoszono dnia %s" + +#~ msgid "%s comment" +#~ msgid_plural "%s comments" +#~ msgstr[0] "%s komentarz" +#~ msgstr[1] "%s komentarze" +#~ msgstr[2] "%s komentarzy" + +#~ msgid "Leave a comment" +#~ msgstr "Pozostaw komentarz" + +#~ msgid "Sermons by Book: %s" +#~ msgstr "Kazania według księgi: %s" + +#~ msgid "%s Older posts" +#~ msgstr "%s Starsze wpisy" + +#~ msgid "Newer posts %s" +#~ msgstr "Nowsze wpisy %s" + +#~ msgid "Sermons by: %s" +#~ msgstr "Kazania według kaznodzieja: %s" + +#~ msgid "Sermons Series: %s" +#~ msgstr "Kazania z serii: %s" + +#~ msgid "Sermons Topic: %s" +#~ msgstr "Tematy kazań: %s" -#: views/taxonomy-wpfc_bible_book.php:20 -msgid "Sermons by Book: %s" -msgstr "Kazania według księgi: %s" - -#. translators: %s see msgid "←", effectively -#: views/taxonomy-wpfc_bible_book.php:36 views/taxonomy-wpfc_bible_book.php:99 -#: views/taxonomy-wpfc_preacher.php:42 views/taxonomy-wpfc_preacher.php:105 -#: views/taxonomy-wpfc_sermon_series.php:43 -#: views/taxonomy-wpfc_sermon_series.php:106 -#: views/taxonomy-wpfc_sermon_topics.php:43 -#: views/taxonomy-wpfc_sermon_topics.php:106 -#: views/taxonomy-wpfc_service_type.php:36 -#: views/taxonomy-wpfc_service_type.php:99 -msgid "%s Older posts" -msgstr "%s Starsze wpisy" - -#. translators: %s see msgid "→", effectively -#: views/taxonomy-wpfc_bible_book.php:38 -#: views/taxonomy-wpfc_bible_book.php:101 views/taxonomy-wpfc_preacher.php:44 -#: views/taxonomy-wpfc_preacher.php:107 -#: views/taxonomy-wpfc_sermon_series.php:45 -#: views/taxonomy-wpfc_sermon_series.php:108 -#: views/taxonomy-wpfc_sermon_topics.php:45 -#: views/taxonomy-wpfc_sermon_topics.php:108 -#: views/taxonomy-wpfc_service_type.php:38 -#: views/taxonomy-wpfc_service_type.php:101 -msgid "Newer posts %s" -msgstr "Nowsze wpisy %s" - -#: views/taxonomy-wpfc_preacher.php:20 -msgid "Sermons by: %s" -msgstr "Kazania według kaznodzieja: %s" - -#: views/taxonomy-wpfc_sermon_series.php:20 -msgid "Sermons Series: %s" -msgstr "Kazania z serii: %s" - -#: views/taxonomy-wpfc_sermon_topics.php:20 -msgid "Sermons Topic: %s" -msgstr "Tematy kazań: %s" - -#: views/taxonomy-wpfc_service_type.php:20 -msgid "Sermons By Service: %s" -msgstr "Kazania według usługi: %s" +#~ msgid "Sermons By Service: %s" +#~ msgstr "Kazania według usługi: %s" #~ msgid "”" #~ msgstr "&#rdquo;" diff --git a/languages/sermon-manager-for-wordpress.pot b/languages/sermon-manager-for-wordpress.pot index 35b62ba..062ec7a 100644 --- a/languages/sermon-manager-for-wordpress.pot +++ b/languages/sermon-manager-for-wordpress.pot @@ -1,1359 +1,390 @@ # Copyright (C) 2017 # This file is distributed under the same license as the package. +#, fuzzy msgid "" msgstr "" "Project-Id-Version: sermon-manager-for-wordpress\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/sermon-manager-for-wordpress\n" -"POT-Creation-Date: 2017-10-01 07:03:00+0200\n" +"POT-Creation-Date: 2017-10-03 09:37+0200\n" "PO-Revision-Date: 2017-09-30 07:03:00+0200\n" "Language-Team: WP for Church\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" - -#. translators: %s see msgid "View sermon", effectively View sermon -#: includes/admin-functions.php:124 -#, php-format -msgid "Sermon updated. %s" -msgstr "" - -#: includes/admin-functions.php:124 includes/admin-functions.php:130 -#: includes/admin-functions.php:136 includes/class-sm-post-types.php:201 -#: includes/class-sm-post-types.php:202 -msgid "View sermon" -msgstr "" - -#: includes/admin-functions.php:125 -msgid "Custom field updated." -msgstr "" - -#: includes/admin-functions.php:126 -msgid "Custom field deleted." -msgstr "" - -#: includes/admin-functions.php:127 -msgid "Sermon updated." -msgstr "" - -#: includes/admin-functions.php:129 -#, php-format -msgid "Sermon restored to revision from %s" -msgstr "" - -#. translators: %s see msgid "View sermon", effectively View sermon -#: includes/admin-functions.php:130 -#, php-format -msgid "Sermon published. %s" -msgstr "" - -#: includes/admin-functions.php:131 -msgid "Sermon saved." -msgstr "" - -#: includes/admin-functions.php:132 includes/admin-functions.php:135 -msgid "Preview sermon" -msgstr "" - -#. translators: %s see msgid "Preview sermon", effectively Preview sermon -#: includes/admin-functions.php:132 -#, php-format -msgid "Sermon submitted. %s" -msgstr "" - -#. translators: %1$s see msgid "%1$s at %2$s", effectively at -#. translators: %2$s see msgid "Preview sermon", effectively Preview sermon -#: includes/admin-functions.php:133 -#, php-format -msgid "Sermon scheduled for: %1$s. %2$s" -msgstr "" - -#. translators: %1$s date -#. translators: %2$s time -#: includes/admin-functions.php:134 includes/admin-functions.php:135 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#. translators: %s see msgid "Preview sermon", effectively Preview sermon -#: includes/admin-functions.php:136 -#, php-format -msgid "Sermon draft updated. %s" -msgstr "" +"Last-Translator: \n" +"X-Generator: Poedit 2.0.4\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: includes/CMB2\n" #: includes/admin-functions.php:189 -msgid "Sermon Title" -msgstr "" - -#. translators: %s: Preachers label (sentence case; plural) -#: includes/admin-functions.php:191 includes/class-sm-post-types.php:44 -#: includes/class-sm-post-types.php:47 includes/class-sm-post-types.php:49 -#, php-format -msgid "%s" -msgstr "" - -#: includes/admin-functions.php:191 includes/admin-functions.php:192 -#: includes/types-taxonomies.php:120 includes/types-taxonomies.php:121 -#: includes/types-taxonomies.php:122 -msgid "Sermon Series" -msgstr "" - -#: includes/admin-functions.php:192 includes/admin-functions.php:193 -#: includes/class-sm-post-types.php:104 includes/class-sm-post-types.php:106 -msgid "Topics" -msgstr "" - -#: includes/admin-functions.php:193 includes/admin-functions.php:194 -msgid "Views" -msgstr "" - -#: includes/admin-functions.php:194 includes/admin-functions.php:195 -#: includes/sm-cmb-functions.php:85 includes/types-taxonomies.php:301 -msgid "Date Preached" -msgstr "" - -#: includes/admin-functions.php:195 includes/admin-functions.php:196 -msgid "Bible Passage" -msgstr "" - -#. translators: %s see msgid "Error:" -#: includes/admin-functions.php:212 includes/admin-functions.php:213 -#, php-format -msgid "%s Can’t find sermon ID." -msgstr "" - -#: includes/admin-functions.php:212 includes/admin-functions.php:213 -#: includes/admin-functions.php:252 includes/admin-functions.php:253 -msgid "Error:" -msgstr "" - -#: includes/admin-functions.php:290 includes/class-sm-post-types.php:193 -#: includes/types-taxonomies.php:59 -msgid "Sermon" -msgstr "" - -#: includes/admin-functions.php:306 includes/admin-functions.php:307 -#, php-format -msgid "%s sermon" -msgid_plural "%s sermons" -msgstr[0] "%s sermon" -msgstr[1] "%s sermons" - -#. translators: %s: Plugin name -#: includes/class-sm-error-recovery.php:200 -#, php-format -msgid "%s encountered a fatal error and recovered successfully." -msgstr "" - -#: includes/class-sm-error-recovery.php:203 -msgid "The issue has already been submitted." -msgstr "" - -#: includes/class-sm-error-recovery.php:208 -msgctxt "Button" -msgid "Send an anonymous report" -msgstr "" - -#: includes/class-sm-error-recovery.php:212 -msgctxt "Button" -msgid "Show error message" -msgstr "" - -#: includes/class-sm-error-recovery.php:215 -msgctxt "Button" -msgid "Reactivate Plugin" -msgstr "" - -#: includes/class-sm-error-recovery.php:222 -msgctxt "Title" -msgid "Are you sure?" -msgstr "" - -#: includes/class-sm-error-recovery.php:224 -msgid "" -"If the issue is not fixed, website will crash. (but we will recover it again)" -msgstr "" - -#: includes/class-sm-error-recovery.php:226 -msgctxt "title" -msgid "Optional info" -msgstr "" - -#: includes/class-sm-error-recovery.php:228 -msgid "" -"If you have more information about the issue, please type it here (optional):" -msgstr "" - -#: includes/class-sm-error-recovery.php:230 -msgctxt "Label" -msgid "Issue details" -msgstr "" - -#: includes/class-sm-error-recovery.php:232 -msgctxt "Placeholder" -msgid "Steps for how to reproduce, etc…" -msgstr "" - -#: includes/class-sm-error-recovery.php:233 -msgid "Email for further contact (optional)" -msgstr "" - -#: includes/class-sm-error-recovery.php:234 -msgid "name@example.com" -msgstr "" - -#: includes/class-sm-error-recovery.php:235 -msgctxt "Label" -msgid "Email" -msgstr "" - -#: includes/class-sm-post-types.php:51 -#, php-format -msgctxt "Admin menu name" -msgid "%s" -msgstr "" - -#: includes/class-sm-post-types.php:53 includes/types-taxonomies.php:96 -#, php-format -msgid "Search %s" -msgstr "" - -#: includes/class-sm-post-types.php:55 includes/types-taxonomies.php:98 -#, php-format -msgid "All %s" -msgstr "" - -#: includes/class-sm-post-types.php:59 includes/types-taxonomies.php:99 -#, php-format -msgid "Edit %s" -msgstr "" - -#: includes/class-sm-post-types.php:61 includes/types-taxonomies.php:100 -#, php-format -msgid "Update %s" -msgstr "" - -#: includes/class-sm-post-types.php:63 includes/types-taxonomies.php:101 -#, php-format -msgid "Add new %s" -msgstr "" - -#: includes/class-sm-post-types.php:65 -#, php-format -msgid "New %s name" -msgstr "" - -#: includes/class-sm-post-types.php:67 -#, php-format -msgid "No %s found" -msgstr "" - -#: includes/class-sm-post-types.php:79 includes/class-sm-post-types.php:81 -#: includes/class-sm-post-types.php:82 -msgid "Series" -msgstr "" - -#: includes/class-sm-post-types.php:83 -msgctxt "Admin menu name" -msgid "Series" -msgstr "" - -#: includes/class-sm-post-types.php:84 -msgid "Search series" -msgstr "" - -#: includes/class-sm-post-types.php:85 -msgid "All series" -msgstr "" - -#: includes/class-sm-post-types.php:88 -msgid "Edit series" -msgstr "" - -#: includes/class-sm-post-types.php:89 -msgid "Update series" -msgstr "" - -#: includes/class-sm-post-types.php:90 -msgid "Add new series" -msgstr "" - -#: includes/class-sm-post-types.php:91 -msgid "New series name" -msgstr "" - -#: includes/class-sm-post-types.php:92 -msgid "No series found" -msgstr "" - -#: includes/class-sm-post-types.php:107 -msgid "Topic" -msgstr "" - -#: includes/class-sm-post-types.php:108 -msgctxt "Admin menu name" -msgid "Topics" -msgstr "" - -#: includes/class-sm-post-types.php:109 -msgid "Search topics" -msgstr "" - -#: includes/class-sm-post-types.php:110 -msgid "All topics" -msgstr "" - -#: includes/class-sm-post-types.php:113 -msgid "Edit topic" -msgstr "" - -#: includes/class-sm-post-types.php:114 -msgid "Update topic" -msgstr "" - -#: includes/class-sm-post-types.php:115 -msgid "Add new topic" -msgstr "" - -#: includes/class-sm-post-types.php:116 -msgid "New topic name" -msgstr "" - -#: includes/class-sm-post-types.php:117 -msgid "No topics found" -msgstr "" - -#: includes/class-sm-post-types.php:129 -msgid "Books" -msgstr "" - -#: includes/class-sm-post-types.php:131 -msgid "Bible books" -msgstr "" - -#: includes/class-sm-post-types.php:132 -msgid "Book" -msgstr "" - -#: includes/class-sm-post-types.php:133 -msgctxt "Admin menu name" -msgid "Books" -msgstr "" - -#: includes/class-sm-post-types.php:134 -msgid "Search books" -msgstr "" - -#: includes/class-sm-post-types.php:135 -msgid "All books" -msgstr "" - -#: includes/class-sm-post-types.php:138 -msgid "Edit book" -msgstr "" - -#: includes/class-sm-post-types.php:139 -msgid "Update book" -msgstr "" - -#: includes/class-sm-post-types.php:140 -msgid "Add new book" -msgstr "" - -#: includes/class-sm-post-types.php:141 -msgid "New book name" -msgstr "" - -#: includes/class-sm-post-types.php:142 -msgid "No books found" -msgstr "" - -#: includes/class-sm-post-types.php:154 includes/class-sm-post-types.php:156 -msgid "Service Types" -msgstr "" - -#: includes/class-sm-post-types.php:157 includes/sm-cmb-functions.php:93 -#: includes/types-taxonomies.php:201 includes/types-taxonomies.php:202 -#: includes/types-taxonomies.php:203 includes/types-taxonomies.php:309 -msgid "Service Type" -msgstr "" - -#: includes/class-sm-post-types.php:158 -msgctxt "Admin menu name" -msgid "Service Types" -msgstr "" - -#: includes/class-sm-post-types.php:159 includes/types-taxonomies.php:204 -msgid "Search service types" -msgstr "" - -#: includes/class-sm-post-types.php:160 includes/types-taxonomies.php:206 -msgid "All service types" -msgstr "" - -#: includes/class-sm-post-types.php:163 includes/types-taxonomies.php:207 -msgid "Edit service type" -msgstr "" - -#: includes/class-sm-post-types.php:164 includes/types-taxonomies.php:208 -msgid "Update service type" -msgstr "" - -#: includes/class-sm-post-types.php:165 -msgid "Add new service type" -msgstr "" - -#: includes/class-sm-post-types.php:166 -msgid "New service type name" -msgstr "" - -#: includes/class-sm-post-types.php:167 -msgid "No service types found" -msgstr "" - -#: includes/class-sm-post-types.php:192 includes/options.php:291 -#: includes/options.php:300 includes/types-taxonomies.php:58 -#: includes/types-taxonomies.php:68 views/archive-wpfc_sermon.php:13 -msgid "Sermons" -msgstr "" - -#: includes/class-sm-post-types.php:194 -msgid "All Sermons" -msgstr "" - -#: includes/class-sm-post-types.php:195 -msgctxt "Admin menu name" -msgid "Sermons" -msgstr "" - -#: includes/class-sm-post-types.php:196 includes/types-taxonomies.php:60 -msgid "Add New" -msgstr "" - -#: includes/class-sm-post-types.php:197 -msgid "Add new sermon" -msgstr "" - -#: includes/class-sm-post-types.php:198 views/archive-wpfc_sermon.php:61 -#: views/archive-wpfc_sermon.php:62 views/single-wpfc_sermon.php:35 -#: views/taxonomy-wpfc_bible_book.php:89 views/taxonomy-wpfc_preacher.php:95 -#: views/taxonomy-wpfc_sermon_series.php:96 -#: views/taxonomy-wpfc_sermon_topics.php:96 -#: views/taxonomy-wpfc_service_type.php:89 -msgid "Edit" -msgstr "" - -#: includes/class-sm-post-types.php:199 -msgid "Edit sermon" -msgstr "" - -#: includes/class-sm-post-types.php:200 -msgid "New sermon" -msgstr "" - -#: includes/class-sm-post-types.php:203 -msgid "Search sermon" -msgstr "" - -#: includes/class-sm-post-types.php:204 includes/types-taxonomies.php:66 -msgid "No sermons found" -msgstr "" - -#: includes/class-sm-post-types.php:205 -msgid "No sermons found in trash" -msgstr "" - -#: includes/class-sm-post-types.php:206 -msgid "Sermon image" -msgstr "" - -#: includes/class-sm-post-types.php:207 -msgid "Set sermon image" -msgstr "" - -#: includes/class-sm-post-types.php:208 -msgid "Remove sermon image" -msgstr "" - -#: includes/class-sm-post-types.php:209 -msgid "Use as sermon image" -msgstr "" - -#: includes/class-sm-post-types.php:210 -msgid "Insert to sermon" -msgstr "" - -#: includes/class-sm-post-types.php:211 -msgid "Uploaded to this sermon" -msgstr "" - -#: includes/class-sm-post-types.php:212 -msgid "Filter sermon" -msgstr "" - -#: includes/class-sm-post-types.php:213 -msgid "Sermon navigation" -msgstr "" - -#: includes/class-sm-post-types.php:214 -msgid "Sermon list" -msgstr "" - -#: includes/class-sm-post-types.php:216 -msgid "This is where you can add new sermons to your website." -msgstr "" - -#: includes/helper-functions.php:193 includes/template-tags.php:129 -#: includes/template-tags.php:400 includes/template-tags.php:426 -#: includes/template-tags.php:439 includes/template-tags.php:465 -msgid "Series: " -msgstr "" - -#: includes/options.php:74 includes/options.php:81 -msgid "Sermon Manager Settings" -msgstr "" - -#: includes/options.php:81 includes/options.php:94 includes/options.php:101 -#: includes/options.php:761 includes/options.php:770 -#: includes/taxonomy-images/taxonomy-images.php:333 -#: includes/taxonomy-images/taxonomy-images.php:1238 -msgid "Settings" -msgstr "" - -#: includes/options.php:99 includes/options.php:106 -msgid "Support" -msgstr "" - -#: includes/options.php:108 includes/options.php:115 -#: includes/taxonomy-images/taxonomy-images.php:1263 -msgid "Manage Settings" -msgstr "" - -#: includes/options.php:197 includes/options.php:204 -msgid "Sermon Manager Options" -msgstr "" - -#: includes/options.php:203 includes/options.php:209 -msgid "General" -msgstr "" - -#: includes/options.php:205 includes/options.php:211 -msgid "Verse" -msgstr "" - -#: includes/options.php:207 includes/options.php:213 -msgid "Podcast" -msgstr "" - -#: includes/options.php:213 includes/options.php:219 -msgid "Options saved" -msgstr "" - -#: includes/options.php:222 includes/options.php:228 -msgid "Need Some Help?" -msgstr "" - -#. translators: %s see msgid "Sign up" -#: includes/options.php:224 includes/options.php:230 -#, php-format -msgid "" -"Did you know you can get expert support for only $49 per year! %s today and " -"get support from the developers who are building the Sermon Manager." -msgstr "" - -#: includes/options.php:224 includes/options.php:230 -msgid "Sign up" -msgstr "" - -#: includes/options.php:227 includes/options.php:233 -msgid "Free Support" -msgstr "" - -#: includes/options.php:228 includes/options.php:234 -msgid "Priority Support" -msgstr "" - -#: includes/options.php:231 includes/options.php:237 -msgid "We offer limited free support via WordPress.org" -msgstr "" - -#: includes/options.php:238 includes/options.php:243 -msgid "Frequently Asked Questions" -msgstr "" - -#. translators: %s see msgid "Knowledge base" -#: includes/options.php:253 includes/options.php:259 -#, php-format -msgid "Find out more in our %s" -msgstr "" - -#: includes/options.php:253 includes/options.php:259 -msgid "knowledge base" -msgstr "" - -#: includes/options.php:259 includes/options.php:265 -msgid "Lets Make It Even Better!" -msgstr "" - -#: includes/options.php:264 includes/options.php:270 -msgid "Submit Your Idea" -msgstr "" - -#: includes/options.php:267 -msgid "" -"If you have ideas on how to make Sermon Manager or any of our products " -"better, let us know!" -msgstr "" - -#: includes/options.php:277 includes/options.php:283 -msgid "General Settings" -msgstr "" - -#: includes/options.php:281 includes/options.php:287 -msgid "Archive Page Title" -msgstr "" - -#: includes/options.php:289 includes/options.php:296 -msgid "Archive Page Slug" -msgstr "" - -#: includes/options.php:291 includes/options.php:300 includes/options.php:490 -#: includes/options.php:494 includes/options.php:500 includes/options.php:504 -#: includes/options.php:510 includes/options.php:514 includes/options.php:520 -#: includes/options.php:524 includes/options.php:555 includes/options.php:559 -#: includes/options.php:603 includes/options.php:607 includes/options.php:616 -#: includes/options.php:620 includes/options.php:648 includes/options.php:661 -#, php-format -msgid "e.g. %s" -msgstr "" - -#. translators: %1$s see msgid "sermons/preacher", effectively sermons/preacher -#. translators: %2$s see msgid "sermons/series", effectively sermons/series -#: includes/options.php:297 includes/options.php:305 -#, php-format -msgid "" -"Common Base Slug — this is for users who want to have a common base " -"slug across all taxonomies, e.g. %1$s or %2$s." -msgstr "" - -#: includes/options.php:297 includes/options.php:305 -msgid "sermons/preacher" -msgstr "" - -#: includes/options.php:297 includes/options.php:305 -msgid "sermons/series" -msgstr "" - -#: includes/options.php:302 includes/options.php:310 -msgid "Enable a common base slug across all taxonomies" -msgstr "" - -#: includes/options.php:308 includes/options.php:316 -msgid "" -"Enable Template Files — this is for users upgrading from an older " -"version who have issues with version 1.5+." -msgstr "" - -#. translators: %s effectively /views -#. Since /views is a locale independent folder name it MUST NOT be localized -#: includes/options.php:313 includes/options.php:321 -#, php-format -msgid "Enable template files found in the %s folder" -msgstr "" - -#: includes/options.php:319 includes/options.php:327 -msgid "Disable Sermon Styles" -msgstr "" - -#. translators: %s effectively sermons.css -#. Since sermons.css is a locale independent file name it MUST NOT be localized -#: includes/options.php:324 includes/options.php:332 -msgid "" -"Disable Sermon CSS. If you do this, you should copy the styles from %s and " -"include them in your theme CSS." -msgstr "" - -#: includes/options.php:338 -msgid "Display audio player or video on archive pages" -msgstr "" - -#: includes/options.php:343 -msgid "Display an audio player or video embed in the archive listing." -msgstr "" - -#: includes/options.php:349 includes/options.php:354 -msgid "Use old audio player" -msgstr "" - -#: includes/options.php:352 includes/options.php:360 -msgid "" -"Custom label for “Preacher”. Note: it will also change preacher " -"slugs." -msgstr "" - -#: includes/options.php:360 includes/options.php:368 -msgid "Sermon date format (used when creating a new Sermon)" -msgstr "" - -#: includes/options.php:389 includes/options.php:395 -msgid "Show key verse in widget" -msgstr "" - -#: includes/options.php:393 includes/options.php:401 -#, php-format -msgid "Version %s" -msgstr "" - -#: includes/options.php:405 includes/options.php:406 -msgid "Current Version" -msgstr "" - -#: includes/options.php:413 includes/options.php:414 -msgid "Verse Settings" -msgstr "" - -#: includes/options.php:418 includes/options.php:419 -msgid "Verse Popups" -msgstr "" - -#: includes/options.php:424 includes/options.php:425 -msgid "Disable Bib.ly verse popups" -msgstr "" - -#: includes/options.php:430 includes/options.php:431 -msgid "Select Bible Version for Verse Popups" -msgstr "" - -#. translators: %1$s effectively ESV -#. translators: %2$s effectively NET -#. translators: %3$s effectively KJV -#. translators: %4$s effectively LEB -#. translators: %5$s see msgid "bib.ly", effectively bib.ly -#: includes/options.php:444 includes/options.php:452 -#, php-format -msgid "%1$s, %2$s, %3$s, or %4$s are the currently supported popups for %5$s." -msgstr "" - -#: includes/options.php:449 includes/options.php:457 -msgid "bib.ly" -msgstr "" - -#. translators: %s see effectively ESV -#: includes/options.php:451 includes/options.php:459 -#, php-format -msgid "Warning! %s is not supported if your site uses SSL (HTTPS)." -msgstr "" - -#: includes/options.php:464 includes/options.php:468 -msgid "Podcast Settings" -msgstr "" - -#: includes/options.php:486 includes/options.php:490 -msgid "Title" -msgstr "" - -#: includes/options.php:496 includes/options.php:500 -#: includes/sm-cmb-functions.php:107 includes/types-taxonomies.php:323 -msgid "Description" -msgstr "" - -#: includes/options.php:506 includes/options.php:510 -msgid "Website Link" -msgstr "" - -#: includes/options.php:516 includes/options.php:520 -msgid "Language" -msgstr "" - -#: includes/options.php:526 includes/options.php:530 -msgid "Copyright" -msgstr "" - -#: includes/options.php:530 includes/options.php:534 -#, php-format -msgid "e.g. Copyright © %s" -msgstr "" - -#. translators: %s &copy; -#: includes/options.php:535 includes/options.php:539 -#, php-format -msgid "Tip: Use %s to generate a copyright symbol." -msgstr "" - -#: includes/options.php:541 includes/options.php:545 -msgid "Webmaster Name" -msgstr "" - -#: includes/options.php:545 includes/options.php:549 -msgid "e.g. Your Name" -msgstr "" - -#: includes/options.php:551 includes/options.php:555 -msgid "Webmaster Email" -msgstr "" - -#: includes/options.php:561 includes/options.php:565 -msgid "Author" -msgstr "" - -#: includes/options.php:565 includes/options.php:569 -msgid "e.g. Primary Speaker or Church Name" -msgstr "" - -#: includes/options.php:569 includes/options.php:573 -msgid "This will display at the “Artist” in the iTunes Store." -msgstr "" - -#: includes/options.php:574 includes/options.php:578 -msgid "Subtitle" -msgstr "" - -#: includes/options.php:578 includes/options.php:582 -#, php-format -msgid "e.g. Preaching and teaching audio from %s" -msgstr "" - -#: includes/options.php:582 includes/options.php:586 -msgid "" -"Your subtitle should briefly tell the listener what they can expect to hear." -msgstr "" - -#: includes/options.php:587 includes/options.php:591 -msgid "Summary" -msgstr "" - -#: includes/options.php:591 includes/options.php:595 -#, php-format -msgid "e.g. Weekly teaching audio brought to you by %s in City, State." -msgstr "" - -#: includes/options.php:594 includes/options.php:598 -msgid "" -"Keep your Podcast Summary short, sweet and informative. Be sure to include a " -"brief statement about your mission and in what region your audio content " -"originates." -msgstr "" - -#: includes/options.php:599 includes/options.php:603 -msgid "Owner Name" -msgstr "" - -#: includes/options.php:607 includes/options.php:611 -msgid "This should typically be the name of your Church." -msgstr "" - -#: includes/options.php:612 includes/options.php:616 -msgid "Owner Email" -msgstr "" - -#: includes/options.php:620 includes/options.php:624 -msgid "" -"Use an email address that you don’t mind being made public. If someone " -"wants to contact you regarding your Podcast this is the address they will " -"use." -msgstr "" - -#: includes/options.php:625 includes/options.php:629 -msgid "Cover Image" -msgstr "" - -#: includes/options.php:632 includes/options.php:636 -msgid "Upload Image" -msgstr "" - -#: includes/options.php:635 includes/options.php:639 -msgid "" -"This JPG will serve as the Podcast artwork in the iTunes Store. The image " -"must be between 1,400px by 1,400px and 3,000px by 3,000px or else iTunes " -"will not accept your feed." -msgstr "" - -#: includes/options.php:640 includes/options.php:644 -msgid "Top Category" -msgstr "" - -#: includes/options.php:648 includes/options.php:652 -msgid "" -"Choose the appropriate top-level category for your Podcast listing in iTunes." -msgstr "" - -#: includes/options.php:653 includes/options.php:657 -msgid "Sub Category" -msgstr "" - -#: includes/options.php:661 includes/options.php:665 -msgid "Choose the appropriate sub category for your Podcast listing in iTunes." -msgstr "" - -#: includes/options.php:666 includes/options.php:670 -msgid "PodTrac Tracking" -msgstr "" - -#: includes/options.php:671 includes/options.php:675 -msgid "Enables PodTrac tracking." -msgstr "" - -#. translators: %s podtrac.com -#: includes/options.php:675 includes/options.php:679 -#, php-format -msgid "For more info on PodTrac or to sign up for an account, visit %s" -msgstr "" - -#: includes/options.php:680 includes/options.php:684 -msgid "HTML in description" -msgstr "" - -#: includes/options.php:686 includes/options.php:690 -msgid "Enable HTML description" -msgstr "" - -#: includes/options.php:690 includes/options.php:694 -msgid "" -"Enables showing of HTML in iTunes description field. Uncheck if description " -"looks messy." -msgstr "" - -#: includes/options.php:695 includes/options.php:699 -msgid "Number of podcasts to show" -msgstr "" - -#: includes/options.php:704 includes/options.php:708 -msgid "" -"Shows custom podcast count. If not defined, it uses WordPress default count." -msgstr "" - -#: includes/options.php:715 -msgid "Feed URL to Submit to iTunes" -msgstr "" - -#: includes/options.php:722 includes/options.php:725 -msgid "Feed Validator" -msgstr "" - -#. translators: %s Feed Validator link, see msgid "Feed Validator" -#: includes/options.php:722 includes/options.php:725 -#, php-format -msgid "" -"Use the %s to diagnose and fix any problems before submitting your Podcast " -"to iTunes." +msgid "Sermon Title" msgstr "" -#. translators: %s see msgid "Submit Your Podcast" -#: includes/options.php:725 includes/options.php:728 +#: includes/admin-functions.php:191 includes/class-sm-post-types.php:44 +#: includes/class-sm-post-types.php:47 includes/class-sm-post-types.php:49 #, php-format -msgid "" -"Once your Podcast Settings are complete and your Sermons are ready, it’" -"s time to %s to the iTunes Store!" +msgid "%s" msgstr "" -#: includes/options.php:725 includes/options.php:728 -msgid "Submit Your Podcast" +#: includes/admin-functions.php:192 includes/types-taxonomies.php:120 +#: includes/types-taxonomies.php:121 includes/types-taxonomies.php:122 +msgid "Sermon Series" msgstr "" -#. translators: %s see msgid "FeedBurner" -#: includes/options.php:727 includes/options.php:731 -#, php-format -msgid "" -"Alternatively, if you want to track your Podcast subscribers, simply pass " -"the Podcast Feed URL above through %s. FeedBurner will then give you a new " -"URL to submit to iTunes instead." +#: includes/admin-functions.php:193 includes/class-sm-post-types.php:104 +#: includes/class-sm-post-types.php:106 +msgid "Topics" msgstr "" -#: includes/options.php:727 includes/options.php:731 -msgid "FeedBurner" +#: includes/admin-functions.php:194 +msgid "Views" msgstr "" -#. translators: %s see msgid "iTunes FAQ for Podcast Makers" -#: includes/options.php:730 includes/options.php:734 -#, php-format -msgid "Please read the %s for more information." +#: includes/admin-functions.php:195 +msgid "Date Preached" msgstr "" -#: includes/options.php:730 includes/options.php:734 -msgid "iTunes FAQ for Podcast Makers" +#: includes/admin-functions.php:196 +msgid "Bible Passage" msgstr "" -#: includes/options.php:742 includes/options.php:751 -#: includes/taxonomy-images/taxonomy-images.php:395 -msgid "Save Changes" +#: includes/class-sm-post-types.php:53 includes/types-taxonomies.php:96 +#, php-format +msgid "Search %s" msgstr "" -#: includes/shortcodes.php:781 includes/shortcodes.php:786 -#: includes/template-tags.php:114 views/archive-wpfc_sermon.php:40 -#: views/taxonomy-wpfc_bible_book.php:72 views/taxonomy-wpfc_preacher.php:78 -#: views/taxonomy-wpfc_sermon_series.php:79 -#: views/taxonomy-wpfc_sermon_topics.php:79 -#: views/taxonomy-wpfc_service_type.php:72 +#: includes/class-sm-post-types.php:55 includes/types-taxonomies.php:98 #, php-format -msgid "Permalink to %s" +msgid "All %s" msgstr "" -#: includes/sm-cmb-functions.php:57 includes/types-taxonomies.php:273 -msgid "Sermon Details" +#: includes/class-sm-post-types.php:59 includes/types-taxonomies.php:99 +#, php-format +msgid "Edit %s" msgstr "" -#: includes/sm-cmb-functions.php:86 -msgid "(optional)" +#: includes/class-sm-post-types.php:61 includes/types-taxonomies.php:100 +#, php-format +msgid "Update %s" msgstr "" -#. translators: %s date format, effectively d/m/Y or the like -#: includes/sm-cmb-functions.php:86 includes/types-taxonomies.php:302 +#: includes/class-sm-post-types.php:63 includes/types-taxonomies.php:101 #, php-format -msgid "format: %s" +msgid "Add new %s" msgstr "" -#: includes/sm-cmb-functions.php:94 includes/types-taxonomies.php:310 -msgid "" -"Select the type of service. Modify service types in Sermons → Service " -"Types." +#: includes/class-sm-post-types.php:65 +#, php-format +msgid "New %s name" msgstr "" -#: includes/sm-cmb-functions.php:101 includes/types-taxonomies.php:317 -msgid "Main Bible Passage" +#: includes/class-sm-post-types.php:67 +#, php-format +msgid "No %s found" msgstr "" -#. translators: %s see msgid "John 3:16-18", effectively John 3:16-18 -#: includes/sm-cmb-functions.php:102 includes/types-taxonomies.php:318 -#, php-format -msgid "Enter the Bible passage with the full book names, e.g. %s." +#: includes/class-sm-post-types.php:79 includes/class-sm-post-types.php:81 +#: includes/class-sm-post-types.php:82 +msgid "Series" msgstr "" -#: includes/sm-cmb-functions.php:102 includes/types-taxonomies.php:318 -msgid "John 3:16-18" +#: includes/class-sm-post-types.php:84 +msgid "Search series" msgstr "" -#: includes/sm-cmb-functions.php:108 includes/types-taxonomies.php:324 -msgid "" -"Type a brief description about this sermon, an outline, or a full manuscript" +#: includes/class-sm-post-types.php:85 +msgid "All series" msgstr "" -#: includes/sm-cmb-functions.php:116 includes/types-taxonomies.php:332 -msgid "Sermon Files" +#: includes/class-sm-post-types.php:88 +msgid "Edit series" msgstr "" -#: includes/sm-cmb-functions.php:125 includes/types-taxonomies.php:341 -msgid "Location of MP3" +#: includes/class-sm-post-types.php:89 +msgid "Update series" msgstr "" -#: includes/sm-cmb-functions.php:126 includes/types-taxonomies.php:342 -msgid "Upload an audio file or enter an URL." +#: includes/class-sm-post-types.php:90 +msgid "Add new series" msgstr "" -#: includes/sm-cmb-functions.php:134 includes/types-taxonomies.php:350 -msgid "MP3 Duration" +#: includes/class-sm-post-types.php:91 +msgid "New series name" msgstr "" -#. translators: %s see msgid "hh:mm:ss", effectively hh:mm:ss -#: includes/sm-cmb-functions.php:135 includes/types-taxonomies.php:351 -#, php-format -msgid "" -"Length in %s format (if left blank, will attempt to calculate automatically " -"when you save)" +#: includes/class-sm-post-types.php:92 +msgid "No series found" msgstr "" -#: includes/sm-cmb-functions.php:135 includes/types-taxonomies.php:351 -msgid "hh:mm:ss" +#: includes/class-sm-post-types.php:107 +msgid "Topic" msgstr "" -#: includes/sm-cmb-functions.php:140 includes/types-taxonomies.php:356 -msgid "Video Embed Code" +#: includes/class-sm-post-types.php:109 +msgid "Search topics" msgstr "" -#: includes/sm-cmb-functions.php:141 includes/types-taxonomies.php:357 -msgid "Paste your embed code for Vimeo, Youtube, or other service here" +#: includes/class-sm-post-types.php:110 +msgid "All topics" msgstr "" -#: includes/sm-cmb-functions.php:146 includes/types-taxonomies.php:362 -msgid "Video Link" +#: includes/class-sm-post-types.php:113 +msgid "Edit topic" msgstr "" -#: includes/sm-cmb-functions.php:147 includes/types-taxonomies.php:363 -msgid "Paste your link for Vimeo, Youtube, or other service here" +#: includes/class-sm-post-types.php:114 +msgid "Update topic" msgstr "" -#: includes/sm-cmb-functions.php:153 includes/types-taxonomies.php:369 -msgid "Sermon Notes" +#: includes/class-sm-post-types.php:115 +msgid "Add new topic" msgstr "" -#: includes/sm-cmb-functions.php:154 includes/sm-cmb-functions.php:163 -#: includes/types-taxonomies.php:370 includes/types-taxonomies.php:379 -msgid "Upload a pdf file or enter an URL." +#: includes/class-sm-post-types.php:116 +msgid "New topic name" msgstr "" -#: includes/sm-cmb-functions.php:162 includes/template-tags.php:371 -#: includes/template-tags.php:397 includes/types-taxonomies.php:378 -msgid "Bulletin" +#: includes/class-sm-post-types.php:117 +msgid "No topics found" msgstr "" -#: includes/sm-core-functions.php:121 -msgctxt "slug" -msgid "preacher" +#: includes/class-sm-post-types.php:129 +msgid "Books" msgstr "" -#: includes/sm-core-functions.php:122 -msgctxt "slug" -msgid "series" +#: includes/class-sm-post-types.php:131 +msgid "Bible books" msgstr "" -#: includes/sm-core-functions.php:123 -msgctxt "slug" -msgid "topics" +#: includes/class-sm-post-types.php:132 +msgid "Book" msgstr "" -#: includes/sm-core-functions.php:124 -msgctxt "slug" -msgid "book" +#: includes/class-sm-post-types.php:134 +msgid "Search books" msgstr "" -#: includes/sm-core-functions.php:125 -msgctxt "slug" -msgid "service-type" +#: includes/class-sm-post-types.php:135 +msgid "All books" msgstr "" -#: includes/sm-core-functions.php:126 -msgctxt "slug" -msgid "sermons" +#: includes/class-sm-post-types.php:138 +msgid "Edit book" msgstr "" -#. translators: %1$s see msgid "term_taxonomy_id", effectively term_taxonomy_id -#. translators: %2$s effectively -#. translators: %3$s effectively category.php -#. translators: %4$s effectively tag.php -#. translators: %5$s effectively taxonomy.php -#. translators: %6$s see msgid "template hierarchy" -#: includes/taxonomy-images/public-filters.php:385 -#, php-format -msgid "" -"%1$s is not a property of the current queried object. This usually happens " -"when the %2$s filter is used in an unsupported template file. This filter " -"has been designed to work in taxonomy archives which are traditionally " -"served by one of the following template files: %3$s, %4$s or %5$s. Learn " -"more about %6$s." +#: includes/class-sm-post-types.php:139 +msgid "Update book" msgstr "" -#: includes/taxonomy-images/public-filters.php:386 -msgid "term_taxonomy_id" +#: includes/class-sm-post-types.php:140 +msgid "Add new book" msgstr "" -#: includes/taxonomy-images/public-filters.php:391 -msgid "template hierarchy" +#: includes/class-sm-post-types.php:141 +msgid "New book name" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:130 -#, php-format -msgid "Associate with %1$s" +#: includes/class-sm-post-types.php:142 +msgid "No books found" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:130 -#: includes/taxonomy-images/taxonomy-images.php:131 -msgid "this term" +#: includes/class-sm-post-types.php:154 includes/class-sm-post-types.php:156 +msgid "Service Types" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:131 -#, php-format -msgid "Remove association with %1$s" +#: includes/class-sm-post-types.php:157 includes/types-taxonomies.php:201 +#: includes/types-taxonomies.php:202 includes/types-taxonomies.php:203 +msgid "Service Type" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:290 -msgid "Image support for taxonomies successfully updated" +#: includes/class-sm-post-types.php:159 includes/types-taxonomies.php:204 +msgid "Search service types" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:293 -msgid "Image support has been disabled for all taxonomies." +#: includes/class-sm-post-types.php:160 includes/types-taxonomies.php:206 +msgid "All service types" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:339 -msgid "Taxonomies" +#: includes/class-sm-post-types.php:163 includes/types-taxonomies.php:207 +msgid "Edit service type" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:359 -#: includes/taxonomy-images/taxonomy-images.php:360 -msgid "Taxonomy Images" +#: includes/class-sm-post-types.php:164 includes/types-taxonomies.php:208 +msgid "Update service type" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:387 -msgid "Taxonomy Images Plugin Settings" +#: includes/class-sm-post-types.php:165 +msgid "Add new service type" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:447 -msgid "Unknown error encountered" +#: includes/class-sm-post-types.php:166 +msgid "New service type name" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:529 -#: includes/taxonomy-images/taxonomy-images.php:611 -msgid "tt_id not sent" +#: includes/class-sm-post-types.php:167 +msgid "No service types found" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:537 -#: includes/taxonomy-images/taxonomy-images.php:619 -msgid "tt_id is empty" +#: includes/class-sm-post-types.php:192 includes/types-taxonomies.php:58 +#: includes/types-taxonomies.php:68 +msgid "Sermons" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:544 -#: includes/taxonomy-images/taxonomy-images.php:626 -msgid "You do not have the correct capability to manage this term" +#: includes/class-sm-post-types.php:193 includes/types-taxonomies.php:59 +msgid "Sermon" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:551 -#: includes/taxonomy-images/taxonomy-images.php:633 -msgid "No nonce included." +#: includes/class-sm-post-types.php:194 +msgid "All Sermons" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:558 -#: includes/taxonomy-images/taxonomy-images.php:640 -msgid "Nonce did not match" +#: includes/class-sm-post-types.php:196 includes/types-taxonomies.php:60 +msgid "Add New" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:565 -msgid "Image id not sent" +#: includes/class-sm-post-types.php:197 +msgid "Add new sermon" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:573 -msgid "Image id is not a positive integer" +#: includes/class-sm-post-types.php:198 views/single-wpfc_sermon.php:35 +msgid "Edit" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:582 -msgid "Image successfully associated" +#: includes/class-sm-post-types.php:199 +msgid "Edit sermon" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:588 -msgid "Association could not be created" +#: includes/class-sm-post-types.php:200 +msgid "New sermon" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:633 -msgid "No nonce included" +#: includes/class-sm-post-types.php:201 includes/class-sm-post-types.php:202 +msgid "View sermon" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:648 -msgid "Nothing to remove" +#: includes/class-sm-post-types.php:203 +msgid "Search sermon" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:657 -msgid "Association successfully removed" +#: includes/class-sm-post-types.php:204 includes/types-taxonomies.php:66 +msgid "No sermons found" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:662 -msgid "Association could not be removed" +#: includes/class-sm-post-types.php:205 +msgid "No sermons found in trash" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:739 -#: includes/taxonomy-images/taxonomy-images.php:793 -msgid "Image" +#: includes/class-sm-post-types.php:206 +msgid "Sermon image" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:786 -#: includes/taxonomy-images/taxonomy-images.php:823 -msgid "term" +#: includes/class-sm-post-types.php:207 +msgid "Set sermon image" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:797 -#, php-format -msgid "Associate an image from your media library to this %1$s." +#: includes/class-sm-post-types.php:208 +msgid "Remove sermon image" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:846 -#, php-format -msgid "Associate an image with the %1$s named “%2$s”." +#: includes/class-sm-post-types.php:209 +msgid "Use as sermon image" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:847 -#, php-format -msgid "Upload a new image for this %s." +#: includes/class-sm-post-types.php:210 +msgid "Insert to sermon" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:847 -msgid "Upload." +#: includes/class-sm-post-types.php:211 +msgid "Uploaded to this sermon" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:848 -msgid "Delete" +#: includes/class-sm-post-types.php:212 +msgid "Filter sermon" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:848 -#, php-format -msgid "Remove image from this %s." +#: includes/class-sm-post-types.php:213 +msgid "Sermon navigation" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:882 -msgid "“" +#: includes/class-sm-post-types.php:214 +msgid "Sermon list" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:883 -msgid "”" +#: includes/class-sm-post-types.php:216 +msgid "This is where you can add new sermons to your website." msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:884 -msgid "Associating …" +#: includes/helper-functions.php:193 includes/template-tags.php:129 +#: includes/template-tags.php:400 includes/template-tags.php:439 +msgid "Series: " msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:885 -msgid "Successfully Associated" +#: includes/options.php:82 +msgid "Sermon Manager Settings" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:886 -msgid "Removing …" +#: includes/options.php:82 includes/options.php:102 +msgid "Settings" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:887 -msgid "Successfully Removed" +#: includes/options.php:116 includes/taxonomy-images/taxonomy-images.php:1263 +msgid "Manage Settings" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:1162 +#: includes/options.php:495 includes/options.php:505 includes/options.php:515 +#: includes/options.php:525 includes/options.php:560 includes/options.php:608 +#: includes/options.php:621 includes/options.php:649 includes/options.php:662 #, php-format -msgid "" -"The %1$s argument for %2$s is set to %3$s which is not a registered " -"taxonomy. Please check the spelling and update the argument." +msgid "e.g. %s" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:1163 -msgid "taxonomy" +#: includes/options.php:535 +#, php-format +msgid "e.g. Copyright © %s" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:1174 +#: includes/options.php:583 #, php-format -msgid "No taxonomies have image support. %1$s" +msgid "e.g. Preaching and teaching audio from %s" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:1180 +#: includes/options.php:596 #, php-format -msgid "The %1$s taxonomy does not have image support. %2$s" +msgid "e.g. Weekly teaching audio brought to you by %s in City, State." msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:1206 -#, php-format -msgid "The %1$s has been called directly. Please use the %2$s filter instead." +#: includes/taxonomy-images/taxonomy-images.php:290 +msgid "Image support for taxonomies successfully updated" +msgstr "" + +#: includes/taxonomy-images/taxonomy-images.php:293 +msgid "Image support has been disabled for all taxonomies." msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:1243 -msgid "Donate" +#: includes/taxonomy-images/taxonomy-images.php:786 +msgid "term" msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:1302 -#: includes/taxonomy-images/taxonomy-images.php:1303 -#: includes/template-tags.php:160 includes/types-taxonomies.php:94 -#: includes/types-taxonomies.php:96 includes/types-taxonomies.php:97 -#: includes/types-taxonomies.php:98 includes/types-taxonomies.php:99 -#: includes/types-taxonomies.php:100 includes/types-taxonomies.php:101 -#: includes/types-taxonomies.php:102 includes/types-taxonomies.php:103 -#: includes/types-taxonomies.php:104 includes/types-taxonomies.php:105 -msgid "Preacher" +#: includes/taxonomy-images/taxonomy-images.php:846 +#, php-format +msgid "Associate an image with the %1$s named “%2$s”." msgstr "" -#. translators: %s see msgid "Preacher" -#: includes/taxonomy-images/taxonomy-images.php:1302 -#: includes/taxonomy-images/taxonomy-images.php:1303 +#: includes/taxonomy-images/taxonomy-images.php:847 #, php-format -msgid "Set %s’s image" +msgid "Upload a new image for this %s." msgstr "" -#: includes/taxonomy-images/taxonomy-images.php:1304 -#: includes/taxonomy-images/taxonomy-images.php:1305 -msgid "Set Series image" +#: includes/taxonomy-images/taxonomy-images.php:848 +#, php-format +msgid "Remove image from this %s." msgstr "" #: includes/template-tags.php:127 includes/template-tags.php:398 -#: includes/template-tags.php:424 includes/template-tags.php:437 -#: includes/template-tags.php:463 includes/widgets.php:96 +#: includes/template-tags.php:437 includes/widgets.php:96 msgid "Bible Text: " msgstr "" @@ -1374,19 +405,23 @@ msgstr "" msgid "Filter by Book" msgstr "" -#: includes/template-tags.php:363 includes/template-tags.php:389 +#: includes/template-tags.php:363 msgid "Download Files" msgstr "" -#: includes/template-tags.php:365 includes/template-tags.php:391 +#: includes/template-tags.php:365 msgid "MP3" msgstr "" -#: includes/template-tags.php:368 includes/template-tags.php:394 +#: includes/template-tags.php:368 msgid "Notes" msgstr "" -#: includes/template-tags.php:413 includes/template-tags.php:439 +#: includes/template-tags.php:371 +msgid "Bulletin" +msgstr "" + +#: includes/template-tags.php:413 msgid "Sermon Topics: " msgstr "" @@ -1420,6 +455,13 @@ msgstr "" msgid "Preachers" msgstr "" +#: includes/types-taxonomies.php:94 includes/types-taxonomies.php:96 +#: includes/types-taxonomies.php:97 includes/types-taxonomies.php:99 +#: includes/types-taxonomies.php:100 includes/types-taxonomies.php:101 +#: includes/types-taxonomies.php:102 includes/types-taxonomies.php:104 +msgid "Preacher" +msgstr "" + #: includes/types-taxonomies.php:97 #, php-format msgid "Most frequent %s" @@ -1607,44 +649,6 @@ msgstr "" msgid "Add File" msgstr "" -#: includes/vendor/abstract-wp-rest-controller.php:29 -#, php-format -msgid "The %s method must be overridden." -msgstr "" - -#: includes/vendor/abstract-wp-rest-controller.php:41 -#: includes/vendor/abstract-wp-rest-controller.php:53 -#: includes/vendor/abstract-wp-rest-controller.php:65 -#: includes/vendor/abstract-wp-rest-controller.php:77 -#: includes/vendor/abstract-wp-rest-controller.php:89 -#: includes/vendor/abstract-wp-rest-controller.php:101 -#: includes/vendor/abstract-wp-rest-controller.php:113 -#: includes/vendor/abstract-wp-rest-controller.php:125 -#: includes/vendor/abstract-wp-rest-controller.php:137 -#: includes/vendor/abstract-wp-rest-controller.php:149 -#: includes/vendor/abstract-wp-rest-controller.php:161 -#: includes/vendor/abstract-wp-rest-controller.php:174 -#, php-format -msgid "Method %s not implemented. Must be overridden in subclass." -msgstr "" - -#: includes/vendor/abstract-wp-rest-controller.php:287 -msgid "Current page of the collection." -msgstr "" - -#: includes/vendor/abstract-wp-rest-controller.php:295 -msgid "Maximum number of items to be returned in result set." -msgstr "" - -#: includes/vendor/abstract-wp-rest-controller.php:304 -msgid "Limit results to those matching a string." -msgstr "" - -#: includes/vendor/abstract-wp-rest-controller.php:324 -msgid "" -"Scope under which the request is made; determines fields present in response." -msgstr "" - #: includes/widgets.php:12 msgid "The most recent sermons on your site" msgstr "" @@ -1661,158 +665,9 @@ msgstr "" msgid "Number of sermons to show:" msgstr "" -#. translators: plugin header field "Plugin Name" -#: sermons.php:3 -msgid "Sermon Manager for WordPress" -msgstr "" - -#. translators: plugin header field "Description" -#: sermons.php:5 -msgid "Add audio and video sermons, manage speakers, series, and more." -msgstr "" - -#. translators: %s see msgid "←", effectively -#: views/archive-wpfc_sermon.php:18 views/archive-wpfc_sermon.php:70 -#: views/archive-wpfc_sermon.php:71 -#, php-format -msgid "%s Older sermons" -msgstr "" - -#: views/archive-wpfc_sermon.php:18 views/archive-wpfc_sermon.php:70 -#: views/taxonomy-wpfc_bible_book.php:36 views/taxonomy-wpfc_bible_book.php:99 -#: views/taxonomy-wpfc_preacher.php:42 views/taxonomy-wpfc_preacher.php:105 -#: views/taxonomy-wpfc_sermon_series.php:43 -#: views/taxonomy-wpfc_sermon_series.php:106 -#: views/taxonomy-wpfc_sermon_topics.php:43 -#: views/taxonomy-wpfc_sermon_topics.php:106 -#: views/taxonomy-wpfc_service_type.php:36 -#: views/taxonomy-wpfc_service_type.php:99 -msgid "←" -msgstr "" - -#: views/archive-wpfc_sermon.php:21 views/archive-wpfc_sermon.php:73 -#: views/taxonomy-wpfc_bible_book.php:38 -#: views/taxonomy-wpfc_bible_book.php:101 views/taxonomy-wpfc_preacher.php:44 -#: views/taxonomy-wpfc_preacher.php:107 -#: views/taxonomy-wpfc_sermon_series.php:52 -#: views/taxonomy-wpfc_sermon_series.php:108 -#: views/taxonomy-wpfc_sermon_topics.php:45 -#: views/taxonomy-wpfc_service_type.php:20 -#: views/taxonomy-wpfc_service_type.php:38 -#: views/taxonomy-wpfc_service_type.php:101 -msgid "→" -msgstr "" - -#. translators: %s see msgid "→", effectively -#: views/archive-wpfc_sermon.php:21 views/archive-wpfc_sermon.php:73 -#: views/archive-wpfc_sermon.php:74 -#, php-format -msgid "Newer sermons %s" -msgstr "" - -#: views/archive-wpfc_sermon.php:28 views/taxonomy-wpfc_bible_book.php:45 -#: views/taxonomy-wpfc_preacher.php:51 -#: views/taxonomy-wpfc_sermon_series.php:52 -#: views/taxonomy-wpfc_sermon_topics.php:52 -#: views/taxonomy-wpfc_service_type.php:45 -msgid "Not Found" -msgstr "" - -#: views/archive-wpfc_sermon.php:30 views/taxonomy-wpfc_bible_book.php:47 -#: views/taxonomy-wpfc_preacher.php:53 -#: views/taxonomy-wpfc_sermon_series.php:54 -#: views/taxonomy-wpfc_sermon_topics.php:54 -#: views/taxonomy-wpfc_service_type.php:47 -msgid "Apologies, but no sermons were found." -msgstr "" - -#. translators: %s date -#: views/archive-wpfc_sermon.php:47 views/taxonomy-wpfc_bible_book.php:77 -#: views/taxonomy-wpfc_preacher.php:83 -#: views/taxonomy-wpfc_sermon_series.php:84 -#: views/taxonomy-wpfc_sermon_topics.php:84 -#: views/taxonomy-wpfc_service_type.php:77 -#, php-format -msgid "Preached on %s" -msgstr "" - -#: views/archive-wpfc_sermon.php:59 views/archive-wpfc_sermon.php:60 -#: views/taxonomy-wpfc_bible_book.php:88 views/taxonomy-wpfc_preacher.php:94 -#: views/taxonomy-wpfc_sermon_series.php:95 -#: views/taxonomy-wpfc_sermon_topics.php:95 -#: views/taxonomy-wpfc_service_type.php:88 -#, php-format -msgid "%s comment" -msgid_plural "%s comments" -msgstr[0] "%s comment" -msgstr[1] "%s comments" - -#: views/archive-wpfc_sermon.php:59 views/archive-wpfc_sermon.php:60 -#: views/taxonomy-wpfc_bible_book.php:88 views/taxonomy-wpfc_preacher.php:94 -#: views/taxonomy-wpfc_sermon_series.php:95 -#: views/taxonomy-wpfc_sermon_topics.php:95 -#: views/taxonomy-wpfc_service_type.php:88 -msgid "Leave a comment" -msgstr "" - -#: views/single-wpfc_sermon.php:42 -msgctxt "Previous post link" -msgid "←" -msgstr "" - -#: views/single-wpfc_sermon.php:44 -msgctxt "Next post link" -msgid "→" -msgstr "" - -#: views/taxonomy-wpfc_bible_book.php:20 -#, php-format -msgid "Sermons by Book: %s" -msgstr "" - -#. translators: %s see msgid "←", effectively -#: views/taxonomy-wpfc_bible_book.php:36 views/taxonomy-wpfc_bible_book.php:99 -#: views/taxonomy-wpfc_preacher.php:42 views/taxonomy-wpfc_preacher.php:105 -#: views/taxonomy-wpfc_sermon_series.php:43 -#: views/taxonomy-wpfc_sermon_series.php:106 -#: views/taxonomy-wpfc_sermon_topics.php:43 -#: views/taxonomy-wpfc_sermon_topics.php:106 -#: views/taxonomy-wpfc_service_type.php:36 -#: views/taxonomy-wpfc_service_type.php:99 -#, php-format -msgid "%s Older posts" -msgstr "" - -#. translators: %s see msgid "→", effectively -#: views/taxonomy-wpfc_bible_book.php:38 -#: views/taxonomy-wpfc_bible_book.php:101 views/taxonomy-wpfc_preacher.php:44 -#: views/taxonomy-wpfc_preacher.php:107 -#: views/taxonomy-wpfc_sermon_series.php:45 -#: views/taxonomy-wpfc_sermon_series.php:108 -#: views/taxonomy-wpfc_sermon_topics.php:45 -#: views/taxonomy-wpfc_sermon_topics.php:108 -#: views/taxonomy-wpfc_service_type.php:38 -#: views/taxonomy-wpfc_service_type.php:101 -#, php-format -msgid "Newer posts %s" -msgstr "" - -#: views/taxonomy-wpfc_preacher.php:20 -#, php-format -msgid "Sermons by: %s" -msgstr "" - -#: views/taxonomy-wpfc_sermon_series.php:20 -#, php-format -msgid "Sermons Series: %s" -msgstr "" - -#: views/taxonomy-wpfc_sermon_topics.php:20 +#: sermons.php:30 #, php-format -msgid "Sermons Topic: %s" -msgstr "" - -#: views/taxonomy-wpfc_service_type.php:20 -#, php-format -msgid "Sermons By Service: %s" +msgid "" +"You are running PHP %s, but Sermon Manager requires at " +"least PHP %s." msgstr "" diff --git a/languages/sermon-manager-pl_PL.mo b/languages/sermon-manager-pl_PL.mo deleted file mode 100644 index d60695a572f23dca39586e8aa4cfcbc46c248407..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25211 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 gn})t{k98=j?h4?ex*M%7uucRhUKBsK&lAD_0|! Date: Tue, 3 Oct 2017 09:40:54 +0200 Subject: [PATCH 17/27] Update changelog --- readme.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 2ed5913..9a6f6a3 100755 --- a/readme.txt +++ b/readme.txt @@ -95,7 +95,8 @@ Visit the [plugin homepage](https://wpforchurch.com/wordpress-plugins/sermon-man ## Changelog ## ### 2.8 ### * Sermon Manager now supports PHP 5.5, 5.4 and 5.3, but we still recommend to use at least PHP 5.6 -* Changed: Show all options in filtering dropdown - even if they don't have associated sermon +* Modified: Show all options in filtering dropdown - even if they don't have associated sermon +* Modified: All language strings rewritten (huge thanks to @GITNE) * Fix styles not loading when "[sermons]" shortcode is used without filters * Fix image_size not working in "[sermons]" shortcode * Fix compatibility with PHP 5.3 From 32083d45dd5ba42dc2a57259117983f44df8607f Mon Sep 17 00:00:00 2001 From: Nikola Date: Tue, 3 Oct 2017 10:28:17 +0200 Subject: [PATCH 18/27] Render sermon content in "post_content" Closes #116 --- includes/class-sm-search.php | 85 ------------------------------------ includes/template-tags.php | 21 ++++++--- readme.txt | 1 + sermons.php | 23 +++++++++- views/single-wpfc_sermon.php | 55 +++++++++-------------- 5 files changed, 58 insertions(+), 127 deletions(-) delete mode 100644 includes/class-sm-search.php diff --git a/includes/class-sm-search.php b/includes/class-sm-search.php deleted file mode 100644 index 4430c70..0000000 --- a/includes/class-sm-search.php +++ /dev/null @@ -1,85 +0,0 @@ -posts}.post_status = 'publish')"; - } - - return $where; - } - - /** - * Include taxonomies to default search - * - * @global $wpdb - * - * @param string $join - * - * @return string - */ - public function join( $join ) { - global $wpdb; - - if ( is_search() ) { - $join .= "LEFT JOIN {$wpdb->term_relationships} tr ON {$wpdb->posts}.ID = tr.object_id INNER JOIN {$wpdb->term_taxonomy} tt ON tt.term_taxonomy_id=tr.term_taxonomy_id INNER JOIN {$wpdb->terms} t ON t.term_id = tt.term_id"; - } - - return $join; - } - - /** - * - * @global $wpdb - * - * @param int $groupby - * - * @return string - */ - public function groupby( $groupby ) { - global $wpdb; - - // we need to group on post ID - $groupby_id = "{$wpdb->posts}.ID"; - if ( ! is_search() || strpos( $groupby, $groupby_id ) !== false ) { - return $groupby; - } - // groupby was empty, use ours - if ( ! strlen( trim( $groupby ) ) ) { - return $groupby_id; - } - - // wasn't empty, append ours - return $groupby . ", " . $groupby_id; - } -} - -$search = new SM_Search; -$search->hook(); diff --git a/includes/template-tags.php b/includes/template-tags.php index 9bcf71c..ab1dcbe 100755 --- a/includes/template-tags.php +++ b/includes/template-tags.php @@ -17,8 +17,6 @@ add_action( 'sermon_audio', 'wpfc_sermon_audio', 5 ); add_action( 'sermon_single', 'wpfc_sermon_single' ); add_action( 'sermon_excerpt', 'wpfc_sermon_excerpt' ); -// Add sermon content -add_filter( 'the_content', 'add_wpfc_sermon_content' ); // Include template for displaying sermons function sermon_template_include( $template ) { @@ -186,9 +184,9 @@ function render_wpfc_sorting( $args = array() ) { title="" id="" onchange="if(this.options[this.selectedIndex].value !== ''){return this.form.submit()}else{window.location = '';}" - > + > - +