From 984c3e7efdc1f19375ed3500f0ec09110a12bc21 Mon Sep 17 00:00:00 2001 From: Timo Janssen Date: Tue, 20 Aug 2019 11:50:55 +0200 Subject: [PATCH 1/9] bugfix/typo --- includes/checkout.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/checkout.php b/includes/checkout.php index cd36303..c7723ec 100644 --- a/includes/checkout.php +++ b/includes/checkout.php @@ -5,7 +5,7 @@ add_action('wp_enqueue_scripts', 'wcwp_callback_for_setting_up_scripts'); // add_action('woocommerce_review_order_before_submit', 'parcelshop_html'); -add_action('woocommerce_review_order_after_submit', 'parcelshop_html'); +add_action('woocommerce_review_order_after_submit', 'wcwp_parcelshop_html'); function wcwp_callback_for_setting_up_scripts() { if ( class_exists('WC_wuunder_parcelshop' ) ) { From 66c4710fa1024cfdb334093d70089091d674c315 Mon Sep 17 00:00:00 2001 From: TimD <45198517+Mittows@users.noreply.github.com> Date: Fri, 30 Aug 2019 12:12:45 +0200 Subject: [PATCH 2/9] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c391388..2e1a62e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). ## Un-released +### Fix + +- Code styling and typo fixes + ## 2019-08-20 ### Fix From 3a2b571542d2e8d1db7320066c6a088a946d1a06 Mon Sep 17 00:00:00 2001 From: Timo Janssen Date: Fri, 30 Aug 2019 12:14:04 +0200 Subject: [PATCH 3/9] Verrsioning --- includes/wcwuunder-create.php | 2 +- woocommerce-wuunder.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/wcwuunder-create.php b/includes/wcwuunder-create.php index ecfa1b5..7d96324 100644 --- a/includes/wcwuunder-create.php +++ b/includes/wcwuunder-create.php @@ -12,7 +12,7 @@ public function __construct() { $this->version_obj = array( 'product' => 'Woocommerce extension', 'version' => array( - 'build' => '2.6.3', + 'build' => '2.7.1', 'plugin' => '2.0' ), 'platform' => array( 'name' => 'Woocommerce', diff --git a/woocommerce-wuunder.php b/woocommerce-wuunder.php index 6696d47..eb5ce3e 100644 --- a/woocommerce-wuunder.php +++ b/woocommerce-wuunder.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Wuunder * Plugin URI: https://wearewuunder.com/wuunder-voor-webshops/ * Description: Wuunder shipping plugin - * Version: 2.6.3 + * Version: 2.7.1 * Author: Wuunder * Author URI: http://wearewuunder.com */ @@ -57,7 +57,7 @@ class Woocommerce_Wuunder { public static $plugin_path; public static $plugin_basename; - const VERSION = '2.6.3'; + const VERSION = '2.7.1'; public function __construct() { From d728e09c01b2237942ec89d5f9dd16f45c49e6e3 Mon Sep 17 00:00:00 2001 From: Timo Janssen Date: Tue, 10 Sep 2019 10:12:36 +0200 Subject: [PATCH 4/9] Fixed saving setting in WC >= 3.7.0 --- includes/wcwuunder-settings.php | 7 ++++++- woocommerce-wuunder.php | 4 ++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/includes/wcwuunder-settings.php b/includes/wcwuunder-settings.php index e9c24ce..ebd44f2 100644 --- a/includes/wcwuunder-settings.php +++ b/includes/wcwuunder-settings.php @@ -10,8 +10,13 @@ public function __construct() { // Add setting tab "Reatiler" on woocommerce settings page add_filter( 'woocommerce_settings_tabs_array', array( &$this, 'wcwp_add_settings_tab' ), 50 ); add_action( 'woocommerce_settings_tabs_wuunder', array( &$this, 'wcwp_settings_tab' ) ); - add_action( 'woocommerce_update_options_wuunder', array(&$this, 'wcwp_update_settings' ) ); + if ( version_compare( WC_VERSION, '3.7', '<' )) { + add_action('woocommerce_update_options_wuunder', array(&$this, 'wcwp_update_settings')); + } + } + public static function wcwp_save_action_for_update_settings() { + add_action( 'woocommerce_update_options_wuunder', array(WC_Wuunder_Settings::class,'wcwp_update_settings' )); } public static function wcwp_add_settings_tab($settings_tabs ) { diff --git a/woocommerce-wuunder.php b/woocommerce-wuunder.php index eb5ce3e..b5c7592 100644 --- a/woocommerce-wuunder.php +++ b/woocommerce-wuunder.php @@ -69,6 +69,7 @@ public function __construct() { require_once( WCWP_PLUGIN_ADMIN_DIR . '/wcwuunder-admin.php' ); include_once( 'includes/parcelshop.php' ); + include_once( 'includes/wcwuunder-settings.php' ); include_once( 'includes/wcwuunder-shipping-method.php' ); include_once( 'includes/checkout.php' ); include_once( 'includes/wcwuunder-DPD-standard-shipping.php' ); @@ -85,6 +86,9 @@ public function __construct() { exit; } } ); + if ( version_compare( WC_VERSION, '3.7', '>=' )) { + add_action( 'wp_loaded', array(WC_Wuunder_Settings::class, 'wcwp_save_action_for_update_settings' ) ); + } // add_action('load-edit.php', array( &$this, 'webhook' ) ); } From 12ff3a62c7f169a4c8d6523171692c8917d60f4e Mon Sep 17 00:00:00 2001 From: Timo Janssen Date: Mon, 16 Sep 2019 13:00:37 +0200 Subject: [PATCH 5/9] bugfix checkout fields --- assets/css/wuunder-checkout.css | 12 ++++++++---- includes/checkout.php | 13 ++++++++----- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/assets/css/wuunder-checkout.css b/assets/css/wuunder-checkout.css index 79ce41f..39de321 100644 --- a/assets/css/wuunder-checkout.css +++ b/assets/css/wuunder-checkout.css @@ -2,12 +2,16 @@ .woocommerce-page form .form-row-quart, .woocommerce form .form-row-quart-first, .woocommerce-page form .form-row-quart-first { - float: left; - width: 22%; - overflow: visible; + float: left; + width: 22%; + overflow: visible; } .woocommerce-page form .form-row-quart-first, .woocommerce form .form-row-quart-first { - + +} + +.wuunder-hidden-checkout-field { + display: none; } \ No newline at end of file diff --git a/includes/checkout.php b/includes/checkout.php index c7723ec..952e7b7 100644 --- a/includes/checkout.php +++ b/includes/checkout.php @@ -9,11 +9,14 @@ function wcwp_callback_for_setting_up_scripts() { if ( class_exists('WC_wuunder_parcelshop' ) ) { - $style_file = dirname ( plugin_dir_url( __FILE__ ) ) . '/assets/css/parcelshop.css'; + $style_file_parcelshop_locator = dirname ( plugin_dir_url( __FILE__ ) ) . '/assets/css/parcelshop.css'; + $style_file_checkout_fields = dirname ( plugin_dir_url( __FILE__ ) ) . '/assets/css/wuunder-checkout.css'; $google_api_key = get_option( 'wc_wuunder_google_maps_api_key' ); $script_file = '//maps.googleapis.com/maps/api/js?key=' . $google_api_key; - wp_register_style( 'wuunderCSS', $style_file ); - wp_enqueue_style( 'wuunderCSS' ); + wp_register_style( 'wuunderCSSParcelshopLocator', $style_file_parcelshop_locator ); + wp_enqueue_style( 'wuunderCSSParcelshopLocator' ); + wp_register_style( 'wuunderCSSCheckout', $style_file_checkout_fields ); + wp_enqueue_style( 'wuunderCSSCheckout' ); wp_register_script( 'googleMapsJS', $script_file ); wp_enqueue_script( 'googleMapsJS' ); @@ -53,14 +56,14 @@ function wcwp_add_parcelshop_id_field($checkout ) { woocommerce_form_field('parcelshop_id', array( 'type' => 'text', 'class' => array( - 'my-field-class form-row-wide' + 'wuunder-hidden-checkout-field form-row-wide' ), ), $checkout->get_value( 'parcelshop_id' ) ); woocommerce_form_field('parcelshop_country', array( 'type' => 'text', 'class' => array( - 'my-field-class form-row-wide' + 'wuunder-hidden-checkout-field form-row-wide' ), ), $checkout->get_value( 'parcelshop_country' ) ); } From 555de8498daa31916bda10fc2cc748330d6403bd Mon Sep 17 00:00:00 2001 From: Timo Janssen Date: Wed, 18 Sep 2019 13:24:35 +0200 Subject: [PATCH 6/9] added translation files, removed composer.lock --- .gitignore | 1 + assets/js/parcelshop.js | 11 +- composer.lock | 77 - includes/checkout.php | 5 +- lang/de_DE.mo | Bin 0 -> 532 bytes lang/de_DE.po | 22 + lang/es_ES.mo | Bin 0 -> 542 bytes lang/es_ES.po | 22 + lang/fr_FR.mo | Bin 0 -> 519 bytes lang/fr_FR.po | 22 + lang/nl_NL.mo | Bin 157799 -> 520 bytes lang/nl_NL.po | 8228 +-------------------------------------- lang/pt_PT.mo | Bin 0 -> 521 bytes lang/pt_PT.po | 22 + 14 files changed, 111 insertions(+), 8299 deletions(-) delete mode 100644 composer.lock create mode 100644 lang/de_DE.mo create mode 100644 lang/de_DE.po create mode 100644 lang/es_ES.mo create mode 100644 lang/es_ES.po create mode 100644 lang/fr_FR.mo create mode 100644 lang/fr_FR.po create mode 100644 lang/pt_PT.mo create mode 100644 lang/pt_PT.po diff --git a/.gitignore b/.gitignore index d66edda..2e3beb6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .idea .DS_Store vendor +composer.lock \ No newline at end of file diff --git a/assets/js/parcelshop.js b/assets/js/parcelshop.js index 7e18f63..142ef7f 100644 --- a/assets/js/parcelshop.js +++ b/assets/js/parcelshop.js @@ -9,10 +9,15 @@ var baseUrl; var baseUrlApi; var availableCarrierList; -function initParcelshopLocator(url, apiUrl, carrierList) { +var chooseParcelshopText; +var chosenParcelshopText; + +function initParcelshopLocator(url, apiUrl, carrierList, chooseParcelshopTxt, chosenParcelshopTxt) { baseUrl = url; baseUrlApi = apiUrl; availableCarrierList = carrierList; + chooseParcelshopText = chooseParcelshopTxt; + chosenParcelshopText = chosenParcelshopTxt; if (parcelshopShippingMethodElem) { parcelshopShippingMethodElem.onchange = _onShippingMethodChange; @@ -24,7 +29,7 @@ function _onShippingMethodChange() { if (parcelshopShippingMethodElem.checked) { var container = document.createElement('tr'); container.className += "chooseParcelshop"; - container.innerHTML = ''; + container.innerHTML = ''; // window.parent.document.getElementsByClassName('shipping')[0].appendChild(container); window.parent.document.getElementsByClassName('woocommerce-shipping-totals')[0].parentNode.insertBefore(container, window.parent.document.getElementsByClassName('woocommerce-shipping-totals shipping')[0].nextSibling); @@ -44,7 +49,7 @@ function _printParcelshopAddress() { } var currentParcelshop = document.createElement('div'); currentParcelshop.className += 'parcelshopInfo'; - currentParcelshop.innerHTML = '
Ophalen in parcelshop:
' + parcelshopAddress; + currentParcelshop.innerHTML = '
' + chosenParcelshopText + ':
' + parcelshopAddress; window.parent.document.getElementById('parcelshopsSelectedContainer').appendChild(currentParcelshop); window.parent.document.getElementById('parcelshop_country').value = rawParcelshopAddress.address.alpha2; } diff --git a/composer.lock b/composer.lock deleted file mode 100644 index 1533cbc..0000000 --- a/composer.lock +++ /dev/null @@ -1,77 +0,0 @@ -{ - "_readme": [ - "This file locks the dependencies of your project to a known state", - "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", - "This file is @generated automatically" - ], - "content-hash": "34977d181e57965c91f781db48d48d74", - "packages": [ - { - "name": "wuunder/connector-php", - "version": "1.0.15", - "source": { - "type": "git", - "url": "https://github.com/wuunder/connector-php.git", - "reference": "cdcfb58e303dcf53a4506e768a5f24f349b82209" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/wuunder/connector-php/zipball/cdcfb58e303dcf53a4506e768a5f24f349b82209", - "reference": "cdcfb58e303dcf53a4506e768a5f24f349b82209", - "shasum": "" - }, - "archive": { - "exclude": [ - "tests/", - "build/", - "/.travis.yml", - "/build.xml", - "phpunit.xml.dist", - "libphonenumber-for-php.spec", - "/.styleci.yml" - ] - }, - "require": { - "php": ">=5.3.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "Wuunder\\": "src/Wuunder" - } - }, - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Wuunder", - "email": "info@wearewuunder.com", - "homepage": "https://wearewuunder.com/" - } - ], - "description": "PHP connector for Wuunder API's", - "homepage": "https://github.com/wuunder/connector-php", - "keywords": [ - "api", - "connector", - "parcelshop", - "php", - "wuunder" - ], - "support": { - "source": "https://github.com/wuunder/connector-php", - "issues": "https://github.com/wuunder/connector-php/issues" - }, - "time": "2018-08-02T07:33:54+00:00" - } - ], - "packages-dev": [], - "aliases": [], - "minimum-stability": "stable", - "stability-flags": [], - "prefer-stable": false, - "prefer-lowest": false, - "platform": [], - "platform-dev": [] -} diff --git a/includes/checkout.php b/includes/checkout.php index 952e7b7..fe88652 100644 --- a/includes/checkout.php +++ b/includes/checkout.php @@ -42,10 +42,13 @@ function wcwp_parcelshop_html() $availableCarriers = implode(',', array_keys($defaultCarrierConfig)); } + $chooseParcelshopText = __('Click here to select a parcelshop'); + $chosenParcelshopText = __('Pickup in parcelshop'); + echo << EOT; } diff --git a/lang/de_DE.mo b/lang/de_DE.mo new file mode 100644 index 0000000000000000000000000000000000000000..6b51e5caf1c23a5fef6f4e79f8e649530af16f5c GIT binary patch literal 532 zcmY+A%}&EG49CmYrAGue4(0}el(ySpblL%J10gn1!9d&~bY=~tNtL90U3ms19)LID z$}{jN2zN+KSoy_{^^axyYkBe2BU>QWh$gW_42asUh;@P!E5r-YnDe|h@)7Y#@hbUm z@^q#)Pj_8!YF#O^JIK)>I1LshW)3)%++-+iu1hZ^K~;iK|B}b-1n-3vTCpB?m_Qsx zyDZ#gQ469*5;nHNI1K&a;jqun(bU2Oq9F9US~*mXjh;&SOJr-(`KWRZ}qe5$JCx@_6PDv<{h_KSM>a7g+;B0Yr&F&h7GtYp; zOXMkXbg!H; zS`5&Wgfvc0MSLof4kRrZw~pg9j>GY2JQTmlt`j9BQ5^P-_N2X-KGgim)54$B6)N3@ ze1_JM@BNydiOw$1qINfA#Zc#_P`Z@RxmG^Rs>Wg^&WxQq3A*06u9tRUD|;FadysU) zKjH^zvgnPKkQpkJhcrr~R+w4ykH;0GV%Oq;?x`~MoLhvWcGQj*-^1*3D*Bet@1_ke z(D4lG-l}b7j_9(%lEjp7F5%6WK<@AGXBeDgiIDTY0q>gCa=lL6ZanA0Xra*vUXd;k X3gYX#hCJET5`zilrc@lKcfaroDr1{* literal 0 HcmV?d00001 diff --git a/lang/es_ES.po b/lang/es_ES.po new file mode 100644 index 0000000..a9f6fa5 --- /dev/null +++ b/lang/es_ES.po @@ -0,0 +1,22 @@ +# Translation of Development (4.4.x) in Dutch +# This file is distributed under the same license as the Development (4.4.x) package. +msgid "" +msgstr "" +"PO-Revision-Date: 2019-09-18 13:03+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Poedit 2.2.3\n" +"Project-Id-Version: Development (4.4.x)\n" +"POT-Creation-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: es_ES\n" + +#: wp-includes/rest-api/class-wp-rest-request.php:850 +msgid "Click here to select a parcelshop" +msgstr "Haga clic aquí para seleccionar una tienda de paquetería" + +msgid "Pickup in parcelshop" +msgstr "Recogida en parcelshop" \ No newline at end of file diff --git a/lang/fr_FR.mo b/lang/fr_FR.mo new file mode 100644 index 0000000000000000000000000000000000000000..a675c5ba25e13639c6ef97bc7e702750133c386d GIT binary patch literal 519 zcmY+A%}&EG49CmYrN@aQ2Xg|1Qu?vO=+x8L5Ynbq(?HxHbY=@=Nl8)!TzLj0UV-P} z$}{j3JOJ(xO#GE!>{yOv`?InB;*r*fEuu+m5PhQ7C9zF#Vv~3#k`>Q;CA&j>kl!Ht zMV8J&t8~}(7V1b*+`J-vHvG7mg6#~Vwtvo!QK8{Z zn-p@56X75Z;vn&Jqi<+jb~0JEc!c*TbvdUNVYeAHgNHpoAC6haAa~1Y{XVxeL*1MF zsZ0?yt@sq#82LPfzjq4P=At+9JzDi$g-;*~0i~`C*!Q=3-BgwOgGxc6rLf+J&$+c! I3Gg@c4HKo4g8%>k literal 0 HcmV?d00001 diff --git a/lang/fr_FR.po b/lang/fr_FR.po new file mode 100644 index 0000000..29ee324 --- /dev/null +++ b/lang/fr_FR.po @@ -0,0 +1,22 @@ +# Translation of Development (4.4.x) in Dutch +# This file is distributed under the same license as the Development (4.4.x) package. +msgid "" +msgstr "" +"PO-Revision-Date: 2019-09-18 13:03+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Poedit 2.2.3\n" +"Project-Id-Version: Development (4.4.x)\n" +"POT-Creation-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: fr_FR\n" + +#: wp-includes/rest-api/class-wp-rest-request.php:850 +msgid "Click here to select a parcelshop" +msgstr "Cliquez ici pour sélectionner un colis" + +msgid "Pickup in parcelshop" +msgstr "Ramassage en colis" \ No newline at end of file diff --git a/lang/nl_NL.mo b/lang/nl_NL.mo index ae8bd4de0bee7a2e34427b358353e45088300074..0437c0be45751710c657e83cbd6e9af810bcfb0d 100644 GIT binary patch delta 352 zcmYk1y-ve06onlK0~Hg3jo~tMK*&{o7-$BTG9VF=2xSK=Ts2l*J91nkx^!Uaj!;?p zMhrXwD?3lXO(fJF`SY>QwXN%)ul=RJ_&)UC8EKa|AufnLA|+Zq5~qY9j)+$x_89vh z?-QT2J|_Pqr_pJL=Jvf#BPGiTRA>>Lfd&U-0lw?!bIX6HOuNsC@OCH I_uCKr0kMr+&;S4c literal 157799 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: Sorry, that username is not allowed." -msgstr "FOUT: Helaas, deze gebruikersnaam is niet toegestaan." +msgid "Click here to select a parcelshop" +msgstr "Klik hier om een parcelshop te kiezen" -#: wp-includes/rest-api/class-wp-rest-request.php:850 -msgid "Invalid parameter." -msgstr "Ongeldige parameter." - -#. translators: %s: menu name -#: wp-includes/customize/class-wp-customize-nav-menu-control.php:76 -msgctxt "menu location" -msgid "(Current: %s)" -msgstr "(Huidige: %s)" - -#. translators: %s: menu location slug -#: wp-includes/class-wp-customize-nav-menus.php:340 -msgctxt "menu" -msgid "(Currently set to: %s)" -msgstr "(Huidige ingesteld op: %s)" - -#: wp-includes/ms-load.php:310 -msgid "https://codex.wordpress.org/Debugging_a_WordPress_Network" -msgstr "https://codex.wordpress.org/Debugging_a_WordPress_Network" - -#. translators: %s: Codex URL -#: wp-includes/ms-load.php:309 -msgid "Read the bug report page. Some of the guidelines there may help you figure out what went wrong." -msgstr "Lees het bevindingenrapport. Sommige instructies kunnen helpen bepalen wat er fout is gegaan." - -#: wp-includes/functions.php:3785 -msgid "https://codex.wordpress.org/Debugging_in_WordPress" -msgstr "https://codex.wordpress.org/Debugging_in_WordPress" - -#. translators: %s: Codex URL -#: wp-includes/functions.php:3784 -msgid "Please see Debugging in WordPress for more information." -msgstr "Lees alles over foutopsporing in WordPress voor meer informatie." - -#. translators: 1: $table_prefix 2: wp-config.php -#: wp-includes/load.php:402 -msgid "ERROR: %1$s in %2$s can only contain numbers, letters, and underscores." -msgstr "FOUT: %1$s in %2$s mag alleen cijfers, letters en underscores bevatten." - -#: wp-includes/script-loader.php:571 -msgid "Changes saved." -msgstr "Wijzigingen bewaard." - -#: wp-load.php:83 -msgid "https://codex.wordpress.org/Editing_wp-config.php" -msgstr "https://codex.wordpress.org/Editing_wp-config.php" - -#. translators: %s: Codex URL -#: wp-load.php:82 -msgid "Need more help? We got it." -msgstr "Hulp nodig? Wij kunnen helpen." - -#. translators: %s: wp-config.php -#: wp-load.php:77 -msgid "There doesn't seem to be a %s file. I need this before we can get started." -msgstr "Er werd geen %s bestand gevonden. WordPress heeft dit bestand nodig voordat er gestart kan worden." - -#. translators: %s: WP_User->ID -#: wp-includes/class-wp-user.php:275 wp-includes/class-wp-user.php:305 -#: wp-includes/class-wp-user.php:344 wp-includes/class-wp-user.php:368 -msgid "Use %s instead." -msgstr "In plaats daarvan %s gebruiken." - -#. translators: %s: get_the_author() -#. translators: %s: get_trackback_url() -#: wp-includes/author-template.php:66 wp-includes/comment-template.php:1097 -msgid "Use %s instead if you do not want the value echoed." -msgstr "Gebruik %s indien je de waarde niet wilt laten weergeven." - -#: wp-includes/class-wp-term.php:166 -msgid "Term ID is shared between multiple taxonomies" -msgstr "Term ID is gedeeld met meerdere taxonomieën." - -#. translators: month name, genitive -#: wp-includes/locale.php:158 -msgctxt "genitive" -msgid "June" -msgstr "Juni" - -#. translators: month name, genitive -#: wp-includes/locale.php:159 -msgctxt "genitive" -msgid "July" -msgstr "Juli" - -#. translators: month name, genitive -#: wp-includes/locale.php:160 -msgctxt "genitive" -msgid "August" -msgstr "Augustus" - -#. translators: month name, genitive -#: wp-includes/locale.php:161 -msgctxt "genitive" -msgid "September" -msgstr "September" - -#. translators: month name, genitive -#: wp-includes/locale.php:162 -msgctxt "genitive" -msgid "October" -msgstr "Oktober" - -#. translators: month name, genitive -#: wp-includes/locale.php:163 -msgctxt "genitive" -msgid "November" -msgstr "November" - -#. translators: month name, genitive -#: wp-includes/locale.php:164 -msgctxt "genitive" -msgid "December" -msgstr "December" - -#: wp-includes/taxonomy.php:1581 wp-includes/taxonomy.php:1663 -msgid "Term meta cannot be added to terms that are shared between taxonomies." -msgstr "Term meta kan niet worden toegevoegd aan termen die gedeeld zijn met taxonomieën." - -#. translators: month name, genitive -#: wp-includes/locale.php:153 -msgctxt "genitive" -msgid "January" -msgstr "Januari" - -#. translators: month name, genitive -#: wp-includes/locale.php:154 -msgctxt "genitive" -msgid "February" -msgstr "Februari " - -#. translators: month name, genitive -#: wp-includes/locale.php:155 -msgctxt "genitive" -msgid "March" -msgstr "Maart" - -#. translators: month name, genitive -#: wp-includes/locale.php:156 -msgctxt "genitive" -msgid "April" -msgstr "April" - -#. translators: month name, genitive -#: wp-includes/locale.php:157 -msgctxt "genitive" -msgid "May" -msgstr "Mei" - -#. translators: If months in your language require a genitive case, translate -#. this to 'on'. Do not translate into your own language. -#: wp-includes/functions.php:178 -msgctxt "decline months names: on or off" -msgid "off" -msgstr "off" - -#: wp-includes/embed.php:1014 -msgid "Sharing options" -msgstr "Instellingen voor delen" - -#: wp-includes/class-wp-xmlrpc-server.php:517 -msgid "Medium-Large size image width" -msgstr "Gemiddelde afbeeldingsgrootte breedte" - -#: wp-includes/class-wp-xmlrpc-server.php:522 -msgid "Medium-Large size image height" -msgstr "Gemiddelde afbeeldingsgrootte hoogte" - -#. translators: %s: site link -#: wp-includes/theme-compat/sidebar.php:79 -msgid "You are currently browsing the %s blog archives." -msgstr "Je bekijkt het %s blogarchief." - -#. translators: 1: site link, 2: archive date -#: wp-includes/theme-compat/sidebar.php:47 -msgid "You are currently browsing the %1$s blog archives for the day %2$s." -msgstr "Je bekijkt het %1$s blogarchief voor de dag %2$s." - -#. translators: 1: site link, 2: archive month -#: wp-includes/theme-compat/sidebar.php:55 -msgid "You are currently browsing the %1$s blog archives for %2$s." -msgstr "Je bekijkt het %1$s blogarchief voor %2$s." - -#. translators: 1: site link, 2: archive year -#: wp-includes/theme-compat/sidebar.php:63 -msgid "You are currently browsing the %1$s blog archives for the year %2$s." -msgstr "Je bekijkt het %1$s blogarchief voor het jaar %2$s." - -#. translators: %s: admin email link -#: wp-includes/ms-load.php:102 -msgid "This site has not been activated yet. If you are having problems activating your site, please contact %s." -msgstr "Deze site is nog niet geactiveerd. Als je problemen hebt met het activeren van je site, neem contact op met %s." - -#. translators: %s: menu name -#: wp-includes/nav-menu.php:283 wp-includes/nav-menu.php:296 -msgid "The menu name %s conflicts with another menu name. Please try another." -msgstr "Er bestaat al een menu met de naam %s. Kies een andere." - -#. translators: %s: email address -#: wp-signup.php:588 wp-signup.php:734 -msgid "Check your inbox at %s and click the link given." -msgstr "Je inbox controleren bij %s en op de verstuurde link klikken." - -#. translators: %s: site address -#: wp-signup.php:858 -msgid "The site you were looking for, %s, does not exist." -msgstr "De website waar je naar op zoek was, %s, bestaat niet." - -#. translators: %s: a link to the embedded site -#: wp-includes/embed-template.php:167 -msgid "It looks like nothing was found at this location. Maybe try visiting %s directly?" -msgstr "Het ziet er naar uit dat er niets gevonden is op deze locatie. Probeer %s direct te bezoeken." - -#. translators: %s: Name of current post -#: wp-includes/embed.php:818 -msgid "Continue reading %s" -msgstr "Meer lezen over %s" - -#: wp-includes/embed-template.php:160 -msgid "Oops! That embed can’t be found." -msgstr "Oeps! Deze 'embed' kan niet gevonden worden." - -#: wp-signup.php:139 -msgid "Site Language:" -msgstr "Sitetaal:" - -#. translators: %s: the message ID -#: wp-mail.php:240 -msgid "Mission complete. Message %s deleted." -msgstr "Missie afgerond. Bericht %s verwijderd." - -#: wp-mail.php:227 -msgid "Posted title:" -msgstr "Gepubliceerde titel:" - -#: wp-mail.php:226 -msgid "Author:" -msgstr "Auteur:" - -#: wp-includes/wp-db.php:1639 -msgid "Error reconnecting to the database" -msgstr "Fout bij herstellen verbinding met database" - -#: wp-includes/wp-db.php:1545 wp-includes/wp-db.php:1648 -msgid "Are you sure that the database server is running?" -msgstr "Weet je zeker dat de databaseserver draait?" - -#: wp-includes/wp-db.php:1544 -msgid "Are you sure that you have typed the correct hostname?" -msgstr "Weet je zeker dat je de juiste hostnaam hebt opgegeven?" - -#: wp-includes/wp-db.php:1649 -msgid "Are you sure that the database server is not under particularly heavy load?" -msgstr "Weet je zeker dat de database server niet te zwaar belast is?" - -#. translators: %s: support forums URL -#: wp-includes/wp-db.php:1550 wp-includes/wp-db.php:1654 -msgid "If you’re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the WordPress Support Forums." -msgstr "Wanneer je niet bekend bent met deze terminologie kun je beter contact opnemen met de hosting provider. Als je nog steeds hulp nodig hebt kun je het WordPress support forum bezoeken." - -#. translators: %s: database host -#: wp-includes/wp-db.php:1643 -msgid "This means that we lost contact with the database server at %s. This could mean your host’s database server is down." -msgstr "Dit betekend dat we het contact met de databaseserver bij %s hebben verloren. Dit kan betekenen dat de hosting provider databaseserver down is." - -#: wp-includes/wp-db.php:1543 -msgid "Are you sure you have the correct username and password?" -msgstr "Weet je zeker dat je de juiste gebruikersnaam en wachtwoord hebt?" - -#. translators: 1: wp-config.php. 2: database host -#: wp-includes/wp-db.php:1537 -msgid "This either means that the username and password information in your %1$s file is incorrect or we can’t contact the database server at %2$s. This could mean your host’s database server is down." -msgstr "Dit betekent dat de gebruikersnaam en wachtwoord in je %1$s bestand onjuist is of we kunnen geen verbinding maken met de database server via %2$s. Wellicht is de database server van je hosting offline." - -#. translators: %s: support forums URL -#: wp-includes/wp-db.php:1084 -msgid "If you don’t know how to set up a database you should contact your host. If all else fails you may find help at the WordPress Support Forums." -msgstr "Als je niet weet hoe een database in te stellen, neem dan contact op met je hosting. Als al het andere niet gelukt is, kun je hulp vragen via het WordPress Support Forum." - -#. translators: 1: database user, 2: database name -#: wp-includes/wp-db.php:1069 -msgid "Does the user %1$s have permission to use the %2$s database?" -msgstr "Heeft gebruiker %1$s rechten om de database %2$s te gebruiken?" - -#: wp-includes/wp-db.php:1065 -msgid "Are you sure it exists?" -msgstr "Weet je zeker dat deze bestaat?" - -#: wp-includes/wp-db.php:1056 -msgid "Can’t select database" -msgstr "Niet mogelijk om de database te selecteren" - -#. translators: %s: database name -#: wp-includes/wp-db.php:1060 -msgid "We were able to connect to the database server (which means your username and password is okay) but not able to select the %s database." -msgstr "Het was mogelijk om een verbinding te maken met de databaseserver (dit betekend dat de gebruikersnaam en het wachtwoord goed is), maar niet mogelijk om de %s database te selecteren." - -#. translators: %s: database name -#: wp-includes/wp-db.php:1076 -msgid "On some systems the name of your database is prefixed with your username, so it would be like username_%1$s. Could that be the problem?" -msgstr "Op sommige systemen wordt de databasenaam voorafgegaan door je gebruikersnaam, zodat het als volgt is: username_%1$s. Kan dat wellicht het probleem zijn?" - -#: wp-includes/widgets/class-wp-widget-tag-cloud.php:132 -msgid "The tag cloud will not be displayed since there are no taxonomies that support the tag cloud widget." -msgstr "Het was niet mogelijk om de tag-wolk te tonen omdat er teen taxonomieën zijn die voor de tag-wolk widget ondersteuning hebben." - -#: wp-includes/user.php:1974 -msgid "Could not save password reset key to database." -msgstr "Niet mogelijk om wachtwoordherstelsleutel op te slaan in de database." - -#: wp-includes/user.php:1344 -msgid "Nicename may not be longer than 50 characters." -msgstr "URL-naam mag niet langer zijn als 50 tekens." - -#. translators: %s: user name -#: wp-includes/user.php:164 -msgid "ERROR: The password you entered for the username %s is incorrect." -msgstr "FOUT: Het wachtwoord ingevoerd voor de gebruikersnaam %s is incorrect." - -#: wp-includes/user.php:140 -msgid "ERROR: Invalid username." -msgstr "FOUT: Ongeldige gebruikersnaam." - -#: wp-includes/taxonomy.php:538 -msgid "Categories list navigation" -msgstr "Categorielijst-navigatie" - -#: wp-includes/taxonomy.php:538 -msgid "Tags list navigation" -msgstr "Taglijst navigatie" - -#: wp-includes/taxonomy.php:539 -msgid "Categories list" -msgstr "Categorielijst" - -#: wp-includes/taxonomy.php:539 -msgid "Tags list" -msgstr "Taglijst" - -#: wp-includes/script-loader.php:528 -msgid "Permalink saved" -msgstr "Permalink opgeslagen" - -#: wp-includes/rest-api.php:574 -msgid "Cookie nonce is invalid" -msgstr "Cookie nonce is ongeldig" - -#. translators: 1: function name, 2: WordPress version number -#: wp-includes/rest-api.php:337 wp-includes/rest-api.php:358 -msgid "%1$s (since %2$s; no alternative available)" -msgstr "%1$s (vanaf %2$s; geen alternatief beschikbaar)" - -#. translators: 1: function name, 2: WordPress version number, 3: new argument -#. name -#: wp-includes/rest-api.php:355 -msgid "%1$s (since %2$s; %3$s)" -msgstr "%1$s (vanaf %2$s; %3$s)" - -#: wp-includes/shortcodes.php:93 -msgid "Invalid shortcode name: Empty name given." -msgstr "Ongeldige shortcode naam: lege naam opgegeven." - -#. translators: %s: shortcode name -#: wp-includes/shortcodes.php:100 -msgid "Invalid shortcode name: %s. Do not use spaces or reserved characters: & / < > [ ]" -msgstr "Ongeldige shortcode naam: %s. Gebruik geen spaties of gereserveerde karakters: & / < > [ ]" - -#. translators: 1: function name, 2: WordPress version number, 3: new function -#. name -#: wp-includes/rest-api.php:334 -msgid "%1$s (since %2$s; use %3$s instead)" -msgstr "%1$s (vanaf %2$s; gebruik %3$s)" - -#: wp-includes/rest-api/class-wp-rest-server.php:965 -msgid "The specified namespace could not be found." -msgstr "De specifieke 'namespace' kon niet worden gevonden." - -#: wp-includes/rest-api/class-wp-rest-server.php:878 -msgid "No route was found matching the URL and request method" -msgstr "Geen route gevonden die overeenkomt met de URL en aanvraagmethode" - -#: wp-includes/rest-api/class-wp-rest-server.php:839 -msgid "You don't have permission to do this." -msgstr "Je hebt onvoldoende rechten om dit uit te voeren." - -#: wp-includes/rest-api/class-wp-rest-server.php:803 -msgid "The handler for the route is invalid" -msgstr "De handler voor deze route is ongeldig" - -#: wp-includes/rest-api/class-wp-rest-server.php:291 -msgid "The JSONP callback function is invalid." -msgstr "De JSONP callback functie is ongeldig." - -#: wp-includes/rest-api/class-wp-rest-server.php:279 -msgid "JSONP support is disabled on this site." -msgstr "JSONP ondersteuning is uitgeschakeld op deze site." - -#: wp-includes/rest-api/class-wp-rest-server.php:274 -msgid "The REST API is disabled on this site." -msgstr "De REST API is uitgeschakeld op deze site." - -#: wp-includes/rest-api/class-wp-rest-request.php:860 -msgid "Invalid parameter(s): %s" -msgstr "Ongeldige parameter(s): %s" - -#: wp-includes/rest-api/class-wp-rest-request.php:832 -msgid "Missing parameter(s): %s" -msgstr "Missen(de) parameter(s): %s" - -#. translators: 1: pre_get_posts 2: WP_Query->is_main_query() 3: -#. is_main_query() 4: link to codex is_main_query() page. -#: wp-includes/query.php:754 -msgid "In %1$s, use the %2$s method, not the %3$s function. See %4$s." -msgstr "In %1$s, gebruik de %2$s methode, niet de %3$s functie. Zie %4$s." - -#: wp-includes/post.php:1381 -msgid "Pages list" -msgstr "Paginalijst" - -#: wp-includes/post.php:1381 -msgid "Posts list" -msgstr "Berichtenlijst" - -#: wp-includes/post.php:1380 -msgid "Pages list navigation" -msgstr "Paginalijst-navigatie" - -#: wp-includes/post.php:1372 -msgid "Page Archives" -msgstr "Pagina-archief" - -#: wp-includes/post.php:1372 -msgid "Post Archives" -msgstr "Berichtenarchief" - -#: wp-includes/post.php:1379 -msgid "Filter posts list" -msgstr "Berichtenlijst filteren" - -#: wp-includes/post.php:1379 -msgid "Filter pages list" -msgstr "Paginalijst filteren" - -#: wp-includes/post.php:1380 -msgid "Posts list navigation" -msgstr "Berichtenlijst navigatie" - -#: wp-includes/class-wp-customize-nav-menus.php:131 -#: wp-includes/nav-menu.php:757 -msgid "Post Type Archive" -msgstr "Berichttype-archief" - -#: wp-includes/ms-functions.php:431 wp-includes/ms-functions.php:438 -#: wp-includes/user.php:1334 -msgid "Sorry, that username is not allowed." -msgstr "Helaas, deze gebruikersnaam is niet toegestaan." - -#: wp-includes/ms-functions.php:570 -msgid "Site names can only contain lowercase letters (a-z) and numbers." -msgstr "Sitenamen kunnen alleen kleine letters (a-z) en nummers bevatten." - -#. translators: playlist item title -#: wp-includes/media.php:1749 wp-includes/media.php:1764 -msgctxt "playlist item title" -msgid "“%s”" -msgstr "“%s”" - -#. translators: three-letter abbreviation of the month -#: wp-includes/locale.php:177 -msgctxt "November abbreviation" -msgid "Nov" -msgstr "Nov" - -#. translators: three-letter abbreviation of the month -#: wp-includes/locale.php:178 -msgctxt "December abbreviation" -msgid "Dec" -msgstr "Dec" - -#: wp-includes/ms-functions.php:416 -msgid "Usernames can only contain lowercase letters (a-z) and numbers." -msgstr "Gebruikersnamen kunnen alleen kleine letters (a-z) en nummers bevatten." - -#. translators: three-letter abbreviation of the month -#: wp-includes/locale.php:176 -msgctxt "October abbreviation" -msgid "Oct" -msgstr "Okt" - -#. translators: three-letter abbreviation of the month -#: wp-includes/locale.php:175 -msgctxt "September abbreviation" -msgid "Sep" -msgstr "Sep" - -#. translators: three-letter abbreviation of the month -#: wp-includes/locale.php:174 -msgctxt "August abbreviation" -msgid "Aug" -msgstr "Aug" - -#. translators: three-letter abbreviation of the month -#: wp-includes/locale.php:173 -msgctxt "July abbreviation" -msgid "Jul" -msgstr "Jul" - -#. translators: three-letter abbreviation of the month -#: wp-includes/locale.php:172 -msgctxt "June abbreviation" -msgid "Jun" -msgstr "Jun" - -#. translators: three-letter abbreviation of the month -#: wp-includes/locale.php:171 -msgctxt "May abbreviation" -msgid "May" -msgstr "Mei" - -#. translators: three-letter abbreviation of the month -#: wp-includes/locale.php:170 -msgctxt "April abbreviation" -msgid "Apr" -msgstr "Apr" - -#. translators: three-letter abbreviation of the month -#: wp-includes/locale.php:169 -msgctxt "March abbreviation" -msgid "Mar" -msgstr "Mrt" - -#. translators: three-letter abbreviation of the month -#: wp-includes/locale.php:168 -msgctxt "February abbreviation" -msgid "Feb" -msgstr "Feb" - -#. translators: three-letter abbreviation of the month -#: wp-includes/locale.php:167 -msgctxt "January abbreviation" -msgid "Jan" -msgstr "Jan" - -#. translators: one-letter abbreviation of the weekday -#: wp-includes/locale.php:127 -msgctxt "Saturday initial" -msgid "S" -msgstr "Z" - -#. translators: one-letter abbreviation of the weekday -#: wp-includes/locale.php:126 -msgctxt "Friday initial" -msgid "F" -msgstr "V" - -#. translators: one-letter abbreviation of the weekday -#: wp-includes/locale.php:125 -msgctxt "Thursday initial" -msgid "T" -msgstr "D" - -#. translators: one-letter abbreviation of the weekday -#: wp-includes/locale.php:124 -msgctxt "Wednesday initial" -msgid "W" -msgstr "W" - -#. translators: one-letter abbreviation of the weekday -#: wp-includes/locale.php:123 -msgctxt "Tuesday initial" -msgid "T" -msgstr "D" - -#. translators: one-letter abbreviation of the weekday -#: wp-includes/locale.php:122 -msgctxt "Monday initial" -msgid "M" -msgstr "M" - -#. translators: one-letter abbreviation of the weekday -#: wp-includes/locale.php:121 -msgctxt "Sunday initial" -msgid "S" -msgstr "Z" - -#: wp-includes/link-template.php:2774 -msgid "Newer comments" -msgstr "Nieuwere reacties" - -#: wp-includes/link-template.php:2773 -msgid "Older comments" -msgstr "Oudere reacties" - -#: wp-includes/general-template.php:1950 -msgid "Posts published on %s" -msgstr "Bericht gepubliceerd op %s" - -#. translators: %s: 'document_title_separator' filter name -#: wp-includes/feed.php:102 wp-includes/feed.php:128 -msgid "Use the %s filter instead." -msgstr "Gebruik in plaats daarvan het %s-filter." - -#: wp-includes/embed.php:1036 -msgid "Copy and paste this code into your site to embed" -msgstr "Deze code kopiëren en plakken naar je site voor embed." - -#: wp-includes/embed.php:1041 -msgid "Close sharing dialog" -msgstr "Sluit delen" - -#: wp-includes/embed.php:1019 -msgid "WordPress Embed" -msgstr "WordPress Embed" - -#: wp-includes/embed.php:1022 -msgid "HTML Embed" -msgstr "HTML Embed" - -#: wp-includes/embed.php:1029 -msgid "Copy and paste this URL into your WordPress site to embed" -msgstr "Deze URL kopiëren en plakken in je WordPress site om in te voegen" - -#: wp-includes/embed.php:973 -msgid "%s Comment" -msgid_plural "%s Comments" -msgstr[0] "%s reactie" -msgstr[1] "%s reacties" - -#: wp-includes/embed.php:997 -msgid "Open sharing dialog" -msgstr "Open delen" - -#: wp-includes/embed.php:492 -msgid "Embedded WordPress Post" -msgstr "WordPress bericht ingevoegd" - -#: wp-includes/customize/class-wp-widget-area-customize-control.php:67 -msgid "When in reorder mode, additional controls to reorder widgets will be available in the widgets list above." -msgstr "In de herschik modus zijn in de bovenstaande lijst extra knoppen beschikbaar om de widgets te herschikken." - -#. translators: comment status -#: wp-includes/comment.php:240 -msgctxt "adjective" -msgid "Trash" -msgstr "Prullenbak" - -#: wp-includes/comment-template.php:2122 -msgid "Logged in as %2$s. Log out?" -msgstr "Ingelogd als %2$s. Uitloggen?" - -#: wp-includes/customize/class-wp-customize-themes-section.php:75 -#: wp-includes/customize/class-wp-customize-themes-section.php:76 -msgid "Search installed themes…" -msgstr "Geïnstalleerde thema's doorzoeken…" - -#: wp-includes/class-wp-xmlrpc-server.php:5756 -msgid "Sorry, you have used your space allocation." -msgstr "Helaas, je hebt de toegewezen ruimte opgebruikt." - -#: wp-includes/class-wp-xmlrpc-server.php:3207 -#: wp-includes/class-wp-xmlrpc-server.php:3340 -#: wp-includes/class-wp-xmlrpc-server.php:3407 -msgid "You are not allowed to moderate or edit this comment." -msgstr "Je hebt geen toestemming om deze reactie te modereren." - -#: wp-includes/class-wp-xmlrpc-server.php:2451 -msgid "You are not allowed to browse users." -msgstr "Je hebt geen rechten om door gebruikers te bladeren." - -#: wp-includes/class-wp-customize-widgets.php:679 -#: wp-includes/customize/class-wp-widget-area-customize-control.php:63 -msgid "Reorder widgets" -msgstr "Widgets herordenen" - -#: wp-includes/class-wp-customize-widgets.php:676 -msgid "There are no widget areas currently rendered in the preview. Navigate in the preview to a template that makes use of a widget area in order to access its widgets here." -msgstr "In het voorbeeld zijn geen widget gebieden weergegeven. Navigeer in het voorbeeld naar een template dat gebruikt maakt van widget gebieden om hier toegang te krijgen tot de widgets." - -#: wp-includes/class-wp-customize-section.php:350 -msgid "Press return or enter to open this section" -msgstr "Klik op enter om deze sectie te openen" - -#. translators: %s: document title from the preview -#: wp-includes/class-wp-customize-manager.php:1475 -msgid "Live Preview: %s" -msgstr "Live voorbeeld: %s" - -#: wp-includes/class-wp-customize-manager.php:392 -msgid "The requested theme does not exist." -msgstr "Dat thema bestaat niet." - -#: wp-includes/class-wp-customize-manager.php:368 -#: wp-includes/script-loader.php:441 -msgid "You are not allowed to customize the appearance of this site." -msgstr "Je hebt onvoldoende rechten om de weergave van deze site te wijzigen." - -#: wp-includes/class-wp-customize-manager.php:362 -msgid "You must be logged in to complete this action." -msgstr "Je moet ingelogd zijn om deze actie af te ronden." - -#: wp-includes/class-wp-customize-manager.php:382 -msgid "You are not allowed to edit theme options on this site." -msgstr "Je hebt geen toestemming om thema-instellingen van deze site te bewerken." - -#. translators: 1: "type => link", 2: "taxonomy => link_category" alternative -#: wp-includes/category-template.php:378 wp-includes/category.php:43 -msgid "%1$s is deprecated. Use %2$s instead." -msgstr "%1$s is verouderd. Gebruik in plaats daarvan %2$s." - -#. translators: 1: post type, 2: capability name -#: wp-includes/capabilities.php:71 wp-includes/capabilities.php:132 -#: wp-includes/capabilities.php:191 wp-includes/capabilities.php:228 -msgid "The post type %1$s is not registered, so it may not be reliable to check the capability \"%2$s\" against a post of that type." -msgstr "Berichttype %1$s is niet geregistreerd waardoor het niet betrouwbaar is om geschiktheid \"%2$s\" te controleren tegen een bericht van dit type." - -#: wp-includes/class-wp-customize-nav-menus.php:734 -msgid "Clear Results" -msgstr "Resultaten opschonen" - -#: wp-includes/class-wp-editor.php:1059 -msgid "The following formatting shortcuts are replaced when pressing Enter. Press Escape or the Undo button to undo." -msgstr "De volgende shortcuts worden vervangen na het klikken op Enter. Klik op Escape of de Undo-knop om het ongedaan te maken." - -#. translators: %s: Title of a section with menu items -#: wp-includes/class-wp-customize-nav-menus.php:781 -msgid "Toggle section: %s" -msgstr "Sectie wisselen: %s" - -#. translators: If your word count is based on single characters (e.g. East -#. Asian characters), enter 'characters_excluding_spaces' or -#. 'characters_including_spaces'. Otherwise, enter 'words'. Do not translate -#. into your own language. -#: wp-includes/formatting.php:2964 wp-includes/script-loader.php:419 -msgctxt "Word count type. Do not translate!" -msgid "words" -msgstr "words" - -#. translators: 1: Title of a menu item, 2: Type of a menu item -#: wp-includes/customize/class-wp-customize-nav-menu-item-control.php:77 -msgid "Edit menu item: %1$s (%2$s)" -msgstr "Menu item bewerken: %1$s (%2$s)" - -#. translators: 1: Title of a menu item, 2: Type of a menu item -#: wp-includes/customize/class-wp-customize-nav-menu-item-control.php:81 -msgid "Remove Menu Item: %1$s (%2$s)" -msgstr "Menu item verwijderen: %1$s (%2$s)" - -#: wp-includes/class-wp-customize-nav-menus.php:742 -msgid "Toggle section: Custom Links" -msgstr "Sectie wisselen: aangepaste links" - -#: wp-includes/script-loader.php:387 -msgid "Your new password has not been saved." -msgstr "Je nieuwe wachtwoord is niet opgeslagen." - -#: wp-includes/script-loader.php:392 -msgid "Hide password" -msgstr "Wachtwoord verbergen" - -#: wp-includes/script-loader.php:391 -msgid "Show password" -msgstr "Wachtwoord tonen" - -#: wp-includes/class-wp-customize-nav-menus.php:341 -msgid "Menu Name" -msgstr "Menunaam" - -#: wp-includes/media-template.php:1241 -msgid "As a browser icon" -msgstr "Als een browser icoon" - -#: wp-includes/media-template.php:1246 -msgid "Preview as a browser icon" -msgstr "Voorbeeld zoals een browser icoon" - -#: wp-includes/media-template.php:1251 -msgid "As an app icon" -msgstr "Zoals een app icoon" - -#: wp-includes/media-template.php:1253 -msgid "Preview as an app icon" -msgstr "Voorbeeld zoals een app icoon" - -#: wp-includes/class-wp-customize-nav-menus.php:777 -msgid "No items" -msgstr "Geen items" - -#: wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php:44 -msgid "Menu options" -msgstr "Menu opties" - -#: wp-login.php:731 -msgid "Registration confirmation will be emailed to you." -msgstr "Registratiebevestiging zal via e-mail worden verzonden." - -#: wp-includes/script-loader.php:389 -msgid "Hide" -msgstr "Verbergen" - -#: wp-includes/script-loader.php:388 -msgid "Show" -msgstr "Tonen" - -#: wp-includes/script-loader.php:382 -msgctxt "password mismatch" -msgid "Mismatch" -msgstr "Verkeerde combinatie" - -#: wp-includes/script-loader.php:379 -msgctxt "password strength" -msgid "Weak" -msgstr "Zwak" - -#: wp-includes/script-loader.php:378 -msgctxt "password strength" -msgid "Very weak" -msgstr "Erg zwak" - -#: wp-includes/script-loader.php:381 -msgctxt "password strength" -msgid "Strong" -msgstr "Sterk" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:198 -msgid "Hide header image" -msgstr "Header afbeelding verbergen" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:199 -msgid "Add new header image" -msgstr "Nieuwe header afbeelding toevoegen" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:199 -msgid "Add new image" -msgstr "Nieuwe afbeelding toevoegen" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:198 -msgid "Hide image" -msgstr "Verbergen" - -#: wp-includes/script-loader.php:445 -msgid "Expand Sidebar" -msgstr "Sidebar uitbreiden" - -#: wp-includes/class-wp-customize-manager.php:1828 -msgid "Site Icon" -msgstr "Favicon" - -#: wp-includes/class-wp-customize-manager.php:1829 -msgid "The Site Icon is used as a browser and app icon for your site. Icons must be square, and at least 512px wide and tall." -msgstr "Het favicon wordt gebruikt als browser en app icoon voor je site. Iconen moeten vierkant zijn en minimaal 512px breed en hoog." - -#: wp-includes/class-wp-customize-manager.php:1795 -msgid "Site Identity" -msgstr "Site-identiteit" - -#. translators: 1: Title of a menu item, 2: Type of a menu item -#: wp-includes/class-wp-customize-nav-menus.php:681 -msgid "Add to menu: %1$s (%2$s)" -msgstr "Aan menu toevoegen: %1$s (%2$s)" - -#: wp-includes/class-wp-editor.php:1057 -msgid "When starting a new paragraph with one of these formatting shortcuts followed by a space, the formatting will be applied automatically. Press Backspace or Escape to undo." -msgstr "Bij het starten van een nieuwe paragraaf met een van de volgende patronen gevolgd door een spatie zal de opmaak automatisch worden toegepast. Druk op Backspace of Escape om dit terug te draaien." - -#: wp-includes/wp-db.php:1335 wp-includes/wp-db.php:1352 -msgid "WordPress database error:" -msgstr "WordPress database fout:" - -#: wp-login.php:498 -msgid "Your password reset link appears to be invalid. Please request a new link below." -msgstr "Je wachtwoord-reset link lijkt ongeldig. Hieronder kun je een nieuwe link aanvragen." - -#: wp-login.php:500 -msgid "Your password reset link has expired. Please request a new link below." -msgstr "Je wachtwoord reset-link is verlopen. Vraag hieronder een nieuwe link aan." - -#: wp-includes/ms-functions.php:448 wp-includes/user.php:1317 -msgid "Username may not be longer than 60 characters." -msgstr "Gebruikersnaam mag niet langer zijn dan 60 tekens." - -#: wp-includes/pluggable.php:1780 -msgid "To set your password, visit the following address:" -msgstr "Om je wachtwoord in te stellen, bezoek het volgende adres:" - -#: wp-includes/customize/class-wp-customize-themes-section.php:43 -#: wp-includes/customize/class-wp-customize-themes-section.php:62 -msgid "Active theme" -msgstr "Thema activeren" - -#. translators: 1: original menu name, 2: duplicate count -#: wp-includes/customize/class-wp-customize-nav-menu-setting.php:522 -msgid "%1$s (%2$d)" -msgstr "%1$s (%2$d)" - -#: wp-includes/class-wp-customize-nav-menus.php:337 -#: wp-includes/customize/class-wp-customize-nav-menu-setting.php:440 -msgctxt "Missing menu name." -msgid "(unnamed)" -msgstr "(naamloos)" - -#: wp-includes/class-wp-customize-nav-menus.php:361 -#: wp-includes/customize/class-wp-customize-nav-menu-control.php:54 -msgid "Reorder menu items" -msgstr "Menu-items opnieuw rangschikken" - -#: wp-includes/customize/class-wp-customize-nav-menu-control.php:51 -msgid "Add or remove menu items" -msgstr "Menu-items toevoegen of verwijderen" - -#: wp-includes/customize/class-wp-customize-nav-menu-control.php:58 -msgid "When in reorder mode, additional controls to reorder menu items will be available in the items list above." -msgstr "In herschik modus zullen er extra knoppen getoond worden in de bovenstaande lijst om menu-items te herschikken." - -#: wp-includes/class-wp-customize-nav-menus.php:360 -#: wp-includes/class-wp-customize-widgets.php:678 -msgid "Reorder mode closed" -msgstr "Herschik modus uitgeschakeld" - -#: wp-includes/class-wp-customize-nav-menus.php:464 -msgid "Menus can be displayed in locations defined by your theme or in widget areas by adding a “Custom Menu” widget." -msgstr "Menu's kunnen getoond worden op locaties gedefinieerd door je thema of in widget gebieden door het toevoegen van een “aangepast menu” widget." - -#: wp-includes/class-wp-customize-nav-menus.php:466 -msgid "Menus can be displayed in locations defined by your theme." -msgstr "Menu's kunnen getoond worden op locaties gedefinieerd door je thema." - -#: wp-includes/class-wp-editor.php:830 -msgctxt "HTML tag" -msgid "Preformatted" -msgstr "Vooraf opgemaakt" - -#: wp-includes/functions.php:3619 -msgid "The called constructor method for %1$s is deprecated since version %2$s! Use %3$s instead." -msgstr "De aangeroepen constructor methode voor %1$s is verouderd sinds versie %2$s! Gebruik %3$s in plaats daarvan." - -#. translators: %s: Name of the directory (build) -#: wp-includes/locale.php:215 -msgid "The %s directory of the develop repository must be used for RTL." -msgstr "De %s map van de ontwikkel repository moet gebruikt worden voor RTL." - -#: wp-includes/class-wp-customize-nav-menus.php:362 -#: wp-includes/class-wp-customize-widgets.php:680 -msgid "Close reorder mode" -msgstr "Herschik modus sluiten" - -#: wp-includes/class-wp-customize-nav-menus.php:359 -#: wp-includes/class-wp-customize-widgets.php:677 -msgid "Reorder mode enabled" -msgstr "Herschik modus ingeschakeld" - -#: wp-includes/customize/class-wp-customize-themes-section.php:45 -#: wp-includes/customize/class-wp-customize-themes-section.php:64 -msgid "Previewing theme" -msgstr "Voorvertoning thema" - -#: wp-includes/user.php:1743 -msgid "[%s] Notice of Email Change" -msgstr "[%s] Bericht over e-mailwijziging" - -#. translators: Do not translate USERNAME, ADMIN_EMAIL, EMAIL, SITENAME, -#. SITEURL: those are placeholders. -#: wp-includes/user.php:1728 -msgid "" -"Hi ###USERNAME###,\n" -"\n" -"This notice confirms that your email was changed on ###SITENAME###.\n" -"\n" -"If you did not change your email, please contact the Site Administrator at\n" -"###ADMIN_EMAIL###\n" -"\n" -"This email has been sent to ###EMAIL###\n" -"\n" -"Regards,\n" -"All at ###SITENAME###\n" -"###SITEURL###" -msgstr "" -"Hallo ###USERNAME###,\n" -"\n" -"Dit bericht bevestigt dat je e-mail is gewijzigd op ###SITENAME###.\n" -"\n" -"Als je je e-mail niet gewijzigd hebt, neem dan contact op met de sitebeheerder op\n" -"###ADMIN_EMAIL###\n" -"\n" -"Deze e-mail is verzonden aan ###EMAIL###\n" -"\n" -"Met vriendelijke groet,\n" -"Allen op ###SITENAME###\n" -"###SITEURL###" - -#. translators: Do not translate USERNAME, ADMIN_EMAIL, EMAIL, SITENAME, -#. SITEURL: those are placeholders. -#: wp-includes/user.php:1673 -msgid "" -"Hi ###USERNAME###,\n" -"\n" -"This notice confirms that your password was changed on ###SITENAME###.\n" -"\n" -"If you did not change your password, please contact the Site Administrator at\n" -"###ADMIN_EMAIL###\n" -"\n" -"This email has been sent to ###EMAIL###\n" -"\n" -"Regards,\n" -"All at ###SITENAME###\n" -"###SITEURL###" -msgstr "" -"Hallo ###USERNAME###,\n" -"\n" -"Dit bericht bevestigt dat je wachtwoord is gewijzigd op ###SITENAME###.\n" -"\n" -"Als je je wachtwoord niet gewijzigd hebt, neem dan contact op met de sitebeheerder op\n" -"###ADMIN_EMAIL###\n" -"\n" -"Deze e-mail is verzonden aan ###EMAIL###\n" -"\n" -"Met vriendelijke groet,\n" -"Iedereen op ###SITENAME###\n" -"###SITEURL###" - -#: wp-includes/user.php:1688 -msgid "[%s] Notice of Password Change" -msgstr "[%s] Bericht over wachtwoordwijziging" - -#: wp-includes/script-loader.php:489 -msgid "" -"Are you sure you want to edit this comment?\n" -"The changes you made will be lost." -msgstr "" -"Weet je zeker dat je deze reactie wilt bewerken?\n" -"De gemaakte wijzigingen zullen verloren gaan." - -#. translators: %s: shortcode tag -#: wp-includes/shortcodes.php:319 -msgid "Attempting to parse a shortcode without a valid callback: %s" -msgstr "Poging gedaan om een shortcode te verwerken zonder dat er een geldige callback was: %s" - -#: wp-includes/script-loader.php:119 -msgid "Close code tag" -msgstr "Sluit code-tag" - -#. translators: Error string for a failed update -#: wp-includes/script-loader.php:588 -msgid "Update Failed: %s" -msgstr "Bijwerken mislukt: %s" - -#: wp-includes/script-loader.php:109 -msgid "Inserted text" -msgstr "Ingevoegde tekst" - -#: wp-includes/script-loader.php:110 -msgid "Close inserted text tag" -msgstr "Sluit ingevoegde-tekst-tag" - -#: wp-includes/taxonomy.php:537 -msgid "No tags" -msgstr "Geen tags" - -#: wp-includes/script-loader.php:116 -msgid "List item" -msgstr "Lijst item" - -#: wp-includes/script-loader.php:117 -msgid "Close list item tag" -msgstr "Lijsttag sluiten" - -#: wp-includes/script-loader.php:113 -msgid "Close bulleted list tag" -msgstr "Lijst met opsommingstekens tag sluiten" - -#: wp-includes/script-loader.php:115 -msgid "Close numbered list tag" -msgstr "Genummerde lijst tag sluiten" - -#: wp-includes/script-loader.php:107 -msgid "Deleted text (strikethrough)" -msgstr "Verwijderde tekst (doorgestreept)" - -#: wp-includes/script-loader.php:108 -msgid "Close deleted text tag" -msgstr "Verwijderde-tekst-tag sluiten" - -#: wp-includes/script-loader.php:106 -msgid "Close blockquote tag" -msgstr "Blockquote-tag sluiten" - -#: wp-includes/script-loader.php:103 -msgid "Close italic tag" -msgstr "Cursief-tag sluiten" - -#: wp-includes/script-loader.php:101 -msgid "Close bold tag" -msgstr "Vet-tag sluiten" - -#: wp-includes/media-template.php:1192 -msgctxt "media" -msgid "Remove video track" -msgstr "Video verwijderen" - -#: wp-includes/media-template.php:1160 -msgid "Remove poster image" -msgstr "Poster afbeelding verwijderen" - -#: wp-includes/post.php:1377 -msgid "Remove featured image" -msgstr "Uitgelichte afbeelding verwijderen" - -#: wp-includes/media-template.php:1127 wp-includes/media-template.php:1139 -msgid "Remove video source" -msgstr "Videobron verwijderen" - -#: wp-includes/media-template.php:1044 wp-includes/media-template.php:1058 -msgid "Remove audio source" -msgstr "Audiobron verwijderen" - -#: wp-includes/formatting.php:125 -msgctxt "Comma-separated list of replacement words in your language" -msgid "’tain’t,’twere,’twas,’tis,’twill,’til,’bout,’nuff,’round,’cause,’em" -msgstr "’s ,’n ,’t " - -#. translators: This is a comma-separated list of words that defy the syntax of -#. quotations in normal use, for example... 'We do not have enough words yet' -#. ... is a typical quoted phrase. But when we write lines of code 'til we -#. have enough of 'em, then we need to insert apostrophes instead of quotes. -#: wp-includes/formatting.php:122 -msgctxt "Comma-separated list of words to texturize in your language" -msgid "'tain't,'twere,'twas,'tis,'twill,'til,'bout,'nuff,'round,'cause,'em" -msgstr "'s ,'n ,'t " - -#: wp-includes/class-wp-editor.php:1051 -msgid "Ctrl + letter:" -msgstr "Ctrl + letter:" - -#: wp-includes/class-wp-editor.php:1050 -msgid "Cmd + letter:" -msgstr "Cmd + letter:" - -#: wp-includes/class-wp-editor.php:1049 -msgid "Shift + Alt + letter:" -msgstr "Shift + Alt + letter:" - -#: wp-includes/class-wp-editor.php:1048 -msgid "Ctrl + Alt + letter:" -msgstr "Ctrl + Alt + letter:" - -#: wp-includes/widgets/class-wp-widget-text.php:107 -msgid "Content:" -msgstr "Inhoud:" - -#: wp-includes/class-wp-editor.php:1041 -msgid "Default shortcuts," -msgstr "Standaard sneltoetsen," - -#: wp-includes/class-wp-editor.php:1042 -msgid "Additional shortcuts," -msgstr "Extra sneltoesten" - -#: wp-includes/class-wp-editor.php:1044 -msgid "Inline toolbar (when an image, link or preview is selected)" -msgstr "Inline toolbar (als een afbeelding, link of voorbeeld is geselecteerd)" - -#: wp-includes/class-wp-xmlrpc-server.php:542 -msgid "Allow link notifications from other blogs (pingbacks and trackbacks) on new articles" -msgstr "Sta link-meldingen van andere blogs toe (pingbacks en trackbacks) op nieuwe artikelen" - -#: wp-includes/class-wp-customize-section.php:236 -#: wp-includes/customize/class-wp-customize-themes-section.php:55 -msgid "Customizing" -msgstr "Aan het bewerken" - -#: wp-includes/customize/class-wp-customize-nav-menus-panel.php:95 -msgid "Menu Options" -msgstr "Menu opties" - -#: wp-includes/customize/class-wp-customize-nav-menus-panel.php:59 -msgid "Link Target" -msgstr "Linkdoel" - -#: wp-includes/customize/class-wp-customize-nav-menus-panel.php:57 -msgid "Show advanced menu properties" -msgstr "Geavanceerde menu eigenschappen tonen" - -#: wp-includes/class-wp-customize-nav-menus.php:762 -msgid "Add to Menu" -msgstr "Aan menu toevoegen" - -#: wp-includes/class-wp-customize-nav-menus.php:740 -msgid "Custom Links" -msgstr "Aangepaste links" - -#: wp-includes/class-wp-customize-nav-menus.php:732 -msgid "The search results will be updated as you type." -msgstr "De zoekresultaten worden bijgewerkt tijdens het typen." - -#: wp-includes/class-wp-customize-nav-menus.php:731 -msgid "Search menu items…" -msgstr "Menu-items zoeken… " - -#: wp-includes/class-wp-customize-nav-menus.php:725 -msgid "Add Menu Items" -msgstr "Menu-items toevoegen" - -#: wp-includes/class-wp-customize-nav-menus.php:730 -msgid "Search Menu Items" -msgstr "Menu-items doorzoeken" - -#: wp-includes/class-wp-customize-nav-menus.php:487 -msgid "Menu Locations" -msgstr "Menu locaties" - -#: wp-includes/class-wp-customize-nav-menus.php:566 -msgid "Add a Menu" -msgstr "Menu toevoegen" - -#: wp-includes/class-wp-customize-nav-menus.php:583 -msgid "New menu name" -msgstr "Nieuwe menunaam" - -#. translators: ▸ is the unicode right-pointing triangle, and %s is the -#. section title in the Customizer -#: wp-includes/class-wp-customize-nav-menus.php:351 -#: wp-includes/class-wp-customize-nav-menus.php:722 -#: wp-includes/class-wp-customize-section.php:234 -#: wp-includes/class-wp-customize-widgets.php:716 -msgid "Customizing ▸ %s" -msgstr "Aan het bewerken ▸ %s" - -#: wp-includes/class-wp-customize-nav-menus.php:696 -msgid "Move one level up" -msgstr "Een niveau omhoog verplaatsen" - -#: wp-includes/class-wp-customize-nav-menus.php:697 -msgid "Move one level down" -msgstr "Een niveau omlaag verplaatsen" - -#: wp-includes/class-wp-customize-nav-menus.php:462 -msgid "This panel is used for managing navigation menus for content you have already published on your site. You can create menus and add items for existing content such as pages, posts, categories, tags, formats, or custom links." -msgstr "Dit paneel wordt gebruikt voor het beheren van navigatie menu's voor inhoud die je al gepubliceerd hebt op je site. Je kunt menu's aanmaken en items toevoegen voor bestaande inhoud zoals pagina's, berichten, categoriën, tag's, formaten, of aangepaste links." - -#: wp-includes/class-wp-customize-nav-menus.php:484 -msgid "You can also place menus in widget areas with the Custom Menu widget." -msgstr "Je kunt menu's in widget gebieden plaatsen met de aangepast menu widget." - -#. translators: 1: item name, 2: item position, 3: parent item name -#: wp-includes/class-wp-customize-nav-menus.php:392 -msgid "%1$s. Sub item number %2$d under %3$s." -msgstr "%1$s. Subonderdeelnummer %2$d onder %3$s." - -#. translators: 1: item name, 2: item position, 3: total number of items -#: wp-includes/class-wp-customize-nav-menus.php:390 -msgid "%1$s. Menu item %2$d of %3$d." -msgstr "%1$s. Menu-onderdeel %2$d van %3$d." - -#. translators: %s: previous item name -#: wp-includes/class-wp-customize-nav-menus.php:388 -msgid "Out from under %s" -msgstr "Weg van onder %s vandaan" - -#. translators: %s: previous item name -#: wp-includes/class-wp-customize-nav-menus.php:386 -msgid "Under %s" -msgstr "Onder %s" - -#. translators: %s: previous item name -#: wp-includes/class-wp-customize-nav-menus.php:384 -msgid "Move out from under %s" -msgstr "Verplaats van onder %s vandaan " - -#. translators: %s: previous item name -#: wp-includes/class-wp-customize-nav-menus.php:382 -msgid "Move under %s" -msgstr "Verplaatst onder %s" - -#: wp-includes/class-wp-customize-nav-menus.php:380 -msgid "Move to the top" -msgstr "Verplaats naar bovenkant" - -#: wp-includes/class-wp-customize-nav-menus.php:379 -msgid "Move down one" -msgstr "Verplaats één omlaag" - -#: wp-includes/class-wp-customize-nav-menus.php:358 -msgid "Loading more results... please wait." -msgstr "Meer resultaten laden... Even geduld." - -#: wp-includes/class-wp-customize-nav-menus.php:378 -msgid "Move up one" -msgstr "Eén naar boven plaatsen" - -#: wp-includes/class-wp-customize-nav-menus.php:356 -msgid "Number of items found: %d" -msgstr "Aantal gevonden items: %d" - -#: wp-includes/class-wp-customize-nav-menus.php:357 -msgid "Additional items found: %d" -msgstr "Aanvullende items gevonden: %d" - -#. translators: %s: title of menu item in draft status -#: wp-includes/class-wp-customize-nav-menus.php:355 -msgid "%s (Pending)" -msgstr "%s (Wachtrij)" - -#: wp-includes/class-wp-customize-nav-menus.php:344 -msgid "Menu created" -msgstr "Menu aangemaakt" - -#: wp-includes/class-wp-customize-nav-menus.php:343 -msgid "Menu item deleted" -msgstr "Menu-item verwijderd" - -#: wp-includes/class-wp-customize-nav-menus.php:342 -msgid "Menu item added" -msgstr "Menu-item toegevoegd" - -#: wp-includes/class-wp-customize-nav-menus.php:345 -msgid "Menu deleted" -msgstr "Menu verwijderd" - -#. translators: %s: title of menu item which is invalid -#: wp-includes/class-wp-customize-nav-menus.php:353 -msgid "%s (Invalid)" -msgstr "%s (Ongeldig)" - -#: wp-includes/class-wp-customize-nav-menus.php:346 -msgid "Menu item moved up" -msgstr "Menu item omhoog verplaatst" - -#: wp-includes/class-wp-customize-nav-menus.php:347 -msgid "Menu item moved down" -msgstr "Menu item omlaag verplaatst" - -#: wp-includes/class-wp-customize-nav-menus.php:348 -msgid "Menu item moved out of submenu" -msgstr "Menu item uit submenu verplaatst" - -#: wp-includes/class-wp-customize-nav-menus.php:349 -msgid "Menu item is now a sub-item" -msgstr "Menu item is nu een sub-item" - -#: wp-includes/class-wp-customize-nav-menus.php:119 -msgctxt "nav menu home label" -msgid "Home" -msgstr "Home" - -#: wp-includes/customize/class-wp-customize-new-menu-control.php:36 -msgid "Create Menu" -msgstr "Menu aanmaken" - -#: wp-includes/customize/class-wp-customize-nav-menu-item-control.php:137 -msgid "Original: %s" -msgstr "Origineel: %s" - -#: wp-includes/customize/class-wp-customize-nav-menu-item-control.php:130 -msgid "The description will be displayed in the menu if the current theme supports it." -msgstr "De beschrijving zal weergegeven worden in het menu als het huidige thema dit ondersteunt." - -#: wp-includes/customize/class-wp-customize-nav-menu-item-control.php:122 -#: wp-includes/customize/class-wp-customize-nav-menus-panel.php:62 -msgid "Link Relationship (XFN)" -msgstr "Link relatie (XFN)" - -#: wp-includes/customize/class-wp-customize-nav-menu-item-control.php:116 -#: wp-includes/customize/class-wp-customize-nav-menus-panel.php:61 -msgid "CSS Classes" -msgstr "CSS classes" - -#: wp-includes/class-wp-editor.php:1414 -#: wp-includes/customize/class-wp-customize-nav-menu-item-control.php:105 -#: wp-includes/media-template.php:1001 -msgid "Open link in a new tab" -msgstr "Open link in een nieuw tabblad" - -#: wp-includes/customize/class-wp-customize-nav-menu-item-control.php:110 -#: wp-includes/customize/class-wp-customize-nav-menus-panel.php:60 -msgid "Title Attribute" -msgstr "Titelattribuut" - -#: wp-includes/customize/class-wp-customize-nav-menu-item-control.php:98 -msgid "Navigation Label" -msgstr "Navigatielabel" - -#: wp-includes/customize/class-wp-customize-nav-menu-control.php:67 -msgid "Menu locations" -msgstr "Menu locaties" - -#: wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php:47 -msgid "Automatically add new top-level pages to this menu" -msgstr "Automatisch hoofd niveau pagin's aan dit menu toevoegen" - -#: wp-includes/customize/class-wp-customize-nav-menu-control.php:56 -msgctxt "Cancel reordering menu items in Customizer" -msgid "Done" -msgstr "Klaar" - -#: wp-includes/customize/class-wp-customize-nav-menu-control.php:61 -msgid "Delete Menu" -msgstr "Menu verwijderen" - -#: wp-includes/customize/class-wp-customize-nav-menu-control.php:55 -msgctxt "Reorder menu items in Customizer" -msgid "Reorder" -msgstr "Herschikken" - -#: wp-includes/customize/class-wp-customize-nav-menu-control.php:52 -msgid "Add Items" -msgstr "Items toevoegen" - -#. translators: 1: error message, 2: line number -#: wp-includes/atomlib.php:144 -msgid "XML Error: %1$s at line %2$s" -msgstr "XML-fout: %1$s in regel %2$s" - -#: wp-includes/admin-bar.php:296 -msgid "User Dashboard: %s" -msgstr "Gebruikersdashboard: %s" - -#. translators: %s: theme name -#: wp-includes/customize/class-wp-customize-theme-control.php:96 -msgid "Active: %s" -msgstr "Actief: %s" - -#: wp-login.php:780 wp-login.php:784 -msgid "https://codex.wordpress.org/Cookies" -msgstr "https://codex.wordpress.org/Cookies" - -#: wp-includes/query.php:758 -msgid "https://codex.wordpress.org/Function_Reference/is_main_query" -msgstr "https://codex.wordpress.org/Function_Reference/is_main_query" - -#: wp-includes/admin-bar.php:137 -msgid "https://codex.wordpress.org/" -msgstr "https://codex.wordpress.org/" - -#. translators: 1: the id argument, 2: sidebar name, 3: recommended id value -#: wp-includes/widgets.php:258 -msgid "No %1$s was set in the arguments array for the \"%2$s\" sidebar. Defaulting to \"%3$s\". Manually set the %1$s to \"%3$s\" to silence this notice and keep existing sidebar content." -msgstr "Geen %1$s ingesteld voor de argumenten array voor de \"%2$s\" sidebar. \"%3$s\" als standaard ingesteld. De %1$s naar \"%3$s\" handmatig instellen om deze melding te verbergen en de bestaande inhoud van de sidebar te behouden." - -#: wp-includes/script-loader.php:534 -msgid "Connection lost or the server is busy. Please try again later." -msgstr "Verbinding verbroken of de server is bezig. Probeer het later opnieuw." - -#: wp-includes/script-loader.php:601 -msgid "Plugin updates may not complete if you navigate away from this page." -msgstr "Het bijwerken van plugins wordt wellicht niet afgerond wanneer je weg navigeert van deze pagina." - -#. translators: Plugin name and version -#: wp-includes/script-loader.php:592 -msgid "%s updated!" -msgstr "%s is met succes bijgewerkt." - -#. translators: Plugin name and version -#: wp-includes/script-loader.php:590 -msgid "Updating %s..." -msgstr "%s wordt bijgewerkt..." - -#. translators: JavaScript accessible string -#: wp-includes/script-loader.php:600 -msgid "Update canceled." -msgstr "Het bijwerken is geannuleerd." - -#. translators: Plugin name and version -#: wp-includes/script-loader.php:594 -msgid "%s update failed" -msgstr "Bijwerken van %s is mislukt" - -#: wp-includes/script-loader.php:586 -msgid "Update Failed!" -msgstr "Bijwerken mislukt!" - -#: wp-includes/customize/class-wp-customize-themes-section.php:50 -msgctxt "theme" -msgid "Change" -msgstr "Veranderen" - -#: wp-includes/script-loader.php:83 -msgid "Dismiss this notice." -msgstr "Deze waarschuwing verbergen." - -#. translators: 1: number of comments, 2: post title -#: wp-includes/theme-compat/comments.php:40 -msgid "%1$s response to %2$s" -msgid_plural "%1$s responses to %2$s" -msgstr[0] "%1$s reactie op %2$s" -msgstr[1] "%1$s reacties op %2$s" - -#: wp-includes/class-wp-customize-nav-menus.php:482 -msgid "Your theme supports %s menu. Select which menu appears in each location." -msgid_plural "Your theme supports %s menus. Select which menu appears in each location." -msgstr[0] "Je thema ondersteunt nu %s menu. Selecteer welk menu moet worden getoond." -msgstr[1] "Je thema ondersteunt nu %s menu’s. Selecteer per locatie welk menu moet worden getoond." - -#: wp-includes/class-wp-customize-nav-menus.php:480 -msgid "Your theme supports one menu. Select which menu you would like to use." -msgstr "Je thema ondersteunt één menu. Selecteer het menu dat je wilt gebruiken." - -#: wp-includes/theme.php:2030 -msgid "Customizer" -msgstr "Customizer" - -#. translators: JavaScript accessible string -#: wp-includes/script-loader.php:596 -msgid "Updating... please wait." -msgstr "Aan het bijwerken... even geduld." - -#: wp-includes/script-loader.php:584 -msgid "Updating..." -msgstr "Aan het bijwerken..." - -#: wp-includes/script-loader.php:585 -msgid "Updated!" -msgstr "Bijgewerkt!" - -#: wp-includes/taxonomy.php:3968 -msgid "Could not split shared term." -msgstr "Kon gedeelde term niet splitsen." - -#: wp-includes/taxonomy.php:382 wp-includes/taxonomy.php:383 -msgid "Taxonomy names must be between 1 and 32 characters in length." -msgstr "Taxonomie namen moeten tussen de 1 en 32 tekens lang zijn." - -#. translators: %d: nth embed found in a post -#: wp-includes/script-loader.php:537 -msgid "Suggested embed #%d" -msgstr "Aanbevolen insluiting #%d" - -#. translators: %d: nth image found in a post -#: wp-includes/script-loader.php:539 -msgid "Suggested image #%d" -msgstr "Aanbevolen afbeelding #%d" - -#: wp-includes/script-loader.php:442 -msgid "Site Preview" -msgstr "Site voorbeeld" - -#. translators: JavaScript accessible string -#: wp-includes/script-loader.php:598 -msgid "Update completed successfully." -msgstr "Bijwerken is succesvol afgerond." - -#. translators: Do not translate USERNAME, SITE_NAME, BLOG_URL, PASSWORD: those -#. are placeholders. -#: wp-includes/ms-functions.php:1440 -msgid "" -"Howdy USERNAME,\n" -"\n" -"Your new SITE_NAME site has been successfully set up at:\n" -"BLOG_URL\n" -"\n" -"You can log in to the administrator account with the following information:\n" -"\n" -"Username: USERNAME\n" -"Password: PASSWORD\n" -"Log in here: BLOG_URLwp-login.php\n" -"\n" -"We hope you enjoy your new site. Thanks!\n" -"\n" -"--The Team @ SITE_NAME" -msgstr "" -"Hallo USERNAME,\n" -"\n" -"Je nieuwe site SITE_NAME is succesvol opgezet op:\n" -"BLOG_URL\n" -"\n" -"Je kunt nu inloggen met het beheerdersaccount met de volgende informatie:\n" -"\n" -"Gebruikersnaam: USERNAME\n" -"Wachtwoord: PASSWORD\n" -"Log hier in: BLOG_URLwp-login.php\n" -"\n" -"We hopen dat je plezier beleeft met je nieuwe site. Bedankt!\n" -"\n" -"--Het team van SITE_NAME" - -#. translators: Do not translate USERNAME, PASSWORD, LOGINLINK, SITE_NAME: -#. those are placeholders. -#: wp-includes/ms-functions.php:2111 -msgid "" -"Howdy USERNAME,\n" -"\n" -"Your new account is set up.\n" -"\n" -"You can log in with the following information:\n" -"Username: USERNAME\n" -"Password: PASSWORD\n" -"LOGINLINK\n" -"\n" -"Thanks!\n" -"\n" -"--The Team @ SITE_NAME" -msgstr "" -"Hallo USERNAME,\n" -"\n" -"Je nieuwe account is aangemaakt.\n" -"\n" -"Je kunt inloggen met de volgende gegevens:\n" -"Gebruikersnaam: USERNAME\n" -"Wachtwoord: PASSWORD\n" -"LOGINLINK\n" -"\n" -"Bedankt!\n" -"\n" -"--Het team van @ SITE_NAME" - -#. translators: revision date format, see http:php.net/date -#: wp-includes/post-template.php:1607 wp-includes/post-template.php:1643 -msgctxt "revision date format" -msgid "F j, Y @ H:i:s" -msgstr "j F Y H:i:s" - -#. translators: %s: table name -#: wp-includes/ms-load.php:295 -msgid "Database tables are missing. This means that MySQL is not running, WordPress was not installed properly, or someone deleted %s. You really should look at your database now." -msgstr "Database tabellen ontbreken. Dit betekent dat MySQL niet actief is, WordPress niet correct is geïnstalleerd of dat iemand %s heeft verwijderd. Je zou nu direct naar je database moeten kijken." - -#: wp-includes/class-wp-customize-nav-menus.php:121 -#: wp-includes/class-wp-customize-nav-menus.php:338 -#: wp-includes/customize/class-wp-customize-nav-menu-item-setting.php:562 -#: wp-includes/nav-menu.php:778 -msgid "Custom Link" -msgstr "Aangepaste link" - -#: wp-includes/media.php:3315 -msgid "Drag and drop to reorder media files." -msgstr "Drag en drop om media bestanden te herschikken." - -#. translators: 1: site url, 2: table name, 3: database name -#: wp-includes/ms-load.php:301 -msgid "Could not find site %1$s. Searched for table %2$s in database %3$s. Is that right?" -msgstr "Kon %1$s site niet vinden. Gezocht in tabel %2$s in database %3$s. Klopt dat?" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: wp-includes/pluggable.php:1486 wp-includes/pluggable.php:1634 -msgid "Author: %1$s (IP: %2$s, %3$s)" -msgstr "Auteur: %1$s (IP: %2$s, %3$s)" - -#. translators: 1: website name, 2: website IP, 3: website hostname -#: wp-includes/pluggable.php:1466 wp-includes/pluggable.php:1476 -#: wp-includes/pluggable.php:1619 wp-includes/pluggable.php:1627 -msgid "Website: %1$s (IP: %2$s, %3$s)" -msgstr "Website: %1$s (IP: %2$s, %3$s)" - -#: wp-includes/post.php:1050 wp-includes/post.php:1051 -msgid "Post type names must be between 1 and 20 characters in length." -msgstr "Namen van bericht typen moeten tussen de 1 en 20 tekens zijn." - -#: wp-includes/widgets/class-wp-widget-archives.php:87 -msgid "Select Post" -msgstr "Bericht selecteren" - -#: wp-includes/widgets/class-wp-widget-archives.php:84 -msgid "Select Week" -msgstr "Week selecteren" - -#: wp-includes/widgets/class-wp-widget-archives.php:81 -msgid "Select Day" -msgstr "Dag selecteren" - -#: wp-includes/widgets/class-wp-widget-archives.php:75 -msgid "Select Year" -msgstr "Jaar selecteren" - -#. translators: 1: 'siteurl'/'home' argument, 2: bloginfo() function name, 3: -#. 'url' argument -#: wp-includes/general-template.php:634 -msgid "The %1$s option is deprecated for the family of %2$s functions. Use the %3$s option instead." -msgstr "De %1$s optie wordt niet meer ondersteund voor de familie van %2$s functies. Gebruik de %3$s optie." - -#. translators: 1: 'text_direction' argument, 2: bloginfo() function name, 3: -#. is_rtl() function name -#: wp-includes/general-template.php:700 -msgid "The %1$s option is deprecated for the family of %2$s functions. Use the %3$s function instead." -msgstr "De %1$s optie wordt niet meer ondersteund voor de familie van %2$s functies. Gebruik de %3$s functie." - -#. translators: %s: post title -#: wp-includes/comment-template.php:1463 -msgid "No Comments on %s" -msgstr "Geen reacties op %s" - -#. translators: %s: post title -#: wp-includes/comment-template.php:1479 -msgid "Comments Off on %s" -msgstr "Reacties staat uit voor %s" - -#. translators: 1: Number of comments 2: post title -#: wp-includes/comment-template.php:1473 -msgid "%1$s Comment on %2$s" -msgid_plural "%1$s Comments on %2$s" -msgstr[0] "%1$s Reactie op %2$s" -msgstr[1] "%1$s Reacties op %2$s" - -#. translators: %s: post title -#: wp-includes/comment-template.php:1468 -msgid "1 Comment on %s" -msgstr "1 Reactie op %s" - -#: wp-includes/class-wp-customize-nav-menus.php:756 -#: wp-includes/class-wp-editor.php:1411 wp-includes/media-template.php:813 -msgid "Link Text" -msgstr "Link tekst" - -#: wp-includes/customize/class-wp-customize-theme-control.php:102 -#: wp-includes/customize/class-wp-customize-themes-section.php:70 -msgid "Theme Details" -msgstr "Themadetails" - -#: wp-includes/customize/class-wp-customize-theme-control.php:87 -msgid "Live Preview" -msgstr "Live voorbeeld" - -#: wp-includes/link-template.php:2487 -msgctxt "previous post" -msgid "Previous" -msgstr "Vorige" - -#: wp-includes/link-template.php:2488 -msgctxt "next post" -msgid "Next" -msgstr "Volgende" - -#: wp-includes/taxonomy.php:536 -msgid "No categories found." -msgstr "Geen categorieën gevonden." - -#: wp-includes/class-wp-editor.php:1034 wp-includes/script-loader.php:99 -msgid "Distraction-free writing mode" -msgstr "Afleidingsvrije-modus" - -#. translators: 1: Theme support 2: hook name -#: wp-includes/theme.php:1681 -msgid "Theme support for %1$s should be registered before the %2$s hook." -msgstr "Themaondersteuning voor %1$s moet geregistreerd worden voor de hook %2$s." - -#: wp-includes/class-wp-customize-widgets.php:674 -msgid "Widget moved up" -msgstr "Widget omhoog verplaatsen" - -#: wp-includes/class-wp-customize-widgets.php:675 -msgid "Widget moved down" -msgstr "Widget omlaag verplaatsen" - -#: wp-includes/class-wp-editor.php:1055 -msgid "To move focus to other buttons use Tab or the arrow keys. To return focus to the editor press Escape or use one of the buttons." -msgstr "Maak gebruik van tab-toets of pijltjestoetsen om de focus naar andere knoppen te verplaatsen. Druk op Escape of maak gebruik van één van de knoppen om de focus terug te krijgen op de editor." - -#: wp-includes/class-wp-editor.php:1047 -msgid "Elements path" -msgstr "Element-pad" - -#: wp-includes/class-wp-editor.php:1046 -msgid "Editor toolbar" -msgstr "Bewerker-toolbar" - -#: wp-includes/class-wp-editor.php:1045 -msgid "Editor menu (when enabled)" -msgstr "Bewerker-menu (als ingeschakeld)" - -#: wp-includes/class-wp-editor.php:1043 -msgid "Focus shortcuts:" -msgstr "Focus sneltoets:" - -#: wp-includes/class-wp-editor.php:1016 -msgid "Rich Text Area. Press Alt-Shift-H for help" -msgstr "Verrijkt tekstgebied. Klik Alt-Shift-H voor hulp" - -#. translators: 1: month, 2: day of month -#: wp-includes/date.php:458 -msgid "The following values do not describe a valid date: month %1$s, day %2$s." -msgstr "De volgende waarde beschrijft geen geldige datum: maand %1$s, dag %2$s." - -#. translators: %s: database access abstraction class, usually wpdb or a class -#. extending wpdb -#: wp-includes/wp-db.php:1136 -msgid "%s must set a database connection for use with escaping." -msgstr "%s moet een databaseconnectie instellen voor het gebruik van 'escaping'." - -#: wp-includes/theme.php:1550 -msgid "You need to pass an array of types." -msgstr "Je moet een array van types meegeven." - -#: wp-includes/taxonomy.php:2649 -msgid "A term with the name provided already exists in this taxonomy." -msgstr "Een term met deze naam en slug bestaat al in deze taxonomie." - -#: wp-includes/pluggable.php:1490 -msgid "You can see all comments on this post here:" -msgstr "Hier kun je alle reacties op dit bericht zien:" - -#: wp-includes/link-template.php:2434 wp-includes/link-template.php:2489 -#: wp-includes/link-template.php:2534 -msgid "Posts navigation" -msgstr "Berichtnavigatie" - -#: wp-includes/pluggable.php:1468 wp-includes/pluggable.php:1478 -#: wp-includes/pluggable.php:1489 wp-includes/pluggable.php:1637 -msgid "Comment: %s" -msgstr "Reactie: %s" - -#: wp-includes/pluggable.php:1467 wp-includes/pluggable.php:1477 -#: wp-includes/pluggable.php:1488 wp-includes/pluggable.php:1620 -#: wp-includes/pluggable.php:1628 wp-includes/pluggable.php:1636 -msgid "URL: %s" -msgstr "URL: %s" - -#: wp-includes/media.php:3333 -msgctxt "noun" -msgid "Trash" -msgstr "Prullenbak" - -#: wp-includes/link-template.php:2433 -msgid "Newer posts" -msgstr "Nieuwere berichten" - -#: wp-includes/link-template.php:2432 -msgid "Older posts" -msgstr "Oudere berichten" - -#: wp-includes/l10n.php:1033 -msgctxt "translations" -msgid "Available" -msgstr "Beschikbaar" - -#: wp-includes/l10n.php:1015 -msgctxt "translations" -msgid "Installed" -msgstr "Geïnstalleerd" - -#: wp-includes/media-template.php:591 -msgid "Edit Selection" -msgstr "Selectie bewerken" - -#: wp-includes/media-template.php:433 wp-includes/media-template.php:534 -msgctxt "verb" -msgid "Trash" -msgstr "Verwijderen" - -#: wp-includes/pluggable.php:1479 -msgid "You can see all pingbacks on this post here:" -msgstr "Hier kun je alle pingbacks op dit bericht zien:" - -#: wp-includes/pluggable.php:1469 -msgid "You can see all trackbacks on this post here:" -msgstr "Hier kun je alle trackbacks op dit bericht zien:" - -#: wp-includes/class-wp-editor.php:987 -msgctxt "horizontal table cell alignment" -msgid "H Align" -msgstr "H-uitlijning" - -#: wp-includes/class-wp-editor.php:992 -msgctxt "vertical table cell alignment" -msgid "V Align" -msgstr "V-uitlijning" - -#: wp-includes/general-template.php:1359 -msgid "Month: %s" -msgstr "Maand: %s" - -#: wp-includes/general-template.php:1361 -msgid "Day: %s" -msgstr "Dag: %s" - -#: wp-includes/general-template.php:1357 -msgid "Year: %s" -msgstr "Jaar: %s" - -#: wp-includes/general-template.php:1355 -msgid "Author: %s" -msgstr "Auteur: %s" - -#: wp-includes/general-template.php:1351 -msgid "Category: %s" -msgstr "Categorie: %s" - -#: wp-includes/class-wp-editor.php:1035 -msgid "No alignment" -msgstr "Geen uitlijning" - -#: wp-includes/general-template.php:1383 -msgid "Archives: %s" -msgstr "Archieven: %s" - -#. translators: 1: Taxonomy singular name, 2: Current taxonomy term -#: wp-includes/general-template.php:1387 -msgid "%1$s: %2$s" -msgstr "%1$s: %2$s" - -#: wp-includes/general-template.php:1378 -msgctxt "post format archive title" -msgid "Audio" -msgstr "Audio" - -#: wp-includes/general-template.php:1380 -msgctxt "post format archive title" -msgid "Chats" -msgstr "Gesprekken" - -#: wp-includes/general-template.php:1376 -msgctxt "post format archive title" -msgid "Statuses" -msgstr "Statussen" - -#: wp-includes/general-template.php:1374 -msgctxt "post format archive title" -msgid "Links" -msgstr "Links" - -#: wp-includes/general-template.php:1370 -msgctxt "post format archive title" -msgid "Videos" -msgstr "Video's" - -#: wp-includes/general-template.php:1366 -msgctxt "post format archive title" -msgid "Galleries" -msgstr "Galerijen" - -#: wp-includes/general-template.php:1368 -msgctxt "post format archive title" -msgid "Images" -msgstr "Afbeeldingen" - -#: wp-includes/class-wp-editor.php:958 -msgid "Border color" -msgstr "Randkleur" - -#: wp-includes/general-template.php:1361 wp-includes/general-template.php:1949 -msgctxt "daily archives date format" -msgid "F j, Y" -msgstr "j F Y" - -#: wp-includes/general-template.php:1353 -msgid "Tag: %s" -msgstr "Tag: %s" - -#: wp-includes/functions.wp-styles.php:87 -msgid "Do not pass style tags to wp_add_inline_style()." -msgstr "Geef stijltags niet door aan wp_add_inline_style()." - -#. translators: 1: year, 2: month, 3: day of month -#: wp-includes/date.php:441 -msgid "The following values do not describe a valid date: year %1$s, month %2$s, day %3$s." -msgstr "De volgende waarden beschrijven geen geldige datum: dag %3$s, maand %2$s, jaar %1$s." - -#: wp-includes/comment-template.php:1570 -msgid "Reply to %s" -msgstr "Antwoord op %s" - -#. translators: Date query invalid date message: 1: invalid value, 2: type of -#. value, 3: minimum valid value, 4: maximum valid value -#: wp-includes/date.php:411 -msgid "Invalid value %1$s for %2$s. Expected value should be between %3$s and %4$s." -msgstr "Ongeldige waarde %1$s voor %2$s. Verwachte waarde moet liggen tussen %3$s en %4$s." - -#: wp-includes/general-template.php:1364 -msgctxt "post format archive title" -msgid "Asides" -msgstr "Zijdelings" - -#: wp-includes/general-template.php:1372 -msgctxt "post format archive title" -msgid "Quotes" -msgstr "Citaten" - -#: wp-includes/class-wp-editor.php:950 -msgid "Add to Dictionary" -msgstr "Aan woordenboek toevoegen" - -#: wp-includes/customize/class-wp-customize-media-control.php:63 -msgid "No file selected" -msgstr "Geen bestand geselecteerd" - -#: wp-includes/class-wp-editor.php:932 -msgid "No color" -msgstr "Geen kleur" - -#: wp-includes/class-wp-editor.php:931 -msgctxt "label for custom color" -msgid "Custom..." -msgstr "Aangepast..." - -#: wp-includes/class-wp-editor.php:929 -msgid "Color" -msgstr "Kleur" - -#: wp-includes/class-wp-editor.php:930 -msgid "Custom color" -msgstr "Aangepaste kleur" - -#: wp-includes/customize/class-wp-customize-image-control.php:39 -msgid "No image selected" -msgstr "Geen afbeelding geselecteerd" - -#: wp-includes/customize/class-wp-customize-image-control.php:35 -#: wp-includes/customize/class-wp-customize-image-control.php:40 -msgid "Select Image" -msgstr "Afbeelding selecteren" - -#: wp-includes/customize/class-wp-customize-media-control.php:65 -msgid "Choose File" -msgstr "Bestand kiezen" - -#: wp-includes/customize/class-wp-customize-media-control.php:60 -msgid "Change File" -msgstr "Bestand wijzigen" - -#: wp-includes/post.php:58 -msgctxt "add new media" -msgid "Add New" -msgstr "Nieuw toevoegen" - -#: wp-includes/post.php:21 -msgctxt "add new on admin bar" -msgid "Post" -msgstr "Bericht" - -#: wp-includes/post.php:38 -msgctxt "add new on admin bar" -msgid "Page" -msgstr "Pagina" - -#: wp-includes/admin-bar.php:637 -msgctxt "add new from admin bar" -msgid "Link" -msgstr "Link" - -#: wp-includes/post.php:56 -msgctxt "post type general name" -msgid "Media" -msgstr "Media" - -#: wp-includes/class-wp-editor.php:1027 -msgctxt "TinyMCE menu" -msgid "Format" -msgstr "Stijl" - -#: wp-includes/class-wp-editor.php:868 -msgctxt "list style" -msgid "Default" -msgstr "Standaard" - -#: wp-login.php:850 -msgid "You have successfully updated WordPress! Please log back in to see what’s new." -msgstr "WordPress is succesvol bijgewerkt! Opnieuw inloggen om te zien wat er nieuw is." - -#: wp-includes/media.php:3340 -msgid "Trash Selected" -msgstr "Selectie verwijderen" - -#: wp-includes/media.php:3341 -msgid "Untrash Selected" -msgstr "Selectie terugzetten" - -#: wp-includes/media-template.php:431 wp-includes/media-template.php:532 -msgid "Untrash" -msgstr "Terugzetten" - -#: wp-includes/media.php:3337 -msgid "" -"You are about to trash these items.\n" -" 'Cancel' to stop, 'OK' to delete." -msgstr "" -"Je staat op het punt deze items te verwijderen.\n" -"'Annuleren' om te stoppen, 'OK' om te verwijderen." - -#: wp-includes/class-wp-customize-panel.php:348 -msgid "Press return or enter to open this panel" -msgstr "Druk op return of enter om dit paneel te openen" - -#: wp-includes/media.php:3339 -msgid "Cancel Selection" -msgstr "Selectie annuleren" - -#: wp-includes/media.php:3342 -msgid "Delete Selected" -msgstr "Selectie verwijderen" - -#: wp-includes/media.php:3338 -msgid "Bulk Select" -msgstr "Massaselectie" - -#. translators: %s: taxonomy label, %l: list of terms formatted as per -#. $term_template -#: wp-includes/taxonomy.php:4454 -msgid "%s: %l." -msgstr "%s: %l" - -#: wp-includes/class-wp-customize-nav-menus.php:336 -#: wp-includes/script-loader.php:645 -msgctxt "missing menu item navigation label" -msgid "(no label)" -msgstr "(geen label)" - -#: wp-includes/media.php:2104 -msgid "Bitrate" -msgstr "Bitrate" - -#: wp-includes/ms-load.php:92 -msgid "This site is no longer available." -msgstr "Deze site is niet langer beschikbaar." - -#: wp-includes/media-template.php:338 -msgid "File name:" -msgstr "Bestandsnaam:" - -#: wp-includes/media-template.php:339 -msgid "File type:" -msgstr "Bestandstype:" - -#: wp-includes/media-template.php:342 -msgid "File size:" -msgstr "Bestandsgrootte:" - -#: wp-includes/media-template.php:345 -msgid "Dimensions:" -msgstr "Afmetingen:" - -#: wp-includes/media-template.php:407 -msgid "Uploaded By" -msgstr "Geüpload door" - -#: wp-includes/media-template.php:340 -msgid "Uploaded on:" -msgstr "Geüpload op: " - -#: wp-includes/media-template.php:412 -msgid "Uploaded To" -msgstr "Geüpload naar" - -#: wp-includes/media.php:3329 -msgid "All dates" -msgstr "Alle datums" - -#: wp-includes/media-template.php:355 -msgid "Bitrate:" -msgstr "Bitrate:" - -#: wp-includes/media.php:2105 -msgid "Bitrate Mode" -msgstr "Bitratemodus" - -#: wp-includes/class-wp-editor.php:1033 -msgid "Read more..." -msgstr "Meer lezen..." - -#: wp-includes/media-template.php:166 -msgid "Close media panel" -msgstr "Mediapaneel sluiten" - -#: wp-includes/media-template.php:187 -msgid "Close uploader" -msgstr "Uploader sluiten" - -#: wp-includes/media-template.php:233 -msgid "Maximum upload file size: %s." -msgstr "Maximale bestandsgrootte van upload: %s." - -#: wp-includes/media-template.php:252 -msgid "List View" -msgstr "Lijstweergave" - -#: wp-includes/media-template.php:255 -msgid "Grid View" -msgstr "Rasterweergave" - -#: wp-includes/media.php:3345 -msgid "Filter by date" -msgstr "Op datum filteren" - -#: wp-includes/media.php:3346 -msgid "Filter by type" -msgstr "Op type filteren" - -#: wp-includes/media.php:3347 -msgid "Search Media" -msgstr "Media zoeken" - -#: wp-includes/media-template.php:426 -msgid "Edit more details" -msgstr "Overige details bewerken" - -#: wp-includes/media-template.php:281 -msgid "Edit previous media item" -msgstr "Vorige media-item aanpassen" - -#: wp-includes/media-template.php:282 -msgid "Edit next media item" -msgstr "Volgende media-item aanpassen" - -#: wp-includes/class-wp-editor.php:1018 -msgid "Your browser does not support direct access to the clipboard. Please use keyboard shortcuts or your browser’s edit menu instead." -msgstr "Je browser ondersteunt geen directe toegang tot het klembord. Gebruik in plaats daarvan een sneltoets of het menu bewerken van je browser." - -#: wp-includes/class-wp-editor.php:1435 -msgid "Search or use up and down arrow keys to select an item." -msgstr "Zoek, of gebruik de pijltjestoetsen omhoog en omlaag om een item te selecteren." - -#: wp-includes/media.php:3332 -msgid "Unattached" -msgstr "Niet-gekoppeld" - -#: wp-includes/media.php:3336 wp-includes/script-loader.php:82 -msgid "" -"You are about to permanently delete these items.\n" -" 'Cancel' to stop, 'OK' to delete." -msgstr "" -"Je staat op het punt om deze items permanent te verwijderen.\n" -"'Annuleren' om te stoppen, 'OK', om te verwijderen." - -#: wp-includes/media-template.php:424 -msgid "View attachment page" -msgstr "Bijlagepagina tonen" - -#: wp-includes/class-wp-customize-widgets.php:360 -msgid "Widgets are independent sections of content that can be placed into widgetized areas provided by your theme (commonly called sidebars)." -msgstr "Widgets zijn onafhankelijke gedeeltes met inhoud die in de widgetruimtes van je thema geplaatst kunnen worden." - -#: wp-includes/customize/class-wp-customize-header-image-control.php:179 -msgid "While you can crop images to your liking after clicking Add new image, your theme recommends a header size of %s × %s pixels." -msgstr "Je kunt een afbeelding naar wens bijsnijden na het klikken op Nieuwe toevoegen. Het thema beveelt een afmeting van %s × %s pixels aan voor de kop." - -#: wp-includes/customize/class-wp-customize-header-image-control.php:181 -msgid "While you can crop images to your liking after clicking Add new image, your theme recommends a header width of %s pixels." -msgstr "Je kunt afbeelding bijsnijden naar wens na het klikken op Nieuwe afbeelding toevoegen, maar het thema beveelt een afmeting van %s pixels aan voor de kop." - -#: wp-includes/customize/class-wp-customize-header-image-control.php:183 -msgid "While you can crop images to your liking after clicking Add new image, your theme recommends a header height of %s pixels." -msgstr "Hoewel je afbeeldingen kunt bijsnijden na het klikken op Nieuwe toevoegen, beveelt je thema een hoogte van de afbeelding aan van %s pixels." - -#: wp-includes/comment.php:2795 -msgid "ERROR: The comment could not be saved. Please try again later." -msgstr "FOUT: de reactie kon niet worden opgeslagen. Probeer het later nog een keer." - -#. translators: %s is the site/panel title in the Customizer -#. Translators: %s is the site/panel title in the Customizer. -#: wp-includes/class-wp-customize-panel.php:373 -#: wp-includes/customize/class-wp-customize-nav-menus-panel.php:88 -msgid "You are customizing %s" -msgstr "Je bent %s aan het aanpassen" - -#: wp-includes/update.php:123 wp-includes/update.php:303 -#: wp-includes/update.php:467 -msgid "(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)" -msgstr "(WordPress kon geen beveiligde verbinding maken met WordPress.org. Neem contact op met de server beheerder.)" - -#: wp-includes/class-wp-customize-widgets.php:1065 -msgid "Shift-click to edit this widget." -msgstr "Shift-klik om deze widget te bewerken." - -#: wp-includes/class-wp-editor.php:831 -msgctxt "HTML tag" -msgid "Address" -msgstr "Address" - -#: wp-includes/class-wp-editor.php:1015 -msgid "If you’re looking to paste rich content from Microsoft Word, try turning this option off. The editor will clean up text pasted from Word automatically." -msgstr "Probeer deze optie eens uit te zetten als je tekst wilt kopiëren van Microsoft Word. De editor zal opgemaakte tekst automatisch opschonen na het plakken vanuit Word." - -#: wp-includes/class-wp-editor.php:1040 -msgid "Keyboard Shortcuts" -msgstr "Toetscombinaties" - -#: wp-login.php:783 -msgid "ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress." -msgstr "FOUT: Cookies zijn geblokkeerd of niet ondersteund door je browser. Je moet cookies inschakelen om WordPress te gebruiken." - -#: wp-login.php:779 -msgid "ERROR: Cookies are blocked due to unexpected output. For help, please see this documentation or try the support forums." -msgstr "FOUT: Cookies zijn geblokkeerd vanwege onverwachte uitvoer. Bekijk voor hulp deze documentatie of probeer de support forums." - -#: wp-includes/class-wp-editor.php:991 -msgctxt "table cell alignment attribute" -msgid "None" -msgstr "Geen" - -#: wp-includes/media-template.php:383 wp-includes/media-template.php:562 -#: wp-includes/media.php:2095 -msgid "Artist" -msgstr "Artiest" - -#: wp-includes/media-template.php:384 wp-includes/media-template.php:563 -#: wp-includes/media.php:2096 -msgid "Album" -msgstr "Album" - -#: wp-includes/media.php:2100 -msgid "Genre" -msgstr "Genre" - -#: wp-includes/media.php:2101 -msgid "Year" -msgstr "Jaar" - -#: wp-includes/media.php:2102 -msgctxt "video or audio" -msgid "Length" -msgstr "Duur" - -#: wp-includes/media.php:3384 -msgid "There has been an error cropping your image." -msgstr "Er is een fout opgetreden met het bijsnijden van je afbeelding." - -#: wp-includes/media-template.php:788 -msgid "Show Video List" -msgstr "Videolijst tonen" - -#: wp-includes/media-template.php:884 -msgid "Edit Original" -msgstr "Origineel bewerken" - -#: wp-includes/class-wp-editor.php:843 -msgid "Font Family" -msgstr "Lettertype" - -#: wp-includes/class-wp-editor.php:981 -msgid "Split table cell" -msgstr "Tabelcellen splitsen" - -#: wp-includes/media-template.php:952 -msgid "Custom Size" -msgstr "Aangepaste afmetingen" - -#: wp-includes/media-template.php:238 wp-includes/media.php:3383 -msgid "Suggested image dimensions:" -msgstr "Voorgestelde afbeeldingsafmetingen:" - -#: wp-includes/media.php:3408 -msgid "Add to Audio Playlist" -msgstr "Aan audio-afspeellijst toevoegen" - -#: wp-includes/media.php:3407 -msgid "Add to audio playlist" -msgstr "Aan audio-afspeellijst toevoegen" - -#: wp-includes/media.php:3406 -msgid "Update audio playlist" -msgstr "Audio-afspeellijst bijwerken" - -#: wp-includes/media.php:3405 -msgid "Insert audio playlist" -msgstr "Audio-afspeellijst invoegen" - -#: wp-includes/media.php:3404 -msgid "← Cancel Audio Playlist" -msgstr "← Audio-afspeellijst annuleren" - -#: wp-includes/media.php:3403 -msgid "Edit Audio Playlist" -msgstr "Audio-afspeellijst bewerken" - -#: wp-includes/media-template.php:995 -msgid "Image CSS Class" -msgstr "CSS-klasse afbeelding" - -#: wp-includes/media-template.php:1008 -msgid "Link CSS Class" -msgstr "CSS-klasse link" - -#: wp-includes/media-template.php:987 -msgid "Advanced Options" -msgstr "Geavanceerde instellingen" - -#: wp-includes/class-wp-editor.php:844 -msgid "Font Sizes" -msgstr "Lettergrootte" - -#: wp-includes/media-template.php:905 -msgid "Display Settings" -msgstr "Weergave-instellingen" - -#: wp-includes/media-template.php:991 -msgid "Image Title Attribute" -msgstr "Attribuut afbeeldingstitel" - -#: wp-includes/customize/class-wp-widget-area-customize-control.php:65 -msgctxt "Cancel reordering widgets in Customizer" -msgid "Done" -msgstr "Klaar" - -#: wp-includes/class-wp-customize-widgets.php:648 -msgctxt "Move widget" -msgid "Move" -msgstr "Verplaatsen" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:112 -msgid "Set image" -msgstr "Afbeelding instellen" - -#: wp-includes/customize/class-wp-widget-area-customize-control.php:64 -msgctxt "Reorder widgets in Customizer" -msgid "Reorder" -msgstr "Volgorde aanpassen" - -#: wp-includes/class-wp-customize-widgets.php:722 -msgid "Search Widgets" -msgstr "Widgets zoeken" - -#: wp-includes/class-wp-customize-widgets.php:723 -msgid "Search widgets…" -msgstr "Widgets zoeken…" - -#: wp-includes/class-wp-editor.php:816 -msgctxt "TinyMCE" -msgid "Headings" -msgstr "Koppen" - -#: wp-includes/class-wp-customize-widgets.php:672 -msgid "Trash widget by moving it to the inactive widgets sidebar." -msgstr "Widget verwijderen door deze naar de inactieve widgets sidebar te verplaatsen." - -#: wp-includes/class-wp-customize-widgets.php:670 -msgid "Save and preview changes before publishing them." -msgstr "Wijzigingen opslaan en bekijken voor het publiceren." - -#: wp-includes/media-template.php:1077 wp-includes/media-template.php:1166 -msgctxt "auto preload" -msgid "Auto" -msgstr "Automatisch" - -#: wp-includes/media-template.php:1183 -msgid "Tracks (subtitles, captions, descriptions, chapters, or metadata)" -msgstr "Sporen (ondertiteling, koppen, beschrijvingen, hoofdstukken of metadata)" - -#: wp-includes/media.php:3382 -msgid "Cropping…" -msgstr "Bijsnijden…" - -#: wp-includes/class-wp-customize-widgets.php:639 -msgid "Move to another area…" -msgstr "Naar ander gebied verplaatsen…" - -#: wp-includes/class-wp-editor.php:867 -msgctxt "list style" -msgid "Square" -msgstr "Vierkant" - -#: wp-includes/class-wp-editor.php:869 -msgctxt "list style" -msgid "Circle" -msgstr "Cirkel" - -#: wp-includes/class-wp-editor.php:878 -msgctxt "Name of link anchor (TinyMCE)" -msgid "Name" -msgstr "Naam" - -#: wp-includes/class-wp-editor.php:879 -msgctxt "Link anchor (TinyMCE)" -msgid "Anchor" -msgstr "Anker" - -#: wp-includes/class-wp-editor.php:880 -msgctxt "Link anchors (TinyMCE)" -msgid "Anchors" -msgstr "Ankers" - -#: wp-includes/class-wp-editor.php:937 -msgctxt "find/replace" -msgid "Next" -msgstr "Volgende" - -#. translators: previous -#: wp-includes/class-wp-editor.php:939 -msgctxt "find/replace" -msgid "Prev" -msgstr "Vorige" - -#: wp-includes/class-wp-editor.php:1025 -msgctxt "TinyMCE menu" -msgid "View" -msgstr "Bekijken" - -#: wp-includes/class-wp-editor.php:1026 -msgctxt "TinyMCE menu" -msgid "Table" -msgstr "Tabel" - -#: wp-includes/class-wp-editor.php:828 -msgctxt "HTML tag" -msgid "Div" -msgstr "Div" - -#: wp-includes/class-wp-editor.php:829 -msgctxt "HTML tag" -msgid "Pre" -msgstr "Pre" - -#: wp-includes/class-wp-editor.php:841 -msgctxt "editor button" -msgid "Code" -msgstr "Code" - -#: wp-includes/class-wp-editor.php:962 -msgctxt "table column" -msgid "Column" -msgstr "Kolom" - -#: wp-includes/class-wp-editor.php:1003 -msgctxt "table cell scope attribute" -msgid "Scope" -msgstr "Bereik" - -#: wp-includes/class-wp-editor.php:865 wp-includes/script-loader.php:112 -msgid "Bulleted list" -msgstr "Opsommingslijst" - -#: wp-includes/class-wp-editor.php:870 -msgctxt "list style" -msgid "Disc" -msgstr "Schijf" - -#. translators: block tags -#: wp-includes/class-wp-editor.php:825 -msgctxt "TinyMCE" -msgid "Blocks" -msgstr "Blokken" - -#: wp-includes/class-wp-editor.php:936 -msgctxt "find/replace" -msgid "Replace" -msgstr "Vervangen" - -#: wp-includes/class-wp-editor.php:943 -msgctxt "find/replace" -msgid "Find" -msgstr "Zoeken" - -#: wp-includes/class-wp-editor.php:944 -msgctxt "find/replace" -msgid "Replace all" -msgstr "Alles vervangen" - -#: wp-includes/class-wp-editor.php:949 -msgctxt "spellcheck" -msgid "Ignore" -msgstr "Negeren" - -#: wp-includes/class-wp-editor.php:963 -msgctxt "table columns" -msgid "Cols" -msgstr "Kolommen" - -#: wp-includes/class-wp-editor.php:964 -msgctxt "table cell" -msgid "Cell" -msgstr "Cel" - -#: wp-includes/class-wp-editor.php:947 -msgctxt "spellcheck" -msgid "Finish" -msgstr "Afronden" - -#: wp-includes/class-wp-editor.php:948 -msgctxt "spellcheck" -msgid "Ignore all" -msgstr "Alles negeren" - -#: wp-includes/class-wp-editor.php:940 -msgctxt "find/replace" -msgid "Whole words" -msgstr "Volledige woorden" - -#. translators: word count -#: wp-includes/class-wp-editor.php:1014 -msgid "Words: %s" -msgstr "Woorden: %s" - -#: wp-includes/class-wp-editor.php:1021 -msgctxt "TinyMCE menu" -msgid "Insert" -msgstr "Invoegen" - -#: wp-includes/class-wp-editor.php:1022 -msgctxt "TinyMCE menu" -msgid "File" -msgstr "Bestand" - -#: wp-includes/class-wp-editor.php:1023 -msgctxt "TinyMCE menu" -msgid "Edit" -msgstr "Bewerken" - -#: wp-includes/class-wp-editor.php:1006 -msgctxt "TinyMCE" -msgid "Templates" -msgstr "Sjablonen" - -#: wp-includes/class-wp-editor.php:968 -msgctxt "table footer" -msgid "Footer" -msgstr "Footer" - -#: wp-includes/class-wp-editor.php:874 -msgctxt "list style" -msgid "Upper Roman" -msgstr "Harvard" - -#: wp-includes/class-wp-editor.php:872 -msgctxt "list style" -msgid "Lower Alpha" -msgstr "Alfabetisch" - -#: wp-includes/class-wp-editor.php:873 -msgctxt "list style" -msgid "Upper Alpha" -msgstr "Hoofdletter alfabetisch" - -#: wp-includes/class-wp-editor.php:1024 -msgctxt "TinyMCE menu" -msgid "Tools" -msgstr "Bewerken" - -#: wp-includes/class-wp-editor.php:1010 -msgctxt "editor button" -msgid "Show blocks" -msgstr "Blokken weergeven" - -#: wp-includes/class-wp-editor.php:833 -msgctxt "HTML elements" -msgid "Inline" -msgstr "Inline" - -#: wp-includes/class-wp-editor.php:967 -msgctxt "table body" -msgid "Body" -msgstr "Body" - -#: wp-includes/class-wp-editor.php:875 -msgctxt "list style" -msgid "Lower Roman" -msgstr "Klein Romeins" - -#: wp-includes/class-wp-editor.php:871 -msgctxt "list style" -msgid "Lower Greek" -msgstr "Klein Grieks" - -#: wp-includes/class-wp-editor.php:966 -msgctxt "table header" -msgid "Header" -msgstr "Header" - -#: wp-includes/class-wp-editor.php:914 -msgctxt "editor button" -msgid "Left to right" -msgstr "Van links naar rechts" - -#: wp-includes/class-wp-editor.php:913 -msgctxt "editor button" -msgid "Right to left" -msgstr "Van rechts naar links" - -#: wp-includes/class-wp-editor.php:942 -msgctxt "find/replace" -msgid "Replace with" -msgstr "Vervangen door" - -#: wp-includes/class-wp-editor.php:814 -msgctxt "TinyMCE" -msgid "Formats" -msgstr "Stijlen" - -#: wp-includes/class-wp-editor.php:1005 -msgctxt "TinyMCE" -msgid "Insert template" -msgstr "Template invoegen" - -#: wp-includes/media-template.php:1065 wp-includes/media-template.php:1147 -msgid "Add alternate sources for maximum HTML5 playback:" -msgstr "Voeg alternatieve bronnen toe voor betere HTML5-ondersteuning:" - -#. translators: used to join items in a list with more than 2 items -#: wp-includes/formatting.php:4068 -msgid "%s, %s" -msgstr "%s, %s" - -#. translators: used to join last two items in a list with more than 2 times -#: wp-includes/formatting.php:4070 -msgid "%s, and %s" -msgstr "%s, en %s" - -#. translators: used to join items in a list with only 2 items -#: wp-includes/formatting.php:4072 -msgid "%s and %s" -msgstr "%s en %s" - -#: wp-includes/class-wp-customize-nav-menus.php:716 -#: wp-includes/class-wp-customize-panel.php:369 -#: wp-includes/class-wp-customize-section.php:356 -#: wp-includes/class-wp-customize-widgets.php:711 -#: wp-includes/customize/class-wp-customize-nav-menus-panel.php:82 -#: wp-includes/media.php:3309 -msgid "Back" -msgstr "Terug" - -#: wp-includes/media-template.php:807 -msgid "Show Images" -msgstr "Afbeeldingen weergeven" - -#: wp-includes/media.php:3373 wp-includes/media.php:3390 -#: wp-includes/media.php:3396 -msgid "Cancel Edit" -msgstr "Bewerken annuleren" - -#: wp-includes/media-template.php:1085 wp-includes/media-template.php:1174 -msgid "Autoplay" -msgstr "Automatisch afspelen" - -#: wp-includes/media.php:3394 -msgid "Replace Video" -msgstr "Video vervangen" - -#: wp-includes/customize/class-wp-customize-image-control.php:41 -#: wp-includes/media.php:3377 -msgid "Choose Image" -msgstr "Afbeelding kiezen" - -#: wp-includes/media-template.php:790 -msgid "Show Tracklist" -msgstr "Afspeellijst weergeven" - -#: wp-includes/media.php:3325 -msgid "Create a new playlist" -msgstr "Een nieuwe afspeellijst aanmaken" - -#: wp-includes/media.php:3326 -msgid "Create a new video playlist" -msgstr "Een nieuwe video afspeellijst aanmaken" - -#: wp-includes/media.php:3372 -msgid "Replace Image" -msgstr "Afbeelding vervangen" - -#: wp-includes/media.php:3378 -msgid "Select and Crop" -msgstr "Selecteren en bijsnijden" - -#: wp-includes/media.php:3379 -msgid "Skip Cropping" -msgstr "Bijsnijden overslaan" - -#: wp-includes/media.php:3380 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" - -#: wp-includes/widgets/class-wp-widget-search.php:27 -msgctxt "Search widget" -msgid "Search" -msgstr "Zoeken" - -#: wp-includes/media.php:3381 -msgid "Crop your image" -msgstr "Afbeelding bijsnijden" - -#: wp-includes/media.php:3401 -msgid "Drag and drop to reorder tracks." -msgstr "Gebruik drag en drop om de volgorde aan te passen." - -#: wp-includes/media-template.php:1078 wp-includes/media-template.php:1167 -msgid "Metadata" -msgstr "Metadata" - -#: wp-includes/media-template.php:799 -msgid "Show Artist Name in Tracklist" -msgstr "Artiest weergeven in afspeellijst" - -#: wp-includes/media-template.php:1196 -msgid "There are no associated subtitles." -msgstr "Geen ondertitels beschikbaar." - -#: wp-includes/wp-db.php:1252 -msgid "The query argument of %s must have a placeholder." -msgstr "Het query argument %s moet een waarde bevatten." - -#: wp-includes/media-template.php:1158 -msgid "Poster Image" -msgstr "Posterafbeelding" - -#: wp-includes/media.php:3397 -msgid "Select Poster Image" -msgstr "Posterafbeelding selecteren" - -#: wp-includes/nav-menu.php:365 -msgid "Invalid menu ID." -msgstr "Ongeldig menu-ID" - -#: wp-includes/media.php:3388 -msgid "Replace Audio" -msgstr "Audio vervangen" - -#: wp-includes/media.php:3389 -msgid "Add Audio Source" -msgstr "Audiobron toevoegen" - -#: wp-includes/media.php:3395 -msgid "Add Video Source" -msgstr "Videobron toevoegen" - -#: wp-includes/user.php:1891 -msgid "Hint: The password should be at least twelve characters long. To make it stronger, use upper and lower case letters, numbers, and symbols like ! \" ? $ % ^ & )." -msgstr "Hint: het wachtwoord moet minimaal twaalf tekens lang zijn. Om het sterker te maken, gebruik hoofd- en kleine letters, nummers en tekens zoals ! \" ? $ % ^ & )." - -#: wp-includes/media.php:3398 -msgid "Add Subtitles" -msgstr "Subtitels toevoegen" - -#: wp-includes/media-template.php:778 -msgid "Playlist Settings" -msgstr "Afspeellijstinstellingen" - -#: wp-includes/media.php:3418 -msgid "Add to Video Playlist" -msgstr "Toevoegen aan video-afspeellijst" - -#: wp-includes/media.php:3417 -msgid "Add to video playlist" -msgstr "Toevoegen aan video-afspeellijst" - -#: wp-includes/media.php:3416 -msgid "Update video playlist" -msgstr "Video-afspeellijst bijwerken" - -#: wp-includes/media.php:3415 -msgid "Insert video playlist" -msgstr "Video-afspeellijst invoegen" - -#: wp-includes/media.php:3414 -msgid "← Cancel Video Playlist" -msgstr "← Video-afspeellijst annuleren" - -#: wp-includes/media.php:3413 -msgid "Edit Video Playlist" -msgstr "Video-afspeellijst bewerken" - -#: wp-includes/media.php:3412 -msgid "Create Video Playlist" -msgstr "Video-afspeellijst aanmaken" - -#: wp-includes/media.php:3411 -msgid "Drag and drop to reorder videos." -msgstr "Video's verslepen om te sorteren." - -#: wp-includes/media.php:3402 -msgid "Create Audio Playlist" -msgstr "Audio-afspeellijst aanmaken" - -#: wp-includes/media.php:3393 -msgid "Video Details" -msgstr "Videodetails" - -#: wp-includes/media.php:3387 -msgid "Audio Details" -msgstr "Audiodetails" - -#: wp-includes/media.php:3371 -msgid "Image Details" -msgstr "Afbeeldingsdetails" - -#: wp-includes/update.php:123 wp-includes/update.php:303 -#: wp-includes/update.php:467 -msgid "An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums." -msgstr "Er is een onverwachte fout opgetreden. Er kan iets mis zijn met WordPress.org of de serverconfiguratie. Als dit probleem blijft bestaan vraag dan in het forum om hulp." - -#: wp-includes/class-wp-editor.php:915 -msgid "Emoticons" -msgstr "Emoticons" - -#: wp-includes/class-wp-editor.php:900 -msgid "Style" -msgstr "Stijl" - -#: wp-includes/admin-bar.php:129 -#: wp-includes/widgets/class-wp-widget-meta.php:65 wp-login.php:101 -msgid "https://wordpress.org/" -msgstr "https://nl.wordpress.org/" - -#: wp-includes/class-wp-editor.php:866 wp-includes/script-loader.php:114 -msgid "Numbered list" -msgstr "Genummerde lijst" - -#: wp-includes/class-wp-editor.php:846 -msgid "Align center" -msgstr "Gecentreerd uitlijnen" - -#: wp-includes/class-wp-editor.php:848 -msgid "Align left" -msgstr "Links uitlijnen" - -#: wp-includes/class-wp-editor.php:863 -msgid "Visual aids" -msgstr "Visuele ondersteuning" - -#: wp-includes/class-wp-editor.php:912 -msgid "Special character" -msgstr "Speciaal karakter" - -#: wp-includes/class-wp-editor.php:842 -msgid "Source code" -msgstr "Broncode" - -#: wp-includes/class-wp-editor.php:884 -msgid "Robots" -msgstr "Robots" - -#: wp-includes/class-wp-editor.php:923 -msgid "Horizontal line" -msgstr "Horizontale lijn" - -#: wp-includes/class-wp-editor.php:903 -msgid "Insert date/time" -msgstr "Datum/tijd invoegen" - -#: wp-includes/class-wp-editor.php:908 -msgid "Insert video" -msgstr "Video toevoegen" - -#: wp-includes/class-wp-editor.php:909 -msgid "Embed" -msgstr "Insluiten" - -#: wp-includes/media-template.php:885 wp-includes/media.php:3307 -msgid "Replace" -msgstr "Vervangen" - -#: wp-includes/class-wp-editor.php:961 -msgid "Rows" -msgstr "Rijen" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:145 -msgid "No image set" -msgstr "Geen afbeelding ingesteld" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:190 -msgid "Current header" -msgstr "Huidige header" - -#: wp-includes/class-wp-customize-widgets.php:718 -#: wp-includes/customize/class-wp-widget-area-customize-control.php:61 -msgid "Add a Widget" -msgstr "Widget toevoegen" - -#: wp-includes/class-wp-editor.php:906 -msgid "Alternative source" -msgstr "Alternatieve bron" - -#: wp-includes/class-wp-customize-widgets.php:673 -#: wp-includes/script-loader.php:623 -msgid "An error has occurred. Please reload the page and try again." -msgstr "Er is een fout opgetreden. Vernieuw de pagina en probeer het opnieuw." - -#: wp-includes/class-wp-editor.php:849 -msgid "Justify" -msgstr "Uitvullen" - -#: wp-includes/class-wp-editor.php:918 -msgid "Paste as text" -msgstr "Plakken als tekst" - -#: wp-includes/class-wp-editor.php:1009 -msgid "Text color" -msgstr "Tekstkleur" - -#: wp-includes/class-wp-editor.php:977 -msgid "Delete column" -msgstr "Kolom verwijderen" - -#: wp-includes/class-wp-editor.php:1011 -msgid "Show invisible characters" -msgstr "Onzichtbare karakters weergeven" - -#: wp-includes/class-wp-editor.php:847 -msgid "Align right" -msgstr "Rechts uitlijnen" - -#: wp-includes/class-wp-editor.php:904 -msgid "Insert/edit video" -msgstr "Video invoegen/bewerken" - -#: wp-includes/class-wp-editor.php:935 -msgid "Could not find the specified string." -msgstr "Kan de opgegeven tekenreeks niet vinden." - -#: wp-includes/class-wp-editor.php:902 wp-includes/script-loader.php:111 -msgid "Insert image" -msgstr "Afbeelding invoegen" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:205 -msgctxt "custom headers" -msgid "Previously uploaded" -msgstr "Eerder geüpload" - -#: wp-includes/class-wp-editor.php:945 -msgid "Match case" -msgstr "Hoofdlettergevoelig" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:97 -msgid "Randomize uploaded headers" -msgstr "Geüploade headers willekeurig weergeven" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:99 -msgid "Randomize suggested headers" -msgstr "Aangeraden headers willekeurig weergeven" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:127 -msgid "Randomizing uploaded headers" -msgstr "Geüploade headers willekeurig weergeven" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:129 -msgid "Randomizing suggested headers" -msgstr "Aangeraden headers willekeurig weergeven" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:212 -msgctxt "custom headers" -msgid "Suggested" -msgstr "Aangeraden" - -#: wp-includes/class-wp-editor.php:887 -msgid "Encoding" -msgstr "Codering" - -#: wp-includes/class-wp-editor.php:953 -msgid "Insert table" -msgstr "Tabel invoegen" - -#: wp-includes/class-wp-editor.php:916 -msgid "Nonbreaking space" -msgstr "Vaste spatie" - -#: wp-includes/class-wp-editor.php:1030 -msgid "Toolbar Toggle" -msgstr "Werkbalk weergeven/verbergen" - -#: wp-includes/class-wp-editor.php:1001 -msgid "Cell padding" -msgstr "Celuitvulling" - -#: wp-includes/class-wp-editor.php:1002 -msgid "Cell spacing" -msgstr "Celspatie" - -#: wp-includes/class-wp-editor.php:1008 -msgid "Background color" -msgstr "Achtergrondkleur" - -#: wp-includes/class-wp-customize-widgets.php:647 -msgid "Select an area to move this widget into:" -msgstr "Een plek selecteren voor deze widget:" - -#: wp-includes/admin-bar.php:145 wp-includes/wp-db.php:1085 -#: wp-includes/wp-db.php:1551 wp-includes/wp-db.php:1655 wp-login.php:780 -msgid "https://wordpress.org/support/" -msgstr "https://nl.forums.wordpress.org/" - -#: wp-includes/admin-bar.php:153 -msgid "https://wordpress.org/support/forum/requests-and-feedback" -msgstr "https://nl.forums.wordpress.org/" - -#: wp-includes/class-wp-editor.php:965 -msgid "Header cell" -msgstr "Headercel" - -#: wp-includes/class-wp-editor.php:999 -msgid "Row type" -msgstr "Rijtype" - -#: wp-includes/class-wp-editor.php:917 -msgid "Page break" -msgstr "Paginascheiding" - -#: wp-includes/class-wp-editor.php:925 -msgid "Restore last draft" -msgstr "Laatste concept terugzetten" - -#: wp-includes/class-wp-customize-nav-menus.php:694 -#: wp-includes/class-wp-customize-widgets.php:641 -msgid "Move up" -msgstr "Omhoog verplaatsen" - -#: wp-includes/class-wp-customize-nav-menus.php:695 -#: wp-includes/class-wp-customize-widgets.php:640 -msgid "Move down" -msgstr "Omlaag verplaatsen" - -#: wp-includes/class-wp-editor.php:886 -msgid "Keywords" -msgstr "Zoekwoorden" - -#: wp-includes/class-wp-editor.php:997 -msgid "Row group" -msgstr "Rijgroep" - -#: wp-includes/class-wp-editor.php:1000 -msgid "Cell type" -msgstr "Celtype" - -#: wp-includes/class-wp-editor.php:907 -msgid "Paste your embed code below:" -msgstr "Plak je insluitcode hieronder:" - -#: wp-includes/class-wp-editor.php:998 -msgid "Column group" -msgstr "Kolomgroep" - -#: wp-includes/class-wp-editor.php:1015 -msgid "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off." -msgstr "Plakken gebeurt in platte tekst. Inhoud wordt als platte tekst ingevoegd tot je deze functie uitschakelt." - -#: wp-includes/class-wp-editor.php:850 -msgid "Increase indent" -msgstr "Inspringen vergroten" - -#: wp-includes/class-wp-editor.php:838 -msgid "Clear formatting" -msgstr "Opmaak verwijderen" - -#: wp-includes/class-wp-editor.php:851 -msgid "Decrease indent" -msgstr "Inspringen verkleinen" - -#: wp-includes/class-wp-editor.php:941 -msgid "Find and replace" -msgstr "Zoeken en vervangen" - -#: wp-includes/class-wp-editor.php:1031 wp-includes/script-loader.php:120 -msgid "Insert Read More tag" -msgstr "Lees-meer-tag invoegen" - -#: wp-includes/general-template.php:3152 -msgctxt "admin color scheme" -msgid "Ectoplasm" -msgstr "Ectoplasma" - -#: wp-includes/general-template.php:3158 -msgctxt "admin color scheme" -msgid "Ocean" -msgstr "Oceaan" - -#: wp-includes/general-template.php:3164 -msgctxt "admin color scheme" -msgid "Coffee" -msgstr "Koffie" - -#: wp-includes/general-template.php:3146 -msgctxt "admin color scheme" -msgid "Sunrise" -msgstr "Zonsopkomst" - -#: wp-includes/class-wp-image-editor.php:286 -msgid "Attempted to set image quality outside of the range [1,100]." -msgstr "Geprobeerd om de afbeeldingskwaliteit buiten het bereik [1 tot 100] te zetten." - -#: wp-includes/widgets/class-wp-widget-pages.php:26 -msgid "A list of your site’s Pages." -msgstr "Een lijst van de pagina's op deze website." - -#: wp-includes/widgets/class-wp-widget-search.php:26 -msgid "A search form for your site." -msgstr "Een zoekformulier voor deze website." - -#: wp-includes/widgets/class-wp-widget-archives.php:26 -msgid "A monthly archive of your site’s Posts." -msgstr "Een maandelijks archief van de berichten op deze website." - -#: wp-includes/widgets/class-wp-widget-calendar.php:36 -msgid "A calendar of your site’s Posts." -msgstr "Een kalender van de berichten op deze website." - -#: wp-includes/widgets/class-wp-widget-rss.php:26 -msgid "Entries from any RSS or Atom feed." -msgstr "Berichten van RSS- of Atom-feed." - -#: wp-includes/widgets/class-wp-nav-menu-widget.php:26 -msgid "Add a custom menu to your sidebar." -msgstr "Aangepast menu aan sidebar toevoegen." - -#: wp-includes/widgets/class-wp-widget-meta.php:28 -msgid "Login, RSS, & WordPress.org links." -msgstr "Inlog-, RSS-, & WordPress.org-links." - -#: wp-includes/widgets/class-wp-widget-text.php:26 -msgid "Arbitrary text or HTML." -msgstr "Willekeurige tekst of HTML." - -#: wp-includes/widgets/class-wp-widget-categories.php:26 -msgid "A list or dropdown of categories." -msgstr "Een lijst of vervolgkeuzelijst met categorieën." - -#: wp-includes/widgets/class-wp-widget-tag-cloud.php:26 -msgid "A cloud of your most used tags." -msgstr "Een wolk van je meest gebruikte tags." - -#: wp-includes/widgets/class-wp-widget-recent-comments.php:26 -msgid "Your site’s most recent comments." -msgstr "De recentste reacties." - -#: wp-includes/widgets/class-wp-widget-recent-posts.php:26 -msgid "Your site’s most recent Posts." -msgstr "De recentste berichten." - -#. translators: If there are characters in your language that are not supported -#. by Open Sans, translate this to 'off'. Do not translate into your own -#. language. -#: wp-includes/script-loader.php:691 -msgctxt "Open Sans font: on or off" -msgid "on" -msgstr "on" - -#. translators: To add an additional Open Sans character subset specific to -#. your language, translate this to 'greek', 'cyrillic' or 'vietnamese'. Do not -#. translate into your own language. -#: wp-includes/script-loader.php:697 -msgctxt "Open Sans font: add new subset (greek, cyrillic, vietnamese)" -msgid "no-subset" -msgstr "no-subset" - -#: wp-includes/general-template.php:3118 -msgctxt "admin color scheme" -msgid "Default" -msgstr "Standaard" - -#: wp-includes/general-template.php:3128 -msgctxt "admin color scheme" -msgid "Light" -msgstr "Licht" - -#: wp-includes/general-template.php:3140 -msgctxt "admin color scheme" -msgid "Midnight" -msgstr "Middernacht" - -#: wp-includes/link-template.php:1576 -msgid "Use commas instead of %s to separate excluded terms." -msgstr "Gebruik komma's in plaats van %s om terms uit te sluiten." - -#: wp-includes/admin-bar.php:168 -msgid "Menu" -msgstr "Menu" - -#: wp-includes/update.php:564 -msgid "Translation Updates" -msgstr "Vertalingsupdates" - -#: wp-includes/class-wp-theme.php:243 -msgid "The theme directory \"%s\" does not exist." -msgstr "De themamap \"%s\" bestaat niet." - -#: wp-includes/post-template.php:1517 -msgid "This content is password protected. To view it please enter your password below:" -msgstr "De inhoud is beveiligd met een wachtwoord. Om deze te kunnen bekijken, vul het wachtwoord hieronder in:" - -#. translators: This is a comma-separated list of very common words that should -#. be excluded from a search, like a, an, and the. These are usually called -#. "stopwords". You should not simply translate these individual words into -#. your language. Instead, look for and provide commonly accepted stopwords in -#. your language. -#: wp-includes/query.php:2262 -msgctxt "Comma-separated list of search stopwords in your language" -msgid "about,an,are,as,at,be,by,com,for,from,how,in,is,it,of,on,or,that,the,this,to,was,what,when,where,who,will,with,www" -msgstr "over,een,zoals,op,zijn,door,com,voor,hoe,in,is,het,van,op,of,dat,de,dit,naar,was,wat,wanneer,waar,wie,zal,met,www,over" - -#: wp-includes/functions.php:1216 -msgid "ERROR: This is not a valid feed template." -msgstr "FOUT: Dit is geen geldig feed-template." - -#: wp-includes/class-wp-http-curl.php:257 -#: wp-includes/class-wp-http-streams.php:256 -msgid "Failed to write request to temporary file." -msgstr "Het is niet gelukt om de aanvraag op te slaan in een tijdelijk bestand." - -#: wp-includes/class-wp-http-streams.php:156 -#: wp-includes/class-wp-http-streams.php:164 -msgid "The SSL certificate for the host could not be verified." -msgstr "Het SSL-certificaat voor de host kon niet geverifieerd worden." - -#: wp-includes/media-template.php:644 -msgid "Embed Media Player" -msgstr "Mediaspeler insluiten" - -#: wp-includes/media-template.php:654 -msgid "Link to Media File" -msgstr "Link naar mediabestand" - -#: wp-includes/media-template.php:661 -msgid "Link to Attachment Page" -msgstr "Link naar bijlagepagina" - -#: wp-includes/media-template.php:350 wp-includes/media-template.php:526 -msgid "Length:" -msgstr "Lengte:" - -#: wp-includes/media-template.php:631 -msgid "Embed or Link" -msgstr "Insluiten of linken" - -#: wp-includes/script-loader.php:342 -msgid "Mute Toggle" -msgstr "Geluid aan-/uitzetten" - -#: wp-includes/script-loader.php:341 -msgid "Play/Pause" -msgstr "Afspelen/Pauzeren" - -#: wp-includes/script-loader.php:345 -msgid "Go Fullscreen" -msgstr "Volledig scherm" - -#: wp-includes/script-loader.php:346 -msgid "Unmute" -msgstr "Geluid aan" - -#: wp-includes/script-loader.php:339 -msgid "Download File" -msgstr "Bestand downloaden" - -#: wp-includes/script-loader.php:340 -msgid "Download Video" -msgstr "Video downloaden" - -#: wp-includes/script-loader.php:344 -msgid "Turn off Fullscreen" -msgstr "Volledig scherm uitzetten" - -#: wp-includes/script-loader.php:348 -msgid "Captions/Subtitles" -msgstr "Ondertitels" - -#: wp-includes/formatting.php:2856 -msgid "%s week" -msgid_plural "%s weeks" -msgstr[0] "%s week" -msgstr[1] "%s weken" - -#: wp-includes/formatting.php:2861 -msgid "%s month" -msgid_plural "%s months" -msgstr[0] "%s maand" -msgstr[1] "%s maanden" - -#: wp-includes/formatting.php:2866 -msgid "%s year" -msgid_plural "%s years" -msgstr[0] "%s jaar" -msgstr[1] "%s jaar" - -#. translators: %d: ID of a post -#: wp-includes/class-walker-page-dropdown.php:59 -#: wp-includes/class-walker-page.php:114 -#: wp-includes/class-wp-customize-nav-menus.php:148 -#: wp-includes/class-wp-customize-nav-menus.php:277 -#: wp-includes/nav-menu.php:744 wp-includes/nav-menu.php:819 -msgid "#%d (no title)" -msgstr "#%d (geen titel)" - -#: wp-includes/post-template.php:1717 -msgid "JavaScript must be enabled to use this feature." -msgstr "Deze functie werkt alleen als JavaScript is ingeschakeld." - -#. translators: localized date format, see http:php.net/date -#: wp-includes/locale.php:374 -msgid "F j, Y" -msgstr "j F Y" - -#. translators: localized date and time format, see http:php.net/date -#: wp-includes/locale.php:378 -msgid "F j, Y g:i a" -msgstr "j F Y H:i" - -#. translators: localized time format, see http:php.net/date -#: wp-includes/locale.php:376 -msgid "g:i a" -msgstr "H:i" - -#: wp-includes/class-wp-xmlrpc-server.php:425 -msgid "The URL to the admin area" -msgstr "De URL van het beheergedeelte" - -#: wp-includes/class-wp-xmlrpc-server.php:420 -msgid "Login Address (URL)" -msgstr "Inlogadres (URL)" - -#: wp-includes/media-template.php:194 -msgid "The web browser on your device cannot be used to upload files. You may be able to use the native app for your device instead." -msgstr "De webbrowser op je apparaat kan geen bestanden uploaden. Mogelijk is de native app voor jouw apparaat een betere keuze." - -#: wp-includes/post-template.php:256 -msgid "(more…)" -msgstr "(meer…)" - -#: wp-includes/user.php:2183 -msgid "ERROR: Couldn’t register you… please contact the webmaster !" -msgstr "FOUT: Niet mogelijk om je te registeren…, neem contact op met de webmaster !" - -#: wp-login.php:366 -msgid "Possible reason: your host may have disabled the mail() function." -msgstr "Mogelijke oorzaak: je host heeft misschien de functie mail() uitgeschakeld." - -#. translators: 1: date -#: wp-includes/post-template.php:1609 -msgctxt "post revision title extra" -msgid "%1$s [Autosave]" -msgstr "%1$s [Automatisch opgeslagen]" - -#. translators: 1: date -#: wp-includes/post-template.php:1611 -msgctxt "post revision title extra" -msgid "%1$s [Current Revision]" -msgstr "%1$s [Huidige revisie]" - -#: wp-login.php:836 -msgid "Session expired. Please log in again. You will not move away from this page." -msgstr "Sessie verlopen. Graag opnieuw inloggen. Je wordt niet weggestuurd vanaf de huidige pagina." - -#: wp-includes/script-loader.php:157 -msgid "Your session has expired. You can log in again from this page or go to the login page." -msgstr "Je sessie is verlopen. Je kunt opnieuw inloggen op deze pagina of naar de inlogpagina gaan." - -#: wp-signup.php:742 -msgid "Have you entered your email correctly? You have entered %s, if it’s incorrect, you will not receive your email." -msgstr "Is het e-mailadres correct ingevoerd? Je hebt het volgende ingevoerd: %s. Is dit niet correct, dan zul je geen e-mail ontvangen." - -#. translators: 1: month, 2: day, 3: year, 4: hour, 5: minute -#: wp-includes/script-loader.php:512 wp-includes/script-loader.php:551 -msgid "%1$s %2$s, %3$s @ %4$s:%5$s" -msgstr "%1$s %2$s, %3$s @ %4$s:%5$s" - -#. translators: %s: site address -#: wp-signup.php:853 -msgid "The site you were looking for, %s, does not exist, but you can create it now!" -msgstr "De site waar je naar op zoek bent: %s bestaat niet, maar je kunt deze nu aanmaken!" - -#: wp-includes/functions.php:4945 -msgid "The login page will open in a new window. After logging in you can close it and return to this page." -msgstr "De inlogpagina opent in een nieuw venster. Na het inloggen kun je dit venster sluiten en terugkeren naar deze pagina." - -#. translators: post revision title: 1: author avatar, 2: author name, 3: time -#. ago, 4: date -#: wp-includes/post-template.php:1653 -msgctxt "post revision title" -msgid "%1$s %2$s, %3$s ago (%4$s)" -msgstr "%1$s %2$s, %3$s geleden (%4$s)" - -#: wp-includes/class-walker-comment.php:319 -msgid "%s says:" -msgstr "%s schreef:" - -#: wp-includes/general-template.php:231 wp-includes/general-template.php:238 -msgctxt "submit button" -msgid "Search" -msgstr "Zoeken" - -#: wp-includes/general-template.php:228 wp-includes/general-template.php:229 -#: wp-includes/general-template.php:236 -msgctxt "label" -msgid "Search for:" -msgstr "Zoeken naar:" - -#: wp-includes/general-template.php:229 -msgctxt "placeholder" -msgid "Search …" -msgstr "Zoeken …" - -#: wp-includes/functions.php:4943 wp-includes/script-loader.php:443 -msgid "Session expired" -msgstr "Sessie verlopen" - -#: wp-includes/taxonomy.php:536 -msgid "No tags found." -msgstr "Geen tags gevonden." - -#: wp-includes/widgets/class-wp-widget-meta.php:67 -msgctxt "meta widget link text" -msgid "WordPress.org" -msgstr "WordPress.org" - -#: wp-includes/functions.wp-scripts.php:193 -msgid "Do not deregister the %1$s script in the administration area. To target the frontend theme, use the %2$s hook." -msgstr "Schakel het %1$s-script niet uit in het beheergedeelte maar gebruik de %2$s-hook om aanpassingen te maken in het thema." - -#: wp-includes/class-wp-xmlrpc-server.php:410 -msgid "WordPress Address (URL)" -msgstr "WordPress-adres (URL)" - -#: wp-includes/class-wp-xmlrpc-server.php:415 -msgid "Site Address (URL)" -msgstr "Siteadres (URL)" - -#: wp-includes/class-wp-xmlrpc-server.php:2398 wp-includes/user.php:1286 -#: wp-includes/user.php:1605 wp-includes/user.php:1611 -msgid "Invalid user ID." -msgstr "Ongeldig gebruikers-ID." - -#: wp-includes/media-template.php:747 -msgid "Random Order" -msgstr "Willekeurige volgorde" - -#: wp-includes/media-template.php:478 -msgid "Caption this image…" -msgstr "Plaats een onderschrift…" - -#. translators: This is a would-be plural string used in the media manager. -#. If there is not a word you can use in your language to avoid issues with -#. the lack of plural support here, turn it into "selected: %d" then -#. translate it. -#: wp-includes/media.php:3314 -msgid "%d selected" -msgstr "%d geselecteerd" - -#: wp-includes/media.php:3354 -msgid "Insert from URL" -msgstr "Invoegen via URL" - -#: wp-includes/widgets/class-wp-widget-links.php:144 -msgctxt "Links widget" -msgid "Random" -msgstr "Willekeurig" - -#: wp-includes/media-template.php:1229 wp-includes/media.php:3330 -msgid "No items found." -msgstr "Niets gevonden." - -#: wp-includes/media.php:3367 -msgid "Add to Gallery" -msgstr "Aan de galerij toevoegen" - -#: wp-includes/media.php:3368 -msgid "Reverse order" -msgstr "Volgorde omkeren" - -#: wp-includes/post.php:1376 -msgid "Set featured image" -msgstr "Uitgelichte afbeelding instellen" - -#: wp-includes/media-template.php:471 -msgid "Deselect" -msgstr "Deselecteren" - -#: wp-includes/class-wp-xmlrpc-server.php:4526 -#: wp-includes/class-wp-xmlrpc-server.php:4537 -msgid "Sorry, that file cannot be edited." -msgstr "Het bewerken van dit bestand is niet mogelijk." - -#: wp-includes/media-template.php:436 wp-includes/media-template.php:537 -#: wp-includes/media.php:3343 -msgid "Delete Permanently" -msgstr "Permanent verwijderen" - -#: wp-includes/media.php:3335 -msgid "" -"You are about to permanently delete this item.\n" -" 'Cancel' to stop, 'OK' to delete." -msgstr "" -"Je staat op het punt dit item permanent te verwijderen.\n" -" 'Annuleren' om te stoppen, 'OK' om te verwijderen." - -#: wp-includes/media-template.php:196 -msgid "Upload Limit Exceeded" -msgstr "Uploadlimiet overschreden" - -#: wp-includes/media-template.php:261 -msgid "Dismiss Errors" -msgstr "Foutmeldingen negeren" - -#: wp-includes/media.php:2823 -msgid "No editor could be selected." -msgstr "Niet mogelijk om editor te selecteren." - -#: wp-includes/media-template.php:260 -msgid "Uploading" -msgstr "Uploaden" - -#: wp-includes/post.php:2221 -msgid "Manage Images" -msgstr "Afbeeldingen beheren" - -#: wp-includes/post.php:2221 -msgid "Image (%s)" -msgid_plural "Images (%s)" -msgstr[0] "Afbeelding (%s)" -msgstr[1] "Afbeeldingen (%s)" - -#: wp-includes/post.php:2222 -msgid "Manage Audio" -msgstr "Audio beheren" - -#: wp-includes/post.php:2222 -msgid "Audio (%s)" -msgid_plural "Audio (%s)" -msgstr[0] "Audio (%s)" -msgstr[1] "Audio (%s)" - -#: wp-includes/post.php:2223 -msgid "Video" -msgstr "Video" - -#: wp-includes/post.php:2223 -msgid "Manage Video" -msgstr "Video beheren" - -#: wp-includes/post.php:2223 -msgid "Video (%s)" -msgid_plural "Video (%s)" -msgstr[0] "Video (%s)" -msgstr[1] "Video (%s)" - -#: wp-includes/post.php:1373 -msgid "Insert into page" -msgstr "In pagina invoegen" - -#: wp-includes/post.php:1374 -msgid "Uploaded to this page" -msgstr "Geüpload naar deze pagina" - -#: wp-includes/media.php:3328 -msgid "All media items" -msgstr "Alle mediabestanden" - -#: wp-includes/post.php:2222 -msgid "Audio" -msgstr "Audio" - -#: wp-includes/post.php:1374 -msgid "Uploaded to this post" -msgstr "Geüpload naar dit bericht" - -#: wp-includes/media.php:3327 -msgid "← Return to library" -msgstr "← Terug naar bibliotheek" - -#: wp-includes/media-template.php:668 wp-includes/media-template.php:865 -#: wp-includes/media-template.php:978 -msgid "Custom URL" -msgstr "Aangepaste URL" - -#: wp-includes/media-template.php:494 wp-includes/media.php:3351 -msgid "Attachment Details" -msgstr "Bijlagedetails" - -#: wp-includes/media-template.php:733 -msgid "Columns" -msgstr "Kolommen" - -#: wp-includes/media-template.php:398 wp-includes/media-template.php:577 -#: wp-includes/media-template.php:836 -msgid "Alt Text" -msgstr "Alt-tekst" - -#: wp-includes/media-template.php:689 wp-includes/media-template.php:764 -#: wp-includes/media-template.php:938 wp-includes/media.php:3062 -msgid "Large" -msgstr "Groot" - -#: wp-includes/media.php:3319 -msgid "Upload Images" -msgstr "Afbeeldingen uploaden" - -#: wp-includes/media.php:3363 -msgid "← Cancel Gallery" -msgstr "← Galerij annuleren" - -#: wp-includes/media-template.php:708 -msgid "Gallery Settings" -msgstr "Galerij-instellingen" - -#: wp-includes/media-template.php:601 -msgid "Attachment Display Settings" -msgstr "Weergave-instellingen bijlagen" - -#: wp-includes/ms-functions.php:1964 -msgid "WordPress › Success" -msgstr "WordPress › succes" - -#: wp-includes/media.php:3318 -msgid "Upload Files" -msgstr "Bestanden uploaden" - -#: wp-includes/media-template.php:203 -msgid "Drop files anywhere to upload" -msgstr "Je bestanden hier naartoe slepen" - -#: wp-includes/media.php:3364 -msgid "Insert gallery" -msgstr "Galerij invoegen" - -#: wp-includes/media-template.php:174 wp-includes/media-template.php:180 -msgid "Drop files to upload" -msgstr "Sleep bestanden om te uploaden" - -#: wp-includes/media.php:3322 -msgid "Media Library" -msgstr "Mediabibliotheek" - -#: wp-includes/media.php:3361 -msgid "Create Gallery" -msgstr "Galerij aanmaken" - -#: wp-includes/ms-functions.php:1332 -msgid "Already Installed" -msgstr "Reeds geïnstalleerd" - -#: wp-includes/ms-functions.php:908 -msgid "" -"To activate your user, please click the following link:\n" -"\n" -"%s\n" -"\n" -"After you activate, you will receive *another email* with your login." -msgstr "" -"Om gebruikers te activeren, klik op de volgende link:\n" -"\n" -"%s\n" -"\n" -"Na activeren wordt *opnieuw een e-mail* verstuurd met de inloggegevens." - -#: wp-includes/ms-functions.php:1332 -msgid "You appear to have already installed WordPress. To reinstall please clear your old database tables first." -msgstr "Het lijkt erop dat WordPress al is geïnstalleerd. Wis je oude databasetabellen om WordPress opnieuw te installeren." - -#: wp-includes/ms-functions.php:1180 -msgid "" -"New Site: %1$s\n" -"URL: %2$s\n" -"Remote IP: %3$s\n" -"\n" -"Disable these notifications: %4$s" -msgstr "" -"Nieuwe website %1$s\n" -"URL: %2$s\n" -"Extern IP-adres: %3$s\n" -"\n" -"Deze meldingen uitschakelen: %4$s" - -#: wp-includes/ms-functions.php:1222 -msgid "" -"New User: %1$s\n" -"Remote IP: %2$s\n" -"\n" -"Disable these notifications: %3$s" -msgstr "" -"Nieuwe gebruiker: %1$s\n" -"Extern IP-adres: %2$s\n" -"\n" -"Deze meldingen uitschakelen: %3$s" - -#: wp-includes/media-template.php:663 wp-includes/media-template.php:721 -#: wp-includes/media-template.php:970 -msgid "Attachment Page" -msgstr "Bijlagepagina" - -#: wp-includes/media-template.php:656 wp-includes/media-template.php:724 -#: wp-includes/media-template.php:967 -msgid "Media File" -msgstr "Mediabestand" - -#: wp-includes/media-template.php:633 wp-includes/media-template.php:711 -#: wp-includes/media-template.php:859 wp-includes/media-template.php:963 -msgid "Link To" -msgstr "Link naar" - -#: wp-includes/media-template.php:486 -msgid "Describe this media file…" -msgstr "Dit mediabestand omschrijven…" - -#: wp-includes/media-template.php:484 -msgid "Describe this audio file…" -msgstr "Dit audiobestand omschrijven…" - -#: wp-includes/media-template.php:482 -msgid "Describe this video…" -msgstr "Deze video omschrijven…" - -#: wp-includes/media.php:3365 -msgid "Update gallery" -msgstr "Galerij bijwerken" - -#: wp-includes/ms-functions.php:160 -msgid "The requested user does not exist." -msgstr "De opgevraagde gebruiker bestaat niet." - -#: wp-includes/user.php:2126 -msgid "ERROR: This username is already registered. Please choose another one." -msgstr "FOUT: Deze gebruikersnaam is al geregistreerd. Kies een andere gebruikersnaam." - -#: wp-includes/ms-functions.php:456 -msgid "Please enter a valid email address." -msgstr "Een geldig e-mailadres opgeven." - -#: wp-includes/class-wp-image-editor-gd.php:97 -#: wp-includes/class-wp-image-editor-imagick.php:130 -msgid "File doesn’t exist?" -msgstr "Dit bestand bestaat niet?" - -#: wp-includes/class-wp-image-editor-gd.php:113 -#: wp-includes/class-wp-image-editor-imagick.php:140 -msgid "File is not an image." -msgstr "Bestand is geen afbeelding." - -#: wp-includes/class-wp-image-editor-gd.php:117 -#: wp-includes/class-wp-image-editor-imagick.php:211 -msgid "Could not read image size." -msgstr "Niet mogelijk om afbeeldingsinformatie uit te lezen" - -#: wp-includes/class-wp-image-editor-gd.php:370 -msgid "Image flip failed." -msgstr "Spiegelen afbeelding mislukt." - -#: wp-includes/class-wp-image-editor-gd.php:340 -msgid "Image rotate failed." -msgstr "Roteren afbeelding mislukt." - -#: wp-includes/class-wp-image-editor-gd.php:180 -#: wp-includes/class-wp-image-editor-gd.php:205 -msgid "Image resize failed." -msgstr "Verkleinen afbeelding mislukt." - -#: wp-includes/class-wp-image-editor-gd.php:313 -msgid "Image crop failed." -msgstr "Bijsnijden afbeelding mislukt." - -#: wp-includes/class-wp-image-editor-gd.php:408 -#: wp-includes/class-wp-image-editor-gd.php:416 -#: wp-includes/class-wp-image-editor-gd.php:420 -#: wp-includes/class-wp-image-editor-gd.php:423 -msgid "Image Editor Save Failed" -msgstr "Opslaan afbeelding mislukt" - -#: wp-includes/post.php:60 -msgid "View Attachment Page" -msgstr "Bijlagepagina tonen" - -#: wp-includes/post.php:3054 -msgid "Whoops, the provided date is invalid." -msgstr "Oeps, de aangeleverde data is ongeldig." - -#: wp-includes/media.php:3324 -msgid "Create a new gallery" -msgstr "Een nieuwe galerij aanmaken" - -#: wp-includes/post.php:1373 -msgid "Insert into post" -msgstr "Invoegen in bericht" - -#: wp-includes/media.php:3366 -msgid "Add to gallery" -msgstr "Aan galerij toevoegen" - -#: wp-includes/media-template.php:594 wp-includes/script-loader.php:610 -msgid "Clear" -msgstr "Wissen" - -#: wp-includes/script-loader.php:612 -msgid "Select Color" -msgstr "Kleur selecteren" - -#: wp-includes/script-loader.php:613 -msgid "Current Color" -msgstr "Huidige kleur" - -#: wp-includes/taxonomy.php:2875 -msgid "Could not insert term relationship into the database" -msgstr "Niet mogelijk om relatietype in database in te voegen" - -#. translators: 1: first name, 2: last name -#: wp-includes/user.php:1435 -msgctxt "Display name based on first name and last name" -msgid "%1$s %2$s" -msgstr "%1$s %2$s" - -#: wp-includes/media.php:3323 -msgid "Insert Media" -msgstr "Media invoegen" - -#: wp-includes/media-template.php:901 -msgid "Alternative Text" -msgstr "Alternatieve tekst" - -#: wp-includes/media-template.php:204 -msgctxt "Uploader: Drop files here - or - Select Files" -msgid "or" -msgstr "of" - -#: wp-includes/media-template.php:205 -msgid "Select Files" -msgstr "Bestanden selecteren" - -#: wp-includes/class-wp-xmlrpc-server.php:269 -msgid "Incorrect username or password." -msgstr "Ongeldige gebruikersnaam of wachtwoord." - -#: wp-includes/class-wp-xmlrpc-server.php:1550 -msgid "There is a revision of this post that is more recent." -msgstr "Er is een recentere revisie van dit bericht aanwezig." - -#. translators: 1: blog name, 2: separator(raquo), 3: post type name -#: wp-includes/general-template.php:2522 -msgid "%1$s %2$s %3$s Feed" -msgstr "%1$s %2$s %3$s Feed" - -#: wp-includes/widgets/class-wp-widget-recent-posts.php:135 -msgid "Display post date?" -msgstr "Berichtdatum tonen?" - -#: wp-includes/class-wp-xmlrpc-server.php:4880 -msgid "You are not allowed to create pages as this user." -msgstr "Je hebt geen toestemming om pagina's aan te maken als deze gebruiker." - -#: wp-includes/class-wp-xmlrpc-server.php:2467 -msgid "The role specified is not valid" -msgstr "De opgegeven rol is ongeldig" - -#: wp-includes/class-wp-xmlrpc-server.php:258 -msgid "XML-RPC services are disabled on this site." -msgstr "XML-RPC-services zijn uitgeschakeld voor deze site." - -#: wp-includes/class-wp-xmlrpc-server.php:2393 -msgid "Sorry, you cannot edit users." -msgstr "Je kunt geen gebruikers bewerken." - -#: wp-includes/class-wp-xmlrpc-server.php:4202 -#: wp-includes/class-wp-xmlrpc-server.php:4272 -msgid "Sorry, revisions are disabled." -msgstr "Revisies zijn uitgeschakeld." - -#: wp-includes/class-wp-xmlrpc-server.php:4198 -msgid "Sorry, you are not allowed to edit posts." -msgstr "Je hebt geen rechten om berichten te bewerken." - -#: wp-includes/class-wp-xmlrpc-server.php:2604 -msgid "Sorry, the user cannot be updated." -msgstr "Deze gebruiker kan niet worden bijgewerkt." - -#: wp-includes/class-wp-xmlrpc-server.php:2524 -#: wp-includes/class-wp-xmlrpc-server.php:2570 -msgid "Sorry, you cannot edit your profile." -msgstr "Niet mogelijk om je profiel te bewerken." - -#: wp-includes/class-wp-editor.php:180 -msgctxt "Name for the Text editor tab (formerly HTML)" -msgid "Text" -msgstr "Tekst" - -#: wp-includes/class-wp-admin-bar.php:414 -msgid "Skip to toolbar" -msgstr "Spring naar de toolbar" - -#: wp-includes/customize/class-wp-customize-color-control.php:98 -msgid "Hex Value" -msgstr "Hex-waarde" - -#: wp-includes/class-wp-customize-manager.php:1862 -msgid "Header Text Color" -msgstr "Headertekstkleur" - -#: wp-includes/class-wp-customize-manager.php:1839 -msgid "Colors" -msgstr "Kleuren" - -#: wp-includes/script-loader.php:437 -msgid "Saved" -msgstr "Opgeslagen" - -#: wp-includes/script-loader.php:434 -msgid "Save & Activate" -msgstr "Opslaan & activeren" - -#: wp-includes/script-loader.php:435 -msgid "Save & Publish" -msgstr "Opslaan & publiceren" - -#: wp-includes/customize/class-wp-customize-media-control.php:59 -#: wp-includes/customize/class-wp-customize-media-control.php:64 -msgid "Select File" -msgstr "Selecteren" - -#: wp-includes/admin-bar.php:359 -#: wp-includes/customize/class-wp-customize-theme-control.php:85 -#: wp-includes/customize/class-wp-customize-themes-section.php:67 -msgid "Customize" -msgstr "Customizer" - -#: wp-includes/class-wp-xmlrpc-server.php:652 -msgid "Insufficient arguments passed to this XML-RPC method." -msgstr "Onvoldoende argumenten gebruikt in deze XML-RPC-methode." - -#: wp-includes/class-wp-xmlrpc-server.php:1246 -msgid "Sorry, you cannot stick a private post." -msgstr "Je kunt een priv‰bericht niet sticky maken." - -#: wp-includes/class-wp-customize-manager.php:1885 -#: wp-includes/customize/class-wp-customize-header-image-control.php:31 -msgid "Header Image" -msgstr "Kopafbeelding" - -#: wp-includes/class-wp-xmlrpc-server.php:455 -msgid "Post Thumbnail" -msgstr "Berichtthumbnail" - -#: wp-includes/script-loader.php:97 -msgid "text direction" -msgstr "tekstrichting" - -#: wp-includes/script-loader.php:98 -msgid "Toggle Editor Text Direction" -msgstr "De tekstrichting van de editor veranderen" - -#: wp-includes/ms-functions.php:574 -msgid "That name is not allowed." -msgstr "Deze naam is niet toegestaan." - -#: wp-includes/ms-functions.php:445 -msgid "Username must be at least 4 characters." -msgstr "Gebruikersnaam moet minimaal 4 tekens zijn." - -#: wp-includes/ms-functions.php:602 -msgid "Please enter a site title." -msgstr "Een sitetitel invoeren." - -#: wp-includes/ms-functions.php:423 -msgid "Please enter a username." -msgstr "Een gebruikersnaam invoeren." - -#: wp-includes/ms-functions.php:577 -msgid "Site name must be at least 4 characters." -msgstr "Websitenaam moet minimaal 4 tekens zijn." - -#: wp-includes/ms-functions.php:567 -msgid "Please enter a site name." -msgstr "Een websitenaam invoeren." - -#: wp-includes/class-wp-customize-manager.php:2002 -msgid "A static page" -msgstr "Een statische pagina" - -#: wp-includes/class-wp-customize-manager.php:1877 -msgid "Background Color" -msgstr "Achtergrondkleur" - -#: wp-includes/class-wp-customize-manager.php:1905 -#: wp-includes/customize/class-wp-customize-background-image-control.php:30 -msgid "Background Image" -msgstr "Achtergrondafbeelding" - -#: wp-includes/class-wp-customize-manager.php:1927 -msgid "Background Repeat" -msgstr "Achtergrond herhalen" - -#: wp-includes/class-wp-customize-manager.php:1855 -msgid "Display Header Text" -msgstr "Koptekst weergeven" - -#: wp-includes/class-wp-customize-manager.php:1944 -msgid "Background Position" -msgstr "Achtergrondpositie" - -#: wp-includes/class-wp-customize-manager.php:1960 -msgid "Background Attachment" -msgstr "Achtergrondbijlage" - -#: wp-includes/customize/class-wp-customize-image-control.php:36 -msgid "Change Image" -msgstr "Afbeelding wijzigen" - -#: wp-includes/customize/class-wp-customize-header-image-control.php:106 -msgid "Remove image" -msgstr "Afbeelding verwijderen" - -#: wp-includes/class-wp-xmlrpc-server.php:4082 -msgid "Sorry, you are not allowed to edit this post type." -msgstr "Je hebt geen rechten om dit type bericht te bewerken." - -#: wp-includes/class-wp-customize-manager.php:1931 -msgid "No Repeat" -msgstr "Niet herhalen" - -#: wp-includes/class-wp-customize-manager.php:1932 -msgid "Tile" -msgstr "Herhalen" - -#: wp-includes/class-wp-customize-manager.php:1964 -msgid "Scroll" -msgstr "Bladeren" - -#: wp-includes/class-wp-customize-manager.php:1965 -msgid "Fixed" -msgstr "Vast" - -#: wp-includes/class-wp-customize-manager.php:1933 -msgid "Tile Horizontally" -msgstr "Onder elkaar" - -#: wp-includes/class-wp-customize-manager.php:1934 -msgid "Tile Vertically" -msgstr "Naast elkaar" - -#: wp-includes/class-wp-customize-manager.php:2025 -msgid "Posts page" -msgstr "Berichtenpagina" - -#: wp-includes/class-wp-customize-manager.php:2013 -msgid "Front page" -msgstr "Startpagina" - -#: wp-includes/class-wp-customize-widgets.php:671 -#: wp-includes/class-wp-editor.php:1036 -#: wp-includes/customize/class-wp-customize-image-control.php:37 -#: wp-includes/customize/class-wp-customize-media-control.php:62 -#: wp-includes/customize/class-wp-customize-nav-menu-item-control.php:141 -#: wp-includes/media-template.php:467 wp-includes/media.php:3308 -msgid "Remove" -msgstr "Verwijderen" - -#: wp-includes/script-loader.php:447 -msgid "Allowed Files" -msgstr "Toegestane bestanden" - -#: wp-includes/post.php:1375 -msgid "Featured Image" -msgstr "Uitgelichte Afbeelding" - -#: wp-includes/class-wp-xmlrpc-server.php:1869 -msgid "This taxonomy is not hierarchical." -msgstr "Deze taxonomie is niet hiërarchisch." - -#: wp-includes/class-wp-xmlrpc-server.php:1865 -#: wp-includes/class-wp-xmlrpc-server.php:1962 -msgid "The term name cannot be empty." -msgstr "De termnaam kan niet leeg zijn." - -#: wp-includes/class-wp-xmlrpc-server.php:1856 -msgid "You are not allowed to create terms in this taxonomy." -msgstr "Je hebt geen toestemming om termen aan te maken in deze taxonomie." - -#: wp-includes/class-wp-xmlrpc-server.php:1943 -msgid "You are not allowed to edit terms in this taxonomy." -msgstr "Je hebt geen toestemming om de termen te wijzigen in deze taxonomie." - -#: wp-includes/class-wp-xmlrpc-server.php:1967 -msgid "This taxonomy is not hierarchical so you can't set a parent." -msgstr "Deze taxonomie is niet hiërachisch waardoor je deze niet als hoofd kunt zetten." - -#: wp-includes/class-wp-xmlrpc-server.php:1993 -msgid "Sorry, editing the term failed." -msgstr "Het wijzigen van deze term is niet gelukt." - -#: wp-includes/class-wp-xmlrpc-server.php:2055 -msgid "Sorry, deleting the term failed." -msgstr "Verwijderen van de term is mislukt." - -#: wp-includes/class-wp-xmlrpc-server.php:1895 -msgid "Sorry, your term could not be created. Something wrong happened." -msgstr "De term kon niet worden gemaakt. Er ging iets mis." - -#: wp-includes/class-wp-xmlrpc-server.php:1878 -#: wp-includes/class-wp-xmlrpc-server.php:1976 wp-includes/taxonomy.php:2572 -#: wp-includes/taxonomy.php:3164 -msgid "Parent term does not exist." -msgstr "Hoofdterm bestaat niet." - -#: wp-includes/class-wp-xmlrpc-server.php:2039 -msgid "You are not allowed to delete terms in this taxonomy." -msgstr "Helaas, je hebt geen toestemming om terms te verwijderen in deze taxonomie. " - -#: wp-includes/class-wp-xmlrpc-server.php:2110 -#: wp-includes/class-wp-xmlrpc-server.php:2168 -#: wp-includes/class-wp-xmlrpc-server.php:2263 -msgid "You are not allowed to assign terms in this taxonomy." -msgstr "Helaas, je hebt geen toestemming om terms aan deze taxonomie toe te voegen." - -#: wp-includes/widgets/class-wp-widget-links.php:128 -msgid "Select Link Category:" -msgstr "Linkcategorie selecteren:" - -#: wp-includes/class-wp-xmlrpc-server.php:450 -msgid "Stylesheet" -msgstr "Stylesheet" - -#: wp-includes/class-wp-xmlrpc-server.php:445 -msgid "Template" -msgstr "Template" - -#: wp-includes/widgets/class-wp-widget-links.php:141 -msgid "Link title" -msgstr "Linktitel" - -#: wp-includes/widgets/class-wp-widget-links.php:142 -msgid "Link rating" -msgstr "Linkwaardering" - -#: wp-includes/widgets/class-wp-widget-links.php:158 -msgid "Number of links to show:" -msgstr "Hoeveelheid links om te tonen:" - -#: wp-includes/widgets/class-wp-widget-links.php:143 -msgid "Link ID" -msgstr "Link-ID" - -#: wp-includes/class-wp-theme.php:253 -msgid "Stylesheet is not readable." -msgstr "Stylesheet is niet leesbaar." - -#: wp-includes/class-wp-theme.php:302 wp-includes/class-wp-theme.php:306 -msgid "The \"%s\" theme is not a valid parent theme." -msgstr "Het thema \"%s\" is geen geldig hoofdthema." - -#: wp-includes/class-wp-theme.php:249 -msgid "ERROR: The themes directory is either empty or doesn’t exist. Please check your installation." -msgstr "FOUT: De themamap is leeg of bestaat niet. Graag de installatie controleren." - -#: wp-includes/class-wp-customize-manager.php:2001 -msgid "Your latest posts" -msgstr "Je laatste berichten" - -#: wp-includes/class-wp-customize-manager.php:1817 -msgid "Tagline" -msgstr "Ondertitel" - -#: wp-includes/class-wp-customize-control.php:490 -#: wp-includes/class-wp-customize-nav-menus.php:493 -#: wp-includes/widgets/class-wp-nav-menu-widget.php:138 -msgid "— Select —" -msgstr "— Selecteren —" - -#. translators: %s: document title from the preview -#: wp-includes/class-wp-customize-manager.php:1472 -msgid "Customize: %s" -msgstr "%s aanpassen" - -#: wp-includes/class-wp-customize-manager.php:1983 -msgid "Static Front Page" -msgstr "Statische startpagina" - -#: wp-includes/script-loader.php:444 -msgid "Collapse Sidebar" -msgstr "Sidebar inklappen" - -#: wp-includes/class-wp-customize-manager.php:1986 -msgid "Your theme supports a static front page." -msgstr "Het thema ondersteunt een statische startpagina." - -#: wp-includes/class-wp-customize-manager.php:1997 -msgid "Front page displays" -msgstr "Startpagina toont" - -#: wp-includes/class-wp-xmlrpc-server.php:1296 -#: wp-includes/class-wp-xmlrpc-server.php:5161 -msgid "The post type may not be changed." -msgstr "Het berichttype kan niet worden gewijzigd." - -#: wp-includes/class-wp-xmlrpc-server.php:435 -msgid "Image default size" -msgstr "Standaard afbeeldingsformaat" - -#: wp-includes/class-wp-xmlrpc-server.php:440 -msgid "Image default align" -msgstr "Standaard uitlijning afbeelding" - -#: wp-includes/class-wp-xmlrpc-server.php:430 -msgid "Image default link type" -msgstr "Standaard linktype voor afbeelding" - -#: wp-includes/class-wp-xmlrpc-server.php:1294 -msgid "Sorry, you are not allowed to edit this post." -msgstr "Je hebt geen rechten om dit bericht te bewerken." - -#: wp-includes/admin-bar.php:322 -msgid "Edit Site" -msgstr "Website bewerken" - -#: wp-includes/post.php:3756 wp-includes/script-loader.php:501 -#: wp-includes/script-loader.php:565 -msgctxt "tag delimiter" -msgid "," -msgstr "," - -#: wp-includes/class-wp-xmlrpc-server.php:1327 -#: wp-includes/class-wp-xmlrpc-server.php:4876 -msgid "You are not allowed to create posts as this user." -msgstr "Je hebt geen toestemming om berichten aan te maken als deze gebruiker." - -#: wp-includes/class-wp-xmlrpc-server.php:1621 -#: wp-includes/class-wp-xmlrpc-server.php:4729 -msgid "The post cannot be deleted." -msgstr "Het bericht kan niet worden verwijderd." - -#: wp-includes/class-wp-xmlrpc-server.php:1286 -#: wp-includes/class-wp-xmlrpc-server.php:4077 -#: wp-includes/class-wp-xmlrpc-server.php:4825 -#: wp-includes/class-wp-xmlrpc-server.php:4883 -#: wp-includes/class-wp-xmlrpc-server.php:5157 -#: wp-includes/class-wp-xmlrpc-server.php:5221 -msgid "Invalid post type" -msgstr "Ongeldig berichttype" - -#: wp-includes/class-wp-xmlrpc-server.php:1442 -msgid "Ambiguous term name used in a hierarchical taxonomy. Please use term ID instead." -msgstr "Onduidelijke term gebruikt in een hiërarchische taxonomie. Graag een term-ID gebruiken." - -#: wp-includes/class-wp-xmlrpc-server.php:1393 -#: wp-includes/class-wp-xmlrpc-server.php:1417 -msgid "Sorry, one of the given taxonomies is not supported by the post type." -msgstr "Een van de geselecteerde taxonomieën wordt niet ondersteund voor dit berichttype." - -#: wp-includes/class-wp-xmlrpc-server.php:1396 -#: wp-includes/class-wp-xmlrpc-server.php:1420 -msgid "Sorry, you are not allowed to assign a term to one of the given taxonomies." -msgstr "Je hebt geen rechten om een term toe te voegen aan één van de opgegeven taxonomieën." - -#: wp-includes/class-wp-xmlrpc-server.php:1254 -msgid "Sorry, you are not allowed to stick this post." -msgstr "Je hebt geen rechten om dit bericht sticky te maken." - -#: wp-includes/class-wp-xmlrpc-server.php:1313 -msgid "Sorry, you are not allowed to publish posts in this post type" -msgstr "Je hebt geen rechten om dit type berichten te publiceren." - -#: wp-includes/class-wp-xmlrpc-server.php:1449 -msgid "Sorry, you are not allowed to add a term to one of the given taxonomies." -msgstr "Je hebt geen rechten om een term toe te voegen aan een van de opgegeven taxonomieën." - -#: wp-includes/class-wp-xmlrpc-server.php:1322 -msgid "Sorry, you are not allowed to create password protected posts in this post type" -msgstr "Je hebt geen rechten om een beveiligde pagina te maken voor dit berichttype" - -#: wp-includes/class-wp-xmlrpc-server.php:1308 -msgid "Sorry, you are not allowed to create private posts in this post type" -msgstr "Je hebt geen rechten om privéberichten te maken met dit berichttype" - -#: wp-includes/class-wp-xmlrpc-server.php:1773 -msgid "You are not allowed to edit posts in this post type." -msgstr "Je hebt geen rechten om berichten van dit berichttype te wijzigen." - -#: wp-includes/class-wp-xmlrpc-server.php:1332 -#: wp-includes/class-wp-xmlrpc-server.php:4887 -msgid "Invalid author ID." -msgstr "Ongeldig auteurs-ID." - -#: wp-includes/class-wp-xmlrpc-server.php:1767 -msgid "The post type specified is not valid" -msgstr "Het gespecificeerde berichttype is ongeldig" - -#: wp-includes/general-template.php:892 wp-includes/general-template.php:1357 -msgctxt "yearly archives date format" -msgid "Y" -msgstr "Y" - -#: wp-includes/general-template.php:895 wp-includes/general-template.php:1359 -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "F Y" - -#. translators: opening curly double quote -#: wp-includes/formatting.php:88 wp-includes/formatting.php:4319 -msgctxt "opening curly double quote" -msgid "“" -msgstr "“" - -#. translators: closing curly double quote -#: wp-includes/formatting.php:90 -msgctxt "closing curly double quote" -msgid "”" -msgstr "”" - -#. translators: apostrophe, for example in 'cause or can't -#: wp-includes/formatting.php:93 -msgctxt "apostrophe" -msgid "’" -msgstr "’" - -#. translators: prime, for example in 9' (nine feet) -#: wp-includes/formatting.php:96 -msgctxt "prime" -msgid "′" -msgstr "′" - -#. translators: double prime, for example in 9" (nine inches) -#: wp-includes/formatting.php:98 -msgctxt "double prime" -msgid "″" -msgstr "″" - -#. translators: opening curly single quote -#: wp-includes/formatting.php:101 -msgctxt "opening curly single quote" -msgid "‘" -msgstr "‘" - -#. translators: closing curly single quote -#: wp-includes/formatting.php:103 -msgctxt "closing curly single quote" -msgid "’" -msgstr "’" - -#: wp-signup.php:167 -msgid "Allow search engines to index this site." -msgstr "Zoekmachines toestaan deze site te indexeren." - -#: wp-load.php:90 -msgid "Create a Configuration File" -msgstr "Configuratiebestand aanmaken" - -#. translators: %s: wp-config.php -#: wp-load.php:87 -msgid "You can create a %s file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file." -msgstr "Je kunt een %s-bestand aanmaken via de web-interface, maar dit werkt niet voor alle servertypes. De veiligste manier is om het bestand handmatig aan te maken." - -#: wp-activate.php:97 -msgid "Your account has been activated. You may now log in to the site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can reset your password." -msgstr "Je account is geactiveerd! Je kunt nu inloggen met je gekozen gebruikersnaam “%2$s”. Controleer je e-mail van %3$s voor je wachtwoord en verdere instructies. Mocht je geen e-mail ontvangen hebben controleer dan je spam of junk folder. Heb je na een uur nog niets ontvangen dan kun je je wachtwoord resetten." - -#: wp-activate.php:99 -msgid "Your site at %2$s is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can reset your password." -msgstr "Je website op %2$s is actief. Je kunt nu in je site inloggen met je gekozen gebruikersnaam “%3$s”. Controleer je e-mailinbox bij %4$s voor je wachtwoord en inloginstructies. Als je geen e-mail ontvangt, check je spam folder. Wanneer je binnen een uur nog steeds geen e-mail hebt ontvangen, kun je je wachtwoord resetten." - -#: wp-signup.php:457 -msgid "%2$s is your new site. Log in as “%4$s” using your existing password." -msgstr "%2$s is je nieuwe website. Log in als “%4$s” gebruikmakend van je bestaande wachtwoord." - -#: wp-includes/functions.php:1397 -msgid "One or more database tables are unavailable. The database may need to be repaired." -msgstr "Eén of meer databasetabellen zijn niet beschikbaar. De database moet waarschijnlijk worden gerepareerd." - -#: wp-includes/comment.php:753 wp-includes/comment.php:755 -msgid "You are posting comments too quickly. Slow down." -msgstr "Je plaatst te snel reacties. Rustig aan." - -#: wp-includes/admin-bar.php:662 -msgctxt "admin bar menu group label" -msgid "New" -msgstr "Nieuw" - -#: wp-includes/admin-bar.php:695 -msgid "%s comment awaiting moderation" -msgid_plural "%s comments awaiting moderation" -msgstr[0] "%s reactie wacht op moderatie" -msgstr[1] "%s reacties wachten op moderatie" - -#: wp-includes/script-loader.php:280 -msgid "%s exceeds the maximum upload size for the multi-file uploader when used in your browser." -msgstr "%s overschrijdt de maximale uploadgrootte voor de multi-bestandsuploader zoals gebruikt in je browser." - -#: wp-includes/script-loader.php:279 -msgid "Please try uploading this file with the %1$sbrowser uploader%2$s." -msgstr "Probeer dit bestand te uploaden met de %1$sbrowser uploader%2$s." - -#: wp-includes/script-loader.php:288 -msgid "“%s” has failed to upload." -msgstr "Uploaden van “%s” is mislukt." - -#: wp-includes/widgets/class-wp-widget-links.php:130 -msgctxt "links widget" -msgid "All Links" -msgstr "Alle links" - -#. translators: en dash -#: wp-includes/formatting.php:106 -msgctxt "en dash" -msgid "–" -msgstr "–" - -#. translators: em dash -#: wp-includes/formatting.php:108 -msgctxt "em dash" -msgid "—" -msgstr "—" - -#: wp-includes/class-wp-admin-bar.php:126 -msgid "The menu ID should not be empty." -msgstr "Het menu-ID mag niet leeg zijn." - -#: wp-includes/admin-bar.php:110 wp-includes/admin-bar.php:119 -msgid "About WordPress" -msgstr "Over WordPress" - -#: wp-includes/script-loader.php:268 -msgid "%s exceeds the maximum upload size for this site." -msgstr "%s overschrijdt de maximale uploadgrootte voor deze website." - -#: wp-includes/admin-bar.php:152 -msgid "Feedback" -msgstr "Terugkoppeling" - -#: wp-includes/comment.php:2779 -msgid "ERROR: please type a comment." -msgstr "FOUT: je hebt geen reactie geschreven." - -#: wp-includes/comment.php:2774 -msgid "ERROR: please enter a valid email address." -msgstr "FOUT: je hebt een ongeldig e-mailadres opgegeven." - -#: wp-includes/comment.php:2772 -msgid "ERROR: please fill the required fields (name, email)." -msgstr "FOUT: vul de verplichte velden in (naam, e-mail)." - -#: wp-includes/script-loader.php:628 -msgid "Could not load the preview image. Please reload the page and try again." -msgstr "De vooraf bekeken afbeelding kan niet geladen worden. Herlaad de pagina en probeer opnieuw." - -#: wp-includes/ms-deprecated.php:380 -msgid "ERROR: Site URL already taken." -msgstr "FOUT: Website-URL al in gebruik." - -#: wp-includes/ms-deprecated.php:387 -msgid "ERROR: problem creating site entry." -msgstr "FOUT: probleem bij het maken van een sitebericht." - -#: wp-includes/admin-bar.php:136 -msgid "Documentation" -msgstr "Documentatie" - -#: wp-includes/admin-bar.php:144 -msgid "Support Forums" -msgstr "Ondersteuningsforums" - -#: wp-includes/formatting.php:2953 wp-includes/general-template.php:3040 -msgid "…" -msgstr "…" - -#: wp-includes/functions.php:3508 wp-includes/ms-load.php:286 -#: wp-includes/wp-db.php:1533 -msgid "Error establishing a database connection" -msgstr "Fout bij het maken van de databaseconnectie" - -#: wp-includes/functions.php:3504 -msgid "Database Error" -msgstr "Databasefout" - -#. translators: %s: number of comments -#: wp-includes/comment-template.php:874 -msgid "%s Comment" -msgid_plural "%s Comments" -msgstr[0] "%s reactie" -msgstr[1] "%s reacties" - -#: wp-includes/admin-bar.php:128 -msgid "WordPress.org" -msgstr "WordPress.org" - -#: wp-includes/admin-bar.php:294 -msgid "Network Admin: %s" -msgstr "Netwerkbeheer: %s" - -#: wp-includes/taxonomy.php:522 -msgctxt "taxonomy singular name" -msgid "Tag" -msgstr "Tag" - -#: wp-includes/taxonomy.php:521 -msgctxt "taxonomy general name" -msgid "Tags" -msgstr "Tags" - -#: wp-includes/functions.wp-scripts.php:42 -msgid "Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks." -msgstr "Scripts en styles zouden niet geregistreerd of geladen mogen worden voor de %1$s, %2$s, of %3$s hooks." - -#: wp-includes/ms-functions.php:1964 -msgid "You have been added to this site. Please visit the homepage or log in using your username and password." -msgstr "Je bent toegevoegd aan deze site. Bezoek de homepagina of log in met je gebruikersnaam en wachtwoord." - -#: wp-includes/script-loader.php:272 -msgid "Memory exceeded. Please try another smaller file." -msgstr "Het geheugen is overschreden. Probeer opnieuw met een kleiner bestand." - -#: wp-includes/script-loader.php:273 -msgid "This is larger than the maximum size. Please try another." -msgstr "Dit is groter dan de maximaal toegestane grootte. Een ander bestand proberen." - -#: wp-includes/script-loader.php:271 -msgid "This file is not an image. Please try another." -msgstr "Dit bestand is geen afbeelding. Probeer een ander bestand." - -#: wp-includes/general-template.php:3134 -msgctxt "admin color scheme" -msgid "Blue" -msgstr "Blauw" - -#: wp-includes/formatting.php:3832 -msgid "The timezone you have entered is not valid. Please select a valid timezone." -msgstr "De opgegeven tijdzone is niet geldig. Een geldige tijdzone selecteren." - -#: wp-includes/post.php:57 -msgctxt "add new from admin bar" -msgid "Media" -msgstr "Media" - -#: wp-includes/admin-bar.php:657 -msgctxt "add new from admin bar" -msgid "User" -msgstr "Gebruiker" - -#: wp-includes/taxonomy.php:529 -msgid "View Category" -msgstr "Categorie bekijken" - -#: wp-includes/pluggable.php:1109 -msgid "You should specify a nonce action to be verified by using the first parameter." -msgstr "Je moet een nonce-actie specificeren die kan worden geverifieerd door gebruik te maken van de eerste parameter." - -#: wp-includes/taxonomy.php:529 -msgid "View Tag" -msgstr "Tag bekijken" - -#: wp-activate.php:124 -msgid "Your account is now activated. View your site or Log in" -msgstr "Je account is nu geactiveerd. Bekijk je site of Log in" - -#: wp-activate.php:126 -msgid "Your account is now activated. Log in or go back to the homepage." -msgstr "Je account is nu geactiveerd. Log in of ga terug naar de homepagina." - -#: wp-includes/admin-bar.php:197 -msgid "Howdy, %1$s" -msgstr "Hallo, %1$s" - -#: wp-includes/post.php:1371 -msgid "All Posts" -msgstr "Alle berichten" - -#: wp-includes/post.php:1371 -msgid "All Pages" -msgstr "Alle pagina's" - -#: wp-includes/script-loader.php:487 -msgid "Approve and Reply" -msgstr "Goedkeuren en beantwoorden" - -#: wp-includes/class-walker-comment.php:235 -msgid "Pingback:" -msgstr "Pingback:" - -#: wp-includes/link-template.php:2366 -msgid "Post navigation" -msgstr "Berichtnavigatie" - -#: wp-includes/link-template.php:2775 wp-includes/link-template.php:2824 -msgid "Comments navigation" -msgstr "Reactiesnavigatie" - -#: wp-includes/class-wp-admin-bar.php:416 -msgid "Toolbar" -msgstr "Toolbar" - -#: wp-includes/class-wp-editor.php:905 -msgid "Poster" -msgstr "Schrijver" - -#: wp-includes/media-template.php:1075 wp-includes/media-template.php:1164 -msgid "Preload" -msgstr "Preload" - -#: wp-includes/class-http.php:226 -msgid "Destination directory for file streaming does not exist or is not writable." -msgstr "De doelmap voor het streamen van bestanden bestaat niet of er kan niet naar worden geschreven." - -#: wp-includes/class-http.php:361 -msgid "There are no HTTP transports available which can complete the requested request." -msgstr "Er zijn geen HTTP-verzoeken beschikbaar welke het gevraagde request kunnen voltooien." - -#: wp-includes/taxonomy.php:123 wp-includes/taxonomy.php:124 -msgctxt "post format" -msgid "Format" -msgstr "Berichttype" - -#: wp-includes/class-wp-editor.php:1406 -msgid "Enter the destination URL" -msgstr "Geef de URL van de bestemming" - -#: wp-includes/class-wp-editor.php:1417 -msgid "Or link to existing content" -msgstr "Of link naar bestaand bericht of pagina" - -#: wp-includes/query.php:149 wp-includes/query.php:170 -#: wp-includes/query.php:191 wp-includes/query.php:215 -#: wp-includes/query.php:239 wp-includes/query.php:263 -#: wp-includes/query.php:292 wp-includes/query.php:312 -#: wp-includes/query.php:332 wp-includes/query.php:352 -#: wp-includes/query.php:373 wp-includes/query.php:393 -#: wp-includes/query.php:422 wp-includes/query.php:451 -#: wp-includes/query.php:471 wp-includes/query.php:498 -#: wp-includes/query.php:518 wp-includes/query.php:538 -#: wp-includes/query.php:558 wp-includes/query.php:578 -#: wp-includes/query.php:607 wp-includes/query.php:634 -#: wp-includes/query.php:654 wp-includes/query.php:674 -#: wp-includes/query.php:694 wp-includes/query.php:714 -#: wp-includes/query.php:734 -msgid "Conditional query tags do not work before the query is run. Before then, they always return false." -msgstr "Voorwaardelijke query tags werken niet voordat de query is uitgevoerd. Daarvoor geeft deze altijd false terug." - -#: wp-includes/ms-functions.php:962 -msgid "The user is already active." -msgstr "De gebruiker is al geactiveerd." - -#: wp-includes/functions.php:3782 -msgid "(This message was added in version %s.)" -msgstr "(Dit bericht is toegevoegd in versie %s.)" - -#: wp-includes/functions.php:3787 -msgid "%1$s was called incorrectly. %2$s %3$s" -msgstr "%1$s werd verkeerd aangeroepen. %2$s %3$s" - -#: wp-includes/class-wp-xmlrpc-server.php:6129 -msgid "Sorry, you cannot publish this post." -msgstr "Je kunt dit bericht niet publiceren." - -#: wp-includes/pluggable.php:1496 -msgid "Permalink: %s" -msgstr "Permalink: %s" - -#: wp-includes/post-formats.php:90 -msgctxt "Post format" -msgid "Standard" -msgstr "Standaard" - -#: wp-signup.php:119 -msgid "domain" -msgstr "domein" - -#: wp-signup.php:120 -msgid "Your address will be %s." -msgstr "Je adres wordt %s." - -#: wp-includes/post-formats.php:99 -msgctxt "Post format" -msgid "Audio" -msgstr "Audio" - -#: wp-includes/class-wp-xmlrpc-server.php:4847 -#: wp-includes/class-wp-xmlrpc-server.php:5167 -msgid "Invalid post format" -msgstr "Ongeldig berichttype" - -#: wp-includes/class-wp-editor.php:1434 -msgid "No search term specified. Showing recent items." -msgstr "Geen zoektekst gespecificeerd. Recente berichten worden getoond." - -#: wp-includes/plugin.php:832 -msgid "Only a static class method or function can be used in an uninstall hook." -msgstr "Alleen een statische klassemethode of -functie kan gebruikt worden in een deïnstallatie-hook." - -#: wp-includes/post.php:2808 -msgid "Passing an integer number of posts is deprecated. Pass an array of arguments instead." -msgstr "Een heel getal van berichten opgeven wordt afgeraden. Geef in plaats daarvan een reeks van argumenten op." - -#: wp-includes/post-formats.php:98 -msgctxt "Post format" -msgid "Video" -msgstr "Video" - -#: wp-includes/post-formats.php:97 -msgctxt "Post format" -msgid "Status" -msgstr "Status" - -#: wp-includes/post-formats.php:96 -msgctxt "Post format" -msgid "Quote" -msgstr "Quote" - -#: wp-includes/post-formats.php:95 -msgctxt "Post format" -msgid "Image" -msgstr "Afbeelding" - -#: wp-includes/post-formats.php:94 -msgctxt "Post format" -msgid "Link" -msgstr "Link" - -#: wp-includes/post-formats.php:93 -msgctxt "Post format" -msgid "Gallery" -msgstr "Galerij" - -#: wp-includes/post-formats.php:91 -msgctxt "Post format" -msgid "Aside" -msgstr "Aside" - -#: wp-includes/post-formats.php:92 -msgctxt "Post format" -msgid "Chat" -msgstr "Chat" - -#: wp-includes/post.php:1368 -msgid "No pages found." -msgstr "Geen pagina's gevonden." - -#: wp-includes/post.php:1369 -msgid "No pages found in Trash." -msgstr "Geen pagina's gevonden in de prullenbak." - -#: wp-includes/post.php:1369 -msgid "No posts found in Trash." -msgstr "Geen berichten gevonden in de prullenbak." - -#: wp-includes/admin-bar.php:530 -msgid "Shortlink" -msgstr "Verkorte link" - -#: wp-includes/class-wp-xmlrpc-server.php:1372 -#: wp-includes/class-wp-xmlrpc-server.php:3908 -#: wp-includes/class-wp-xmlrpc-server.php:5031 -#: wp-includes/class-wp-xmlrpc-server.php:5386 -msgid "Invalid attachment ID." -msgstr "Ongeldig bijlage-ID." - -#: wp-includes/registration-functions.php:7 wp-includes/registration.php:7 -msgid "This file no longer needs to be included." -msgstr "Dit bestand hoeft niet langer te worden toegevoegd." - -#: wp-login.php:521 -msgid "Please enter your username or email address. You will receive a link to create a new password via email." -msgstr "Je gebruikersnaam of e-mailadres invoeren. Je ontvangt per e-mail een link waarmee je een nieuw wachtwoord kunt aanmaken." - -#: wp-includes/widgets/class-wp-widget-archives.php:155 -#: wp-includes/widgets/class-wp-widget-categories.php:160 -msgid "Display as dropdown" -msgstr "Als dropdown weergeven" - -#: wp-includes/class-wp-xmlrpc-server.php:507 -msgid "Medium size image width" -msgstr "Breedte gemiddelde afbeelding" - -#: wp-includes/class-wp-xmlrpc-server.php:512 -msgid "Medium size image height" -msgstr "Hoogte gemiddelde afbeelding" - -#: wp-includes/class-wp-xmlrpc-server.php:527 -msgid "Large size image width" -msgstr "Breedte grote afbeeldingen" - -#: wp-includes/class-wp-xmlrpc-server.php:532 -msgid "Large size image height" -msgstr "Hoogte grote afbeelding" - -#: wp-includes/class-wp-xmlrpc-server.php:502 -msgid "Crop thumbnail to exact dimensions" -msgstr "Thumbnail bijsnijden naar exacte afmetingen" - -#: wp-includes/class-wp-xmlrpc-server.php:497 -msgid "Thumbnail Height" -msgstr "Thumbnailhoogte" - -#: wp-includes/class-wp-xmlrpc-server.php:492 -msgid "Thumbnail Width" -msgstr "Thumbnailbreedte" - -#: wp-login.php:325 -msgid "If this was a mistake, just ignore this email and nothing will happen." -msgstr "Als dit een vergissing was, kun je deze e-mail negeren en zal er niets gebeuren." - -#: wp-login.php:615 -msgid "Enter your new password below." -msgstr "Voer hieronder je nieuwe wachtwoord in." - -#: wp-login.php:623 -msgid "New password" -msgstr "Nieuw wachtwoord" - -#: wp-login.php:635 -msgid "Confirm new password" -msgstr "Nieuw wachtwoord bevestigen" - -#: wp-login.php:592 -msgid "The passwords do not match." -msgstr "De wachtwoorden komen niet overeen." - -#: wp-login.php:326 -msgid "To reset your password, visit the following address:" -msgstr "Ga naar dit adres om je wachtwoord opnieuw in te stellen:" - -#: wp-login.php:615 wp-login.php:653 -msgid "Reset Password" -msgstr "Wachtwoord opnieuw instellen" - -#: wp-login.php:607 -msgid "Password Reset" -msgstr "Wachtwoord opnieuw instellen" - -#: wp-login.php:607 -msgid "Your password has been reset." -msgstr "Je wachtwoord is opnieuw ingesteld." - -#: wp-login.php:322 -msgid "Someone has requested a password reset for the following account:" -msgstr "Iemand heeft verzocht om het wachtwoord van het volgende account opnieuw in te stellen:" - -#: wp-includes/admin-bar.php:496 -msgid "Manage Comments" -msgstr "Reacties beheren" - -#: wp-includes/admin-bar.php:258 -msgid "Edit My Profile" -msgstr "Mijn profiel wijzigen" - -#: wp-includes/post-formats.php:68 -msgid "Invalid post." -msgstr "Ongeldig bericht." - -#. translators: %s: taxonomy name -#: wp-includes/post.php:3245 -msgid "Invalid taxonomy: %s." -msgstr "Ongeldige taxonomie: %s." - -#: wp-includes/query.php:2549 -msgid "\"caller_get_posts\" is deprecated. Use \"ignore_sticky_posts\" instead." -msgstr "\"caller_get_posts\" is verouderd. Gebruik in plaats hiervan \"ignore_sticky_posts\"." - -#: wp-includes/taxonomy.php:94 -msgid "Link Category" -msgstr "Linkcategorie" - -#: wp-includes/taxonomy.php:99 -msgid "Update Link Category" -msgstr "Linkcategorie bijwerken" - -#: wp-includes/taxonomy.php:101 -msgid "New Link Category Name" -msgstr "Nieuwe linkcategorienaam" - -#: wp-includes/taxonomy.php:95 -msgid "Search Link Categories" -msgstr "Linkcategorieën zoeken" - -#: wp-includes/taxonomy.php:100 -msgid "Add New Link Category" -msgstr "Een nieuwe linkcategorie toevoegen" - -#: wp-includes/taxonomy.php:97 -msgid "All Link Categories" -msgstr "Alle linkcategorieën" - -#: wp-includes/admin-bar.php:405 -msgid "Network Admin" -msgstr "Netwerkbeheer" - -#: wp-includes/ms-functions.php:842 wp-includes/ms-functions.php:927 -msgid "[%1$s] Activate %2$s" -msgstr "[%1$s] %2$s activeren" - -#: wp-includes/load.php:133 -msgid "Your server is running PHP version %1$s but WordPress %2$s requires at least %3$s." -msgstr "Op deze server draait PHP-versie %1$s, maar WordPress %2$s vereist minimaal PHP-versie %3$s." - -#: wp-signup.php:799 -msgctxt "Multisite active signup type" -msgid "user" -msgstr "gebruiker" - -#: wp-signup.php:798 -msgctxt "Multisite active signup type" -msgid "blog" -msgstr "blog" - -#: wp-signup.php:797 -msgctxt "Multisite active signup type" -msgid "none" -msgstr "geen" - -#: wp-signup.php:796 -msgctxt "Multisite active signup type" -msgid "all" -msgstr "alles" - -#: wp-includes/widgets/class-wp-nav-menu-widget.php:27 -msgid "Custom Menu" -msgstr "Aangepast menu" - -#: wp-includes/theme-compat/sidebar.php:109 -msgid "XFN" -msgstr "XFN" - -#: wp-includes/theme-compat/sidebar.php:109 -msgid "XHTML Friends Network" -msgstr "XHTML-vriendennetwerk" - -#: wp-includes/theme-compat/footer.php:26 -msgid "Comments (RSS)" -msgstr "Reacties (RSS)" - -#: wp-includes/theme-compat/footer.php:26 -msgid "Entries (RSS)" -msgstr "Berichten (RSS)" - -#: wp-includes/theme-compat/comments.php:24 -msgid "This post is password protected. Enter the password to view comments." -msgstr "Dit bericht is beveiligd met een wachtwoord. Voer het wachtwoord in om de reacties te bekijken." - -#: wp-includes/theme-compat/comments-popup.php:21 -msgid "%1$s - Comments on %2$s" -msgstr "%1$s - reactie op %2$s" - -#: wp-includes/theme-compat/footer.php:27 -msgid "%d queries. %s seconds." -msgstr "%d query's. %s seconden." - -#: wp-includes/theme-compat/comments-popup.php:72 -msgid "Logged in as %2$s. Log out »" -msgstr "Ingelogd als %2$s. Uitloggen »" - -#: wp-includes/theme-compat/footer.php:26 -msgid "%1$s and %2$s." -msgstr "%1$s en %2$s." - -#: wp-includes/theme-compat/comments-popup.php:58 -msgid "by %1$s — %2$s @ %4$s" -msgstr "door %1$s — %2$s @ %4$s" - -#: wp-includes/theme-compat/sidebar.php:49 -msgid "l, F jS, Y" -msgstr "l, F jS, Y" - -#: wp-includes/theme-compat/sidebar.php:57 -msgid "F, Y" -msgstr "F, Y" - -#: wp-includes/theme-compat/comments-popup.php:122 -msgid "Powered by WordPress" -msgstr "Powered by WordPress" - -#. translators: %s: category name -#: wp-includes/theme-compat/sidebar.php:40 -msgid "You are currently browsing the archives for the %s category." -msgstr "Je bladert momenteel door het archief van de categorie %s. " - -#: wp-includes/theme-compat/footer.php:24 -msgid "%1$s is proudly powered by %2$s" -msgstr "%1$s wordt met trots ondersteund door %2$s" - -#. translators: 1: site link, 2: search query -#: wp-includes/theme-compat/sidebar.php:71 -msgid "You have searched the %1$s blog archives for ‘%2$s’. If you are unable to find anything in these search results, you can try one of these links." -msgstr "Je hebt het %1$s site-archief doorzocht naar ‘%2$s’. Als je niets kunt vinden met deze zoekresultaten kunnen onderstaande links gebruikt worden." - -#: wp-includes/taxonomy.php:535 -msgid "Choose from the most used tags" -msgstr "Kies uit de meest gebruikte tags" - -#: wp-includes/taxonomy.php:522 -msgctxt "taxonomy singular name" -msgid "Category" -msgstr "Categorie" - -#: wp-includes/taxonomy.php:523 -msgid "Search Tags" -msgstr "Tags zoeken" - -#: wp-includes/taxonomy.php:524 -msgid "Popular Tags" -msgstr "Populaire tags" - -#: wp-includes/taxonomy.php:532 -msgid "New Category Name" -msgstr "Nieuwe categorienaam" - -#: wp-includes/taxonomy.php:532 -msgid "New Tag Name" -msgstr "Nieuwe tagnaam" - -#: wp-includes/taxonomy.php:531 -msgid "Add New Category" -msgstr "Nieuwe categorie toevoegen" - -#: wp-includes/taxonomy.php:531 -msgid "Add New Tag" -msgstr "Nieuwe tag toevoegen" - -#: wp-includes/taxonomy.php:530 -msgid "Update Tag" -msgstr "Tag bijwerken" - -#: wp-includes/taxonomy.php:525 -msgid "All Tags" -msgstr "Alle tags" - -#: wp-includes/taxonomy.php:521 -msgctxt "taxonomy general name" -msgid "Categories" -msgstr "Categorieën" - -#: wp-includes/taxonomy.php:527 -msgid "Parent Category:" -msgstr "Hoofdcategorie:" - -#: wp-includes/taxonomy.php:526 -msgid "Parent Category" -msgstr "Hoofdcategorie" - -#: wp-signup.php:741 -msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake." -msgstr "Controleer de prullenbak of spam map van je e-mailprogramma. Soms komen e-mails per ongeluk daar terecht." - -#: wp-signup.php:740 -msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control." -msgstr "Nog even geduld. We hebben niet alle omstandigheden waaronder een e-mailbericht wordt afgeleverd in de hand." - -#: wp-signup.php:802 -msgid "Greetings Site Administrator! You are currently allowing “%s” registrations. To change or disable registration go to your Options page." -msgstr "Hallo Websitebeheerder! Op dit moment heb je “%s” registraties toegelaten. Ga naar de instellingen pagina om de registratie-instellingen te wijzigen of uit te schakelen." - -#: wp-signup.php:844 -msgid "Sorry, new registrations are not allowed at this time." -msgstr "Op dit moment zijn nieuwe registraties niet toegestaan." - -#: wp-signup.php:229 -msgid "We send your registration email to this address. (Double-check your email address before continuing.)" -msgstr "Het registratiebericht is verstuurd naar dit e-mailadres. (Controleer het adres nog een keer voordat je doorgaat.)" - -#: wp-includes/post.php:1363 -msgid "Add New Post" -msgstr "Nieuw bericht toevoegen" - -#: wp-includes/post.php:1360 -msgctxt "post type general name" -msgid "Posts" -msgstr "Berichten" - -#: wp-includes/post.php:1364 -msgid "Edit Page" -msgstr "Pagina bewerken" - -#: wp-includes/post.php:1367 -msgid "Search Posts" -msgstr "Berichten zoeken" - -#: wp-includes/post.php:1363 -msgid "Add New Page" -msgstr "Nieuwe pagina toevoegen" - -#: wp-includes/post.php:1360 -msgctxt "post type general name" -msgid "Pages" -msgstr "Pagina's" - -#: wp-includes/post.php:1361 -msgctxt "post type singular name" -msgid "Page" -msgstr "Pagina" - -#: wp-includes/post.php:1361 -msgctxt "post type singular name" -msgid "Post" -msgstr "Bericht" - -#: wp-includes/post.php:1370 -msgid "Parent Page:" -msgstr "Hoofdpagina:" - -#: wp-includes/post.php:1367 -msgid "Search Pages" -msgstr "Pagina's zoeken" - -#: wp-includes/ms-default-constants.php:132 -msgid "The constant VHOST is deprecated. Use the boolean constant SUBDOMAIN_INSTALL in wp-config.php to enable a subdomain configuration. Use is_subdomain_install() to check whether a subdomain configuration is enabled." -msgstr "De constante VHOST is niet langer in gebruik. Gebruik de boolean-constante SUBDOMAIN_INSTALL in wp-config.php om de subdomeinconfiguratie in te schakelen. Gebruik subdomain_install() om te controleren of een subdomeinconfiguratie ingeschakeld is." - -#: wp-includes/ms-default-constants.php:134 -msgid "Conflicting values for the constants VHOST and SUBDOMAIN_INSTALL. The value of SUBDOMAIN_INSTALL will be assumed to be your subdomain configuration setting." -msgstr "Conflicterende waarden voor de constanten VHOST en SUBDOMAIN_INSTALL. De waarde van SUBDOMAIN_INSTALL zal worden overgenomen voor de subdomeinconfiguratie-instelling." - -#: wp-includes/user.php:2123 -msgid "ERROR: This username is invalid because it uses illegal characters. Please enter a valid username." -msgstr "FOUT: Deze gebruikersnaam is ongeldig omdat er illegale tekens in voorkomen. Vul een geldige gebruikersnaam in." - -#: wp-includes/comment-template.php:2106 -msgid "Required fields are marked %s" -msgstr "Verplichte velden zijn gemarkeerd met %s" - -#. translators: %s: template name -#: wp-includes/theme-compat/comments-popup.php:12 -#: wp-includes/theme-compat/comments.php:12 -#: wp-includes/theme-compat/footer.php:12 -#: wp-includes/theme-compat/header.php:12 -#: wp-includes/theme-compat/sidebar.php:12 -msgid "Theme without %s" -msgstr "Thema zonder %s" - -#. translators: %s: template name -#: wp-includes/theme-compat/comments-popup.php:16 -#: wp-includes/theme-compat/comments.php:16 -#: wp-includes/theme-compat/footer.php:16 -#: wp-includes/theme-compat/header.php:16 -#: wp-includes/theme-compat/sidebar.php:16 -msgid "Please include a %s template in your theme." -msgstr "Graag een %s-template aan je thema toevoegen." - -#: wp-includes/class-wp-xmlrpc-server.php:4810 -msgid "Sorry, you are not allowed to publish pages on this site." -msgstr "Je hebt geen toestemming om berichten te publiceren op deze site." - -#: wp-includes/class-wp-xmlrpc-server.php:3156 -#: wp-includes/class-wp-xmlrpc-server.php:5687 -#: wp-includes/class-wp-xmlrpc-server.php:5908 -msgid "Sorry, you must be able to edit posts on this site in order to view categories." -msgstr "Je moet berichten kunnen bewerken om categorieën te bekijken." - -#: wp-includes/class-wp-xmlrpc-server.php:4821 -#: wp-includes/class-wp-xmlrpc-server.php:4834 -#: wp-includes/class-wp-xmlrpc-server.php:4839 -msgid "Sorry, you are not allowed to publish posts on this site." -msgstr "Je hebt geen rechten om berichten op deze site te publiceren." - -#: wp-includes/class-wp-xmlrpc-server.php:1299 -#: wp-includes/class-wp-xmlrpc-server.php:4573 -msgid "Sorry, you are not allowed to post on this site." -msgstr "Je hebt geen rechten om berichten op deze site te plaatsen." - -#: wp-includes/class-wp-xmlrpc-server.php:4384 -msgid "Sorry, you do not have access to user data on this site." -msgstr "Je hebt geen toegang tot de gebruikersgegevens van deze site." - -#: wp-includes/ms-functions.php:1115 -msgid "Could not create site." -msgstr "Niet mogelijk om website aan te maken." - -#: wp-includes/ms-functions.php:1195 -msgid "New Site Registration: %s" -msgstr "Nieuwe website registratie: %s" - -#: wp-includes/ms-functions.php:1499 -msgid "New %1$s Site: %2$s" -msgstr "Nieuw %1$s website: %2$s" - -#: wp-includes/ms-functions.php:818 -msgid "" -"To activate your blog, please click the following link:\n" -"\n" -"%s\n" -"\n" -"After you activate, you will receive *another email* with your login.\n" -"\n" -"After you activate, you can visit your site here:\n" -"\n" -"%s" -msgstr "" -"Klik op de volgende link om je site te activeren:\n" -"\n" -"%s\n" -"\n" -"Na je activatie ontvang je een *andere e-mail* met je inlog gegevens.\n" -"\n" -"Na je activatie, kun je de site hier bezoeken:\n" -"\n" -"%s" - -#: wp-includes/class-wp-xmlrpc-server.php:3611 -#: wp-includes/class-wp-xmlrpc-server.php:3692 -#: wp-includes/class-wp-xmlrpc-server.php:3724 -#: wp-includes/class-wp-xmlrpc-server.php:3756 -#: wp-includes/class-wp-xmlrpc-server.php:3994 -msgid "You are not allowed access to details about this site." -msgstr "Je hebt geen toestemming om de details van deze site te bekijken." - -#: wp-includes/class-wp-xmlrpc-server.php:472 -msgid "Site Tagline" -msgstr "Beschrijving site " - -#: wp-includes/ms-functions.php:964 -msgid "The site is already active." -msgstr "Deze website is al actief." - -#: wp-includes/ms-functions.php:628 -msgid "That site is currently reserved but may be available in a couple days." -msgstr "Deze site is momenteel gereserveerd, maar komt wellicht binnenkort beschikbaar." - -#: wp-includes/class-wp-xmlrpc-server.php:2939 -#: wp-includes/class-wp-xmlrpc-server.php:4483 -#: wp-includes/class-wp-xmlrpc-server.php:5574 -msgid "Sorry, you cannot edit posts on this site." -msgstr "Je kunt geen berichten bewerken op deze site." - -#: wp-includes/class-wp-xmlrpc-server.php:2980 -msgid "Sorry, you must be able to edit posts on this site in order to view tags." -msgstr "Je moet rechten hebben om berichten te bewerken om tags te bekijken." - -#: wp-includes/ms-functions.php:617 -msgid "Sorry, that site is reserved!" -msgstr "Deze website is gereserveerd!" - -#: wp-includes/ms-functions.php:585 -msgid "Sorry, site names must have letters too!" -msgstr "Sitenamen moeten ook letters bevatten!" - -#: wp-includes/ms-functions.php:581 -msgid "Sorry, you may not use that site name." -msgstr "Dit mag niet worden gebruikt als websitenaam." - -#: wp-includes/ms-functions.php:613 wp-includes/ms-functions.php:1108 -msgid "Sorry, that site already exists!" -msgstr "Deze website bestaat al!" - -#: wp-includes/pluggable.php:1754 -msgid "New user registration on your site %s:" -msgstr "Nieuwe gebruiker geregistreerd op de site %s:" - -#: wp-includes/ms-load.php:113 -msgid "This site has been archived or suspended." -msgstr "Deze website is gearchiveerd of buiten werking gesteld." - -#: wp-includes/load.php:494 -msgid "The site you have requested is not installed properly. Please contact the system administrator." -msgstr "De site die je hebt aangevraagd is niet correct geïnstalleerd. Neem contact op met de systeembeheerder." - -#: wp-includes/nav-menu.php:360 -msgid "The given object ID is not that of a menu item." -msgstr "Het opgegeven object ID is niet van een menu-item." - -#: wp-includes/formatting.php:3777 -msgid "The Site address you entered did not appear to be a valid URL. Please enter a valid URL." -msgstr "Het ingevulde siteadres is geen geldige URL. Voer een geldige URL in." - -#: wp-includes/formatting.php:3661 -msgid "The email address entered did not appear to be a valid email address. Please enter a valid email address." -msgstr "Het ingevulde e-mailadres is ongeldig. Een geldig e-mailadres invoeren." - -#: wp-includes/formatting.php:3764 -msgid "The WordPress address you entered did not appear to be a valid URL. Please enter a valid URL." -msgstr "Het ingevulde WordPress-adres is geen geldige URL. Voer een geldige URL in." - -#: wp-includes/taxonomy.php:2646 -msgid "A term with the name provided already exists with this parent." -msgstr "Deze term met dit hoofd is al eerder toegevoegd en bestaat al." - -#: wp-includes/ms-functions.php:1962 -msgid "An error occurred adding you to this site. Back to the homepage." -msgstr "Er is een fout opgetreden bij het toevoegen van je op deze site. Ga terug naar de homepagina." - -#: wp-includes/ms-functions.php:1880 -msgid "This file is too big. Files must be less than %d KB in size." -msgstr "Dit bestand is te groot. Bestanden moeten kleiner dan %d KB zijn." - -#: wp-includes/comment-template.php:2123 -msgid "Your email address will not be published." -msgstr "Het e-mailadres wordt niet gepubliceerd." - -#: wp-includes/class-http.php:195 wp-includes/class-wp-xmlrpc-server.php:6184 -msgid "A valid URL was not provided." -msgstr "De opgegeven URL is ongeldig." - -#: wp-includes/class-wp-image-editor-gd.php:193 -#: wp-includes/class-wp-image-editor-imagick.php:245 -msgid "Could not calculate resized image dimensions" -msgstr "De afmetingen van de geschaalde afbeelding konden niet worden berekend" - -#: wp-signup.php:846 -msgid "You are logged in already. No need to register again!" -msgstr "Je bent al ingelogd. Je hoeft je dus niet opnieuw te registreren." - -#: wp-mail.php:15 -msgid "This action has been disabled by the administrator." -msgstr "Deze handeling is uitgeschakeld door de beheerder." - -#: wp-signup.php:738 -msgid "If you haven’t received your email yet, there are a number of things you can do:" -msgstr "Wanneer je nog geen bericht hebt ontvangen, zijn er een aantal dingen die je kunt doen:" - -#: wp-signup.php:302 -msgid "Welcome back, %s. By filling out the form below, you can add another site to your account. There is no limit to the number of sites you can have, so create to your heart’s content, but write responsibly!" -msgstr "Welkom terug, %s. Met behulp van het onderstaande formulier kun je een nieuwe website toevoegen aan je account.. Er is geen limiet voor het aantal websites, dus ga je gang." - -#: wp-signup.php:120 -msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!" -msgstr "Het moeten minstens 4 karakters zijn, alleen letters en cijfers. Het kan niet veranderd worden, dus wees voorzichtig!" - -#: wp-signup.php:811 -msgid "You must first log in, and then you can create a new site." -msgstr "Je moet eerst inloggen, daarna kun je een nieuwe site maken." - -#: wp-includes/ms-load.php:312 -msgid "If you’re still stuck with this message, then check that your database contains the following tables:" -msgstr "Wanneer je deze melding nog steeds krijgt, controleer dan of je database de volgende tabellen bevat:" - -#: wp-includes/script-loader.php:577 -msgid "Are you sure you want to install this plugin?" -msgstr "Weet je zeker dat je deze plugin wilt installeren?" - -#: wp-includes/post.php:1378 wp-includes/script-loader.php:633 -msgid "Use as featured image" -msgstr "Als uitgelichte afbeelding gebruiken" - -#: wp-includes/general-template.php:903 -msgid "Page %s" -msgstr "Pagina %s" - -#: wp-includes/load.php:203 -msgid "Maintenance" -msgstr "Onderhoud" - -#: wp-includes/load.php:207 -msgid "Briefly unavailable for scheduled maintenance. Check back in a minute." -msgstr "Tijdelijk niet beschikbaar vanwege gepland onderhoud. Probeer het over enkele minuten nog een keer." - -#: wp-includes/taxonomy.php:80 -msgid "Navigation Menus" -msgstr "Navigatiemenu's" - -#: wp-includes/post.php:102 -msgid "Navigation Menu Item" -msgstr "Navigatiemenu-item" - -#: wp-includes/post.php:101 -msgid "Navigation Menu Items" -msgstr "Navigatiemenu-items" - -#: wp-links-opml.php:29 -msgid "Links for %s" -msgstr "Links voor %s" - -#: wp-includes/widgets/class-wp-nav-menu-widget.php:128 -msgid "No menus have been created yet. Create some." -msgstr "Er zijn nog geen menu's aangemaakt. Maak er één aan." - -#: wp-includes/script-loader.php:643 -msgid "" -"You are about to permanently delete this menu. \n" -" 'Cancel' to stop, 'OK' to delete." -msgstr "" -"Je staat op het punt dit menu permanent te verwijderen.\n" -" 'Annuleren' om te stoppen, 'OK' om te verwijderen." - -#: wp-includes/link-template.php:3643 -msgid "This is the short link." -msgstr "Dit is een verkorte link." - -#: wp-includes/update.php:558 -msgid "%d WordPress Update" -msgstr "%d WordPress bijwerken" - -#: wp-includes/update.php:562 -msgid "%d Theme Update" -msgid_plural "%d Theme Updates" -msgstr[0] "%d Thema bijwerken" -msgstr[1] "%d Thema's bijwerken" - -#: wp-includes/update.php:560 -msgid "%d Plugin Update" -msgid_plural "%d Plugin Updates" -msgstr[0] "%d plugin-update" -msgstr[1] "%d plugin-updates" - -#: wp-includes/pluggable.php:1464 -msgid "New trackback on your post \"%s\"" -msgstr "Nieuwe trackback op je bericht \"%s\"" - -#: wp-includes/pluggable.php:1624 -msgid "A new pingback on the post \"%s\" is waiting for your approval" -msgstr "Een nieuwe pingback op het bericht \"%s\", wacht op goedkeuring." - -#: wp-includes/pluggable.php:1632 -msgid "A new comment on the post \"%s\" is waiting for your approval" -msgstr "Een nieuwe reactie op het bericht \"%s\", wacht op goedkeuring." - -#. translators: %s: site address -#: wp-signup.php:730 -msgid "Congratulations! Your new site, %s, is almost ready." -msgstr "Gefeliciteerd! je nieuwe website, %s is bijna klaar." - -#: wp-includes/pluggable.php:1474 -msgid "New pingback on your post \"%s\"" -msgstr "Nieuwe pingback op bericht \"%s\"" - -#: wp-includes/pluggable.php:1616 -msgid "A new trackback on the post \"%s\" is waiting for your approval" -msgstr "Een nieuwe trackback op bericht \"%s\" wacht op goedkeuring" - -#: wp-includes/pluggable.php:1484 -msgid "New comment on your post \"%s\"" -msgstr "Nieuwe reactie op je bericht \"%s\"" - -#: wp-signup.php:308 -msgid "Sites you are already a member of:" -msgstr "Websites waar je al deelnemer van bent: " - -#: wp-includes/script-loader.php:283 -msgid "File canceled." -msgstr "Bestand geannuleerd." - -#: wp-signup.php:735 -msgid "If you do not activate your site within two days, you will have to sign up again." -msgstr "Als je de website niet binnen twee dagen activeert, zul je opnieuw moeten beginnen." - -#: wp-signup.php:296 -msgid "Get another %s site in seconds" -msgstr "Verkrijg een andere %s website in enkele seconden" - -#: wp-signup.php:454 -msgid "The site %s is yours." -msgstr "De website %s is van jou." - -#: wp-signup.php:332 -msgid "Create Site" -msgstr "Site aanmaken" - -#: wp-signup.php:102 -msgid "Site Name:" -msgstr "Sitenaam:" - -#: wp-signup.php:117 -msgid "sitename" -msgstr "sitenaam" - -#: wp-signup.php:532 -msgid "Gimme a site!" -msgstr "Geef me een site!" - -#: wp-signup.php:317 -msgid "If you’re not going to use a great site domain, leave it for a new user. Now have at it!" -msgstr "Als je dit domein niet gaat gebruiken, gun het een nieuwe gebruiker. Nu aan de slag!" - -#: wp-signup.php:104 -msgid "Site Domain:" -msgstr "Sitedomein:" - -#: wp-signup.php:125 -msgid "Site Title:" -msgstr "Sitetitel:" - -#: wp-signup.php:732 -msgid "But, before you can start using your site, you must activate it." -msgstr "Voordat je met je website kunt starten, moet deze eerst worden geactiveerd. " - -#: wp-signup.php:825 -msgid "Site registration has been disabled." -msgstr "Website-registratie is uitgeschakeld." - -#: wp-includes/ms-load.php:290 -msgid "If you are the owner of this network please check that MySQL is running properly and all tables are error free." -msgstr "Indien je de eigenaar van dit netwerk bent, controleer dan of MySQL draait en dat alle tabellen zonder fouten zijn." - -#: wp-includes/ms-load.php:289 -msgid "If your site does not display, please contact the owner of this network." -msgstr "Indien je site niet vertoond wordt neem dan contact op met de eigenaar van dit netwerk." - -#: wp-includes/widgets/class-wp-widget-tag-cloud.php:149 -msgid "Taxonomy:" -msgstr "Taxonomie:" - -#: wp-includes/widgets/class-wp-nav-menu-widget.php:136 -msgid "Select Menu:" -msgstr "Menu selecteren:" - -#: wp-includes/taxonomy.php:81 -msgid "Navigation Menu" -msgstr "Navigatiemenu" - -#. translators: %s: post title -#: wp-includes/theme-compat/comments.php:37 -msgid "One response to %s" -msgstr "Eén reactie op %s" - -#: wp-includes/admin-bar.php:741 -#: wp-includes/class-wp-customize-nav-menus.php:469 -msgid "Menus" -msgstr "Menu's" - -#: wp-includes/class-wp-xmlrpc-server.php:400 -msgid "Software Name" -msgstr "Softwarenaam" - -#: wp-includes/class-wp-xmlrpc-server.php:405 -msgid "Software Version" -msgstr "Softwareversie" - -#: wp-includes/class-wp-xmlrpc-server.php:462 -msgid "Time Zone" -msgstr "Tijdzone" - -#: wp-includes/class-wp-xmlrpc-server.php:487 -msgid "Allow new users to sign up" -msgstr "Registratie nieuwe gebruikers toestaan" - -#: wp-includes/class-wp-xmlrpc-server.php:2780 -msgid "Failed to delete the page." -msgstr "Pagina verwijderen mislukt." - -#: wp-includes/class-wp-xmlrpc-server.php:3203 -#: wp-includes/class-wp-xmlrpc-server.php:3336 -#: wp-includes/class-wp-xmlrpc-server.php:3403 -msgid "Invalid comment ID." -msgstr "Ongeldig reactie-ID." - -#: wp-includes/class-wp-xmlrpc-server.php:3260 -#: wp-includes/class-wp-xmlrpc-server.php:3418 -msgid "Invalid comment status." -msgstr "Ongeldige reactiestatus." - -#: wp-includes/class-wp-xmlrpc-server.php:3504 -msgid "You must be registered to comment" -msgstr "Je moet geregisteerd zijn om een reactie te kunnen plaatsen" - -#: wp-includes/class-wp-xmlrpc-server.php:1292 -#: wp-includes/class-wp-xmlrpc-server.php:1545 -#: wp-includes/class-wp-xmlrpc-server.php:1611 -#: wp-includes/class-wp-xmlrpc-server.php:1709 -#: wp-includes/class-wp-xmlrpc-server.php:2637 -#: wp-includes/class-wp-xmlrpc-server.php:3518 -#: wp-includes/class-wp-xmlrpc-server.php:3522 -#: wp-includes/class-wp-xmlrpc-server.php:3648 -#: wp-includes/class-wp-xmlrpc-server.php:4195 -#: wp-includes/class-wp-xmlrpc-server.php:4259 -#: wp-includes/class-wp-xmlrpc-server.php:4262 -#: wp-includes/class-wp-xmlrpc-server.php:4265 -#: wp-includes/class-wp-xmlrpc-server.php:4427 -#: wp-includes/class-wp-xmlrpc-server.php:5150 -#: wp-includes/class-wp-xmlrpc-server.php:5441 -#: wp-includes/class-wp-xmlrpc-server.php:5953 -#: wp-includes/class-wp-xmlrpc-server.php:6007 -#: wp-includes/class-wp-xmlrpc-server.php:6126 wp-includes/post.php:2938 -#: wp-includes/post.php:3426 wp-includes/revision.php:265 -msgid "Invalid post ID." -msgstr "Ongeldig bericht-ID." - -#: wp-includes/class-wp-xmlrpc-server.php:3558 -msgid "Comment author name and email are required" -msgstr "Naam en e-mailadres zijn verplicht bij het plaatsen van een reactie" - -#: wp-includes/class-wp-xmlrpc-server.php:3560 -msgid "A valid email address is required" -msgstr "Een geldig e-mailadres is noodzakelijk" - -#: wp-includes/class-wp-xmlrpc-server.php:3850 -msgid "You are not allowed to update options." -msgstr "Je hebt geen toestemming om de opties te bewerken." - -#: wp-includes/class-wp-xmlrpc-server.php:4491 -#: wp-includes/class-wp-xmlrpc-server.php:5858 -msgid "Either there are no posts, or something went wrong." -msgstr "Er zijn geen berichten of er is iets misgegaan." - -#: wp-includes/class-wp-xmlrpc-server.php:3272 -msgid "Invalid post type." -msgstr "Ongeldig berichttype." - -#: wp-includes/class-wp-xmlrpc-server.php:5212 -msgid "You are not allowed to change the post author as this user." -msgstr "Je hebt geen rechten om de berichtauteur te wijzigen als deze gebruiker." - -#: wp-includes/class-wp-xmlrpc-server.php:5217 -msgid "You are not allowed to change the page author as this user." -msgstr "Je hebt geen rechten om pagina-auteur te wijzigen als deze gebruiker." - -#: wp-includes/class-wp-xmlrpc-server.php:5776 -msgid "Could not write file %1$s (%2$s)" -msgstr "Kan bestand %1$s (%2$s) niet beschrijven" - -#: wp-includes/class-wp-xmlrpc-server.php:6234 -msgid "The source URL and the target URL cannot both point to the same resource." -msgstr "De bron-URL en de doel-URL kunnen niet naar hetzelfde adres verwijzen." - -#: wp-includes/class-wp-xmlrpc-server.php:6242 -msgid "The pingback has already been registered." -msgstr "De pingback is al geregistreerd." - -#: wp-includes/class-wp-xmlrpc-server.php:6266 -msgid "The source URL does not exist." -msgstr "De bron-URL bestaat niet." - -#: wp-includes/class-wp-xmlrpc-server.php:6286 -msgid "We cannot find a title on that page." -msgstr "We kunnen geen titel vinden op die pagina." - -#: wp-includes/class-wp-xmlrpc-server.php:6351 -msgid "Pingback from %1$s to %2$s registered. Keep the web talking! :-)" -msgstr "Pingback van %1$s to %2$s geregistreerd." - -#: wp-includes/wp-db.php:1321 -msgid "WordPress database error %1$s for query %2$s made by %3$s" -msgstr "WordPress databasefout %1$s bij query %2$s gemaakt door %3$s" - -#: wp-includes/wp-db.php:1323 -msgid "WordPress database error %1$s for query %2$s" -msgstr "WordPress databasefout %1$s bij query %2$s" - -#: wp-includes/load.php:142 -msgid "Your PHP installation appears to be missing the MySQL extension which is required by WordPress." -msgstr "Het lijkt erop dat je PHP-installatie geen MySQL-extensie heeft en die is noodzakelijk om WordPress te kunnen gebruiken." - -#: wp-includes/class-wp-xmlrpc-server.php:6189 -msgid "Is there no link to us?" -msgstr "Is er geen link naar ons?" - -#: wp-includes/class-wp-xmlrpc-server.php:6322 -msgid "The source URL does not contain a link to the target URL, and so cannot be used as a source." -msgstr "De bron-URL bevat geen link naar de doel-URL en kan daarom niet als bron worden gebruikt." - -#: wp-includes/class-wp-xmlrpc-server.php:6384 -msgid "The specified target URL does not exist." -msgstr "De opgegeven doel-URL bestaat niet." - -#: wp-includes/class-wp-xmlrpc-server.php:6224 -#: wp-includes/class-wp-xmlrpc-server.php:6231 -#: wp-includes/class-wp-xmlrpc-server.php:6238 -#: wp-includes/class-wp-xmlrpc-server.php:6377 -msgid "The specified target URL cannot be used as a target. It either doesn’t exist, or it is not a pingback-enabled resource." -msgstr "De opgegeven doel-URL kan niet als doel worden gebruikt. Hij bestaat niet of er is geen pingback voor mogelijk voor deze URL." - -#: wp-includes/class-wp-xmlrpc-server.php:1712 -#: wp-includes/class-wp-xmlrpc-server.php:4268 -#: wp-includes/class-wp-xmlrpc-server.php:4430 -#: wp-includes/class-wp-xmlrpc-server.php:5444 -#: wp-includes/class-wp-xmlrpc-server.php:5785 -#: wp-includes/class-wp-xmlrpc-server.php:6010 -msgid "Sorry, you cannot edit this post." -msgstr "Je kunt dit bericht niet bewerken." - -#: wp-includes/class-wp-xmlrpc-server.php:5956 -msgid "Sorry, you can not edit this post." -msgstr "Je kunt dit bericht niet bewerken." - -#: wp-includes/class-wp-xmlrpc-server.php:2681 -#: wp-includes/class-wp-xmlrpc-server.php:2883 -msgid "Sorry, you cannot edit pages." -msgstr "Je kunt geen pagina's bewerken." - -#: wp-includes/class-wp-xmlrpc-server.php:2640 -msgid "Sorry, you cannot edit this page." -msgstr "Je kunt deze pagina niet bewerken." - -#: wp-includes/class-wp-xmlrpc-server.php:5363 -msgid "Sorry, your entry could not be edited. Something wrong happened." -msgstr "Je bericht kan niet worden bewerkt. Er is iets misgegaan." - -#: wp-includes/class-wp-xmlrpc-server.php:4656 -#: wp-includes/class-wp-xmlrpc-server.php:5326 -msgid "Sorry, you do not have the right to publish this post." -msgstr "Je hebt geen rechten om dit bericht te publiceren." - -#: wp-includes/class-wp-xmlrpc-server.php:5324 -msgid "Sorry, you do not have the right to publish this page." -msgstr "Je hebt geen rechten om deze pagina te publiceren." - -#: wp-includes/class-wp-xmlrpc-server.php:4647 -#: wp-includes/class-wp-xmlrpc-server.php:4719 -#: wp-includes/class-wp-xmlrpc-server.php:5541 -#: wp-includes/class-wp-xmlrpc-server.php:6074 -msgid "Sorry, no such post." -msgstr "Bericht bestaat niet." - -#: wp-includes/class-wp-xmlrpc-server.php:3450 -msgid "Sorry, the comment could not be edited. Something wrong happened." -msgstr "De reactie kan niet worden bewerkt. Er is iets misgegaan." - -#: wp-includes/class-wp-xmlrpc-server.php:3109 -msgid "Sorry, you do not have the right to delete a category." -msgstr "Je hebt geen rechten om een categorie te verwijderen." - -#: wp-includes/class-wp-xmlrpc-server.php:3062 -#: wp-includes/class-wp-xmlrpc-server.php:3064 -msgid "Sorry, the new category failed." -msgstr "De nieuwe categorie is mislukt." - -#: wp-includes/class-wp-xmlrpc-server.php:3034 -msgid "Sorry, you do not have the right to add a category." -msgstr "Je hebt geen rechten om een categorie toe te voegen." - -#: wp-includes/class-wp-xmlrpc-server.php:2837 -msgid "Sorry, you do not have the right to edit this page." -msgstr "Je hebt geen rechten om deze pagina te bewerken." - -#: wp-includes/class-wp-xmlrpc-server.php:2775 -msgid "Sorry, you do not have the right to delete this page." -msgstr "Je hebt geen rechten om deze pagina te verwijderen." - -#: wp-includes/class-wp-xmlrpc-server.php:2651 -#: wp-includes/class-wp-xmlrpc-server.php:2771 -#: wp-includes/class-wp-xmlrpc-server.php:2833 -msgid "Sorry, no such page." -msgstr "Deze pagina bestaat niet." - -#: wp-includes/class-wp-xmlrpc-server.php:3652 -msgid "You are not allowed access to details of this post." -msgstr "Je hebt geen toegang tot details van dit bericht." - -#: wp-includes/post.php:113 -msgctxt "post" -msgid "Published" -msgstr "Gepubliceerd" - -#: wp-includes/post.php:116 -msgid "Published (%s)" -msgid_plural "Published (%s)" -msgstr[0] "Gepubliceerd (%s)" -msgstr[1] "Gepubliceerd (%s)" - -#: wp-includes/post.php:120 -msgctxt "post" -msgid "Scheduled" -msgstr "Gepland" - -#: wp-includes/post.php:123 -msgid "Scheduled (%s)" -msgid_plural "Scheduled (%s)" -msgstr[0] "Gepland (%s)" -msgstr[1] "Gepland (%s)" - -#: wp-includes/post.php:127 -msgctxt "post" -msgid "Draft" -msgstr "Concept" - -#: wp-includes/post.php:130 -msgid "Draft (%s)" -msgid_plural "Drafts (%s)" -msgstr[0] "Concept (%s)" -msgstr[1] "Concepten (%s)" - -#: wp-includes/post.php:141 -msgctxt "post" -msgid "Private" -msgstr "Privé" - -#: wp-includes/post.php:144 -msgid "Private (%s)" -msgid_plural "Private (%s)" -msgstr[0] "Privé (%s)" -msgstr[1] "Privé (%s)" - -#: wp-includes/post.php:148 -msgctxt "post" -msgid "Trash" -msgstr "Prullenbak" - -#: wp-includes/post.php:151 -msgid "Trash (%s)" -msgid_plural "Trash (%s)" -msgstr[0] "Prullenbak (%s)" -msgstr[1] "Prullenbak (%s)" - -#: wp-includes/class-wp-editor.php:893 -msgid "General" -msgstr "Algemeen" - -#: wp-includes/widgets/class-wp-widget-links.php:139 -#: wp-includes/widgets/class-wp-widget-pages.php:131 -msgid "Sort by:" -msgstr "Sorteren op:" - -#: wp-includes/widgets/class-wp-widget-pages.php:133 -msgid "Page title" -msgstr "Paginatitel" - -#: wp-includes/widgets/class-wp-widget-pages.php:134 -msgid "Page order" -msgstr "Paginavolgorde" - -#: wp-includes/widgets/class-wp-widget-pages.php:135 -msgid "Page ID" -msgstr "Pagina-ID" - -#: wp-includes/widgets/class-wp-widget-pages.php:139 -msgid "Exclude:" -msgstr "Uitsluiten:" - -#: wp-includes/widgets/class-wp-widget-archives.php:78 -msgid "Select Month" -msgstr "Maand selecteren" - -#: wp-includes/widgets/class-wp-widget-archives.php:157 -#: wp-includes/widgets/class-wp-widget-categories.php:163 -msgid "Show post counts" -msgstr "Berichtaantal tonen" - -#: wp-includes/widgets/class-wp-widget-meta.php:54 -msgid "Entries RSS" -msgstr "Berichten RSS" - -#: wp-includes/widgets/class-wp-widget-calendar.php:37 -msgid "Calendar" -msgstr "Kalender" - -#: wp-includes/widgets/class-wp-widget-categories.php:67 -msgid "Select Category" -msgstr "Categorie selecteren" - -#: wp-includes/widgets/class-wp-widget-categories.php:166 -msgid "Show hierarchy" -msgstr "Hiërarchie tonen" - -#: wp-includes/widgets/class-wp-widget-recent-posts.php:131 -msgid "Number of posts to show:" -msgstr "Aantal te tonen berichten:" - -#. translators: comments widget: 1: comment author, 2: post link -#: wp-includes/widgets/class-wp-widget-recent-comments.php:111 -msgctxt "widgets" -msgid "%1$s on %2$s" -msgstr "%1$s op %2$s" - -#: wp-includes/widgets.php:1255 -msgid "Untitled" -msgstr "Zonder titel" - -#: wp-includes/widgets.php:1345 -msgid "How many items would you like to display?" -msgstr "Hoeveel items wil je tonen?" - -#: wp-includes/widgets.php:1355 -msgid "Display item content?" -msgstr "Iteminhoud tonen" - -#: wp-includes/widgets/class-wp-widget-tag-cloud.php:27 -msgid "Tag Cloud" -msgstr "Tagwolk" - -#: wp-includes/deprecated.php:963 -msgid "Last updated" -msgstr "Laatst bijgewerkt" - -#: wp-includes/feed-rss2-comments.php:37 -msgid "Comments on: %s" -msgstr "Reacties op: %s" - -#: wp-includes/feed-atom-comments.php:36 wp-includes/feed-rss2-comments.php:41 -msgid "Comments for %s" -msgstr "Reacties voor %s" - -#: wp-includes/feed-atom-comments.php:73 wp-includes/feed-rss2-comments.php:72 -msgid "Comment on %1$s by %2$s" -msgstr "Reactie op %1$s door %2$s" - -#: wp-includes/feed-atom-comments.php:75 wp-includes/feed-rss2-comments.php:74 -msgid "By: %s" -msgstr "Door: %s" - -#: wp-includes/feed-rss2-comments.php:82 -msgid "Protected Comments: Please enter your password to view comments." -msgstr "Beveiligde reacties: geef je wachtwoord om de reacties te bekijken." - -#. translators: min=minute -#: wp-includes/formatting.php:2841 -msgid "%s min" -msgid_plural "%s mins" -msgstr[0] "%s minuut" -msgstr[1] "%s minuten" - -#: wp-includes/formatting.php:2851 -msgid "%s day" -msgid_plural "%s days" -msgstr[0] "%s dag" -msgstr[1] "%s dagen" - -#. translators: used between list items, there is a space after the comma -#: wp-includes/class-wp-theme.php:729 -msgid ", " -msgstr ", " - -#: wp-includes/option.php:148 -msgid "%s is a protected WP option and may not be modified" -msgstr "%s is een beveiligde WP-optie en kan niet worden gewijzigd" - -#: wp-includes/functions.php:1921 wp-includes/functions.php:2058 -msgid "Unable to create directory %s. Is its parent directory writable by the server?" -msgstr "Kan map %s niet aanmaken. Is de bovenliggende map beschrijfbaar door de server?" - -#: wp-includes/functions.php:2022 -msgid "Empty filename" -msgstr "Lege bestandsnaam" - -#: wp-includes/functions.php:2405 -msgid "You are attempting to log out of %s" -msgstr "Je probeert uit te loggen van %s" - -#: wp-includes/functions.php:2407 -msgid "Do you really want to log out?" -msgstr "Weet je zeker dat je wilt uitloggen?" - -#: wp-includes/functions.php:2533 -msgid "« Back" -msgstr "« Terug" - -#: wp-includes/functions.php:2545 wp-load.php:92 -msgid "WordPress › Error" -msgstr "WordPress › Fout" - -#: wp-includes/functions.php:4339 wp-includes/functions.php:4343 -msgid "UTC" -msgstr "UTC" - -#: wp-includes/functions.php:4347 -msgid "Manual Offsets" -msgstr "Handmatige compensatie" - -#: wp-includes/general-template.php:276 wp-login.php:544 wp-login.php:607 -#: wp-login.php:657 wp-login.php:738 -msgid "Log in" -msgstr "Inloggen" - -#: wp-includes/general-template.php:278 -msgid "Log out" -msgstr "Uitloggen" - -#: wp-includes/general-template.php:542 wp-login.php:547 wp-login.php:660 -#: wp-login.php:734 wp-login.php:916 -msgid "Register" -msgstr "Registreren" - -#. translators: 1: separator, 2: search phrase -#: wp-includes/general-template.php:1066 -msgid "Search Results %1$s %2$s" -msgstr "Zoekresultaten %1$s %2$s" - -#: wp-includes/general-template.php:852 wp-includes/general-template.php:1071 -msgid "Page not found" -msgstr "Pagina niet gevonden" - -#. translators: 1: month name, 2: 4-digit year -#: wp-includes/general-template.php:1632 wp-includes/media.php:3243 -msgid "%1$s %2$d" -msgstr "%1$s %2$d" - -#. translators: Calendar caption: 1: month name, 2: 4-digit year -#: wp-includes/general-template.php:1857 -msgctxt "calendar caption" -msgid "%1$s %2$s" -msgstr "%1$s %2$s" - -#. translators: Separator between blog name and feed type in feed links -#: wp-includes/general-template.php:2468 wp-includes/general-template.php:2510 -msgctxt "feed link" -msgid "»" -msgstr "»" - -#. translators: 1: blog title, 2: separator (raquo) -#: wp-includes/general-template.php:2470 -msgid "%1$s %2$s Feed" -msgstr "%1$s %2$s Feed" - -#. translators: 1: blog name, 2: separator(raquo), 3: search phrase -#: wp-includes/general-template.php:2520 -msgid "%1$s %2$s Search Results for “%3$s” Feed" -msgstr "%1$s %2$s zoekresultaten voor “%3$s”" - -#: wp-includes/general-template.php:2954 -msgid "« Previous" -msgstr "« Vorige" - -#: wp-includes/general-template.php:2955 -msgid "Next »" -msgstr "Volgende »" - -#: wp-includes/class-http.php:198 -msgid "User has blocked requests through HTTP." -msgstr "Gebruiker heeft verzoeken via HTTP geblokkeerd." - -#: wp-includes/class-http.php:802 wp-includes/class-wp-http-curl.php:232 -#: wp-includes/class-wp-http-curl.php:271 -msgid "Too many redirects." -msgstr "Te veel redirects." - -#: wp-includes/class-wp-http-curl.php:189 -#: wp-includes/class-wp-http-streams.php:228 -msgid "Could not open handle for fopen() to %s" -msgstr "Kan geen bestandshandle verkrijgen voor %s" - -#. translators: month name -#: wp-includes/locale.php:139 wp-includes/locale.php:167 -msgid "January" -msgstr "januari" - -#. translators: month name -#: wp-includes/locale.php:140 wp-includes/locale.php:168 -msgid "February" -msgstr "februari" - -#. translators: month name -#: wp-includes/locale.php:141 wp-includes/locale.php:169 -msgid "March" -msgstr "maart" - -#. translators: month name -#: wp-includes/locale.php:142 wp-includes/locale.php:170 -msgid "April" -msgstr "april" - -#. translators: month name -#: wp-includes/locale.php:143 wp-includes/locale.php:171 -msgid "May" -msgstr "mei" - -#. translators: month name -#: wp-includes/locale.php:144 wp-includes/locale.php:172 -msgid "June" -msgstr "juni" - -#. translators: month name -#: wp-includes/locale.php:145 wp-includes/locale.php:173 -msgid "July" -msgstr "juli" - -#. translators: month name -#: wp-includes/locale.php:146 wp-includes/locale.php:174 -msgid "August" -msgstr "augustus" - -#. translators: month name -#: wp-includes/locale.php:147 wp-includes/locale.php:175 -msgid "September" -msgstr "september" - -#. translators: month name -#: wp-includes/locale.php:148 wp-includes/locale.php:176 -msgid "October" -msgstr "oktober" - -#. translators: month name -#: wp-includes/locale.php:149 wp-includes/locale.php:177 -msgid "November" -msgstr "november" - -#. translators: month name -#: wp-includes/locale.php:150 wp-includes/locale.php:178 -msgid "December" -msgstr "december" - -#. translators: weekday -#: wp-includes/locale.php:112 wp-includes/locale.php:121 -#: wp-includes/locale.php:130 -msgid "Sunday" -msgstr "zondag" - -#. translators: weekday -#: wp-includes/locale.php:113 wp-includes/locale.php:122 -#: wp-includes/locale.php:131 -msgid "Monday" -msgstr "maandag" - -#. translators: weekday -#: wp-includes/locale.php:114 wp-includes/locale.php:123 -#: wp-includes/locale.php:132 -msgid "Tuesday" -msgstr "dinsdag" - -#. translators: weekday -#: wp-includes/locale.php:115 wp-includes/locale.php:124 -#: wp-includes/locale.php:133 -msgid "Wednesday" -msgstr "woensdag" - -#. translators: weekday -#: wp-includes/locale.php:116 wp-includes/locale.php:125 -#: wp-includes/locale.php:134 -msgid "Thursday" -msgstr "donderdag" - -#. translators: weekday -#: wp-includes/locale.php:117 wp-includes/locale.php:126 -#: wp-includes/locale.php:135 -msgid "Friday" -msgstr "vrijdag" - -#. translators: weekday -#: wp-includes/locale.php:118 wp-includes/locale.php:127 -#: wp-includes/locale.php:136 -msgid "Saturday" -msgstr "zaterdag" - -#. translators: three-letter abbreviation of the weekday -#: wp-includes/locale.php:130 -msgid "Sun" -msgstr "zo" - -#. translators: three-letter abbreviation of the weekday -#: wp-includes/locale.php:131 -msgid "Mon" -msgstr "ma" - -#. translators: three-letter abbreviation of the weekday -#: wp-includes/locale.php:132 -msgid "Tue" -msgstr "di" - -#. translators: three-letter abbreviation of the weekday -#: wp-includes/locale.php:133 -msgid "Wed" -msgstr "wo" - -#. translators: three-letter abbreviation of the weekday -#: wp-includes/locale.php:134 -msgid "Thu" -msgstr "do" - -#. translators: three-letter abbreviation of the weekday -#: wp-includes/locale.php:135 -msgid "Fri" -msgstr "vr" - -#. translators: three-letter abbreviation of the weekday -#: wp-includes/locale.php:136 -msgid "Sat" -msgstr "za" - -#: wp-includes/class-wp-editor.php:892 -msgid "Insert/edit image" -msgstr "Afbeelding invoegen/bewerken" - -#: wp-includes/class-wp-editor.php:976 -msgid "Delete row" -msgstr "Rij verwijderen" - -#: wp-includes/class-wp-editor.php:980 -msgid "Merge table cells" -msgstr "Tabelcellen samenvoegen" - -#: wp-includes/class-wp-editor.php:979 -msgid "Copy table row" -msgstr "Tabelrij kopiëren" - -#: wp-includes/class-wp-editor.php:954 -msgid "Delete table" -msgstr "Tabel verwijderen" - -#: wp-includes/class-wp-editor.php:960 -msgid "Row" -msgstr "Rij" - -#: wp-includes/class-wp-editor.php:1017 wp-includes/script-loader.php:436 -#: wp-includes/script-loader.php:526 wp-includes/script-loader.php:535 -#: wp-includes/script-loader.php:644 wp-includes/theme.php:2029 -msgid "The changes you made will be lost if you navigate away from this page." -msgstr "De wijzigingen zullen verloren gaan als je deze pagina nu verlaat." - -#: wp-includes/class-wp-editor.php:883 -msgid "Document properties" -msgstr "Documenteigenschappen" - -#: wp-includes/class-wp-editor.php:817 -msgid "Heading 1" -msgstr "Koptekst 1" - -#: wp-includes/class-wp-editor.php:818 -msgid "Heading 2" -msgstr "Koptekst 2" - -#: wp-includes/class-wp-editor.php:819 -msgid "Heading 3" -msgstr "Koptekst 3" - -#: wp-includes/class-wp-editor.php:820 -msgid "Heading 4" -msgstr "Koptekst 4" - -#: wp-includes/class-wp-editor.php:821 -msgid "Heading 5" -msgstr "Koptekst 5" - -#: wp-includes/class-wp-editor.php:822 -msgid "Heading 6" -msgstr "Koptekst 6" - -#: wp-includes/class-wp-editor.php:827 wp-includes/script-loader.php:105 -msgid "Blockquote" -msgstr "Blockquote" - -#: wp-includes/script-loader.php:118 -msgid "Code" -msgstr "Code" - -#: wp-includes/class-wp-editor.php:839 wp-includes/script-loader.php:100 -msgid "Bold" -msgstr "Vet" - -#: wp-includes/class-wp-editor.php:840 wp-includes/script-loader.php:102 -msgid "Italic" -msgstr "Cursief" - -#: wp-includes/class-wp-editor.php:834 -msgid "Underline" -msgstr "Onderstreept" - -#: wp-includes/class-wp-editor.php:835 -msgid "Strikethrough" -msgstr "Doorgehaald" - -#: wp-includes/class-wp-editor.php:836 -msgid "Subscript" -msgstr "Subscript" - -#: wp-includes/class-wp-editor.php:837 -msgid "Superscript" -msgstr "Superscript" - -#: wp-includes/class-wp-editor.php:853 -msgid "Cut" -msgstr "Knippen" - -#: wp-includes/class-wp-editor.php:854 -msgid "Copy" -msgstr "Kopiëren" - -#: wp-includes/class-wp-editor.php:855 -msgid "Paste" -msgstr "Plakken" - -#: wp-includes/class-wp-editor.php:813 -msgid "New document" -msgstr "Nieuw document" - -#: wp-includes/class-wp-editor.php:899 -msgid "Image description" -msgstr "Beschrijving afbeelding" - -#: wp-includes/class-wp-editor.php:896 -msgid "Border" -msgstr "Rand" - -#: wp-includes/class-wp-editor.php:901 -msgid "Dimensions" -msgstr "Afmetingen" - -#: wp-includes/class-wp-editor.php:993 -msgid "Top" -msgstr "Bovenkant" - -#: wp-includes/class-wp-editor.php:994 -msgid "Middle" -msgstr "Midden" - -#: wp-includes/class-wp-editor.php:995 -msgid "Bottom" -msgstr "Onderkant" - -#: wp-includes/class-wp-editor.php:897 -msgid "Constrain proportions" -msgstr "Afmetingen beperken" - -#: wp-includes/media-template.php:1090 wp-includes/media-template.php:1179 -msgid "Loop" -msgstr "Lus" - -#: wp-includes/media-template.php:841 wp-includes/media-template.php:907 -msgid "Align" -msgstr "Uitlijnen" - -#: wp-includes/admin-bar.php:747 -msgid "Background" -msgstr "Achtergrond" - -#: wp-includes/class-wp-editor.php:922 wp-includes/script-loader.php:338 -msgid "Fullscreen" -msgstr "Volledig scherm" - -#: wp-includes/class-wp-editor.php:895 -msgid "Source" -msgstr "Bron" - -#: wp-includes/class-wp-editor.php:1052 -msgid "Letter" -msgstr "Letter" - -#: wp-includes/class-wp-editor.php:1053 -msgid "Action" -msgstr "Actie" - -#: wp-includes/class-wp-editor.php:946 -msgid "Check Spelling" -msgstr "Spelling controleren" - -#: wp-includes/deprecated.php:2644 -msgid "Last Post" -msgstr "Laatste bericht" - -#: wp-includes/locale.php:181 -msgid "am" -msgstr "am" - -#: wp-includes/locale.php:182 -msgid "pm" -msgstr "pm" - -#: wp-includes/locale.php:183 -msgid "AM" -msgstr "AM" - -#: wp-includes/locale.php:184 -msgid "PM" -msgstr "PM" - -#. translators: $thousands_sep argument for http:php.net/number_format, default -#. is , -#: wp-includes/locale.php:190 -msgid "number_format_thousands_sep" -msgstr "." - -#. translators: 1: blog name, 2: post title -#: wp-includes/pluggable.php:1492 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Reactie: \"%2$s\"" - -#. translators: 1: blog name, 2: post title -#: wp-includes/pluggable.php:1471 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: \"%2$s\"" - -#. translators: 1: blog name, 2: post title -#: wp-includes/pluggable.php:1481 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback: \"%2$s\"" - -#: wp-includes/pluggable.php:1500 wp-includes/pluggable.php:1643 -msgid "Trash it: %s" -msgstr "Naar de prullenbak: %s" - -#: wp-includes/pluggable.php:1502 wp-includes/pluggable.php:1645 -msgid "Delete it: %s" -msgstr "Verwijderen: %s" - -#: wp-includes/pluggable.php:1715 -msgid "Password Lost and Changed for user: %s" -msgstr "Wachtwoord kwijt en gewijzigd voor gebruiker: %s" - -#: wp-includes/pluggable.php:1719 -msgid "[%s] Password Lost/Changed" -msgstr "[%s] Wachtwoord kwijt/gewijzigd" - -#: wp-includes/pluggable.php:1755 wp-includes/pluggable.php:1779 -#: wp-login.php:324 -msgid "Username: %s" -msgstr "Gebruikersnaam: %s" - -#: wp-includes/pluggable.php:1758 -msgid "[%s] New User Registration" -msgstr "[%s] Registratie nieuwe gebruiker" - -#: wp-includes/pluggable.php:1785 -msgid "[%s] Your username and password info" -msgstr "[%s] Je gebruikersnaam en wachtwoord" - -#: wp-includes/post-template.php:130 -msgid "Protected: %s" -msgstr "Beveiligd: %s" - -#: wp-includes/post-template.php:145 -msgid "Private: %s" -msgstr "Privé: %s" - -#: wp-includes/post-template.php:817 -msgid "Next page" -msgstr "Volgende pagina" - -#: wp-includes/post-template.php:818 -msgid "Previous page" -msgstr "Vorige pagina" - -#: wp-includes/post-template.php:1256 -msgid "Home" -msgstr "Home" - -#: wp-includes/deprecated.php:1830 wp-includes/post-template.php:1421 -msgid "Missing Attachment" -msgstr "Ontbrekende bijlage" - -#: wp-includes/post-template.php:1661 -msgid "%1$s [Current Revision]" -msgstr "%1$s [Huidige revisie]" - -#: wp-includes/post.php:3199 -msgid "Could not update post in the database" -msgstr "Kan het bericht in de database niet bijwerken" - -#: wp-includes/post.php:3214 -msgid "Could not insert post into the database" -msgstr "Kan het bericht niet aan de database toevoegen" - -#: wp-includes/revision.php:268 -msgid "Cannot create a revision of a revision" -msgstr "Kan geen revisie van een revisie aanmaken" - -#: wp-includes/revision.php:526 -msgid "You do not have permission to preview drafts." -msgstr "Je hebt geen rechten om concepten te bekijken." - -#: wp-includes/user.php:1856 -msgid "AIM" -msgstr "AIM" - -#: wp-includes/user.php:1857 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: wp-includes/user.php:1858 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk:" - -#: wp-includes/script-loader.php:92 -msgid "Close all open tags" -msgstr "Alle open tags sluiten" - -#: wp-includes/script-loader.php:93 -msgid "close tags" -msgstr "tags sluiten" - -#: wp-includes/script-loader.php:94 -msgid "Enter the URL" -msgstr "Voer de URL in" - -#: wp-includes/script-loader.php:95 -msgid "Enter the URL of the image" -msgstr "Voer de URL van de afbeelding in" - -#: wp-includes/script-loader.php:96 -msgid "Enter a description of the image" -msgstr "Geef een beschrijving voor de afbeelding" - -#: wp-includes/script-loader.php:132 wp-includes/script-loader.php:479 -msgid "You do not have permission to do that." -msgstr "Je hebt geen rechten om dit te doen." - -#: wp-includes/script-loader.php:133 wp-includes/script-loader.php:480 -msgid "An unidentified error has occurred." -msgstr "Er is een ongeïdentificeerde fout opgetreden." - -#: wp-includes/script-loader.php:252 -msgid "Next >" -msgstr "Volgende >" - -#: wp-includes/script-loader.php:253 -msgid "< Prev" -msgstr "< Vorige" - -#: wp-includes/script-loader.php:254 -msgid "Image" -msgstr "Afbeelding" - -#: wp-includes/script-loader.php:255 -msgid "of" -msgstr "van" - -#: wp-includes/script-loader.php:267 -msgid "You have attempted to queue too many files." -msgstr "Je probeert teveel bestanden in de wachtrij te zetten." - -#: wp-includes/script-loader.php:269 -msgid "This file is empty. Please try another." -msgstr "Het bestand is leeg. Probeer een ander." - -#: wp-includes/script-loader.php:270 -msgid "This file type is not allowed. Please try another." -msgstr "Dit bestandstype is niet toegestaan. Probeer een ander." - -#: wp-includes/script-loader.php:274 -msgid "An error occurred in the upload. Please try again later." -msgstr "Fout opgetreden bij het uploaden. Probeer later nog eens." - -#: wp-includes/script-loader.php:275 -msgid "There was a configuration error. Please contact the server administrator." -msgstr "Instellingsfout. Neem contact op met de beheerder van de server." - -#: wp-includes/script-loader.php:276 -msgid "You may only upload 1 file." -msgstr "Je mag slechts 1 bestand uploaden." - -#: wp-includes/script-loader.php:277 -msgid "HTTP error." -msgstr "HTTP-fout." - -#: wp-includes/script-loader.php:278 -msgid "Upload failed." -msgstr "Uploaden mislukt. " - -#: wp-includes/script-loader.php:281 -msgid "IO error." -msgstr "IO-fout." - -#: wp-includes/script-loader.php:284 -msgid "Upload stopped." -msgstr "Uploaden gestopt." - -#: wp-includes/script-loader.php:286 -msgid "Crunching…" -msgstr "Een ogenblik geduld…" - -#: wp-includes/script-loader.php:287 -msgid "moved to the trash." -msgstr "verplaatst naar de prullenbak." - -#: wp-includes/script-loader.php:380 -msgctxt "password strength" -msgid "Medium" -msgstr "Gemiddeld" - -#: wp-includes/script-loader.php:508 -msgid "Publish on:" -msgstr "Publiceren op:" - -#: wp-includes/script-loader.php:510 -msgid "Published on:" -msgstr "Gepubliceerd op:" - -#: wp-includes/script-loader.php:513 -msgid "Show more comments" -msgstr "Meer reacties tonen" - -#: wp-includes/script-loader.php:514 -msgid "No more comments found." -msgstr "Geen reacties meer gevonden." - -#: wp-includes/script-loader.php:523 -msgid "Password Protected" -msgstr "Beschermd met wachtwoord" - -#: wp-includes/script-loader.php:549 -msgid "Submitted on:" -msgstr "Geplaatst op:" - -#: wp-includes/script-loader.php:562 wp-includes/script-loader.php:570 -msgid "Error while saving the changes." -msgstr "Fout tijdens het opslaan van de wijzigingen." - -#: wp-includes/script-loader.php:563 -msgid "Remove From Bulk Edit" -msgstr "Verwijderen uit bulkbewerking" - -#: wp-includes/script-loader.php:634 -msgid "Saving..." -msgstr "Opslaan…" - -#: wp-includes/script-loader.php:527 -msgid "Saving Draft…" -msgstr "Concept bewaren…" - -#: wp-includes/taxonomy.php:2928 -msgid "Invalid Taxonomy" -msgstr "Ongeldige taxonomie" - -#: wp-includes/taxonomy.php:750 wp-includes/taxonomy.php:3137 -#: wp-includes/taxonomy.php:4322 -msgid "Empty Term" -msgstr "Lege term" - -#: wp-includes/class-wp-xmlrpc-server.php:1404 -#: wp-includes/class-wp-xmlrpc-server.php:1956 -#: wp-includes/class-wp-xmlrpc-server.php:2047 -#: wp-includes/class-wp-xmlrpc-server.php:2118 wp-includes/taxonomy.php:2563 -msgid "Invalid term ID" -msgstr "Term-ID ongeldig" - -#: wp-includes/taxonomy.php:2566 wp-includes/taxonomy.php:3161 -msgid "A name is required for this term" -msgstr "Een naam is verplicht voor deze term" - -#: wp-includes/taxonomy.php:2657 -msgid "Could not insert term into the database" -msgstr "Kan term niet in de database invoegen" - -#: wp-includes/functions.php:4944 wp-includes/user.php:206 -msgid "Please log in again." -msgstr "Opnieuw inloggen alsjeblieft." - -#: wp-includes/user.php:1948 -msgid "Password reset is not allowed for this user" -msgstr "Wachtwoordreset is niet toegestaan voor deze gebruiker" - -#: wp-login.php:338 -msgid "[%s] Password Reset" -msgstr "[%s] Wachtwoord resetten" - -#: wp-includes/user.php:2003 wp-includes/user.php:2006 -#: wp-includes/user.php:2010 wp-includes/user.php:2040 -#: wp-includes/user.php:2044 wp-includes/user.php:2061 -msgid "Invalid key" -msgstr "Ongeldige sleutel" - -#: wp-login.php:521 -msgid "Lost Password" -msgstr "Wachtwoord kwijt" - -#: wp-login.php:529 -msgid "Username or Email:" -msgstr "Gebruikersnaam of e-mailadres:" - -#: wp-login.php:540 -msgid "Get New Password" -msgstr "Nieuw wachtwoord aanmaken" - -#: wp-login.php:219 -msgid "Are you lost?" -msgstr "Ben je de weg kwijt?" - -#: wp-login.php:219 -msgid "← Back to %s" -msgstr "← Terug naar %s" - -#: wp-login.php:712 -msgid "Registration Form" -msgstr "Registratieformulier" - -#: wp-login.php:739 wp-login.php:922 -msgid "Password Lost and Found" -msgstr "Wachtwoord kwijt en gevonden" - -#: wp-includes/user.php:142 wp-includes/user.php:168 wp-login.php:739 -#: wp-login.php:922 -msgid "Lost your password?" -msgstr "Wachtwoord vergeten?" - -#: wp-login.php:802 -msgid "You have logged in successfully." -msgstr "Je bent succesvol ingelogd." - -#: wp-login.php:840 -msgid "You are now logged out." -msgstr "Je bent nu uitgelogd." - -#: wp-login.php:842 -msgid "User registration is currently not allowed." -msgstr "Gebruikersregistratie is momenteel niet toegestaan." - -#: wp-login.php:848 -msgid "Registration complete. Please check your email." -msgstr "Registratie afgerond. Controleer je e-mail." - -#: wp-mail.php:34 -msgid "Slow down cowboy, no need to check for new mails so often!" -msgstr "Rustig aan vriend, je hoeft je mail niet zo vaak te controleren!" - -#: wp-mail.php:122 -msgid "Author is %s" -msgstr "Auteur is %s" - -#: wp-includes/ms-functions.php:242 -msgid "That user does not exist." -msgstr "Deze gebruiker bestaat niet." - -#: wp-includes/comment-template.php:2136 -msgid "Cancel reply" -msgstr "Reactie annuleren" - -#: wp-includes/comment-template.php:2137 -msgid "Post Comment" -msgstr "Reactie plaatsen" - -#: wp-signup.php:539 -msgid "Next" -msgstr "Volgende" - -#: wp-includes/ms-functions.php:484 -msgid "That username is currently reserved but may be available in a couple of days." -msgstr "Deze gebruikersnaam is momenteel gereserveerd, maar kan in een paar dagen beschikbaar komen." - -#: wp-signup.php:653 -msgid "Signup" -msgstr "Registreren" - -#: wp-includes/user.php:1315 -msgid "Cannot create a user with an empty login name." -msgstr "Niet mogelijk om een gebruiker zonder gebruikersnaam aan te maken." - -#: wp-includes/post.php:134 -msgctxt "post" -msgid "Pending" -msgstr "Wachtend" - -#: wp-includes/post.php:137 -msgid "Pending (%s)" -msgid_plural "Pending (%s)" -msgstr[0] "Wachtend (%s)" -msgstr[1] "Wachtend (%s)" - -#: wp-signup.php:535 -msgid "Just a username, please." -msgstr "Gewoon een gebruikersnaam." - -#. translators: %s: username -#: wp-signup.php:585 -msgid "%s is your new username" -msgstr "%s is je nieuwe gebruikersnaam" - -#: wp-signup.php:736 -msgid "Still waiting for your email?" -msgstr "Nog steeds aan het wachten op een e-mail?" - -#: wp-signup.php:819 -msgid "User registration has been disabled." -msgstr "Gebruikersregistratie is gedeactiveerd." - -#: wp-includes/ms-functions.php:978 -msgid "Could not create user" -msgstr "Gebruiker kon niet worden aangemaakt" - -#: wp-includes/post.php:84 -msgid "Revision" -msgstr "Revisies" - -#: wp-signup.php:166 -msgid "Privacy:" -msgstr "Privacy:" - -#: wp-signup.php:299 -msgid "There was a problem, please correct the form below and try again." -msgstr "Er was een probleem, corrigeer onderstaand formulier en probeer opnieuw." - -#: wp-signup.php:516 -msgid "Get your own %s account in seconds" -msgstr "Verkrijg je eigen %s account in enkele seconden" - -#: wp-signup.php:808 -msgid "Registration has been disabled." -msgstr "Registraties zijn uitgeschakeld." - -#: wp-includes/ms-functions.php:1237 -msgid "New User Registration: %s" -msgstr "Nieuwe gebruikersregistratie: %s" - -#: wp-includes/class-wp-editor.php:920 -msgid "Print" -msgstr "Afdrukken" - -#: wp-includes/widgets/class-wp-widget-text.php:28 -msgid "Text" -msgstr "Tekst" - -#: wp-includes/cron.php:391 -msgid "Twice Daily" -msgstr "Tweemaal per dag" - -#: wp-includes/cron.php:392 -msgid "Once Daily" -msgstr "Eenmaal per dag" - -#: wp-includes/cron.php:390 -msgid "Once Hourly" -msgstr "Eenmaal per uur" - -#: wp-includes/cron.php:194 -msgid "This argument has changed to an array to match the behavior of the other cron functions." -msgstr "Dit argument is veranderd in een array om het in andere functies in de cron op te kunnen nemen." - -#: wp-includes/link-template.php:692 -msgid "Comments Feed" -msgstr "Reactiefeed" - -#: wp-includes/pluggable.php:1504 wp-includes/pluggable.php:1646 -msgid "Spam it: %s" -msgstr "Markeren als spam: %s" - -#: wp-includes/rss.php:919 wp-includes/widgets.php:1239 -msgid "An error has occurred, which probably means the feed is down. Try again later." -msgstr "Er is een fout opgetreden, wat waarschijnlijk betekent dat de feed uit de lucht is. Probeer later opnieuw." - -#: wp-includes/script-loader.php:282 -msgid "Security error." -msgstr "Beveiligingsfout." - -#: wp-includes/link-template.php:2645 -msgid "Newer Comments »" -msgstr "Nieuwere reacties »" - -#: wp-includes/link-template.php:2689 -msgid "« Older Comments" -msgstr "« Oudere reacties" - -#: wp-includes/widgets/class-wp-widget-pages.php:142 -msgid "Page IDs, separated by commas." -msgstr "Pagina-ID's , gescheiden door komma's." - -#: wp-includes/widgets/class-wp-widget-links.php:26 -msgid "Your blogroll" -msgstr "Je blogroll" - -#: wp-includes/class-wp-editor.php:926 wp-includes/class-wp-editor.php:1401 -#: wp-includes/script-loader.php:403 -msgid "Insert/edit link" -msgstr "Link invoegen/bewerken" - -#: wp-includes/script-loader.php:104 -msgid "Insert link" -msgstr "Link invoegen" - -#: wp-includes/class-wp-editor.php:927 -msgid "Remove link" -msgstr "Link verwijderen" - -#: wp-includes/script-loader.php:257 -msgid "This feature requires inline frames. You have iframes disabled or your browser does not support them." -msgstr "Deze eigenschap vereist inline frames. Je hebt inline frames uitgeschakeld of je browser ondersteunt dit niet." - -#: wp-includes/script-loader.php:635 -msgid "Could not set that as the thumbnail image. Try a different attachment." -msgstr "Niet mogelijk om dit als de thumbnail afbeelding in te stellen. Probeer een andere bijlage." - -#: wp-includes/comment.php:234 -msgid "Unapproved" -msgstr "Geweigerd" - -#: wp-includes/pluggable.php:1641 -msgid "Approve it: %s" -msgstr "Toelaten: %s" - -#: wp-includes/widgets/class-wp-widget-links.php:149 -msgid "Show Link Image" -msgstr "Afbeeldingslink tonen" - -#: wp-includes/widgets/class-wp-widget-links.php:151 -msgid "Show Link Name" -msgstr "Linknaam tonen" - -#: wp-includes/widgets/class-wp-widget-links.php:153 -msgid "Show Link Description" -msgstr "Linkbeschrijving tonen" - -#: wp-includes/widgets/class-wp-widget-links.php:155 -msgid "Show Link Rating" -msgstr "Linkwaardering tonen" - -#: wp-includes/functions.php:2411 wp-includes/ms-functions.php:1910 -msgid "Please try again." -msgstr "Opnieuw proberen." - -#: wp-includes/functions.php:4294 -msgid "Select a city" -msgstr "Een plaats selecteren" - -#. translators: %s: POP3 error -#: wp-mail.php:232 -msgid "Oops: %s" -msgstr "Oeps: %s" - -#: wp-includes/general-template.php:546 -msgid "Site Admin" -msgstr "Sitebeheer" - -#: wp-includes/deprecated.php:64 -msgid "new WordPress Loop" -msgstr "nieuwe WordPress loop" - -#: wp-includes/script-loader.php:509 -msgid "Schedule for:" -msgstr "Ingepland voor:" - -#: wp-includes/widgets/class-wp-widget-recent-posts.php:27 -#: wp-includes/widgets/class-wp-widget-recent-posts.php:46 -msgid "Recent Posts" -msgstr "Meest recente berichten" - -#: wp-includes/pluggable.php:1621 -msgid "Trackback excerpt: " -msgstr "Trackback samenvatting:" - -#: wp-includes/pluggable.php:1629 -msgid "Pingback excerpt: " -msgstr "Pingback samenvatting:" - -#: wp-includes/post-template.php:364 -msgid "There is no excerpt because this is a protected post." -msgstr "Er is geen samenvatting omdat dit bericht is beveiligd." - -#: wp-includes/post.php:2982 -msgid "Content, title, and excerpt are empty." -msgstr "Inhoud, titel en samenvatting zijn leeg." - -#: wp-includes/ms-functions.php:494 -msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing." -msgstr "Dit e-mailadres is al in gebruik. Controleer je mailbox voor een activatiebericht. Het zal vrijgegeven worden in een paar dagen als je niets doet." - -#: wp-mail.php:54 -msgid "There doesn’t seem to be any new mail." -msgstr "Het lijkt erop dat er geen nieuwe e-mail is." - -#: wp-includes/class-wp-editor.php:856 -msgid "Select all" -msgstr "Alles selecteren" - -#: wp-includes/ms-functions.php:986 -msgid "That username is already activated." -msgstr "Deze gebruikersnaam is al geactiveerd." - -#: wp-includes/class-wp-editor.php:970 -msgid "Insert row before" -msgstr "Rij boven invoegen" - -#: wp-includes/class-wp-editor.php:971 -msgid "Insert row after" -msgstr "Rij onder invoegen" - -#: wp-includes/class-wp-editor.php:972 -msgid "Insert column before" -msgstr "Kolom links invoegen" - -#: wp-includes/class-wp-editor.php:973 -msgid "Insert column after" -msgstr "Kolom rechts invoegen" - -#: wp-includes/class-wp-editor.php:974 -msgid "Paste table row before" -msgstr "Tabelrij boven plakken" - -#: wp-includes/class-wp-editor.php:975 -msgid "Paste table row after" -msgstr "Tabelrij onder plakken" - -#. translators: 1: blog name, 2: separator(raquo), 3: author name -#: wp-includes/general-template.php:2518 -msgid "%1$s %2$s Posts by %3$s Feed" -msgstr "%1$s %2$s berichten in %3$s Feed" - -#: wp-includes/media.php:3362 -msgid "Edit Gallery" -msgstr "Galerij bewerken" - -#: wp-signup.php:222 -msgid "(Must be at least 4 characters, letters and numbers only.)" -msgstr "(Moet tenminste 4 karakters bevatten, alleen letters en cijfers zijn toegestaan.)" - -#: wp-signup.php:225 -msgid "Email Address:" -msgstr "E-mailadres:" - -#: wp-includes/formatting.php:2846 -msgid "%s hour" -msgid_plural "%s hours" -msgstr[0] "%s uur" -msgstr[1] "%s uur" - -#: wp-signup.php:586 -msgid "But, before you can start using your new username, you must activate it." -msgstr "Voordat je kunt starten met je nieuwe gebruikersnaam, moet je deze eerst activeren." - -#: wp-includes/taxonomy.php:3221 -msgid "The slug “%s” is already in use by another term" -msgstr "De slug (permalink) \"%s\" is al in gebruik door een andere term" - -#: wp-includes/taxonomy.php:4525 -msgid "Invalid object ID" -msgstr "Ongeldig object-ID" - -#: wp-includes/post.php:3291 -msgid "The page template is invalid." -msgstr "Het paginatemplate is ongeldig." - -#: wp-includes/functions.php:3732 -msgid "%1$s was called with an argument that is deprecated since version %2$s! %3$s" -msgstr "%1$s werd aangeroepen met een argument dat verouderd is sinds versie %2$s! %3$s" - -#: wp-includes/class-wp-editor.php:924 -msgid "Horizontal space" -msgstr "Horizontale ruimte" - -#: wp-includes/functions.php:3568 wp-includes/functions.php:3672 -msgid "%1$s is deprecated since version %2$s! Use %3$s instead." -msgstr "%1$s is verouderd sinds versie %2$s! Gebruik in plaats daarvan %3$s." - -#: wp-includes/pluggable.php:1648 -msgid "Currently %s comment is waiting for approval. Please visit the moderation panel:" -msgid_plural "Currently %s comments are waiting for approval. Please visit the moderation panel:" -msgstr[0] "Er wacht %s reactie op goedkeuring. Ga naar het moderatiescherm:" -msgstr[1] "Er wachten %s reacties op goedkeuring. Ga naar het moderatiescherm:" - -#: wp-includes/ms-functions.php:472 wp-includes/user.php:1395 -msgid "Sorry, that email address is already used!" -msgstr "Dit e-mailadres is al in gebruik!" - -#: wp-includes/ms-functions.php:468 wp-includes/user.php:1321 -msgid "Sorry, that username already exists!" -msgstr "Deze gebruikersnaam bestaat al!" - -#: wp-includes/ms-functions.php:462 -msgid "Sorry, that email address is not allowed!" -msgstr "Dit e-mailadres is niet toegestaan!" - -#: wp-includes/ms-functions.php:453 -msgid "Sorry, usernames must have letters too!" -msgstr "Gebruikersnamen moeten ook letters bevatten!" - -#: wp-login.php:102 -msgid "Powered by WordPress" -msgstr "Mogelijk gemaakt door WordPress" - -#: wp-includes/widgets.php:173 wp-includes/widgets.php:244 -msgid "Sidebar %d" -msgstr "Zijbalk %d" - -#: wp-includes/class-wp-theme.php:245 -msgid "Stylesheet is missing." -msgstr "Stylesheet ontbreekt." - -#: wp-includes/script-loader.php:576 -msgid "Plugin Information:" -msgstr "Plugin-informatie:" - -#: wp-includes/link-template.php:1749 wp-includes/link-template.php:1981 -msgid "Previous Post" -msgstr "Vorig bericht" - -#: wp-includes/link-template.php:1749 wp-includes/link-template.php:1981 -msgid "Next Post" -msgstr "Volgend bericht" - -#: wp-includes/class-wp-editor.php:1032 -msgid "Insert Page Break tag" -msgstr "Pagina-afbreektag invoegen" - -#: wp-includes/media-template.php:1004 -msgid "Link Rel" -msgstr "Linkrelatie" - -#: wp-includes/script-loader.php:347 -msgid "Mute" -msgstr "Afbreken" - -#: wp-includes/class-wp-editor.php:898 -msgid "Vertical space" -msgstr "Verticale ruimte" - -#: wp-includes/class-wp-editor.php:826 -msgid "Paragraph" -msgstr "Alinea" - -#: wp-includes/general-template.php:413 wp-login.php:897 -msgid "Remember Me" -msgstr "Gegevens onthouden" - -#: wp-includes/feed-atom-comments.php:34 wp-includes/feed-rss2-comments.php:39 -msgid "Comments for %1$s searching on %2$s" -msgstr "Reacties op %1$s zoeken op %2$s" - -#: wp-includes/functions.php:2064 -msgid "Could not write file %s" -msgstr "Bestand %s kan niet opgeslagen worden" - -#: wp-includes/functions.php:2414 -msgid "WordPress Failure Notice" -msgstr "WordPress-foutmelding" - -#: wp-includes/widgets.php:1358 -msgid "Display item author if available?" -msgstr "Itemauteur tonen als deze beschikbaar is?" - -#: wp-includes/widgets.php:1361 -msgid "Display item date?" -msgstr "Itemdatum tonen?" - -#: wp-includes/widgets.php:1342 -msgid "Give the feed a title (optional):" -msgstr "Geef de RSS-feed een titel (optioneel):" - -#: wp-includes/widgets/class-wp-widget-text.php:110 -msgid "Automatically add paragraphs" -msgstr "Automatisch alinea's toevoegen" - -#: wp-includes/widgets.php:1339 -msgid "Enter the RSS feed URL here:" -msgstr "Voer de RSS-feed-URL hier in:" - -#: wp-includes/comment.php:1857 -msgid "Could not update comment status" -msgstr "De reactiestatus kan niet bijgewerkt worden" - -#: wp-includes/comment.php:617 wp-includes/comment.php:619 -msgid "Duplicate comment detected; it looks as though you’ve already said that!" -msgstr "Dubbele reactie ontdekt: het lijkt erop dat je dit al hebt gezegd." - -#: wp-includes/class-wp-editor.php:978 -msgid "Cut table row" -msgstr "Tabelrij knippen" - -#: wp-includes/class-wp-editor.php:956 -msgid "Table row properties" -msgstr "Eigenschappen tabelrij" - -#: wp-includes/class-wp-editor.php:957 -msgid "Table cell properties" -msgstr "Eigenschappen tabelcel" - -#: wp-includes/class-wp-editor.php:955 -msgid "Table properties" -msgstr "Tabeleigenschappen" - -#: wp-includes/widgets.php:1333 -msgid "RSS Error: %s" -msgstr "RSS-fout: %s" - -#: wp-signup.php:589 -msgid "If you do not activate your username within two days, you will have to sign up again." -msgstr "Als je de gebruikersnaam niet binnen twee dagen activeert, moet je je opnieuw registeren." - -#: wp-includes/ms-functions.php:1577 -msgid "New %1$s User: %2$s" -msgstr "Nieuwe %1$s gebruiker: %2$s" - -#. translators: 1: blog name, 2: separator(raquo), 3: category name -#: wp-includes/general-template.php:2514 -msgid "%1$s %2$s %3$s Category Feed" -msgstr "%1$s %2$s %3$s Categoriefeed" - -#. translators: 1: blog name, 2: separator(raquo), 3: post title -#: wp-includes/general-template.php:2512 -msgid "%1$s %2$s %3$s Comments Feed" -msgstr "%1$s %2$s %3$s Reactiesfeed" - -#. translators: 1: blog name, 2: separator(raquo), 3: tag name -#: wp-includes/general-template.php:2516 -msgid "%1$s %2$s %3$s Tag Feed" -msgstr "%1$s %2$s %3$s Tagfeed" - -#. translators: 1: blog title, 2: separator (raquo) -#: wp-includes/general-template.php:2472 -msgid "%1$s %2$s Comments Feed" -msgstr "%1$s %2$s Reactiesfeed" - -#: wp-includes/functions.php:3734 -msgid "%1$s was called with an argument that is deprecated since version %2$s with no alternative available." -msgstr "%1$s werd aangeroepen met een argument dat verouderd is sinds versie %2$s, zonder beschikbaar alternatief." - -#: wp-includes/functions.php:3570 wp-includes/functions.php:3674 -msgid "%1$s is deprecated since version %2$s with no alternative available." -msgstr "%1$s is verouderd sinds versie %2$s, zonder beschikbaar alternatief." - -#: wp-includes/post-template.php:1660 -msgid "%1$s [Autosave]" -msgstr "%1$s [Automatisch opgeslagen]" - -#: wp-includes/ms-load.php:307 -msgid "What do I do now?" -msgstr "Wat moet ik nu doen?" - -#. translators: $dec_point argument for http:php.net/number_format, default is -#. . -#: wp-includes/locale.php:194 -msgid "number_format_decimal_point" -msgstr "," - -#: wp-login.php:844 -msgid "Check your email for the confirmation link." -msgstr "Je e-mailbox controleren voor de bevestigingslink." - -#: wp-login.php:846 -msgid "Check your email for your new password." -msgstr "Je e-mailbox controleren voor je nieuwe wachtwoord." - -#: wp-login.php:366 -msgid "The email could not be sent." -msgstr "De e-mail kon niet worden verzonden." - -#: wp-login.php:712 -msgid "Register For This Site" -msgstr "Je registeren voor deze site" - -#: wp-includes/pluggable.php:1652 -msgid "[%1$s] Please moderate: \"%2$s\"" -msgstr "[%1$s] Graag \"%2$s\" modereren" - -#: wp-includes/pluggable.php:592 -msgid "ERROR: Invalid username or incorrect password." -msgstr "FOUT: Ongeldige gebruikersnaam of ongeldig wachtwoord." - -#: wp-includes/ms-functions.php:442 -msgid "You cannot use that email address to signup. We are having problems with them blocking some of our email. Please use another email provider." -msgstr "Je kunt dat e-mailadres niet gebruiken om je aan te melden. We hebben problemen met ze dat enkele e-mails van ons worden geblokkeerd. Graag een andere e-mailprovider gebruiken." - -#: wp-includes/class-wp-theme.php:290 -msgid "The parent theme is missing. Please install the \"%s\" parent theme." -msgstr "Er is geen hoofdthema aanwezig. Het hoofdthema \"%s\" installeren." - -#: wp-includes/class-wp-theme.php:271 -msgid "Template is missing." -msgstr "Template ontbreekt." - -#: wp-includes/ms-functions.php:958 -msgid "Invalid activation key." -msgstr "Ongeldige activeringscode." - -#: wp-includes/user.php:128 -msgid "ERROR: The username field is empty." -msgstr "FOUT: Geen gebruikersnaam opgegeven." - -#: wp-includes/user.php:131 -msgid "ERROR: The password field is empty." -msgstr "FOUT: Geen wachtwoord opgegeven." - -#: wp-login.php:284 -msgid "ERROR: Enter a username or email address." -msgstr "FOUT: Geef een gebruikersnaam of e-mailadres op." - -#: wp-login.php:288 -msgid "ERROR: There is no user registered with that email address." -msgstr "FOUT: Er is geen gebruiker geregistreerd met dit e-mailadres." - -#: wp-login.php:309 -msgid "ERROR: Invalid username or email." -msgstr "FOUT: Ongeldige gebruikersnaam of e-mailadres." - -#: wp-includes/user.php:2138 -msgid "ERROR: Please type your email address." -msgstr "FOUT: Voer je e-mailadres in." - -#: wp-includes/user.php:2140 -msgid "ERROR: The email address isn’t correct." -msgstr "FOUT: Het e-mailadres is onjuist." - -#: wp-includes/user.php:236 -msgid "ERROR: Your account has been marked as a spammer." -msgstr "FOUT: Je account is gemarkeerd als spammer." - -#: wp-includes/wp-db.php:3118 -msgid "ERROR: WordPress %1$s requires MySQL %2$s or higher" -msgstr "FOUT: WordPress %1$s vereist MySQL %2$s of hoger" - -#: wp-includes/taxonomy.php:528 -msgid "Edit Category" -msgstr "Categorie bewerken" - -#: wp-includes/class-wp-customize-nav-menus.php:231 -#: wp-includes/script-loader.php:407 wp-includes/script-loader.php:642 -msgid "No results found." -msgstr "Niets gevonden." - -#: wp-includes/post.php:1362 -msgctxt "page" -msgid "Add New" -msgstr "Nieuwe pagina" - -#: wp-includes/class-wp-editor.php:984 wp-includes/media-template.php:958 -msgid "Width" -msgstr "Breedte" - -#: wp-includes/class-wp-widget.php:134 -msgid "There are no options for this widget." -msgstr "Er zijn geen opties voor deze widget." - -#: wp-includes/admin-bar.php:332 wp-includes/admin-bar.php:412 -#: wp-includes/admin-bar.php:479 wp-includes/deprecated.php:2761 -#: wp-includes/deprecated.php:2763 -msgid "Dashboard" -msgstr "Dashboard" - -#: wp-includes/general-template.php:414 wp-login.php:867 wp-login.php:899 -msgid "Log In" -msgstr "Inloggen" - -#: wp-signup.php:171 -msgid "Yes" -msgstr "Ja" - -#: wp-includes/admin-bar.php:430 wp-includes/admin-bar.php:722 -#: wp-includes/customize/class-wp-customize-themes-section.php:56 -msgid "Themes" -msgstr "Thema's" - -#: wp-includes/admin-bar.php:442 -msgid "Settings" -msgstr "Instellingen" - -#: wp-includes/class-wp-xmlrpc-server.php:537 -msgid "Allow people to post comments on new articles" -msgstr "Sta toe dat bezoekers kunnen reageren op nieuwe artikelen" - -#: wp-includes/class-wp-editor.php:983 wp-includes/media-template.php:958 -msgid "Height" -msgstr "Hoogte" - -#: wp-includes/customize/class-wp-customize-color-control.php:41 -#: wp-includes/customize/class-wp-customize-image-control.php:38 -#: wp-includes/customize/class-wp-customize-media-control.php:61 -#: wp-includes/script-loader.php:611 -msgid "Default" -msgstr "Standaard" - -#: wp-includes/widgets/class-wp-nav-menu-widget.php:132 -#: wp-includes/widgets/class-wp-widget-archives.php:153 -#: wp-includes/widgets/class-wp-widget-calendar.php:100 -#: wp-includes/widgets/class-wp-widget-categories.php:156 -#: wp-includes/widgets/class-wp-widget-meta.php:107 -#: wp-includes/widgets/class-wp-widget-pages.php:127 -#: wp-includes/widgets/class-wp-widget-recent-comments.php:154 -#: wp-includes/widgets/class-wp-widget-recent-posts.php:128 -#: wp-includes/widgets/class-wp-widget-search.php:67 -#: wp-includes/widgets/class-wp-widget-tag-cloud.php:119 -#: wp-includes/widgets/class-wp-widget-text.php:104 -msgid "Title:" -msgstr "Titel:" - -#: wp-includes/taxonomy.php:533 -msgid "Separate tags with commas" -msgstr "Meerdere tags scheiden met komma's" - -#: wp-includes/theme-compat/comments.php:96 -#: wp-includes/theme-compat/comments.php:99 -msgid "(required)" -msgstr "(verplicht)" - -#: wp-login.php:630 -msgid "Strength indicator" -msgstr "Sterkte-indicator" - -#: wp-includes/admin-bar.php:735 wp-includes/class-wp-customize-widgets.php:359 -#: wp-includes/functions.php:3445 -msgid "Widgets" -msgstr "Widgets" - -#: wp-includes/class-wp-xmlrpc-server.php:4671 -msgid "For some strange yet very annoying reason, this post could not be edited." -msgstr "Om een onbekende maar bijzonder irritante reden kan dit bericht niet worden bewerkt." - -#: wp-includes/link-template.php:2260 wp-includes/link-template.php:2304 -msgid "« Previous Page" -msgstr "« Vorige pagina" - -#: wp-includes/link-template.php:2177 wp-includes/link-template.php:2305 -msgid "Next Page »" -msgstr "Volgende pagina »" - -#: wp-includes/theme-compat/comments-popup.php:42 -msgid "RSS feed for comments on this post." -msgstr "RSS-feed voor reacties op dit bericht." - -#: wp-includes/theme-compat/comments-popup.php:68 -msgid "Leave a comment" -msgstr "Geef een reactie" - -#. translators: %s: user profile link -#: wp-includes/theme-compat/comments.php:90 -msgid "Logged in as %s." -msgstr "Ingelogd als %s." - -#: wp-includes/theme-compat/comments.php:91 -msgid "Log out »" -msgstr "Uitloggen »" - -#: wp-includes/theme-compat/comments-popup.php:86 -msgid "URL" -msgstr "URL" - -#: wp-includes/theme-compat/comments-popup.php:112 -msgid "Close this window." -msgstr "Dit venster sluiten." - -#: wp-includes/comment-template.php:882 -msgid "1 Comment" -msgstr "1 reactie" - -#: wp-includes/link-template.php:983 wp-includes/link-template.php:1302 -#: wp-includes/link-template.php:1404 wp-includes/link-template.php:1465 -msgid "Edit This" -msgstr "Bewerken" - -#: wp-includes/comment-template.php:2120 -#: wp-includes/theme-compat/comments.php:82 -msgid "You must be logged in to post a comment." -msgstr "Je moet inloggen om een reactie te kunnen plaatsen." - -#: wp-includes/theme-compat/comments.php:108 -msgid "Submit Comment" -msgstr "Reactie verzenden" - -#: wp-includes/post-template.php:811 -msgid "Pages:" -msgstr "Pagina's:" - -#: wp-includes/widgets/class-wp-widget-meta.php:55 -msgid "Comments RSS" -msgstr "Reacties RSS" - -#: wp-includes/theme-compat/sidebar.php:108 -msgid "Valid XHTML" -msgstr "Geldige XHTML" - -#: wp-includes/author-template.php:256 wp-includes/author-template.php:413 -msgid "Posts by %s" -msgstr "Berichten van %s" - -#: wp-includes/bookmark-template.php:83 -msgid "Last updated: %s" -msgstr "Laatste update: %s" - -#: wp-includes/bookmark-template.php:206 -msgid "Bookmarks" -msgstr "Bladwijzers" - -#: wp-includes/category-template.php:528 wp-includes/taxonomy.php:537 -msgid "No categories" -msgstr "Geen categorieën" - -#: wp-includes/class-walker-category.php:129 -msgid "Feed for all posts filed under %s" -msgstr "Feed voor alle berichten opgeslagen onder %s" - -#: wp-includes/comment-template.php:1682 -msgid "Leave a Comment" -msgstr "Geef een reactie" - -#: wp-includes/comment-template.php:1751 -msgid "Click here to cancel reply." -msgstr "Klik hier om je antwoord te annuleren." - -#: wp-includes/comment-template.php:1838 wp-includes/comment-template.php:2130 -#: wp-includes/theme-compat/comments.php:75 -msgid "Leave a Reply" -msgstr "Geef een reactie" - -#: wp-includes/comment-template.php:1839 wp-includes/comment-template.php:2131 -#: wp-includes/theme-compat/comments.php:75 -msgid "Leave a Reply to %s" -msgstr "Laat een reactie achter bij %s" - -#: wp-includes/class-walker-comment.php:267 -msgid "%s says:" -msgstr "%s zegt:" - -#: wp-includes/class-walker-comment.php:270 -#: wp-includes/class-walker-comment.php:335 -msgid "Your comment is awaiting moderation." -msgstr "Je reactie is in afwachting van moderatie." - -#. translators: 1: comment date, 2: comment time -#: wp-includes/class-walker-comment.php:277 -#: wp-includes/class-walker-comment.php:327 -msgid "%1$s at %2$s" -msgstr "%1$s om %2$s" - -#: wp-includes/class-walker-comment.php:277 -msgid "(Edit)" -msgstr "(bewerken)" - -#: wp-includes/theme-compat/sidebar.php:104 -#: wp-includes/widgets/class-wp-widget-meta.php:29 -#: wp-includes/widgets/class-wp-widget-meta.php:44 -msgid "Meta" -msgstr "Meta" - -#: wp-includes/deprecated.php:2644 -msgid "First Post" -msgstr "Eerste bericht" - -#: wp-includes/comment-template.php:2100 -#: wp-includes/theme-compat/comments-popup.php:81 wp-login.php:720 -msgid "Email" -msgstr "E-mail" - -#: wp-includes/admin-bar.php:418 -msgid "Sites" -msgstr "Sites" - -#: wp-includes/admin-bar.php:392 -msgid "My Sites" -msgstr "Mijn sites" - -#: wp-includes/author-template.php:191 -msgid "Visit %s’s website" -msgstr "Bezoek %s’s site" - -#: wp-includes/class-wp-customize-manager.php:1806 -#: wp-includes/class-wp-xmlrpc-server.php:467 -msgid "Site Title" -msgstr "Websitetitel" - -#: wp-includes/class-wp-xmlrpc-server.php:477 -msgid "Date Format" -msgstr "Datumnotatie" - -#: wp-includes/class-wp-xmlrpc-server.php:482 -msgid "Time Format" -msgstr "Tijdnotatie" - -#: wp-includes/comment-template.php:1683 -msgid "Log in to leave a Comment" -msgstr "Inloggen om een reactie te geven" - -#: wp-includes/comment-template.php:880 -msgid "No Comments" -msgstr "Geen reacties" - -#: wp-includes/comment-template.php:1571 -msgid "Log in to Reply" -msgstr "Log in om te reageren" - -#: wp-includes/class-wp-user.php:715 -msgid "Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead." -msgstr "Gebruik van de gebruikerslevels in plugins en thema's is niet meer mogelijk. Gebruik in plaats daarvan rollen." - -#: wp-includes/comment-template.php:1488 -msgid "Enter your password to view comments." -msgstr "Voer je wachtwoord in om reacties te bekijken." - -#: wp-includes/class-wp-xmlrpc-server.php:3526 wp-includes/comment.php:2690 -msgid "Sorry, comments are closed for this item." -msgstr "Je kunt niet meer reageren, de reacties zijn gesloten." - -#: wp-includes/theme-compat/comments-popup.php:118 -msgid "Sorry, no posts matched your criteria." -msgstr "Geen berichten gevonden die overeenkomen met je criteria." - -#: wp-includes/theme-compat/comments-popup.php:107 -msgid "Sorry, the comment form is closed at this time." -msgstr "De reactiemogelijkheid voor dit bericht is gesloten." - -#: wp-includes/class-wp-xmlrpc-server.php:1615 -#: wp-includes/class-wp-xmlrpc-server.php:4723 -msgid "Sorry, you do not have the right to delete this post." -msgstr "Je hebt geen rechten om dit bericht te verwijderen." - -#: wp-includes/comment.php:2764 -msgid "Sorry, you must be logged in to post a comment." -msgstr "Je moet ingelogd zijn om een reactie te geven." - -#: wp-includes/class-wp-xmlrpc-server.php:4653 -#: wp-includes/class-wp-xmlrpc-server.php:5153 -msgid "Sorry, you do not have the right to edit this post." -msgstr "Je hebt geen rechten om dit bericht te bewerken." - -#: wp-includes/class-wp-xmlrpc-server.php:1501 -#: wp-includes/class-wp-xmlrpc-server.php:4593 -#: wp-includes/class-wp-xmlrpc-server.php:5052 -msgid "Sorry, your entry could not be posted. Something wrong happened." -msgstr "Je bericht kan niet geplaatst worden. Er is iets misgegaan." - -#: wp-includes/category-template.php:804 wp-includes/category-template.php:813 -msgid "%s topic" -msgid_plural "%s topics" -msgstr[0] "%s onderwerp" -msgstr[1] "%s onderwerpen" - -#: wp-includes/theme-compat/sidebar.php:110 -#: wp-includes/widgets/class-wp-widget-meta.php:66 -msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." -msgstr "Mogelijk gemaakt door WordPress." - -#: wp-includes/comment-template.php:2102 -#: wp-includes/theme-compat/comments.php:102 -msgid "Website" -msgstr "Website" - -#: wp-includes/class-wp-customize-panel.php:375 -#: wp-includes/customize/class-wp-customize-nav-menus-panel.php:92 -msgid "Help" -msgstr "Hulp" - -#: wp-includes/theme-compat/comments-popup.php:99 -msgid "Say It!" -msgstr "Vertel!" - -#: wp-includes/theme-compat/comments.php:99 -msgid "Mail (will not be published)" -msgstr "E-mail (wordt niet getoond)" - -#: wp-includes/theme-compat/sidebar.php:108 -msgid "This page validates as XHTML 1.0 Transitional" -msgstr "Deze pagina is geldige XHTML 1.0 Transitional" - -#: wp-includes/theme-compat/comments.php:91 -msgid "Log out of this account" -msgstr "Dit account uitloggen" - -#: wp-includes/category-template.php:1097 -msgid "Tags: " -msgstr "Tags: " - -#: wp-includes/feed-atom-comments.php:32 -msgid "Comments on %s" -msgstr "Reacties op %s" - -#: wp-includes/theme-compat/comments.php:66 -msgid "Comments are closed." -msgstr "Reacties zijn gesloten." - -#: wp-includes/class-wp-editor.php:178 -msgid "Visual" -msgstr "Visueel" - -#. translators: %s: comments count -#: wp-includes/script-loader.php:492 -msgid "Comments (%s)" -msgstr "Reacties (%s)" - -#: wp-includes/theme-compat/comments-popup.php:91 -msgid "Your Comment" -msgstr "Je reactie" - -#: wp-includes/user.php:2121 -msgid "ERROR: Please enter a username." -msgstr "FOUT: voer een gebruikersnaam in." - -#: wp-includes/user.php:2143 -msgid "ERROR: This email is already registered, please choose another one." -msgstr "FOUT: Dit e-mailadres is al geregistreerd. Kies een ander." - -#: wp-includes/category-template.php:536 -#: wp-includes/theme-compat/sidebar.php:98 -#: wp-includes/widgets/class-wp-widget-categories.php:27 -#: wp-includes/widgets/class-wp-widget-categories.php:44 -msgid "Categories" -msgstr "Categorieën" - -#. translators: %s: search phrase -#: wp-includes/general-template.php:857 -msgid "Search Results for “%s”" -msgstr "Zoekresultaten voor “%s”" - -#: wp-includes/taxonomy.php:523 -msgid "Search Categories" -msgstr "Categorieën zoeken" - -#: wp-includes/class-wp-customize-widgets.php:669 wp-includes/media.php:3344 -msgid "Apply" -msgstr "Uitvoeren" - -#: wp-includes/deprecated.php:688 wp-includes/media-template.php:622 -#: wp-includes/media-template.php:649 wp-includes/media-template.php:727 -#: wp-includes/media-template.php:853 wp-includes/media-template.php:868 -#: wp-includes/media-template.php:919 wp-includes/media-template.php:981 -#: wp-includes/media-template.php:1079 wp-includes/media-template.php:1168 -#: wp-includes/script-loader.php:343 -msgid "None" -msgstr "Geen" - -#: wp-includes/class-wp-editor.php:888 -#: wp-includes/customize/class-wp-customize-nav-menu-item-control.php:128 -#: wp-includes/customize/class-wp-customize-nav-menus-panel.php:63 -#: wp-includes/media-template.php:403 wp-includes/media-template.php:582 -msgid "Description" -msgstr "Beschrijving" - -#: wp-includes/class-wp-editor.php:889 wp-includes/theme-compat/sidebar.php:28 -msgid "Author" -msgstr "Auteur" - -#: wp-includes/class-wp-customize-nav-menus.php:750 -#: wp-includes/class-wp-editor.php:1408 -#: wp-includes/customize/class-wp-customize-nav-menu-item-control.php:91 -#: wp-includes/media-template.php:371 wp-includes/media-template.php:550 -#: wp-includes/media.php:3301 -msgid "URL" -msgstr "URL" - -#: wp-includes/comment-template.php:1041 wp-includes/comment-template.php:2118 -msgctxt "noun" -msgid "Comment" -msgstr "Reactie" - -#: wp-signup.php:175 -msgid "No" -msgstr "Nee" - -#: wp-includes/class-walker-comment.php:235 -#: wp-includes/class-walker-comment.php:331 -#: wp-includes/class-wp-editor.php:1037 -msgid "Edit" -msgstr "Bewerken" - -#: wp-includes/taxonomy.php:530 -msgid "Update Category" -msgstr "Categorie bijwerken" - -#: wp-includes/class-wp-editor.php:857 -msgid "Undo" -msgstr "Ongedaan maken" - -#: wp-includes/script-loader.php:490 -#: wp-includes/theme-compat/comments-popup.php:40 -msgid "Comments" -msgstr "Reacties" - -#: wp-includes/script-loader.php:515 -msgid "Publish" -msgstr "Publiceren" - -#. translators: comment status -#: wp-includes/comment.php:238 -msgctxt "adjective" -msgid "Spam" -msgstr "Spam" - -#: wp-includes/taxonomy.php:93 -msgid "Link Categories" -msgstr "Categorieën" - -#: wp-includes/class-wp-editor.php:921 -msgid "Save" -msgstr "Opslaan" - -#: wp-includes/class-wp-editor.php:894 -msgid "Advanced" -msgstr "Geavanceerd" - -#: wp-includes/comment-template.php:2098 -#: wp-includes/theme-compat/comments-popup.php:76 -#: wp-includes/theme-compat/comments.php:96 -msgid "Name" -msgstr "Naam" - -#: wp-includes/post-template.php:1122 wp-includes/theme-compat/sidebar.php:90 -#: wp-includes/widgets/class-wp-widget-pages.php:27 -#: wp-includes/widgets/class-wp-widget-pages.php:51 -msgid "Pages" -msgstr "Pagina's" - -#: wp-includes/taxonomy.php:528 -msgid "Edit Tag" -msgstr "Tag bewerken" - -#: wp-includes/widgets/class-wp-widget-tag-cloud.php:46 -msgid "Tags" -msgstr "Tags" - -#: wp-includes/class-wp-term.php:179 -#: wp-includes/class-wp-xmlrpc-server.php:1851 -#: wp-includes/class-wp-xmlrpc-server.php:1938 -#: wp-includes/class-wp-xmlrpc-server.php:2034 -#: wp-includes/class-wp-xmlrpc-server.php:2105 -#: wp-includes/class-wp-xmlrpc-server.php:2163 -#: wp-includes/class-wp-xmlrpc-server.php:2258 wp-includes/taxonomy.php:665 -#: wp-includes/taxonomy.php:754 wp-includes/taxonomy.php:905 -#: wp-includes/taxonomy.php:1078 wp-includes/taxonomy.php:2297 -#: wp-includes/taxonomy.php:2548 wp-includes/taxonomy.php:2791 -#: wp-includes/taxonomy.php:3124 -msgid "Invalid taxonomy" -msgstr "Ongeldige taxonomie" - -#: wp-includes/post.php:1362 -msgctxt "post" -msgid "Add New" -msgstr "Nieuw bericht" - -#: wp-includes/admin-bar.php:424 -msgid "Users" -msgstr "Gebruikers" - -#: wp-includes/script-loader.php:636 -msgid "Done" -msgstr "Klaar" - -#: wp-includes/class-wp-theme.php:722 wp-includes/comment-template.php:31 -msgid "Anonymous" -msgstr "Anoniem" - -#: wp-includes/widgets/class-wp-widget-rss.php:28 -msgid "RSS" -msgstr "RSS" - -#: wp-includes/functions.php:2026 -msgid "Invalid file type" -msgstr "Ongeldig bestandstype" - -#: wp-includes/class-wp-editor.php:919 wp-includes/media-template.php:1240 -msgid "Preview" -msgstr "Voorbeeld" - -#: wp-includes/admin-bar.php:436 -msgid "Plugins" -msgstr "Plugins" - -#: wp-includes/class-wp-editor.php:861 wp-includes/class-wp-editor.php:1446 -#: wp-includes/media.php:3305 wp-includes/script-loader.php:390 -#: wp-includes/script-loader.php:438 wp-includes/script-loader.php:507 -msgid "Cancel" -msgstr "Annuleren" - -#: wp-includes/revision.php:32 -msgid "Content" -msgstr "Inhoud" - -#: wp-includes/script-loader.php:519 -msgid "Save Draft" -msgstr "Opslaan als concept" - -#: wp-includes/comment-template.php:1569 wp-includes/script-loader.php:488 -msgid "Reply" -msgstr "Beantwoorden" - -#: wp-includes/comment-template.php:1043 -msgid "Pingback" -msgstr "Pingback" - -#: wp-includes/comment-template.php:1042 -msgid "Trackback" -msgstr "Trackback" - -#: wp-includes/widgets.php:1224 -msgid "RSS Error: %s" -msgstr "RSS Fout: %s" - -#: wp-includes/widgets/class-wp-widget-rss.php:71 -msgid "Unknown Feed" -msgstr "Onbekende RSS-invoer" - -#: wp-includes/general-template.php:1389 -#: wp-includes/theme-compat/sidebar.php:92 -#: wp-includes/widgets/class-wp-widget-archives.php:27 -#: wp-includes/widgets/class-wp-widget-archives.php:45 -msgid "Archives" -msgstr "Archief" - -#: wp-includes/general-template.php:411 wp-login.php:716 wp-login.php:882 -msgid "Username" -msgstr "Gebruikersnaam" - -#: wp-includes/general-template.php:412 wp-login.php:886 -msgid "Password" -msgstr "Wachtwoord" - -#: wp-includes/class-wp-editor.php:858 -msgid "Redo" -msgstr "Opnieuw" - -#: wp-includes/media-template.php:687 wp-includes/media-template.php:762 -#: wp-includes/media-template.php:936 wp-includes/media.php:3060 -msgid "Thumbnail" -msgstr "Thumbnail" - -#: wp-includes/deprecated.php:3131 -msgid "File “%s” doesn’t exist?" -msgstr "Bestand “%s” bestaat niet?" - -#: wp-includes/deprecated.php:3141 -msgid "File “%s” is not an image." -msgstr "Bestand “%s” is geen afbeelding." - -#: wp-includes/media.php:3302 -msgid "Add Media" -msgstr "Media toevoegen" - -#: wp-includes/media-template.php:335 wp-includes/media-template.php:497 -msgid "Saved." -msgstr "Opgeslagen." - -#: wp-includes/class-wp-customize-manager.php:1948 -#: wp-includes/class-wp-editor.php:988 wp-includes/media-template.php:613 -#: wp-includes/media-template.php:844 wp-includes/media-template.php:910 -msgid "Left" -msgstr "Links" - -#: wp-includes/class-wp-customize-manager.php:1949 -#: wp-includes/class-wp-editor.php:989 wp-includes/media-template.php:616 -#: wp-includes/media-template.php:847 wp-includes/media-template.php:913 -msgid "Center" -msgstr "Gecentreerd" - -#: wp-includes/class-wp-customize-manager.php:1950 -#: wp-includes/class-wp-editor.php:990 wp-includes/media-template.php:619 -#: wp-includes/media-template.php:850 wp-includes/media-template.php:916 -msgid "Right" -msgstr "Rechts" - -#: wp-includes/media-template.php:688 wp-includes/media-template.php:763 -#: wp-includes/media-template.php:937 wp-includes/media.php:3061 -msgid "Medium" -msgstr "Gemiddeld" - -#: wp-includes/media-template.php:678 wp-includes/media-template.php:752 -#: wp-includes/media-template.php:927 -msgid "Size" -msgstr "Afmeting" - -#: wp-includes/class-wp-editor.php:986 wp-includes/media-template.php:605 -msgid "Alignment" -msgstr "Uitlijning" - -#: wp-includes/script-loader.php:518 -msgid "Save as Pending" -msgstr "Opslaan als wachtend" - -#: wp-includes/script-loader.php:524 -msgid "Privately Published" -msgstr "Gepubliceerd als privé" - -#: wp-includes/class-wp-editor.php:860 wp-includes/script-loader.php:506 -msgid "OK" -msgstr "OK" - -#: wp-includes/post.php:600 wp-includes/post.php:620 -#: wp-includes/script-loader.php:520 -msgid "Private" -msgstr "Privé" - -#: wp-includes/script-loader.php:522 -msgid "Public, Sticky" -msgstr "Openbaar, sticky" - -#: wp-includes/script-loader.php:521 -msgid "Public" -msgstr "Openbaar" - -#: wp-includes/script-loader.php:516 -msgid "Schedule" -msgstr "Inplannen" - -#: wp-includes/media.php:3306 wp-includes/script-loader.php:404 -#: wp-includes/script-loader.php:517 -msgid "Update" -msgstr "Bijwerken" - -#: wp-includes/taxonomy.php:525 -msgid "All Categories" -msgstr "Alle categorieën" - -#: wp-includes/admin-bar.php:809 wp-includes/admin-bar.php:810 -#: wp-includes/class-wp-editor.php:1421 wp-includes/media.php:3303 -msgid "Search" -msgstr "Zoeken" - -#: wp-includes/customize/class-wp-customize-theme-control.php:90 -msgid "By %s" -msgstr "Door %s" - -#: wp-includes/post.php:2221 -msgid "Images" -msgstr "Afbeeldingen" - -#: wp-includes/post.php:1366 -msgid "View Post" -msgstr "Bericht bekijken" - -#: wp-includes/post.php:1366 -msgid "View Page" -msgstr "Pagina bekijken" - -#: wp-includes/category-template.php:191 -msgid "Uncategorized" -msgstr "Geen categorie" - -#: wp-includes/class-wp-editor.php:862 wp-includes/class-wp-editor.php:1402 -#: wp-includes/functions.php:4932 wp-includes/script-loader.php:256 -#: wp-includes/script-loader.php:337 wp-includes/script-loader.php:439 -msgid "Close" -msgstr "Sluiten" - -#: wp-includes/media.php:3304 -msgid "Select" -msgstr "Selecteren" - -#: wp-includes/post.php:59 -msgid "Edit Media" -msgstr "Media bewerken" - -#: wp-includes/admin-bar.php:487 wp-includes/post.php:1365 -msgid "New Post" -msgstr "Nieuw bericht" - -#: wp-includes/media.php:3028 wp-includes/script-loader.php:406 -#: wp-includes/script-loader.php:564 -msgid "(no title)" -msgstr "(geen titel)" - -#: wp-includes/post.php:1364 -msgid "Edit Post" -msgstr "Bericht bewerken" - -#: wp-includes/widgets/class-wp-widget-recent-comments.php:157 -msgid "Number of comments to show:" -msgstr "Aantal te tonen reacties:" - -#: wp-includes/deprecated.php:3082 wp-includes/functions.php:2409 -msgid "Are you sure you want to do this?" -msgstr "Weet je zeker dat je dit wilt doen?" - -#: wp-includes/media-template.php:327 wp-includes/media-template.php:521 -#: wp-includes/media.php:3374 -msgid "Edit Image" -msgstr "Afbeelding bewerken" - -#: wp-includes/media-template.php:690 wp-includes/media-template.php:765 -#: wp-includes/media-template.php:939 wp-includes/media.php:3063 -msgid "Full Size" -msgstr "Volledige grootte" - -#: wp-includes/pluggable.php:1487 wp-includes/pluggable.php:1635 -#: wp-includes/pluggable.php:1756 -msgid "Email: %s" -msgstr "E-mailadres: %s" - -#: wp-includes/post.php:83 -msgid "Revisions" -msgstr "Revisies" - -#: wp-includes/taxonomy.php:534 -msgid "Add or remove tags" -msgstr "Tags toevoegen of verwijderen" - -#: wp-includes/widgets/class-wp-widget-recent-comments.php:27 -#: wp-includes/widgets/class-wp-widget-recent-comments.php:73 -msgid "Recent Comments" -msgstr "Recente reacties" - -#: wp-includes/widgets/class-wp-widget-links.php:27 -msgid "Links" -msgstr "Links" - -#: wp-includes/class-wp-editor.php:1449 wp-includes/script-loader.php:405 -msgid "Add Link" -msgstr "Link toevoegen" - -#: wp-includes/admin-bar.php:759 -msgid "Header" -msgstr "Header" - -#. translators: comment status -#: wp-includes/comment.php:236 -msgctxt "adjective" -msgid "Approved" -msgstr "Toegelaten" - -#: wp-includes/post.php:1365 -msgid "New Page" -msgstr "Nieuwe pagina" - -#: wp-includes/taxonomy.php:98 -msgid "Edit Link Category" -msgstr "Linkcategorie bewerken" - -#: wp-includes/revision.php:33 -msgid "Excerpt" -msgstr "Samenvatting" - -#: wp-includes/theme-compat/comments-popup.php:64 -msgid "No comments yet." -msgstr "Nog geen reacties" - -#: wp-includes/class-wp-editor.php:985 wp-includes/media-template.php:393 -#: wp-includes/media-template.php:572 wp-includes/media-template.php:830 -#: wp-includes/media-template.php:895 -msgid "Caption" -msgstr "Onderschrift" - -#: wp-includes/post-template.php:1518 -msgid "Submit" -msgstr "Verzenden" - -#: wp-includes/widgets.php:175 -msgid "Sidebar" -msgstr "Sidebar" - -#: wp-includes/deprecated.php:3134 -msgid "The GD image library is not installed." -msgstr "De GD-afbeeldingenbibliotheek is niet geïnstalleerd." - -#: wp-includes/media.php:3348 -msgid "No media attachments found." -msgstr "Geen mediabijlages gevonden." - -#: wp-includes/media-template.php:862 wp-includes/media-template.php:974 -msgid "Image URL" -msgstr "Afbeeldings-URL" - -#: wp-includes/script-loader.php:138 wp-includes/script-loader.php:285 -msgid "Dismiss" -msgstr "Verbergen" - -#: wp-includes/class-wp-editor.php:885 wp-includes/media-template.php:377 -#: wp-includes/media-template.php:556 wp-includes/revision.php:31 -#: wp-includes/script-loader.php:533 -msgid "Title" -msgstr "Titel" - -#: wp-includes/post.php:601 wp-includes/post.php:621 -#: wp-includes/script-loader.php:525 -msgid "Published" -msgstr "Gepubliceerd" - -#: wp-includes/post.php:599 -msgid "Pending Review" -msgstr "Wachtend op review" - -#: wp-includes/post.php:598 wp-includes/post.php:619 -msgid "Draft" -msgstr "Concept" - -#: wp-includes/admin-bar.php:266 wp-includes/class-wp-admin-bar.php:422 -msgid "Log Out" -msgstr "Uitloggen" - -#: wp-activate.php:81 -msgid "Activate" -msgstr "Activeren" - -#: wp-activate.php:116 wp-includes/post-template.php:1518 -msgid "Password:" -msgstr "Wachtwoord:" - -#: wp-activate.php:115 wp-signup.php:217 -msgid "Username:" -msgstr "Gebruikersnaam:" - -#: wp-includes/post.php:1368 -msgid "No posts found." -msgstr "Geen berichten gevonden." - -#: wp-includes/admin-bar.php:314 wp-includes/admin-bar.php:504 -#: wp-includes/deprecated.php:2759 -msgid "Visit Site" -msgstr "Site bekijken" - -#: wp-includes/class-wp-customize-manager.php:327 -#: wp-includes/script-loader.php:440 -msgid "Cheatin’ uh?" -msgstr "Vals aan het spelen?" - -#: wp-includes/class-wp-xmlrpc-server.php:3902 -#: wp-includes/class-wp-xmlrpc-server.php:3950 -#: wp-includes/class-wp-xmlrpc-server.php:5751 -msgid "You do not have permission to upload files." -msgstr "Je hebt geen toestemming om bestanden te uploaden." - -#: wp-activate.php:77 -msgid "Activation Key:" -msgstr "Activeringscode:" - -#: wp-activate.php:93 wp-activate.php:112 -msgid "Your account is now active!" -msgstr "Je account is nu actief." - -#: wp-includes/class-wp-editor.php:1347 -msgid "Y/m/d" -msgstr "j F Y" - -#: wp-activate.php:104 -msgid "An error occurred during the activation" -msgstr "Er is een fout opgetreden bij de activering" - -#: wp-activate.php:74 -msgid "Activation Key Required" -msgstr "Activeringscode verplicht" +msgid "Pickup in parcelshop" +msgstr "Ophalen in parcelshop" diff --git a/lang/pt_PT.mo b/lang/pt_PT.mo new file mode 100644 index 0000000000000000000000000000000000000000..31e3e5bafa33b1c4eafa3562e99f19dab4141b9b GIT binary patch literal 521 zcmY+A%}&EG49CmYrANe(gE;|0DQ&mI=(N*55E6(A6~qlpXSP6^bZLs<%rhYIP&@-q z!2{rKf`OG^>{yOv|35d^-#oT8W}9g<8_X%w*e$ceAhX51GOZQQduPAPd~n?4zu5Dc z+bZ8pzq$35%pYM&mcSXPNKx(pp+uXLs-~v&QZA@VkosTpTwKtTtfbLmfQ}M~!{|ta zM<&wXQgYl6^>fDT_o+Qw@lg>|7ZBdDlu|<`DF6Ymx7k6P1_B8DDAnN+p;+Qm9bjBu- z8X8LnaS#VBKegt8*A*w@<%k1%B4x^gM})n0&<>vW{q#H&eM{(;+xn+i@ea*wYSEc9 xdQ#(rL`GO7@cT}nbT?_{do1;=Ccs%O8!2(2Huppeb@8J)dVQnFAyDyG@NXR;lZOBR literal 0 HcmV?d00001 diff --git a/lang/pt_PT.po b/lang/pt_PT.po new file mode 100644 index 0000000..016081b --- /dev/null +++ b/lang/pt_PT.po @@ -0,0 +1,22 @@ +# Translation of Development (4.4.x) in Dutch +# This file is distributed under the same license as the Development (4.4.x) package. +msgid "" +msgstr "" +"PO-Revision-Date: 2019-09-18 13:03+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Poedit 2.2.3\n" +"Project-Id-Version: Development (4.4.x)\n" +"POT-Creation-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: pt_PT\n" + +#: wp-includes/rest-api/class-wp-rest-request.php:850 +msgid "Click here to select a parcelshop" +msgstr "Clique aqui para selecionar uma parcela" + +msgid "Pickup in parcelshop" +msgstr "Coleta em parcelshop" From 4c26a7c96a5fc3d6d5062270c01437ea1c6af5ba Mon Sep 17 00:00:00 2001 From: Timo Janssen Date: Wed, 18 Sep 2019 14:20:27 +0200 Subject: [PATCH 7/9] updated po&mo files, loaded text domain --- includes/checkout.php | 4 ++-- .../woocommerce-wuunder-de_DE.mo | Bin .../woocommerce-wuunder-de_DE.po | 3 ++- .../woocommerce-wuunder-es_ES.mo | Bin .../woocommerce-wuunder-es_ES.po | 3 ++- .../woocommerce-wuunder-fr_FR.mo | Bin .../woocommerce-wuunder-fr_FR.po | 3 ++- .../woocommerce-wuunder-nl_NL.mo | Bin .../woocommerce-wuunder-nl_NL.po | 3 ++- .../woocommerce-wuunder-pt_PT.mo | Bin .../woocommerce-wuunder-pt_PT.po | 3 ++- woocommerce-wuunder.php | 7 +++++-- 12 files changed, 17 insertions(+), 9 deletions(-) rename lang/de_DE.mo => languages/woocommerce-wuunder-de_DE.mo (100%) rename lang/de_DE.po => languages/woocommerce-wuunder-de_DE.po (92%) rename lang/es_ES.mo => languages/woocommerce-wuunder-es_ES.mo (100%) rename lang/es_ES.po => languages/woocommerce-wuunder-es_ES.po (92%) rename lang/fr_FR.mo => languages/woocommerce-wuunder-fr_FR.mo (100%) rename lang/fr_FR.po => languages/woocommerce-wuunder-fr_FR.po (92%) rename lang/nl_NL.mo => languages/woocommerce-wuunder-nl_NL.mo (100%) rename lang/nl_NL.po => languages/woocommerce-wuunder-nl_NL.po (92%) rename lang/pt_PT.mo => languages/woocommerce-wuunder-pt_PT.mo (100%) rename lang/pt_PT.po => languages/woocommerce-wuunder-pt_PT.po (92%) diff --git a/includes/checkout.php b/includes/checkout.php index fe88652..5ae51ca 100644 --- a/includes/checkout.php +++ b/includes/checkout.php @@ -42,8 +42,8 @@ function wcwp_parcelshop_html() $availableCarriers = implode(',', array_keys($defaultCarrierConfig)); } - $chooseParcelshopText = __('Click here to select a parcelshop'); - $chosenParcelshopText = __('Pickup in parcelshop'); + $chooseParcelshopText = __('Click here to select a parcelshop', 'woocommerce-wuunder'); + $chosenParcelshopText = __('Pickup in parcelshop', 'woocommerce-wuunder'); echo << diff --git a/lang/de_DE.mo b/languages/woocommerce-wuunder-de_DE.mo similarity index 100% rename from lang/de_DE.mo rename to languages/woocommerce-wuunder-de_DE.mo diff --git a/lang/de_DE.po b/languages/woocommerce-wuunder-de_DE.po similarity index 92% rename from lang/de_DE.po rename to languages/woocommerce-wuunder-de_DE.po index 3f9810f..e663c95 100644 --- a/lang/de_DE.po +++ b/languages/woocommerce-wuunder-de_DE.po @@ -14,9 +14,10 @@ msgstr "" "Language-Team: \n" "Language: de_DE\n" -#: wp-includes/rest-api/class-wp-rest-request.php:850 +#: includes/checkout.php:45 msgid "Click here to select a parcelshop" msgstr "Klicken Sie hier, um einen Paketshop auszuwählen" +#: includes/checkout.php:46 msgid "Pickup in parcelshop" msgstr "Abholung im Paketshop" \ No newline at end of file diff --git a/lang/es_ES.mo b/languages/woocommerce-wuunder-es_ES.mo similarity index 100% rename from lang/es_ES.mo rename to languages/woocommerce-wuunder-es_ES.mo diff --git a/lang/es_ES.po b/languages/woocommerce-wuunder-es_ES.po similarity index 92% rename from lang/es_ES.po rename to languages/woocommerce-wuunder-es_ES.po index a9f6fa5..ed02bf1 100644 --- a/lang/es_ES.po +++ b/languages/woocommerce-wuunder-es_ES.po @@ -14,9 +14,10 @@ msgstr "" "Language-Team: \n" "Language: es_ES\n" -#: wp-includes/rest-api/class-wp-rest-request.php:850 +#: includes/checkout.php:45 msgid "Click here to select a parcelshop" msgstr "Haga clic aquí para seleccionar una tienda de paquetería" +#: includes/checkout.php:46 msgid "Pickup in parcelshop" msgstr "Recogida en parcelshop" \ No newline at end of file diff --git a/lang/fr_FR.mo b/languages/woocommerce-wuunder-fr_FR.mo similarity index 100% rename from lang/fr_FR.mo rename to languages/woocommerce-wuunder-fr_FR.mo diff --git a/lang/fr_FR.po b/languages/woocommerce-wuunder-fr_FR.po similarity index 92% rename from lang/fr_FR.po rename to languages/woocommerce-wuunder-fr_FR.po index 29ee324..a15a460 100644 --- a/lang/fr_FR.po +++ b/languages/woocommerce-wuunder-fr_FR.po @@ -14,9 +14,10 @@ msgstr "" "Language-Team: \n" "Language: fr_FR\n" -#: wp-includes/rest-api/class-wp-rest-request.php:850 +#: includes/checkout.php:45 msgid "Click here to select a parcelshop" msgstr "Cliquez ici pour sélectionner un colis" +#: includes/checkout.php:46 msgid "Pickup in parcelshop" msgstr "Ramassage en colis" \ No newline at end of file diff --git a/lang/nl_NL.mo b/languages/woocommerce-wuunder-nl_NL.mo similarity index 100% rename from lang/nl_NL.mo rename to languages/woocommerce-wuunder-nl_NL.mo diff --git a/lang/nl_NL.po b/languages/woocommerce-wuunder-nl_NL.po similarity index 92% rename from lang/nl_NL.po rename to languages/woocommerce-wuunder-nl_NL.po index 537379f..e1d7360 100644 --- a/lang/nl_NL.po +++ b/languages/woocommerce-wuunder-nl_NL.po @@ -14,9 +14,10 @@ msgstr "" "Language-Team: \n" "Language: nl_NL\n" - +#: includes/checkout.php:45 msgid "Click here to select a parcelshop" msgstr "Klik hier om een parcelshop te kiezen" +#: includes/checkout.php:46 msgid "Pickup in parcelshop" msgstr "Ophalen in parcelshop" diff --git a/lang/pt_PT.mo b/languages/woocommerce-wuunder-pt_PT.mo similarity index 100% rename from lang/pt_PT.mo rename to languages/woocommerce-wuunder-pt_PT.mo diff --git a/lang/pt_PT.po b/languages/woocommerce-wuunder-pt_PT.po similarity index 92% rename from lang/pt_PT.po rename to languages/woocommerce-wuunder-pt_PT.po index 016081b..91faeda 100644 --- a/lang/pt_PT.po +++ b/languages/woocommerce-wuunder-pt_PT.po @@ -14,9 +14,10 @@ msgstr "" "Language-Team: \n" "Language: pt_PT\n" -#: wp-includes/rest-api/class-wp-rest-request.php:850 +#: includes/checkout.php:45 msgid "Click here to select a parcelshop" msgstr "Clique aqui para selecionar uma parcela" +#: includes/checkout.php:46 msgid "Pickup in parcelshop" msgstr "Coleta em parcelshop" diff --git a/woocommerce-wuunder.php b/woocommerce-wuunder.php index b5c7592..95a9de2 100644 --- a/woocommerce-wuunder.php +++ b/woocommerce-wuunder.php @@ -89,11 +89,14 @@ public function __construct() { if ( version_compare( WC_VERSION, '3.7', '>=' )) { add_action( 'wp_loaded', array(WC_Wuunder_Settings::class, 'wcwp_save_action_for_update_settings' ) ); } -// add_action('load-edit.php', array( &$this, 'webhook' ) ); + add_action('plugins_loaded', array( &$this, 'wcwp_load_textdomain' ) ); } public function wcwp_load_textdomain() { - load_plugin_textdomain( 'woocommerce-wuunder', false, WCWP_PLUGIN_DIR . '/lang/' ); + $plugin_rel_path = basename( dirname( __FILE__ ) ) . '/languages/'; /* Relative to WP_PLUGIN_DIR */ + + $domain = 'woocommerce-wuunder'; + load_plugin_textdomain( $domain, FALSE, basename( dirname( __FILE__ ) ) . '/languages/' ); } public function wcwp_add_admin_styles_scripts() { From 8346891073d2c464ec7acb494aba08da467c377a Mon Sep 17 00:00:00 2001 From: Timo Janssen Date: Thu, 19 Sep 2019 10:38:00 +0200 Subject: [PATCH 8/9] versioning --- includes/wcwuunder-create.php | 2 +- woocommerce-wuunder.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/wcwuunder-create.php b/includes/wcwuunder-create.php index 7d96324..f08748e 100644 --- a/includes/wcwuunder-create.php +++ b/includes/wcwuunder-create.php @@ -12,7 +12,7 @@ public function __construct() { $this->version_obj = array( 'product' => 'Woocommerce extension', 'version' => array( - 'build' => '2.7.1', + 'build' => '2.7.2', 'plugin' => '2.0' ), 'platform' => array( 'name' => 'Woocommerce', diff --git a/woocommerce-wuunder.php b/woocommerce-wuunder.php index 95a9de2..1743921 100644 --- a/woocommerce-wuunder.php +++ b/woocommerce-wuunder.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Wuunder * Plugin URI: https://wearewuunder.com/wuunder-voor-webshops/ * Description: Wuunder shipping plugin - * Version: 2.7.1 + * Version: 2.7.2 * Author: Wuunder * Author URI: http://wearewuunder.com */ @@ -57,7 +57,7 @@ class Woocommerce_Wuunder { public static $plugin_path; public static $plugin_basename; - const VERSION = '2.7.1'; + const VERSION = '2.7.2'; public function __construct() { From 8780a423f538d677ae05c2e47b8cea3aa6d1ce46 Mon Sep 17 00:00:00 2001 From: Timo Janssen Date: Thu, 19 Sep 2019 10:41:03 +0200 Subject: [PATCH 9/9] upd changelog --- CHANGELOG.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e1a62e..8ed9e62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,18 +6,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). ## Un-released -### Fix - -- Code styling and typo fixes +## Released -## 2019-08-20 +## [2.7.2](https://github.com/kabisa/wuunder-webshopplugin-woocommerce/tag/2.7.2) - 2019-09-19 ### Fix +- Code styling and typo fixes - Checkout validation parcelshop locator bugfixed [@timoj](https://github.com/timoj) [WWE-97](https://wuunder.atlassian.net/secure/RapidBoard.jspa?rapidView=6&projectKey=WWE&modal=detail&selectedIssue=WWE-97) - Code styling [@timoj](https://github.com/timoj) [WWE-97](https://wuunder.atlassian.net/secure/RapidBoard.jspa?rapidView=6&projectKey=WWE&modal=detail&selectedIssue=WWE-97) -## Released +### Added + +- Translations checkout text parcelshop locator text [WWE-97](https://wuunder.atlassian.net/secure/RapidBoard.jspa?rapidView=6&projectKey=WWE&modal=detail&selectedIssue=WWE-97) + ## [2.7.0](https://github.com/kabisa/wuunder-webshopplugin-woocommerce/tag/2.7.0) - 2019-04-01