BuddyPress - Version 2.9.4

Version Description

See: https://codex.buddypress.org/releases/version-2-9-4/

=

Download this release

Release Info

Developer DJPaul
Plugin Icon 128x128 BuddyPress
Version 2.9.4
Comparing to
See all releases

Code changes from version 2.9.3 to 2.9.4

bp-core/bp-core-attachments.php CHANGED
@@ -265,7 +265,7 @@ function bp_attachments_create_item_type( $type = 'avatar', $args = array() ) {
265
  }
266
 
267
  // Make sure the file path is safe.
268
- if ( 0 !== validate_file( $r['image'] ) ) {
269
  return false;
270
  }
271
 
@@ -447,7 +447,7 @@ function bp_attachments_get_attachment( $data = 'url', $args = array() ) {
447
  $type_subdir = $r['object_dir'] . '/' . $r['item_id'] . '/' . $r['type'];
448
  $type_dir = trailingslashit( $bp_attachments_uploads_dir['basedir'] ) . $type_subdir;
449
 
450
- if ( 0 !== validate_file( $type_dir ) || ! is_dir( $type_dir ) ) {
451
  return $attachment_data;
452
  }
453
 
@@ -1314,7 +1314,7 @@ function bp_attachments_cover_image_ajax_upload() {
1314
  $cover_subdir = $object_data['dir'] . '/' . $bp_params['item_id'] . '/cover-image';
1315
  $cover_dir = trailingslashit( $bp_attachments_uploads_dir['basedir'] ) . $cover_subdir;
1316
 
1317
- if ( 0 !== validate_file( $cover_dir ) || ! is_dir( $cover_dir ) ) {
1318
  // Upload error response.
1319
  bp_attachments_json_response( false, $is_html4, array(
1320
  'type' => 'upload_error',
265
  }
266
 
267
  // Make sure the file path is safe.
268
+ if ( 1 === validate_file( $r['image'] ) ) {
269
  return false;
270
  }
271
 
447
  $type_subdir = $r['object_dir'] . '/' . $r['item_id'] . '/' . $r['type'];
448
  $type_dir = trailingslashit( $bp_attachments_uploads_dir['basedir'] ) . $type_subdir;
449
 
450
+ if ( 1 === validate_file( $type_dir ) || ! is_dir( $type_dir ) ) {
451
  return $attachment_data;
452
  }
453
 
1314
  $cover_subdir = $object_data['dir'] . '/' . $bp_params['item_id'] . '/cover-image';
1315
  $cover_dir = trailingslashit( $bp_attachments_uploads_dir['basedir'] ) . $cover_subdir;
1316
 
1317
+ if ( 1 === validate_file( $cover_dir ) || ! is_dir( $cover_dir ) ) {
1318
  // Upload error response.
1319
  bp_attachments_json_response( false, $is_html4, array(
1320
  'type' => 'upload_error',
bp-core/bp-core-filters.php CHANGED
@@ -1011,13 +1011,14 @@ function bp_email_set_default_headers( $headers, $property, $transform, $email )
1011
  if ( ! empty( $tokens['unsubscribe'] ) && $tokens['unsubscribe'] !== site_url( 'wp-login.php' ) ) {
1012
  $user = get_user_by( 'email', $tokens['recipient.email'] );
1013
 
1014
- $headers['List-Unsubscribe'] = sprintf(
1015
- '<%s>',
1016
- esc_url_raw( bp_email_get_unsubscribe_link( array(
1017
- 'user_id' => $user->ID,
1018
- 'notification_type' => $email->get( 'type' ),
1019
- ) ) )
1020
- );
 
1021
  }
1022
 
1023
  return $headers;
1011
  if ( ! empty( $tokens['unsubscribe'] ) && $tokens['unsubscribe'] !== site_url( 'wp-login.php' ) ) {
1012
  $user = get_user_by( 'email', $tokens['recipient.email'] );
1013
 
1014
+ $link = bp_email_get_unsubscribe_link( array(
1015
+ 'user_id' => $user->ID,
1016
+ 'notification_type' => $email->get( 'type' ),
1017
+ ) );
1018
+
1019
+ if ( ! empty( $link ) ) {
1020
+ $headers['List-Unsubscribe'] = sprintf( '<%s>', esc_url_raw( $link ) );
1021
+ }
1022
  }
1023
 
1024
  return $headers;
bp-core/css/buddybar-rtl.css CHANGED
@@ -100,7 +100,7 @@ body#bp-default #admin-bar-logo {
100
  padding: 0;
101
  float: right;
102
  position: relative;
103
- background: url(../images/admin-menu-arrow.gif) 88% 53% no-repeat;
104
  padding-left: 11px;
105
  }
106
 
100
  padding: 0;
101
  float: right;
102
  position: relative;
103
+ background: url(../images/admin-menu-arrow.gif) 12% 53% no-repeat;
104
  padding-left: 11px;
105
  }
106
 
bp-core/css/buddybar-rtl.min.css CHANGED
@@ -1 +1 @@
1
- body:not(.wp-admin){padding-top:25px!important}#wp-admin-bar{position:fixed;top:0;right:0;height:25px;font-size:11px;width:100%;z-index:9999}#wp-admin-bar .padder{position:relative;padding:0;width:100%;margin:0 auto;background:url(../images/60pc_black.png);height:25px}body#bp-default #wp-admin-bar .padder{max-width:1250px}#wp-admin-bar *{z-index:999}#wp-admin-bar div#admin-bar-logo{position:absolute;top:5px;right:10px}#wp-admin-bar a img{border:none}#wp-admin-bar li{list-style:none;margin:0;padding:0;line-height:1;text-align:right}#wp-admin-bar li a{padding:7px 15px;color:#eee;text-decoration:none;font-size:11px}#wp-admin-bar li.alt{border:none}#wp-admin-bar li.no-arrow a{padding-left:15px}#wp-admin-bar ul li ul li a span{display:none}#wp-admin-bar li.hover,#wp-admin-bar li:hover{position:static}#admin-bar-logo{float:right;font-weight:700;font-size:11px;padding:5px 8px;margin:0;text-decoration:none;color:#fff}body#bp-default #admin-bar-logo{padding:2px 8px}#wp-admin-bar ul{margin:0;list-style:none;line-height:1;cursor:pointer;height:auto;padding:0}#wp-admin-bar ul li{padding:0;float:right;position:relative;background:url(../images/admin-menu-arrow.gif) 88% 53% no-repeat;padding-left:11px}#wp-admin-bar ul li.no-arrow{background:0 0;padding-left:0}#wp-admin-bar ul li ul li{background-image:none}#wp-admin-bar ul li.align-right{position:absolute;left:0}#wp-admin-bar ul li a{display:block}#wp-admin-bar ul.main-nav li ul li.sfhover,#wp-admin-bar ul.main-nav li.sfhover,#wp-admin-bar ul.main-nav li:hover{background-color:#333}#wp-admin-bar ul li ul{position:absolute;width:185px;right:-999em;margin-right:0;background:#333;border:1px solid #222;-moz-box-shadow:0 4px 8px rgba(0,0,0,.1);-webkit-box-shadow:0 4px 8px rgba(0,0,0,.1);-moz-border-radius:3px;-webkit-border-radius:3px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0}#wp-admin-bar ul li>ul{border-top:none}#wp-admin-bar ul li ul a{color:#eee}#wp-admin-bar ul li ul li{float:right;width:174px;margin:0}#wp-admin-bar ul li ul li:hover a{color:#fff}#wp-admin-bar ul li div.admin-bar-clear{clear:both}#wp-admin-bar ul.main-nav li ul li.sfhover,#wp-admin-bar ul.main-nav li ul li:hover{background-color:#222}#wp-admin-bar ul li ul ul{margin:-25px 184px 0 0;-moz-border-radius:3px;-webkit-border-radius:3px}#wp-admin-bar ul li ul li:hover ul li a{color:#eee}#wp-admin-bar ul li ul li ul li:hover a{color:#fff}#wp-admin-bar ul li ul li.sfhover ul,#wp-admin-bar ul li ul li:hover ul,#wp-admin-bar ul li.sfhover ul,#wp-admin-bar ul li:hover ul{right:auto}#wp-admin-bar ul li.align-right:hover ul{left:0}#wp-admin-bar li.sfhover ul li ul,#wp-admin-bar ul li:hover ul ul{right:-999em}#wp-admin-bar img.avatar{float:right;margin-left:8px}#wp-admin-bar span.activity{display:block;margin-right:34px;padding:0}#wp-admin-bar ul.author-list li a{height:17px}#wp-admin-bar ul li#bp-adminbar-notifications-menu a span{padding:0 6px;margin-right:2px;background:#fff;color:#000;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}#wp-admin-bar-user-info img.avatar{height:64px;width:64px}
1
+ body:not(.wp-admin){padding-top:25px!important}#wp-admin-bar{position:fixed;top:0;right:0;height:25px;font-size:11px;width:100%;z-index:9999}#wp-admin-bar .padder{position:relative;padding:0;width:100%;margin:0 auto;background:url(../images/60pc_black.png);height:25px}body#bp-default #wp-admin-bar .padder{max-width:1250px}#wp-admin-bar *{z-index:999}#wp-admin-bar div#admin-bar-logo{position:absolute;top:5px;right:10px}#wp-admin-bar a img{border:none}#wp-admin-bar li{list-style:none;margin:0;padding:0;line-height:1;text-align:right}#wp-admin-bar li a{padding:7px 15px;color:#eee;text-decoration:none;font-size:11px}#wp-admin-bar li.alt{border:none}#wp-admin-bar li.no-arrow a{padding-left:15px}#wp-admin-bar ul li ul li a span{display:none}#wp-admin-bar li.hover,#wp-admin-bar li:hover{position:static}#admin-bar-logo{float:right;font-weight:700;font-size:11px;padding:5px 8px;margin:0;text-decoration:none;color:#fff}body#bp-default #admin-bar-logo{padding:2px 8px}#wp-admin-bar ul{margin:0;list-style:none;line-height:1;cursor:pointer;height:auto;padding:0}#wp-admin-bar ul li{padding:0;float:right;position:relative;background:url(../images/admin-menu-arrow.gif) 12% 53% no-repeat;padding-left:11px}#wp-admin-bar ul li.no-arrow{background:0 0;padding-left:0}#wp-admin-bar ul li ul li{background-image:none}#wp-admin-bar ul li.align-right{position:absolute;left:0}#wp-admin-bar ul li a{display:block}#wp-admin-bar ul.main-nav li ul li.sfhover,#wp-admin-bar ul.main-nav li.sfhover,#wp-admin-bar ul.main-nav li:hover{background-color:#333}#wp-admin-bar ul li ul{position:absolute;width:185px;right:-999em;margin-right:0;background:#333;border:1px solid #222;-moz-box-shadow:0 4px 8px rgba(0,0,0,.1);-webkit-box-shadow:0 4px 8px rgba(0,0,0,.1);-moz-border-radius:3px;-webkit-border-radius:3px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0}#wp-admin-bar ul li>ul{border-top:none}#wp-admin-bar ul li ul a{color:#eee}#wp-admin-bar ul li ul li{float:right;width:174px;margin:0}#wp-admin-bar ul li ul li:hover a{color:#fff}#wp-admin-bar ul li div.admin-bar-clear{clear:both}#wp-admin-bar ul.main-nav li ul li.sfhover,#wp-admin-bar ul.main-nav li ul li:hover{background-color:#222}#wp-admin-bar ul li ul ul{margin:-25px 184px 0 0;-moz-border-radius:3px;-webkit-border-radius:3px}#wp-admin-bar ul li ul li:hover ul li a{color:#eee}#wp-admin-bar ul li ul li ul li:hover a{color:#fff}#wp-admin-bar ul li ul li.sfhover ul,#wp-admin-bar ul li ul li:hover ul,#wp-admin-bar ul li.sfhover ul,#wp-admin-bar ul li:hover ul{right:auto}#wp-admin-bar ul li.align-right:hover ul{left:0}#wp-admin-bar li.sfhover ul li ul,#wp-admin-bar ul li:hover ul ul{right:-999em}#wp-admin-bar img.avatar{float:right;margin-left:8px}#wp-admin-bar span.activity{display:block;margin-right:34px;padding:0}#wp-admin-bar ul.author-list li a{height:17px}#wp-admin-bar ul li#bp-adminbar-notifications-menu a span{padding:0 6px;margin-right:2px;background:#fff;color:#000;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}#wp-admin-bar-user-info img.avatar{height:64px;width:64px}
bp-core/js/vendor/jquery.atwho.min.js CHANGED
@@ -1 +1 @@
1
- !function(t,e){"function"==typeof define&&define.amd?define(["jquery"],function(i){return t.returnExportsGlobal=e(i)}):"object"==typeof exports?module.exports=e(require("jquery")):e(jQuery)}(this,function(t){var e,i,n,r,o,s,a,h=[].slice;i=function(){function e(e){this.current_flag=null,this.controllers={},this.alias_maps={},this.$inputor=t(e),this.setIframe(),this.listen()}return e.prototype.createContainer=function(e){if(0===(this.$el=t("#atwho-container",e)).length)return t(e.body).append(this.$el=t("<div id='atwho-container'></div>"))},e.prototype.setIframe=function(t,e){var i;return null==e&&(e=!1),t?(this.window=t.contentWindow,this.document=t.contentDocument||this.window.document,this.iframe=t):(this.document=document,this.window=window,this.iframe=null),(this.iframeStandalone=e)?(null!=(i=this.$el)&&i.remove(),this.createContainer(this.document)):this.createContainer(document)},e.prototype.controller=function(t){var e,i,n,r;if(this.alias_maps[t])i=this.controllers[this.alias_maps[t]];else{r=this.controllers;for(n in r)if(e=r[n],n===t){i=e;break}}return i||this.controllers[this.current_flag]},e.prototype.set_context_for=function(t){return this.current_flag=t,this},e.prototype.reg=function(t,e){var i,r;return i=(r=this.controllers)[t]||(r[t]=new n(this,t)),e.alias&&(this.alias_maps[e.alias]=t),i.init(e),this},e.prototype.listen=function(){return this.$inputor.on("keyup.atwhoInner",function(t){return function(e){return t.on_keyup(e)}}(this)).on("keydown.atwhoInner",function(t){return function(e){return t.on_keydown(e)}}(this)).on("scroll.atwhoInner",function(t){return function(e){var i;return null!=(i=t.controller())?i.view.hide(e):void 0}}(this)).on("blur.atwhoInner",function(t){return function(e){var i;if(i=t.controller())return i.view.hide(e,i.get_opt("display_timeout"))}}(this)).on("click.atwhoInner",function(t){return function(e){return t.dispatch()}}(this))},e.prototype.shutdown=function(){var t,e;e=this.controllers;for(t in e)e[t].destroy(),delete this.controllers[t];return this.$inputor.off(".atwhoInner"),this.$el.remove()},e.prototype.dispatch=function(){return t.map(this.controllers,function(t){return function(e){var i;return(i=e.get_opt("delay"))?(clearTimeout(t.delayedCallback),t.delayedCallback=setTimeout(function(){if(e.look_up())return t.set_context_for(e.at)},i)):e.look_up()?t.set_context_for(e.at):void 0}}(this))},e.prototype.on_keyup=function(e){var i;switch(e.keyCode){case o.ESC:e.preventDefault(),null!=(i=this.controller())&&i.view.hide();break;case o.DOWN:case o.UP:case o.CTRL:t.noop();break;case o.P:case o.N:e.ctrlKey||this.dispatch();break;default:this.dispatch()}},e.prototype.on_keydown=function(e){var i,n;if((i=null!=(n=this.controller())?n.view:void 0)&&i.visible())switch(e.keyCode){case o.ESC:e.preventDefault(),i.hide(e);break;case o.UP:e.preventDefault(),i.prev();break;case o.DOWN:e.preventDefault(),i.next();break;case o.P:if(!e.ctrlKey)return;e.preventDefault(),i.prev();break;case o.N:if(!e.ctrlKey)return;e.preventDefault(),i.next();break;case o.TAB:case o.ENTER:if(!i.visible())return;e.preventDefault(),i.choose(e);break;default:t.noop()}},e}(),n=function(){function e(e,i){this.app=e,this.at=i,this.$inputor=this.app.$inputor,this.id=this.$inputor[0].id||this.uid(),this.setting=null,this.query=null,this.pos=0,this.cur_rect=null,this.range=null,0===(this.$el=t("#atwho-ground-"+this.id,this.app.$el)).length&&this.app.$el.append(this.$el=t("<div id='atwho-ground-"+this.id+"'></div>")),this.model=new s(this),this.view=new a(this)}return e.prototype.uid=function(){return(Math.random().toString(16)+"000000000").substr(2,8)+(new Date).getTime()},e.prototype.init=function(e){return this.setting=t.extend({},this.setting||t.fn.atwho.default,e),this.view.init(),this.model.reload(this.setting.data)},e.prototype.destroy=function(){return this.trigger("beforeDestroy"),this.model.destroy(),this.view.destroy(),this.$el.remove()},e.prototype.call_default=function(){var e,i,n;n=arguments[0],e=2<=arguments.length?h.call(arguments,1):[];try{return r[n].apply(this,e)}catch(e){return i=e,t.error(i+" Or maybe At.js doesn't have function "+n)}},e.prototype.trigger=function(t,e){var i,n;return null==e&&(e=[]),e.push(this),i=this.get_opt("alias"),n=i?t+"-"+i+".atwho":t+".atwho",this.$inputor.trigger(n,e)},e.prototype.callbacks=function(t){return this.get_opt("callbacks")[t]||r[t]},e.prototype.get_opt=function(t,e){try{return this.setting[t]}catch(t){return t,null}},e.prototype.content=function(){var t;if(this.$inputor.is("textarea, input"))return this.$inputor.val();if(t=this.mark_range())return(t.startContainer.textContent||"").slice(0,t.startOffset)},e.prototype.catch_query=function(){var t,e,i,n,r,o;return e=this.content(),t=this.$inputor.caret("pos",{iframe:this.app.iframe}),o=e.slice(0,t),n=this.callbacks("matcher").call(this,this.at,o,this.get_opt("start_with_space")),"string"==typeof n&&n.length<=this.get_opt("max_len",20)?(i=(r=t-n.length)+n.length,this.pos=r,n={text:n,head_pos:r,end_pos:i},this.trigger("matched",[this.at,n.text])):(n=null,this.view.hide()),this.query=n},e.prototype.rect=function(){var e,i,n;if(e=this.$inputor.caret("offset",this.pos-1,{iframe:this.app.iframe}))return this.app.iframe&&!this.app.iframeStandalone&&(i=t(this.app.iframe).offset(),e.left+=i.left,e.top+=i.top),this.$inputor.is("[contentEditable]")&&(e=this.cur_rect||(this.cur_rect=e)),n=this.app.document.selection?0:2,{left:e.left,top:e.top,bottom:e.top+e.height+n}},e.prototype.reset_rect=function(){if(this.$inputor.is("[contentEditable]"))return this.cur_rect=null},e.prototype.mark_range=function(){var t;if(this.$inputor.is("[contentEditable]"))return this.app.window.getSelection&&(t=this.app.window.getSelection()).rangeCount>0?this.range=t.getRangeAt(0):this.app.document.selection?this.ie8_range=this.app.document.selection.createRange():void 0},e.prototype.insert_content_for=function(e){var i,n,r;return n=e.data("value"),r=this.get_opt("insert_tpl"),this.$inputor.is("textarea, input")||!r?n:(i=t.extend({},e.data("item-data"),{"atwho-data-value":n,"atwho-at":this.at}),this.callbacks("tpl_eval").call(this,r,i))},e.prototype.insert=function(e,i){var n,r,o,s,a,h,l,u,c,p,f,d;if(n=this.$inputor,c=this.callbacks("inserting_wrapper").call(this,n,e,this.get_opt("suffix")),n.is("textarea, input"))u=""+(l=(h=n.val()).slice(0,Math.max(this.query.head_pos-this.at.length,0)))+c+h.slice(this.query.end_pos||0),n.val(u),n.caret("pos",l.length+c.length,{iframe:this.app.iframe});else if(s=this.range){for(o=s.startOffset-(this.query.end_pos-this.query.head_pos)-this.at.length,s.setStart(s.endContainer,Math.max(o,0)),s.setEnd(s.endContainer,s.endOffset),s.deleteContents(),p=0,f=(d=t(c,this.app.document)).length;p<f;p++)r=d[p],s.insertNode(r),s.setEndAfter(r),s.collapse(!1);(a=this.app.window.getSelection()).removeAllRanges(),a.addRange(s)}else(s=this.ie8_range)&&(s.moveStart("character",this.query.end_pos-this.query.head_pos-this.at.length),s.pasteHTML(c),s.collapse(!1),s.select());return n.is(":focus")||n.focus(),n.change()},e.prototype.render_view=function(t){var e;return e=this.get_opt("search_key"),t=this.callbacks("sorter").call(this,this.query.text,t.slice(0,1001),e),this.view.render(t.slice(0,this.get_opt("limit")))},e.prototype.look_up=function(){var e,i;if(e=this.catch_query())return i=function(t){return t&&t.length>0?this.render_view(t):this.view.hide()},this.model.query(e.text,t.proxy(i,this)),e},e}(),s=function(){function e(t){this.context=t,this.at=this.context.at,this.storage=this.context.$inputor}return e.prototype.destroy=function(){return this.storage.data(this.at,null)},e.prototype.saved=function(){return this.fetch()>0},e.prototype.query=function(t,e){var i,n,r;return i=this.fetch(),n=this.context.get_opt("search_key"),i=this.context.callbacks("filter").call(this.context,t,i,n)||[],r=this.context.callbacks("remote_filter"),i.length>0||!r&&0===i.length?e(i):r.call(this.context,t,e)},e.prototype.fetch=function(){return this.storage.data(this.at)||[]},e.prototype.save=function(t){return this.storage.data(this.at,this.context.callbacks("before_save").call(this.context,t||[]))},e.prototype.load=function(t){if(!this.saved()&&t)return this._load(t)},e.prototype.reload=function(t){return this._load(t)},e.prototype._load=function(e){return"string"==typeof e?t.ajax(e,{dataType:"json"}).done(function(t){return function(e){return t.save(e)}}(this)):this.save(e)},e}(),a=function(){function e(e){this.context=e,this.$el=t("<div class='atwho-view'><ul class='atwho-view-ul'></ul></div>"),this.timeout_id=null,this.context.$el.append(this.$el),this.bind_event()}return e.prototype.init=function(){var t;return t=this.context.get_opt("alias")||this.context.at.charCodeAt(0),this.$el.attr({id:"at-view-"+t})},e.prototype.destroy=function(){return this.$el.remove()},e.prototype.bind_event=function(){var e;return(e=this.$el.find("ul")).on("mouseenter.atwho-view","li",function(i){return e.find(".cur").removeClass("cur"),t(i.currentTarget).addClass("cur")}).on("click.atwho-view","li",function(i){return function(n){return e.find(".cur").removeClass("cur"),t(n.currentTarget).addClass("cur"),i.choose(n),n.preventDefault()}}(this))},e.prototype.visible=function(){return this.$el.is(":visible")},e.prototype.choose=function(t){var e,i;if((e=this.$el.find(".cur")).length&&(i=this.context.insert_content_for(e),this.context.insert(this.context.callbacks("before_insert").call(this.context,i,e),e),this.context.trigger("inserted",[e,t]),this.hide(t)),this.context.get_opt("hide_without_suffix"))return this.stop_showing=!0},e.prototype.reposition=function(e){var i,n,r,o;return o=this.context.app.iframeStandalone?this.context.app.window:window,e.bottom+this.$el.height()-t(o).scrollTop()>t(o).height()&&(e.bottom=e.top-this.$el.height()),e.left>(n=t(o).width()-this.$el.width()-5)&&(e.left=n),i={left:e.left,top:e.bottom},null!=(r=this.context.callbacks("before_reposition"))&&r.call(this.context,i),this.$el.offset(i),this.context.trigger("reposition",[i])},e.prototype.next=function(){var t,e;return t=this.$el.find(".cur").removeClass("cur"),(e=t.next()).length||(e=this.$el.find("li:first")),e.addClass("cur"),this.$el.animate({scrollTop:Math.max(0,t.innerHeight()*(e.index()+2)-this.$el.height())},150)},e.prototype.prev=function(){var t,e;return t=this.$el.find(".cur").removeClass("cur"),(e=t.prev()).length||(e=this.$el.find("li:last")),e.addClass("cur"),this.$el.animate({scrollTop:Math.max(0,t.innerHeight()*(e.index()+2)-this.$el.height())},150)},e.prototype.show=function(){var t;{if(!this.stop_showing)return this.context.mark_range(),this.visible()||(this.$el.show(),this.$el.scrollTop(0),this.context.trigger("shown")),(t=this.context.rect())?this.reposition(t):void 0;this.stop_showing=!1}},e.prototype.hide=function(t,e){var i;if(this.visible())return isNaN(e)?(this.context.reset_rect(),this.$el.hide(),this.context.trigger("hidden",[t])):(i=function(t){return function(){return t.hide()}}(this),clearTimeout(this.timeout_id),this.timeout_id=setTimeout(i,e))},e.prototype.render=function(e){var i,n,r,o,s,a,h;{if(t.isArray(e)&&e.length>0){for(this.$el.find("ul").empty(),n=this.$el.find("ul"),s=this.context.get_opt("tpl"),a=0,h=e.length;a<h;a++)r=e[a],r=t.extend({},r,{"atwho-at":this.context.at}),o=this.context.callbacks("tpl_eval").call(this.context,s,r),(i=t(this.context.callbacks("highlighter").call(this.context,o,this.context.query.text))).data("item-data",r),n.append(i);return this.show(),this.context.get_opt("highlight_first")?n.find("li:first").addClass("cur"):void 0}this.hide()}},e}(),o={DOWN:40,UP:38,ESC:27,TAB:9,ENTER:13,CTRL:17,P:80,N:78},r={before_save:function(e){var i,n,r,o;if(!t.isArray(e))return e;for(o=[],n=0,r=e.length;n<r;n++)i=e[n],t.isPlainObject(i)?o.push(i):o.push({name:i});return o},matcher:function(t,e,i){var n,r,o,s;return t=t.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"),i&&(t="(?:^|\\s)"+t),o=decodeURI("%C3%80"),s=decodeURI("%C3%BF"),r=new RegExp(t+"([A-Za-z"+o+"-"+s+"0-9_+-]*)$|"+t+"([^\\x00-\\xff]*)$","gi"),n=r.exec(e),n?n[2]||n[1]:null},filter:function(t,e,i){var n,r,o,s;for(s=[],r=0,o=e.length;r<o;r++)n=e[r],~new String(n[i]).toLowerCase().indexOf(t.toLowerCase())&&s.push(n);return s},remote_filter:null,sorter:function(t,e,i){var n,r,o,s;if(!t)return e;for(s=[],r=0,o=e.length;r<o;r++)(n=e[r]).atwho_order=new String(n[i]).toLowerCase().indexOf(t.toLowerCase()),n.atwho_order>-1&&s.push(n);return s.sort(function(t,e){return t.atwho_order-e.atwho_order})},tpl_eval:function(t,e){try{return t.replace(/\$\{([^\}]*)\}/g,function(t,i,n){return e[i]})}catch(t){return t,""}},highlighter:function(t,e){var i;return e?(i=new RegExp(">\\s*(\\w*?)("+e.replace("+","\\+")+")(\\w*)\\s*<","ig"),t.replace(i,function(t,e,i,n){return"> "+e+"<strong>"+i+"</strong>"+n+" <"})):t},before_insert:function(t,e){return t},inserting_wrapper:function(t,e,i){var n;return i=""===i?i:i||" ",t.is("textarea, input")?""+e+i:"true"===t.attr("contentEditable")?(i=" "===i?"&nbsp;":i,n=/firefox/i.test(navigator.userAgent)?"<span>"+e+i+"</span>":"<span contenteditable='false'>"+e+(i="<span contenteditable='false'>"+i+"</span>")+"</span>",this.app.document.selection&&(n="<span contenteditable='true'>"+e+"</span>"),n+"<span></span>"):void 0}},e={load:function(t,e){var i;if(i=this.controller(t))return i.model.load(e)},setIframe:function(t,e){return this.setIframe(t,e),null},run:function(){return this.dispatch()},destroy:function(){return this.shutdown(),this.$inputor.data("atwho",null)}},t.fn.atwho=function(n){var r,o;return o=arguments,r=null,this.filter('textarea, input, [contenteditable=""], [contenteditable=true]').each(function(){var s,a;return(a=(s=t(this)).data("atwho"))||s.data("atwho",a=new i(this)),"object"!=typeof n&&n?e[n]&&a?r=e[n].apply(a,Array.prototype.slice.call(o,1)):t.error("Method "+n+" does not exist on jQuery.caret"):a.reg(n.at,n)}),r||this},t.fn.atwho.default={at:void 0,alias:void 0,data:null,tpl:"<li data-value='${atwho-at}${name}'>${name}</li>",insert_tpl:"<span id='${id}'>${atwho-data-value}</span>",callbacks:r,search_key:"name",suffix:void 0,hide_without_suffix:!1,start_with_space:!0,highlight_first:!0,limit:5,max_len:20,display_timeout:300,delay:null}});
1
+ !function(t,e){"function"==typeof define&&define.amd?define(["jquery"],function(i){return t.returnExportsGlobal=e(i)}):"object"==typeof exports?module.exports=e(require("jquery")):e(jQuery)}(this,function(t){var e,i,n,r,o,s,a,h=[].slice;i=function(){function e(e){this.current_flag=null,this.controllers={},this.alias_maps={},this.$inputor=t(e),this.setIframe(),this.listen()}return e.prototype.createContainer=function(e){if(0===(this.$el=t("#atwho-container",e)).length)return t(e.body).append(this.$el=t("<div id='atwho-container'></div>"))},e.prototype.setIframe=function(t,e){var i;return null==e&&(e=!1),t?(this.window=t.contentWindow,this.document=t.contentDocument||this.window.document,this.iframe=t):(this.document=document,this.window=window,this.iframe=null),(this.iframeStandalone=e)?(null!=(i=this.$el)&&i.remove(),this.createContainer(this.document)):this.createContainer(document)},e.prototype.controller=function(t){var e,i,n,r;if(this.alias_maps[t])i=this.controllers[this.alias_maps[t]];else{r=this.controllers;for(n in r)if(e=r[n],n===t){i=e;break}}return i||this.controllers[this.current_flag]},e.prototype.set_context_for=function(t){return this.current_flag=t,this},e.prototype.reg=function(t,e){var i,r;return i=(r=this.controllers)[t]||(r[t]=new n(this,t)),e.alias&&(this.alias_maps[e.alias]=t),i.init(e),this},e.prototype.listen=function(){return this.$inputor.on("keyup.atwhoInner",function(t){return function(e){return t.on_keyup(e)}}(this)).on("keydown.atwhoInner",function(t){return function(e){return t.on_keydown(e)}}(this)).on("scroll.atwhoInner",function(t){return function(e){var i;return null!=(i=t.controller())?i.view.hide(e):void 0}}(this)).on("blur.atwhoInner",function(t){return function(e){var i;if(i=t.controller())return i.view.hide(e,i.get_opt("display_timeout"))}}(this)).on("click.atwhoInner",function(t){return function(e){return t.dispatch()}}(this))},e.prototype.shutdown=function(){var t,e;e=this.controllers;for(t in e)e[t].destroy(),delete this.controllers[t];return this.$inputor.off(".atwhoInner"),this.$el.remove()},e.prototype.dispatch=function(){return t.map(this.controllers,function(t){return function(e){var i;return(i=e.get_opt("delay"))?(clearTimeout(t.delayedCallback),t.delayedCallback=setTimeout(function(){if(e.look_up())return t.set_context_for(e.at)},i)):e.look_up()?t.set_context_for(e.at):void 0}}(this))},e.prototype.on_keyup=function(e){var i;switch(e.keyCode){case o.ESC:e.preventDefault(),null!=(i=this.controller())&&i.view.hide();break;case o.DOWN:case o.UP:case o.CTRL:t.noop();break;case o.P:case o.N:e.ctrlKey||this.dispatch();break;default:this.dispatch()}},e.prototype.on_keydown=function(e){var i,n;if((i=null!=(n=this.controller())?n.view:void 0)&&i.visible())switch(e.keyCode){case o.ESC:e.preventDefault(),i.hide(e);break;case o.UP:e.preventDefault(),i.prev();break;case o.DOWN:e.preventDefault(),i.next();break;case o.P:if(!e.ctrlKey)return;e.preventDefault(),i.prev();break;case o.N:if(!e.ctrlKey)return;e.preventDefault(),i.next();break;case o.TAB:case o.ENTER:if(!i.visible())return;e.preventDefault(),i.choose(e);break;default:t.noop()}},e}(),n=function(){function e(e,i){this.app=e,this.at=i,this.$inputor=this.app.$inputor,this.id=this.$inputor[0].id||this.uid(),this.setting=null,this.query=null,this.pos=0,this.cur_rect=null,this.range=null,0===(this.$el=t("#atwho-ground-"+this.id,this.app.$el)).length&&this.app.$el.append(this.$el=t("<div id='atwho-ground-"+this.id+"'></div>")),this.model=new s(this),this.view=new a(this)}return e.prototype.uid=function(){return(Math.random().toString(16)+"000000000").substr(2,8)+(new Date).getTime()},e.prototype.init=function(e){return this.setting=t.extend({},this.setting||t.fn.atwho.default,e),this.view.init(),this.model.reload(this.setting.data)},e.prototype.destroy=function(){return this.trigger("beforeDestroy"),this.model.destroy(),this.view.destroy(),this.$el.remove()},e.prototype.call_default=function(){var e,i,n;n=arguments[0],e=2<=arguments.length?h.call(arguments,1):[];try{return r[n].apply(this,e)}catch(e){return i=e,t.error(i+" Or maybe At.js doesn't have function "+n)}},e.prototype.trigger=function(t,e){var i,n;return null==e&&(e=[]),e.push(this),i=this.get_opt("alias"),n=i?t+"-"+i+".atwho":t+".atwho",this.$inputor.trigger(n,e)},e.prototype.callbacks=function(t){return this.get_opt("callbacks")[t]||r[t]},e.prototype.get_opt=function(t,e){try{return this.setting[t]}catch(t){return t,null}},e.prototype.content=function(){var t;if(this.$inputor.is("textarea, input"))return this.$inputor.val();if(t=this.mark_range())return(t.startContainer.textContent||"").slice(0,t.startOffset)},e.prototype.catch_query=function(){var t,e,i,n,r,o;return e=this.content(),t=this.$inputor.caret("pos",{iframe:this.app.iframe}),o=e.slice(0,t),"string"==typeof(n=this.callbacks("matcher").call(this,this.at,o,this.get_opt("start_with_space")))&&n.length<=this.get_opt("max_len",20)?(i=(r=t-n.length)+n.length,this.pos=r,n={text:n,head_pos:r,end_pos:i},this.trigger("matched",[this.at,n.text])):(n=null,this.view.hide()),this.query=n},e.prototype.rect=function(){var e,i,n;if(e=this.$inputor.caret("offset",this.pos-1,{iframe:this.app.iframe}))return this.app.iframe&&!this.app.iframeStandalone&&(i=t(this.app.iframe).offset(),e.left+=i.left,e.top+=i.top),this.$inputor.is("[contentEditable]")&&(e=this.cur_rect||(this.cur_rect=e)),n=this.app.document.selection?0:2,{left:e.left,top:e.top,bottom:e.top+e.height+n}},e.prototype.reset_rect=function(){if(this.$inputor.is("[contentEditable]"))return this.cur_rect=null},e.prototype.mark_range=function(){var t;if(this.$inputor.is("[contentEditable]"))return this.app.window.getSelection&&(t=this.app.window.getSelection()).rangeCount>0?this.range=t.getRangeAt(0):this.app.document.selection?this.ie8_range=this.app.document.selection.createRange():void 0},e.prototype.insert_content_for=function(e){var i,n,r;return n=e.data("value"),r=this.get_opt("insert_tpl"),this.$inputor.is("textarea, input")||!r?n:(i=t.extend({},e.data("item-data"),{"atwho-data-value":n,"atwho-at":this.at}),this.callbacks("tpl_eval").call(this,r,i))},e.prototype.insert=function(e,i){var n,r,o,s,a,h,l,u,c,p,f,d;if(n=this.$inputor,c=this.callbacks("inserting_wrapper").call(this,n,e,this.get_opt("suffix")),n.is("textarea, input"))u=""+(l=(h=n.val()).slice(0,Math.max(this.query.head_pos-this.at.length,0)))+c+h.slice(this.query.end_pos||0),n.val(u),n.caret("pos",l.length+c.length,{iframe:this.app.iframe});else if(s=this.range){for(o=s.startOffset-(this.query.end_pos-this.query.head_pos)-this.at.length,s.setStart(s.endContainer,Math.max(o,0)),s.setEnd(s.endContainer,s.endOffset),s.deleteContents(),p=0,f=(d=t(c,this.app.document)).length;p<f;p++)r=d[p],s.insertNode(r),s.setEndAfter(r),s.collapse(!1);(a=this.app.window.getSelection()).removeAllRanges(),a.addRange(s)}else(s=this.ie8_range)&&(s.moveStart("character",this.query.end_pos-this.query.head_pos-this.at.length),s.pasteHTML(c),s.collapse(!1),s.select());return n.is(":focus")||n.focus(),n.change()},e.prototype.render_view=function(t){var e;return e=this.get_opt("search_key"),t=this.callbacks("sorter").call(this,this.query.text,t.slice(0,1001),e),this.view.render(t.slice(0,this.get_opt("limit")))},e.prototype.look_up=function(){var e,i;if(e=this.catch_query())return i=function(t){return t&&t.length>0?this.render_view(t):this.view.hide()},this.model.query(e.text,t.proxy(i,this)),e},e}(),s=function(){function e(t){this.context=t,this.at=this.context.at,this.storage=this.context.$inputor}return e.prototype.destroy=function(){return this.storage.data(this.at,null)},e.prototype.saved=function(){return this.fetch()>0},e.prototype.query=function(t,e){var i,n,r;return i=this.fetch(),n=this.context.get_opt("search_key"),i=this.context.callbacks("filter").call(this.context,t,i,n)||[],r=this.context.callbacks("remote_filter"),i.length>0||!r&&0===i.length?e(i):r.call(this.context,t,e)},e.prototype.fetch=function(){return this.storage.data(this.at)||[]},e.prototype.save=function(t){return this.storage.data(this.at,this.context.callbacks("before_save").call(this.context,t||[]))},e.prototype.load=function(t){if(!this.saved()&&t)return this._load(t)},e.prototype.reload=function(t){return this._load(t)},e.prototype._load=function(e){return"string"==typeof e?t.ajax(e,{dataType:"json"}).done(function(t){return function(e){return t.save(e)}}(this)):this.save(e)},e}(),a=function(){function e(e){this.context=e,this.$el=t("<div class='atwho-view'><ul class='atwho-view-ul'></ul></div>"),this.timeout_id=null,this.context.$el.append(this.$el),this.bind_event()}return e.prototype.init=function(){var t;return t=this.context.get_opt("alias")||this.context.at.charCodeAt(0),this.$el.attr({id:"at-view-"+t})},e.prototype.destroy=function(){return this.$el.remove()},e.prototype.bind_event=function(){var e;return(e=this.$el.find("ul")).on("mouseenter.atwho-view","li",function(i){return e.find(".cur").removeClass("cur"),t(i.currentTarget).addClass("cur")}).on("click.atwho-view","li",function(i){return function(n){return e.find(".cur").removeClass("cur"),t(n.currentTarget).addClass("cur"),i.choose(n),n.preventDefault()}}(this))},e.prototype.visible=function(){return this.$el.is(":visible")},e.prototype.choose=function(t){var e,i;if((e=this.$el.find(".cur")).length&&(i=this.context.insert_content_for(e),this.context.insert(this.context.callbacks("before_insert").call(this.context,i,e),e),this.context.trigger("inserted",[e,t]),this.hide(t)),this.context.get_opt("hide_without_suffix"))return this.stop_showing=!0},e.prototype.reposition=function(e){var i,n,r,o;return o=this.context.app.iframeStandalone?this.context.app.window:window,e.bottom+this.$el.height()-t(o).scrollTop()>t(o).height()&&(e.bottom=e.top-this.$el.height()),e.left>(n=t(o).width()-this.$el.width()-5)&&(e.left=n),i={left:e.left,top:e.bottom},null!=(r=this.context.callbacks("before_reposition"))&&r.call(this.context,i),this.$el.offset(i),this.context.trigger("reposition",[i])},e.prototype.next=function(){var t,e;return t=this.$el.find(".cur").removeClass("cur"),(e=t.next()).length||(e=this.$el.find("li:first")),e.addClass("cur"),this.$el.animate({scrollTop:Math.max(0,t.innerHeight()*(e.index()+2)-this.$el.height())},150)},e.prototype.prev=function(){var t,e;return t=this.$el.find(".cur").removeClass("cur"),(e=t.prev()).length||(e=this.$el.find("li:last")),e.addClass("cur"),this.$el.animate({scrollTop:Math.max(0,t.innerHeight()*(e.index()+2)-this.$el.height())},150)},e.prototype.show=function(){var t;{if(!this.stop_showing)return this.context.mark_range(),this.visible()||(this.$el.show(),this.$el.scrollTop(0),this.context.trigger("shown")),(t=this.context.rect())?this.reposition(t):void 0;this.stop_showing=!1}},e.prototype.hide=function(t,e){var i;if(this.visible())return isNaN(e)?(this.context.reset_rect(),this.$el.hide(),this.context.trigger("hidden",[t])):(i=function(t){return function(){return t.hide()}}(this),clearTimeout(this.timeout_id),this.timeout_id=setTimeout(i,e))},e.prototype.render=function(e){var i,n,r,o,s,a,h;{if(t.isArray(e)&&e.length>0){for(this.$el.find("ul").empty(),n=this.$el.find("ul"),s=this.context.get_opt("tpl"),a=0,h=e.length;a<h;a++)r=e[a],r=t.extend({},r,{"atwho-at":this.context.at}),o=this.context.callbacks("tpl_eval").call(this.context,s,r),(i=t(this.context.callbacks("highlighter").call(this.context,o,this.context.query.text))).data("item-data",r),n.append(i);return this.show(),this.context.get_opt("highlight_first")?n.find("li:first").addClass("cur"):void 0}this.hide()}},e}(),o={DOWN:40,UP:38,ESC:27,TAB:9,ENTER:13,CTRL:17,P:80,N:78},r={before_save:function(e){var i,n,r,o;if(!t.isArray(e))return e;for(o=[],n=0,r=e.length;n<r;n++)i=e[n],t.isPlainObject(i)?o.push(i):o.push({name:i});return o},matcher:function(t,e,i){var n,r,o,s;return t=t.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"),i&&(t="(?:^|\\s)"+t),o=decodeURI("%C3%80"),s=decodeURI("%C3%BF"),r=new RegExp(t+"([A-Za-z"+o+"-"+s+"0-9_+-]*)$|"+t+"([^\\x00-\\xff]*)$","gi"),(n=r.exec(e))?n[2]||n[1]:null},filter:function(t,e,i){var n,r,o,s;for(s=[],r=0,o=e.length;r<o;r++)n=e[r],~new String(n[i]).toLowerCase().indexOf(t.toLowerCase())&&s.push(n);return s},remote_filter:null,sorter:function(t,e,i){var n,r,o,s;if(!t)return e;for(s=[],r=0,o=e.length;r<o;r++)(n=e[r]).atwho_order=new String(n[i]).toLowerCase().indexOf(t.toLowerCase()),n.atwho_order>-1&&s.push(n);return s.sort(function(t,e){return t.atwho_order-e.atwho_order})},tpl_eval:function(t,e){try{return t.replace(/\$\{([^\}]*)\}/g,function(t,i,n){return e[i]})}catch(t){return t,""}},highlighter:function(t,e){var i;return e?(i=new RegExp(">\\s*(\\w*?)("+e.replace("+","\\+")+")(\\w*)\\s*<","ig"),t.replace(i,function(t,e,i,n){return"> "+e+"<strong>"+i+"</strong>"+n+" <"})):t},before_insert:function(t,e){return t},inserting_wrapper:function(t,e,i){var n;return i=""===i?i:i||" ",t.is("textarea, input")?""+e+i:"true"===t.attr("contentEditable")?(i=" "===i?"&nbsp;":i,n=/firefox/i.test(navigator.userAgent)?"<span>"+e+i+"</span>":"<span contenteditable='false'>"+e+(i="<span contenteditable='false'>"+i+"</span>")+"</span>",this.app.document.selection&&(n="<span contenteditable='true'>"+e+"</span>"),n+"<span></span>"):void 0}},e={load:function(t,e){var i;if(i=this.controller(t))return i.model.load(e)},setIframe:function(t,e){return this.setIframe(t,e),null},run:function(){return this.dispatch()},destroy:function(){return this.shutdown(),this.$inputor.data("atwho",null)}},t.fn.atwho=function(n){var r,o;return o=arguments,r=null,this.filter('textarea, input, [contenteditable=""], [contenteditable=true]').each(function(){var s,a;return(a=(s=t(this)).data("atwho"))||s.data("atwho",a=new i(this)),"object"!=typeof n&&n?e[n]&&a?r=e[n].apply(a,Array.prototype.slice.call(o,1)):t.error("Method "+n+" does not exist on jQuery.caret"):a.reg(n.at,n)}),r||this},t.fn.atwho.default={at:void 0,alias:void 0,data:null,tpl:"<li data-value='${atwho-at}${name}'>${name}</li>",insert_tpl:"<span id='${id}'>${atwho-data-value}</span>",callbacks:r,search_key:"name",suffix:void 0,hide_without_suffix:!1,start_with_space:!0,highlight_first:!0,limit:5,max_len:20,display_timeout:300,delay:null}});
bp-core/js/vendor/jquery.caret.min.js CHANGED
@@ -1 +1 @@
1
- !function(t,e){"function"==typeof define&&define.amd?define(["jquery"],function(o){return t.returnExportsGlobal=e(o)}):"object"==typeof exports?module.exports=e(require("jquery")):e(jQuery)}(this,function(t){"use strict";var e,o,n,r,i,s,a,p,l;e=function(){function e(t){this.$inputor=t,this.domInputor=this.$inputor[0]}return e.prototype.setPos=function(t){return this.domInputor},e.prototype.getIEPosition=function(){return this.getPosition()},e.prototype.getPosition=function(){var t,e;return e=this.getOffset(),t=this.$inputor.offset(),e.left-=t.left,e.top-=t.top,e},e.prototype.getOldIEPos=function(){var t,e;return e=s.selection.createRange(),(t=s.body.createTextRange()).moveToElementText(this.domInputor),t.setEndPoint("EndToEnd",e),t.text.length},e.prototype.getPos=function(){var t,e,o;return(o=this.range())?((t=o.cloneRange()).selectNodeContents(this.domInputor),t.setEnd(o.endContainer,o.endOffset),e=t.toString().length,t.detach(),e):s.selection?this.getOldIEPos():void 0},e.prototype.getOldIEOffset=function(){var t,e;return(t=s.selection.createRange().duplicate()).moveStart("character",-1),e=t.getBoundingClientRect(),{height:e.bottom-e.top,left:e.left,top:e.top}},e.prototype.getOffset=function(e){var o,n,r,i,a;return p.getSelection&&(r=this.range())?(r.endOffset-1>0&&r.endContainer===!this.domInputor&&((o=r.cloneRange()).setStart(r.endContainer,r.endOffset-1),o.setEnd(r.endContainer,r.endOffset),n={height:(i=o.getBoundingClientRect()).height,left:i.left+i.width,top:i.top},o.detach()),n&&0!==(null!=n?n.height:void 0)||(o=r.cloneRange(),a=t(s.createTextNode("|")),o.insertNode(a[0]),o.selectNode(a[0]),n={height:(i=o.getBoundingClientRect()).height,left:i.left,top:i.top},a.remove(),o.detach())):s.selection&&(n=this.getOldIEOffset()),n&&(n.top+=t(p).scrollTop(),n.left+=t(p).scrollLeft()),n},e.prototype.range=function(){var t;if(p.getSelection)return t=p.getSelection(),t.rangeCount>0?t.getRangeAt(0):null},e}(),o=function(){function e(t){this.$inputor=t,this.domInputor=this.$inputor[0]}return e.prototype.getIEPos=function(){var t,e,o,n,r,i;return e=this.domInputor,r=s.selection.createRange(),n=0,r&&r.parentElement()===e&&(o=e.value.replace(/\r\n/g,"\n").length,(i=e.createTextRange()).moveToBookmark(r.getBookmark()),(t=e.createTextRange()).collapse(!1),n=i.compareEndPoints("StartToEnd",t)>-1?o:-i.moveStart("character",-o)),n},e.prototype.getPos=function(){return s.selection?this.getIEPos():this.domInputor.selectionStart},e.prototype.setPos=function(t){var e,o;return e=this.domInputor,s.selection?((o=e.createTextRange()).move("character",t),o.select()):e.setSelectionRange&&e.setSelectionRange(t,t),e},e.prototype.getIEOffset=function(t){var e,o,n,r;return o=this.domInputor.createTextRange(),t||(t=this.getPos()),o.move("character",t),n=o.boundingLeft,r=o.boundingTop,e=o.boundingHeight,{left:n,top:r,height:e}},e.prototype.getOffset=function(e){var o,n,r;return o=this.$inputor,s.selection?(n=this.getIEOffset(e),n.top+=t(p).scrollTop()+o.scrollTop(),n.left+=t(p).scrollLeft()+o.scrollLeft(),n):(n=o.offset(),r=this.getPosition(e),n={left:n.left+r.left-o.scrollLeft(),top:n.top+r.top-o.scrollTop(),height:r.height})},e.prototype.getPosition=function(t){var e,o,r,i,s,a;return e=this.$inputor,r=function(t){return t=t.replace(/<|>|`|"|&/g,"?").replace(/\r\n|\r|\n/g,"<br/>"),/firefox/i.test(navigator.userAgent)&&(t=t.replace(/\s/g,"&nbsp;")),t},void 0===t&&(t=this.getPos()),a=e.val().slice(0,t),o=e.val().slice(t),i="<span style='position: relative; display: inline;'>"+r(a)+"</span>",i+="<span id='caret' style='position: relative; display: inline;'>|</span>",i+="<span style='position: relative; display: inline;'>"+r(o)+"</span>",s=new n(e),s.create(i).rect()},e.prototype.getIEPosition=function(t){var e,o,n,r,i;return n=this.getIEOffset(t),o=this.$inputor.offset(),r=n.left-o.left,i=n.top-o.top,e=n.height,{left:r,top:i,height:e}},e}(),n=function(){function e(t){this.$inputor=t}return e.prototype.css_attr=["borderBottomWidth","borderLeftWidth","borderRightWidth","borderTopStyle","borderRightStyle","borderBottomStyle","borderLeftStyle","borderTopWidth","boxSizing","fontFamily","fontSize","fontWeight","height","letterSpacing","lineHeight","marginBottom","marginLeft","marginRight","marginTop","outlineWidth","overflow","overflowX","overflowY","paddingBottom","paddingLeft","paddingRight","paddingTop","textAlign","textOverflow","textTransform","whiteSpace","wordBreak","wordWrap"],e.prototype.mirrorCss=function(){var e,o=this;return e={position:"absolute",left:-9999,top:0,zIndex:-2e4},"TEXTAREA"===this.$inputor.prop("tagName")&&this.css_attr.push("width"),t.each(this.css_attr,function(t,n){return e[n]=o.$inputor.css(n)}),e},e.prototype.create=function(e){return this.$mirror=t("<div></div>"),this.$mirror.css(this.mirrorCss()),this.$mirror.html(e),this.$inputor.after(this.$mirror),this},e.prototype.rect=function(){var t,e,o;return t=this.$mirror.find("#caret"),e=t.position(),o={left:e.left,top:e.top,height:t.height()},this.$mirror.remove(),o},e}(),r={contentEditable:function(t){return!(!t[0].contentEditable||"true"!==t[0].contentEditable)}},i={pos:function(t){return t||0===t?this.setPos(t):this.getPos()},position:function(t){return s.selection?this.getIEPosition(t):this.getPosition(t)},offset:function(t){return this.getOffset(t)}},s=null,p=null,a=null,l=function(t){var e;return(e=null!=t?t.iframe:void 0)?(a=e,p=e.contentWindow,s=e.contentDocument||p.document):(a=void 0,p=window,s=document)},t.fn.caret=function(n,s,a){var p;return i[n]?(t.isPlainObject(s)?(l(s),s=void 0):l(a),p=r.contentEditable(this)?new e(this):new o(this),i[n].apply(p,[s])):t.error("Method "+n+" does not exist on jQuery.caret")},t.fn.caret.EditableCaret=e,t.fn.caret.InputCaret=o,t.fn.caret.Utils=r,t.fn.caret.apis=i});
1
+ !function(t,e){"function"==typeof define&&define.amd?define(["jquery"],function(o){return t.returnExportsGlobal=e(o)}):"object"==typeof exports?module.exports=e(require("jquery")):e(jQuery)}(this,function(t){"use strict";var e,o,n,r,i,s,a,p,l;e=function(){function e(t){this.$inputor=t,this.domInputor=this.$inputor[0]}return e.prototype.setPos=function(t){return this.domInputor},e.prototype.getIEPosition=function(){return this.getPosition()},e.prototype.getPosition=function(){var t,e;return e=this.getOffset(),t=this.$inputor.offset(),e.left-=t.left,e.top-=t.top,e},e.prototype.getOldIEPos=function(){var t,e;return e=s.selection.createRange(),(t=s.body.createTextRange()).moveToElementText(this.domInputor),t.setEndPoint("EndToEnd",e),t.text.length},e.prototype.getPos=function(){var t,e,o;return(o=this.range())?((t=o.cloneRange()).selectNodeContents(this.domInputor),t.setEnd(o.endContainer,o.endOffset),e=t.toString().length,t.detach(),e):s.selection?this.getOldIEPos():void 0},e.prototype.getOldIEOffset=function(){var t,e;return(t=s.selection.createRange().duplicate()).moveStart("character",-1),e=t.getBoundingClientRect(),{height:e.bottom-e.top,left:e.left,top:e.top}},e.prototype.getOffset=function(e){var o,n,r,i,a;return p.getSelection&&(r=this.range())?(r.endOffset-1>0&&r.endContainer===!this.domInputor&&((o=r.cloneRange()).setStart(r.endContainer,r.endOffset-1),o.setEnd(r.endContainer,r.endOffset),n={height:(i=o.getBoundingClientRect()).height,left:i.left+i.width,top:i.top},o.detach()),n&&0!==(null!=n?n.height:void 0)||(o=r.cloneRange(),a=t(s.createTextNode("|")),o.insertNode(a[0]),o.selectNode(a[0]),n={height:(i=o.getBoundingClientRect()).height,left:i.left,top:i.top},a.remove(),o.detach())):s.selection&&(n=this.getOldIEOffset()),n&&(n.top+=t(p).scrollTop(),n.left+=t(p).scrollLeft()),n},e.prototype.range=function(){var t;if(p.getSelection)return(t=p.getSelection()).rangeCount>0?t.getRangeAt(0):null},e}(),o=function(){function e(t){this.$inputor=t,this.domInputor=this.$inputor[0]}return e.prototype.getIEPos=function(){var t,e,o,n,r,i;return e=this.domInputor,r=s.selection.createRange(),n=0,r&&r.parentElement()===e&&(o=e.value.replace(/\r\n/g,"\n").length,(i=e.createTextRange()).moveToBookmark(r.getBookmark()),(t=e.createTextRange()).collapse(!1),n=i.compareEndPoints("StartToEnd",t)>-1?o:-i.moveStart("character",-o)),n},e.prototype.getPos=function(){return s.selection?this.getIEPos():this.domInputor.selectionStart},e.prototype.setPos=function(t){var e,o;return e=this.domInputor,s.selection?((o=e.createTextRange()).move("character",t),o.select()):e.setSelectionRange&&e.setSelectionRange(t,t),e},e.prototype.getIEOffset=function(t){var e,o,n,r;return o=this.domInputor.createTextRange(),t||(t=this.getPos()),o.move("character",t),n=o.boundingLeft,r=o.boundingTop,e=o.boundingHeight,{left:n,top:r,height:e}},e.prototype.getOffset=function(e){var o,n,r;return o=this.$inputor,s.selection?(n=this.getIEOffset(e),n.top+=t(p).scrollTop()+o.scrollTop(),n.left+=t(p).scrollLeft()+o.scrollLeft(),n):(n=o.offset(),r=this.getPosition(e),n={left:n.left+r.left-o.scrollLeft(),top:n.top+r.top-o.scrollTop(),height:r.height})},e.prototype.getPosition=function(t){var e,o,r,i,s,a;return e=this.$inputor,r=function(t){return t=t.replace(/<|>|`|"|&/g,"?").replace(/\r\n|\r|\n/g,"<br/>"),/firefox/i.test(navigator.userAgent)&&(t=t.replace(/\s/g,"&nbsp;")),t},void 0===t&&(t=this.getPos()),a=e.val().slice(0,t),o=e.val().slice(t),i="<span style='position: relative; display: inline;'>"+r(a)+"</span>",i+="<span id='caret' style='position: relative; display: inline;'>|</span>",i+="<span style='position: relative; display: inline;'>"+r(o)+"</span>",s=new n(e),s.create(i).rect()},e.prototype.getIEPosition=function(t){var e,o,n,r,i;return n=this.getIEOffset(t),o=this.$inputor.offset(),r=n.left-o.left,i=n.top-o.top,e=n.height,{left:r,top:i,height:e}},e}(),n=function(){function e(t){this.$inputor=t}return e.prototype.css_attr=["borderBottomWidth","borderLeftWidth","borderRightWidth","borderTopStyle","borderRightStyle","borderBottomStyle","borderLeftStyle","borderTopWidth","boxSizing","fontFamily","fontSize","fontWeight","height","letterSpacing","lineHeight","marginBottom","marginLeft","marginRight","marginTop","outlineWidth","overflow","overflowX","overflowY","paddingBottom","paddingLeft","paddingRight","paddingTop","textAlign","textOverflow","textTransform","whiteSpace","wordBreak","wordWrap"],e.prototype.mirrorCss=function(){var e,o=this;return e={position:"absolute",left:-9999,top:0,zIndex:-2e4},"TEXTAREA"===this.$inputor.prop("tagName")&&this.css_attr.push("width"),t.each(this.css_attr,function(t,n){return e[n]=o.$inputor.css(n)}),e},e.prototype.create=function(e){return this.$mirror=t("<div></div>"),this.$mirror.css(this.mirrorCss()),this.$mirror.html(e),this.$inputor.after(this.$mirror),this},e.prototype.rect=function(){var t,e,o;return t=this.$mirror.find("#caret"),e=t.position(),o={left:e.left,top:e.top,height:t.height()},this.$mirror.remove(),o},e}(),r={contentEditable:function(t){return!(!t[0].contentEditable||"true"!==t[0].contentEditable)}},i={pos:function(t){return t||0===t?this.setPos(t):this.getPos()},position:function(t){return s.selection?this.getIEPosition(t):this.getPosition(t)},offset:function(t){return this.getOffset(t)}},s=null,p=null,a=null,l=function(t){var e;return(e=null!=t?t.iframe:void 0)?(a=e,p=e.contentWindow,s=e.contentDocument||p.document):(a=void 0,p=window,s=document)},t.fn.caret=function(n,s,a){var p;return i[n]?(t.isPlainObject(s)?(l(s),s=void 0):l(a),p=r.contentEditable(this)?new e(this):new o(this),i[n].apply(p,[s])):t.error("Method "+n+" does not exist on jQuery.caret")},t.fn.caret.EditableCaret=e,t.fn.caret.InputCaret=o,t.fn.caret.Utils=r,t.fn.caret.apis=i});
bp-core/js/vendor/livestamp.min.js CHANGED
@@ -1 +1 @@
1
- !function(t,a){var e=1e3,i=!1,n=t([]),o=function(){s.resume()},r=function(e,i){var o=e.data("livestampdata");if("number"==typeof i&&(i*=1e3),e.removeAttr("data-livestamp").removeData("livestamp"),i=a(i),a.isMoment(i)&&!isNaN(+i)){var r=t.extend({},{original:e.contents()},o);r.moment=a(i),e.data("livestampdata",r).empty(),n.push(e[0])}},m=function(){i||(s.update(),setTimeout(m,e))},s={update:function(){t("[data-livestamp]").each(function(){var a=t(this);r(a,a.data("livestamp"))});var e=[];n.each(function(){var i=t(this),n=i.data("livestampdata");if(void 0===n)e.push(this);else if(a.isMoment(n.moment)){var o=i.html(),r=n.moment.fromNow();if(o!=r){var m=t.Event("change.livestamp");i.trigger(m,[o,r]),m.isDefaultPrevented()||i.html(r)}}}),n=n.not(e)},pause:function(){i=!0},resume:function(){i=!1,m()},interval:function(t){if(void 0===t)return e;e=t}},u={add:function(e,i){return"number"==typeof i&&(i*=1e3),i=a(i),a.isMoment(i)&&!isNaN(+i)&&(e.each(function(){r(t(this),i)}),s.update()),e},destroy:function(a){return n=n.not(a),a.each(function(){var e=t(this),i=e.data("livestampdata");if(void 0===i)return a;e.html(i.original?i.original:"").removeData("livestampdata")}),a},isLivestamp:function(t){return void 0!==t.data("livestampdata")}};t.livestamp=s,t(o),t.fn.livestamp=function(t,a){return u[t]||(a=t,t="add"),u[t](this,a)}}(jQuery,moment);
1
+ !function(t,a){var e=1e3,i=!1,n=t([]),o=function(e,i){var o=e.data("livestampdata");if("number"==typeof i&&(i*=1e3),e.removeAttr("data-livestamp").removeData("livestamp"),i=a(i),a.isMoment(i)&&!isNaN(+i)){var r=t.extend({},{original:e.contents()},o);r.moment=a(i),e.data("livestampdata",r).empty(),n.push(e[0])}},r=function(){i||(m.update(),setTimeout(r,e))},m={update:function(){t("[data-livestamp]").each(function(){var a=t(this);o(a,a.data("livestamp"))});var e=[];n.each(function(){var i=t(this),n=i.data("livestampdata");if(void 0===n)e.push(this);else if(a.isMoment(n.moment)){var o=i.html(),r=n.moment.fromNow();if(o!=r){var m=t.Event("change.livestamp");i.trigger(m,[o,r]),m.isDefaultPrevented()||i.html(r)}}}),n=n.not(e)},pause:function(){i=!0},resume:function(){i=!1,r()},interval:function(t){if(void 0===t)return e;e=t}},s={add:function(e,i){return"number"==typeof i&&(i*=1e3),i=a(i),a.isMoment(i)&&!isNaN(+i)&&(e.each(function(){o(t(this),i)}),m.update()),e},destroy:function(a){return n=n.not(a),a.each(function(){var e=t(this),i=e.data("livestampdata");if(void 0===i)return a;e.html(i.original?i.original:"").removeData("livestampdata")}),a},isLivestamp:function(t){return void 0!==t.data("livestampdata")}};t.livestamp=m,t(function(){m.resume()}),t.fn.livestamp=function(t,a){return s[t]||(a=t,t="add"),s[t](this,a)}}(jQuery,moment);
bp-core/js/vendor/moment-js/locale/br.min.js CHANGED
@@ -1 +1 @@
1
- !function(e,n){"object"==typeof exports&&"undefined"!=typeof module&&"function"==typeof require?n(require("../moment")):"function"==typeof define&&define.amd?define(["../moment"],n):n(e.moment)}(this,function(e){"use strict";function n(e,n,r){return e+" "+a({mm:"munutenn",MM:"miz",dd:"devezh"}[r],e)}function r(e){switch(t(e)){case 1:case 3:case 4:case 5:case 9:return e+" bloaz";default:return e+" vloaz"}}function t(e){return e>9?t(e%10):e}function a(e,n){return 2===n?u(e):e}function u(e){var n={m:"v",b:"v",d:"z"};return void 0===n[e.charAt(0)]?e:n[e.charAt(0)]+e.substring(1)}return e.defineLocale("br",{months:"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu".split("_"),monthsShort:"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker".split("_"),weekdays:"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn".split("_"),weekdaysShort:"Sul_Lun_Meu_Mer_Yao_Gwe_Sad".split("_"),weekdaysMin:"Su_Lu_Me_Mer_Ya_Gw_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h[e]mm A",LTS:"h[e]mm:ss A",L:"DD/MM/YYYY",LL:"D [a viz] MMMM YYYY",LLL:"D [a viz] MMMM YYYY h[e]mm A",LLLL:"dddd, D [a viz] MMMM YYYY h[e]mm A"},calendar:{sameDay:"[Hiziv da] LT",nextDay:"[Warc'hoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[Dec'h da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s 'zo",s:"un nebeud segondennoù",m:"ur vunutenn",mm:n,h:"un eur",hh:"%d eur",d:"un devezh",dd:n,M:"ur miz",MM:n,y:"ur bloaz",yy:r},ordinalParse:/\d{1,2}(añ|vet)/,ordinal:function(e){return e+(1===e?"añ":"vet")},week:{dow:1,doy:4}})});
1
+ !function(e,n){"object"==typeof exports&&"undefined"!=typeof module&&"function"==typeof require?n(require("../moment")):"function"==typeof define&&define.amd?define(["../moment"],n):n(e.moment)}(this,function(e){"use strict";function n(e,n,r){return e+" "+t({mm:"munutenn",MM:"miz",dd:"devezh"}[r],e)}function r(e){return e>9?r(e%10):e}function t(e,n){return 2===n?a(e):e}function a(e){var n={m:"v",b:"v",d:"z"};return void 0===n[e.charAt(0)]?e:n[e.charAt(0)]+e.substring(1)}return e.defineLocale("br",{months:"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu".split("_"),monthsShort:"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker".split("_"),weekdays:"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn".split("_"),weekdaysShort:"Sul_Lun_Meu_Mer_Yao_Gwe_Sad".split("_"),weekdaysMin:"Su_Lu_Me_Mer_Ya_Gw_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h[e]mm A",LTS:"h[e]mm:ss A",L:"DD/MM/YYYY",LL:"D [a viz] MMMM YYYY",LLL:"D [a viz] MMMM YYYY h[e]mm A",LLLL:"dddd, D [a viz] MMMM YYYY h[e]mm A"},calendar:{sameDay:"[Hiziv da] LT",nextDay:"[Warc'hoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[Dec'h da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s 'zo",s:"un nebeud segondennoù",m:"ur vunutenn",mm:n,h:"un eur",hh:"%d eur",d:"un devezh",dd:n,M:"ur miz",MM:n,y:"ur bloaz",yy:function(e){switch(r(e)){case 1:case 3:case 4:case 5:case 9:return e+" bloaz";default:return e+" vloaz"}}},ordinalParse:/\d{1,2}(añ|vet)/,ordinal:function(e){return e+(1===e?"añ":"vet")},week:{dow:1,doy:4}})});
bp-core/js/vendor/moment-js/locale/lb.min.js CHANGED
@@ -1 +1 @@
1
- !function(e,n){"object"==typeof exports&&"undefined"!=typeof module&&"function"==typeof require?n(require("../moment")):"function"==typeof define&&define.amd?define(["../moment"],n):n(e.moment)}(this,function(e){"use strict";function n(e,n,t,r){var u={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return n?u[t][0]:u[t][1]}function t(e){return u(e.substr(0,e.indexOf(" ")))?"a "+e:"an "+e}function r(e){return u(e.substr(0,e.indexOf(" ")))?"viru "+e:"virun "+e}function u(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var n=e%10,t=e/10;return u(0===n?t:n)}if(e<1e4){for(;e>=10;)e/=10;return u(e)}return e/=1e3,u(e)}return e.defineLocale("lb",{months:"Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._Mé._Dë._Më._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mé_Dë_Më_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[Gëschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:t,past:r,s:"e puer Sekonnen",m:n,mm:"%d Minutten",h:n,hh:"%d Stonnen",d:n,dd:"%d Deeg",M:n,MM:"%d Méint",y:n,yy:"%d Joer"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})});
1
+ !function(e,n){"object"==typeof exports&&"undefined"!=typeof module&&"function"==typeof require?n(require("../moment")):"function"==typeof define&&define.amd?define(["../moment"],n):n(e.moment)}(this,function(e){"use strict";function n(e,n,t,r){var u={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return n?u[t][0]:u[t][1]}function t(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var n=e%10,r=e/10;return t(0===n?r:n)}if(e<1e4){for(;e>=10;)e/=10;return t(e)}return e/=1e3,t(e)}return e.defineLocale("lb",{months:"Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._Mé._Dë._Më._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mé_Dë_Më_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[Gëschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:function(e){return t(e.substr(0,e.indexOf(" ")))?"a "+e:"an "+e},past:function(e){return t(e.substr(0,e.indexOf(" ")))?"viru "+e:"virun "+e},s:"e puer Sekonnen",m:n,mm:"%d Minutten",h:n,hh:"%d Stonnen",d:n,dd:"%d Deeg",M:n,MM:"%d Méint",y:n,yy:"%d Joer"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})});
bp-core/js/vendor/moment-js/locale/lt.min.js CHANGED
@@ -1 +1 @@
1
- !function(e,i){"object"==typeof exports&&"undefined"!=typeof module&&"function"==typeof require?i(require("../moment")):"function"==typeof define&&define.amd?define(["../moment"],i):i(e.moment)}(this,function(e){"use strict";function i(e,i,n,a){return i?"kelios sekundės":a?"kelių sekundžių":"kelias sekundes"}function n(e,i,n,a){return i?s(n)[0]:a?s(n)[1]:s(n)[2]}function a(e){return e%10==0||e>10&&e<20}function s(e){return t[e].split("_")}function d(e,i,d,t){var _=e+" ";return 1===e?_+n(e,i,d[0],t):i?_+(a(e)?s(d)[1]:s(d)[0]):t?_+s(d)[1]:_+(a(e)?s(d)[1]:s(d)[2])}var t={m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesį",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"};return e.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?|MMMM?(\[[^\[\]]*\]|\s+)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Šeš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Š".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Šiandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Praėjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:i,m:n,mm:d,h:n,hh:d,d:n,dd:d,M:n,MM:d,y:n,yy:d},ordinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}})});
1
+ !function(e,i){"object"==typeof exports&&"undefined"!=typeof module&&"function"==typeof require?i(require("../moment")):"function"==typeof define&&define.amd?define(["../moment"],i):i(e.moment)}(this,function(e){"use strict";function i(e,i,n,s){return i?a(n)[0]:s?a(n)[1]:a(n)[2]}function n(e){return e%10==0||e>10&&e<20}function a(e){return d[e].split("_")}function s(e,s,d,t){var _=e+" ";return 1===e?_+i(e,s,d[0],t):s?_+(n(e)?a(d)[1]:a(d)[0]):t?_+a(d)[1]:_+(n(e)?a(d)[1]:a(d)[2])}var d={m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesį",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"};return e.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?|MMMM?(\[[^\[\]]*\]|\s+)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Šeš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Š".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Šiandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Praėjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:function(e,i,n,a){return i?"kelios sekundės":a?"kelių sekundžių":"kelias sekundes"},m:i,mm:s,h:i,hh:s,d:i,dd:s,M:i,MM:s,y:i,yy:s},ordinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}})});
bp-core/js/vendor/moment-js/locale/lv.min.js CHANGED
@@ -1 +1 @@
1
- !function(e,n){"object"==typeof exports&&"undefined"!=typeof module&&"function"==typeof require?n(require("../moment")):"function"==typeof define&&define.amd?define(["../moment"],n):n(e.moment)}(this,function(e){"use strict";function n(e,n,s){return s?n%10==1&&n%100!=11?e[2]:e[3]:n%10==1&&n%100!=11?e[0]:e[1]}function s(e,s,t){return e+" "+n(_[t],e,s)}function t(e,s,t){return n(_[t],e,s)}function i(e,n){return n?"dažas sekundes":"dažām sekundēm"}var _={m:"minūtes_minūtēm_minūte_minūtes".split("_"),mm:"minūtes_minūtēm_minūte_minūtes".split("_"),h:"stundas_stundām_stunda_stundas".split("_"),hh:"stundas_stundām_stunda_stundas".split("_"),d:"dienas_dienām_diena_dienas".split("_"),dd:"dienas_dienām_diena_dienas".split("_"),M:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),MM:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")};return e.defineLocale("lv",{months:"janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec".split("_"),weekdays:"svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[Šodien pulksten] LT",nextDay:"[Rīt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[Pagājušā] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"pēc %s",past:"pirms %s",s:i,m:t,mm:s,h:t,hh:s,d:t,dd:s,M:t,MM:s,y:t,yy:s},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})});
1
+ !function(e,n){"object"==typeof exports&&"undefined"!=typeof module&&"function"==typeof require?n(require("../moment")):"function"==typeof define&&define.amd?define(["../moment"],n):n(e.moment)}(this,function(e){"use strict";function n(e,n,s){return s?n%10==1&&n%100!=11?e[2]:e[3]:n%10==1&&n%100!=11?e[0]:e[1]}function s(e,s,t){return e+" "+n(i[t],e,s)}function t(e,s,t){return n(i[t],e,s)}var i={m:"minūtes_minūtēm_minūte_minūtes".split("_"),mm:"minūtes_minūtēm_minūte_minūtes".split("_"),h:"stundas_stundām_stunda_stundas".split("_"),hh:"stundas_stundām_stunda_stundas".split("_"),d:"dienas_dienām_diena_dienas".split("_"),dd:"dienas_dienām_diena_dienas".split("_"),M:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),MM:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")};return e.defineLocale("lv",{months:"janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec".split("_"),weekdays:"svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[Šodien pulksten] LT",nextDay:"[Rīt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[Pagājušā] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"pēc %s",past:"pirms %s",s:function(e,n){return n?"dažas sekundes":"dažām sekundēm"},m:t,mm:s,h:t,hh:s,d:t,dd:s,M:t,MM:s,y:t,yy:s},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})});
bp-core/js/vendor/moment-js/locale/tlh.min.js CHANGED
@@ -1 +1 @@
1
- !function(a,e){"object"==typeof exports&&"undefined"!=typeof module&&"function"==typeof require?e(require("../moment")):"function"==typeof define&&define.amd?define(["../moment"],e):e(a.moment)}(this,function(a){"use strict";function e(a){var e=a;return e=-1!==a.indexOf("jaj")?e.slice(0,-3)+"leS":-1!==a.indexOf("jar")?e.slice(0,-3)+"waQ":-1!==a.indexOf("DIS")?e.slice(0,-3)+"nem":e+" pIq"}function j(a){var e=a;return e=-1!==a.indexOf("jaj")?e.slice(0,-3)+"Hu’":-1!==a.indexOf("jar")?e.slice(0,-3)+"wen":-1!==a.indexOf("DIS")?e.slice(0,-3)+"ben":e+" ret"}function r(a,e,j,r){var n=t(a);switch(j){case"mm":return n+" tup";case"hh":return n+" rep";case"dd":return n+" jaj";case"MM":return n+" jar";case"yy":return n+" DIS"}}function t(a){var e=Math.floor(a%1e3/100),j=Math.floor(a%100/10),r=a%10,t="";return e>0&&(t+=n[e]+"vatlh"),j>0&&(t+=(""!==t?" ":"")+n[j]+"maH"),r>0&&(t+=(""!==t?" ":"")+n[r]),""===t?"pagh":t}var n="pagh_wa’_cha’_wej_loS_vagh_jav_Soch_chorgh_Hut".split("_");return a.defineLocale("tlh",{months:"tera’ jar wa’_tera’ jar cha’_tera’ jar wej_tera’ jar loS_tera’ jar vagh_tera’ jar jav_tera’ jar Soch_tera’ jar chorgh_tera’ jar Hut_tera’ jar wa’maH_tera’ jar wa’maH wa’_tera’ jar wa’maH cha’".split("_"),monthsShort:"jar wa’_jar cha’_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa’maH_jar wa’maH wa’_jar wa’maH cha’".split("_"),monthsParseExact:!0,weekdays:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysShort:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysMin:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[DaHjaj] LT",nextDay:"[wa’leS] LT",nextWeek:"LLL",lastDay:"[wa’Hu’] LT",lastWeek:"LLL",sameElse:"L"},relativeTime:{future:e,past:j,s:"puS lup",m:"wa’ tup",mm:r,h:"wa’ rep",hh:r,d:"wa’ jaj",dd:r,M:"wa’ jar",MM:r,y:"wa’ DIS",yy:r},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})});
1
+ !function(a,e){"object"==typeof exports&&"undefined"!=typeof module&&"function"==typeof require?e(require("../moment")):"function"==typeof define&&define.amd?define(["../moment"],e):e(a.moment)}(this,function(a){"use strict";function e(a,e,r,t){var n=j(a);switch(r){case"mm":return n+" tup";case"hh":return n+" rep";case"dd":return n+" jaj";case"MM":return n+" jar";case"yy":return n+" DIS"}}function j(a){var e=Math.floor(a%1e3/100),j=Math.floor(a%100/10),t=a%10,n="";return e>0&&(n+=r[e]+"vatlh"),j>0&&(n+=(""!==n?" ":"")+r[j]+"maH"),t>0&&(n+=(""!==n?" ":"")+r[t]),""===n?"pagh":n}var r="pagh_wa’_cha’_wej_loS_vagh_jav_Soch_chorgh_Hut".split("_");return a.defineLocale("tlh",{months:"tera’ jar wa’_tera’ jar cha’_tera’ jar wej_tera’ jar loS_tera’ jar vagh_tera’ jar jav_tera’ jar Soch_tera’ jar chorgh_tera’ jar Hut_tera’ jar wa’maH_tera’ jar wa’maH wa’_tera’ jar wa’maH cha’".split("_"),monthsShort:"jar wa’_jar cha’_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa’maH_jar wa’maH wa’_jar wa’maH cha’".split("_"),monthsParseExact:!0,weekdays:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysShort:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysMin:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[DaHjaj] LT",nextDay:"[wa’leS] LT",nextWeek:"LLL",lastDay:"[wa’Hu’] LT",lastWeek:"LLL",sameElse:"L"},relativeTime:{future:function(a){var e=a;return e=-1!==a.indexOf("jaj")?e.slice(0,-3)+"leS":-1!==a.indexOf("jar")?e.slice(0,-3)+"waQ":-1!==a.indexOf("DIS")?e.slice(0,-3)+"nem":e+" pIq"},past:function(a){var e=a;return e=-1!==a.indexOf("jaj")?e.slice(0,-3)+"Hu’":-1!==a.indexOf("jar")?e.slice(0,-3)+"wen":-1!==a.indexOf("DIS")?e.slice(0,-3)+"ben":e+" ret"},s:"puS lup",m:"wa’ tup",mm:e,h:"wa’ rep",hh:e,d:"wa’ jaj",dd:e,M:"wa’ jar",MM:e,y:"wa’ DIS",yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})});
bp-core/js/vendor/moment-js/locale/uk.min.js CHANGED
@@ -1 +1 @@
1
- !function(e,_){"object"==typeof exports&&"undefined"!=typeof module&&"function"==typeof require?_(require("../moment")):"function"==typeof define&&define.amd?define(["../moment"],_):_(e.moment)}(this,function(e){"use strict";function _(e,_){var t=e.split("_");return _%10==1&&_%100!=11?t[0]:_%10>=2&&_%10<=4&&(_%100<10||_%100>=20)?t[1]:t[2]}function t(e,t,n){var s={mm:t?"хвилина_хвилини_хвилин":"хвилину_хвилини_хвилин",hh:t?"година_години_годин":"годину_години_годин",dd:"день_дні_днів",MM:"місяць_місяці_місяців",yy:"рік_роки_років"};return"m"===n?t?"хвилина":"хвилину":"h"===n?t?"година":"годину":e+" "+_(s[n],+e)}function n(e,_){return{nominative:"неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота".split("_"),accusative:"неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу".split("_"),genitive:"неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи".split("_")}[/(\[[ВвУу]\]) ?dddd/.test(_)?"accusative":/\[?(?:минулої|наступної)? ?\] ?dddd/.test(_)?"genitive":"nominative"][e.day()]}function s(e){return function(){return e+"о"+(11===this.hours()?"б":"")+"] LT"}}return e.defineLocale("uk",{months:{format:"січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня".split("_"),standalone:"січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень".split("_")},monthsShort:"січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд".split("_"),weekdays:n,weekdaysShort:"нд_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY р.",LLL:"D MMMM YYYY р., HH:mm",LLLL:"dddd, D MMMM YYYY р., HH:mm"},calendar:{sameDay:s("[Сьогодні "),nextDay:s("[Завтра "),lastDay:s("[Вчора "),nextWeek:s("[У] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return s("[Минулої] dddd [").call(this);case 1:case 2:case 4:return s("[Минулого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"за %s",past:"%s тому",s:"декілька секунд",m:t,mm:t,h:"годину",hh:t,d:"день",dd:t,M:"місяць",MM:t,y:"рік",yy:t},meridiemParse:/ночі|ранку|дня|вечора/,isPM:function(e){return/^(дня|вечора)$/.test(e)},meridiem:function(e,_,t){return e<4?"ночі":e<12?"ранку":e<17?"дня":"вечора"},ordinalParse:/\d{1,2}-(й|го)/,ordinal:function(e,_){switch(_){case"M":case"d":case"DDD":case"w":case"W":return e+"-й";case"D":return e+"-го";default:return e}},week:{dow:1,doy:7}})});
1
+ !function(e,_){"object"==typeof exports&&"undefined"!=typeof module&&"function"==typeof require?_(require("../moment")):"function"==typeof define&&define.amd?define(["../moment"],_):_(e.moment)}(this,function(e){"use strict";function _(e,_){var t=e.split("_");return _%10==1&&_%100!=11?t[0]:_%10>=2&&_%10<=4&&(_%100<10||_%100>=20)?t[1]:t[2]}function t(e,t,n){var s={mm:t?"хвилина_хвилини_хвилин":"хвилину_хвилини_хвилин",hh:t?"година_години_годин":"годину_години_годин",dd:"день_дні_днів",MM:"місяць_місяці_місяців",yy:"рік_роки_років"};return"m"===n?t?"хвилина":"хвилину":"h"===n?t?"година":"годину":e+" "+_(s[n],+e)}function n(e){return function(){return e+"о"+(11===this.hours()?"б":"")+"] LT"}}return e.defineLocale("uk",{months:{format:"січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня".split("_"),standalone:"січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень".split("_")},monthsShort:"січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд".split("_"),weekdays:function(e,_){return{nominative:"неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота".split("_"),accusative:"неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу".split("_"),genitive:"неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи".split("_")}[/(\[[ВвУу]\]) ?dddd/.test(_)?"accusative":/\[?(?:минулої|наступної)? ?\] ?dddd/.test(_)?"genitive":"nominative"][e.day()]},weekdaysShort:"нд_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY р.",LLL:"D MMMM YYYY р., HH:mm",LLLL:"dddd, D MMMM YYYY р., HH:mm"},calendar:{sameDay:n("[Сьогодні "),nextDay:n("[Завтра "),lastDay:n("[Вчора "),nextWeek:n("[У] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return n("[Минулої] dddd [").call(this);case 1:case 2:case 4:return n("[Минулого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"за %s",past:"%s тому",s:"декілька секунд",m:t,mm:t,h:"годину",hh:t,d:"день",dd:t,M:"місяць",MM:t,y:"рік",yy:t},meridiemParse:/ночі|ранку|дня|вечора/,isPM:function(e){return/^(дня|вечора)$/.test(e)},meridiem:function(e,_,t){return e<4?"ночі":e<12?"ранку":e<17?"дня":"вечора"},ordinalParse:/\d{1,2}-(й|го)/,ordinal:function(e,_){switch(_){case"M":case"d":case"DDD":case"w":case"W":return e+"-й";case"D":return e+"-го";default:return e}},week:{dow:1,doy:7}})});
bp-core/js/vendor/moment-js/moment.min.js CHANGED
@@ -1 +1 @@
1
- !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.moment=t()}(this,function(){"use strict";function e(){return cs.apply(null,arguments)}function t(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function n(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function s(e){var t;for(t in e)return!1;return!0}function i(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function r(e,t){var n,s=[];for(n=0;n<e.length;++n)s.push(t(e[n],n));return s}function a(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function o(e,t){for(var n in t)a(t,n)&&(e[n]=t[n]);return a(t,"toString")&&(e.toString=t.toString),a(t,"valueOf")&&(e.valueOf=t.valueOf),e}function u(e,t,n,s){return _t(e,t,n,s,!0).utc()}function d(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1,parsedDateParts:[],meridiem:null}}function l(e){return null==e._pf&&(e._pf=d()),e._pf}function h(e){if(null==e._isValid){var t=l(e),n=fs.call(t.parsedDateParts,function(e){return null!=e}),s=!isNaN(e._d.getTime())&&t.overflow<0&&!t.empty&&!t.invalidMonth&&!t.invalidWeekday&&!t.nullInput&&!t.invalidFormat&&!t.userInvalidated&&(!t.meridiem||t.meridiem&&n);if(e._strict&&(s=s&&0===t.charsLeftOver&&0===t.unusedTokens.length&&void 0===t.bigHour),null!=Object.isFrozen&&Object.isFrozen(e))return s;e._isValid=s}return e._isValid}function c(e){var t=u(NaN);return null!=e?o(l(t),e):l(t).userInvalidated=!0,t}function f(e){return void 0===e}function m(e,t){var n,s,i;if(f(t._isAMomentObject)||(e._isAMomentObject=t._isAMomentObject),f(t._i)||(e._i=t._i),f(t._f)||(e._f=t._f),f(t._l)||(e._l=t._l),f(t._strict)||(e._strict=t._strict),f(t._tzm)||(e._tzm=t._tzm),f(t._isUTC)||(e._isUTC=t._isUTC),f(t._offset)||(e._offset=t._offset),f(t._pf)||(e._pf=l(t)),f(t._locale)||(e._locale=t._locale),ms.length>0)for(n in ms)f(i=t[s=ms[n]])||(e[s]=i);return e}function _(t){m(this,t),this._d=new Date(null!=t._d?t._d.getTime():NaN),!1===_s&&(_s=!0,e.updateOffset(this),_s=!1)}function y(e){return e instanceof _||null!=e&&null!=e._isAMomentObject}function g(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function p(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=g(t)),n}function w(e,t,n){var s,i=Math.min(e.length,t.length),r=Math.abs(e.length-t.length),a=0;for(s=0;s<i;s++)(n&&e[s]!==t[s]||!n&&p(e[s])!==p(t[s]))&&a++;return a+r}function v(t){!1===e.suppressDeprecationWarnings&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+t)}function S(t,n){var s=!0;return o(function(){if(null!=e.deprecationHandler&&e.deprecationHandler(null,t),s){for(var i,r=[],a=0;a<arguments.length;a++){if(i="","object"==typeof arguments[a]){i+="\n["+a+"] ";for(var o in arguments[0])i+=o+": "+arguments[0][o]+", ";i=i.slice(0,-2)}else i=arguments[a];r.push(i)}v(t+"\nArguments: "+Array.prototype.slice.call(r).join("")+"\n"+(new Error).stack),s=!1}return n.apply(this,arguments)},n)}function M(t,n){null!=e.deprecationHandler&&e.deprecationHandler(t,n),ys[t]||(v(n),ys[t]=!0)}function k(e){return e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}function D(e){var t,n;for(n in e)k(t=e[n])?this[n]=t:this["_"+n]=t;this._config=e,this._ordinalParseLenient=new RegExp(this._ordinalParse.source+"|"+/\d{1,2}/.source)}function Y(e,t){var s,i=o({},e);for(s in t)a(t,s)&&(n(e[s])&&n(t[s])?(i[s]={},o(i[s],e[s]),o(i[s],t[s])):null!=t[s]?i[s]=t[s]:delete i[s]);for(s in e)a(e,s)&&!a(t,s)&&n(e[s])&&(i[s]=o({},i[s]));return i}function x(e){null!=e&&this.set(e)}function O(e,t,n){var s=this._calendar[e]||this._calendar.sameElse;return k(s)?s.call(t,n):s}function b(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,function(e){return e.slice(1)}),this._longDateFormat[e])}function T(){return this._invalidDate}function P(e){return this._ordinal.replace("%d",e)}function W(e,t,n,s){var i=this._relativeTime[n];return k(i)?i(e,t,n,s):i.replace(/%d/i,e)}function R(e,t){var n=this._relativeTime[e>0?"future":"past"];return k(n)?n(t):n.replace(/%s/i,t)}function U(e,t){var n=e.toLowerCase();ks[n]=ks[n+"s"]=ks[t]=e}function C(e){return"string"==typeof e?ks[e]||ks[e.toLowerCase()]:void 0}function F(e){var t,n,s={};for(n in e)a(e,n)&&(t=C(n))&&(s[t]=e[n]);return s}function H(e,t){Ds[e]=t}function L(e){var t=[];for(var n in e)t.push({unit:n,priority:Ds[n]});return t.sort(function(e,t){return e.priority-t.priority}),t}function G(t,n){return function(s){return null!=s?(j(this,t,s),e.updateOffset(this,n),this):V(this,t)}}function V(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function j(e,t,n){e.isValid()&&e._d["set"+(e._isUTC?"UTC":"")+t](n)}function A(e){return e=C(e),k(this[e])?this[e]():this}function E(e,t){if("object"==typeof e)for(var n=L(e=F(e)),s=0;s<n.length;s++)this[n[s].unit](e[n[s].unit]);else if(e=C(e),k(this[e]))return this[e](t);return this}function I(e,t,n){var s=""+Math.abs(e),i=t-s.length;return(e>=0?n?"+":"":"-")+Math.pow(10,Math.max(0,i)).toString().substr(1)+s}function N(e,t,n,s){var i=s;"string"==typeof s&&(i=function(){return this[s]()}),e&&(bs[e]=i),t&&(bs[t[0]]=function(){return I(i.apply(this,arguments),t[1],t[2])}),n&&(bs[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function z(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function Z(e){var t,n,s=e.match(Ys);for(t=0,n=s.length;t<n;t++)bs[s[t]]?s[t]=bs[s[t]]:s[t]=z(s[t]);return function(t){var i,r="";for(i=0;i<n;i++)r+=s[i]instanceof Function?s[i].call(t,e):s[i];return r}}function q(e,t){return e.isValid()?(t=$(t,e.localeData()),Os[t]=Os[t]||Z(t),Os[t](e)):e.localeData().invalidDate()}function $(e,t){function n(e){return t.longDateFormat(e)||e}var s=5;for(xs.lastIndex=0;s>=0&&xs.test(e);)e=e.replace(xs,n),xs.lastIndex=0,s-=1;return e}function B(e,t,n){Zs[e]=k(t)?t:function(e,s){return e&&n?n:t}}function J(e,t){return a(Zs,e)?Zs[e](t._strict,t._locale):new RegExp(Q(e))}function Q(e){return X(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(e,t,n,s,i){return t||n||s||i}))}function X(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function K(e,t){var n,s=t;for("string"==typeof e&&(e=[e]),"number"==typeof t&&(s=function(e,n){n[t]=p(e)}),n=0;n<e.length;n++)qs[e[n]]=s}function ee(e,t){K(e,function(e,n,s,i){s._w=s._w||{},t(e,s._w,s,i)})}function te(e,t,n){null!=t&&a(qs,e)&&qs[e](t,n._a,n,e)}function ne(e,t){return new Date(Date.UTC(e,t+1,0)).getUTCDate()}function se(e,n){return e?t(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||si).test(n)?"format":"standalone"][e.month()]:this._months}function ie(e,n){return e?t(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[si.test(n)?"format":"standalone"][e.month()]:this._monthsShort}function re(e,t,n){var s,i,r,a=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],s=0;s<12;++s)r=u([2e3,s]),this._shortMonthsParse[s]=this.monthsShort(r,"").toLocaleLowerCase(),this._longMonthsParse[s]=this.months(r,"").toLocaleLowerCase();return n?"MMM"===t?(i=ps.call(this._shortMonthsParse,a),-1!==i?i:null):(i=ps.call(this._longMonthsParse,a),-1!==i?i:null):"MMM"===t?-1!==(i=ps.call(this._shortMonthsParse,a))?i:(i=ps.call(this._longMonthsParse,a),-1!==i?i:null):-1!==(i=ps.call(this._longMonthsParse,a))?i:(i=ps.call(this._shortMonthsParse,a),-1!==i?i:null)}function ae(e,t,n){var s,i,r;if(this._monthsParseExact)return re.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),s=0;s<12;s++){if(i=u([2e3,s]),n&&!this._longMonthsParse[s]&&(this._longMonthsParse[s]=new RegExp("^"+this.months(i,"").replace(".","")+"$","i"),this._shortMonthsParse[s]=new RegExp("^"+this.monthsShort(i,"").replace(".","")+"$","i")),n||this._monthsParse[s]||(r="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[s]=new RegExp(r.replace(".",""),"i")),n&&"MMMM"===t&&this._longMonthsParse[s].test(e))return s;if(n&&"MMM"===t&&this._shortMonthsParse[s].test(e))return s;if(!n&&this._monthsParse[s].test(e))return s}}function oe(e,t){var n;if(!e.isValid())return e;if("string"==typeof t)if(/^\d+$/.test(t))t=p(t);else if("number"!=typeof(t=e.localeData().monthsParse(t)))return e;return n=Math.min(e.date(),ne(e.year(),t)),e._d["set"+(e._isUTC?"UTC":"")+"Month"](t,n),e}function ue(t){return null!=t?(oe(this,t),e.updateOffset(this,!0),this):V(this,"Month")}function de(){return ne(this.year(),this.month())}function le(e){return this._monthsParseExact?(a(this,"_monthsRegex")||ce.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(a(this,"_monthsShortRegex")||(this._monthsShortRegex=ai),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)}function he(e){return this._monthsParseExact?(a(this,"_monthsRegex")||ce.call(this),e?this._monthsStrictRegex:this._monthsRegex):(a(this,"_monthsRegex")||(this._monthsRegex=oi),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)}function ce(){function e(e,t){return t.length-e.length}var t,n,s=[],i=[],r=[];for(t=0;t<12;t++)n=u([2e3,t]),s.push(this.monthsShort(n,"")),i.push(this.months(n,"")),r.push(this.months(n,"")),r.push(this.monthsShort(n,""));for(s.sort(e),i.sort(e),r.sort(e),t=0;t<12;t++)s[t]=X(s[t]),i[t]=X(i[t]);for(t=0;t<24;t++)r[t]=X(r[t]);this._monthsRegex=new RegExp("^("+r.join("|")+")","i"),this._monthsShortRegex=this._monthsRegex,this._monthsStrictRegex=new RegExp("^("+i.join("|")+")","i"),this._monthsShortStrictRegex=new RegExp("^("+s.join("|")+")","i")}function fe(e){return me(e)?366:365}function me(e){return e%4==0&&e%100!=0||e%400==0}function _e(){return me(this.year())}function ye(e,t,n,s,i,r,a){var o=new Date(e,t,n,s,i,r,a);return e<100&&e>=0&&isFinite(o.getFullYear())&&o.setFullYear(e),o}function ge(e){var t=new Date(Date.UTC.apply(null,arguments));return e<100&&e>=0&&isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e),t}function pe(e,t,n){var s=7+t-n;return-((7+ge(e,0,s).getUTCDay()-t)%7)+s-1}function we(e,t,n,s,i){var r,a,o=1+7*(t-1)+(7+n-s)%7+pe(e,s,i);return o<=0?a=fe(r=e-1)+o:o>fe(e)?(r=e+1,a=o-fe(e)):(r=e,a=o),{year:r,dayOfYear:a}}function ve(e,t,n){var s,i,r=pe(e.year(),t,n),a=Math.floor((e.dayOfYear()-r-1)/7)+1;return a<1?s=a+Se(i=e.year()-1,t,n):a>Se(e.year(),t,n)?(s=a-Se(e.year(),t,n),i=e.year()+1):(i=e.year(),s=a),{week:s,year:i}}function Se(e,t,n){var s=pe(e,t,n),i=pe(e+1,t,n);return(fe(e)-s+i)/7}function Me(e){return ve(e,this._week.dow,this._week.doy).week}function ke(){return this._week.dow}function De(){return this._week.doy}function Ye(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")}function xe(e){var t=ve(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")}function Oe(e,t){return"string"!=typeof e?e:isNaN(e)?(e=t.weekdaysParse(e),"number"==typeof e?e:null):parseInt(e,10)}function be(e,t){return"string"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function Te(e,n){return e?t(this._weekdays)?this._weekdays[e.day()]:this._weekdays[this._weekdays.isFormat.test(n)?"format":"standalone"][e.day()]:this._weekdays}function Pe(e){return e?this._weekdaysShort[e.day()]:this._weekdaysShort}function We(e){return e?this._weekdaysMin[e.day()]:this._weekdaysMin}function Re(e,t,n){var s,i,r,a=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],s=0;s<7;++s)r=u([2e3,1]).day(s),this._minWeekdaysParse[s]=this.weekdaysMin(r,"").toLocaleLowerCase(),this._shortWeekdaysParse[s]=this.weekdaysShort(r,"").toLocaleLowerCase(),this._weekdaysParse[s]=this.weekdays(r,"").toLocaleLowerCase();return n?"dddd"===t?(i=ps.call(this._weekdaysParse,a),-1!==i?i:null):"ddd"===t?(i=ps.call(this._shortWeekdaysParse,a),-1!==i?i:null):(i=ps.call(this._minWeekdaysParse,a),-1!==i?i:null):"dddd"===t?-1!==(i=ps.call(this._weekdaysParse,a))?i:-1!==(i=ps.call(this._shortWeekdaysParse,a))?i:(i=ps.call(this._minWeekdaysParse,a),-1!==i?i:null):"ddd"===t?-1!==(i=ps.call(this._shortWeekdaysParse,a))?i:-1!==(i=ps.call(this._weekdaysParse,a))?i:(i=ps.call(this._minWeekdaysParse,a),-1!==i?i:null):-1!==(i=ps.call(this._minWeekdaysParse,a))?i:-1!==(i=ps.call(this._weekdaysParse,a))?i:(i=ps.call(this._shortWeekdaysParse,a),-1!==i?i:null)}function Ue(e,t,n){var s,i,r;if(this._weekdaysParseExact)return Re.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),s=0;s<7;s++){if(i=u([2e3,1]).day(s),n&&!this._fullWeekdaysParse[s]&&(this._fullWeekdaysParse[s]=new RegExp("^"+this.weekdays(i,"").replace(".",".?")+"$","i"),this._shortWeekdaysParse[s]=new RegExp("^"+this.weekdaysShort(i,"").replace(".",".?")+"$","i"),this._minWeekdaysParse[s]=new RegExp("^"+this.weekdaysMin(i,"").replace(".",".?")+"$","i")),this._weekdaysParse[s]||(r="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[s]=new RegExp(r.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[s].test(e))return s;if(n&&"ddd"===t&&this._shortWeekdaysParse[s].test(e))return s;if(n&&"dd"===t&&this._minWeekdaysParse[s].test(e))return s;if(!n&&this._weekdaysParse[s].test(e))return s}}function Ce(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=Oe(e,this.localeData()),this.add(e-t,"d")):t}function Fe(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")}function He(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=be(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7}function Le(e){return this._weekdaysParseExact?(a(this,"_weekdaysRegex")||je.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(a(this,"_weekdaysRegex")||(this._weekdaysRegex=fi),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function Ge(e){return this._weekdaysParseExact?(a(this,"_weekdaysRegex")||je.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(a(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=mi),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Ve(e){return this._weekdaysParseExact?(a(this,"_weekdaysRegex")||je.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(a(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=_i),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function je(){function e(e,t){return t.length-e.length}var t,n,s,i,r,a=[],o=[],d=[],l=[];for(t=0;t<7;t++)n=u([2e3,1]).day(t),s=this.weekdaysMin(n,""),i=this.weekdaysShort(n,""),r=this.weekdays(n,""),a.push(s),o.push(i),d.push(r),l.push(s),l.push(i),l.push(r);for(a.sort(e),o.sort(e),d.sort(e),l.sort(e),t=0;t<7;t++)o[t]=X(o[t]),d[t]=X(d[t]),l[t]=X(l[t]);this._weekdaysRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+d.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+o.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+a.join("|")+")","i")}function Ae(){return this.hours()%12||12}function Ee(){return this.hours()||24}function Ie(e,t){N(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function Ne(e,t){return t._meridiemParse}function ze(e){return"p"===(e+"").toLowerCase().charAt(0)}function Ze(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"}function qe(e){return e?e.toLowerCase().replace("_","-"):e}function $e(e){for(var t,n,s,i,r=0;r<e.length;){for(t=(i=qe(e[r]).split("-")).length,n=(n=qe(e[r+1]))?n.split("-"):null;t>0;){if(s=Be(i.slice(0,t).join("-")))return s;if(n&&n.length>=t&&w(i,n,!0)>=t-1)break;t--}r++}return null}function Be(e){var t=null;if(!vi[e]&&"undefined"!=typeof module&&module&&module.exports)try{t=yi._abbr,require("./locale/"+e),Je(t)}catch(e){}return vi[e]}function Je(e,t){var n;return e&&(n=f(t)?Ke(e):Qe(e,t))&&(yi=n),yi._abbr}function Qe(e,t){if(null!==t){var n=wi;return t.abbr=e,null!=vi[e]?(M("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),n=vi[e]._config):null!=t.parentLocale&&(null!=vi[t.parentLocale]?n=vi[t.parentLocale]._config:M("parentLocaleUndefined","specified parentLocale is not defined yet. See http://momentjs.com/guides/#/warnings/parent-locale/")),vi[e]=new x(Y(n,t)),Je(e),vi[e]}return delete vi[e],null}function Xe(e,t){if(null!=t){var n,s=wi;null!=vi[e]&&(s=vi[e]._config),(n=new x(t=Y(s,t))).parentLocale=vi[e],vi[e]=n,Je(e)}else null!=vi[e]&&(null!=vi[e].parentLocale?vi[e]=vi[e].parentLocale:null!=vi[e]&&delete vi[e]);return vi[e]}function Ke(e){var n;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return yi;if(!t(e)){if(n=Be(e))return n;e=[e]}return $e(e)}function et(){return gs(vi)}function tt(e){var t,n=e._a;return n&&-2===l(e).overflow&&(t=n[Bs]<0||n[Bs]>11?Bs:n[Js]<1||n[Js]>ne(n[$s],n[Bs])?Js:n[Qs]<0||n[Qs]>24||24===n[Qs]&&(0!==n[Xs]||0!==n[Ks]||0!==n[ei])?Qs:n[Xs]<0||n[Xs]>59?Xs:n[Ks]<0||n[Ks]>59?Ks:n[ei]<0||n[ei]>999?ei:-1,l(e)._overflowDayOfYear&&(t<$s||t>Js)&&(t=Js),l(e)._overflowWeeks&&-1===t&&(t=ti),l(e)._overflowWeekday&&-1===t&&(t=ni),l(e).overflow=t),e}function nt(e){var t,n,s,i,r,a,o=e._i,u=Si.exec(o)||Mi.exec(o);if(u){for(l(e).iso=!0,t=0,n=Di.length;t<n;t++)if(Di[t][1].exec(u[1])){i=Di[t][0],s=!1!==Di[t][2];break}if(null==i)return void(e._isValid=!1);if(u[3]){for(t=0,n=Yi.length;t<n;t++)if(Yi[t][1].exec(u[3])){r=(u[2]||" ")+Yi[t][0];break}if(null==r)return void(e._isValid=!1)}if(!s&&null!=r)return void(e._isValid=!1);if(u[4]){if(!ki.exec(u[4]))return void(e._isValid=!1);a="Z"}e._f=i+(r||"")+(a||""),ut(e)}else e._isValid=!1}function st(t){var n=xi.exec(t._i);null===n?(nt(t),!1===t._isValid&&(delete t._isValid,e.createFromInputFallback(t))):t._d=new Date(+n[1])}function it(e,t,n){return null!=e?e:null!=t?t:n}function rt(t){var n=new Date(e.now());return t._useUTC?[n.getUTCFullYear(),n.getUTCMonth(),n.getUTCDate()]:[n.getFullYear(),n.getMonth(),n.getDate()]}function at(e){var t,n,s,i,r=[];if(!e._d){for(s=rt(e),e._w&&null==e._a[Js]&&null==e._a[Bs]&&ot(e),e._dayOfYear&&(i=it(e._a[$s],s[$s]),e._dayOfYear>fe(i)&&(l(e)._overflowDayOfYear=!0),n=ge(i,0,e._dayOfYear),e._a[Bs]=n.getUTCMonth(),e._a[Js]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=r[t]=s[t];for(;t<7;t++)e._a[t]=r[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[Qs]&&0===e._a[Xs]&&0===e._a[Ks]&&0===e._a[ei]&&(e._nextDay=!0,e._a[Qs]=0),e._d=(e._useUTC?ge:ye).apply(null,r),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[Qs]=24)}}function ot(e){var t,n,s,i,r,a,o,u;null!=(t=e._w).GG||null!=t.W||null!=t.E?(r=1,a=4,n=it(t.GG,e._a[$s],ve(yt(),1,4).year),s=it(t.W,1),((i=it(t.E,1))<1||i>7)&&(u=!0)):(r=e._locale._week.dow,a=e._locale._week.doy,n=it(t.gg,e._a[$s],ve(yt(),r,a).year),s=it(t.w,1),null!=t.d?((i=t.d)<0||i>6)&&(u=!0):null!=t.e?(i=t.e+r,(t.e<0||t.e>6)&&(u=!0)):i=r),s<1||s>Se(n,r,a)?l(e)._overflowWeeks=!0:null!=u?l(e)._overflowWeekday=!0:(o=we(n,s,i,r,a),e._a[$s]=o.year,e._dayOfYear=o.dayOfYear)}function ut(t){if(t._f!==e.ISO_8601){t._a=[],l(t).empty=!0;var n,s,i,r,a,o=""+t._i,u=o.length,d=0;for(i=$(t._f,t._locale).match(Ys)||[],n=0;n<i.length;n++)r=i[n],(s=(o.match(J(r,t))||[])[0])&&((a=o.substr(0,o.indexOf(s))).length>0&&l(t).unusedInput.push(a),o=o.slice(o.indexOf(s)+s.length),d+=s.length),bs[r]?(s?l(t).empty=!1:l(t).unusedTokens.push(r),te(r,s,t)):t._strict&&!s&&l(t).unusedTokens.push(r);l(t).charsLeftOver=u-d,o.length>0&&l(t).unusedInput.push(o),t._a[Qs]<=12&&!0===l(t).bigHour&&t._a[Qs]>0&&(l(t).bigHour=void 0),l(t).parsedDateParts=t._a.slice(0),l(t).meridiem=t._meridiem,t._a[Qs]=dt(t._locale,t._a[Qs],t._meridiem),at(t),tt(t)}else nt(t)}function dt(e,t,n){var s;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((s=e.isPM(n))&&t<12&&(t+=12),s||12!==t||(t=0),t):t}function lt(e){var t,n,s,i,r;if(0===e._f.length)return l(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;i<e._f.length;i++)r=0,t=m({},e),null!=e._useUTC&&(t._useUTC=e._useUTC),t._f=e._f[i],ut(t),h(t)&&(r+=l(t).charsLeftOver,r+=10*l(t).unusedTokens.length,l(t).score=r,(null==s||r<s)&&(s=r,n=t));o(e,n||t)}function ht(e){if(!e._d){var t=F(e._i);e._a=r([t.year,t.month,t.day||t.date,t.hour,t.minute,t.second,t.millisecond],function(e){return e&&parseInt(e,10)}),at(e)}}function ct(e){var t=new _(tt(ft(e)));return t._nextDay&&(t.add(1,"d"),t._nextDay=void 0),t}function ft(e){var n=e._i,s=e._f;return e._locale=e._locale||Ke(e._l),null===n||void 0===s&&""===n?c({nullInput:!0}):("string"==typeof n&&(e._i=n=e._locale.preparse(n)),y(n)?new _(tt(n)):(t(s)?lt(e):i(n)?e._d=n:s?ut(e):mt(e),h(e)||(e._d=null),e))}function mt(n){var s=n._i;void 0===s?n._d=new Date(e.now()):i(s)?n._d=new Date(s.valueOf()):"string"==typeof s?st(n):t(s)?(n._a=r(s.slice(0),function(e){return parseInt(e,10)}),at(n)):"object"==typeof s?ht(n):"number"==typeof s?n._d=new Date(s):e.createFromInputFallback(n)}function _t(e,i,r,a,o){var u={};return"boolean"==typeof r&&(a=r,r=void 0),(n(e)&&s(e)||t(e)&&0===e.length)&&(e=void 0),u._isAMomentObject=!0,u._useUTC=u._isUTC=o,u._l=r,u._i=e,u._f=i,u._strict=a,ct(u)}function yt(e,t,n,s){return _t(e,t,n,s,!1)}function gt(e,n){var s,i;if(1===n.length&&t(n[0])&&(n=n[0]),!n.length)return yt();for(s=n[0],i=1;i<n.length;++i)n[i].isValid()&&!n[i][e](s)||(s=n[i]);return s}function pt(){return gt("isBefore",[].slice.call(arguments,0))}function wt(){return gt("isAfter",[].slice.call(arguments,0))}function vt(e){var t=F(e),n=t.year||0,s=t.quarter||0,i=t.month||0,r=t.week||0,a=t.day||0,o=t.hour||0,u=t.minute||0,d=t.second||0,l=t.millisecond||0;this._milliseconds=+l+1e3*d+6e4*u+1e3*o*60*60,this._days=+a+7*r,this._months=+i+3*s+12*n,this._data={},this._locale=Ke(),this._bubble()}function St(e){return e instanceof vt}function Mt(e){return e<0?-1*Math.round(-1*e):Math.round(e)}function kt(e,t){N(e,0,0,function(){var e=this.utcOffset(),n="+";return e<0&&(e=-e,n="-"),n+I(~~(e/60),2)+t+I(~~e%60,2)})}function Dt(e,t){var n=(t||"").match(e)||[],s=((n[n.length-1]||[])+"").match(Pi)||["-",0,0],i=60*s[1]+p(s[2]);return"+"===s[0]?i:-i}function Yt(t,n){var s,r;return n._isUTC?(s=n.clone(),r=(y(t)||i(t)?t.valueOf():yt(t).valueOf())-s.valueOf(),s._d.setTime(s._d.valueOf()+r),e.updateOffset(s,!1),s):yt(t).local()}function xt(e){return 15*-Math.round(e._d.getTimezoneOffset()/15)}function Ot(t,n){var s,i=this._offset||0;return this.isValid()?null!=t?("string"==typeof t?t=Dt(Is,t):Math.abs(t)<16&&(t*=60),!this._isUTC&&n&&(s=xt(this)),this._offset=t,this._isUTC=!0,null!=s&&this.add(s,"m"),i!==t&&(!n||this._changeInProgress?It(this,Gt(t-i,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,e.updateOffset(this,!0),this._changeInProgress=null)),this):this._isUTC?i:xt(this):null!=t?this:NaN}function bt(e,t){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()}function Tt(e){return this.utcOffset(0,e)}function Pt(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(xt(this),"m")),this}function Wt(){return this._tzm?this.utcOffset(this._tzm):"string"==typeof this._i&&(0===Dt(Es,this._i)?this.utcOffset(0,!0):this.utcOffset(Dt(Es,this._i))),this}function Rt(e){return!!this.isValid()&&(e=e?yt(e).utcOffset():0,(this.utcOffset()-e)%60==0)}function Ut(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function Ct(){if(!f(this._isDSTShifted))return this._isDSTShifted;var e={};if(m(e,this),(e=ft(e))._a){var t=e._isUTC?u(e._a):yt(e._a);this._isDSTShifted=this.isValid()&&w(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}function Ft(){return!!this.isValid()&&!this._isUTC}function Ht(){return!!this.isValid()&&this._isUTC}function Lt(){return!!this.isValid()&&(this._isUTC&&0===this._offset)}function Gt(e,t){var n,s,i,r=e,o=null;return St(e)?r={ms:e._milliseconds,d:e._days,M:e._months}:"number"==typeof e?(r={},t?r[t]=e:r.milliseconds=e):(o=Wi.exec(e))?(n="-"===o[1]?-1:1,r={y:0,d:p(o[Js])*n,h:p(o[Qs])*n,m:p(o[Xs])*n,s:p(o[Ks])*n,ms:p(Mt(1e3*o[ei]))*n}):(o=Ri.exec(e))?(n="-"===o[1]?-1:1,r={y:Vt(o[2],n),M:Vt(o[3],n),w:Vt(o[4],n),d:Vt(o[5],n),h:Vt(o[6],n),m:Vt(o[7],n),s:Vt(o[8],n)}):null==r?r={}:"object"==typeof r&&("from"in r||"to"in r)&&(i=At(yt(r.from),yt(r.to)),(r={}).ms=i.milliseconds,r.M=i.months),s=new vt(r),St(e)&&a(e,"_locale")&&(s._locale=e._locale),s}function Vt(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function jt(e,t){var n={milliseconds:0,months:0};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function At(e,t){var n;return e.isValid()&&t.isValid()?(t=Yt(t,e),e.isBefore(t)?n=jt(e,t):((n=jt(t,e)).milliseconds=-n.milliseconds,n.months=-n.months),n):{milliseconds:0,months:0}}function Et(e,t){return function(n,s){var i,r;return null===s||isNaN(+s)||(M(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),r=n,n=s,s=r),n="string"==typeof n?+n:n,i=Gt(n,s),It(this,i,e),this}}function It(t,n,s,i){var r=n._milliseconds,a=Mt(n._days),o=Mt(n._months);t.isValid()&&(i=null==i||i,r&&t._d.setTime(t._d.valueOf()+r*s),a&&j(t,"Date",V(t,"Date")+a*s),o&&oe(t,V(t,"Month")+o*s),i&&e.updateOffset(t,a||o))}function Nt(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"}function zt(t,n){var s=t||yt(),i=Yt(s,this).startOf("day"),r=e.calendarFormat(this,i)||"sameElse",a=n&&(k(n[r])?n[r].call(this,s):n[r]);return this.format(a||this.localeData().calendar(r,this,yt(s)))}function Zt(){return new _(this)}function qt(e,t){var n=y(e)?e:yt(e);return!(!this.isValid()||!n.isValid())&&(t=C(f(t)?"millisecond":t),"millisecond"===t?this.valueOf()>n.valueOf():n.valueOf()<this.clone().startOf(t).valueOf())}function $t(e,t){var n=y(e)?e:yt(e);return!(!this.isValid()||!n.isValid())&&(t=C(f(t)?"millisecond":t),"millisecond"===t?this.valueOf()<n.valueOf():this.clone().endOf(t).valueOf()<n.valueOf())}function Bt(e,t,n,s){return s=s||"()",("("===s[0]?this.isAfter(e,n):!this.isBefore(e,n))&&(")"===s[1]?this.isBefore(t,n):!this.isAfter(t,n))}function Jt(e,t){var n,s=y(e)?e:yt(e);return!(!this.isValid()||!s.isValid())&&(t=C(t||"millisecond"),"millisecond"===t?this.valueOf()===s.valueOf():(n=s.valueOf(),this.clone().startOf(t).valueOf()<=n&&n<=this.clone().endOf(t).valueOf()))}function Qt(e,t){return this.isSame(e,t)||this.isAfter(e,t)}function Xt(e,t){return this.isSame(e,t)||this.isBefore(e,t)}function Kt(e,t,n){var s,i,r,a;return this.isValid()&&(s=Yt(e,this)).isValid()?(i=6e4*(s.utcOffset()-this.utcOffset()),t=C(t),"year"===t||"month"===t||"quarter"===t?(a=en(this,s),"quarter"===t?a/=3:"year"===t&&(a/=12)):(r=this-s,a="second"===t?r/1e3:"minute"===t?r/6e4:"hour"===t?r/36e5:"day"===t?(r-i)/864e5:"week"===t?(r-i)/6048e5:r),n?a:g(a)):NaN}function en(e,t){var n,s=12*(t.year()-e.year())+(t.month()-e.month()),i=e.clone().add(s,"months");return n=t-i<0?(t-i)/(i-e.clone().add(s-1,"months")):(t-i)/(e.clone().add(s+1,"months")-i),-(s+n)||0}function tn(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")}function nn(){var e=this.clone().utc();return 0<e.year()&&e.year()<=9999?k(Date.prototype.toISOString)?this.toDate().toISOString():q(e,"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]"):q(e,"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]")}function sn(t){t||(t=this.isUtc()?e.defaultFormatUtc:e.defaultFormat);var n=q(this,t);return this.localeData().postformat(n)}function rn(e,t){return this.isValid()&&(y(e)&&e.isValid()||yt(e).isValid())?Gt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function an(e){return this.from(yt(),e)}function on(e,t){return this.isValid()&&(y(e)&&e.isValid()||yt(e).isValid())?Gt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function un(e){return this.to(yt(),e)}function dn(e){var t;return void 0===e?this._locale._abbr:(null!=(t=Ke(e))&&(this._locale=t),this)}function ln(){return this._locale}function hn(e){switch(e=C(e)){case"year":this.month(0);case"quarter":case"month":this.date(1);case"week":case"isoWeek":case"day":case"date":this.hours(0);case"hour":this.minutes(0);case"minute":this.seconds(0);case"second":this.milliseconds(0)}return"week"===e&&this.weekday(0),"isoWeek"===e&&this.isoWeekday(1),"quarter"===e&&this.month(3*Math.floor(this.month()/3)),this}function cn(e){return void 0===(e=C(e))||"millisecond"===e?this:("date"===e&&(e="day"),this.startOf(e).add(1,"isoWeek"===e?"week":e).subtract(1,"ms"))}function fn(){return this._d.valueOf()-6e4*(this._offset||0)}function mn(){return Math.floor(this.valueOf()/1e3)}function _n(){return new Date(this.valueOf())}function yn(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function gn(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function pn(){return this.isValid()?this.toISOString():null}function wn(){return h(this)}function vn(){return o({},l(this))}function Sn(){return l(this).overflow}function Mn(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function kn(e,t){N(0,[e,e.length],0,t)}function Dn(e){return bn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)}function Yn(e){return bn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)}function xn(){return Se(this.year(),1,4)}function On(){var e=this.localeData()._week;return Se(this.year(),e.dow,e.doy)}function bn(e,t,n,s,i){var r;return null==e?ve(this,s,i).year:(r=Se(e,s,i),t>r&&(t=r),Tn.call(this,e,t,n,s,i))}function Tn(e,t,n,s,i){var r=we(e,t,n,s,i),a=ge(r.year,0,r.dayOfYear);return this.year(a.getUTCFullYear()),this.month(a.getUTCMonth()),this.date(a.getUTCDate()),this}function Pn(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)}function Wn(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")}function Rn(e,t){t[ei]=p(1e3*("0."+e))}function Un(){return this._isUTC?"UTC":""}function Cn(){return this._isUTC?"Coordinated Universal Time":""}function Fn(e){return yt(1e3*e)}function Hn(){return yt.apply(null,arguments).parseZone()}function Ln(e){return e}function Gn(e,t,n,s){var i=Ke(),r=u().set(s,t);return i[n](r,e)}function Vn(e,t,n){if("number"==typeof e&&(t=e,e=void 0),e=e||"",null!=t)return Gn(e,t,n,"month");var s,i=[];for(s=0;s<12;s++)i[s]=Gn(e,s,n,"month");return i}function jn(e,t,n,s){"boolean"==typeof e?("number"==typeof t&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,"number"==typeof t&&(n=t,t=void 0),t=t||"");var i=Ke(),r=e?i._week.dow:0;if(null!=n)return Gn(t,(n+r)%7,s,"day");var a,o=[];for(a=0;a<7;a++)o[a]=Gn(t,(a+r)%7,s,"day");return o}function An(e,t){return Vn(e,t,"months")}function En(e,t){return Vn(e,t,"monthsShort")}function In(e,t,n){return jn(e,t,n,"weekdays")}function Nn(e,t,n){return jn(e,t,n,"weekdaysShort")}function zn(e,t,n){return jn(e,t,n,"weekdaysMin")}function Zn(){var e=this._data;return this._milliseconds=Ni(this._milliseconds),this._days=Ni(this._days),this._months=Ni(this._months),e.milliseconds=Ni(e.milliseconds),e.seconds=Ni(e.seconds),e.minutes=Ni(e.minutes),e.hours=Ni(e.hours),e.months=Ni(e.months),e.years=Ni(e.years),this}function qn(e,t,n,s){var i=Gt(t,n);return e._milliseconds+=s*i._milliseconds,e._days+=s*i._days,e._months+=s*i._months,e._bubble()}function $n(e,t){return qn(this,e,t,1)}function Bn(e,t){return qn(this,e,t,-1)}function Jn(e){return e<0?Math.floor(e):Math.ceil(e)}function Qn(){var e,t,n,s,i,r=this._milliseconds,a=this._days,o=this._months,u=this._data;return r>=0&&a>=0&&o>=0||r<=0&&a<=0&&o<=0||(r+=864e5*Jn(Kn(o)+a),a=0,o=0),u.milliseconds=r%1e3,e=g(r/1e3),u.seconds=e%60,t=g(e/60),u.minutes=t%60,n=g(t/60),u.hours=n%24,a+=g(n/24),i=g(Xn(a)),o+=i,a-=Jn(Kn(i)),s=g(o/12),o%=12,u.days=a,u.months=o,u.years=s,this}function Xn(e){return 4800*e/146097}function Kn(e){return 146097*e/4800}function es(e){var t,n,s=this._milliseconds;if("month"===(e=C(e))||"year"===e)return t=this._days+s/864e5,n=this._months+Xn(t),"month"===e?n:n/12;switch(t=this._days+Math.round(Kn(this._months)),e){case"week":return t/7+s/6048e5;case"day":return t+s/864e5;case"hour":return 24*t+s/36e5;case"minute":return 1440*t+s/6e4;case"second":return 86400*t+s/1e3;case"millisecond":return Math.floor(864e5*t)+s;default:throw new Error("Unknown unit "+e)}}function ts(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*p(this._months/12)}function ns(e){return function(){return this.as(e)}}function ss(e){return e=C(e),this[e+"s"]()}function is(e){return function(){return this._data[e]}}function rs(){return g(this.days()/7)}function as(e,t,n,s,i){return i.relativeTime(t||1,!!n,e,s)}function os(e,t,n){var s=Gt(e).abs(),i=ar(s.as("s")),r=ar(s.as("m")),a=ar(s.as("h")),o=ar(s.as("d")),u=ar(s.as("M")),d=ar(s.as("y")),l=i<or.s&&["s",i]||r<=1&&["m"]||r<or.m&&["mm",r]||a<=1&&["h"]||a<or.h&&["hh",a]||o<=1&&["d"]||o<or.d&&["dd",o]||u<=1&&["M"]||u<or.M&&["MM",u]||d<=1&&["y"]||["yy",d];return l[2]=t,l[3]=+e>0,l[4]=n,as.apply(null,l)}function us(e){return void 0===e?ar:"function"==typeof e&&(ar=e,!0)}function ds(e,t){return void 0!==or[e]&&(void 0===t?or[e]:(or[e]=t,!0))}function ls(e){var t=this.localeData(),n=os(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)}function hs(){var e,t,n,s=ur(this._milliseconds)/1e3,i=ur(this._days),r=ur(this._months);t=g((e=g(s/60))/60),s%=60,e%=60;var a=n=g(r/12),o=r%=12,u=i,d=t,l=e,h=s,c=this.asSeconds();return c?(c<0?"-":"")+"P"+(a?a+"Y":"")+(o?o+"M":"")+(u?u+"D":"")+(d||l||h?"T":"")+(d?d+"H":"")+(l?l+"M":"")+(h?h+"S":""):"P0D"}var cs,fs;fs=Array.prototype.some?Array.prototype.some:function(e){for(var t=Object(this),n=t.length>>>0,s=0;s<n;s++)if(s in t&&e.call(this,t[s],s,t))return!0;return!1};var ms=e.momentProperties=[],_s=!1,ys={};e.suppressDeprecationWarnings=!1,e.deprecationHandler=null;var gs;gs=Object.keys?Object.keys:function(e){var t,n=[];for(t in e)a(e,t)&&n.push(t);return n};var ps,ws={sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},vs={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},Ss=/\d{1,2}/,Ms={future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ks={},Ds={},Ys=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,xs=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,Os={},bs={},Ts=/\d/,Ps=/\d\d/,Ws=/\d{3}/,Rs=/\d{4}/,Us=/[+-]?\d{6}/,Cs=/\d\d?/,Fs=/\d\d\d\d?/,Hs=/\d\d\d\d\d\d?/,Ls=/\d{1,3}/,Gs=/\d{1,4}/,Vs=/[+-]?\d{1,6}/,js=/\d+/,As=/[+-]?\d+/,Es=/Z|[+-]\d\d:?\d\d/gi,Is=/Z|[+-]\d\d(?::?\d\d)?/gi,Ns=/[+-]?\d+(\.\d{1,3})?/,zs=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,Zs={},qs={},$s=0,Bs=1,Js=2,Qs=3,Xs=4,Ks=5,ei=6,ti=7,ni=8;ps=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t<this.length;++t)if(this[t]===e)return t;return-1},N("M",["MM",2],"Mo",function(){return this.month()+1}),N("MMM",0,0,function(e){return this.localeData().monthsShort(this,e)}),N("MMMM",0,0,function(e){return this.localeData().months(this,e)}),U("month","M"),H("month",8),B("M",Cs),B("MM",Cs,Ps),B("MMM",function(e,t){return t.monthsShortRegex(e)}),B("MMMM",function(e,t){return t.monthsRegex(e)}),K(["M","MM"],function(e,t){t[Bs]=p(e)-1}),K(["MMM","MMMM"],function(e,t,n,s){var i=n._locale.monthsParse(e,s,n._strict);null!=i?t[Bs]=i:l(n).invalidMonth=e});var si=/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/,ii="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ri="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),ai=zs,oi=zs;N("Y",0,0,function(){var e=this.year();return e<=9999?""+e:"+"+e}),N(0,["YY",2],0,function(){return this.year()%100}),N(0,["YYYY",4],0,"year"),N(0,["YYYYY",5],0,"year"),N(0,["YYYYYY",6,!0],0,"year"),U("year","y"),H("year",1),B("Y",As),B("YY",Cs,Ps),B("YYYY",Gs,Rs),B("YYYYY",Vs,Us),B("YYYYYY",Vs,Us),K(["YYYYY","YYYYYY"],$s),K("YYYY",function(t,n){n[$s]=2===t.length?e.parseTwoDigitYear(t):p(t)}),K("YY",function(t,n){n[$s]=e.parseTwoDigitYear(t)}),K("Y",function(e,t){t[$s]=parseInt(e,10)}),e.parseTwoDigitYear=function(e){return p(e)+(p(e)>68?1900:2e3)};var ui=G("FullYear",!0);N("w",["ww",2],"wo","week"),N("W",["WW",2],"Wo","isoWeek"),U("week","w"),U("isoWeek","W"),H("week",5),H("isoWeek",5),B("w",Cs),B("ww",Cs,Ps),B("W",Cs),B("WW",Cs,Ps),ee(["w","ww","W","WW"],function(e,t,n,s){t[s.substr(0,1)]=p(e)});var di={dow:0,doy:6};N("d",0,"do","day"),N("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),N("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),N("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),N("e",0,0,"weekday"),N("E",0,0,"isoWeekday"),U("day","d"),U("weekday","e"),U("isoWeekday","E"),H("day",11),H("weekday",11),H("isoWeekday",11),B("d",Cs),B("e",Cs),B("E",Cs),B("dd",function(e,t){return t.weekdaysMinRegex(e)}),B("ddd",function(e,t){return t.weekdaysShortRegex(e)}),B("dddd",function(e,t){return t.weekdaysRegex(e)}),ee(["dd","ddd","dddd"],function(e,t,n,s){var i=n._locale.weekdaysParse(e,s,n._strict);null!=i?t.d=i:l(n).invalidWeekday=e}),ee(["d","e","E"],function(e,t,n,s){t[s]=p(e)});var li="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),hi="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),ci="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),fi=zs,mi=zs,_i=zs;N("H",["HH",2],0,"hour"),N("h",["hh",2],0,Ae),N("k",["kk",2],0,Ee),N("hmm",0,0,function(){return""+Ae.apply(this)+I(this.minutes(),2)}),N("hmmss",0,0,function(){return""+Ae.apply(this)+I(this.minutes(),2)+I(this.seconds(),2)}),N("Hmm",0,0,function(){return""+this.hours()+I(this.minutes(),2)}),N("Hmmss",0,0,function(){return""+this.hours()+I(this.minutes(),2)+I(this.seconds(),2)}),Ie("a",!0),Ie("A",!1),U("hour","h"),H("hour",13),B("a",Ne),B("A",Ne),B("H",Cs),B("h",Cs),B("HH",Cs,Ps),B("hh",Cs,Ps),B("hmm",Fs),B("hmmss",Hs),B("Hmm",Fs),B("Hmmss",Hs),K(["H","HH"],Qs),K(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e}),K(["h","hh"],function(e,t,n){t[Qs]=p(e),l(n).bigHour=!0}),K("hmm",function(e,t,n){var s=e.length-2;t[Qs]=p(e.substr(0,s)),t[Xs]=p(e.substr(s)),l(n).bigHour=!0}),K("hmmss",function(e,t,n){var s=e.length-4,i=e.length-2;t[Qs]=p(e.substr(0,s)),t[Xs]=p(e.substr(s,2)),t[Ks]=p(e.substr(i)),l(n).bigHour=!0}),K("Hmm",function(e,t,n){var s=e.length-2;t[Qs]=p(e.substr(0,s)),t[Xs]=p(e.substr(s))}),K("Hmmss",function(e,t,n){var s=e.length-4,i=e.length-2;t[Qs]=p(e.substr(0,s)),t[Xs]=p(e.substr(s,2)),t[Ks]=p(e.substr(i))});var yi,gi=/[ap]\.?m?\.?/i,pi=G("Hours",!0),wi={calendar:ws,longDateFormat:vs,invalidDate:"Invalid date",ordinal:"%d",ordinalParse:Ss,relativeTime:Ms,months:ii,monthsShort:ri,week:di,weekdays:li,weekdaysMin:ci,weekdaysShort:hi,meridiemParse:gi},vi={},Si=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?/,Mi=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?/,ki=/Z|[+-]\d\d(?::?\d\d)?/,Di=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],Yi=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],xi=/^\/?Date\((\-?\d+)/i;e.createFromInputFallback=S("value provided is not in a recognized ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non ISO date formats are discouraged and will be removed in an upcoming major release. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(e){e._d=new Date(e._i+(e._useUTC?" UTC":""))}),e.ISO_8601=function(){};var Oi=S("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=yt.apply(null,arguments);return this.isValid()&&e.isValid()?e<this?this:e:c()}),bi=S("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=yt.apply(null,arguments);return this.isValid()&&e.isValid()?e>this?this:e:c()}),Ti=function(){return Date.now?Date.now():+new Date};kt("Z",":"),kt("ZZ",""),B("Z",Is),B("ZZ",Is),K(["Z","ZZ"],function(e,t,n){n._useUTC=!0,n._tzm=Dt(Is,e)});var Pi=/([\+\-]|\d\d)/gi;e.updateOffset=function(){};var Wi=/^(\-)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/,Ri=/^(-)?P(?:(-?[0-9,.]*)Y)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)W)?(?:(-?[0-9,.]*)D)?(?:T(?:(-?[0-9,.]*)H)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)S)?)?$/;Gt.fn=vt.prototype;var Ui=Et(1,"add"),Ci=Et(-1,"subtract");e.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",e.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var Fi=S("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return void 0===e?this.localeData():this.locale(e)});N(0,["gg",2],0,function(){return this.weekYear()%100}),N(0,["GG",2],0,function(){return this.isoWeekYear()%100}),kn("gggg","weekYear"),kn("ggggg","weekYear"),kn("GGGG","isoWeekYear"),kn("GGGGG","isoWeekYear"),U("weekYear","gg"),U("isoWeekYear","GG"),H("weekYear",1),H("isoWeekYear",1),B("G",As),B("g",As),B("GG",Cs,Ps),B("gg",Cs,Ps),B("GGGG",Gs,Rs),B("gggg",Gs,Rs),B("GGGGG",Vs,Us),B("ggggg",Vs,Us),ee(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,s){t[s.substr(0,2)]=p(e)}),ee(["gg","GG"],function(t,n,s,i){n[i]=e.parseTwoDigitYear(t)}),N("Q",0,"Qo","quarter"),U("quarter","Q"),H("quarter",7),B("Q",Ts),K("Q",function(e,t){t[Bs]=3*(p(e)-1)}),N("D",["DD",2],"Do","date"),U("date","D"),H("date",9),B("D",Cs),B("DD",Cs,Ps),B("Do",function(e,t){return e?t._ordinalParse:t._ordinalParseLenient}),K(["D","DD"],Js),K("Do",function(e,t){t[Js]=p(e.match(Cs)[0],10)});var Hi=G("Date",!0);N("DDD",["DDDD",3],"DDDo","dayOfYear"),U("dayOfYear","DDD"),H("dayOfYear",4),B("DDD",Ls),B("DDDD",Ws),K(["DDD","DDDD"],function(e,t,n){n._dayOfYear=p(e)}),N("m",["mm",2],0,"minute"),U("minute","m"),H("minute",14),B("m",Cs),B("mm",Cs,Ps),K(["m","mm"],Xs);var Li=G("Minutes",!1);N("s",["ss",2],0,"second"),U("second","s"),H("second",15),B("s",Cs),B("ss",Cs,Ps),K(["s","ss"],Ks);var Gi=G("Seconds",!1);N("S",0,0,function(){return~~(this.millisecond()/100)}),N(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),N(0,["SSS",3],0,"millisecond"),N(0,["SSSS",4],0,function(){return 10*this.millisecond()}),N(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),N(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),N(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),N(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),N(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),U("millisecond","ms"),H("millisecond",16),B("S",Ls,Ts),B("SS",Ls,Ps),B("SSS",Ls,Ws);var Vi;for(Vi="SSSS";Vi.length<=9;Vi+="S")B(Vi,js);for(Vi="S";Vi.length<=9;Vi+="S")K(Vi,Rn);var ji=G("Milliseconds",!1);N("z",0,0,"zoneAbbr"),N("zz",0,0,"zoneName");var Ai=_.prototype;Ai.add=Ui,Ai.calendar=zt,Ai.clone=Zt,Ai.diff=Kt,Ai.endOf=cn,Ai.format=sn,Ai.from=rn,Ai.fromNow=an,Ai.to=on,Ai.toNow=un,Ai.get=A,Ai.invalidAt=Sn,Ai.isAfter=qt,Ai.isBefore=$t,Ai.isBetween=Bt,Ai.isSame=Jt,Ai.isSameOrAfter=Qt,Ai.isSameOrBefore=Xt,Ai.isValid=wn,Ai.lang=Fi,Ai.locale=dn,Ai.localeData=ln,Ai.max=bi,Ai.min=Oi,Ai.parsingFlags=vn,Ai.set=E,Ai.startOf=hn,Ai.subtract=Ci,Ai.toArray=yn,Ai.toObject=gn,Ai.toDate=_n,Ai.toISOString=nn,Ai.toJSON=pn,Ai.toString=tn,Ai.unix=mn,Ai.valueOf=fn,Ai.creationData=Mn,Ai.year=ui,Ai.isLeapYear=_e,Ai.weekYear=Dn,Ai.isoWeekYear=Yn,Ai.quarter=Ai.quarters=Pn,Ai.month=ue,Ai.daysInMonth=de,Ai.week=Ai.weeks=Ye,Ai.isoWeek=Ai.isoWeeks=xe,Ai.weeksInYear=On,Ai.isoWeeksInYear=xn,Ai.date=Hi,Ai.day=Ai.days=Ce,Ai.weekday=Fe,Ai.isoWeekday=He,Ai.dayOfYear=Wn,Ai.hour=Ai.hours=pi,Ai.minute=Ai.minutes=Li,Ai.second=Ai.seconds=Gi,Ai.millisecond=Ai.milliseconds=ji,Ai.utcOffset=Ot,Ai.utc=Tt,Ai.local=Pt,Ai.parseZone=Wt,Ai.hasAlignedHourOffset=Rt,Ai.isDST=Ut,Ai.isLocal=Ft,Ai.isUtcOffset=Ht,Ai.isUtc=Lt,Ai.isUTC=Lt,Ai.zoneAbbr=Un,Ai.zoneName=Cn,Ai.dates=S("dates accessor is deprecated. Use date instead.",Hi),Ai.months=S("months accessor is deprecated. Use month instead",ue),Ai.years=S("years accessor is deprecated. Use year instead",ui),Ai.zone=S("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",bt),Ai.isDSTShifted=S("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",Ct);var Ei=Ai,Ii=x.prototype;Ii.calendar=O,Ii.longDateFormat=b,Ii.invalidDate=T,Ii.ordinal=P,Ii.preparse=Ln,Ii.postformat=Ln,Ii.relativeTime=W,Ii.pastFuture=R,Ii.set=D,Ii.months=se,Ii.monthsShort=ie,Ii.monthsParse=ae,Ii.monthsRegex=he,Ii.monthsShortRegex=le,Ii.week=Me,Ii.firstDayOfYear=De,Ii.firstDayOfWeek=ke,Ii.weekdays=Te,Ii.weekdaysMin=We,Ii.weekdaysShort=Pe,Ii.weekdaysParse=Ue,Ii.weekdaysRegex=Le,Ii.weekdaysShortRegex=Ge,Ii.weekdaysMinRegex=Ve,Ii.isPM=ze,Ii.meridiem=Ze,Je("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===p(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),e.lang=S("moment.lang is deprecated. Use moment.locale instead.",Je),e.langData=S("moment.langData is deprecated. Use moment.localeData instead.",Ke);var Ni=Math.abs,zi=ns("ms"),Zi=ns("s"),qi=ns("m"),$i=ns("h"),Bi=ns("d"),Ji=ns("w"),Qi=ns("M"),Xi=ns("y"),Ki=is("milliseconds"),er=is("seconds"),tr=is("minutes"),nr=is("hours"),sr=is("days"),ir=is("months"),rr=is("years"),ar=Math.round,or={s:45,m:45,h:22,d:26,M:11},ur=Math.abs,dr=vt.prototype;return dr.abs=Zn,dr.add=$n,dr.subtract=Bn,dr.as=es,dr.asMilliseconds=zi,dr.asSeconds=Zi,dr.asMinutes=qi,dr.asHours=$i,dr.asDays=Bi,dr.asWeeks=Ji,dr.asMonths=Qi,dr.asYears=Xi,dr.valueOf=ts,dr._bubble=Qn,dr.get=ss,dr.milliseconds=Ki,dr.seconds=er,dr.minutes=tr,dr.hours=nr,dr.days=sr,dr.weeks=rs,dr.months=ir,dr.years=rr,dr.humanize=ls,dr.toISOString=hs,dr.toString=hs,dr.toJSON=hs,dr.locale=dn,dr.localeData=ln,dr.toIsoString=S("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",hs),dr.lang=Fi,N("X",0,0,"unix"),N("x",0,0,"valueOf"),B("x",As),B("X",Ns),K("X",function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))}),K("x",function(e,t,n){n._d=new Date(p(e))}),e.version="2.15.1",function(e){cs=e}(yt),e.fn=Ei,e.min=pt,e.max=wt,e.now=Ti,e.utc=u,e.unix=Fn,e.months=An,e.isDate=i,e.locale=Je,e.invalid=c,e.duration=Gt,e.isMoment=y,e.weekdays=In,e.parseZone=Hn,e.localeData=Ke,e.isDuration=St,e.monthsShort=En,e.weekdaysMin=zn,e.defineLocale=Qe,e.updateLocale=Xe,e.locales=et,e.weekdaysShort=Nn,e.normalizeUnits=C,e.relativeTimeRounding=us,e.relativeTimeThreshold=ds,e.calendarFormat=Nt,e.prototype=Ei,e});
1
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.moment=t()}(this,function(){"use strict";function e(){return _t.apply(null,arguments)}function t(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function n(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function s(e){var t;for(t in e)return!1;return!0}function i(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function r(e,t){var n,s=[];for(n=0;n<e.length;++n)s.push(t(e[n],n));return s}function a(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function o(e,t){for(var n in t)a(t,n)&&(e[n]=t[n]);return a(t,"toString")&&(e.toString=t.toString),a(t,"valueOf")&&(e.valueOf=t.valueOf),e}function u(e,t,n,s){return Ue(e,t,n,s,!0).utc()}function d(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1,parsedDateParts:[],meridiem:null}}function l(e){return null==e._pf&&(e._pf=d()),e._pf}function h(e){if(null==e._isValid){var t=l(e),n=yt.call(t.parsedDateParts,function(e){return null!=e}),s=!isNaN(e._d.getTime())&&t.overflow<0&&!t.empty&&!t.invalidMonth&&!t.invalidWeekday&&!t.nullInput&&!t.invalidFormat&&!t.userInvalidated&&(!t.meridiem||t.meridiem&&n);if(e._strict&&(s=s&&0===t.charsLeftOver&&0===t.unusedTokens.length&&void 0===t.bigHour),null!=Object.isFrozen&&Object.isFrozen(e))return s;e._isValid=s}return e._isValid}function c(e){var t=u(NaN);return null!=e?o(l(t),e):l(t).userInvalidated=!0,t}function f(e){return void 0===e}function m(e,t){var n,s,i;if(f(t._isAMomentObject)||(e._isAMomentObject=t._isAMomentObject),f(t._i)||(e._i=t._i),f(t._f)||(e._f=t._f),f(t._l)||(e._l=t._l),f(t._strict)||(e._strict=t._strict),f(t._tzm)||(e._tzm=t._tzm),f(t._isUTC)||(e._isUTC=t._isUTC),f(t._offset)||(e._offset=t._offset),f(t._pf)||(e._pf=l(t)),f(t._locale)||(e._locale=t._locale),gt.length>0)for(n in gt)f(i=t[s=gt[n]])||(e[s]=i);return e}function _(t){m(this,t),this._d=new Date(null!=t._d?t._d.getTime():NaN),!1===pt&&(pt=!0,e.updateOffset(this),pt=!1)}function y(e){return e instanceof _||null!=e&&null!=e._isAMomentObject}function g(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function p(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=g(t)),n}function w(e,t,n){var s,i=Math.min(e.length,t.length),r=Math.abs(e.length-t.length),a=0;for(s=0;s<i;s++)(n&&e[s]!==t[s]||!n&&p(e[s])!==p(t[s]))&&a++;return a+r}function v(t){!1===e.suppressDeprecationWarnings&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+t)}function S(t,n){var s=!0;return o(function(){if(null!=e.deprecationHandler&&e.deprecationHandler(null,t),s){for(var i,r=[],a=0;a<arguments.length;a++){if(i="","object"==typeof arguments[a]){i+="\n["+a+"] ";for(var o in arguments[0])i+=o+": "+arguments[0][o]+", ";i=i.slice(0,-2)}else i=arguments[a];r.push(i)}v(t+"\nArguments: "+Array.prototype.slice.call(r).join("")+"\n"+(new Error).stack),s=!1}return n.apply(this,arguments)},n)}function M(t,n){null!=e.deprecationHandler&&e.deprecationHandler(t,n),wt[t]||(v(n),wt[t]=!0)}function k(e){return e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}function D(e,t){var s,i=o({},e);for(s in t)a(t,s)&&(n(e[s])&&n(t[s])?(i[s]={},o(i[s],e[s]),o(i[s],t[s])):null!=t[s]?i[s]=t[s]:delete i[s]);for(s in e)a(e,s)&&!a(t,s)&&n(e[s])&&(i[s]=o({},i[s]));return i}function Y(e){null!=e&&this.set(e)}function x(e,t){var n=e.toLowerCase();xt[n]=xt[n+"s"]=xt[t]=e}function O(e){return"string"==typeof e?xt[e]||xt[e.toLowerCase()]:void 0}function b(e){var t,n,s={};for(n in e)a(e,n)&&(t=O(n))&&(s[t]=e[n]);return s}function T(e,t){Ot[e]=t}function P(e){var t=[];for(var n in e)t.push({unit:n,priority:Ot[n]});return t.sort(function(e,t){return e.priority-t.priority}),t}function W(t,n){return function(s){return null!=s?(U(this,t,s),e.updateOffset(this,n),this):R(this,t)}}function R(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function U(e,t,n){e.isValid()&&e._d["set"+(e._isUTC?"UTC":"")+t](n)}function C(e,t,n){var s=""+Math.abs(e),i=t-s.length;return(e>=0?n?"+":"":"-")+Math.pow(10,Math.max(0,i)).toString().substr(1)+s}function F(e,t,n,s){var i=s;"string"==typeof s&&(i=function(){return this[s]()}),e&&(Wt[e]=i),t&&(Wt[t[0]]=function(){return C(i.apply(this,arguments),t[1],t[2])}),n&&(Wt[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function H(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function L(e){var t,n,s=e.match(bt);for(t=0,n=s.length;t<n;t++)Wt[s[t]]?s[t]=Wt[s[t]]:s[t]=H(s[t]);return function(t){var i,r="";for(i=0;i<n;i++)r+=s[i]instanceof Function?s[i].call(t,e):s[i];return r}}function G(e,t){return e.isValid()?(t=V(t,e.localeData()),Pt[t]=Pt[t]||L(t),Pt[t](e)):e.localeData().invalidDate()}function V(e,t){var n=5;for(Tt.lastIndex=0;n>=0&&Tt.test(e);)e=e.replace(Tt,function(e){return t.longDateFormat(e)||e}),Tt.lastIndex=0,n-=1;return e}function j(e,t,n){Bt[e]=k(t)?t:function(e,s){return e&&n?n:t}}function A(e,t){return a(Bt,e)?Bt[e](t._strict,t._locale):new RegExp(E(e))}function E(e){return I(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(e,t,n,s,i){return t||n||s||i}))}function I(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function N(e,t){var n,s=t;for("string"==typeof e&&(e=[e]),"number"==typeof t&&(s=function(e,n){n[t]=p(e)}),n=0;n<e.length;n++)Jt[e[n]]=s}function z(e,t){N(e,function(e,n,s,i){s._w=s._w||{},t(e,s._w,s,i)})}function Z(e,t,n){null!=t&&a(Jt,e)&&Jt[e](t,n._a,n,e)}function q(e,t){return new Date(Date.UTC(e,t+1,0)).getUTCDate()}function $(e,t,n){var s,i,r,a=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],s=0;s<12;++s)r=u([2e3,s]),this._shortMonthsParse[s]=this.monthsShort(r,"").toLocaleLowerCase(),this._longMonthsParse[s]=this.months(r,"").toLocaleLowerCase();return n?"MMM"===t?-1!==(i=St.call(this._shortMonthsParse,a))?i:null:-1!==(i=St.call(this._longMonthsParse,a))?i:null:"MMM"===t?-1!==(i=St.call(this._shortMonthsParse,a))?i:-1!==(i=St.call(this._longMonthsParse,a))?i:null:-1!==(i=St.call(this._longMonthsParse,a))?i:-1!==(i=St.call(this._shortMonthsParse,a))?i:null}function B(e,t){var n;if(!e.isValid())return e;if("string"==typeof t)if(/^\d+$/.test(t))t=p(t);else if("number"!=typeof(t=e.localeData().monthsParse(t)))return e;return n=Math.min(e.date(),q(e.year(),t)),e._d["set"+(e._isUTC?"UTC":"")+"Month"](t,n),e}function J(t){return null!=t?(B(this,t),e.updateOffset(this,!0),this):R(this,"Month")}function Q(){function e(e,t){return t.length-e.length}var t,n,s=[],i=[],r=[];for(t=0;t<12;t++)n=u([2e3,t]),s.push(this.monthsShort(n,"")),i.push(this.months(n,"")),r.push(this.months(n,"")),r.push(this.monthsShort(n,""));for(s.sort(e),i.sort(e),r.sort(e),t=0;t<12;t++)s[t]=I(s[t]),i[t]=I(i[t]);for(t=0;t<24;t++)r[t]=I(r[t]);this._monthsRegex=new RegExp("^("+r.join("|")+")","i"),this._monthsShortRegex=this._monthsRegex,this._monthsStrictRegex=new RegExp("^("+i.join("|")+")","i"),this._monthsShortStrictRegex=new RegExp("^("+s.join("|")+")","i")}function X(e){return K(e)?366:365}function K(e){return e%4==0&&e%100!=0||e%400==0}function ee(e,t,n,s,i,r,a){var o=new Date(e,t,n,s,i,r,a);return e<100&&e>=0&&isFinite(o.getFullYear())&&o.setFullYear(e),o}function te(e){var t=new Date(Date.UTC.apply(null,arguments));return e<100&&e>=0&&isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e),t}function ne(e,t,n){var s=7+t-n;return-((7+te(e,0,s).getUTCDay()-t)%7)+s-1}function se(e,t,n,s,i){var r,a,o=1+7*(t-1)+(7+n-s)%7+ne(e,s,i);return o<=0?a=X(r=e-1)+o:o>X(e)?(r=e+1,a=o-X(e)):(r=e,a=o),{year:r,dayOfYear:a}}function ie(e,t,n){var s,i,r=ne(e.year(),t,n),a=Math.floor((e.dayOfYear()-r-1)/7)+1;return a<1?s=a+re(i=e.year()-1,t,n):a>re(e.year(),t,n)?(s=a-re(e.year(),t,n),i=e.year()+1):(i=e.year(),s=a),{week:s,year:i}}function re(e,t,n){var s=ne(e,t,n),i=ne(e+1,t,n);return(X(e)-s+i)/7}function ae(e,t){return"string"!=typeof e?e:isNaN(e)?"number"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}function oe(e,t){return"string"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function ue(e,t,n){var s,i,r,a=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],s=0;s<7;++s)r=u([2e3,1]).day(s),this._minWeekdaysParse[s]=this.weekdaysMin(r,"").toLocaleLowerCase(),this._shortWeekdaysParse[s]=this.weekdaysShort(r,"").toLocaleLowerCase(),this._weekdaysParse[s]=this.weekdays(r,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(i=St.call(this._weekdaysParse,a))?i:null:"ddd"===t?-1!==(i=St.call(this._shortWeekdaysParse,a))?i:null:-1!==(i=St.call(this._minWeekdaysParse,a))?i:null:"dddd"===t?-1!==(i=St.call(this._weekdaysParse,a))?i:-1!==(i=St.call(this._shortWeekdaysParse,a))?i:-1!==(i=St.call(this._minWeekdaysParse,a))?i:null:"ddd"===t?-1!==(i=St.call(this._shortWeekdaysParse,a))?i:-1!==(i=St.call(this._weekdaysParse,a))?i:-1!==(i=St.call(this._minWeekdaysParse,a))?i:null:-1!==(i=St.call(this._minWeekdaysParse,a))?i:-1!==(i=St.call(this._weekdaysParse,a))?i:-1!==(i=St.call(this._shortWeekdaysParse,a))?i:null}function de(){function e(e,t){return t.length-e.length}var t,n,s,i,r,a=[],o=[],d=[],l=[];for(t=0;t<7;t++)n=u([2e3,1]).day(t),s=this.weekdaysMin(n,""),i=this.weekdaysShort(n,""),r=this.weekdays(n,""),a.push(s),o.push(i),d.push(r),l.push(s),l.push(i),l.push(r);for(a.sort(e),o.sort(e),d.sort(e),l.sort(e),t=0;t<7;t++)o[t]=I(o[t]),d[t]=I(d[t]),l[t]=I(l[t]);this._weekdaysRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+d.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+o.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+a.join("|")+")","i")}function le(){return this.hours()%12||12}function he(e,t){F(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function ce(e,t){return t._meridiemParse}function fe(e){return e?e.toLowerCase().replace("_","-"):e}function me(e){for(var t,n,s,i,r=0;r<e.length;){for(t=(i=fe(e[r]).split("-")).length,n=(n=fe(e[r+1]))?n.split("-"):null;t>0;){if(s=_e(i.slice(0,t).join("-")))return s;if(n&&n.length>=t&&w(i,n,!0)>=t-1)break;t--}r++}return null}function _e(e){var t=null;if(!Dn[e]&&"undefined"!=typeof module&&module&&module.exports)try{t=vn._abbr,require("./locale/"+e),ye(t)}catch(e){}return Dn[e]}function ye(e,t){var n;return e&&(n=f(t)?pe(e):ge(e,t))&&(vn=n),vn._abbr}function ge(e,t){if(null!==t){var n=kn;return t.abbr=e,null!=Dn[e]?(M("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),n=Dn[e]._config):null!=t.parentLocale&&(null!=Dn[t.parentLocale]?n=Dn[t.parentLocale]._config:M("parentLocaleUndefined","specified parentLocale is not defined yet. See http://momentjs.com/guides/#/warnings/parent-locale/")),Dn[e]=new Y(D(n,t)),ye(e),Dn[e]}return delete Dn[e],null}function pe(e){var n;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return vn;if(!t(e)){if(n=_e(e))return n;e=[e]}return me(e)}function we(e){var t,n=e._a;return n&&-2===l(e).overflow&&(t=n[Xt]<0||n[Xt]>11?Xt:n[Kt]<1||n[Kt]>q(n[Qt],n[Xt])?Kt:n[en]<0||n[en]>24||24===n[en]&&(0!==n[tn]||0!==n[nn]||0!==n[sn])?en:n[tn]<0||n[tn]>59?tn:n[nn]<0||n[nn]>59?nn:n[sn]<0||n[sn]>999?sn:-1,l(e)._overflowDayOfYear&&(t<Qt||t>Kt)&&(t=Kt),l(e)._overflowWeeks&&-1===t&&(t=rn),l(e)._overflowWeekday&&-1===t&&(t=an),l(e).overflow=t),e}function ve(e){var t,n,s,i,r,a,o=e._i,u=Yn.exec(o)||xn.exec(o);if(u){for(l(e).iso=!0,t=0,n=bn.length;t<n;t++)if(bn[t][1].exec(u[1])){i=bn[t][0],s=!1!==bn[t][2];break}if(null==i)return void(e._isValid=!1);if(u[3]){for(t=0,n=Tn.length;t<n;t++)if(Tn[t][1].exec(u[3])){r=(u[2]||" ")+Tn[t][0];break}if(null==r)return void(e._isValid=!1)}if(!s&&null!=r)return void(e._isValid=!1);if(u[4]){if(!On.exec(u[4]))return void(e._isValid=!1);a="Z"}e._f=i+(r||"")+(a||""),xe(e)}else e._isValid=!1}function Se(t){var n=Pn.exec(t._i);null===n?(ve(t),!1===t._isValid&&(delete t._isValid,e.createFromInputFallback(t))):t._d=new Date(+n[1])}function Me(e,t,n){return null!=e?e:null!=t?t:n}function ke(t){var n=new Date(e.now());return t._useUTC?[n.getUTCFullYear(),n.getUTCMonth(),n.getUTCDate()]:[n.getFullYear(),n.getMonth(),n.getDate()]}function De(e){var t,n,s,i,r=[];if(!e._d){for(s=ke(e),e._w&&null==e._a[Kt]&&null==e._a[Xt]&&Ye(e),e._dayOfYear&&(i=Me(e._a[Qt],s[Qt]),e._dayOfYear>X(i)&&(l(e)._overflowDayOfYear=!0),n=te(i,0,e._dayOfYear),e._a[Xt]=n.getUTCMonth(),e._a[Kt]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=r[t]=s[t];for(;t<7;t++)e._a[t]=r[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[en]&&0===e._a[tn]&&0===e._a[nn]&&0===e._a[sn]&&(e._nextDay=!0,e._a[en]=0),e._d=(e._useUTC?te:ee).apply(null,r),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[en]=24)}}function Ye(e){var t,n,s,i,r,a,o,u;null!=(t=e._w).GG||null!=t.W||null!=t.E?(r=1,a=4,n=Me(t.GG,e._a[Qt],ie(Ce(),1,4).year),s=Me(t.W,1),((i=Me(t.E,1))<1||i>7)&&(u=!0)):(r=e._locale._week.dow,a=e._locale._week.doy,n=Me(t.gg,e._a[Qt],ie(Ce(),r,a).year),s=Me(t.w,1),null!=t.d?((i=t.d)<0||i>6)&&(u=!0):null!=t.e?(i=t.e+r,(t.e<0||t.e>6)&&(u=!0)):i=r),s<1||s>re(n,r,a)?l(e)._overflowWeeks=!0:null!=u?l(e)._overflowWeekday=!0:(o=se(n,s,i,r,a),e._a[Qt]=o.year,e._dayOfYear=o.dayOfYear)}function xe(t){if(t._f!==e.ISO_8601){t._a=[],l(t).empty=!0;var n,s,i,r,a,o=""+t._i,u=o.length,d=0;for(i=V(t._f,t._locale).match(bt)||[],n=0;n<i.length;n++)r=i[n],(s=(o.match(A(r,t))||[])[0])&&((a=o.substr(0,o.indexOf(s))).length>0&&l(t).unusedInput.push(a),o=o.slice(o.indexOf(s)+s.length),d+=s.length),Wt[r]?(s?l(t).empty=!1:l(t).unusedTokens.push(r),Z(r,s,t)):t._strict&&!s&&l(t).unusedTokens.push(r);l(t).charsLeftOver=u-d,o.length>0&&l(t).unusedInput.push(o),t._a[en]<=12&&!0===l(t).bigHour&&t._a[en]>0&&(l(t).bigHour=void 0),l(t).parsedDateParts=t._a.slice(0),l(t).meridiem=t._meridiem,t._a[en]=Oe(t._locale,t._a[en],t._meridiem),De(t),we(t)}else ve(t)}function Oe(e,t,n){var s;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((s=e.isPM(n))&&t<12&&(t+=12),s||12!==t||(t=0),t):t}function be(e){var t,n,s,i,r;if(0===e._f.length)return l(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;i<e._f.length;i++)r=0,t=m({},e),null!=e._useUTC&&(t._useUTC=e._useUTC),t._f=e._f[i],xe(t),h(t)&&(r+=l(t).charsLeftOver,r+=10*l(t).unusedTokens.length,l(t).score=r,(null==s||r<s)&&(s=r,n=t));o(e,n||t)}function Te(e){if(!e._d){var t=b(e._i);e._a=r([t.year,t.month,t.day||t.date,t.hour,t.minute,t.second,t.millisecond],function(e){return e&&parseInt(e,10)}),De(e)}}function Pe(e){var t=new _(we(We(e)));return t._nextDay&&(t.add(1,"d"),t._nextDay=void 0),t}function We(e){var n=e._i,s=e._f;return e._locale=e._locale||pe(e._l),null===n||void 0===s&&""===n?c({nullInput:!0}):("string"==typeof n&&(e._i=n=e._locale.preparse(n)),y(n)?new _(we(n)):(t(s)?be(e):i(n)?e._d=n:s?xe(e):Re(e),h(e)||(e._d=null),e))}function Re(n){var s=n._i;void 0===s?n._d=new Date(e.now()):i(s)?n._d=new Date(s.valueOf()):"string"==typeof s?Se(n):t(s)?(n._a=r(s.slice(0),function(e){return parseInt(e,10)}),De(n)):"object"==typeof s?Te(n):"number"==typeof s?n._d=new Date(s):e.createFromInputFallback(n)}function Ue(e,i,r,a,o){var u={};return"boolean"==typeof r&&(a=r,r=void 0),(n(e)&&s(e)||t(e)&&0===e.length)&&(e=void 0),u._isAMomentObject=!0,u._useUTC=u._isUTC=o,u._l=r,u._i=e,u._f=i,u._strict=a,Pe(u)}function Ce(e,t,n,s){return Ue(e,t,n,s,!1)}function Fe(e,n){var s,i;if(1===n.length&&t(n[0])&&(n=n[0]),!n.length)return Ce();for(s=n[0],i=1;i<n.length;++i)n[i].isValid()&&!n[i][e](s)||(s=n[i]);return s}function He(e){var t=b(e),n=t.year||0,s=t.quarter||0,i=t.month||0,r=t.week||0,a=t.day||0,o=t.hour||0,u=t.minute||0,d=t.second||0,l=t.millisecond||0;this._milliseconds=+l+1e3*d+6e4*u+1e3*o*60*60,this._days=+a+7*r,this._months=+i+3*s+12*n,this._data={},this._locale=pe(),this._bubble()}function Le(e){return e instanceof He}function Ge(e){return e<0?-1*Math.round(-1*e):Math.round(e)}function Ve(e,t){F(e,0,0,function(){var e=this.utcOffset(),n="+";return e<0&&(e=-e,n="-"),n+C(~~(e/60),2)+t+C(~~e%60,2)})}function je(e,t){var n=(t||"").match(e)||[],s=((n[n.length-1]||[])+"").match(Un)||["-",0,0],i=60*s[1]+p(s[2]);return"+"===s[0]?i:-i}function Ae(t,n){var s,r;return n._isUTC?(s=n.clone(),r=(y(t)||i(t)?t.valueOf():Ce(t).valueOf())-s.valueOf(),s._d.setTime(s._d.valueOf()+r),e.updateOffset(s,!1),s):Ce(t).local()}function Ee(e){return 15*-Math.round(e._d.getTimezoneOffset()/15)}function Ie(){return!!this.isValid()&&(this._isUTC&&0===this._offset)}function Ne(e,t){var n,s,i,r=e,o=null;return Le(e)?r={ms:e._milliseconds,d:e._days,M:e._months}:"number"==typeof e?(r={},t?r[t]=e:r.milliseconds=e):(o=Cn.exec(e))?(n="-"===o[1]?-1:1,r={y:0,d:p(o[Kt])*n,h:p(o[en])*n,m:p(o[tn])*n,s:p(o[nn])*n,ms:p(Ge(1e3*o[sn]))*n}):(o=Fn.exec(e))?(n="-"===o[1]?-1:1,r={y:ze(o[2],n),M:ze(o[3],n),w:ze(o[4],n),d:ze(o[5],n),h:ze(o[6],n),m:ze(o[7],n),s:ze(o[8],n)}):null==r?r={}:"object"==typeof r&&("from"in r||"to"in r)&&(i=qe(Ce(r.from),Ce(r.to)),(r={}).ms=i.milliseconds,r.M=i.months),s=new He(r),Le(e)&&a(e,"_locale")&&(s._locale=e._locale),s}function ze(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function Ze(e,t){var n={milliseconds:0,months:0};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function qe(e,t){var n;return e.isValid()&&t.isValid()?(t=Ae(t,e),e.isBefore(t)?n=Ze(e,t):((n=Ze(t,e)).milliseconds=-n.milliseconds,n.months=-n.months),n):{milliseconds:0,months:0}}function $e(e,t){return function(n,s){var i,r;return null===s||isNaN(+s)||(M(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),r=n,n=s,s=r),n="string"==typeof n?+n:n,i=Ne(n,s),Be(this,i,e),this}}function Be(t,n,s,i){var r=n._milliseconds,a=Ge(n._days),o=Ge(n._months);t.isValid()&&(i=null==i||i,r&&t._d.setTime(t._d.valueOf()+r*s),a&&U(t,"Date",R(t,"Date")+a*s),o&&B(t,R(t,"Month")+o*s),i&&e.updateOffset(t,a||o))}function Je(e,t){var n,s=12*(t.year()-e.year())+(t.month()-e.month()),i=e.clone().add(s,"months");return n=t-i<0?(t-i)/(i-e.clone().add(s-1,"months")):(t-i)/(e.clone().add(s+1,"months")-i),-(s+n)||0}function Qe(e){var t;return void 0===e?this._locale._abbr:(null!=(t=pe(e))&&(this._locale=t),this)}function Xe(){return this._locale}function Ke(e,t){F(0,[e,e.length],0,t)}function et(e,t,n,s,i){var r;return null==e?ie(this,s,i).year:(r=re(e,s,i),t>r&&(t=r),tt.call(this,e,t,n,s,i))}function tt(e,t,n,s,i){var r=se(e,t,n,s,i),a=te(r.year,0,r.dayOfYear);return this.year(a.getUTCFullYear()),this.month(a.getUTCMonth()),this.date(a.getUTCDate()),this}function nt(e){return e}function st(e,t,n,s){var i=pe(),r=u().set(s,t);return i[n](r,e)}function it(e,t,n){if("number"==typeof e&&(t=e,e=void 0),e=e||"",null!=t)return st(e,t,n,"month");var s,i=[];for(s=0;s<12;s++)i[s]=st(e,s,n,"month");return i}function rt(e,t,n,s){"boolean"==typeof e?("number"==typeof t&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,"number"==typeof t&&(n=t,t=void 0),t=t||"");var i=pe(),r=e?i._week.dow:0;if(null!=n)return st(t,(n+r)%7,s,"day");var a,o=[];for(a=0;a<7;a++)o[a]=st(t,(a+r)%7,s,"day");return o}function at(e,t,n,s){var i=Ne(t,n);return e._milliseconds+=s*i._milliseconds,e._days+=s*i._days,e._months+=s*i._months,e._bubble()}function ot(e){return e<0?Math.floor(e):Math.ceil(e)}function ut(e){return 4800*e/146097}function dt(e){return 146097*e/4800}function lt(e){return function(){return this.as(e)}}function ht(e){return function(){return this._data[e]}}function ct(e,t,n,s,i){return i.relativeTime(t||1,!!n,e,s)}function ft(e,t,n){var s=Ne(e).abs(),i=ds(s.as("s")),r=ds(s.as("m")),a=ds(s.as("h")),o=ds(s.as("d")),u=ds(s.as("M")),d=ds(s.as("y")),l=i<ls.s&&["s",i]||r<=1&&["m"]||r<ls.m&&["mm",r]||a<=1&&["h"]||a<ls.h&&["hh",a]||o<=1&&["d"]||o<ls.d&&["dd",o]||u<=1&&["M"]||u<ls.M&&["MM",u]||d<=1&&["y"]||["yy",d];return l[2]=t,l[3]=+e>0,l[4]=n,ct.apply(null,l)}function mt(){var e,t,n,s=hs(this._milliseconds)/1e3,i=hs(this._days),r=hs(this._months);t=g((e=g(s/60))/60),s%=60,e%=60;var a=n=g(r/12),o=r%=12,u=i,d=t,l=e,h=s,c=this.asSeconds();return c?(c<0?"-":"")+"P"+(a?a+"Y":"")+(o?o+"M":"")+(u?u+"D":"")+(d||l||h?"T":"")+(d?d+"H":"")+(l?l+"M":"")+(h?h+"S":""):"P0D"}var _t,yt;yt=Array.prototype.some?Array.prototype.some:function(e){for(var t=Object(this),n=t.length>>>0,s=0;s<n;s++)if(s in t&&e.call(this,t[s],s,t))return!0;return!1};var gt=e.momentProperties=[],pt=!1,wt={};e.suppressDeprecationWarnings=!1,e.deprecationHandler=null;var vt;vt=Object.keys?Object.keys:function(e){var t,n=[];for(t in e)a(e,t)&&n.push(t);return n};var St,Mt={sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},kt={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},Dt=/\d{1,2}/,Yt={future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},xt={},Ot={},bt=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,Tt=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,Pt={},Wt={},Rt=/\d/,Ut=/\d\d/,Ct=/\d{3}/,Ft=/\d{4}/,Ht=/[+-]?\d{6}/,Lt=/\d\d?/,Gt=/\d\d\d\d?/,Vt=/\d\d\d\d\d\d?/,jt=/\d{1,3}/,At=/\d{1,4}/,Et=/[+-]?\d{1,6}/,It=/\d+/,Nt=/[+-]?\d+/,zt=/Z|[+-]\d\d:?\d\d/gi,Zt=/Z|[+-]\d\d(?::?\d\d)?/gi,qt=/[+-]?\d+(\.\d{1,3})?/,$t=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,Bt={},Jt={},Qt=0,Xt=1,Kt=2,en=3,tn=4,nn=5,sn=6,rn=7,an=8;St=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t<this.length;++t)if(this[t]===e)return t;return-1},F("M",["MM",2],"Mo",function(){return this.month()+1}),F("MMM",0,0,function(e){return this.localeData().monthsShort(this,e)}),F("MMMM",0,0,function(e){return this.localeData().months(this,e)}),x("month","M"),T("month",8),j("M",Lt),j("MM",Lt,Ut),j("MMM",function(e,t){return t.monthsShortRegex(e)}),j("MMMM",function(e,t){return t.monthsRegex(e)}),N(["M","MM"],function(e,t){t[Xt]=p(e)-1}),N(["MMM","MMMM"],function(e,t,n,s){var i=n._locale.monthsParse(e,s,n._strict);null!=i?t[Xt]=i:l(n).invalidMonth=e});var on=/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/,un="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),dn="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),ln=$t,hn=$t;F("Y",0,0,function(){var e=this.year();return e<=9999?""+e:"+"+e}),F(0,["YY",2],0,function(){return this.year()%100}),F(0,["YYYY",4],0,"year"),F(0,["YYYYY",5],0,"year"),F(0,["YYYYYY",6,!0],0,"year"),x("year","y"),T("year",1),j("Y",Nt),j("YY",Lt,Ut),j("YYYY",At,Ft),j("YYYYY",Et,Ht),j("YYYYYY",Et,Ht),N(["YYYYY","YYYYYY"],Qt),N("YYYY",function(t,n){n[Qt]=2===t.length?e.parseTwoDigitYear(t):p(t)}),N("YY",function(t,n){n[Qt]=e.parseTwoDigitYear(t)}),N("Y",function(e,t){t[Qt]=parseInt(e,10)}),e.parseTwoDigitYear=function(e){return p(e)+(p(e)>68?1900:2e3)};var cn=W("FullYear",!0);F("w",["ww",2],"wo","week"),F("W",["WW",2],"Wo","isoWeek"),x("week","w"),x("isoWeek","W"),T("week",5),T("isoWeek",5),j("w",Lt),j("ww",Lt,Ut),j("W",Lt),j("WW",Lt,Ut),z(["w","ww","W","WW"],function(e,t,n,s){t[s.substr(0,1)]=p(e)});var fn={dow:0,doy:6};F("d",0,"do","day"),F("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),F("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),F("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),F("e",0,0,"weekday"),F("E",0,0,"isoWeekday"),x("day","d"),x("weekday","e"),x("isoWeekday","E"),T("day",11),T("weekday",11),T("isoWeekday",11),j("d",Lt),j("e",Lt),j("E",Lt),j("dd",function(e,t){return t.weekdaysMinRegex(e)}),j("ddd",function(e,t){return t.weekdaysShortRegex(e)}),j("dddd",function(e,t){return t.weekdaysRegex(e)}),z(["dd","ddd","dddd"],function(e,t,n,s){var i=n._locale.weekdaysParse(e,s,n._strict);null!=i?t.d=i:l(n).invalidWeekday=e}),z(["d","e","E"],function(e,t,n,s){t[s]=p(e)});var mn="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),_n="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),yn="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),gn=$t,pn=$t,wn=$t;F("H",["HH",2],0,"hour"),F("h",["hh",2],0,le),F("k",["kk",2],0,function(){return this.hours()||24}),F("hmm",0,0,function(){return""+le.apply(this)+C(this.minutes(),2)}),F("hmmss",0,0,function(){return""+le.apply(this)+C(this.minutes(),2)+C(this.seconds(),2)}),F("Hmm",0,0,function(){return""+this.hours()+C(this.minutes(),2)}),F("Hmmss",0,0,function(){return""+this.hours()+C(this.minutes(),2)+C(this.seconds(),2)}),he("a",!0),he("A",!1),x("hour","h"),T("hour",13),j("a",ce),j("A",ce),j("H",Lt),j("h",Lt),j("HH",Lt,Ut),j("hh",Lt,Ut),j("hmm",Gt),j("hmmss",Vt),j("Hmm",Gt),j("Hmmss",Vt),N(["H","HH"],en),N(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e}),N(["h","hh"],function(e,t,n){t[en]=p(e),l(n).bigHour=!0}),N("hmm",function(e,t,n){var s=e.length-2;t[en]=p(e.substr(0,s)),t[tn]=p(e.substr(s)),l(n).bigHour=!0}),N("hmmss",function(e,t,n){var s=e.length-4,i=e.length-2;t[en]=p(e.substr(0,s)),t[tn]=p(e.substr(s,2)),t[nn]=p(e.substr(i)),l(n).bigHour=!0}),N("Hmm",function(e,t,n){var s=e.length-2;t[en]=p(e.substr(0,s)),t[tn]=p(e.substr(s))}),N("Hmmss",function(e,t,n){var s=e.length-4,i=e.length-2;t[en]=p(e.substr(0,s)),t[tn]=p(e.substr(s,2)),t[nn]=p(e.substr(i))});var vn,Sn=/[ap]\.?m?\.?/i,Mn=W("Hours",!0),kn={calendar:Mt,longDateFormat:kt,invalidDate:"Invalid date",ordinal:"%d",ordinalParse:Dt,relativeTime:Yt,months:un,monthsShort:dn,week:fn,weekdays:mn,weekdaysMin:yn,weekdaysShort:_n,meridiemParse:Sn},Dn={},Yn=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?/,xn=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?/,On=/Z|[+-]\d\d(?::?\d\d)?/,bn=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],Tn=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Pn=/^\/?Date\((\-?\d+)/i;e.createFromInputFallback=S("value provided is not in a recognized ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non ISO date formats are discouraged and will be removed in an upcoming major release. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(e){e._d=new Date(e._i+(e._useUTC?" UTC":""))}),e.ISO_8601=function(){};var Wn=S("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=Ce.apply(null,arguments);return this.isValid()&&e.isValid()?e<this?this:e:c()}),Rn=S("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=Ce.apply(null,arguments);return this.isValid()&&e.isValid()?e>this?this:e:c()});Ve("Z",":"),Ve("ZZ",""),j("Z",Zt),j("ZZ",Zt),N(["Z","ZZ"],function(e,t,n){n._useUTC=!0,n._tzm=je(Zt,e)});var Un=/([\+\-]|\d\d)/gi;e.updateOffset=function(){};var Cn=/^(\-)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/,Fn=/^(-)?P(?:(-?[0-9,.]*)Y)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)W)?(?:(-?[0-9,.]*)D)?(?:T(?:(-?[0-9,.]*)H)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)S)?)?$/;Ne.fn=He.prototype;var Hn=$e(1,"add"),Ln=$e(-1,"subtract");e.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",e.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var Gn=S("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return void 0===e?this.localeData():this.locale(e)});F(0,["gg",2],0,function(){return this.weekYear()%100}),F(0,["GG",2],0,function(){return this.isoWeekYear()%100}),Ke("gggg","weekYear"),Ke("ggggg","weekYear"),Ke("GGGG","isoWeekYear"),Ke("GGGGG","isoWeekYear"),x("weekYear","gg"),x("isoWeekYear","GG"),T("weekYear",1),T("isoWeekYear",1),j("G",Nt),j("g",Nt),j("GG",Lt,Ut),j("gg",Lt,Ut),j("GGGG",At,Ft),j("gggg",At,Ft),j("GGGGG",Et,Ht),j("ggggg",Et,Ht),z(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,s){t[s.substr(0,2)]=p(e)}),z(["gg","GG"],function(t,n,s,i){n[i]=e.parseTwoDigitYear(t)}),F("Q",0,"Qo","quarter"),x("quarter","Q"),T("quarter",7),j("Q",Rt),N("Q",function(e,t){t[Xt]=3*(p(e)-1)}),F("D",["DD",2],"Do","date"),x("date","D"),T("date",9),j("D",Lt),j("DD",Lt,Ut),j("Do",function(e,t){return e?t._ordinalParse:t._ordinalParseLenient}),N(["D","DD"],Kt),N("Do",function(e,t){t[Kt]=p(e.match(Lt)[0],10)});var Vn=W("Date",!0);F("DDD",["DDDD",3],"DDDo","dayOfYear"),x("dayOfYear","DDD"),T("dayOfYear",4),j("DDD",jt),j("DDDD",Ct),N(["DDD","DDDD"],function(e,t,n){n._dayOfYear=p(e)}),F("m",["mm",2],0,"minute"),x("minute","m"),T("minute",14),j("m",Lt),j("mm",Lt,Ut),N(["m","mm"],tn);var jn=W("Minutes",!1);F("s",["ss",2],0,"second"),x("second","s"),T("second",15),j("s",Lt),j("ss",Lt,Ut),N(["s","ss"],nn);var An=W("Seconds",!1);F("S",0,0,function(){return~~(this.millisecond()/100)}),F(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),F(0,["SSS",3],0,"millisecond"),F(0,["SSSS",4],0,function(){return 10*this.millisecond()}),F(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),F(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),F(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),F(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),F(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),x("millisecond","ms"),T("millisecond",16),j("S",jt,Rt),j("SS",jt,Ut),j("SSS",jt,Ct);var En;for(En="SSSS";En.length<=9;En+="S")j(En,It);for(En="S";En.length<=9;En+="S")N(En,function(e,t){t[sn]=p(1e3*("0."+e))});var In=W("Milliseconds",!1);F("z",0,0,"zoneAbbr"),F("zz",0,0,"zoneName");var Nn=_.prototype;Nn.add=Hn,Nn.calendar=function(t,n){var s=t||Ce(),i=Ae(s,this).startOf("day"),r=e.calendarFormat(this,i)||"sameElse",a=n&&(k(n[r])?n[r].call(this,s):n[r]);return this.format(a||this.localeData().calendar(r,this,Ce(s)))},Nn.clone=function(){return new _(this)},Nn.diff=function(e,t,n){var s,i,r,a;return this.isValid()&&(s=Ae(e,this)).isValid()?(i=6e4*(s.utcOffset()-this.utcOffset()),"year"===(t=O(t))||"month"===t||"quarter"===t?(a=Je(this,s),"quarter"===t?a/=3:"year"===t&&(a/=12)):(r=this-s,a="second"===t?r/1e3:"minute"===t?r/6e4:"hour"===t?r/36e5:"day"===t?(r-i)/864e5:"week"===t?(r-i)/6048e5:r),n?a:g(a)):NaN},Nn.endOf=function(e){return void 0===(e=O(e))||"millisecond"===e?this:("date"===e&&(e="day"),this.startOf(e).add(1,"isoWeek"===e?"week":e).subtract(1,"ms"))},Nn.format=function(t){t||(t=this.isUtc()?e.defaultFormatUtc:e.defaultFormat);var n=G(this,t);return this.localeData().postformat(n)},Nn.from=function(e,t){return this.isValid()&&(y(e)&&e.isValid()||Ce(e).isValid())?Ne({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},Nn.fromNow=function(e){return this.from(Ce(),e)},Nn.to=function(e,t){return this.isValid()&&(y(e)&&e.isValid()||Ce(e).isValid())?Ne({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},Nn.toNow=function(e){return this.to(Ce(),e)},Nn.get=function(e){return e=O(e),k(this[e])?this[e]():this},Nn.invalidAt=function(){return l(this).overflow},Nn.isAfter=function(e,t){var n=y(e)?e:Ce(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=O(f(t)?"millisecond":t))?this.valueOf()>n.valueOf():n.valueOf()<this.clone().startOf(t).valueOf())},Nn.isBefore=function(e,t){var n=y(e)?e:Ce(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=O(f(t)?"millisecond":t))?this.valueOf()<n.valueOf():this.clone().endOf(t).valueOf()<n.valueOf())},Nn.isBetween=function(e,t,n,s){return("("===(s=s||"()")[0]?this.isAfter(e,n):!this.isBefore(e,n))&&(")"===s[1]?this.isBefore(t,n):!this.isAfter(t,n))},Nn.isSame=function(e,t){var n,s=y(e)?e:Ce(e);return!(!this.isValid()||!s.isValid())&&("millisecond"===(t=O(t||"millisecond"))?this.valueOf()===s.valueOf():(n=s.valueOf(),this.clone().startOf(t).valueOf()<=n&&n<=this.clone().endOf(t).valueOf()))},Nn.isSameOrAfter=function(e,t){return this.isSame(e,t)||this.isAfter(e,t)},Nn.isSameOrBefore=function(e,t){return this.isSame(e,t)||this.isBefore(e,t)},Nn.isValid=function(){return h(this)},Nn.lang=Gn,Nn.locale=Qe,Nn.localeData=Xe,Nn.max=Rn,Nn.min=Wn,Nn.parsingFlags=function(){return o({},l(this))},Nn.set=function(e,t){if("object"==typeof e)for(var n=P(e=b(e)),s=0;s<n.length;s++)this[n[s].unit](e[n[s].unit]);else if(e=O(e),k(this[e]))return this[e](t);return this},Nn.startOf=function(e){switch(e=O(e)){case"year":this.month(0);case"quarter":case"month":this.date(1);case"week":case"isoWeek":case"day":case"date":this.hours(0);case"hour":this.minutes(0);case"minute":this.seconds(0);case"second":this.milliseconds(0)}return"week"===e&&this.weekday(0),"isoWeek"===e&&this.isoWeekday(1),"quarter"===e&&this.month(3*Math.floor(this.month()/3)),this},Nn.subtract=Ln,Nn.toArray=function(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]},Nn.toObject=function(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}},Nn.toDate=function(){return new Date(this.valueOf())},Nn.toISOString=function(){var e=this.clone().utc();return 0<e.year()&&e.year()<=9999?k(Date.prototype.toISOString)?this.toDate().toISOString():G(e,"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]"):G(e,"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]")},Nn.toJSON=function(){return this.isValid()?this.toISOString():null},Nn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},Nn.unix=function(){return Math.floor(this.valueOf()/1e3)},Nn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},Nn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},Nn.year=cn,Nn.isLeapYear=function(){return K(this.year())},Nn.weekYear=function(e){return et.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},Nn.isoWeekYear=function(e){return et.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},Nn.quarter=Nn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},Nn.month=J,Nn.daysInMonth=function(){return q(this.year(),this.month())},Nn.week=Nn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")},Nn.isoWeek=Nn.isoWeeks=function(e){var t=ie(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")},Nn.weeksInYear=function(){var e=this.localeData()._week;return re(this.year(),e.dow,e.doy)},Nn.isoWeeksInYear=function(){return re(this.year(),1,4)},Nn.date=Vn,Nn.day=Nn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=ae(e,this.localeData()),this.add(e-t,"d")):t},Nn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")},Nn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=oe(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},Nn.dayOfYear=function(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")},Nn.hour=Nn.hours=Mn,Nn.minute=Nn.minutes=jn,Nn.second=Nn.seconds=An,Nn.millisecond=Nn.milliseconds=In,Nn.utcOffset=function(t,n){var s,i=this._offset||0;return this.isValid()?null!=t?("string"==typeof t?t=je(Zt,t):Math.abs(t)<16&&(t*=60),!this._isUTC&&n&&(s=Ee(this)),this._offset=t,this._isUTC=!0,null!=s&&this.add(s,"m"),i!==t&&(!n||this._changeInProgress?Be(this,Ne(t-i,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,e.updateOffset(this,!0),this._changeInProgress=null)),this):this._isUTC?i:Ee(this):null!=t?this:NaN},Nn.utc=function(e){return this.utcOffset(0,e)},Nn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(Ee(this),"m")),this},Nn.parseZone=function(){return this._tzm?this.utcOffset(this._tzm):"string"==typeof this._i&&(0===je(zt,this._i)?this.utcOffset(0,!0):this.utcOffset(je(zt,this._i))),this},Nn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?Ce(e).utcOffset():0,(this.utcOffset()-e)%60==0)},Nn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},Nn.isLocal=function(){return!!this.isValid()&&!this._isUTC},Nn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},Nn.isUtc=Ie,Nn.isUTC=Ie,Nn.zoneAbbr=function(){return this._isUTC?"UTC":""},Nn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},Nn.dates=S("dates accessor is deprecated. Use date instead.",Vn),Nn.months=S("months accessor is deprecated. Use month instead",J),Nn.years=S("years accessor is deprecated. Use year instead",cn),Nn.zone=S("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(e,t){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()}),Nn.isDSTShifted=S("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!f(this._isDSTShifted))return this._isDSTShifted;var e={};if(m(e,this),(e=We(e))._a){var t=e._isUTC?u(e._a):Ce(e._a);this._isDSTShifted=this.isValid()&&w(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted});var zn=Nn,Zn=Y.prototype;Zn.calendar=function(e,t,n){var s=this._calendar[e]||this._calendar.sameElse;return k(s)?s.call(t,n):s},Zn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,function(e){return e.slice(1)}),this._longDateFormat[e])},Zn.invalidDate=function(){return this._invalidDate},Zn.ordinal=function(e){return this._ordinal.replace("%d",e)},Zn.preparse=nt,Zn.postformat=nt,Zn.relativeTime=function(e,t,n,s){var i=this._relativeTime[n];return k(i)?i(e,t,n,s):i.replace(/%d/i,e)},Zn.pastFuture=function(e,t){var n=this._relativeTime[e>0?"future":"past"];return k(n)?n(t):n.replace(/%s/i,t)},Zn.set=function(e){var t,n;for(n in e)k(t=e[n])?this[n]=t:this["_"+n]=t;this._config=e,this._ordinalParseLenient=new RegExp(this._ordinalParse.source+"|"+/\d{1,2}/.source)},Zn.months=function(e,n){return e?t(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||on).test(n)?"format":"standalone"][e.month()]:this._months},Zn.monthsShort=function(e,n){return e?t(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[on.test(n)?"format":"standalone"][e.month()]:this._monthsShort},Zn.monthsParse=function(e,t,n){var s,i,r;if(this._monthsParseExact)return $.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),s=0;s<12;s++){if(i=u([2e3,s]),n&&!this._longMonthsParse[s]&&(this._longMonthsParse[s]=new RegExp("^"+this.months(i,"").replace(".","")+"$","i"),this._shortMonthsParse[s]=new RegExp("^"+this.monthsShort(i,"").replace(".","")+"$","i")),n||this._monthsParse[s]||(r="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[s]=new RegExp(r.replace(".",""),"i")),n&&"MMMM"===t&&this._longMonthsParse[s].test(e))return s;if(n&&"MMM"===t&&this._shortMonthsParse[s].test(e))return s;if(!n&&this._monthsParse[s].test(e))return s}},Zn.monthsRegex=function(e){return this._monthsParseExact?(a(this,"_monthsRegex")||Q.call(this),e?this._monthsStrictRegex:this._monthsRegex):(a(this,"_monthsRegex")||(this._monthsRegex=hn),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},Zn.monthsShortRegex=function(e){return this._monthsParseExact?(a(this,"_monthsRegex")||Q.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(a(this,"_monthsShortRegex")||(this._monthsShortRegex=ln),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},Zn.week=function(e){return ie(e,this._week.dow,this._week.doy).week},Zn.firstDayOfYear=function(){return this._week.doy},Zn.firstDayOfWeek=function(){return this._week.dow},Zn.weekdays=function(e,n){return e?t(this._weekdays)?this._weekdays[e.day()]:this._weekdays[this._weekdays.isFormat.test(n)?"format":"standalone"][e.day()]:this._weekdays},Zn.weekdaysMin=function(e){return e?this._weekdaysMin[e.day()]:this._weekdaysMin},Zn.weekdaysShort=function(e){return e?this._weekdaysShort[e.day()]:this._weekdaysShort},Zn.weekdaysParse=function(e,t,n){var s,i,r;if(this._weekdaysParseExact)return ue.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),s=0;s<7;s++){if(i=u([2e3,1]).day(s),n&&!this._fullWeekdaysParse[s]&&(this._fullWeekdaysParse[s]=new RegExp("^"+this.weekdays(i,"").replace(".",".?")+"$","i"),this._shortWeekdaysParse[s]=new RegExp("^"+this.weekdaysShort(i,"").replace(".",".?")+"$","i"),this._minWeekdaysParse[s]=new RegExp("^"+this.weekdaysMin(i,"").replace(".",".?")+"$","i")),this._weekdaysParse[s]||(r="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[s]=new RegExp(r.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[s].test(e))return s;if(n&&"ddd"===t&&this._shortWeekdaysParse[s].test(e))return s;if(n&&"dd"===t&&this._minWeekdaysParse[s].test(e))return s;if(!n&&this._weekdaysParse[s].test(e))return s}},Zn.weekdaysRegex=function(e){return this._weekdaysParseExact?(a(this,"_weekdaysRegex")||de.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(a(this,"_weekdaysRegex")||(this._weekdaysRegex=gn),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},Zn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(a(this,"_weekdaysRegex")||de.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(a(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=pn),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},Zn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(a(this,"_weekdaysRegex")||de.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(a(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=wn),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},Zn.isPM=function(e){return"p"===(e+"").toLowerCase().charAt(0)},Zn.meridiem=function(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"},ye("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===p(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),e.lang=S("moment.lang is deprecated. Use moment.locale instead.",ye),e.langData=S("moment.langData is deprecated. Use moment.localeData instead.",pe);var qn=Math.abs,$n=lt("ms"),Bn=lt("s"),Jn=lt("m"),Qn=lt("h"),Xn=lt("d"),Kn=lt("w"),es=lt("M"),ts=lt("y"),ns=ht("milliseconds"),ss=ht("seconds"),is=ht("minutes"),rs=ht("hours"),as=ht("days"),os=ht("months"),us=ht("years"),ds=Math.round,ls={s:45,m:45,h:22,d:26,M:11},hs=Math.abs,cs=He.prototype;return cs.abs=function(){var e=this._data;return this._milliseconds=qn(this._milliseconds),this._days=qn(this._days),this._months=qn(this._months),e.milliseconds=qn(e.milliseconds),e.seconds=qn(e.seconds),e.minutes=qn(e.minutes),e.hours=qn(e.hours),e.months=qn(e.months),e.years=qn(e.years),this},cs.add=function(e,t){return at(this,e,t,1)},cs.subtract=function(e,t){return at(this,e,t,-1)},cs.as=function(e){var t,n,s=this._milliseconds;if("month"===(e=O(e))||"year"===e)return t=this._days+s/864e5,n=this._months+ut(t),"month"===e?n:n/12;switch(t=this._days+Math.round(dt(this._months)),e){case"week":return t/7+s/6048e5;case"day":return t+s/864e5;case"hour":return 24*t+s/36e5;case"minute":return 1440*t+s/6e4;case"second":return 86400*t+s/1e3;case"millisecond":return Math.floor(864e5*t)+s;default:throw new Error("Unknown unit "+e)}},cs.asMilliseconds=$n,cs.asSeconds=Bn,cs.asMinutes=Jn,cs.asHours=Qn,cs.asDays=Xn,cs.asWeeks=Kn,cs.asMonths=es,cs.asYears=ts,cs.valueOf=function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*p(this._months/12)},cs._bubble=function(){var e,t,n,s,i,r=this._milliseconds,a=this._days,o=this._months,u=this._data;return r>=0&&a>=0&&o>=0||r<=0&&a<=0&&o<=0||(r+=864e5*ot(dt(o)+a),a=0,o=0),u.milliseconds=r%1e3,e=g(r/1e3),u.seconds=e%60,t=g(e/60),u.minutes=t%60,n=g(t/60),u.hours=n%24,a+=g(n/24),i=g(ut(a)),o+=i,a-=ot(dt(i)),s=g(o/12),o%=12,u.days=a,u.months=o,u.years=s,this},cs.get=function(e){return e=O(e),this[e+"s"]()},cs.milliseconds=ns,cs.seconds=ss,cs.minutes=is,cs.hours=rs,cs.days=as,cs.weeks=function(){return g(this.days()/7)},cs.months=os,cs.years=us,cs.humanize=function(e){var t=this.localeData(),n=ft(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},cs.toISOString=mt,cs.toString=mt,cs.toJSON=mt,cs.locale=Qe,cs.localeData=Xe,cs.toIsoString=S("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",mt),cs.lang=Gn,F("X",0,0,"unix"),F("x",0,0,"valueOf"),j("x",Nt),j("X",qt),N("X",function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))}),N("x",function(e,t,n){n._d=new Date(p(e))}),e.version="2.15.1",function(e){_t=e}(Ce),e.fn=zn,e.min=function(){return Fe("isBefore",[].slice.call(arguments,0))},e.max=function(){return Fe("isAfter",[].slice.call(arguments,0))},e.now=function(){return Date.now?Date.now():+new Date},e.utc=u,e.unix=function(e){return Ce(1e3*e)},e.months=function(e,t){return it(e,t,"months")},e.isDate=i,e.locale=ye,e.invalid=c,e.duration=Ne,e.isMoment=y,e.weekdays=function(e,t,n){return rt(e,t,n,"weekdays")},e.parseZone=function(){return Ce.apply(null,arguments).parseZone()},e.localeData=pe,e.isDuration=Le,e.monthsShort=function(e,t){return it(e,t,"monthsShort")},e.weekdaysMin=function(e,t,n){return rt(e,t,n,"weekdaysMin")},e.defineLocale=ge,e.updateLocale=function(e,t){if(null!=t){var n,s=kn;null!=Dn[e]&&(s=Dn[e]._config),(n=new Y(t=D(s,t))).parentLocale=Dn[e],Dn[e]=n,ye(e)}else null!=Dn[e]&&(null!=Dn[e].parentLocale?Dn[e]=Dn[e].parentLocale:null!=Dn[e]&&delete Dn[e]);return Dn[e]},e.locales=function(){return vt(Dn)},e.weekdaysShort=function(e,t,n){return rt(e,t,n,"weekdaysShort")},e.normalizeUnits=O,e.relativeTimeRounding=function(e){return void 0===e?ds:"function"==typeof e&&(ds=e,!0)},e.relativeTimeThreshold=function(e,t){return void 0!==ls[e]&&(void 0===t?ls[e]:(ls[e]=t,!0))},e.calendarFormat=function(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},e.prototype=zn,e});
bp-core/js/webcam.min.js CHANGED
@@ -1 +1 @@
1
- window.bp=window.bp||{},function(){"undefined"!=typeof BP_Uploader&&(bp.Models=bp.Models||{},bp.Collections=bp.Collections||{},bp.Views=bp.Views||{},bp.WebCam={start:function(){this.params={video:null,videoStream:null,capture_enable:!1,capture:null,canvas:null,warning:null,flipped:!1},bp.Avatar.nav.on("bp-avatar-view:changed",_.bind(this.setView,this))},setView:function(e){if("camera"===e){var a=new bp.Views.WebCamAvatar({model:new Backbone.Model({user_media:!1})});this.params.flipped=!1,bp.Avatar.views.add({id:"camera",view:a}),a.inject(".bp-avatar")}else _.isNull(this.params.video)||(this.stop(),this.removeWarning())},removeView:function(){var e;_.isUndefined(bp.Avatar.views.get("camera"))||((e=bp.Avatar.views.get("camera")).get("view").remove(),bp.Avatar.views.remove({id:"camera",view:e}))},gotStream:function(e){var a=bp.WebCam.params.video;bp.WebCam.params.videoStream=e,bp.WebCam.displayWarning("loaded"),a.onerror=function(){bp.WebCam.displayWarning("videoerror"),a&&bp.WebCam.stop()},e.onended=bp.WebCam.noStream(),void 0!==a.mozSrcObject?(a.mozSrcObject=e,a.play()):navigator.mozGetUserMedia?(a.src=e,a.play()):void 0!==a.srcObject?a.srcObject=e:window.URL?a.src=window.URL.createObjectURL(e):a.src=e,bp.WebCam.params.capture_enable=!0},stop:function(){bp.WebCam.params.capture_enable=!1,bp.WebCam.params.videoStream&&(bp.WebCam.params.videoStream.stop?bp.WebCam.params.videoStream.stop():bp.WebCam.params.videoStream.msStop&&bp.WebCam.params.videoStream.msStop(),bp.WebCam.params.videoStream.onended=null,bp.WebCam.params.videoStream=null),bp.WebCam.params.video&&(bp.WebCam.params.video.onerror=null,bp.WebCam.params.video.pause(),bp.WebCam.params.video.mozSrcObject&&(bp.WebCam.params.video.mozSrcObject=null),bp.WebCam.params.video.src="")},noStream:function(){_.isNull(bp.WebCam.params.videoStream)&&(bp.WebCam.displayWarning("noaccess"),bp.WebCam.removeView())},setAvatar:function(e){e.get("url")||bp.WebCam.displayWarning("nocapture"),bp.WebCam.removeView(),bp.Avatar.setAvatar(e)},removeWarning:function(){_.isNull(this.params.warning)||this.params.warning.remove()},displayWarning:function(e){this.removeWarning(),this.params.warning=new bp.Views.uploaderWarning({value:BP_Uploader.strings.camera_warnings[e]}),this.params.warning.inject(".bp-avatar-status")}},bp.Views.WebCamAvatar=bp.View.extend({tagName:"div",id:"bp-webcam-avatar",template:bp.template("bp-avatar-webcam"),events:{"click .avatar-webcam-capture":"captureStream","click .avatar-webcam-save":"saveCapture"},initialize:function(){var e;(navigator.getUserMedia||navigator.oGetUserMedia||navigator.mozGetUserMedia||navigator.webkitGetUserMedia||navigator.msGetUserMedia)&&(e=_.extend(_.pick(BP_Uploader.settings.defaults.multipart_params.bp_params,"object","item_id","nonces"),{user_media:!0,w:BP_Uploader.settings.crop.full_w,h:BP_Uploader.settings.crop.full_h,x:0,y:0,type:"camera"}),this.model.set(e)),this.on("ready",this.useStream,this)},useStream:function(){this.model.get("user_media")&&(this.options.video=new bp.Views.WebCamVideo,this.options.canvas=new bp.Views.WebCamCanvas,this.$el.find("#avatar-to-crop").append(this.options.video.el),this.$el.find("#avatar-crop-pane").append(this.options.canvas.el),bp.WebCam.params.video=this.options.video.el,bp.WebCam.params.canvas=this.options.canvas.el,bp.WebCam.displayWarning("requesting"),navigator.getUserMedia?navigator.getUserMedia({video:!0},bp.WebCam.gotStream,bp.WebCam.noStream):navigator.oGetUserMedia?navigator.oGetUserMedia({video:!0},bp.WebCam.gotStream,bp.WebCam.noStream):navigator.mozGetUserMedia?navigator.mozGetUserMedia({video:!0},bp.WebCam.gotStream,bp.WebCam.noStream):navigator.webkitGetUserMedia?navigator.webkitGetUserMedia({video:!0},bp.WebCam.gotStream,bp.WebCam.noStream):navigator.msGetUserMedia?navigator.msGetUserMedia({video:!0,audio:!1},bp.WebCams.gotStream,bp.WebCam.noStream):bp.WebCam.displayWarning("errormsg"))},captureStream:function(e){var a,t;e.preventDefault(),bp.WebCam.params.capture_enable?this.model.get("h")>this.options.video.el.videoHeight||this.model.get("w")>this.options.video.el.videoWidth?bp.WebCam.displayWarning("videoerror"):(t=this.options.video.el.videoHeight,a=(this.options.video.el.videoWidth-t)/2,bp.WebCam.params.flipped||(this.options.canvas.el.getContext("2d").translate(this.model.get("w"),0),this.options.canvas.el.getContext("2d").scale(-1,1),bp.WebCam.params.flipped=!0),this.options.canvas.el.getContext("2d").drawImage(this.options.video.el,a,0,t,t,0,0,this.model.get("w"),this.model.get("h")),bp.WebCam.params.capture=this.options.canvas.el.toDataURL("image/png"),this.model.set("url",bp.WebCam.params.capture),bp.WebCam.displayWarning("ready")):bp.WebCam.displayWarning("loading")},saveCapture:function(e){e.preventDefault(),bp.WebCam.params.capture?(bp.WebCam.stop(),bp.WebCam.setAvatar(this.model)):bp.WebCam.displayWarning("nocapture")}}),bp.Views.WebCamVideo=bp.View.extend({tagName:"video",id:"bp-webcam-video",attributes:{autoplay:"autoplay"}}),bp.Views.WebCamCanvas=bp.View.extend({tagName:"canvas",id:"bp-webcam-canvas",attributes:{width:150,height:150},initialize:function(){_.isUndefined(BP_Uploader.settings.crop.full_h)||_.isUndefined(BP_Uploader.settings.crop.full_w)||(this.el.attributes.width.value=BP_Uploader.settings.crop.full_w,this.el.attributes.height.value=BP_Uploader.settings.crop.full_h)}}),bp.WebCam.start())}(bp,jQuery);
1
+ window.bp=window.bp||{},bp,jQuery,"undefined"!=typeof BP_Uploader&&(bp.Models=bp.Models||{},bp.Collections=bp.Collections||{},bp.Views=bp.Views||{},bp.WebCam={start:function(){this.params={video:null,videoStream:null,capture_enable:!1,capture:null,canvas:null,warning:null,flipped:!1},bp.Avatar.nav.on("bp-avatar-view:changed",_.bind(this.setView,this))},setView:function(e){if("camera"===e){var a=new bp.Views.WebCamAvatar({model:new Backbone.Model({user_media:!1})});this.params.flipped=!1,bp.Avatar.views.add({id:"camera",view:a}),a.inject(".bp-avatar")}else _.isNull(this.params.video)||(this.stop(),this.removeWarning())},removeView:function(){var e;_.isUndefined(bp.Avatar.views.get("camera"))||((e=bp.Avatar.views.get("camera")).get("view").remove(),bp.Avatar.views.remove({id:"camera",view:e}))},gotStream:function(e){var a=bp.WebCam.params.video;bp.WebCam.params.videoStream=e,bp.WebCam.displayWarning("loaded"),a.onerror=function(){bp.WebCam.displayWarning("videoerror"),a&&bp.WebCam.stop()},e.onended=bp.WebCam.noStream(),void 0!==a.mozSrcObject?(a.mozSrcObject=e,a.play()):navigator.mozGetUserMedia?(a.src=e,a.play()):void 0!==a.srcObject?a.srcObject=e:window.URL?a.src=window.URL.createObjectURL(e):a.src=e,bp.WebCam.params.capture_enable=!0},stop:function(){bp.WebCam.params.capture_enable=!1,bp.WebCam.params.videoStream&&(bp.WebCam.params.videoStream.stop?bp.WebCam.params.videoStream.stop():bp.WebCam.params.videoStream.msStop&&bp.WebCam.params.videoStream.msStop(),bp.WebCam.params.videoStream.onended=null,bp.WebCam.params.videoStream=null),bp.WebCam.params.video&&(bp.WebCam.params.video.onerror=null,bp.WebCam.params.video.pause(),bp.WebCam.params.video.mozSrcObject&&(bp.WebCam.params.video.mozSrcObject=null),bp.WebCam.params.video.src="")},noStream:function(){_.isNull(bp.WebCam.params.videoStream)&&(bp.WebCam.displayWarning("noaccess"),bp.WebCam.removeView())},setAvatar:function(e){e.get("url")||bp.WebCam.displayWarning("nocapture"),bp.WebCam.removeView(),bp.Avatar.setAvatar(e)},removeWarning:function(){_.isNull(this.params.warning)||this.params.warning.remove()},displayWarning:function(e){this.removeWarning(),this.params.warning=new bp.Views.uploaderWarning({value:BP_Uploader.strings.camera_warnings[e]}),this.params.warning.inject(".bp-avatar-status")}},bp.Views.WebCamAvatar=bp.View.extend({tagName:"div",id:"bp-webcam-avatar",template:bp.template("bp-avatar-webcam"),events:{"click .avatar-webcam-capture":"captureStream","click .avatar-webcam-save":"saveCapture"},initialize:function(){var e;(navigator.getUserMedia||navigator.oGetUserMedia||navigator.mozGetUserMedia||navigator.webkitGetUserMedia||navigator.msGetUserMedia)&&(e=_.extend(_.pick(BP_Uploader.settings.defaults.multipart_params.bp_params,"object","item_id","nonces"),{user_media:!0,w:BP_Uploader.settings.crop.full_w,h:BP_Uploader.settings.crop.full_h,x:0,y:0,type:"camera"}),this.model.set(e)),this.on("ready",this.useStream,this)},useStream:function(){this.model.get("user_media")&&(this.options.video=new bp.Views.WebCamVideo,this.options.canvas=new bp.Views.WebCamCanvas,this.$el.find("#avatar-to-crop").append(this.options.video.el),this.$el.find("#avatar-crop-pane").append(this.options.canvas.el),bp.WebCam.params.video=this.options.video.el,bp.WebCam.params.canvas=this.options.canvas.el,bp.WebCam.displayWarning("requesting"),navigator.getUserMedia?navigator.getUserMedia({video:!0},bp.WebCam.gotStream,bp.WebCam.noStream):navigator.oGetUserMedia?navigator.oGetUserMedia({video:!0},bp.WebCam.gotStream,bp.WebCam.noStream):navigator.mozGetUserMedia?navigator.mozGetUserMedia({video:!0},bp.WebCam.gotStream,bp.WebCam.noStream):navigator.webkitGetUserMedia?navigator.webkitGetUserMedia({video:!0},bp.WebCam.gotStream,bp.WebCam.noStream):navigator.msGetUserMedia?navigator.msGetUserMedia({video:!0,audio:!1},bp.WebCams.gotStream,bp.WebCam.noStream):bp.WebCam.displayWarning("errormsg"))},captureStream:function(e){var a,t;e.preventDefault(),bp.WebCam.params.capture_enable?this.model.get("h")>this.options.video.el.videoHeight||this.model.get("w")>this.options.video.el.videoWidth?bp.WebCam.displayWarning("videoerror"):(t=this.options.video.el.videoHeight,a=(this.options.video.el.videoWidth-t)/2,bp.WebCam.params.flipped||(this.options.canvas.el.getContext("2d").translate(this.model.get("w"),0),this.options.canvas.el.getContext("2d").scale(-1,1),bp.WebCam.params.flipped=!0),this.options.canvas.el.getContext("2d").drawImage(this.options.video.el,a,0,t,t,0,0,this.model.get("w"),this.model.get("h")),bp.WebCam.params.capture=this.options.canvas.el.toDataURL("image/png"),this.model.set("url",bp.WebCam.params.capture),bp.WebCam.displayWarning("ready")):bp.WebCam.displayWarning("loading")},saveCapture:function(e){e.preventDefault(),bp.WebCam.params.capture?(bp.WebCam.stop(),bp.WebCam.setAvatar(this.model)):bp.WebCam.displayWarning("nocapture")}}),bp.Views.WebCamVideo=bp.View.extend({tagName:"video",id:"bp-webcam-video",attributes:{autoplay:"autoplay"}}),bp.Views.WebCamCanvas=bp.View.extend({tagName:"canvas",id:"bp-webcam-canvas",attributes:{width:150,height:150},initialize:function(){_.isUndefined(BP_Uploader.settings.crop.full_h)||_.isUndefined(BP_Uploader.settings.crop.full_w)||(this.el.attributes.width.value=BP_Uploader.settings.crop.full_w,this.el.attributes.height.value=BP_Uploader.settings.crop.full_h)}}),bp.WebCam.start());
bp-groups/admin/js/admin.min.js CHANGED
@@ -1 +1 @@
1
- !function(e){function n(n,o){e("#bp-groups-new-members-list").append('<li data-login="'+o.item.value+'"><a href="#" class="bp-groups-remove-new-member">x</a> '+o.item.label+"</li>")}var o="undefined"!=typeof group_id?"&group_id="+group_id:"";e(document).ready(function(){window.warn_on_leave=!1,e(".bp-suggest-user").autocomplete({source:ajaxurl+"?action=bp_group_admin_member_autocomplete"+o,delay:500,minLength:2,position:"undefined"!=typeof isRtl&&isRtl?{my:"right top",at:"right bottom",offset:"0, -1"}:{offset:"0, -1"},open:function(){e(this).addClass("open")},close:function(){e(this).removeClass("open"),e(this).val("")},select:function(e,o){n(e,o)}}),e("#bp-groups-new-members").prop("placeholder",BP_Group_Admin.add_member_placeholder),e("#bp_group_add_members").on("click",".bp-groups-remove-new-member",function(n){n.preventDefault(),e(n.target.parentNode).remove()}),e(document).on("change",'input#bp-groups-name, input#bp-groups-description, select.bp-groups-role, #bp-groups-settings-section-status input[type="radio"]',function(){window.warn_on_leave=!0}),e("input#save").on("click",function(){var n=[];e("#bp-groups-new-members-list li").each(function(){n.push(e(this).data("login"))}),n.length&&e("#bp-groups-new-members").val("").val(n.join(", ")),window.warn_on_leave=!1}),window.onbeforeunload=function(){if(window.warn_on_leave)return BP_Group_Admin.warn_on_leave}})}(jQuery);
1
+ !function(e){function n(n,o){e("#bp-groups-new-members-list").append('<li data-login="'+o.item.value+'"><a href="#" class="bp-groups-remove-new-member">x</a> '+o.item.label+"</li>")}var o="undefined"!=typeof group_id?"&group_id="+group_id:"";e(document).ready(function(){window.warn_on_leave=!1,e(".bp-suggest-user").autocomplete({source:ajaxurl+"?action=bp_group_admin_member_autocomplete"+o,delay:500,minLength:2,position:"undefined"!=typeof isRtl&&isRtl?{my:"right top",at:"right bottom",offset:"0, -1"}:{offset:"0, -1"},open:function(){e(this).addClass("open")},close:function(){e(this).removeClass("open"),e(this).val("")},select:function(e,o){n(0,o)}}),e("#bp-groups-new-members").prop("placeholder",BP_Group_Admin.add_member_placeholder),e("#bp_group_add_members").on("click",".bp-groups-remove-new-member",function(n){n.preventDefault(),e(n.target.parentNode).remove()}),e(document).on("change",'input#bp-groups-name, input#bp-groups-description, select.bp-groups-role, #bp-groups-settings-section-status input[type="radio"]',function(){window.warn_on_leave=!0}),e("input#save").on("click",function(){var n=[];e("#bp-groups-new-members-list li").each(function(){n.push(e(this).data("login"))}),n.length&&e("#bp-groups-new-members").val("").val(n.join(", ")),window.warn_on_leave=!1}),window.onbeforeunload=function(){if(window.warn_on_leave)return BP_Group_Admin.warn_on_leave}})}(jQuery);
bp-loader.php CHANGED
@@ -15,7 +15,7 @@
15
  * Description: BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!
16
  * Author: The BuddyPress Community
17
  * Author URI: https://buddypress.org/
18
- * Version: 2.9.3
19
  * Text Domain: buddypress
20
  * Domain Path: /bp-languages/
21
  * License: GPLv2 or later (license.txt)
15
  * Description: BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!
16
  * Author: The BuddyPress Community
17
  * Author URI: https://buddypress.org/
18
+ * Version: 2.9.4
19
  * Text Domain: buddypress
20
  * Domain Path: /bp-languages/
21
  * License: GPLv2 or later (license.txt)
bp-templates/bp-legacy/buddypress-functions.php CHANGED
@@ -805,7 +805,7 @@ function bp_legacy_theme_object_template_loader() {
805
  bp_update_is_directory( true, bp_current_component() );
806
 
807
  // The template part can be overridden by the calling JS function.
808
- if ( ! empty( $_POST['template'] ) && 'groups/single/members' === $_POST['template'] && 'group_members' === $object ) {
809
  $template_part = 'groups/single/members.php';
810
  } else {
811
  $template_part = $object . '/' . $object . '-loop.php';
805
  bp_update_is_directory( true, bp_current_component() );
806
 
807
  // The template part can be overridden by the calling JS function.
808
+ if ( ! empty( $_POST['template'] ) && 'groups/single/members' === $_POST['template'] ) {
809
  $template_part = 'groups/single/members.php';
810
  } else {
811
  $template_part = $object . '/' . $object . '-loop.php';
buddypress.pot CHANGED
@@ -0,0 +1,9682 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2018 The BuddyPress Community
2
+ # This file is distributed under the GPLv2 or later (license.txt).
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: BuddyPress 2.9.4\n"
6
+ "Report-Msgid-Bugs-To: https://buddypress.trac.wordpress.org\n"
7
+ "POT-Creation-Date: 2018-04-03 17:19:58+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=utf-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: JOHN JAMES JACOBY <jjj@buddypress.org>\n"
13
+ "Language-Team: ENGLISH <jjj@buddypress.org>\n"
14
+ "X-Generator: grunt-wp-i18n1.0.2\n"
15
+
16
+ #: bp-activity/bp-activity-actions.php:150
17
+ msgid "Activity deleted successfully"
18
+ msgstr ""
19
+
20
+ #: bp-activity/bp-activity-actions.php:152
21
+ msgid "There was an error when deleting that activity"
22
+ msgstr ""
23
+
24
+ #: bp-activity/bp-activity-actions.php:221
25
+ msgid "The activity item has been marked as spam and is no longer visible."
26
+ msgstr ""
27
+
28
+ #: bp-activity/bp-activity-actions.php:292
29
+ #: bp-templates/bp-legacy/buddypress-functions.php:935
30
+ msgid "Please enter some content to post."
31
+ msgstr ""
32
+
33
+ #: bp-activity/bp-activity-actions.php:322
34
+ msgid "Update Posted!"
35
+ msgstr ""
36
+
37
+ #: bp-activity/bp-activity-actions.php:324
38
+ msgid "There was an error when posting your update. Please try again."
39
+ msgstr ""
40
+
41
+ #: bp-activity/bp-activity-actions.php:365
42
+ #: bp-templates/bp-legacy/buddypress-functions.php:1028
43
+ msgid "Please do not leave the comment area blank."
44
+ msgstr ""
45
+
46
+ #: bp-activity/bp-activity-actions.php:376
47
+ msgid "Reply Posted!"
48
+ msgstr ""
49
+
50
+ #: bp-activity/bp-activity-actions.php:378
51
+ msgid "There was an error posting that reply. Please try again."
52
+ msgstr ""
53
+
54
+ #: bp-activity/bp-activity-actions.php:400
55
+ msgid "Activity marked as favorite."
56
+ msgstr ""
57
+
58
+ #: bp-activity/bp-activity-actions.php:402
59
+ msgid "There was an error marking that activity as a favorite. Please try again."
60
+ msgstr ""
61
+
62
+ #: bp-activity/bp-activity-actions.php:424
63
+ msgid "Activity removed as favorite."
64
+ msgstr ""
65
+
66
+ #: bp-activity/bp-activity-actions.php:426
67
+ msgid "There was an error removing that activity as a favorite. Please try again."
68
+ msgstr ""
69
+
70
+ #: bp-activity/bp-activity-actions.php:450
71
+ #. translators: Sitewide activity RSS title - "[Site Name] | Site Wide
72
+ #. Activity"
73
+ msgid "%s | Site-Wide Activity"
74
+ msgstr ""
75
+
76
+ #: bp-activity/bp-activity-actions.php:453
77
+ msgid "Activity feed for the entire site."
78
+ msgstr ""
79
+
80
+ #: bp-activity/bp-activity-actions.php:476 bp-groups/bp-groups-actions.php:585
81
+ #. translators: Personal activity RSS title - "[Site Name] | [User Display
82
+ #. Name] | Activity"
83
+ #. translators: Group activity RSS title - "[Site Name] | [Group Name] |
84
+ #. Activity"
85
+ msgid "%1$s | %2$s | Activity"
86
+ msgstr ""
87
+
88
+ #: bp-activity/bp-activity-actions.php:479
89
+ msgid "Activity feed for %s."
90
+ msgstr ""
91
+
92
+ #: bp-activity/bp-activity-actions.php:502
93
+ #. translators: Friends activity RSS title - "[Site Name] | [User Display Name]
94
+ #. | Friends Activity"
95
+ msgid "%1$s | %2$s | Friends Activity"
96
+ msgstr ""
97
+
98
+ #: bp-activity/bp-activity-actions.php:505
99
+ msgid "Activity feed for %s's friends."
100
+ msgstr ""
101
+
102
+ #: bp-activity/bp-activity-actions.php:532
103
+ #. translators: Member groups activity RSS title - "[Site Name] | [User Display
104
+ #. Name] | Groups Activity"
105
+ msgid "%1$s | %2$s | Group Activity"
106
+ msgstr ""
107
+
108
+ #: bp-activity/bp-activity-actions.php:535
109
+ msgid "Public group activity feed of which %s is a member."
110
+ msgstr ""
111
+
112
+ #: bp-activity/bp-activity-actions.php:566
113
+ #. translators: User mentions activity RSS title - "[Site Name] | [User Display
114
+ #. Name] | Mentions"
115
+ msgid "%1$s | %2$s | Mentions"
116
+ msgstr ""
117
+
118
+ #: bp-activity/bp-activity-actions.php:569
119
+ msgid "Activity feed mentioning %s."
120
+ msgstr ""
121
+
122
+ #: bp-activity/bp-activity-actions.php:598
123
+ #. translators: User activity favorites RSS title - "[Site Name] | [User
124
+ #. Display Name] | Favorites"
125
+ msgid "%1$s | %2$s | Favorites"
126
+ msgstr ""
127
+
128
+ #: bp-activity/bp-activity-actions.php:601
129
+ msgid "Activity feed of %s's favorites."
130
+ msgstr ""
131
+
132
+ #: bp-activity/bp-activity-admin.php:88
133
+ msgid "ERROR: Please type a reply."
134
+ msgstr ""
135
+
136
+ #: bp-activity/bp-activity-admin.php:93
137
+ msgid ""
138
+ "ERROR: The item you are trying to reply to cannot be found, or it has been "
139
+ "deleted."
140
+ msgstr ""
141
+
142
+ #: bp-activity/bp-activity-admin.php:223 bp-activity/bp-activity-admin.php:277
143
+ #: bp-core/admin/bp-core-admin-functions.php:488
144
+ #: bp-core/admin/bp-core-admin-functions.php:506
145
+ #: bp-core/admin/bp-core-admin-functions.php:525
146
+ #: bp-core/admin/bp-core-admin-functions.php:544
147
+ #: bp-groups/bp-groups-admin.php:115 bp-groups/bp-groups-admin.php:168
148
+ #: bp-members/classes/class-bp-members-admin.php:774
149
+ #: bp-members/classes/class-bp-members-admin.php:1497
150
+ msgid "Overview"
151
+ msgstr ""
152
+
153
+ #: bp-activity/bp-activity-admin.php:225
154
+ msgid ""
155
+ "You edit activities made on your site similar to the way you edit a "
156
+ "comment. This is useful if you need to change which page the activity links "
157
+ "to, or when you notice that the author has made a typographical error."
158
+ msgstr ""
159
+
160
+ #: bp-activity/bp-activity-admin.php:226
161
+ msgid ""
162
+ "The two big editing areas for the activity title and content are fixed in "
163
+ "place, but you can reposition all the other boxes using drag and drop, and "
164
+ "can minimize or expand them by clicking the title bar of each box. Use the "
165
+ "Screen Options tab to unhide more boxes (Primary Item/Secondary Item, Link, "
166
+ "Type, Author ID) or to choose a 1- or 2-column layout for this screen."
167
+ msgstr ""
168
+
169
+ #: bp-activity/bp-activity-admin.php:227
170
+ msgid ""
171
+ "You can also moderate the activity from this screen using the Status box, "
172
+ "where you can also change the timestamp of the activity."
173
+ msgstr ""
174
+
175
+ #: bp-activity/bp-activity-admin.php:232
176
+ msgid "Item, Link, Type"
177
+ msgstr ""
178
+
179
+ #: bp-activity/bp-activity-admin.php:234
180
+ msgid ""
181
+ "<strong>Primary Item/Secondary Item</strong> - These identify the object "
182
+ "that created the activity. For example, the fields could reference a "
183
+ "comment left on a specific site. Some types of activity may only use one, "
184
+ "or none, of these fields."
185
+ msgstr ""
186
+
187
+ #: bp-activity/bp-activity-admin.php:235
188
+ msgid ""
189
+ "<strong>Link</strong> - Used by some types of activity (e.g blog posts and "
190
+ "comments, and forum topics and replies) to store a link back to the "
191
+ "original content."
192
+ msgstr ""
193
+
194
+ #: bp-activity/bp-activity-admin.php:236
195
+ msgid ""
196
+ "<strong>Type</strong> - Each distinct kind of activity has its own type. "
197
+ "For example, <code>created_group</code> is used when a group is created and "
198
+ "<code>joined_group</code> is used when a user joins a group."
199
+ msgstr ""
200
+
201
+ #: bp-activity/bp-activity-admin.php:237
202
+ msgid ""
203
+ "For information about when and how BuddyPress uses all of these settings, "
204
+ "see the Managing Activity link in the panel to the side."
205
+ msgstr ""
206
+
207
+ #: bp-activity/bp-activity-admin.php:242 bp-activity/bp-activity-admin.php:294
208
+ #: bp-core/admin/bp-core-admin-functions.php:494
209
+ #: bp-core/admin/bp-core-admin-functions.php:512
210
+ #: bp-core/admin/bp-core-admin-functions.php:531
211
+ #: bp-core/admin/bp-core-admin-functions.php:550
212
+ #: bp-groups/bp-groups-admin.php:123 bp-groups/bp-groups-admin.php:184
213
+ #: bp-members/classes/class-bp-members-admin.php:783
214
+ #: bp-members/classes/class-bp-members-admin.php:1518
215
+ msgid "For more information:"
216
+ msgstr ""
217
+
218
+ #: bp-activity/bp-activity-admin.php:243
219
+ msgid ""
220
+ "<a "
221
+ "href=\"https://codex.buddypress.org/administrator-guide/activity-stream-"
222
+ "management-panels/\">Managing Activity</a>"
223
+ msgstr ""
224
+
225
+ #: bp-activity/bp-activity-admin.php:244 bp-activity/bp-activity-admin.php:295
226
+ #: bp-core/admin/bp-core-admin-functions.php:496
227
+ #: bp-core/admin/bp-core-admin-functions.php:514
228
+ #: bp-core/admin/bp-core-admin-functions.php:533
229
+ #: bp-core/admin/bp-core-admin-functions.php:552
230
+ #: bp-groups/bp-groups-admin.php:185
231
+ #: bp-members/classes/class-bp-members-admin.php:785
232
+ #: bp-members/classes/class-bp-members-admin.php:1519
233
+ msgid "<a href=\"https://buddypress.org/support/\">Support Forums</a>"
234
+ msgstr ""
235
+
236
+ #: bp-activity/bp-activity-admin.php:279
237
+ msgid ""
238
+ "You can manage activities made on your site similar to the way you manage "
239
+ "comments and other content. This screen is customizable in the same ways as "
240
+ "other management screens, and you can act on activities using the on-hover "
241
+ "action links or the Bulk Actions."
242
+ msgstr ""
243
+
244
+ #: bp-activity/bp-activity-admin.php:280
245
+ msgid ""
246
+ "There are many different types of activities. Some are generated "
247
+ "automatically by BuddyPress and other plugins, and some are entered "
248
+ "directly by a user in the form of status update. To help manage the "
249
+ "different activity types, use the filter dropdown box to switch between "
250
+ "them."
251
+ msgstr ""
252
+
253
+ #: bp-activity/bp-activity-admin.php:286
254
+ msgid "Moderating Activity"
255
+ msgstr ""
256
+
257
+ #: bp-activity/bp-activity-admin.php:288
258
+ msgid ""
259
+ "In the <strong>Activity</strong> column, above each activity it says "
260
+ "&#8220;Submitted on,&#8221; followed by the date and time the activity item "
261
+ "was generated on your site. Clicking on the date/time link will take you to "
262
+ "that activity on your live site. Hovering over any activity gives you "
263
+ "options to reply, edit, spam mark, or delete that activity."
264
+ msgstr ""
265
+
266
+ #: bp-activity/bp-activity-admin.php:289
267
+ msgid ""
268
+ "In the <strong>In Response To</strong> column, if the activity was in reply "
269
+ "to another activity, it shows that activity's author's picture and name, "
270
+ "and a link to that activity on your live site. If there is a small bubble, "
271
+ "the number in it shows how many other activities are related to this one; "
272
+ "these are usually comments. Clicking the bubble will filter the activity "
273
+ "screen to show only related activity items."
274
+ msgstr ""
275
+
276
+ #: bp-activity/bp-activity-admin.php:302
277
+ #. translators: accessibility text
278
+ msgid "Activity list navigation"
279
+ msgstr ""
280
+
281
+ #: bp-activity/bp-activity-admin.php:664
282
+ msgid "Editing Activity (ID #%s)"
283
+ msgstr ""
284
+
285
+ #: bp-activity/bp-activity-admin.php:675
286
+ msgid "Action"
287
+ msgstr ""
288
+
289
+ #: bp-activity/bp-activity-admin.php:679
290
+ #. translators: accessibility text
291
+ msgid "Edit activity action"
292
+ msgstr ""
293
+
294
+ #: bp-activity/bp-activity-admin.php:686
295
+ msgid "Content"
296
+ msgstr ""
297
+
298
+ #: bp-activity/bp-activity-admin.php:690
299
+ #. translators: accessibility text
300
+ msgid "Edit activity content"
301
+ msgstr ""
302
+
303
+ #: bp-activity/bp-activity-admin.php:719
304
+ msgid "No activity found with this ID."
305
+ msgstr ""
306
+
307
+ #: bp-activity/bp-activity-admin.php:721 bp-groups/bp-groups-admin.php:653
308
+ #: bp-members/classes/class-bp-members-admin.php:1000
309
+ msgid "Go back and try again."
310
+ msgstr ""
311
+
312
+ #: bp-activity/bp-activity-admin.php:747
313
+ #: bp-activity/classes/class-bp-activity-list-table.php:690
314
+ msgid "View Activity"
315
+ msgstr ""
316
+
317
+ #: bp-activity/bp-activity-admin.php:755
318
+ msgid "Approved"
319
+ msgstr ""
320
+
321
+ #: bp-activity/bp-activity-admin.php:756
322
+ #: bp-activity/classes/class-bp-activity-list-table.php:606
323
+ #: bp-activity/classes/class-bp-akismet.php:205
324
+ #: bp-activity/classes/class-bp-akismet.php:234
325
+ #: bp-core/admin/bp-core-admin-functions.php:1033
326
+ msgid "Spam"
327
+ msgstr ""
328
+
329
+ #: bp-activity/bp-activity-admin.php:762
330
+ #: bp-members/classes/class-bp-members-admin.php:1066
331
+ #: bp-members/classes/class-bp-members-admin.php:1126
332
+ #. Translators: Publish box date format, see http:php.net/date.
333
+ msgid "M j, Y @ G:i"
334
+ msgstr ""
335
+
336
+ #: bp-activity/bp-activity-admin.php:765
337
+ msgid "Submitted on: %s"
338
+ msgstr ""
339
+
340
+ #: bp-activity/bp-activity-admin.php:765
341
+ #: bp-activity/classes/class-bp-activity-list-table.php:599
342
+ #: bp-forums/bp-forums-template.php:2783
343
+ #: bp-groups/classes/class-bp-groups-list-table.php:527
344
+ msgid "Edit"
345
+ msgstr ""
346
+
347
+ #: bp-activity/bp-activity-admin.php:778
348
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1167
349
+ #: bp-xprofile/classes/class-bp-xprofile-group.php:729
350
+ msgid "Update"
351
+ msgstr ""
352
+
353
+ #: bp-activity/bp-activity-admin.php:800
354
+ #. translators: accessibility text
355
+ msgid "Link"
356
+ msgstr ""
357
+
358
+ #: bp-activity/bp-activity-admin.php:803
359
+ msgid ""
360
+ "Activity generated by posts and comments, forum topics and replies, and "
361
+ "some plugins, uses the link field for a permalink back to the content item."
362
+ msgstr ""
363
+
364
+ #: bp-activity/bp-activity-admin.php:820
365
+ #. translators: accessibility text
366
+ msgid "Author ID"
367
+ msgstr ""
368
+
369
+ #: bp-activity/bp-activity-admin.php:890
370
+ msgid ""
371
+ "This activity item has a type (%s) that is not registered using "
372
+ "bp_activity_set_action(), so no label is available."
373
+ msgstr ""
374
+
375
+ #: bp-activity/bp-activity-admin.php:898
376
+ #. translators: accessibility text
377
+ msgid "Select activity type"
378
+ msgstr ""
379
+
380
+ #: bp-activity/bp-activity-admin.php:919
381
+ msgid "Primary Item ID"
382
+ msgstr ""
383
+
384
+ #: bp-activity/bp-activity-admin.php:923
385
+ msgid "Secondary Item ID"
386
+ msgstr ""
387
+
388
+ #: bp-activity/bp-activity-admin.php:926
389
+ msgid ""
390
+ "These identify the object that created this activity. For example, the "
391
+ "fields could reference a pair of site and comment IDs."
392
+ msgstr ""
393
+
394
+ #: bp-activity/bp-activity-admin.php:965
395
+ msgid "%s activity item has been permanently deleted."
396
+ msgid_plural "%s activity items have been permanently deleted."
397
+ msgstr[0] ""
398
+ msgstr[1] ""
399
+
400
+ #: bp-activity/bp-activity-admin.php:969
401
+ msgid "An error occurred when trying to update activity ID #%s."
402
+ msgstr ""
403
+
404
+ #: bp-activity/bp-activity-admin.php:972
405
+ msgid "Errors occurred when trying to update these activity items:"
406
+ msgstr ""
407
+
408
+ #: bp-activity/bp-activity-admin.php:978
409
+ #. Translators: This is a bulleted list of item IDs.
410
+ msgid "#%s"
411
+ msgstr ""
412
+
413
+ #: bp-activity/bp-activity-admin.php:987
414
+ msgid "%s activity item has been successfully spammed."
415
+ msgid_plural "%s activity items have been successfully spammed."
416
+ msgstr[0] ""
417
+ msgstr[1] ""
418
+
419
+ #: bp-activity/bp-activity-admin.php:990
420
+ msgid "%s activity item has been successfully unspammed."
421
+ msgid_plural "%s activity items have been successfully unspammed."
422
+ msgstr[0] ""
423
+ msgstr[1] ""
424
+
425
+ #: bp-activity/bp-activity-admin.php:993
426
+ msgid "The activity item has been updated successfully."
427
+ msgstr ""
428
+
429
+ #: bp-activity/bp-activity-admin.php:1011
430
+ msgid "Activity related to ID #%s"
431
+ msgstr ""
432
+
433
+ #: bp-activity/bp-activity-admin.php:1017 bp-groups/bp-groups-admin.php:763
434
+ #: bp-members/classes/class-bp-members-admin.php:1940
435
+ msgid "Search results for &#8220;%s&#8221;"
436
+ msgstr ""
437
+
438
+ #: bp-activity/bp-activity-admin.php:1030
439
+ msgid "Search all Activity"
440
+ msgstr ""
441
+
442
+ #: bp-activity/bp-activity-admin.php:1041
443
+ msgid "Reply to Activity"
444
+ msgstr ""
445
+
446
+ #: bp-activity/bp-activity-admin.php:1044
447
+ #: bp-activity/bp-activity-admin.php:1050
448
+ #: bp-activity/classes/class-bp-activity-list-table.php:593
449
+ #: bp-templates/bp-legacy/buddypress/activity/comment.php:39
450
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php:23
451
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php:191
452
+ #. translators: accessibility text
453
+ msgid "Reply"
454
+ msgstr ""
455
+
456
+ #: bp-activity/bp-activity-admin.php:1049 bp-groups/bp-groups-admin.php:710
457
+ #: bp-members/classes/class-bp-members-admin.php:2140
458
+ #: bp-templates/bp-legacy/buddypress/activity/entry.php:129
459
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:216
460
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1308
461
+ #: bp-xprofile/classes/class-bp-xprofile-group.php:816
462
+ msgid "Cancel"
463
+ msgstr ""
464
+
465
+ #: bp-activity/bp-activity-adminbar.php:43
466
+ msgid "Edit Activity"
467
+ msgstr ""
468
+
469
+ #: bp-activity/bp-activity-embeds.php:289
470
+ #. translators: By [oEmbed author] on [oEmbed provider]. eg. By BuddyPress on
471
+ #. YouTube.
472
+ msgid "By %1$s on %2$s"
473
+ msgstr ""
474
+
475
+ #: bp-activity/bp-activity-embeds.php:292
476
+ msgid "View on %s"
477
+ msgstr ""
478
+
479
+ #: bp-activity/bp-activity-embeds.php:337
480
+ msgid "Your browser does not support HTML5 video"
481
+ msgstr ""
482
+
483
+ #: bp-activity/bp-activity-embeds.php:344
484
+ msgid "Your browser does not support HTML5 audio"
485
+ msgstr ""
486
+
487
+ #: bp-activity/bp-activity-filters.php:455
488
+ msgid "[Read more]"
489
+ msgstr ""
490
+
491
+ #: bp-activity/bp-activity-filters.php:459
492
+ msgid "&hellip;"
493
+ msgstr ""
494
+
495
+ #: bp-activity/bp-activity-filters.php:665
496
+ msgid "Load Newest"
497
+ msgstr ""
498
+
499
+ #: bp-activity/bp-activity-functions.php:1441
500
+ msgid "Posted a status update"
501
+ msgstr ""
502
+
503
+ #: bp-activity/bp-activity-functions.php:1443
504
+ msgid "Updates"
505
+ msgstr ""
506
+
507
+ #: bp-activity/bp-activity-functions.php:1450
508
+ msgid "Replied to a status update"
509
+ msgstr ""
510
+
511
+ #: bp-activity/bp-activity-functions.php:1452
512
+ msgid "Activity Comments"
513
+ msgstr ""
514
+
515
+ #: bp-activity/bp-activity-functions.php:1520
516
+ msgid "%s posted an update"
517
+ msgstr ""
518
+
519
+ #: bp-activity/bp-activity-functions.php:1543
520
+ msgid "%s posted a new activity comment"
521
+ msgstr ""
522
+
523
+ #: bp-activity/bp-activity-functions.php:2584
524
+ #: bp-templates/bp-legacy/buddypress-functions.php:1025
525
+ msgid "There was an error posting your reply. Please try again."
526
+ msgstr ""
527
+
528
+ #: bp-activity/bp-activity-functions.php:2612
529
+ msgid "The item you were replying to no longer exists."
530
+ msgstr ""
531
+
532
+ #: bp-activity/bp-activity-functions.php:3161
533
+ msgid "Thumbnail"
534
+ msgstr ""
535
+
536
+ #: bp-activity/bp-activity-notifications.php:37
537
+ msgid "@%s Mentions"
538
+ msgstr ""
539
+
540
+ #: bp-activity/bp-activity-notifications.php:41
541
+ msgid "You have %1$d new mentions"
542
+ msgstr ""
543
+
544
+ #: bp-activity/bp-activity-notifications.php:44
545
+ msgid "%1$s mentioned you"
546
+ msgstr ""
547
+
548
+ #: bp-activity/bp-activity-notifications.php:50
549
+ msgid "New Activity reply"
550
+ msgstr ""
551
+
552
+ #: bp-activity/bp-activity-notifications.php:55
553
+ msgid "You have %1$d new replies"
554
+ msgstr ""
555
+
556
+ #: bp-activity/bp-activity-notifications.php:59
557
+ msgid "%1$s commented on one of your updates"
558
+ msgstr ""
559
+
560
+ #: bp-activity/bp-activity-notifications.php:65
561
+ msgid "New Activity comment reply"
562
+ msgstr ""
563
+
564
+ #: bp-activity/bp-activity-notifications.php:70
565
+ msgid "You have %1$d new comment replies"
566
+ msgstr ""
567
+
568
+ #: bp-activity/bp-activity-notifications.php:74
569
+ msgid "%1$s replied to one your activity comments"
570
+ msgstr ""
571
+
572
+ #: bp-activity/bp-activity-screens.php:276
573
+ msgid "You do not have access to this activity."
574
+ msgstr ""
575
+
576
+ #: bp-activity/bp-activity-screens.php:327
577
+ #: bp-activity/classes/class-bp-activity-oembed-extension.php:138
578
+ #: bp-activity/classes/class-bp-activity-theme-compat.php:161
579
+ msgid "Activity"
580
+ msgstr ""
581
+
582
+ #: bp-activity/bp-activity-screens.php:328 bp-blogs/bp-blogs-template.php:1114
583
+ #: bp-friends/bp-friends-screens.php:116 bp-groups/bp-groups-screens.php:1479
584
+ #: bp-messages/bp-messages-screens.php:228
585
+ #: bp-templates/bp-legacy/buddypress/members/register.php:317
586
+ msgid "Yes"
587
+ msgstr ""
588
+
589
+ #: bp-activity/bp-activity-screens.php:329 bp-blogs/bp-blogs-template.php:1118
590
+ #: bp-friends/bp-friends-screens.php:117 bp-groups/bp-groups-screens.php:1480
591
+ #: bp-messages/bp-messages-screens.php:229
592
+ #: bp-templates/bp-legacy/buddypress/members/register.php:318
593
+ msgid "No"
594
+ msgstr ""
595
+
596
+ #: bp-activity/bp-activity-screens.php:337
597
+ msgid "A member mentions you in an update using \"@%s\""
598
+ msgstr ""
599
+
600
+ #: bp-activity/bp-activity-screens.php:340
601
+ #: bp-activity/bp-activity-screens.php:354
602
+ #: bp-friends/bp-friends-screens.php:127 bp-friends/bp-friends-screens.php:139
603
+ #: bp-groups/bp-groups-screens.php:1490 bp-groups/bp-groups-screens.php:1502
604
+ #: bp-groups/bp-groups-screens.php:1514 bp-groups/bp-groups-screens.php:1526
605
+ #: bp-groups/bp-groups-screens.php:1538 bp-messages/bp-messages-screens.php:239
606
+ #. translators: accessibility text
607
+ msgid "Yes, send email"
608
+ msgstr ""
609
+
610
+ #: bp-activity/bp-activity-screens.php:344
611
+ #: bp-activity/bp-activity-screens.php:358
612
+ #: bp-friends/bp-friends-screens.php:131 bp-friends/bp-friends-screens.php:143
613
+ #: bp-groups/bp-groups-screens.php:1494 bp-groups/bp-groups-screens.php:1506
614
+ #: bp-groups/bp-groups-screens.php:1518 bp-groups/bp-groups-screens.php:1530
615
+ #: bp-groups/bp-groups-screens.php:1542 bp-messages/bp-messages-screens.php:243
616
+ #. translators: accessibility text
617
+ msgid "No, do not send email"
618
+ msgstr ""
619
+
620
+ #: bp-activity/bp-activity-screens.php:351
621
+ msgid "A member replies to an update or comment you've posted"
622
+ msgstr ""
623
+
624
+ #: bp-activity/bp-activity-template.php:453
625
+ msgid "Viewing 1 item"
626
+ msgstr ""
627
+
628
+ #: bp-activity/bp-activity-template.php:455
629
+ msgid "Viewing %1$s - %2$s of %3$s item"
630
+ msgid_plural "Viewing %1$s - %2$s of %3$s items"
631
+ msgstr[0] ""
632
+ msgstr[1] ""
633
+
634
+ #: bp-activity/bp-activity-template.php:1037
635
+ #: bp-activity/bp-activity-template.php:1206
636
+ #: bp-activity/bp-activity-template.php:1217
637
+ #: bp-activity/classes/class-bp-activity-component.php:359
638
+ #: bp-blogs/classes/class-bp-blogs-component.php:294
639
+ #: bp-core/deprecated/2.1.php:459 bp-forums/bp-forums-loader.php:263
640
+ #: bp-forums/bp-forums-template.php:893 bp-forums/bp-forums-template.php:1224
641
+ #: bp-forums/bp-forums-template.php:2613
642
+ #: bp-friends/classes/class-bp-friends-component.php:269
643
+ #: bp-groups/bp-groups-template.php:1635 bp-groups/bp-groups-template.php:1667
644
+ #: bp-groups/bp-groups-template.php:2434 bp-groups/bp-groups-template.php:2450
645
+ #: bp-groups/bp-groups-template.php:2510 bp-groups/bp-groups-template.php:2526
646
+ #: bp-groups/bp-groups-template.php:3975 bp-groups/bp-groups-template.php:4014
647
+ #: bp-groups/bp-groups-template.php:4055 bp-groups/bp-groups-template.php:5625
648
+ #: bp-groups/classes/class-bp-groups-component.php:817
649
+ #: bp-members/bp-members-template.php:804
650
+ #: bp-members/bp-members-template.php:1558
651
+ #: bp-members/bp-members-template.php:1613
652
+ #: bp-members/classes/class-bp-members-component.php:381
653
+ #: bp-messages/bp-messages-template.php:726
654
+ #: bp-messages/classes/class-bp-messages-component.php:347
655
+ #: bp-notifications/classes/class-bp-notifications-component.php:263
656
+ msgid "Profile picture of %s"
657
+ msgstr ""
658
+
659
+ #: bp-activity/bp-activity-template.php:1037
660
+ msgid "Profile picture"
661
+ msgstr ""
662
+
663
+ #: bp-activity/bp-activity-template.php:1182
664
+ msgid "Group logo"
665
+ msgstr ""
666
+
667
+ #: bp-activity/bp-activity-template.php:1185
668
+ #: bp-groups/bp-groups-template.php:792
669
+ #: bp-groups/classes/class-bp-groups-list-table.php:554
670
+ msgid "Group logo of %s"
671
+ msgstr ""
672
+
673
+ #: bp-activity/bp-activity-template.php:1196
674
+ msgid "Profile picture of the author of the site %s"
675
+ msgstr ""
676
+
677
+ #: bp-activity/bp-activity-template.php:1499
678
+ msgid "View Discussion"
679
+ msgstr ""
680
+
681
+ #: bp-activity/bp-activity-template.php:2170
682
+ msgid ""
683
+ "%1$s no longer accepts arguments. See the inline documentation at %2$s for "
684
+ "more details."
685
+ msgstr ""
686
+
687
+ #: bp-activity/bp-activity-template.php:2640
688
+ #: bp-core/bp-core-attachments.php:724 bp-forums/bp-forums-template.php:2784
689
+ #: bp-groups/classes/class-bp-groups-component.php:694
690
+ #: bp-groups/classes/class-bp-groups-list-table.php:371
691
+ #: bp-groups/classes/class-bp-groups-list-table.php:530
692
+ #: bp-members/classes/class-bp-members-list-table.php:171
693
+ #: bp-members/classes/class-bp-members-list-table.php:319
694
+ #: bp-members/classes/class-bp-members-ms-list-table.php:158
695
+ #: bp-members/classes/class-bp-members-ms-list-table.php:312
696
+ #: bp-messages/bp-messages-template.php:1039
697
+ #: bp-notifications/bp-notifications-template.php:784
698
+ #: bp-notifications/bp-notifications-template.php:1034
699
+ #: bp-templates/bp-legacy/buddypress/activity/comment.php:45
700
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:147
701
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:44
702
+ #: bp-xprofile/classes/class-bp-xprofile-field-type.php:405
703
+ msgid "Delete"
704
+ msgstr ""
705
+
706
+ #: bp-activity/bp-activity-template.php:2745
707
+ #: bp-core/admin/bp-core-admin-functions.php:1039
708
+ #: bp-core/admin/bp-core-admin-slugs.php:148
709
+ #: bp-core/admin/bp-core-admin-slugs.php:219
710
+ #: bp-groups/classes/class-bp-groups-list-table.php:533
711
+ #: bp-members/bp-members-template.php:1048
712
+ #: bp-templates/bp-legacy/buddypress-functions.php:305
713
+ msgid "View"
714
+ msgstr ""
715
+
716
+ #: bp-activity/bp-activity-template.php:2854
717
+ msgid "Clear Filter"
718
+ msgstr ""
719
+
720
+ #: bp-activity/bp-activity-template.php:3164
721
+ msgid "a user"
722
+ msgstr ""
723
+
724
+ #: bp-activity/bp-activity-template.php:3221
725
+ msgid "Public Message"
726
+ msgstr ""
727
+
728
+ #: bp-activity/bp-activity-template.php:3813
729
+ msgid "Site Wide Activity RSS Feed"
730
+ msgstr ""
731
+
732
+ #: bp-activity/classes/class-bp-activity-activity.php:365
733
+ #: bp-activity/classes/class-bp-activity-template.php:144
734
+ #: bp-groups/bp-groups-functions.php:236 bp-groups/bp-groups-functions.php:667
735
+ #: bp-groups/classes/class-bp-groups-group-members-template.php:99
736
+ #: bp-groups/classes/class-bp-groups-group.php:1041
737
+ #: bp-groups/classes/class-bp-groups-invite-template.php:84
738
+ #: bp-groups/classes/class-bp-groups-membership-requests-template.php:91
739
+ #: bp-groups/classes/class-bp-groups-template.php:134
740
+ #: bp-messages/classes/class-bp-messages-box-template.php:113
741
+ #: bp-messages/classes/class-bp-messages-thread.php:450
742
+ #: bp-xprofile/classes/class-bp-xprofile-data-template.php:129
743
+ msgid ""
744
+ "Arguments passed to %1$s should be in an associative array. See the inline "
745
+ "documentation at %2$s for more details."
746
+ msgstr ""
747
+
748
+ #: bp-activity/classes/class-bp-activity-component.php:30
749
+ #: bp-core/bp-core-functions.php:2490
750
+ msgid "Activity Streams"
751
+ msgstr ""
752
+
753
+ #: bp-activity/classes/class-bp-activity-component.php:131
754
+ msgid "Search Activity..."
755
+ msgstr ""
756
+
757
+ #: bp-activity/classes/class-bp-activity-feed.php:157
758
+ msgid "RSS feed 'id' must be defined"
759
+ msgstr ""
760
+
761
+ #: bp-activity/classes/class-bp-activity-feed.php:305
762
+ msgid "In reply to"
763
+ msgstr ""
764
+
765
+ #: bp-activity/classes/class-bp-activity-list-table.php:235
766
+ msgid "No activities found."
767
+ msgstr ""
768
+
769
+ #: bp-activity/classes/class-bp-activity-list-table.php:248
770
+ #. translators: accessibility text
771
+ msgid "Activities list"
772
+ msgstr ""
773
+
774
+ #: bp-activity/classes/class-bp-activity-list-table.php:312
775
+ #. translators: accessibility text
776
+ msgid "Filter activities list"
777
+ msgstr ""
778
+
779
+ #: bp-activity/classes/class-bp-activity-list-table.php:316
780
+ #: bp-groups/classes/class-bp-groups-list-table.php:334
781
+ msgid "All"
782
+ msgstr ""
783
+
784
+ #: bp-activity/classes/class-bp-activity-list-table.php:317
785
+ msgid "Spam <span class=\"count\">(%s)</span>"
786
+ msgstr ""
787
+
788
+ #: bp-activity/classes/class-bp-activity-list-table.php:343
789
+ msgid "Mark as Spam"
790
+ msgstr ""
791
+
792
+ #: bp-activity/classes/class-bp-activity-list-table.php:344
793
+ #: bp-activity/classes/class-bp-activity-list-table.php:604
794
+ #: bp-core/admin/bp-core-admin-functions.php:1027
795
+ msgid "Not Spam"
796
+ msgstr ""
797
+
798
+ #: bp-activity/classes/class-bp-activity-list-table.php:345
799
+ #: bp-activity/classes/class-bp-activity-list-table.php:609
800
+ #: bp-groups/bp-groups-admin.php:709
801
+ msgid "Delete Permanently"
802
+ msgstr ""
803
+
804
+ #: bp-activity/classes/class-bp-activity-list-table.php:425
805
+ #. translators: accessibility text
806
+ msgid "Filter by activity type"
807
+ msgstr ""
808
+
809
+ #: bp-activity/classes/class-bp-activity-list-table.php:428
810
+ msgid "View all actions"
811
+ msgstr ""
812
+
813
+ #: bp-activity/classes/class-bp-activity-list-table.php:471
814
+ msgid "Filter"
815
+ msgstr ""
816
+
817
+ #: bp-activity/classes/class-bp-activity-list-table.php:519
818
+ #. translators: accessibility text
819
+ msgid "Select activity item %1$d"
820
+ msgstr ""
821
+
822
+ #: bp-activity/classes/class-bp-activity-list-table.php:550
823
+ msgid "Unregistered action - %s"
824
+ msgstr ""
825
+
826
+ #: bp-activity/classes/class-bp-activity-list-table.php:595
827
+ msgid "Replies disabled"
828
+ msgstr ""
829
+
830
+ #: bp-activity/classes/class-bp-activity-list-table.php:609
831
+ #: bp-core/bp-core-cssjs.php:165
832
+ msgid "Are you sure?"
833
+ msgstr ""
834
+
835
+ #: bp-activity/classes/class-bp-activity-list-table.php:626
836
+ #. translators: %s: activity date and time
837
+ msgid "Submitted on %s"
838
+ msgstr ""
839
+
840
+ #: bp-activity/classes/class-bp-activity-list-table.php:632
841
+ #: bp-core/bp-core-template.php:426
842
+ #. translators: 1: activity date, 2: activity time
843
+ msgid "%1$s at %2$s"
844
+ msgstr ""
845
+
846
+ #: bp-activity/classes/class-bp-activity-oembed-extension.php:194
847
+ msgid "Embedded Activity Item"
848
+ msgstr ""
849
+
850
+ #: bp-activity/classes/class-bp-akismet.php:87
851
+ msgid "Flagged as spam by Akismet"
852
+ msgstr ""
853
+
854
+ #: bp-activity/classes/class-bp-akismet.php:90
855
+ msgid "Cleared by Akismet"
856
+ msgstr ""
857
+
858
+ #: bp-activity/classes/class-bp-akismet.php:96
859
+ msgid "Flagged as spam by %s"
860
+ msgstr ""
861
+
862
+ #: bp-activity/classes/class-bp-akismet.php:98
863
+ msgid "Un-spammed by %s"
864
+ msgstr ""
865
+
866
+ #: bp-activity/classes/class-bp-akismet.php:107
867
+ msgid "History"
868
+ msgstr ""
869
+
870
+ #: bp-activity/classes/class-bp-akismet.php:432
871
+ msgid "%s reported this activity as spam"
872
+ msgstr ""
873
+
874
+ #: bp-activity/classes/class-bp-akismet.php:449
875
+ msgid "%s reported this activity as not spam"
876
+ msgstr ""
877
+
878
+ #: bp-activity/classes/class-bp-akismet.php:473
879
+ msgid "Akismet caught this item as spam"
880
+ msgstr ""
881
+
882
+ #: bp-activity/classes/class-bp-akismet.php:478
883
+ msgid "Akismet cleared this item"
884
+ msgstr ""
885
+
886
+ #: bp-activity/classes/class-bp-akismet.php:483
887
+ msgid ""
888
+ "Akismet was unable to check this item (response: %s), will automatically "
889
+ "retry again later."
890
+ msgstr ""
891
+
892
+ #: bp-activity/classes/class-bp-akismet.php:588
893
+ msgid "Activity History"
894
+ msgstr ""
895
+
896
+ #: bp-blogs/bp-blogs-activity.php:25
897
+ msgid "New site created"
898
+ msgstr ""
899
+
900
+ #: bp-blogs/bp-blogs-activity.php:27
901
+ msgid "New Sites"
902
+ msgstr ""
903
+
904
+ #: bp-blogs/bp-blogs-activity.php:77
905
+ msgid "New post published"
906
+ msgstr ""
907
+
908
+ #: bp-blogs/bp-blogs-activity.php:79
909
+ #: bp-templates/bp-legacy/buddypress/forums/forums-loop.php:53
910
+ msgid "Posts"
911
+ msgstr ""
912
+
913
+ #: bp-blogs/bp-blogs-activity.php:105
914
+ msgid "New post comment posted"
915
+ msgstr ""
916
+
917
+ #: bp-blogs/bp-blogs-activity.php:107
918
+ msgid "Comments"
919
+ msgstr ""
920
+
921
+ #: bp-blogs/bp-blogs-activity.php:130
922
+ msgid "%s created the site %s"
923
+ msgstr ""
924
+
925
+ #: bp-blogs/bp-blogs-activity.php:212
926
+ msgid "(no title)"
927
+ msgstr ""
928
+
929
+ #: bp-blogs/bp-blogs-activity.php:239
930
+ msgid "%1$s wrote a new post, %2$s, on the site %3$s"
931
+ msgstr ""
932
+
933
+ #: bp-blogs/bp-blogs-activity.php:241
934
+ msgid "%1$s wrote a new post, %2$s"
935
+ msgstr ""
936
+
937
+ #: bp-blogs/bp-blogs-activity.php:365
938
+ msgid "%1$s commented on the post, %2$s, on the site %3$s"
939
+ msgstr ""
940
+
941
+ #: bp-blogs/bp-blogs-activity.php:367
942
+ msgid "%1$s commented on the post, %2$s"
943
+ msgstr ""
944
+
945
+ #: bp-blogs/bp-blogs-template.php:243
946
+ msgid "Viewing 1 site"
947
+ msgstr ""
948
+
949
+ #: bp-blogs/bp-blogs-template.php:245
950
+ msgid "Viewing %1$s - %2$s of %3$s site"
951
+ msgid_plural "Viewing %1$s - %2$s of %3$s sites"
952
+ msgstr[0] ""
953
+ msgstr[1] ""
954
+
955
+ #: bp-blogs/bp-blogs-template.php:340
956
+ msgid "Profile picture of site author %s"
957
+ msgstr ""
958
+
959
+ #: bp-blogs/bp-blogs-template.php:395
960
+ msgid "Site icon for %s"
961
+ msgstr ""
962
+
963
+ #: bp-blogs/bp-blogs-template.php:624
964
+ #: bp-core/classes/class-bp-core-user.php:177
965
+ #: bp-groups/bp-groups-widgets.php:72
966
+ #: bp-groups/classes/class-bp-groups-invite-template.php:240
967
+ #: bp-groups/classes/class-bp-groups-widget.php:147
968
+ #: bp-members/bp-members-template.php:963
969
+ #: bp-members/bp-members-template.php:1695
970
+ #: bp-templates/bp-legacy/buddypress/groups/groups-loop.php:66
971
+ #: bp-templates/bp-legacy/buddypress/groups/single/cover-image-header.php:62
972
+ #: bp-templates/bp-legacy/buddypress/groups/single/group-header.php:71
973
+ msgid "active %s"
974
+ msgstr ""
975
+
976
+ #: bp-blogs/bp-blogs-template.php:637 bp-members/bp-members-template.php:981
977
+ msgid "Never active"
978
+ msgstr ""
979
+
980
+ #: bp-blogs/bp-blogs-template.php:689
981
+ msgid "Latest Post: %s"
982
+ msgstr ""
983
+
984
+ #: bp-blogs/bp-blogs-template.php:1026
985
+ msgid "There was a problem; please correct the form below and try again."
986
+ msgstr ""
987
+
988
+ #: bp-blogs/bp-blogs-template.php:1029
989
+ msgid ""
990
+ "By filling out the form below, you can <strong>add a site to your "
991
+ "account</strong>. There is no limit to the number of sites that you can "
992
+ "have, so create to your heart's content, but blog responsibly!"
993
+ msgstr ""
994
+
995
+ #: bp-blogs/bp-blogs-template.php:1031
996
+ msgid ""
997
+ "If you&#8217;re not going to use a great domain, leave it for a new user. "
998
+ "Now have at it!"
999
+ msgstr ""
1000
+
1001
+ #: bp-blogs/bp-blogs-template.php:1047
1002
+ msgid "Create Site"
1003
+ msgstr ""
1004
+
1005
+ #: bp-blogs/bp-blogs-template.php:1069
1006
+ msgid "Site Name:"
1007
+ msgstr ""
1008
+
1009
+ #: bp-blogs/bp-blogs-template.php:1071
1010
+ msgid "Site Domain:"
1011
+ msgstr ""
1012
+
1013
+ #: bp-blogs/bp-blogs-template.php:1085
1014
+ msgid "Your address will be "
1015
+ msgstr ""
1016
+
1017
+ #: bp-blogs/bp-blogs-template.php:1088
1018
+ msgid "blogname"
1019
+ msgstr ""
1020
+
1021
+ #: bp-blogs/bp-blogs-template.php:1090
1022
+ msgid "domain."
1023
+ msgstr ""
1024
+
1025
+ #: bp-blogs/bp-blogs-template.php:1093
1026
+ msgid ""
1027
+ "Must be at least 4 characters, letters and numbers only. It cannot be "
1028
+ "changed so choose carefully!)"
1029
+ msgstr ""
1030
+
1031
+ #: bp-blogs/bp-blogs-template.php:1099
1032
+ msgid "Site Title:"
1033
+ msgstr ""
1034
+
1035
+ #: bp-blogs/bp-blogs-template.php:1110
1036
+ msgid ""
1037
+ "Privacy: I would like my site to appear in search engines, and in public "
1038
+ "listings around this network"
1039
+ msgstr ""
1040
+
1041
+ #: bp-blogs/bp-blogs-template.php:1222
1042
+ msgid "Congratulations! You have successfully registered a new site."
1043
+ msgstr ""
1044
+
1045
+ #: bp-blogs/bp-blogs-template.php:1227
1046
+ msgid "%s is your new site."
1047
+ msgstr ""
1048
+
1049
+ #: bp-blogs/bp-blogs-template.php:1232
1050
+ #. translators: 1: Login URL, 2: User name
1051
+ msgid "<a href=\"%1$s\">Log in</a> as \"%2$s\" using your existing password."
1052
+ msgstr ""
1053
+
1054
+ #: bp-blogs/bp-blogs-template.php:1269 bp-blogs/bp-blogs-template.php:1355
1055
+ #: bp-blogs/classes/class-bp-blogs-component.php:264
1056
+ #: bp-blogs/classes/class-bp-blogs-theme-compat.php:175
1057
+ #: bp-core/bp-core-template.php:3206
1058
+ msgid "Create a Site"
1059
+ msgstr ""
1060
+
1061
+ #: bp-blogs/bp-blogs-template.php:1285
1062
+ msgid "%s's Sites"
1063
+ msgstr ""
1064
+
1065
+ #: bp-blogs/bp-blogs-template.php:1286
1066
+ msgid "%s's Recent Posts"
1067
+ msgstr ""
1068
+
1069
+ #: bp-blogs/bp-blogs-template.php:1287
1070
+ msgid "%s's Recent Comments"
1071
+ msgstr ""
1072
+
1073
+ #: bp-blogs/bp-blogs-template.php:1315 bp-core/deprecated/1.5.php:426
1074
+ #: bp-forums/bp-forums-template.php:2927 bp-groups/bp-groups-template.php:5282
1075
+ #: bp-members/bp-members-template.php:1273
1076
+ #: bp-messages/bp-messages-template.php:859
1077
+ #: bp-templates/bp-legacy/buddypress/common/search/dir-search-form.php:14
1078
+ msgid "Search"
1079
+ msgstr ""
1080
+
1081
+ #: bp-blogs/bp-blogs-template.php:1471
1082
+ msgid "Visit Site"
1083
+ msgstr ""
1084
+
1085
+ #: bp-blogs/bp-blogs-template.php:1531
1086
+ msgid "%s site"
1087
+ msgid_plural "%s sites"
1088
+ msgstr[0] ""
1089
+ msgstr[1] ""
1090
+
1091
+ #: bp-blogs/classes/class-bp-blogs-component.php:30
1092
+ msgid "Site Directory"
1093
+ msgstr ""
1094
+
1095
+ #: bp-blogs/classes/class-bp-blogs-component.php:80
1096
+ msgid "Search sites..."
1097
+ msgstr ""
1098
+
1099
+ #: bp-blogs/classes/class-bp-blogs-component.php:185
1100
+ #. translators: %s: Site count for the current user
1101
+ msgid "Sites %s"
1102
+ msgstr ""
1103
+
1104
+ #: bp-blogs/classes/class-bp-blogs-component.php:202
1105
+ #: bp-blogs/classes/class-bp-blogs-component.php:254
1106
+ #: bp-blogs/classes/class-bp-blogs-component.php:285
1107
+ #: bp-core/deprecated/2.1.php:62
1108
+ msgid "My Sites"
1109
+ msgstr ""
1110
+
1111
+ #: bp-blogs/classes/class-bp-blogs-component.php:246
1112
+ #: bp-blogs/classes/class-bp-blogs-theme-compat.php:113
1113
+ #: bp-blogs/classes/class-bp-blogs-theme-compat.php:177
1114
+ msgid "Sites"
1115
+ msgstr ""
1116
+
1117
+ #: bp-blogs/classes/class-bp-blogs-recent-posts-widget.php:23
1118
+ msgid "A list of recently published posts from across your network."
1119
+ msgstr ""
1120
+
1121
+ #: bp-blogs/classes/class-bp-blogs-recent-posts-widget.php:43
1122
+ #: bp-blogs/classes/class-bp-blogs-recent-posts-widget.php:148
1123
+ msgid "Recent Networkwide Posts"
1124
+ msgstr ""
1125
+
1126
+ #: bp-blogs/classes/class-bp-blogs-recent-posts-widget.php:112
1127
+ msgid "Sorry, there were no posts found. Why not write one?"
1128
+ msgstr ""
1129
+
1130
+ #: bp-blogs/classes/class-bp-blogs-recent-posts-widget.php:160
1131
+ msgid "Link widget title to Blogs directory"
1132
+ msgstr ""
1133
+
1134
+ #: bp-blogs/classes/class-bp-blogs-recent-posts-widget.php:161
1135
+ msgid "Max posts to show:"
1136
+ msgstr ""
1137
+
1138
+ #: bp-core/admin/bp-core-admin-components.php:24
1139
+ #: bp-core/admin/bp-core-admin-settings.php:301
1140
+ #: bp-core/admin/bp-core-admin-slugs.php:24
1141
+ msgid "BuddyPress Settings"
1142
+ msgstr ""
1143
+
1144
+ #: bp-core/admin/bp-core-admin-components.php:26
1145
+ #: bp-core/admin/bp-core-admin-functions.php:431
1146
+ msgid "Components"
1147
+ msgstr ""
1148
+
1149
+ #: bp-core/admin/bp-core-admin-components.php:32
1150
+ #: bp-core/admin/bp-core-admin-settings.php:312
1151
+ #: bp-core/admin/bp-core-admin-slugs.php:32
1152
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/profile.php:67
1153
+ msgid "Save Settings"
1154
+ msgstr ""
1155
+
1156
+ #: bp-core/admin/bp-core-admin-components.php:67
1157
+ #: bp-core/bp-core-functions.php:2474
1158
+ msgid "Extended Profiles"
1159
+ msgstr ""
1160
+
1161
+ #: bp-core/admin/bp-core-admin-components.php:68
1162
+ #: bp-core/bp-core-functions.php:2475
1163
+ msgid ""
1164
+ "Customize your community with fully editable profile fields that allow your "
1165
+ "users to describe themselves."
1166
+ msgstr ""
1167
+
1168
+ #: bp-core/admin/bp-core-admin-components.php:71
1169
+ #: bp-core/bp-core-functions.php:2478
1170
+ msgid "Account Settings"
1171
+ msgstr ""
1172
+
1173
+ #: bp-core/admin/bp-core-admin-components.php:72
1174
+ #: bp-core/bp-core-functions.php:2479
1175
+ msgid ""
1176
+ "Allow your users to modify their account and notification settings directly "
1177
+ "from within their profiles."
1178
+ msgstr ""
1179
+
1180
+ #: bp-core/admin/bp-core-admin-components.php:75
1181
+ #: bp-core/bp-core-functions.php:2494 bp-core/deprecated/2.1.php:530
1182
+ #: bp-notifications/classes/class-bp-notifications-component.php:258
1183
+ #: bp-templates/bp-legacy/buddypress/members/single/notifications/read.php:15
1184
+ #. translators: accessibility text
1185
+ msgid "Notifications"
1186
+ msgstr ""
1187
+
1188
+ #: bp-core/admin/bp-core-admin-components.php:76
1189
+ #: bp-core/bp-core-functions.php:2495
1190
+ msgid ""
1191
+ "Notify members of relevant activity with a toolbar bubble and/or via email, "
1192
+ "and allow them to customize their notification settings."
1193
+ msgstr ""
1194
+
1195
+ #: bp-core/admin/bp-core-admin-components.php:154
1196
+ #. translators: accessibility text
1197
+ msgid "Filter components list"
1198
+ msgstr ""
1199
+
1200
+ #: bp-core/admin/bp-core-admin-components.php:159
1201
+ msgid "Active <span class=\"count\">(%s)</span>"
1202
+ msgid_plural "Active <span class=\"count\">(%s)</span>"
1203
+ msgstr[0] ""
1204
+ msgstr[1] ""
1205
+
1206
+ #: bp-core/admin/bp-core-admin-components.php:160
1207
+ msgid "Inactive <span class=\"count\">(%s)</span>"
1208
+ msgid_plural "Inactive <span class=\"count\">(%s)</span>"
1209
+ msgstr[0] ""
1210
+ msgstr[1] ""
1211
+
1212
+ #: bp-core/admin/bp-core-admin-components.php:161
1213
+ msgid "Must-Use <span class=\"count\">(%s)</span>"
1214
+ msgid_plural "Must-Use <span class=\"count\">(%s)</span>"
1215
+ msgstr[0] ""
1216
+ msgstr[1] ""
1217
+
1218
+ #: bp-core/admin/bp-core-admin-components.php:162
1219
+ msgid "Retired <span class=\"count\">(%s)</span>"
1220
+ msgid_plural "Retired <span class=\"count\">(%s)</span>"
1221
+ msgstr[0] ""
1222
+ msgstr[1] ""
1223
+
1224
+ #: bp-core/admin/bp-core-admin-components.php:167
1225
+ #. translators: accessibility text
1226
+ msgid "Components list"
1227
+ msgstr ""
1228
+
1229
+ #: bp-core/admin/bp-core-admin-components.php:175
1230
+ #: bp-core/admin/bp-core-admin-components.php:241
1231
+ #. translators: accessibility text
1232
+ msgid "Bulk selection is disabled"
1233
+ msgstr ""
1234
+
1235
+ #: bp-core/admin/bp-core-admin-components.php:177
1236
+ #: bp-core/admin/bp-core-admin-components.php:243
1237
+ msgid "Component"
1238
+ msgstr ""
1239
+
1240
+ #: bp-core/admin/bp-core-admin-components.php:178
1241
+ #: bp-core/admin/bp-core-admin-components.php:244
1242
+ msgid "Description"
1243
+ msgstr ""
1244
+
1245
+ #: bp-core/admin/bp-core-admin-components.php:201
1246
+ #. translators: accessibility text
1247
+ msgid "Select %s"
1248
+ msgstr ""
1249
+
1250
+ #: bp-core/admin/bp-core-admin-components.php:207
1251
+ #. translators: accessibility text
1252
+ msgid "%s is a required component"
1253
+ msgstr ""
1254
+
1255
+ #: bp-core/admin/bp-core-admin-components.php:230
1256
+ msgid "No components found."
1257
+ msgstr ""
1258
+
1259
+ #: bp-core/admin/bp-core-admin-functions.php:106
1260
+ msgid "Why have all my BuddyPress menus disappeared?"
1261
+ msgstr ""
1262
+
1263
+ #: bp-core/admin/bp-core-admin-functions.php:108
1264
+ msgid ""
1265
+ "Don't worry! We've moved the BuddyPress options into more convenient and "
1266
+ "easier to find locations. You're seeing this page because you are running a "
1267
+ "legacy BuddyPress plugin which has not been updated."
1268
+ msgstr ""
1269
+
1270
+ #: bp-core/admin/bp-core-admin-functions.php:109
1271
+ msgid ""
1272
+ "Components, Pages, Settings, and Forums, have been moved to <a "
1273
+ "href=\"%s\">Settings &gt; BuddyPress</a>. Profile Fields has been moved "
1274
+ "into the <a href=\"%s\">Users</a> menu."
1275
+ msgstr ""
1276
+
1277
+ #: bp-core/admin/bp-core-admin-functions.php:243
1278
+ msgid ""
1279
+ "<strong>BuddyPress is almost ready</strong>. You must <a href=\"%s\">update "
1280
+ "your permalink structure</a> to something other than the default for it to "
1281
+ "work."
1282
+ msgstr ""
1283
+
1284
+ #: bp-core/admin/bp-core-admin-functions.php:270
1285
+ #: bp-core/admin/bp-core-admin-slugs.php:91
1286
+ #: bp-members/classes/class-bp-members-list-table.php:315
1287
+ #: bp-members/classes/class-bp-members-ms-list-table.php:308
1288
+ #: bp-messages/bp-messages-template.php:1276
1289
+ #: bp-templates/bp-legacy/buddypress/members/activate.php:59
1290
+ msgid "Activate"
1291
+ msgstr ""
1292
+
1293
+ #: bp-core/admin/bp-core-admin-functions.php:275
1294
+ #: bp-core/admin/bp-core-admin-slugs.php:90
1295
+ #: bp-core/classes/class-bp-core-login-widget.php:120
1296
+ #: bp-members/bp-members-adminbar.php:63
1297
+ msgid "Register"
1298
+ msgstr ""
1299
+
1300
+ #: bp-core/admin/bp-core-admin-functions.php:305
1301
+ msgid ""
1302
+ "The following active BuddyPress Components do not have associated WordPress "
1303
+ "Pages: %s."
1304
+ msgstr ""
1305
+
1306
+ #: bp-core/admin/bp-core-admin-functions.php:309
1307
+ #: bp-core/admin/bp-core-admin-functions.php:339
1308
+ #: bp-core/admin/bp-core-admin-settings.php:274
1309
+ msgid "Repair"
1310
+ msgstr ""
1311
+
1312
+ #: bp-core/admin/bp-core-admin-functions.php:335
1313
+ msgid ""
1314
+ "Each BuddyPress Component needs its own WordPress page. The following "
1315
+ "WordPress Pages have more than one component associated with them: %s."
1316
+ msgstr ""
1317
+
1318
+ #: bp-core/admin/bp-core-admin-functions.php:435
1319
+ #: bp-core/admin/bp-core-admin-slugs.php:26
1320
+ msgid "Pages"
1321
+ msgstr ""
1322
+
1323
+ #: bp-core/admin/bp-core-admin-functions.php:439
1324
+ #: bp-core/admin/bp-core-admin-settings.php:303
1325
+ #: bp-core/bp-core-template.php:120
1326
+ msgid "Options"
1327
+ msgstr ""
1328
+
1329
+ #: bp-core/admin/bp-core-admin-functions.php:452
1330
+ #: bp-forums/bp-forums-loader.php:159 bp-forums/bp-forums-loader.php:214
1331
+ #: bp-forums/bp-forums-loader.php:258 bp-forums/bp-forums-screens.php:301
1332
+ #: bp-forums/bp-forums-screens.php:303 bp-forums/deprecated/1.6.php:39
1333
+ #: bp-forums/deprecated/1.7.php:101
1334
+ msgid "Forums"
1335
+ msgstr ""
1336
+
1337
+ #: bp-core/admin/bp-core-admin-functions.php:495
1338
+ msgid ""
1339
+ "<a "
1340
+ "href=\"https://codex.buddypress.org/getting-started/configure-components/\""
1341
+ ">Managing Components</a>"
1342
+ msgstr ""
1343
+
1344
+ #: bp-core/admin/bp-core-admin-functions.php:513
1345
+ msgid ""
1346
+ "<a "
1347
+ "href=\"https://codex.buddypress.org/getting-started/configure-components/#"
1348
+ "settings-buddypress-pages\">Managing Pages</a>"
1349
+ msgstr ""
1350
+
1351
+ #: bp-core/admin/bp-core-admin-functions.php:532
1352
+ msgid ""
1353
+ "<a "
1354
+ "href=\"https://codex.buddypress.org/getting-started/configure-components/#"
1355
+ "settings-buddypress-settings\">Managing Settings</a>"
1356
+ msgstr ""
1357
+
1358
+ #: bp-core/admin/bp-core-admin-functions.php:551
1359
+ msgid ""
1360
+ "<a "
1361
+ "href=\"https://codex.buddypress.org/administrator-guide/extended-profiles/\""
1362
+ ">Managing Profile Fields</a>"
1363
+ msgstr ""
1364
+
1365
+ #: bp-core/admin/bp-core-admin-functions.php:575
1366
+ msgid ""
1367
+ "By default, all but four of the BuddyPress components are enabled. You can "
1368
+ "selectively enable or disable any of the components by using the form "
1369
+ "below. Your BuddyPress installation will continue to function. However, the "
1370
+ "features of the disabled components will no longer be accessible to anyone "
1371
+ "using the site."
1372
+ msgstr ""
1373
+
1374
+ #: bp-core/admin/bp-core-admin-functions.php:579
1375
+ msgid ""
1376
+ "BuddyPress Components use WordPress Pages for their root directory/archive "
1377
+ "pages. You can change the page associations for each active component by "
1378
+ "using the form below."
1379
+ msgstr ""
1380
+
1381
+ #: bp-core/admin/bp-core-admin-functions.php:583
1382
+ msgid ""
1383
+ "Extra configuration settings are provided and activated. You can "
1384
+ "selectively enable or disable any setting by using the form on this screen."
1385
+ msgstr ""
1386
+
1387
+ #: bp-core/admin/bp-core-admin-functions.php:587
1388
+ msgid ""
1389
+ "Your users will distinguish themselves through their profile page. Create "
1390
+ "relevant profile fields that will show on each users profile."
1391
+ msgstr ""
1392
+
1393
+ #: bp-core/admin/bp-core-admin-functions.php:587
1394
+ msgid "Note: Any fields in the first group will appear on the signup page."
1395
+ msgstr ""
1396
+
1397
+ #. Plugin Name of the plugin/theme
1398
+ msgid "BuddyPress"
1399
+ msgstr ""
1400
+
1401
+ #: bp-core/admin/bp-core-admin-functions.php:780
1402
+ #: bp-core/admin/bp-core-admin-functions.php:789
1403
+ msgid "Logged-In"
1404
+ msgstr ""
1405
+
1406
+ #: bp-core/admin/bp-core-admin-functions.php:783
1407
+ #: bp-core/admin/bp-core-admin-functions.php:798
1408
+ msgid "Logged-Out"
1409
+ msgstr ""
1410
+
1411
+ #: bp-core/admin/bp-core-admin-functions.php:790
1412
+ msgid ""
1413
+ "<em>Logged-In</em> links are relative to the current user, and are not "
1414
+ "visible to visitors who are not logged in."
1415
+ msgstr ""
1416
+
1417
+ #: bp-core/admin/bp-core-admin-functions.php:799
1418
+ msgid "<em>Logged-Out</em> links are not visible to users who are logged in."
1419
+ msgstr ""
1420
+
1421
+ #: bp-core/admin/bp-core-admin-functions.php:828
1422
+ msgid "Select All"
1423
+ msgstr ""
1424
+
1425
+ #: bp-core/admin/bp-core-admin-functions.php:831
1426
+ msgid "Add to Menu"
1427
+ msgstr ""
1428
+
1429
+ #: bp-core/admin/bp-core-admin-functions.php:866
1430
+ msgid ""
1431
+ "Are your emails in the wrong language? Go to <a href=\"%s\">BuddyPress "
1432
+ "Tools and run the \"reinstall emails\"</a> tool."
1433
+ msgstr ""
1434
+
1435
+ #: bp-core/admin/bp-core-admin-functions.php:886
1436
+ msgid ""
1437
+ "Phrases wrapped in braces <code>{{ }}</code> are email tokens. <a "
1438
+ "href=\"%s\">Learn about tokens on the BuddyPress Codex</a>."
1439
+ msgstr ""
1440
+
1441
+ #: bp-core/admin/bp-core-admin-functions.php:929
1442
+ msgid "Choose when this email will be sent."
1443
+ msgstr ""
1444
+
1445
+ #: bp-core/admin/bp-core-admin-functions.php:942
1446
+ #: bp-core/admin/bp-core-admin-functions.php:960
1447
+ #. translators: accessibility text
1448
+ msgid "Plain text email content"
1449
+ msgstr ""
1450
+
1451
+ #: bp-core/admin/bp-core-admin-functions.php:963
1452
+ msgid ""
1453
+ "Most email clients support HTML email. However, some people prefer to "
1454
+ "receive plain text email. Enter a plain text alternative version of your "
1455
+ "email here."
1456
+ msgstr ""
1457
+
1458
+ #: bp-core/admin/bp-core-admin-functions.php:1091
1459
+ #: bp-members/bp-members-actions.php:55
1460
+ #: bp-members/classes/class-bp-members-admin.php:365
1461
+ msgid "User marked as spammer. Spam users are visible only to site admins."
1462
+ msgstr ""
1463
+
1464
+ #: bp-core/admin/bp-core-admin-functions.php:1093
1465
+ msgid "User removed from spam."
1466
+ msgstr ""
1467
+
1468
+ #: bp-core/admin/bp-core-admin-settings.php:30
1469
+ msgid "Show the Toolbar for logged out users"
1470
+ msgstr ""
1471
+
1472
+ #: bp-core/admin/bp-core-admin-settings.php:45
1473
+ msgid "Allow registered members to delete their own accounts"
1474
+ msgstr ""
1475
+
1476
+ #: bp-core/admin/bp-core-admin-settings.php:74
1477
+ msgid "The selected Template Pack will serve all BuddyPress templates."
1478
+ msgstr ""
1479
+
1480
+ #: bp-core/admin/bp-core-admin-settings.php:77
1481
+ msgid "No template packages available."
1482
+ msgstr ""
1483
+
1484
+ #: bp-core/admin/bp-core-admin-settings.php:101
1485
+ msgid "Allow Akismet to scan for activity stream spam"
1486
+ msgstr ""
1487
+
1488
+ #: bp-core/admin/bp-core-admin-settings.php:115
1489
+ msgid "Allow activity stream commenting on blog and forum posts"
1490
+ msgstr ""
1491
+
1492
+ #: bp-core/admin/bp-core-admin-settings.php:129
1493
+ msgid "Automatically check for new items while viewing the activity stream"
1494
+ msgstr ""
1495
+
1496
+ #: bp-core/admin/bp-core-admin-settings.php:169
1497
+ msgid "Enable BuddyPress to WordPress profile syncing"
1498
+ msgstr ""
1499
+
1500
+ #: bp-core/admin/bp-core-admin-settings.php:184
1501
+ msgid "Allow registered members to upload avatars"
1502
+ msgstr ""
1503
+
1504
+ #: bp-core/admin/bp-core-admin-settings.php:197
1505
+ msgid "Allow registered members to upload cover images"
1506
+ msgstr ""
1507
+
1508
+ #: bp-core/admin/bp-core-admin-settings.php:220
1509
+ msgid "Enable group creation for all users"
1510
+ msgstr ""
1511
+
1512
+ #: bp-core/admin/bp-core-admin-settings.php:221
1513
+ msgid "Administrators can always create groups, regardless of this setting."
1514
+ msgstr ""
1515
+
1516
+ #: bp-core/admin/bp-core-admin-settings.php:234
1517
+ msgid "Allow customizable avatars for groups"
1518
+ msgstr ""
1519
+
1520
+ #: bp-core/admin/bp-core-admin-settings.php:246
1521
+ msgid "Allow customizable cover images for groups"
1522
+ msgstr ""
1523
+
1524
+ #: bp-core/admin/bp-core-admin-settings.php:275
1525
+ msgid "File does not exist"
1526
+ msgstr ""
1527
+
1528
+ #: bp-core/admin/bp-core-admin-settings.php:279
1529
+ msgid "Absolute path to your bbPress configuration file."
1530
+ msgstr ""
1531
+
1532
+ #: bp-core/admin/bp-core-admin-slugs.php:121
1533
+ msgid "Directories"
1534
+ msgstr ""
1535
+
1536
+ #: bp-core/admin/bp-core-admin-slugs.php:123
1537
+ msgid "Associate a WordPress Page with each BuddyPress component directory."
1538
+ msgstr ""
1539
+
1540
+ #: bp-core/admin/bp-core-admin-slugs.php:142
1541
+ #: bp-core/admin/bp-core-admin-slugs.php:213
1542
+ msgid "- None -"
1543
+ msgstr ""
1544
+
1545
+ #: bp-core/admin/bp-core-admin-slugs.php:184
1546
+ msgid "Registration"
1547
+ msgstr ""
1548
+
1549
+ #: bp-core/admin/bp-core-admin-slugs.php:187
1550
+ msgid "Associate WordPress Pages with the following BuddyPress Registration pages."
1551
+ msgstr ""
1552
+
1553
+ #: bp-core/admin/bp-core-admin-slugs.php:190
1554
+ msgid ""
1555
+ "Registration is currently disabled. Before associating a page is allowed, "
1556
+ "please enable registration by selecting either the \"User accounts may be "
1557
+ "registered\" or \"Both sites and user accounts can be registered\" option "
1558
+ "on <a href=\"%s\">this page</a>."
1559
+ msgstr ""
1560
+
1561
+ #: bp-core/admin/bp-core-admin-slugs.php:192
1562
+ msgid ""
1563
+ "Registration is currently disabled. Before associating a page is allowed, "
1564
+ "please enable registration by clicking on the \"Anyone can register\" "
1565
+ "checkbox on <a href=\"%s\">this page</a>."
1566
+ msgstr ""
1567
+
1568
+ #: bp-core/admin/bp-core-admin-tools.php:22
1569
+ #: bp-core/admin/bp-core-admin-tools.php:407
1570
+ #: bp-core/admin/bp-core-admin-tools.php:410
1571
+ #: bp-core/classes/class-bp-admin.php:296
1572
+ msgid "BuddyPress Tools"
1573
+ msgstr ""
1574
+
1575
+ #: bp-core/admin/bp-core-admin-tools.php:24
1576
+ msgid ""
1577
+ "BuddyPress keeps track of various relationships between members, groups, "
1578
+ "and activity items. Occasionally these relationships become out of sync, "
1579
+ "most often after an import, update, or migration."
1580
+ msgstr ""
1581
+
1582
+ #: bp-core/admin/bp-core-admin-tools.php:25
1583
+ msgid "Use the tools below to manually recalculate these relationships."
1584
+ msgstr ""
1585
+
1586
+ #: bp-core/admin/bp-core-admin-tools.php:27
1587
+ msgid ""
1588
+ "Some of these tools create substantial database overhead. Avoid running "
1589
+ "more than one repair job at a time."
1590
+ msgstr ""
1591
+
1592
+ #: bp-core/admin/bp-core-admin-tools.php:32
1593
+ msgid "Repair tools"
1594
+ msgstr ""
1595
+
1596
+ #: bp-core/admin/bp-core-admin-tools.php:41
1597
+ msgid "Repair Items"
1598
+ msgstr ""
1599
+
1600
+ #: bp-core/admin/bp-core-admin-tools.php:102
1601
+ msgid "Repair total members count."
1602
+ msgstr ""
1603
+
1604
+ #: bp-core/admin/bp-core-admin-tools.php:108
1605
+ msgid "Repair member \"last activity\" data."
1606
+ msgstr ""
1607
+
1608
+ #: bp-core/admin/bp-core-admin-tools.php:117
1609
+ msgid "Repair total friends count for each member."
1610
+ msgstr ""
1611
+
1612
+ #: bp-core/admin/bp-core-admin-tools.php:127
1613
+ msgid "Repair total groups count for each member."
1614
+ msgstr ""
1615
+
1616
+ #: bp-core/admin/bp-core-admin-tools.php:137
1617
+ msgid "Repopulate site tracking records."
1618
+ msgstr ""
1619
+
1620
+ #: bp-core/admin/bp-core-admin-tools.php:146
1621
+ msgid "Reinstall emails (delete and restore from defaults)."
1622
+ msgstr ""
1623
+
1624
+ #: bp-core/admin/bp-core-admin-tools.php:176
1625
+ msgid "Counting the number of friends for each user&hellip; %s"
1626
+ msgstr ""
1627
+
1628
+ #: bp-core/admin/bp-core-admin-tools.php:177
1629
+ #: bp-core/admin/bp-core-admin-tools.php:235
1630
+ #: bp-core/admin/bp-core-admin-tools.php:280
1631
+ msgid "Failed!"
1632
+ msgstr ""
1633
+
1634
+ #: bp-core/admin/bp-core-admin-tools.php:217
1635
+ #: bp-core/admin/bp-core-admin-tools.php:264
1636
+ #: bp-core/admin/bp-core-admin-tools.php:292
1637
+ #: bp-core/admin/bp-core-admin-tools.php:308
1638
+ #: bp-core/admin/bp-core-admin-tools.php:321
1639
+ msgid "Complete!"
1640
+ msgstr ""
1641
+
1642
+ #: bp-core/admin/bp-core-admin-tools.php:234
1643
+ msgid "Counting the number of groups for each user&hellip; %s"
1644
+ msgstr ""
1645
+
1646
+ #: bp-core/admin/bp-core-admin-tools.php:277
1647
+ msgid "Repopulating Blogs records&hellip; %s"
1648
+ msgstr ""
1649
+
1650
+ #: bp-core/admin/bp-core-admin-tools.php:305
1651
+ msgid "Counting the number of active members on the site&hellip; %s"
1652
+ msgstr ""
1653
+
1654
+ #: bp-core/admin/bp-core-admin-tools.php:319
1655
+ msgid "Determining last activity dates for each user&hellip; %s"
1656
+ msgstr ""
1657
+
1658
+ #: bp-core/admin/bp-core-admin-tools.php:378
1659
+ #: bp-core/classes/class-bp-admin.php:273
1660
+ #: bp-core/classes/class-bp-admin.php:274
1661
+ msgid "Tools"
1662
+ msgstr ""
1663
+
1664
+ #: bp-core/admin/bp-core-admin-tools.php:409
1665
+ msgid ""
1666
+ "BuddyPress keeps track of various relationships between users, groups, and "
1667
+ "activity items. Occasionally these relationships become out of sync, most "
1668
+ "often after an import, update, or migration."
1669
+ msgstr ""
1670
+
1671
+ #: bp-core/admin/bp-core-admin-tools.php:468
1672
+ msgid "Emails have been successfully reinstalled."
1673
+ msgstr ""
1674
+
1675
+ #: bp-core/admin/bp-core-admin-tools.php:488
1676
+ msgid ""
1677
+ "It looks like you have more sites to record. Resume recording by checking "
1678
+ "the \"Repopulate site tracking records\" option."
1679
+ msgstr ""
1680
+
1681
+ #: bp-core/bp-core-admin.php:25
1682
+ msgid "Maintenance Release"
1683
+ msgid_plural "Maintenance Releases"
1684
+ msgstr[0] ""
1685
+ msgstr[1] ""
1686
+
1687
+ #: bp-core/bp-core-admin.php:26
1688
+ msgid "Security Release"
1689
+ msgid_plural "Security Releases"
1690
+ msgstr[0] ""
1691
+ msgstr[1] ""
1692
+
1693
+ #: bp-core/bp-core-admin.php:27
1694
+ msgid "Maintenance and Security Release"
1695
+ msgid_plural "Maintenance and Security Releases"
1696
+ msgstr[0] ""
1697
+ msgstr[1] ""
1698
+
1699
+ #: bp-core/bp-core-admin.php:30
1700
+ #. translators: 1: BuddyPress version number.
1701
+ msgid "<strong>Version %1$s</strong> addressed a security issue."
1702
+ msgid_plural "<strong>Version %1$s</strong> addressed some security issues."
1703
+ msgstr[0] ""
1704
+ msgstr[1] ""
1705
+
1706
+ #: bp-core/bp-core-admin.php:37
1707
+ #. translators: 1: BuddyPress version number, 2: plural number of bugs.
1708
+ msgid "<strong>Version %1$s</strong> addressed %2$s bug."
1709
+ msgid_plural "<strong>Version %1$s</strong> addressed %2$s bugs."
1710
+ msgstr[0] ""
1711
+ msgstr[1] ""
1712
+
1713
+ #: bp-core/bp-core-admin.php:44
1714
+ #. translators: 1: BuddyPress version number, 2: plural number of bugs.
1715
+ #. Singular security issue.
1716
+ msgid "<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug."
1717
+ msgid_plural ""
1718
+ "<strong>Version %1$s</strong> addressed a security issue and fixed %2$s "
1719
+ "bugs."
1720
+ msgstr[0] ""
1721
+ msgstr[1] ""
1722
+
1723
+ #: bp-core/bp-core-admin.php:51
1724
+ #. translators: 1: BuddyPress version number, 2: plural number of bugs. More
1725
+ #. than one security issue.
1726
+ msgid ""
1727
+ "<strong>Version %1$s</strong> addressed some security issues and fixed %2$s "
1728
+ "bug."
1729
+ msgid_plural ""
1730
+ "<strong>Version %1$s</strong> addressed some security issues and fixed %2$s "
1731
+ "bugs."
1732
+ msgstr[0] ""
1733
+ msgstr[1] ""
1734
+
1735
+ #: bp-core/bp-core-admin.php:57
1736
+ msgid "For more information, see <a href=\"%s\">the release notes</a>."
1737
+ msgstr ""
1738
+
1739
+ #: bp-core/bp-core-adminbar.php:36 bp-core/deprecated/2.1.php:213
1740
+ msgid "My Account"
1741
+ msgstr ""
1742
+
1743
+ #: bp-core/bp-core-adminbar.php:62
1744
+ msgid ""
1745
+ "The BuddyBar is no longer supported. Please migrate to the WordPress "
1746
+ "toolbar as soon as possible."
1747
+ msgstr ""
1748
+
1749
+ #: bp-core/bp-core-attachments.php:597
1750
+ msgid "You have attempted to queue too many files."
1751
+ msgstr ""
1752
+
1753
+ #: bp-core/bp-core-attachments.php:598
1754
+ msgid "%s exceeds the maximum upload size for this site."
1755
+ msgstr ""
1756
+
1757
+ #: bp-core/bp-core-attachments.php:599
1758
+ msgid "This file is empty. Please try another."
1759
+ msgstr ""
1760
+
1761
+ #: bp-core/bp-core-attachments.php:600
1762
+ msgid "This file type is not allowed. Please try another."
1763
+ msgstr ""
1764
+
1765
+ #: bp-core/bp-core-attachments.php:601
1766
+ msgid "This file is not an image. Please try another."
1767
+ msgstr ""
1768
+
1769
+ #: bp-core/bp-core-attachments.php:602
1770
+ msgid "Memory exceeded. Please try another smaller file."
1771
+ msgstr ""
1772
+
1773
+ #: bp-core/bp-core-attachments.php:603
1774
+ msgid "This is larger than the maximum size. Please try another."
1775
+ msgstr ""
1776
+
1777
+ #: bp-core/bp-core-attachments.php:604
1778
+ msgid "An error occurred. Please try again later."
1779
+ msgstr ""
1780
+
1781
+ #: bp-core/bp-core-attachments.php:605
1782
+ msgid "There was a configuration error. Please contact the server administrator."
1783
+ msgstr ""
1784
+
1785
+ #: bp-core/bp-core-attachments.php:606
1786
+ msgid "You may only upload 1 file."
1787
+ msgstr ""
1788
+
1789
+ #: bp-core/bp-core-attachments.php:607
1790
+ msgid "HTTP error."
1791
+ msgstr ""
1792
+
1793
+ #: bp-core/bp-core-attachments.php:608 bp-core/bp-core-avatars.php:1061
1794
+ msgid "Upload failed."
1795
+ msgstr ""
1796
+
1797
+ #: bp-core/bp-core-attachments.php:609
1798
+ msgid "Please try uploading this file with the %1$sbrowser uploader%2$s."
1799
+ msgstr ""
1800
+
1801
+ #: bp-core/bp-core-attachments.php:610
1802
+ msgid ""
1803
+ "%s exceeds the maximum upload size for the multi-file uploader when used in "
1804
+ "your browser."
1805
+ msgstr ""
1806
+
1807
+ #: bp-core/bp-core-attachments.php:611
1808
+ msgid "IO error."
1809
+ msgstr ""
1810
+
1811
+ #: bp-core/bp-core-attachments.php:612
1812
+ msgid "Security error."
1813
+ msgstr ""
1814
+
1815
+ #: bp-core/bp-core-attachments.php:613
1816
+ msgid "File canceled."
1817
+ msgstr ""
1818
+
1819
+ #: bp-core/bp-core-attachments.php:614
1820
+ msgid "Upload stopped."
1821
+ msgstr ""
1822
+
1823
+ #: bp-core/bp-core-attachments.php:615
1824
+ msgid "Dismiss"
1825
+ msgstr ""
1826
+
1827
+ #: bp-core/bp-core-attachments.php:616
1828
+ msgid "Crunching&hellip;"
1829
+ msgstr ""
1830
+
1831
+ #: bp-core/bp-core-attachments.php:617
1832
+ msgid "Make sure to upload a unique file"
1833
+ msgstr ""
1834
+
1835
+ #: bp-core/bp-core-attachments.php:618
1836
+ msgid "&#8220;%s&#8221; has failed to upload."
1837
+ msgstr ""
1838
+
1839
+ #: bp-core/bp-core-attachments.php:619
1840
+ msgid ""
1841
+ "If you&#39;d like to delete the existing profile photo but not upload a new "
1842
+ "one, please use the delete tab."
1843
+ msgstr ""
1844
+
1845
+ #: bp-core/bp-core-attachments.php:721
1846
+ msgid "Upload"
1847
+ msgstr ""
1848
+
1849
+ #: bp-core/bp-core-attachments.php:729
1850
+ msgid "Take Photo"
1851
+ msgstr ""
1852
+
1853
+ #: bp-core/bp-core-attachments.php:733
1854
+ msgid "Please allow us to access to your camera."
1855
+ msgstr ""
1856
+
1857
+ #: bp-core/bp-core-attachments.php:734
1858
+ msgid "Please wait as we access your camera."
1859
+ msgstr ""
1860
+
1861
+ #: bp-core/bp-core-attachments.php:735
1862
+ msgid "Camera loaded. Click on the \"Capture\" button to take your photo."
1863
+ msgstr ""
1864
+
1865
+ #: bp-core/bp-core-attachments.php:736
1866
+ msgid ""
1867
+ "It looks like you do not have a webcam or we were unable to get permission "
1868
+ "to use your webcam. Please upload a photo instead."
1869
+ msgstr ""
1870
+
1871
+ #: bp-core/bp-core-attachments.php:737
1872
+ msgid "Your browser is not supported. Please upload a photo instead."
1873
+ msgstr ""
1874
+
1875
+ #: bp-core/bp-core-attachments.php:738
1876
+ msgid "Video error. Please upload a photo instead."
1877
+ msgstr ""
1878
+
1879
+ #: bp-core/bp-core-attachments.php:739
1880
+ msgid "Your profile photo is ready. Click on the \"Save\" button to use this photo."
1881
+ msgstr ""
1882
+
1883
+ #: bp-core/bp-core-attachments.php:740
1884
+ msgid "No photo was captured. Click on the \"Capture\" button to take your photo."
1885
+ msgstr ""
1886
+
1887
+ #: bp-core/bp-core-attachments.php:787
1888
+ msgid ""
1889
+ "For better results, make sure to upload an image that is larger than %1$spx "
1890
+ "wide, and %2$spx tall."
1891
+ msgstr ""
1892
+
1893
+ #: bp-core/bp-core-attachments.php:1296 bp-core/bp-core-avatars.php:903
1894
+ msgid "Upload Failed! Error was: %s"
1895
+ msgstr ""
1896
+
1897
+ #: bp-core/bp-core-attachments.php:1301
1898
+ msgid "There was a problem uploading the cover image."
1899
+ msgstr ""
1900
+
1901
+ #: bp-core/bp-core-avatars.php:343
1902
+ msgid "Profile Photo"
1903
+ msgstr ""
1904
+
1905
+ #: bp-core/bp-core-avatars.php:931
1906
+ msgid "Upload failed! Error was: %s"
1907
+ msgstr ""
1908
+
1909
+ #: bp-core/bp-core-avatars.php:937
1910
+ msgid ""
1911
+ "You have selected an image that is smaller than recommended. For best "
1912
+ "results, upload a picture larger than %d x %d pixels."
1913
+ msgstr ""
1914
+
1915
+ #: bp-core/bp-core-buddybar.php:676 bp-core/bp-core-buddybar.php:692
1916
+ #: bp-core/bp-core-buddybar.php:712
1917
+ msgid "You do not have access to this page."
1918
+ msgstr ""
1919
+
1920
+ #: bp-core/bp-core-caps.php:410 bp-core/bp-core-caps.php:422
1921
+ #: bp-core/bp-core-caps.php:436 bp-core/bp-core-caps.php:446
1922
+ msgid "Special community roles no longer exist. Use mapped capabilities instead"
1923
+ msgstr ""
1924
+
1925
+ #: bp-core/bp-core-catchuri.php:330
1926
+ msgid ""
1927
+ "This user has been marked as a spammer. Only site admins can view this "
1928
+ "profile."
1929
+ msgstr ""
1930
+
1931
+ #: bp-core/bp-core-catchuri.php:643 bp-core/bp-core-catchuri.php:754
1932
+ msgid "You must log in to access the page you requested."
1933
+ msgstr ""
1934
+
1935
+ #: bp-core/bp-core-customizer-email.php:32
1936
+ msgid "Customize the appearance of emails sent by BuddyPress."
1937
+ msgstr ""
1938
+
1939
+ #: bp-core/bp-core-customizer-email.php:277
1940
+ msgid "Email background color"
1941
+ msgstr ""
1942
+
1943
+ #: bp-core/bp-core-customizer-email.php:284
1944
+ msgid "Header background color"
1945
+ msgstr ""
1946
+
1947
+ #: bp-core/bp-core-customizer-email.php:291
1948
+ msgid "Applied to links and other decorative areas."
1949
+ msgstr ""
1950
+
1951
+ #: bp-core/bp-core-customizer-email.php:292
1952
+ msgid "Highlight color"
1953
+ msgstr ""
1954
+
1955
+ #: bp-core/bp-core-customizer-email.php:299
1956
+ #: bp-core/bp-core-customizer-email.php:328
1957
+ #: bp-core/bp-core-customizer-email.php:365
1958
+ msgid "Text color"
1959
+ msgstr ""
1960
+
1961
+ #: bp-core/bp-core-customizer-email.php:306
1962
+ #: bp-core/bp-core-customizer-email.php:335
1963
+ #: bp-core/bp-core-customizer-email.php:372
1964
+ msgid "Text size"
1965
+ msgstr ""
1966
+
1967
+ #: bp-core/bp-core-customizer-email.php:320
1968
+ #: bp-core/bp-core-customizer-email.php:358
1969
+ msgid "Background color"
1970
+ msgstr ""
1971
+
1972
+ #: bp-core/bp-core-customizer-email.php:349
1973
+ msgid "Change the email footer here"
1974
+ msgstr ""
1975
+
1976
+ #: bp-core/bp-core-customizer-email.php:350
1977
+ msgid "Footer text"
1978
+ msgstr ""
1979
+
1980
+ #: bp-core/bp-core-filters.php:408 bp-core/bp-core-filters.php:441
1981
+ msgid "[User Set]"
1982
+ msgstr ""
1983
+
1984
+ #: bp-core/bp-core-filters.php:584
1985
+ msgid "Page %s"
1986
+ msgstr ""
1987
+
1988
+ #: bp-core/bp-core-functions.php:1167
1989
+ msgid "sometime"
1990
+ msgstr ""
1991
+
1992
+ #: bp-core/bp-core-functions.php:1176
1993
+ msgid "right now"
1994
+ msgstr ""
1995
+
1996
+ #: bp-core/bp-core-functions.php:1185
1997
+ msgid "%s ago"
1998
+ msgstr ""
1999
+
2000
+ #: bp-core/bp-core-functions.php:1246
2001
+ msgid "%s year"
2002
+ msgid_plural "%s years"
2003
+ msgstr[0] ""
2004
+ msgstr[1] ""
2005
+
2006
+ #: bp-core/bp-core-functions.php:1249 bp-core/bp-core-functions.php:1283
2007
+ msgid "%s month"
2008
+ msgid_plural "%s months"
2009
+ msgstr[0] ""
2010
+ msgstr[1] ""
2011
+
2012
+ #: bp-core/bp-core-functions.php:1252 bp-core/bp-core-functions.php:1286
2013
+ msgid "%s week"
2014
+ msgid_plural "%s weeks"
2015
+ msgstr[0] ""
2016
+ msgstr[1] ""
2017
+
2018
+ #: bp-core/bp-core-functions.php:1255 bp-core/bp-core-functions.php:1289
2019
+ msgid "%s day"
2020
+ msgid_plural "%s days"
2021
+ msgstr[0] ""
2022
+ msgstr[1] ""
2023
+
2024
+ #: bp-core/bp-core-functions.php:1258 bp-core/bp-core-functions.php:1292
2025
+ msgid "%s hour"
2026
+ msgid_plural "%s hours"
2027
+ msgstr[0] ""
2028
+ msgstr[1] ""
2029
+
2030
+ #: bp-core/bp-core-functions.php:1261 bp-core/bp-core-functions.php:1295
2031
+ msgid "%s minute"
2032
+ msgid_plural "%s minutes"
2033
+ msgstr[0] ""
2034
+ msgstr[1] ""
2035
+
2036
+ #: bp-core/bp-core-functions.php:1264 bp-core/bp-core-functions.php:1298
2037
+ msgid "%s second"
2038
+ msgid_plural "%s seconds"
2039
+ msgstr[0] ""
2040
+ msgstr[1] ""
2041
+
2042
+ #: bp-core/bp-core-functions.php:1562
2043
+ msgid "Not recently active"
2044
+ msgstr ""
2045
+
2046
+ #: bp-core/bp-core-functions.php:2456 bp-core/classes/class-bp-core.php:31
2047
+ msgid "BuddyPress Core"
2048
+ msgstr ""
2049
+
2050
+ #: bp-core/bp-core-functions.php:2457
2051
+ msgid "It&#8216;s what makes <del>time travel</del> BuddyPress possible!"
2052
+ msgstr ""
2053
+
2054
+ #: bp-core/bp-core-functions.php:2460
2055
+ msgid "Community Members"
2056
+ msgstr ""
2057
+
2058
+ #: bp-core/bp-core-functions.php:2461
2059
+ msgid "Everything in a BuddyPress community revolves around its members."
2060
+ msgstr ""
2061
+
2062
+ #: bp-core/bp-core-functions.php:2467
2063
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:194
2064
+ msgid "Group Forums"
2065
+ msgstr ""
2066
+
2067
+ #: bp-core/bp-core-functions.php:2468
2068
+ msgid "BuddyPress Forums are retired. Use %s."
2069
+ msgstr ""
2070
+
2071
+ #: bp-core/bp-core-functions.php:2482
2072
+ msgid "Friend Connections"
2073
+ msgstr ""
2074
+
2075
+ #: bp-core/bp-core-functions.php:2483
2076
+ msgid ""
2077
+ "Let your users make connections so they can track the activity of others "
2078
+ "and focus on the people they care about the most."
2079
+ msgstr ""
2080
+
2081
+ #: bp-core/bp-core-functions.php:2486
2082
+ msgid "Private Messaging"
2083
+ msgstr ""
2084
+
2085
+ #: bp-core/bp-core-functions.php:2487
2086
+ msgid ""
2087
+ "Allow your users to talk to each other directly and in private. Not just "
2088
+ "limited to one-on-one discussions, messages can be sent between any number "
2089
+ "of members."
2090
+ msgstr ""
2091
+
2092
+ #: bp-core/bp-core-functions.php:2491
2093
+ msgid ""
2094
+ "Global, personal, and group activity streams with threaded commenting, "
2095
+ "direct posting, favoriting, and @mentions, all with full RSS feed and email "
2096
+ "notification support."
2097
+ msgstr ""
2098
+
2099
+ #: bp-core/bp-core-functions.php:2498
2100
+ msgid "User Groups"
2101
+ msgstr ""
2102
+
2103
+ #: bp-core/bp-core-functions.php:2499
2104
+ msgid ""
2105
+ "Groups allow your users to organize themselves into specific public, "
2106
+ "private or hidden sections with separate activity streams and member "
2107
+ "listings."
2108
+ msgstr ""
2109
+
2110
+ #: bp-core/bp-core-functions.php:2502
2111
+ msgid "Group Forums (Legacy)"
2112
+ msgstr ""
2113
+
2114
+ #: bp-core/bp-core-functions.php:2503
2115
+ msgid "Group forums allow for focused, bulletin-board style conversations."
2116
+ msgstr ""
2117
+
2118
+ #: bp-core/bp-core-functions.php:2506
2119
+ msgid "Site Tracking"
2120
+ msgstr ""
2121
+
2122
+ #: bp-core/bp-core-functions.php:2507
2123
+ msgid "Record activity for new posts and comments from your site."
2124
+ msgstr ""
2125
+
2126
+ #: bp-core/bp-core-functions.php:2513
2127
+ msgid "Record activity for new sites, posts, and comments across your network."
2128
+ msgstr ""
2129
+
2130
+ #: bp-core/bp-core-functions.php:2577
2131
+ #: bp-core/classes/class-bp-core-login-widget.php:84
2132
+ #: bp-core/deprecated/1.5.php:313 bp-core/deprecated/2.1.php:258
2133
+ #: bp-members/bp-members-template.php:1366
2134
+ msgid "Log Out"
2135
+ msgstr ""
2136
+
2137
+ #: bp-core/bp-core-functions.php:2642
2138
+ #: bp-core/classes/class-bp-core-login-widget.php:116
2139
+ #: bp-core/deprecated/2.1.php:190
2140
+ msgid "Log In"
2141
+ msgstr ""
2142
+
2143
+ #: bp-core/bp-core-functions.php:3357
2144
+ #. translators: do not remove {} brackets or translate its contents.
2145
+ msgid "[{{{site.name}}}] {{poster.name}} replied to one of your updates"
2146
+ msgstr ""
2147
+
2148
+ #: bp-core/bp-core-functions.php:3359
2149
+ #. translators: do not remove {} brackets or translate its contents.
2150
+ msgid ""
2151
+ "{{poster.name}} replied to one of your updates:\n"
2152
+ "\n"
2153
+ "<blockquote>&quot;{{usermessage}}&quot;</blockquote>\n"
2154
+ "\n"
2155
+ "<a href=\"{{{thread.url}}}\">Go to the discussion</a> to reply or catch up "
2156
+ "on the conversation."
2157
+ msgstr ""
2158
+
2159
+ #: bp-core/bp-core-functions.php:3361
2160
+ #. translators: do not remove {} brackets or translate its contents.
2161
+ msgid ""
2162
+ "{{poster.name}} replied to one of your updates:\n"
2163
+ "\n"
2164
+ "\"{{usermessage}}\"\n"
2165
+ "\n"
2166
+ "Go to the discussion to reply or catch up on the conversation: "
2167
+ "{{{thread.url}}}"
2168
+ msgstr ""
2169
+
2170
+ #: bp-core/bp-core-functions.php:3365
2171
+ #. translators: do not remove {} brackets or translate its contents.
2172
+ msgid "[{{{site.name}}}] {{poster.name}} replied to one of your comments"
2173
+ msgstr ""
2174
+
2175
+ #: bp-core/bp-core-functions.php:3367
2176
+ #. translators: do not remove {} brackets or translate its contents.
2177
+ msgid ""
2178
+ "{{poster.name}} replied to one of your comments:\n"
2179
+ "\n"
2180
+ "<blockquote>&quot;{{usermessage}}&quot;</blockquote>\n"
2181
+ "\n"
2182
+ "<a href=\"{{{thread.url}}}\">Go to the discussion</a> to reply or catch up "
2183
+ "on the conversation."
2184
+ msgstr ""
2185
+
2186
+ #: bp-core/bp-core-functions.php:3369
2187
+ #. translators: do not remove {} brackets or translate its contents.
2188
+ msgid ""
2189
+ "{{poster.name}} replied to one of your comments:\n"
2190
+ "\n"
2191
+ "\"{{usermessage}}\"\n"
2192
+ "\n"
2193
+ "Go to the discussion to reply or catch up on the conversation: "
2194
+ "{{{thread.url}}}"
2195
+ msgstr ""
2196
+
2197
+ #: bp-core/bp-core-functions.php:3373
2198
+ #. translators: do not remove {} brackets or translate its contents.
2199
+ msgid "[{{{site.name}}}] {{poster.name}} mentioned you in a status update"
2200
+ msgstr ""
2201
+
2202
+ #: bp-core/bp-core-functions.php:3375
2203
+ #. translators: do not remove {} brackets or translate its contents.
2204
+ msgid ""
2205
+ "{{poster.name}} mentioned you in a status update:\n"
2206
+ "\n"
2207
+ "<blockquote>&quot;{{usermessage}}&quot;</blockquote>\n"
2208
+ "\n"
2209
+ "<a href=\"{{{mentioned.url}}}\">Go to the discussion</a> to reply or catch "
2210
+ "up on the conversation."
2211
+ msgstr ""
2212
+
2213
+ #: bp-core/bp-core-functions.php:3377
2214
+ #. translators: do not remove {} brackets or translate its contents.
2215
+ msgid ""
2216
+ "{{poster.name}} mentioned you in a status update:\n"
2217
+ "\n"
2218
+ "\"{{usermessage}}\"\n"
2219
+ "\n"
2220
+ "Go to the discussion to reply or catch up on the conversation: "
2221
+ "{{{mentioned.url}}}"
2222
+ msgstr ""
2223
+
2224
+ #: bp-core/bp-core-functions.php:3381
2225
+ #. translators: do not remove {} brackets or translate its contents.
2226
+ msgid "[{{{site.name}}}] {{poster.name}} mentioned you in an update"
2227
+ msgstr ""
2228
+
2229
+ #: bp-core/bp-core-functions.php:3383
2230
+ #. translators: do not remove {} brackets or translate its contents.
2231
+ msgid ""
2232
+ "{{poster.name}} mentioned you in the group \"{{group.name}}\":\n"
2233
+ "\n"
2234
+ "<blockquote>&quot;{{usermessage}}&quot;</blockquote>\n"
2235
+ "\n"
2236
+ "<a href=\"{{{mentioned.url}}}\">Go to the discussion</a> to reply or catch "
2237
+ "up on the conversation."
2238
+ msgstr ""
2239
+
2240
+ #: bp-core/bp-core-functions.php:3385
2241
+ #. translators: do not remove {} brackets or translate its contents.
2242
+ msgid ""
2243
+ "{{poster.name}} mentioned you in the group \"{{group.name}}\":\n"
2244
+ "\n"
2245
+ "\"{{usermessage}}\"\n"
2246
+ "\n"
2247
+ "Go to the discussion to reply or catch up on the conversation: "
2248
+ "{{{mentioned.url}}}"
2249
+ msgstr ""
2250
+
2251
+ #: bp-core/bp-core-functions.php:3389
2252
+ #. translators: do not remove {} brackets or translate its contents.
2253
+ msgid "[{{{site.name}}}] Activate your account"
2254
+ msgstr ""
2255
+
2256
+ #: bp-core/bp-core-functions.php:3391
2257
+ #. translators: do not remove {} brackets or translate its contents.
2258
+ msgid ""
2259
+ "Thanks for registering!\n"
2260
+ "\n"
2261
+ "To complete the activation of your account, go to the following link: <a "
2262
+ "href=\"{{{activate.url}}}\">{{{activate.url}}}</a>"
2263
+ msgstr ""
2264
+
2265
+ #: bp-core/bp-core-functions.php:3393
2266
+ #. translators: do not remove {} brackets or translate its contents.
2267
+ msgid ""
2268
+ "Thanks for registering!\n"
2269
+ "\n"
2270
+ "To complete the activation of your account, go to the following link: "
2271
+ "{{{activate.url}}}"
2272
+ msgstr ""
2273
+
2274
+ #: bp-core/bp-core-functions.php:3397
2275
+ #. translators: do not remove {} brackets or translate its contents.
2276
+ msgid "[{{{site.name}}}] Activate {{{user-site.url}}}"
2277
+ msgstr ""
2278
+
2279
+ #: bp-core/bp-core-functions.php:3399
2280
+ #. translators: do not remove {} brackets or translate its contents.
2281
+ msgid ""
2282
+ "Thanks for registering!\n"
2283
+ "\n"
2284
+ "To complete the activation of your account and site, go to the following "
2285
+ "link: <a href=\"{{{activate-site.url}}}\">{{{activate-site.url}}}</a>.\n"
2286
+ "\n"
2287
+ "After you activate, you can visit your site at <a "
2288
+ "href=\"{{{user-site.url}}}\">{{{user-site.url}}}</a>."
2289
+ msgstr ""
2290
+
2291
+ #: bp-core/bp-core-functions.php:3401
2292
+ #. translators: do not remove {} brackets or translate its contents.
2293
+ msgid ""
2294
+ "Thanks for registering!\n"
2295
+ "\n"
2296
+ "To complete the activation of your account and site, go to the following "
2297
+ "link: {{{activate-site.url}}}\n"
2298
+ "\n"
2299
+ "After you activate, you can visit your site at {{{user-site.url}}}."
2300
+ msgstr ""
2301
+
2302
+ #: bp-core/bp-core-functions.php:3405
2303
+ #. translators: do not remove {} brackets or translate its contents.
2304
+ msgid "[{{{site.name}}}] New friendship request from {{initiator.name}}"
2305
+ msgstr ""
2306
+
2307
+ #: bp-core/bp-core-functions.php:3407
2308
+ #. translators: do not remove {} brackets or translate its contents.
2309
+ msgid ""
2310
+ "<a href=\"{{{initiator.url}}}\">{{initiator.name}}</a> wants to add you as "
2311
+ "a friend.\n"
2312
+ "\n"
2313
+ "To accept this request and manage all of your pending requests, visit: <a "
2314
+ "href=\"{{{friend-requests.url}}}\">{{{friend-requests.url}}}</a>"
2315
+ msgstr ""
2316
+
2317
+ #: bp-core/bp-core-functions.php:3409
2318
+ #. translators: do not remove {} brackets or translate its contents.
2319
+ msgid ""
2320
+ "{{initiator.name}} wants to add you as a friend.\n"
2321
+ "\n"
2322
+ "To accept this request and manage all of your pending requests, visit: "
2323
+ "{{{friend-requests.url}}}\n"
2324
+ "\n"
2325
+ "To view {{initiator.name}}'s profile, visit: {{{initiator.url}}}"
2326
+ msgstr ""
2327
+
2328
+ #: bp-core/bp-core-functions.php:3413
2329
+ #. translators: do not remove {} brackets or translate its contents.
2330
+ msgid "[{{{site.name}}}] {{friend.name}} accepted your friendship request"
2331
+ msgstr ""
2332
+
2333
+ #: bp-core/bp-core-functions.php:3415
2334
+ #. translators: do not remove {} brackets or translate its contents.
2335
+ msgid ""
2336
+ "<a href=\"{{{friendship.url}}}\">{{friend.name}}</a> accepted your friend "
2337
+ "request."
2338
+ msgstr ""
2339
+
2340
+ #: bp-core/bp-core-functions.php:3417
2341
+ #. translators: do not remove {} brackets or translate its contents.
2342
+ msgid ""
2343
+ "{{friend.name}} accepted your friend request.\n"
2344
+ "\n"
2345
+ "To learn more about them, visit their profile: {{{friendship.url}}}"
2346
+ msgstr ""
2347
+
2348
+ #: bp-core/bp-core-functions.php:3421
2349
+ #. translators: do not remove {} brackets or translate its contents.
2350
+ msgid "[{{{site.name}}}] Group details updated"
2351
+ msgstr ""
2352
+
2353
+ #: bp-core/bp-core-functions.php:3423
2354
+ #. translators: do not remove {} brackets or translate its contents.
2355
+ msgid ""
2356
+ "Group details for the group &quot;<a "
2357
+ "href=\"{{{group.url}}}\">{{group.name}}</a>&quot; were updated:\n"
2358
+ "<blockquote>{{changed_text}}</blockquote>"
2359
+ msgstr ""
2360
+
2361
+ #: bp-core/bp-core-functions.php:3425
2362
+ #. translators: do not remove {} brackets or translate its contents.
2363
+ msgid ""
2364
+ "Group details for the group \"{{group.name}}\" were updated:\n"
2365
+ "\n"
2366
+ "{{changed_text}}\n"
2367
+ "\n"
2368
+ "To view the group, visit: {{{group.url}}}"
2369
+ msgstr ""
2370
+
2371
+ #: bp-core/bp-core-functions.php:3429
2372
+ #. translators: do not remove {} brackets or translate its contents.
2373
+ msgid "[{{{site.name}}}] You have an invitation to the group: \"{{group.name}}\""
2374
+ msgstr ""
2375
+
2376
+ #: bp-core/bp-core-functions.php:3431
2377
+ #. translators: do not remove {} brackets or translate its contents.
2378
+ msgid ""
2379
+ "<a href=\"{{{inviter.url}}}\">{{inviter.name}}</a> has invited you to join "
2380
+ "the group: &quot;{{group.name}}&quot;.\n"
2381
+ "<a href=\"{{{invites.url}}}\">Go here to accept your invitation</a> or <a "
2382
+ "href=\"{{{group.url}}}\">visit the group</a> to learn more."
2383
+ msgstr ""
2384
+
2385
+ #: bp-core/bp-core-functions.php:3433
2386
+ #. translators: do not remove {} brackets or translate its contents.
2387
+ msgid ""
2388
+ "{{inviter.name}} has invited you to join the group: \"{{group.name}}\".\n"
2389
+ "\n"
2390
+ "To accept your invitation, visit: {{{invites.url}}}\n"
2391
+ "\n"
2392
+ "To learn more about the group, visit: {{{group.url}}}.\n"
2393
+ "To view {{inviter.name}}'s profile, visit: {{{inviter.url}}}"
2394
+ msgstr ""
2395
+
2396
+ #: bp-core/bp-core-functions.php:3437
2397
+ #. translators: do not remove {} brackets or translate its contents.
2398
+ msgid "[{{{site.name}}}] You have been promoted in the group: \"{{group.name}}\""
2399
+ msgstr ""
2400
+
2401
+ #: bp-core/bp-core-functions.php:3439
2402
+ #. translators: do not remove {} brackets or translate its contents.
2403
+ msgid ""
2404
+ "You have been promoted to <b>{{promoted_to}}</b> in the group &quot;<a "
2405
+ "href=\"{{{group.url}}}\">{{group.name}}</a>&quot;."
2406
+ msgstr ""
2407
+
2408
+ #: bp-core/bp-core-functions.php:3441
2409
+ #. translators: do not remove {} brackets or translate its contents.
2410
+ msgid ""
2411
+ "You have been promoted to {{promoted_to}} in the group: \"{{group.name}}\".\n"
2412
+ "\n"
2413
+ "To visit the group, go to: {{{group.url}}}"
2414
+ msgstr ""
2415
+
2416
+ #: bp-core/bp-core-functions.php:3445
2417
+ #. translators: do not remove {} brackets or translate its contents.
2418
+ msgid "[{{{site.name}}}] Membership request for group: {{group.name}}"
2419
+ msgstr ""
2420
+
2421
+ #: bp-core/bp-core-functions.php:3447
2422
+ #. translators: do not remove {} brackets or translate its contents.
2423
+ msgid ""
2424
+ "<a href=\"{{{profile.url}}}\">{{requesting-user.name}}</a> wants to join "
2425
+ "the group &quot;{{group.name}}&quot;. As you are an administrator of this "
2426
+ "group, you must either accept or reject the membership request.\n"
2427
+ "\n"
2428
+ "<a href=\"{{{group-requests.url}}}\">Go here to manage this</a> and all "
2429
+ "other pending requests."
2430
+ msgstr ""
2431
+
2432
+ #: bp-core/bp-core-functions.php:3449
2433
+ #. translators: do not remove {} brackets or translate its contents.
2434
+ msgid ""
2435
+ "{{requesting-user.name}} wants to join the group \"{{group.name}}\". As you "
2436
+ "are the administrator of this group, you must either accept or reject the "
2437
+ "membership request.\n"
2438
+ "\n"
2439
+ "To manage this and all other pending requests, visit: "
2440
+ "{{{group-requests.url}}}\n"
2441
+ "\n"
2442
+ "To view {{requesting-user.name}}'s profile, visit: {{{profile.url}}}"
2443
+ msgstr ""
2444
+
2445
+ #: bp-core/bp-core-functions.php:3453
2446
+ #. translators: do not remove {} brackets or translate its contents.
2447
+ msgid "[{{{site.name}}}] New message from {{sender.name}}"
2448
+ msgstr ""
2449
+
2450
+ #: bp-core/bp-core-functions.php:3455
2451
+ #. translators: do not remove {} brackets or translate its contents.
2452
+ msgid ""
2453
+ "{{sender.name}} sent you a new message: &quot;{{usersubject}}&quot;\n"
2454
+ "\n"
2455
+ "<blockquote>&quot;{{usermessage}}&quot;</blockquote>\n"
2456
+ "\n"
2457
+ "<a href=\"{{{message.url}}}\">Go to the discussion</a> to reply or catch up "
2458
+ "on the conversation."
2459
+ msgstr ""
2460
+
2461
+ #: bp-core/bp-core-functions.php:3457
2462
+ #. translators: do not remove {} brackets or translate its contents.
2463
+ msgid ""
2464
+ "{{sender.name}} sent you a new message: \"{{usersubject}}\"\n"
2465
+ "\n"
2466
+ "\"{{usermessage}}\"\n"
2467
+ "\n"
2468
+ "Go to the discussion to reply or catch up on the conversation: "
2469
+ "{{{message.url}}}"
2470
+ msgstr ""
2471
+
2472
+ #: bp-core/bp-core-functions.php:3461
2473
+ #. translators: do not remove {} brackets or translate its contents.
2474
+ msgid "[{{{site.name}}}] Verify your new email address"
2475
+ msgstr ""
2476
+
2477
+ #: bp-core/bp-core-functions.php:3463
2478
+ #. translators: do not remove {} brackets or translate its contents.
2479
+ msgid ""
2480
+ "You recently changed the email address associated with your account on "
2481
+ "{{site.name}} to {{user.email}}. If this is correct, <a "
2482
+ "href=\"{{{verify.url}}}\">go here to confirm the change</a>.\n"
2483
+ "\n"
2484
+ "Otherwise, you can safely ignore and delete this email if you have changed "
2485
+ "your mind, or if you think you have received this email in error."
2486
+ msgstr ""
2487
+
2488
+ #: bp-core/bp-core-functions.php:3465
2489
+ #. translators: do not remove {} brackets or translate its contents.
2490
+ msgid ""
2491
+ "You recently changed the email address associated with your account on "
2492
+ "{{site.name}} to {{user.email}}. If this is correct, go to the following "
2493
+ "link to confirm the change: {{{verify.url}}}\n"
2494
+ "\n"
2495
+ "Otherwise, you can safely ignore and delete this email if you have changed "
2496
+ "your mind, or if you think you have received this email in error."
2497
+ msgstr ""
2498
+
2499
+ #: bp-core/bp-core-functions.php:3469
2500
+ #. translators: do not remove {} brackets or translate its contents.
2501
+ msgid "[{{{site.name}}}] Membership request for group \"{{group.name}}\" accepted"
2502
+ msgstr ""
2503
+
2504
+ #: bp-core/bp-core-functions.php:3471
2505
+ #. translators: do not remove {} brackets or translate its contents.
2506
+ msgid ""
2507
+ "Your membership request for the group &quot;<a "
2508
+ "href=\"{{{group.url}}}\">{{group.name}}</a>&quot; has been accepted."
2509
+ msgstr ""
2510
+
2511
+ #: bp-core/bp-core-functions.php:3473
2512
+ #. translators: do not remove {} brackets or translate its contents.
2513
+ msgid ""
2514
+ "Your membership request for the group \"{{group.name}}\" has been accepted.\n"
2515
+ "\n"
2516
+ "To view the group, visit: {{{group.url}}}"
2517
+ msgstr ""
2518
+
2519
+ #: bp-core/bp-core-functions.php:3477
2520
+ #. translators: do not remove {} brackets or translate its contents.
2521
+ msgid "[{{{site.name}}}] Membership request for group \"{{group.name}}\" rejected"
2522
+ msgstr ""
2523
+
2524
+ #: bp-core/bp-core-functions.php:3479
2525
+ #. translators: do not remove {} brackets or translate its contents.
2526
+ msgid ""
2527
+ "Your membership request for the group &quot;<a "
2528
+ "href=\"{{{group.url}}}\">{{group.name}}</a>&quot; has been rejected."
2529
+ msgstr ""
2530
+
2531
+ #: bp-core/bp-core-functions.php:3481
2532
+ #. translators: do not remove {} brackets or translate its contents.
2533
+ msgid ""
2534
+ "Your membership request for the group \"{{group.name}}\" has been rejected.\n"
2535
+ "\n"
2536
+ "To request membership again, visit: {{{group.url}}}"
2537
+ msgstr ""
2538
+
2539
+ #: bp-core/bp-core-functions.php:3506
2540
+ msgid "A member has replied to an activity update that the recipient posted."
2541
+ msgstr ""
2542
+
2543
+ #: bp-core/bp-core-functions.php:3509 bp-core/bp-core-functions.php:3517
2544
+ msgid ""
2545
+ "You will no longer receive emails when someone replies to an update or "
2546
+ "comment you posted."
2547
+ msgstr ""
2548
+
2549
+ #: bp-core/bp-core-functions.php:3514
2550
+ msgid ""
2551
+ "A member has replied to a comment on an activity update that the recipient "
2552
+ "posted."
2553
+ msgstr ""
2554
+
2555
+ #: bp-core/bp-core-functions.php:3522
2556
+ msgid "Recipient was mentioned in an activity update."
2557
+ msgstr ""
2558
+
2559
+ #: bp-core/bp-core-functions.php:3525 bp-core/bp-core-functions.php:3533
2560
+ msgid "You will no longer receive emails when someone mentions you in an update."
2561
+ msgstr ""
2562
+
2563
+ #: bp-core/bp-core-functions.php:3530
2564
+ msgid "Recipient was mentioned in a group activity update."
2565
+ msgstr ""
2566
+
2567
+ #: bp-core/bp-core-functions.php:3538
2568
+ msgid "Recipient has registered for an account."
2569
+ msgstr ""
2570
+
2571
+ #: bp-core/bp-core-functions.php:3543
2572
+ msgid "Recipient has registered for an account and site."
2573
+ msgstr ""
2574
+
2575
+ #: bp-core/bp-core-functions.php:3548
2576
+ msgid "A member has sent a friend request to the recipient."
2577
+ msgstr ""
2578
+
2579
+ #: bp-core/bp-core-functions.php:3551
2580
+ msgid "You will no longer receive emails when someone sends you a friend request."
2581
+ msgstr ""
2582
+
2583
+ #: bp-core/bp-core-functions.php:3556
2584
+ msgid "Recipient has had a friend request accepted by a member."
2585
+ msgstr ""
2586
+
2587
+ #: bp-core/bp-core-functions.php:3559
2588
+ msgid ""
2589
+ "You will no longer receive emails when someone accepts your friendship "
2590
+ "request."
2591
+ msgstr ""
2592
+
2593
+ #: bp-core/bp-core-functions.php:3564 bp-core/bp-core-functions.php:3572
2594
+ msgid "A group's details were updated."
2595
+ msgstr ""
2596
+
2597
+ #: bp-core/bp-core-functions.php:3567 bp-core/bp-core-functions.php:3575
2598
+ msgid "You will no longer receive emails when one of your groups is updated."
2599
+ msgstr ""
2600
+
2601
+ #: bp-core/bp-core-functions.php:3580
2602
+ msgid "A member has sent a group invitation to the recipient."
2603
+ msgstr ""
2604
+
2605
+ #: bp-core/bp-core-functions.php:3583
2606
+ msgid "You will no longer receive emails when you are invited to join a group."
2607
+ msgstr ""
2608
+
2609
+ #: bp-core/bp-core-functions.php:3588 bp-core/bp-core-functions.php:3596
2610
+ msgid "Recipient's status within a group has changed."
2611
+ msgstr ""
2612
+
2613
+ #: bp-core/bp-core-functions.php:3591 bp-core/bp-core-functions.php:3599
2614
+ msgid "You will no longer receive emails when you have been promoted in a group."
2615
+ msgstr ""
2616
+
2617
+ #: bp-core/bp-core-functions.php:3604
2618
+ msgid "A member has requested permission to join a group."
2619
+ msgstr ""
2620
+
2621
+ #: bp-core/bp-core-functions.php:3607
2622
+ msgid ""
2623
+ "You will no longer receive emails when someone requests to be a member of "
2624
+ "your group."
2625
+ msgstr ""
2626
+
2627
+ #: bp-core/bp-core-functions.php:3612
2628
+ msgid "Recipient has received a private message."
2629
+ msgstr ""
2630
+
2631
+ #: bp-core/bp-core-functions.php:3615
2632
+ msgid "You will no longer receive emails when someone sends you a message."
2633
+ msgstr ""
2634
+
2635
+ #: bp-core/bp-core-functions.php:3620
2636
+ msgid "Recipient has changed their email address."
2637
+ msgstr ""
2638
+
2639
+ #: bp-core/bp-core-functions.php:3625
2640
+ msgid "Recipient had requested to join a group, which was accepted."
2641
+ msgstr ""
2642
+
2643
+ #: bp-core/bp-core-functions.php:3628 bp-core/bp-core-functions.php:3636
2644
+ msgid ""
2645
+ "You will no longer receive emails when your request to join a group has "
2646
+ "been accepted or denied."
2647
+ msgstr ""
2648
+
2649
+ #: bp-core/bp-core-functions.php:3633
2650
+ msgid "Recipient had requested to join a group, which was rejected."
2651
+ msgstr ""
2652
+
2653
+ #: bp-core/bp-core-functions.php:3681 bp-core/bp-core-functions.php:3687
2654
+ #: bp-core/bp-core-functions.php:3692
2655
+ msgid "Something has gone wrong."
2656
+ msgstr ""
2657
+
2658
+ #: bp-core/bp-core-functions.php:3682 bp-core/bp-core-functions.php:3688
2659
+ msgid ""
2660
+ "Please log in and go to your settings to unsubscribe from notification "
2661
+ "emails."
2662
+ msgstr ""
2663
+
2664
+ #: bp-core/bp-core-functions.php:3693
2665
+ msgid "Please go to your notifications settings to unsubscribe from emails."
2666
+ msgstr ""
2667
+
2668
+ #: bp-core/bp-core-functions.php:3721
2669
+ msgid ""
2670
+ "You can change this or any other email notification preferences in your "
2671
+ "email settings."
2672
+ msgstr ""
2673
+
2674
+ #: bp-core/bp-core-moderation.php:135
2675
+ msgid "You have posted too many links"
2676
+ msgstr ""
2677
+
2678
+ #: bp-core/bp-core-template.php:146
2679
+ msgid "%s Directory"
2680
+ msgstr ""
2681
+
2682
+ #: bp-core/bp-core-template.php:199 bp-core/bp-core-template.php:218
2683
+ #: bp-core/classes/class-bp-core-user.php:174
2684
+ #: bp-core/classes/class-bp-core-user.php:175
2685
+ #: bp-core/classes/class-bp-core-user.php:176
2686
+ #: bp-groups/classes/class-bp-groups-invite-template.php:234
2687
+ #: bp-groups/classes/class-bp-groups-invite-template.php:235
2688
+ #: bp-groups/classes/class-bp-groups-invite-template.php:236
2689
+ msgid "Profile photo of %s"
2690
+ msgstr ""
2691
+
2692
+ #: bp-core/bp-core-template.php:680
2693
+ msgid "Search anything..."
2694
+ msgstr ""
2695
+
2696
+ #: bp-core/bp-core-template.php:880
2697
+ msgid " [&hellip;]"
2698
+ msgstr ""
2699
+
2700
+ #: bp-core/bp-core-template.php:1217
2701
+ msgid "Community"
2702
+ msgstr ""
2703
+
2704
+ #: bp-core/bp-core-template.php:3194
2705
+ #: bp-members/classes/class-bp-registration-theme-compat.php:100
2706
+ msgid "Create an Account"
2707
+ msgstr ""
2708
+
2709
+ #: bp-core/bp-core-template.php:3198
2710
+ #: bp-members/classes/class-bp-registration-theme-compat.php:108
2711
+ msgid "Activate Your Account"
2712
+ msgstr ""
2713
+
2714
+ #: bp-core/bp-core-template.php:3202 bp-groups/bp-groups-template.php:3615
2715
+ msgid "Create a Group"
2716
+ msgstr ""
2717
+
2718
+ #: bp-core/classes/class-bp-admin.php:202
2719
+ #: bp-core/classes/class-bp-admin.php:203
2720
+ #: bp-core/classes/class-bp-admin.php:211
2721
+ #: bp-core/classes/class-bp-admin.php:212
2722
+ msgid "Welcome to BuddyPress"
2723
+ msgstr ""
2724
+
2725
+ #: bp-core/classes/class-bp-admin.php:232
2726
+ msgid "BuddyPress Help"
2727
+ msgstr ""
2728
+
2729
+ #: bp-core/classes/class-bp-admin.php:233
2730
+ msgid "Help"
2731
+ msgstr ""
2732
+
2733
+ #: bp-core/classes/class-bp-admin.php:242
2734
+ msgid "BuddyPress Components"
2735
+ msgstr ""
2736
+
2737
+ #: bp-core/classes/class-bp-admin.php:251
2738
+ #: bp-core/classes/class-bp-admin.php:252
2739
+ msgid "BuddyPress Pages"
2740
+ msgstr ""
2741
+
2742
+ #: bp-core/classes/class-bp-admin.php:260
2743
+ #: bp-core/classes/class-bp-admin.php:261
2744
+ msgid "BuddyPress Options"
2745
+ msgstr ""
2746
+
2747
+ #: bp-core/classes/class-bp-admin.php:284
2748
+ #: bp-core/classes/class-bp-admin.php:285
2749
+ msgid "Available Tools"
2750
+ msgstr ""
2751
+
2752
+ #: bp-core/classes/class-bp-admin.php:377
2753
+ msgid "Main Settings"
2754
+ msgstr ""
2755
+
2756
+ #: bp-core/classes/class-bp-admin.php:380
2757
+ #: bp-core/classes/class-bp-admin.php:390
2758
+ msgid "Toolbar"
2759
+ msgstr ""
2760
+
2761
+ #: bp-core/classes/class-bp-admin.php:395
2762
+ msgid "Account Deletion"
2763
+ msgstr ""
2764
+
2765
+ #: bp-core/classes/class-bp-admin.php:399
2766
+ msgid "Template Pack"
2767
+ msgstr ""
2768
+
2769
+ #: bp-core/classes/class-bp-admin.php:410
2770
+ msgid "Profile Photo Uploads"
2771
+ msgstr ""
2772
+
2773
+ #: bp-core/classes/class-bp-admin.php:415
2774
+ msgid "Cover Image Uploads"
2775
+ msgstr ""
2776
+
2777
+ #: bp-core/classes/class-bp-admin.php:420
2778
+ msgid "Profile Syncing"
2779
+ msgstr ""
2780
+
2781
+ #: bp-core/classes/class-bp-admin.php:429
2782
+ msgid "Groups Settings"
2783
+ msgstr ""
2784
+
2785
+ #: bp-core/classes/class-bp-admin.php:432
2786
+ msgid "Group Creation"
2787
+ msgstr ""
2788
+
2789
+ #: bp-core/classes/class-bp-admin.php:436
2790
+ msgid "Group Photo Uploads"
2791
+ msgstr ""
2792
+
2793
+ #: bp-core/classes/class-bp-admin.php:441
2794
+ msgid "Group Cover Image Uploads"
2795
+ msgstr ""
2796
+
2797
+ #: bp-core/classes/class-bp-admin.php:451
2798
+ msgid "Legacy Group Forums"
2799
+ msgstr ""
2800
+
2801
+ #: bp-core/classes/class-bp-admin.php:454
2802
+ msgid "bbPress Configuration"
2803
+ msgstr ""
2804
+
2805
+ #: bp-core/classes/class-bp-admin.php:463
2806
+ msgid "Activity Settings"
2807
+ msgstr ""
2808
+
2809
+ #: bp-core/classes/class-bp-admin.php:466
2810
+ msgid "Blog &amp; Forum Comments"
2811
+ msgstr ""
2812
+
2813
+ #: bp-core/classes/class-bp-admin.php:470
2814
+ msgid "Activity auto-refresh"
2815
+ msgstr ""
2816
+
2817
+ #: bp-core/classes/class-bp-admin.php:475
2818
+ msgid "Akismet"
2819
+ msgstr ""
2820
+
2821
+ #: bp-core/classes/class-bp-admin.php:493
2822
+ msgid "About BuddyPress"
2823
+ msgstr ""
2824
+
2825
+ #: bp-core/classes/class-bp-admin.php:517
2826
+ #: bp-groups/classes/class-bp-groups-component.php:658
2827
+ #: bp-settings/classes/class-bp-settings-component.php:28
2828
+ #: bp-settings/classes/class-bp-settings-component.php:101
2829
+ #: bp-settings/classes/class-bp-settings-component.php:180
2830
+ msgid "Settings"
2831
+ msgstr ""
2832
+
2833
+ #: bp-core/classes/class-bp-admin.php:518
2834
+ msgid "About"
2835
+ msgstr ""
2836
+
2837
+ #: bp-core/classes/class-bp-admin.php:570
2838
+ msgid "Getting Started with BuddyPress"
2839
+ msgstr ""
2840
+
2841
+ #: bp-core/classes/class-bp-admin.php:573
2842
+ msgid "Configure BuddyPress"
2843
+ msgstr ""
2844
+
2845
+ #: bp-core/classes/class-bp-admin.php:576
2846
+ msgid "Set Up Components"
2847
+ msgstr ""
2848
+
2849
+ #: bp-core/classes/class-bp-admin.php:579
2850
+ msgid "Assign Components to Pages"
2851
+ msgstr ""
2852
+
2853
+ #: bp-core/classes/class-bp-admin.php:582
2854
+ msgid "Customize Settings"
2855
+ msgstr ""
2856
+
2857
+ #: bp-core/classes/class-bp-admin.php:585
2858
+ msgid "Get Started"
2859
+ msgstr ""
2860
+
2861
+ #: bp-core/classes/class-bp-admin.php:588
2862
+ msgid "Administration Tools"
2863
+ msgstr ""
2864
+
2865
+ #: bp-core/classes/class-bp-admin.php:591
2866
+ msgid "Add User Profile Fields"
2867
+ msgstr ""
2868
+
2869
+ #: bp-core/classes/class-bp-admin.php:593
2870
+ msgid "Manage User Signups"
2871
+ msgstr ""
2872
+
2873
+ #: bp-core/classes/class-bp-admin.php:595
2874
+ msgid "Moderate Activity Streams"
2875
+ msgstr ""
2876
+
2877
+ #: bp-core/classes/class-bp-admin.php:598
2878
+ msgid "Manage Groups"
2879
+ msgstr ""
2880
+
2881
+ #: bp-core/classes/class-bp-admin.php:600
2882
+ msgid "Repair Data"
2883
+ msgstr ""
2884
+
2885
+ #: bp-core/classes/class-bp-admin.php:605
2886
+ msgid "Community and Support"
2887
+ msgstr ""
2888
+
2889
+ #: bp-core/classes/class-bp-admin.php:606
2890
+ msgid ""
2891
+ "Looking for help? The <a href=\"https://codex.buddypress.org/\">BuddyPress "
2892
+ "Codex</a> has you covered."
2893
+ msgstr ""
2894
+
2895
+ #: bp-core/classes/class-bp-admin.php:607
2896
+ msgid ""
2897
+ "Can&#8217;t find what you need? Stop by <a "
2898
+ "href=\"https://buddypress.org/support/\">our support forums</a>, where "
2899
+ "active BuddyPress users and developers are waiting to share tips and more."
2900
+ msgstr ""
2901
+
2902
+ #: bp-core/classes/class-bp-admin.php:617
2903
+ msgid "For Developers &amp; Site Builders"
2904
+ msgstr ""
2905
+
2906
+ #: bp-core/classes/class-bp-admin.php:621
2907
+ msgid "Edit Group Slug"
2908
+ msgstr ""
2909
+
2910
+ #: bp-core/classes/class-bp-admin.php:622
2911
+ msgid ""
2912
+ "Allow administrators to change group names and permalinks. Navigate to the "
2913
+ "Groups screen in the wp-admin dashboard, click on the Edit link under the "
2914
+ "Group name, and adjust as needed."
2915
+ msgstr ""
2916
+
2917
+ #: bp-core/classes/class-bp-admin.php:627
2918
+ msgid "Improve accessibility of Extended Profile Fields"
2919
+ msgstr ""
2920
+
2921
+ #: bp-core/classes/class-bp-admin.php:628
2922
+ msgid ""
2923
+ "Related form fields are grouped together in fieldsets and all interactive "
2924
+ "form controls are associated with necessary ARIA states and properties."
2925
+ msgstr ""
2926
+
2927
+ #: bp-core/classes/class-bp-admin.php:633
2928
+ msgid "Send group invitation only once per user"
2929
+ msgstr ""
2930
+
2931
+ #: bp-core/classes/class-bp-admin.php:634
2932
+ msgid ""
2933
+ "Prevent duplicate group invitations from being sent to a user by "
2934
+ "double-checking if a group invitation has already been sent to that user."
2935
+ msgstr ""
2936
+
2937
+ #: bp-core/classes/class-bp-admin.php:639
2938
+ msgid "Tooltips Usable for All Devices"
2939
+ msgstr ""
2940
+
2941
+ #: bp-core/classes/class-bp-admin.php:641
2942
+ msgid ""
2943
+ "Replaced HTML title attributes with tooltips which provide additional "
2944
+ "information and visual cues where needed on mouse hover and keyboard focus "
2945
+ "events."
2946
+ msgstr ""
2947
+
2948
+ #: bp-core/classes/class-bp-admin.php:649
2949
+ msgid "More under the hood &#8230;"
2950
+ msgstr ""
2951
+
2952
+ #: bp-core/classes/class-bp-admin.php:652
2953
+ msgid "Better support for private message thread links in emails"
2954
+ msgstr ""
2955
+
2956
+ #: bp-core/classes/class-bp-admin.php:653
2957
+ msgid ""
2958
+ "Redirect non-authenticated users to the login screen and authenticated "
2959
+ "users to the message linked."
2960
+ msgstr ""
2961
+
2962
+ #: bp-core/classes/class-bp-admin.php:656
2963
+ msgid "Compatibility with Bootstrap themes"
2964
+ msgstr ""
2965
+
2966
+ #: bp-core/classes/class-bp-admin.php:657
2967
+ msgid ""
2968
+ "Removed issues with BuddyPress-generated content being hidden in the Groups "
2969
+ "loop and Activity comments in Bootstrap themes."
2970
+ msgstr ""
2971
+
2972
+ #: bp-core/classes/class-bp-admin.php:661
2973
+ msgid "Improve profile image uploads"
2974
+ msgstr ""
2975
+
2976
+ #: bp-core/classes/class-bp-admin.php:662
2977
+ msgid ""
2978
+ "Fixed issues with uploading in iOS Safari and uploading files with "
2979
+ "non-ASCII filenames."
2980
+ msgstr ""
2981
+
2982
+ #: bp-core/classes/class-bp-admin.php:668
2983
+ msgid "URL compatibility for LightSpeed Servers"
2984
+ msgstr ""
2985
+
2986
+ #: bp-core/classes/class-bp-admin.php:671
2987
+ #. translators: %s: trailingslashit()
2988
+ msgid "Audited and changed template link functions to use %s where necessary."
2989
+ msgstr ""
2990
+
2991
+ #: bp-core/classes/class-bp-admin.php:676
2992
+ msgid "Template Packs UI in BuddyPress > Settings."
2993
+ msgstr ""
2994
+
2995
+ #: bp-core/classes/class-bp-admin.php:677
2996
+ msgid ""
2997
+ "Register your new BuddyPress theme package and allow the user to select "
2998
+ "which template pack to use."
2999
+ msgstr ""
3000
+
3001
+ #: bp-core/classes/class-bp-admin.php:683
3002
+ #. translators: %s: bp_group_link()
3003
+ msgid "New template function %s"
3004
+ msgstr ""
3005
+
3006
+ #: bp-core/classes/class-bp-admin.php:686
3007
+ msgid "Output a group name as a text hyperlink where appropriate."
3008
+ msgstr ""
3009
+
3010
+ #: bp-core/classes/class-bp-admin.php:720
3011
+ msgid "BuddyPress is created by a worldwide network of friendly folks like these."
3012
+ msgstr ""
3013
+
3014
+ #: bp-core/classes/class-bp-admin.php:722
3015
+ msgid "Project Leaders"
3016
+ msgstr ""
3017
+
3018
+ #: bp-core/classes/class-bp-admin.php:727
3019
+ msgid "Project Lead"
3020
+ msgstr ""
3021
+
3022
+ #: bp-core/classes/class-bp-admin.php:732
3023
+ #: bp-core/classes/class-bp-admin.php:737
3024
+ msgid "Lead Developer"
3025
+ msgstr ""
3026
+
3027
+ #: bp-core/classes/class-bp-admin.php:741
3028
+ msgid "BuddyPress Team"
3029
+ msgstr ""
3030
+
3031
+ #: bp-core/classes/class-bp-admin.php:746
3032
+ msgid "2.9 Release Lead"
3033
+ msgstr ""
3034
+
3035
+ #: bp-core/classes/class-bp-admin.php:751
3036
+ #: bp-core/classes/class-bp-admin.php:756
3037
+ #: bp-core/classes/class-bp-admin.php:766
3038
+ #: bp-core/classes/class-bp-admin.php:771
3039
+ #: bp-core/classes/class-bp-admin.php:791
3040
+ #: bp-core/classes/class-bp-admin.php:796
3041
+ #: bp-core/classes/class-bp-admin.php:801
3042
+ msgid "Core Developer"
3043
+ msgstr ""
3044
+
3045
+ #: bp-core/classes/class-bp-admin.php:761
3046
+ msgid "Navigator"
3047
+ msgstr ""
3048
+
3049
+ #: bp-core/classes/class-bp-admin.php:776
3050
+ #: bp-core/classes/class-bp-admin.php:781
3051
+ #: bp-core/classes/class-bp-admin.php:786
3052
+ msgid "Community Support"
3053
+ msgstr ""
3054
+
3055
+ #: bp-core/classes/class-bp-admin.php:805
3056
+ msgid "&#x1f31f;Recent Rockstars&#x1f31f;"
3057
+ msgstr ""
3058
+
3059
+ #: bp-core/classes/class-bp-admin.php:825
3060
+ msgid "Contributors to BuddyPress %s"
3061
+ msgstr ""
3062
+
3063
+ #: bp-core/classes/class-bp-admin.php:875
3064
+ msgid "&#x1f496;With our thanks to these Open Source projects&#x1f496;"
3065
+ msgstr ""
3066
+
3067
+ #: bp-core/classes/class-bp-admin.php:903
3068
+ msgid ""
3069
+ "Thank you for installing BuddyPress! BuddyPress adds community features to "
3070
+ "WordPress. Member Profiles, Activity Streams, Direct Messaging, "
3071
+ "Notifications, and more!"
3072
+ msgstr ""
3073
+
3074
+ #: bp-core/classes/class-bp-admin.php:904
3075
+ msgid ""
3076
+ "Thank you for updating! BuddyPress %s has many new improvements that you "
3077
+ "will enjoy."
3078
+ msgstr ""
3079
+
3080
+ #: bp-core/classes/class-bp-admin.php:908
3081
+ msgid "Welcome to BuddyPress %s"
3082
+ msgstr ""
3083
+
3084
+ #: bp-core/classes/class-bp-admin.php:937
3085
+ msgid "What&#8217;s New"
3086
+ msgstr ""
3087
+
3088
+ #: bp-core/classes/class-bp-admin.php:939
3089
+ msgid "Credits"
3090
+ msgstr ""
3091
+
3092
+ #: bp-core/classes/class-bp-attachment-avatar.php:40
3093
+ msgid "That photo is too big. Please upload one smaller than %s"
3094
+ msgstr ""
3095
+
3096
+ #: bp-core/classes/class-bp-attachment-avatar.php:41
3097
+ #: bp-core/classes/class-bp-attachment-cover-image.php:41
3098
+ msgid "Please upload only this file type: %s."
3099
+ msgid_plural "Please upload only these file types: %s."
3100
+ msgstr[0] ""
3101
+ msgstr[1] ""
3102
+
3103
+ #: bp-core/classes/class-bp-attachment-avatar.php:378
3104
+ #: bp-xprofile/bp-xprofile-screens.php:250
3105
+ msgid "There was a problem cropping your profile photo."
3106
+ msgstr ""
3107
+
3108
+ #: bp-core/classes/class-bp-attachment-avatar.php:379
3109
+ #: bp-xprofile/bp-xprofile-screens.php:264
3110
+ msgid "Your new profile photo was uploaded successfully."
3111
+ msgstr ""
3112
+
3113
+ #: bp-core/classes/class-bp-attachment-avatar.php:380
3114
+ #: bp-xprofile/bp-xprofile-actions.php:42
3115
+ msgid "There was a problem deleting your profile photo. Please try again."
3116
+ msgstr ""
3117
+
3118
+ #: bp-core/classes/class-bp-attachment-avatar.php:381
3119
+ #: bp-xprofile/bp-xprofile-actions.php:40
3120
+ msgid "Your profile photo was deleted successfully!"
3121
+ msgstr ""
3122
+
3123
+ #: bp-core/classes/class-bp-attachment-avatar.php:396
3124
+ #: bp-groups/bp-groups-screens.php:1055
3125
+ msgid "There was a problem cropping the group profile photo."
3126
+ msgstr ""
3127
+
3128
+ #: bp-core/classes/class-bp-attachment-avatar.php:397
3129
+ #: bp-groups/bp-groups-actions.php:388
3130
+ msgid "The group profile photo was uploaded successfully."
3131
+ msgstr ""
3132
+
3133
+ #: bp-core/classes/class-bp-attachment-avatar.php:398
3134
+ #: bp-groups/bp-groups-screens.php:1012
3135
+ msgid "There was a problem deleting the group profile photo. Please try again."
3136
+ msgstr ""
3137
+
3138
+ #: bp-core/classes/class-bp-attachment-avatar.php:399
3139
+ #: bp-groups/bp-groups-screens.php:1010
3140
+ msgid "The group profile photo was deleted successfully!"
3141
+ msgstr ""
3142
+
3143
+ #: bp-core/classes/class-bp-attachment-cover-image.php:40
3144
+ msgid "That image is too big. Please upload one smaller than %s"
3145
+ msgstr ""
3146
+
3147
+ #: bp-core/classes/class-bp-attachment-cover-image.php:243
3148
+ msgid "Your new cover image was uploaded successfully."
3149
+ msgstr ""
3150
+
3151
+ #: bp-core/classes/class-bp-attachment-cover-image.php:244
3152
+ msgid "There was a problem deleting your cover image. Please try again."
3153
+ msgstr ""
3154
+
3155
+ #: bp-core/classes/class-bp-attachment-cover-image.php:245
3156
+ msgid "Your cover image was deleted successfully!"
3157
+ msgstr ""
3158
+
3159
+ #: bp-core/classes/class-bp-attachment-cover-image.php:261
3160
+ msgid "The group cover image was uploaded successfully."
3161
+ msgstr ""
3162
+
3163
+ #: bp-core/classes/class-bp-attachment-cover-image.php:262
3164
+ msgid "There was a problem deleting the group cover image. Please try again."
3165
+ msgstr ""
3166
+
3167
+ #: bp-core/classes/class-bp-attachment-cover-image.php:263
3168
+ msgid "The group cover image was deleted successfully!"
3169
+ msgstr ""
3170
+
3171
+ #: bp-core/classes/class-bp-attachment.php:160
3172
+ msgid "The file was uploaded successfully"
3173
+ msgstr ""
3174
+
3175
+ #: bp-core/classes/class-bp-attachment.php:161
3176
+ msgid "The uploaded file exceeds the maximum allowed file size for this site"
3177
+ msgstr ""
3178
+
3179
+ #: bp-core/classes/class-bp-attachment.php:162
3180
+ msgid "The uploaded file exceeds the maximum allowed file size of: %s"
3181
+ msgstr ""
3182
+
3183
+ #: bp-core/classes/class-bp-attachment.php:163
3184
+ msgid "The uploaded file was only partially uploaded."
3185
+ msgstr ""
3186
+
3187
+ #: bp-core/classes/class-bp-attachment.php:164
3188
+ msgid "No file was uploaded."
3189
+ msgstr ""
3190
+
3191
+ #: bp-core/classes/class-bp-attachment.php:166
3192
+ msgid "Missing a temporary folder."
3193
+ msgstr ""
3194
+
3195
+ #: bp-core/classes/class-bp-attachment.php:167
3196
+ msgid "Failed to write file to disk."
3197
+ msgstr ""
3198
+
3199
+ #: bp-core/classes/class-bp-attachment.php:168
3200
+ msgid "File upload stopped by extension."
3201
+ msgstr ""
3202
+
3203
+ #: bp-core/classes/class-bp-attachment.php:457
3204
+ msgid "Cropping the file failed: missing source file."
3205
+ msgstr ""
3206
+
3207
+ #: bp-core/classes/class-bp-attachment.php:462
3208
+ msgid "Cropping the file failed: the file path is not allowed."
3209
+ msgstr ""
3210
+
3211
+ #: bp-core/classes/class-bp-attachment.php:503
3212
+ msgid "Cropping the file failed: %s is not a supported image file."
3213
+ msgstr ""
3214
+
3215
+ #: bp-core/classes/class-bp-attachment.php:536
3216
+ msgid "Sorry, uploading the file failed."
3217
+ msgstr ""
3218
+
3219
+ #: bp-core/classes/class-bp-attachment.php:537
3220
+ msgid "File successfully uploaded."
3221
+ msgstr ""
3222
+
3223
+ #: bp-core/classes/class-bp-core-bp-nav-backcompat.php:66
3224
+ #: bp-core/classes/class-bp-core-bp-nav-backcompat.php:100
3225
+ #: bp-core/classes/class-bp-core-bp-nav-backcompat.php:125
3226
+ #: bp-core/classes/class-bp-core-bp-nav-backcompat.php:151
3227
+ msgid ""
3228
+ "The bp_nav and bp_options_nav globals should not be used directly and are "
3229
+ "deprecated. Please use the BuddyPress nav functions instead."
3230
+ msgstr ""
3231
+
3232
+ #: bp-core/classes/class-bp-core-bp-options-nav-backcompat.php:40
3233
+ #: bp-core/classes/class-bp-core-bp-options-nav-backcompat.php:80
3234
+ msgid ""
3235
+ "These globals should not be used directly and are deprecated. Please use "
3236
+ "the BuddyPress nav functions instead."
3237
+ msgstr ""
3238
+
3239
+ #: bp-core/classes/class-bp-core-login-widget.php:30
3240
+ msgid ""
3241
+ "Show a Log In form to logged-out visitors, and a Log Out link to those who "
3242
+ "are logged in."
3243
+ msgstr ""
3244
+
3245
+ #: bp-core/classes/class-bp-core-login-widget.php:108
3246
+ #: bp-members/classes/class-bp-members-list-table.php:150
3247
+ #: bp-members/classes/class-bp-members-ms-list-table.php:137
3248
+ #: bp-templates/bp-legacy/buddypress/members/register.php:84
3249
+ msgid "Username"
3250
+ msgstr ""
3251
+
3252
+ #: bp-core/classes/class-bp-core-login-widget.php:111
3253
+ msgid "Password"
3254
+ msgstr ""
3255
+
3256
+ #: bp-core/classes/class-bp-core-login-widget.php:114
3257
+ msgid "Remember Me"
3258
+ msgstr ""
3259
+
3260
+ #: bp-core/classes/class-bp-core-login-widget.php:180
3261
+ #: bp-groups/classes/class-bp-groups-widget.php:217
3262
+ #: bp-members/classes/class-bp-core-members-widget.php:207
3263
+ #: bp-members/classes/class-bp-core-recently-active-widget.php:143
3264
+ #: bp-members/classes/class-bp-core-whos-online-widget.php:142
3265
+ #: bp-messages/classes/class-bp-messages-sitewide-notices-widget.php:116
3266
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:179
3267
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php:74
3268
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:106
3269
+ msgid "Title:"
3270
+ msgstr ""
3271
+
3272
+ #: bp-core/classes/class-bp-core-user.php:191
3273
+ #: bp-groups/classes/class-bp-groups-invite-template.php:244
3274
+ msgid "%d group"
3275
+ msgid_plural "%d groups"
3276
+ msgstr[0] ""
3277
+ msgstr[1] ""
3278
+
3279
+ #: bp-core/deprecated/1.5.php:146
3280
+ #: bp-templates/bp-legacy/buddypress/activity/post-form.php:61
3281
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php:28
3282
+ msgid "My Profile"
3283
+ msgstr ""
3284
+
3285
+ #: bp-core/deprecated/1.5.php:153
3286
+ #: bp-members/classes/class-bp-members-list-table.php:151
3287
+ #: bp-members/classes/class-bp-members-ms-list-table.php:138
3288
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php:35
3289
+ msgid "Name"
3290
+ msgstr ""
3291
+
3292
+ #: bp-core/deprecated/1.5.php:162
3293
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php:44
3294
+ msgid "About Me"
3295
+ msgstr ""
3296
+
3297
+ #: bp-core/deprecated/1.5.php:171
3298
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php:53
3299
+ msgid "Website"
3300
+ msgstr ""
3301
+
3302
+ #: bp-core/deprecated/1.5.php:180
3303
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php:62
3304
+ msgid "Jabber"
3305
+ msgstr ""
3306
+
3307
+ #: bp-core/deprecated/1.5.php:189
3308
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php:71
3309
+ msgid "AOL Messenger"
3310
+ msgstr ""
3311
+
3312
+ #: bp-core/deprecated/1.5.php:198
3313
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php:80
3314
+ msgid "Yahoo Messenger"
3315
+ msgstr ""
3316
+
3317
+ #: bp-core/deprecated/1.5.php:358
3318
+ msgid "%1$s mentioned you in the group \"%2$s\""
3319
+ msgstr ""
3320
+
3321
+ #: bp-core/deprecated/1.5.php:360
3322
+ msgid ""
3323
+ "%1$s mentioned you in the group \"%2$s\":\n"
3324
+ "\n"
3325
+ "\"%3$s\"\n"
3326
+ "\n"
3327
+ "To view and respond to the message, log in and visit: %4$s\n"
3328
+ "\n"
3329
+ "---------------------\n"
3330
+ msgstr ""
3331
+
3332
+ #: bp-core/deprecated/1.6.php:127 bp-core/deprecated/1.6.php:148
3333
+ #: bp-groups/bp-groups-template.php:5306 bp-groups/bp-groups-template.php:5329
3334
+ msgid "Recently Active"
3335
+ msgstr ""
3336
+
3337
+ #: bp-core/deprecated/1.6.php:128 bp-core/deprecated/1.6.php:151
3338
+ #: bp-friends/classes/class-bp-core-friends-widget.php:105
3339
+ #: bp-friends/classes/class-bp-core-friends-widget.php:197
3340
+ #: bp-groups/bp-groups-template.php:4582
3341
+ #: bp-groups/classes/class-bp-groups-widget.php:121
3342
+ #: bp-groups/classes/class-bp-groups-widget.php:226
3343
+ #: bp-members/classes/class-bp-core-members-widget.php:111
3344
+ #: bp-members/classes/class-bp-core-members-widget.php:229
3345
+ #: bp-templates/bp-legacy/buddypress/blogs/index.php:99
3346
+ #: bp-templates/bp-legacy/buddypress/members/single/blogs.php:21
3347
+ msgid "Newest"
3348
+ msgstr ""
3349
+
3350
+ #: bp-core/deprecated/1.6.php:129 bp-core/deprecated/1.6.php:154
3351
+ #: bp-groups/bp-groups-template.php:5311 bp-groups/bp-groups-template.php:5344
3352
+ msgid "Alphabetically"
3353
+ msgstr ""
3354
+
3355
+ #: bp-core/deprecated/2.1.php:74 bp-core/deprecated/2.1.php:266
3356
+ msgid "Dashboard"
3357
+ msgstr ""
3358
+
3359
+ #: bp-core/deprecated/2.1.php:75 bp-core/deprecated/2.1.php:270
3360
+ msgid "New Post"
3361
+ msgstr ""
3362
+
3363
+ #: bp-core/deprecated/2.1.php:76 bp-core/deprecated/2.1.php:271
3364
+ msgid "Manage Posts"
3365
+ msgstr ""
3366
+
3367
+ #: bp-core/deprecated/2.1.php:77 bp-core/deprecated/2.1.php:272
3368
+ msgid "Manage Comments"
3369
+ msgstr ""
3370
+
3371
+ #: bp-core/deprecated/2.1.php:90
3372
+ msgid "Create a Site!"
3373
+ msgstr ""
3374
+
3375
+ #: bp-core/deprecated/2.1.php:110
3376
+ msgid "Switch to WordPress Toolbar"
3377
+ msgstr ""
3378
+
3379
+ #: bp-core/deprecated/2.1.php:194
3380
+ msgid "Sign Up"
3381
+ msgstr ""
3382
+
3383
+ #: bp-core/deprecated/2.1.php:292
3384
+ msgid "Visit"
3385
+ msgstr ""
3386
+
3387
+ #: bp-core/deprecated/2.1.php:294
3388
+ msgid "Random Member"
3389
+ msgstr ""
3390
+
3391
+ #: bp-core/deprecated/2.1.php:298
3392
+ msgid "Random Group"
3393
+ msgstr ""
3394
+
3395
+ #: bp-core/deprecated/2.1.php:304
3396
+ msgid "Random Site"
3397
+ msgstr ""
3398
+
3399
+ #: bp-core/deprecated/2.1.php:364 bp-core/deprecated/2.1.php:493
3400
+ msgid "Admin Options"
3401
+ msgstr ""
3402
+
3403
+ #: bp-core/deprecated/2.1.php:367
3404
+ msgid "Edit Details"
3405
+ msgstr ""
3406
+
3407
+ #: bp-core/deprecated/2.1.php:369
3408
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:102
3409
+ #. translators: accessibility text
3410
+ msgid "Group Settings"
3411
+ msgstr ""
3412
+
3413
+ #: bp-core/deprecated/2.1.php:373
3414
+ #: bp-groups/classes/class-bp-groups-component.php:830
3415
+ msgid "Group Profile Photo"
3416
+ msgstr ""
3417
+
3418
+ #: bp-core/deprecated/2.1.php:379
3419
+ msgid "Manage Invitations"
3420
+ msgstr ""
3421
+
3422
+ #: bp-core/deprecated/2.1.php:383
3423
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:11
3424
+ msgid "Manage Members"
3425
+ msgstr ""
3426
+
3427
+ #: bp-core/deprecated/2.1.php:387
3428
+ msgid "Membership Requests"
3429
+ msgstr ""
3430
+
3431
+ #: bp-core/deprecated/2.1.php:391 bp-groups/bp-groups-admin.php:1024
3432
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/delete-group.php:11
3433
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/delete-group.php:38
3434
+ msgid "Delete Group"
3435
+ msgstr ""
3436
+
3437
+ #: bp-core/deprecated/2.1.php:442
3438
+ msgid "Blog Authors"
3439
+ msgstr ""
3440
+
3441
+ #: bp-core/deprecated/2.1.php:498
3442
+ msgid "Edit %s's Profile"
3443
+ msgstr ""
3444
+
3445
+ #: bp-core/deprecated/2.1.php:502
3446
+ msgid "Edit %s's Profile Photo"
3447
+ msgstr ""
3448
+
3449
+ #: bp-core/deprecated/2.1.php:504 bp-members/bp-members-adminbar.php:135
3450
+ msgid "User Capabilities"
3451
+ msgstr ""
3452
+
3453
+ #: bp-core/deprecated/2.1.php:506
3454
+ msgid "Delete %s's Account"
3455
+ msgstr ""
3456
+
3457
+ #: bp-core/deprecated/2.1.php:554
3458
+ msgid "No new notifications."
3459
+ msgstr ""
3460
+
3461
+ #: bp-core/deprecated/2.8.php:138
3462
+ msgid "A BuddyPress update is available, but your system is not compatible."
3463
+ msgstr ""
3464
+
3465
+ #: bp-core/deprecated/2.8.php:139 bp-core/deprecated/2.8.php:194
3466
+ #: bp-loader.php:64
3467
+ msgid "See <a href=\"%s\">the Codex guide</a> for more information."
3468
+ msgstr ""
3469
+
3470
+ #: bp-core/deprecated/2.8.php:193
3471
+ msgid "Your site is not ready for BuddyPress 2.8."
3472
+ msgstr ""
3473
+
3474
+ #: bp-core/deprecated/2.8.php:194
3475
+ msgid ""
3476
+ "Your site is currently running PHP version %s, while BuddyPress 2.8 will "
3477
+ "require version 5.3+."
3478
+ msgstr ""
3479
+
3480
+ #: bp-forums/bp-forums-loader.php:33
3481
+ msgid "Discussion Forums"
3482
+ msgstr ""
3483
+
3484
+ #: bp-forums/bp-forums-loader.php:79
3485
+ msgid "Search Forums..."
3486
+ msgstr ""
3487
+
3488
+ #: bp-forums/bp-forums-loader.php:169 bp-forums/bp-forums-loader.php:222
3489
+ msgid "Topics Started"
3490
+ msgstr ""
3491
+
3492
+ #: bp-forums/bp-forums-loader.php:180
3493
+ msgid "Replied To"
3494
+ msgstr ""
3495
+
3496
+ #: bp-forums/bp-forums-loader.php:230
3497
+ msgid "Replies"
3498
+ msgstr ""
3499
+
3500
+ #: bp-forums/bp-forums-loader.php:238
3501
+ msgid "Favorite Topics"
3502
+ msgstr ""
3503
+
3504
+ #: bp-forums/bp-forums-screens.php:28 bp-forums/bp-forums-screens.php:275
3505
+ msgid "The forums component has not been set up yet."
3506
+ msgstr ""
3507
+
3508
+ #: bp-forums/bp-forums-screens.php:56 bp-groups/bp-groups-screens.php:526
3509
+ msgid "Please provide a title for your forum topic."
3510
+ msgstr ""
3511
+
3512
+ #: bp-forums/bp-forums-screens.php:58 bp-groups/bp-groups-screens.php:528
3513
+ msgid "Forum posts cannot be empty. Please enter some text."
3514
+ msgstr ""
3515
+
3516
+ #: bp-forums/bp-forums-screens.php:65 bp-groups/bp-groups-screens.php:540
3517
+ msgid "There was an error when creating the topic"
3518
+ msgstr ""
3519
+
3520
+ #: bp-forums/bp-forums-screens.php:68 bp-groups/bp-groups-screens.php:543
3521
+ msgid "The topic was created successfully"
3522
+ msgstr ""
3523
+
3524
+ #: bp-forums/bp-forums-screens.php:76 bp-forums/bp-forums-screens.php:81
3525
+ msgid "Please pick the group forum where you would like to post this topic."
3526
+ msgstr ""
3527
+
3528
+ #: bp-forums/bp-forums-screens.php:301 bp-groups/bp-groups-template.php:3429
3529
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:30
3530
+ msgid "New Topic"
3531
+ msgstr ""
3532
+
3533
+ #: bp-forums/bp-forums-template.php:930 bp-forums/bp-forums-template.php:1111
3534
+ #: bp-forums/bp-forums-template.php:2648
3535
+ #: bp-messages/bp-messages-template.php:1703
3536
+ #: bp-messages/bp-messages-template.php:1959
3537
+ #: bp-messages/classes/class-bp-messages-thread.php:861
3538
+ msgid "Deleted User"
3539
+ msgstr ""
3540
+
3541
+ #: bp-forums/bp-forums-template.php:1169
3542
+ msgid "Group logo for %s"
3543
+ msgstr ""
3544
+
3545
+ #: bp-forums/bp-forums-template.php:1454 bp-groups/bp-groups-template.php:2179
3546
+ msgid "%d post"
3547
+ msgid_plural "%d posts"
3548
+ msgstr[0] ""
3549
+ msgstr[1] ""
3550
+
3551
+ #: bp-forums/bp-forums-template.php:1725
3552
+ msgid "Edit Topic"
3553
+ msgstr ""
3554
+
3555
+ #: bp-forums/bp-forums-template.php:1729
3556
+ msgid "Sticky Topic"
3557
+ msgstr ""
3558
+
3559
+ #: bp-forums/bp-forums-template.php:1731
3560
+ msgid "Un-stick Topic"
3561
+ msgstr ""
3562
+
3563
+ #: bp-forums/bp-forums-template.php:1734
3564
+ msgid "Open Topic"
3565
+ msgstr ""
3566
+
3567
+ #: bp-forums/bp-forums-template.php:1736
3568
+ msgid "Close Topic"
3569
+ msgstr ""
3570
+
3571
+ #: bp-forums/bp-forums-template.php:1738
3572
+ msgid "Delete Topic"
3573
+ msgstr ""
3574
+
3575
+ #: bp-forums/bp-forums-template.php:2048
3576
+ msgid " matching tag \"%s\""
3577
+ msgstr ""
3578
+
3579
+ #: bp-forums/bp-forums-template.php:2051
3580
+ msgid "Viewing 1 topic"
3581
+ msgstr ""
3582
+
3583
+ #: bp-forums/bp-forums-template.php:2053
3584
+ msgid "Viewing %1$s - %2$s of %3$s topic"
3585
+ msgid_plural "Viewing %1$s - %2$s of %3$s topics"
3586
+ msgstr[0] ""
3587
+ msgstr[1] ""
3588
+
3589
+ #: bp-forums/bp-forums-template.php:2869
3590
+ msgid "Viewing 1 post"
3591
+ msgstr ""
3592
+
3593
+ #: bp-forums/bp-forums-template.php:2871
3594
+ msgid "Viewing %1$s - %2$s of %3$s post"
3595
+ msgid_plural "Viewing %1$s - %2$s of %3$s posts"
3596
+ msgstr[0] ""
3597
+ msgstr[1] ""
3598
+
3599
+ #: bp-forums/class.backpress-taxonomy.php:226
3600
+ #: bp-forums/class.backpress-taxonomy.php:299
3601
+ #: bp-forums/class.backpress-taxonomy.php:408
3602
+ #: bp-forums/class.backpress-taxonomy.php:586
3603
+ #: bp-forums/class.backpress-taxonomy.php:1171
3604
+ #: bp-forums/class.backpress-taxonomy.php:1405
3605
+ #: bp-forums/class.bb-taxonomy.php:48 bp-forums/class.bb-taxonomy.php:151
3606
+ #: bp-forums/class.bb-taxonomy.php:275
3607
+ msgid "Invalid Taxonomy"
3608
+ msgstr ""
3609
+
3610
+ #: bp-forums/class.backpress-taxonomy.php:294
3611
+ msgid "Empty Term"
3612
+ msgstr ""
3613
+
3614
+ #: bp-forums/class.backpress-taxonomy.php:1305
3615
+ #: bp-forums/class.backpress-taxonomy.php:1554
3616
+ msgid "Invalid taxonomy"
3617
+ msgstr ""
3618
+
3619
+ #: bp-forums/class.backpress-taxonomy.php:1308
3620
+ msgid "Invalid term ID"
3621
+ msgstr ""
3622
+
3623
+ #: bp-forums/class.backpress-taxonomy.php:1311
3624
+ #: bp-forums/class.backpress-taxonomy.php:1577
3625
+ msgid "A name is required for this term"
3626
+ msgstr ""
3627
+
3628
+ #: bp-forums/class.backpress-taxonomy.php:1342
3629
+ #: bp-forums/class.backpress-taxonomy.php:1349
3630
+ msgid "Could not insert term into the database"
3631
+ msgstr ""
3632
+
3633
+ #: bp-forums/class.backpress-taxonomy.php:1605
3634
+ msgid "The slug &#8220;%s&#8221; is already in use by another term"
3635
+ msgstr ""
3636
+
3637
+ #: bp-forums/class.backpress-taxonomy.php:2047
3638
+ msgid "Invalid object ID"
3639
+ msgstr ""
3640
+
3641
+ #: bp-forums/class.bb-taxonomy.php:272
3642
+ msgid "Invalid User ID"
3643
+ msgstr ""
3644
+
3645
+ #: bp-forums/deprecated/1.6.php:30 bp-forums/deprecated/1.6.php:130
3646
+ msgid "Configure bbPress"
3647
+ msgstr ""
3648
+
3649
+ #: bp-forums/deprecated/1.6.php:33 bp-forums/deprecated/1.6.php:133
3650
+ msgid "Install bbPress"
3651
+ msgstr ""
3652
+
3653
+ #: bp-forums/deprecated/1.6.php:44
3654
+ msgid "Settings Saved."
3655
+ msgstr ""
3656
+
3657
+ #: bp-forums/deprecated/1.6.php:65
3658
+ msgid "(Installed)"
3659
+ msgstr ""
3660
+
3661
+ #: bp-forums/deprecated/1.6.php:65 bp-forums/deprecated/1.6.php:215
3662
+ msgid "Forums for Groups"
3663
+ msgstr ""
3664
+
3665
+ #: bp-forums/deprecated/1.6.php:67 bp-forums/deprecated/1.6.php:217
3666
+ msgid ""
3667
+ "Give each individual group its own discussion forum. Choose this if you'd "
3668
+ "like to keep your members' conversations separated into distinct areas."
3669
+ msgstr ""
3670
+
3671
+ #: bp-forums/deprecated/1.6.php:69 bp-forums/deprecated/1.6.php:219
3672
+ msgid ""
3673
+ "Note: This component is retired and will not be receiving any updates in "
3674
+ "the future. Only use this component if your current site relies on it."
3675
+ msgstr ""
3676
+
3677
+ #: bp-forums/deprecated/1.6.php:71 bp-forums/deprecated/1.6.php:221
3678
+ msgid "Features"
3679
+ msgstr ""
3680
+
3681
+ #: bp-forums/deprecated/1.6.php:73 bp-forums/deprecated/1.6.php:223
3682
+ msgid "Group Integration"
3683
+ msgstr ""
3684
+
3685
+ #: bp-forums/deprecated/1.6.php:74 bp-forums/deprecated/1.6.php:224
3686
+ msgid "Member Profile Integration"
3687
+ msgstr ""
3688
+
3689
+ #: bp-forums/deprecated/1.6.php:75 bp-forums/deprecated/1.6.php:225
3690
+ msgid "Activity Stream Integration"
3691
+ msgstr ""
3692
+
3693
+ #: bp-forums/deprecated/1.6.php:76 bp-forums/deprecated/1.6.php:226
3694
+ msgid "@ Mention Integration"
3695
+ msgstr ""
3696
+
3697
+ #: bp-forums/deprecated/1.6.php:80
3698
+ msgid "Uninstall Group Forums"
3699
+ msgstr ""
3700
+
3701
+ #: bp-forums/deprecated/1.6.php:85 bp-forums/deprecated/1.6.php:236
3702
+ msgid "New! bbPress"
3703
+ msgstr ""
3704
+
3705
+ #: bp-forums/deprecated/1.6.php:86 bp-forums/deprecated/1.6.php:237
3706
+ msgid ""
3707
+ "bbPress is a brand-new forum plugin from one of the lead developers of "
3708
+ "BuddyPress."
3709
+ msgstr ""
3710
+
3711
+ #: bp-forums/deprecated/1.6.php:88 bp-forums/deprecated/1.6.php:239
3712
+ msgid ""
3713
+ "It boasts a bunch of cool features that the BP Legacy Discussion Forums "
3714
+ "does not have including:"
3715
+ msgstr ""
3716
+
3717
+ #: bp-forums/deprecated/1.6.php:91 bp-forums/deprecated/1.6.php:242
3718
+ msgid "Non-group specific forum creation"
3719
+ msgstr ""
3720
+
3721
+ #: bp-forums/deprecated/1.6.php:92 bp-forums/deprecated/1.6.php:243
3722
+ msgid "Moderation via the WP admin dashboard"
3723
+ msgstr ""
3724
+
3725
+ #: bp-forums/deprecated/1.6.php:93 bp-forums/deprecated/1.6.php:244
3726
+ msgid "Topic splitting"
3727
+ msgstr ""
3728
+
3729
+ #: bp-forums/deprecated/1.6.php:94 bp-forums/deprecated/1.6.php:245
3730
+ msgid "Revisions"
3731
+ msgstr ""
3732
+
3733
+ #: bp-forums/deprecated/1.6.php:95 bp-forums/deprecated/1.6.php:246
3734
+ msgid "Spam management"
3735
+ msgstr ""
3736
+
3737
+ #: bp-forums/deprecated/1.6.php:96 bp-forums/deprecated/1.6.php:247
3738
+ msgid "Subscriptions"
3739
+ msgstr ""
3740
+
3741
+ #: bp-forums/deprecated/1.6.php:97 bp-forums/deprecated/1.6.php:248
3742
+ msgid "And more!"
3743
+ msgstr ""
3744
+
3745
+ #: bp-forums/deprecated/1.6.php:100 bp-forums/deprecated/1.6.php:251
3746
+ msgid ""
3747
+ "If you decide to use bbPress, you will need to deactivate the legacy group "
3748
+ "forum component. For more info, <a href=\"%s\">read this codex article</a>."
3749
+ msgstr ""
3750
+
3751
+ #: bp-forums/deprecated/1.6.php:141
3752
+ #. translators: %s: bb-config.php
3753
+ msgid "The %s file was not found at that location. Please try again."
3754
+ msgstr ""
3755
+
3756
+ #: bp-forums/deprecated/1.6.php:144
3757
+ msgid "Forums were set up correctly using your existing bbPress install!"
3758
+ msgstr ""
3759
+
3760
+ #: bp-forums/deprecated/1.6.php:146
3761
+ #. translators: %s: bb-config.php
3762
+ msgid ""
3763
+ "BuddyPress will now use its internal copy of bbPress to run the forums on "
3764
+ "your site. If you wish, you can remove your old bbPress installation files, "
3765
+ "as long as you keep the %s file in the same location."
3766
+ msgstr ""
3767
+
3768
+ #: bp-forums/deprecated/1.6.php:151
3769
+ msgid "Existing bbPress Installation"
3770
+ msgstr ""
3771
+
3772
+ #: bp-forums/deprecated/1.6.php:153
3773
+ #. translators: %s: bb-config.php
3774
+ msgid ""
3775
+ "BuddyPress can make use of your existing bbPress install. Just provide the "
3776
+ "location of your %s file, and BuddyPress will do the rest."
3777
+ msgstr ""
3778
+
3779
+ #: bp-forums/deprecated/1.6.php:155
3780
+ #. translators: %s: bb-config.php
3781
+ msgid "%s file location:"
3782
+ msgstr ""
3783
+
3784
+ #: bp-forums/deprecated/1.6.php:156 bp-forums/deprecated/1.6.php:193
3785
+ msgid "Complete Installation"
3786
+ msgstr ""
3787
+
3788
+ #: bp-forums/deprecated/1.6.php:174
3789
+ #. translators: %s: bb-config.php
3790
+ msgid ""
3791
+ "All done! Configuration settings have been saved to the %s file in the root "
3792
+ "of your WordPress install."
3793
+ msgstr ""
3794
+
3795
+ #: bp-forums/deprecated/1.6.php:181
3796
+ #. translators: %s: bb-config.php
3797
+ msgid ""
3798
+ "A configuration file could not be created. No problem, but you will need to "
3799
+ "save the text shown below into a file named %s in the root directory of "
3800
+ "your WordPress installation before you can start using the forum "
3801
+ "functionality."
3802
+ msgstr ""
3803
+
3804
+ #: bp-forums/deprecated/1.6.php:190
3805
+ msgid "New bbPress Installation"
3806
+ msgstr ""
3807
+
3808
+ #: bp-forums/deprecated/1.6.php:191
3809
+ msgid ""
3810
+ "You've decided to set up a new installation of bbPress for forum management "
3811
+ "in BuddyPress. This is very simple and is usually just a one click\n"
3812
+ "\t\t\t\tprocess. When you're ready, hit the link below."
3813
+ msgstr ""
3814
+
3815
+ #: bp-forums/deprecated/1.6.php:203
3816
+ msgid ""
3817
+ "bbPress files were not found. To install the forums component you must "
3818
+ "download a copy of bbPress and make sure it is in the folder: \"%s\""
3819
+ msgstr ""
3820
+
3821
+ #: bp-forums/deprecated/1.6.php:230
3822
+ msgid "Install Group Forums"
3823
+ msgstr ""
3824
+
3825
+ #: bp-forums/deprecated/1.6.php:231
3826
+ msgid "Use Existing Installation"
3827
+ msgstr ""
3828
+
3829
+ #: bp-forums/deprecated/1.7.php:24
3830
+ msgid "Forums (Legacy)"
3831
+ msgstr ""
3832
+
3833
+ #: bp-friends/bp-friends-actions.php:40
3834
+ msgid "Friendship could not be requested."
3835
+ msgstr ""
3836
+
3837
+ #: bp-friends/bp-friends-actions.php:42
3838
+ msgid "Friendship requested"
3839
+ msgstr ""
3840
+
3841
+ #: bp-friends/bp-friends-actions.php:46
3842
+ msgid "You are already friends with this user"
3843
+ msgstr ""
3844
+
3845
+ #: bp-friends/bp-friends-actions.php:48
3846
+ msgid "You already have a pending friendship request with this user"
3847
+ msgstr ""
3848
+
3849
+ #: bp-friends/bp-friends-actions.php:80
3850
+ #: bp-templates/bp-legacy/buddypress-functions.php:1403
3851
+ msgid "Friendship could not be canceled."
3852
+ msgstr ""
3853
+
3854
+ #: bp-friends/bp-friends-actions.php:82
3855
+ msgid "Friendship canceled"
3856
+ msgstr ""
3857
+
3858
+ #: bp-friends/bp-friends-actions.php:86
3859
+ msgid "You are not yet friends with this user"
3860
+ msgstr ""
3861
+
3862
+ #: bp-friends/bp-friends-actions.php:88
3863
+ msgid "You have a pending friendship request with this user"
3864
+ msgstr ""
3865
+
3866
+ #: bp-friends/bp-friends-activity.php:104
3867
+ msgid "Friendships accepted"
3868
+ msgstr ""
3869
+
3870
+ #: bp-friends/bp-friends-activity.php:106
3871
+ #: bp-friends/bp-friends-activity.php:115
3872
+ #: bp-friends/classes/class-bp-friends-component.php:264
3873
+ msgid "Friendships"
3874
+ msgstr ""
3875
+
3876
+ #: bp-friends/bp-friends-activity.php:113
3877
+ msgid "New friendships"
3878
+ msgstr ""
3879
+
3880
+ #: bp-friends/bp-friends-activity.php:120
3881
+ msgid "New friendship created"
3882
+ msgstr ""
3883
+
3884
+ #: bp-friends/bp-friends-activity.php:144
3885
+ #: bp-friends/bp-friends-activity.php:178
3886
+ msgid "%1$s and %2$s are now friends"
3887
+ msgstr ""
3888
+
3889
+ #: bp-friends/bp-friends-notifications.php:41
3890
+ msgid "%d friends accepted your friendship requests"
3891
+ msgstr ""
3892
+
3893
+ #: bp-friends/bp-friends-notifications.php:44
3894
+ msgid "%s accepted your friendship request"
3895
+ msgstr ""
3896
+
3897
+ #: bp-friends/bp-friends-notifications.php:57
3898
+ msgid "You have %d pending friendship requests"
3899
+ msgstr ""
3900
+
3901
+ #: bp-friends/bp-friends-notifications.php:60
3902
+ msgid "You have a friendship request from %s"
3903
+ msgstr ""
3904
+
3905
+ #: bp-friends/bp-friends-screens.php:52
3906
+ msgid "Friendship accepted"
3907
+ msgstr ""
3908
+
3909
+ #: bp-friends/bp-friends-screens.php:54
3910
+ msgid "Friendship could not be accepted"
3911
+ msgstr ""
3912
+
3913
+ #: bp-friends/bp-friends-screens.php:63
3914
+ msgid "Friendship rejected"
3915
+ msgstr ""
3916
+
3917
+ #: bp-friends/bp-friends-screens.php:65
3918
+ msgid "Friendship could not be rejected"
3919
+ msgstr ""
3920
+
3921
+ #: bp-friends/bp-friends-screens.php:74
3922
+ msgid "Friendship request withdrawn"
3923
+ msgstr ""
3924
+
3925
+ #: bp-friends/bp-friends-screens.php:76
3926
+ msgid "Friendship request could not be withdrawn"
3927
+ msgstr ""
3928
+
3929
+ #: bp-friends/bp-friends-template.php:84
3930
+ msgid "My Friends"
3931
+ msgstr ""
3932
+
3933
+ #: bp-friends/bp-friends-template.php:84
3934
+ #: bp-friends/classes/class-bp-core-friends-widget.php:67
3935
+ msgid "%s's Friends"
3936
+ msgstr ""
3937
+
3938
+ #: bp-friends/bp-friends-template.php:84
3939
+ msgid "See All"
3940
+ msgstr ""
3941
+
3942
+ #: bp-friends/bp-friends-template.php:104
3943
+ msgid "You haven't added any friend connections yet."
3944
+ msgstr ""
3945
+
3946
+ #: bp-friends/bp-friends-template.php:104
3947
+ msgid "%s hasn't created any friend connections yet."
3948
+ msgstr ""
3949
+
3950
+ #: bp-friends/bp-friends-template.php:174
3951
+ msgid "There aren't enough site members to show a random sample just yet."
3952
+ msgstr ""
3953
+
3954
+ #: bp-friends/bp-friends-template.php:191
3955
+ msgid "Filter Friends"
3956
+ msgstr ""
3957
+
3958
+ #: bp-friends/bp-friends-template.php:247
3959
+ msgid "%d friend"
3960
+ msgstr ""
3961
+
3962
+ #: bp-friends/bp-friends-template.php:251
3963
+ msgid "%d friends"
3964
+ msgstr ""
3965
+
3966
+ #: bp-friends/bp-friends-template.php:371
3967
+ #: bp-templates/bp-legacy/buddypress-functions.php:1415
3968
+ msgid "Cancel Friendship Request"
3969
+ msgstr ""
3970
+
3971
+ #: bp-friends/bp-friends-template.php:387
3972
+ msgid "Friendship Requested"
3973
+ msgstr ""
3974
+
3975
+ #: bp-friends/bp-friends-template.php:403
3976
+ msgid "Cancel Friendship"
3977
+ msgstr ""
3978
+
3979
+ #: bp-friends/bp-friends-template.php:419
3980
+ #: bp-templates/bp-legacy/buddypress-functions.php:1405
3981
+ #: bp-templates/bp-legacy/buddypress-functions.php:1423
3982
+ msgid "Add Friend"
3983
+ msgstr ""
3984
+
3985
+ #: bp-friends/bp-friends-template.php:719
3986
+ msgid "%s friend"
3987
+ msgid_plural "%s friends"
3988
+ msgstr[0] ""
3989
+ msgstr[1] ""
3990
+
3991
+ #: bp-friends/bp-friends-widgets.php:89 bp-members/bp-members-widgets.php:101
3992
+ msgid "There were no members found, please try another filter."
3993
+ msgstr ""
3994
+
3995
+ #: bp-friends/classes/class-bp-core-friends-widget.php:27
3996
+ msgid ""
3997
+ "A dynamic list of recently active, popular, and newest Friends of the "
3998
+ "displayed member. Widget is only shown when viewing a member profile."
3999
+ msgstr ""
4000
+
4001
+ #: bp-friends/classes/class-bp-core-friends-widget.php:106
4002
+ #: bp-friends/classes/class-bp-core-friends-widget.php:198
4003
+ #: bp-groups/classes/class-bp-groups-widget.php:123
4004
+ #: bp-groups/classes/class-bp-groups-widget.php:227
4005
+ #: bp-members/classes/class-bp-core-members-widget.php:113
4006
+ #: bp-members/classes/class-bp-core-members-widget.php:230
4007
+ #: bp-members/classes/class-bp-members-admin.php:1056
4008
+ msgid "Active"
4009
+ msgstr ""
4010
+
4011
+ #: bp-friends/classes/class-bp-core-friends-widget.php:107
4012
+ #: bp-friends/classes/class-bp-core-friends-widget.php:199
4013
+ #: bp-groups/classes/class-bp-groups-widget.php:125
4014
+ #: bp-groups/classes/class-bp-groups-widget.php:228
4015
+ #: bp-members/classes/class-bp-core-members-widget.php:117
4016
+ #: bp-members/classes/class-bp-core-members-widget.php:231
4017
+ msgid "Popular"
4018
+ msgstr ""
4019
+
4020
+ #: bp-friends/classes/class-bp-core-friends-widget.php:139
4021
+ #: bp-templates/bp-legacy/buddypress/members/members-loop.php:142
4022
+ msgid "Sorry, no members were found."
4023
+ msgstr ""
4024
+
4025
+ #: bp-friends/classes/class-bp-core-friends-widget.php:190
4026
+ #: bp-members/classes/class-bp-core-members-widget.php:215
4027
+ msgid "Link widget title to Members directory"
4028
+ msgstr ""
4029
+
4030
+ #: bp-friends/classes/class-bp-core-friends-widget.php:192
4031
+ msgid "Max friends to show:"
4032
+ msgstr ""
4033
+
4034
+ #: bp-friends/classes/class-bp-core-friends-widget.php:195
4035
+ msgid "Default friends to show:"
4036
+ msgstr ""
4037
+
4038
+ #: bp-friends/classes/class-bp-friends-component.php:104
4039
+ msgid "Search Friends..."
4040
+ msgstr ""
4041
+
4042
+ #: bp-friends/classes/class-bp-friends-component.php:145
4043
+ #. translators: %s: Friend count for the current user
4044
+ msgid "Friends %s"
4045
+ msgstr ""
4046
+
4047
+ #: bp-groups/bp-groups-actions.php:54
4048
+ msgid "You do not have access to this group."
4049
+ msgstr ""
4050
+
4051
+ #: bp-groups/bp-groups-actions.php:65
4052
+ msgid "You are not an admin of this group."
4053
+ msgstr ""
4054
+
4055
+ #: bp-groups/bp-groups-actions.php:125
4056
+ msgid "Sorry, you are not allowed to create groups."
4057
+ msgstr ""
4058
+
4059
+ #: bp-groups/bp-groups-actions.php:150 bp-groups/bp-groups-actions.php:184
4060
+ #: bp-groups/bp-groups-actions.php:208
4061
+ msgid "There was an error saving group details. Please try again."
4062
+ msgstr ""
4063
+
4064
+ #: bp-groups/bp-groups-actions.php:164
4065
+ msgid "Only the group creator may continue editing this group."
4066
+ msgstr ""
4067
+
4068
+ #: bp-groups/bp-groups-actions.php:177
4069
+ msgid "Please fill in all of the required fields"
4070
+ msgstr ""
4071
+
4072
+ #: bp-groups/bp-groups-actions.php:330 bp-groups/bp-groups-screens.php:682
4073
+ msgid "Invite successfully removed"
4074
+ msgstr ""
4075
+
4076
+ #: bp-groups/bp-groups-actions.php:334 bp-groups/bp-groups-screens.php:693
4077
+ msgid "There was an error removing the invite"
4078
+ msgstr ""
4079
+
4080
+ #: bp-groups/bp-groups-actions.php:375
4081
+ msgid ""
4082
+ "There was an error saving the group profile photo, please try uploading "
4083
+ "again."
4084
+ msgstr ""
4085
+
4086
+ #: bp-groups/bp-groups-actions.php:428 bp-groups/bp-groups-actions.php:435
4087
+ msgid "There was an error joining the group."
4088
+ msgstr ""
4089
+
4090
+ #: bp-groups/bp-groups-actions.php:437
4091
+ msgid "You joined the group!"
4092
+ msgstr ""
4093
+
4094
+ #: bp-groups/bp-groups-actions.php:484 bp-groups/bp-groups-screens.php:1181
4095
+ msgid "This group must have at least one admin"
4096
+ msgstr ""
4097
+
4098
+ #: bp-groups/bp-groups-actions.php:486
4099
+ msgid "There was an error leaving the group."
4100
+ msgstr ""
4101
+
4102
+ #: bp-groups/bp-groups-actions.php:488 bp-groups/bp-groups-functions.php:524
4103
+ msgid "You successfully left the group."
4104
+ msgstr ""
4105
+
4106
+ #: bp-groups/bp-groups-actions.php:588
4107
+ msgid "Activity feed for the group, %s."
4108
+ msgstr ""
4109
+
4110
+ #: bp-groups/bp-groups-activity.php:33
4111
+ msgid "Created a group"
4112
+ msgstr ""
4113
+
4114
+ #: bp-groups/bp-groups-activity.php:35
4115
+ msgid "New Groups"
4116
+ msgstr ""
4117
+
4118
+ #: bp-groups/bp-groups-activity.php:42
4119
+ msgid "Joined a group"
4120
+ msgstr ""
4121
+
4122
+ #: bp-groups/bp-groups-activity.php:44
4123
+ msgid "Group Memberships"
4124
+ msgstr ""
4125
+
4126
+ #: bp-groups/bp-groups-activity.php:51
4127
+ msgid "Group details edited"
4128
+ msgstr ""
4129
+
4130
+ #: bp-groups/bp-groups-activity.php:53
4131
+ msgid "Group Updates"
4132
+ msgstr ""
4133
+
4134
+ #: bp-groups/bp-groups-activity.php:64
4135
+ msgid "New group forum topic"
4136
+ msgstr ""
4137
+
4138
+ #: bp-groups/bp-groups-activity.php:66
4139
+ msgid "Forum Topics"
4140
+ msgstr ""
4141
+
4142
+ #: bp-groups/bp-groups-activity.php:73
4143
+ msgid "New group forum post"
4144
+ msgstr ""
4145
+
4146
+ #: bp-groups/bp-groups-activity.php:75
4147
+ msgid "Forum Replies"
4148
+ msgstr ""
4149
+
4150
+ #: bp-groups/bp-groups-activity.php:104
4151
+ msgid "%1$s created the group %2$s"
4152
+ msgstr ""
4153
+
4154
+ #: bp-groups/bp-groups-activity.php:132 bp-groups/bp-groups-activity.php:438
4155
+ msgid "%1$s joined the group %2$s"
4156
+ msgstr ""
4157
+
4158
+ #: bp-groups/bp-groups-activity.php:179
4159
+ msgid "%1$s updated details for the group %2$s"
4160
+ msgstr ""
4161
+
4162
+ #: bp-groups/bp-groups-activity.php:183
4163
+ msgid "%1$s changed the name and description of the group %2$s"
4164
+ msgstr ""
4165
+
4166
+ #: bp-groups/bp-groups-activity.php:187
4167
+ msgid "%1$s changed the name of the group %2$s from \"%3$s\" to \"%4$s\""
4168
+ msgstr ""
4169
+
4170
+ #: bp-groups/bp-groups-activity.php:191
4171
+ msgid "%1$s changed the description of the group %2$s from \"%3$s\" to \"%4$s\""
4172
+ msgstr ""
4173
+
4174
+ #: bp-groups/bp-groups-activity.php:194
4175
+ msgid "%1$s changed the permalink of the group %2$s."
4176
+ msgstr ""
4177
+
4178
+ #: bp-groups/bp-groups-admin.php:117
4179
+ msgid ""
4180
+ "This page is a convenient way to edit the details associated with one of "
4181
+ "your groups."
4182
+ msgstr ""
4183
+
4184
+ #: bp-groups/bp-groups-admin.php:118
4185
+ msgid ""
4186
+ "The Name and Description box is fixed in place, but you can reposition all "
4187
+ "the other boxes using drag and drop, and can minimize or expand them by "
4188
+ "clicking the title bar of each box. Use the Screen Options tab to hide or "
4189
+ "unhide, or to choose a 1- or 2-column layout for this screen."
4190
+ msgstr ""
4191
+
4192
+ #: bp-groups/bp-groups-admin.php:124
4193
+ msgid "Support Forums"
4194
+ msgstr ""
4195
+
4196
+ #: bp-groups/bp-groups-admin.php:170
4197
+ msgid ""
4198
+ "You can manage groups much like you can manage comments and other content. "
4199
+ "This screen is customizable in the same ways as other management screens, "
4200
+ "and you can act on groups by using the on-hover action links or the Bulk "
4201
+ "Actions."
4202
+ msgstr ""
4203
+
4204
+ #: bp-groups/bp-groups-admin.php:175
4205
+ msgid "Group Actions"
4206
+ msgstr ""
4207
+
4208
+ #: bp-groups/bp-groups-admin.php:177
4209
+ msgid ""
4210
+ "Clicking \"Visit\" will take you to the group&#8217;s public page. Use this "
4211
+ "link to see what the group looks like on the front end of your site."
4212
+ msgstr ""
4213
+
4214
+ #: bp-groups/bp-groups-admin.php:178
4215
+ msgid ""
4216
+ "Clicking \"Edit\" will take you to a Dashboard panel where you can manage "
4217
+ "various details about the group, such as its name and description, its "
4218
+ "members, and other settings."
4219
+ msgstr ""
4220
+
4221
+ #: bp-groups/bp-groups-admin.php:179
4222
+ msgid ""
4223
+ "If you click \"Delete\" under a specific group, or select a number of "
4224
+ "groups and then choose Delete from the Bulk Actions menu, you will be led "
4225
+ "to a page where you&#8217;ll be asked to confirm the permanent deletion of "
4226
+ "the group(s)."
4227
+ msgstr ""
4228
+
4229
+ #: bp-groups/bp-groups-admin.php:192
4230
+ #. translators: accessibility text
4231
+ msgid "Groups list navigation"
4232
+ msgstr ""
4233
+
4234
+ #: bp-groups/bp-groups-admin.php:202
4235
+ msgid "Start typing a username to add a new member."
4236
+ msgstr ""
4237
+
4238
+ #: bp-groups/bp-groups-admin.php:203
4239
+ msgid ""
4240
+ "If you leave this page, you will lose any unsaved changes you have made to "
4241
+ "the group."
4242
+ msgstr ""
4243
+
4244
+ #: bp-groups/bp-groups-admin.php:527
4245
+ msgid "You cannot remove all administrators from a group."
4246
+ msgstr ""
4247
+
4248
+ #: bp-groups/bp-groups-admin.php:532
4249
+ msgid "Group name, slug, and description are all required fields."
4250
+ msgstr ""
4251
+
4252
+ #: bp-groups/bp-groups-admin.php:534
4253
+ msgid "An error occurred when trying to update your group details."
4254
+ msgstr ""
4255
+
4256
+ #: bp-groups/bp-groups-admin.php:538
4257
+ msgid "The group has been updated successfully."
4258
+ msgstr ""
4259
+
4260
+ #: bp-groups/bp-groups-admin.php:542
4261
+ msgid "The following users could not be added to the group: %s"
4262
+ msgstr ""
4263
+
4264
+ #: bp-groups/bp-groups-admin.php:546
4265
+ msgid "The following users were successfully added to the group: %s"
4266
+ msgstr ""
4267
+
4268
+ #: bp-groups/bp-groups-admin.php:551
4269
+ msgid "An error occurred when trying to modify the following members: %s"
4270
+ msgstr ""
4271
+
4272
+ #: bp-groups/bp-groups-admin.php:556
4273
+ msgid "The following members were successfully modified: %s"
4274
+ msgstr ""
4275
+
4276
+ #: bp-groups/bp-groups-admin.php:583 bp-groups/bp-groups-adminbar.php:45
4277
+ msgid "Edit Group"
4278
+ msgstr ""
4279
+
4280
+ #: bp-groups/bp-groups-admin.php:586 bp-groups/bp-groups-admin.php:759
4281
+ msgid "Add New"
4282
+ msgstr ""
4283
+
4284
+ #: bp-groups/bp-groups-admin.php:605
4285
+ msgid "Name and Description"
4286
+ msgstr ""
4287
+
4288
+ #: bp-groups/bp-groups-admin.php:609
4289
+ #. translators: accessibility text
4290
+ msgid "Group Name"
4291
+ msgstr ""
4292
+
4293
+ #: bp-groups/bp-groups-admin.php:613
4294
+ msgid "Permalink:"
4295
+ msgstr ""
4296
+
4297
+ #: bp-groups/bp-groups-admin.php:617
4298
+ msgid "Visit Group"
4299
+ msgstr ""
4300
+
4301
+ #: bp-groups/bp-groups-admin.php:622
4302
+ #. translators: accessibility text
4303
+ msgid "Group Description"
4304
+ msgstr ""
4305
+
4306
+ #: bp-groups/bp-groups-admin.php:651
4307
+ msgid "No group found with this ID."
4308
+ msgstr ""
4309
+
4310
+ #: bp-groups/bp-groups-admin.php:698
4311
+ msgid "Delete Groups"
4312
+ msgstr ""
4313
+
4314
+ #: bp-groups/bp-groups-admin.php:699
4315
+ msgid "You are about to delete the following groups:"
4316
+ msgstr ""
4317
+
4318
+ #: bp-groups/bp-groups-admin.php:707
4319
+ #: bp-members/classes/class-bp-members-admin.php:2135
4320
+ msgid "This action cannot be undone."
4321
+ msgstr ""
4322
+
4323
+ #: bp-groups/bp-groups-admin.php:736
4324
+ msgid "%s group has been permanently deleted."
4325
+ msgid_plural "%s groups have been permanently deleted."
4326
+ msgstr[0] ""
4327
+ msgstr[1] ""
4328
+
4329
+ #: bp-groups/bp-groups-admin.php:756
4330
+ #: bp-groups/classes/class-bp-groups-widget.php:75
4331
+ #: bp-groups/classes/class-bp-groups-widget.php:204
4332
+ msgid "Groups"
4333
+ msgstr ""
4334
+
4335
+ #: bp-groups/bp-groups-admin.php:776
4336
+ msgid "Search all Groups"
4337
+ msgstr ""
4338
+
4339
+ #: bp-groups/bp-groups-admin.php:799
4340
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:201
4341
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:27
4342
+ msgid "Enable discussion forum"
4343
+ msgstr ""
4344
+
4345
+ #: bp-groups/bp-groups-admin.php:805
4346
+ msgid "Privacy"
4347
+ msgstr ""
4348
+
4349
+ #: bp-groups/bp-groups-admin.php:807 bp-groups/bp-groups-template.php:1282
4350
+ #: bp-groups/classes/class-bp-groups-list-table.php:601
4351
+ msgid "Public"
4352
+ msgstr ""
4353
+
4354
+ #: bp-groups/bp-groups-admin.php:808 bp-groups/bp-groups-template.php:1284
4355
+ #: bp-groups/classes/class-bp-groups-list-table.php:604
4356
+ msgid "Private"
4357
+ msgstr ""
4358
+
4359
+ #: bp-groups/bp-groups-admin.php:809
4360
+ #: bp-groups/classes/class-bp-groups-list-table.php:607
4361
+ msgid "Hidden"
4362
+ msgstr ""
4363
+
4364
+ #: bp-groups/bp-groups-admin.php:815
4365
+ msgid "Who can invite others to this group?"
4366
+ msgstr ""
4367
+
4368
+ #: bp-groups/bp-groups-admin.php:817
4369
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:182
4370
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:104
4371
+ msgid "All group members"
4372
+ msgstr ""
4373
+
4374
+ #: bp-groups/bp-groups-admin.php:818
4375
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:184
4376
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:106
4377
+ msgid "Group admins and mods only"
4378
+ msgstr ""
4379
+
4380
+ #: bp-groups/bp-groups-admin.php:819
4381
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:186
4382
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:108
4383
+ msgid "Group admins only"
4384
+ msgstr ""
4385
+
4386
+ #: bp-groups/bp-groups-admin.php:838
4387
+ #. translators: accessibility text
4388
+ msgid "Add new members"
4389
+ msgstr ""
4390
+
4391
+ #: bp-groups/bp-groups-admin.php:840
4392
+ msgid "Enter a comma-separated list of user logins."
4393
+ msgstr ""
4394
+
4395
+ #: bp-groups/bp-groups-admin.php:903
4396
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:25
4397
+ msgid "Administrators"
4398
+ msgstr ""
4399
+
4400
+ #: bp-groups/bp-groups-admin.php:904
4401
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:118
4402
+ msgid "Moderators"
4403
+ msgstr ""
4404
+
4405
+ #: bp-groups/bp-groups-admin.php:905 bp-groups/bp-groups-template.php:4561
4406
+ #: bp-groups/classes/class-bp-groups-component.php:680
4407
+ #: bp-members/classes/class-bp-core-members-widget.php:249
4408
+ #: bp-members/classes/class-bp-members-component.php:38
4409
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:213
4410
+ #. translators: accessibility text
4411
+ msgid "Members"
4412
+ msgstr ""
4413
+
4414
+ #: bp-groups/bp-groups-admin.php:906
4415
+ msgid "Banned Members"
4416
+ msgstr ""
4417
+
4418
+ #: bp-groups/bp-groups-admin.php:943
4419
+ #. translators: accessibility text
4420
+ msgid "Select group role for member"
4421
+ msgstr ""
4422
+
4423
+ #: bp-groups/bp-groups-admin.php:946
4424
+ msgid "Roles"
4425
+ msgstr ""
4426
+
4427
+ #: bp-groups/bp-groups-admin.php:947
4428
+ msgid "Administrator"
4429
+ msgstr ""
4430
+
4431
+ #: bp-groups/bp-groups-admin.php:948
4432
+ msgid "Moderator"
4433
+ msgstr ""
4434
+
4435
+ #: bp-groups/bp-groups-admin.php:949
4436
+ #: bp-members/classes/class-bp-members-admin.php:819
4437
+ msgid "Member"
4438
+ msgstr ""
4439
+
4440
+ #: bp-groups/bp-groups-admin.php:951
4441
+ msgid "Banned"
4442
+ msgstr ""
4443
+
4444
+ #: bp-groups/bp-groups-admin.php:954
4445
+ #: bp-members/classes/class-bp-members-admin.php:1507
4446
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:85
4447
+ #: bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php:21
4448
+ msgid "Actions"
4449
+ msgstr ""
4450
+
4451
+ #: bp-groups/bp-groups-admin.php:955
4452
+ msgid "Remove"
4453
+ msgstr ""
4454
+
4455
+ #: bp-groups/bp-groups-admin.php:957
4456
+ msgid "Ban"
4457
+ msgstr ""
4458
+
4459
+ #: bp-groups/bp-groups-admin.php:999
4460
+ msgid "No members of this type"
4461
+ msgstr ""
4462
+
4463
+ #: bp-groups/bp-groups-admin.php:1028
4464
+ #: bp-groups/classes/class-bp-group-extension.php:522
4465
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/edit-details.php:52
4466
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:123
4467
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php:92
4468
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php:126
4469
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/edit.php:107
4470
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/general.php:46
4471
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/notifications.php:39
4472
+ msgid "Save Changes"
4473
+ msgstr ""
4474
+
4475
+ #: bp-groups/bp-groups-admin.php:1058
4476
+ #. translators: accessibility text
4477
+ msgid "Select group type"
4478
+ msgstr ""
4479
+
4480
+ #: bp-groups/bp-groups-admin.php:1068
4481
+ msgid "(Not available on the front end)"
4482
+ msgstr ""
4483
+
4484
+ #: bp-groups/bp-groups-admin.php:1163
4485
+ msgid "&laquo;"
4486
+ msgstr ""
4487
+
4488
+ #: bp-groups/bp-groups-admin.php:1164
4489
+ msgid "&raquo;"
4490
+ msgstr ""
4491
+
4492
+ #: bp-groups/bp-groups-admin.php:1170 bp-groups/bp-groups-template.php:4408
4493
+ #: bp-members/bp-members-template.php:500
4494
+ msgid "Viewing 1 member"
4495
+ msgstr ""
4496
+
4497
+ #: bp-groups/bp-groups-admin.php:1239
4498
+ #. Translators: 1: user_login, 2: user_email.
4499
+ msgid "%1$s (%2$s)"
4500
+ msgstr ""
4501
+
4502
+ #: bp-groups/bp-groups-admin.php:1335
4503
+ msgid "There was an error while changing group type. Please try again."
4504
+ msgstr ""
4505
+
4506
+ #: bp-groups/bp-groups-admin.php:1338
4507
+ msgid "Group type was changed successfully."
4508
+ msgstr ""
4509
+
4510
+ #: bp-groups/bp-groups-forums.php:148 bp-groups/bp-groups-forums.php:444
4511
+ msgid "%1$s replied to the forum topic %2$s in the group %3$s"
4512
+ msgstr ""
4513
+
4514
+ #: bp-groups/bp-groups-forums.php:275
4515
+ msgid "%1$s started the forum topic %2$s in the group %3$s"
4516
+ msgstr ""
4517
+
4518
+ #: bp-groups/bp-groups-forums.php:373
4519
+ msgid "%1$s edited the forum topic %2$s in the group %3$s"
4520
+ msgstr ""
4521
+
4522
+ #: bp-groups/bp-groups-functions.php:170
4523
+ #: bp-groups/classes/class-bp-groups-member.php:347
4524
+ msgid "Group Admin"
4525
+ msgstr ""
4526
+
4527
+ #: bp-groups/bp-groups-functions.php:515
4528
+ msgid "As the only admin, you cannot leave the group."
4529
+ msgstr ""
4530
+
4531
+ #: bp-groups/bp-groups-functions.php:1287
4532
+ msgid "%1$s posted an update in the group %2$s"
4533
+ msgstr ""
4534
+
4535
+ #: bp-groups/bp-groups-functions.php:2242
4536
+ msgid "Group type already exists."
4537
+ msgstr ""
4538
+
4539
+ #: bp-groups/bp-groups-functions.php:2269
4540
+ msgid "You may not register a group type with this name."
4541
+ msgstr ""
4542
+
4543
+ #: bp-groups/bp-groups-notifications.php:244
4544
+ msgid "an administrator"
4545
+ msgstr ""
4546
+
4547
+ #: bp-groups/bp-groups-notifications.php:247
4548
+ msgid "a moderator"
4549
+ msgstr ""
4550
+
4551
+ #: bp-groups/bp-groups-notifications.php:375
4552
+ msgid "%1$d new membership requests for the group \"%2$s\""
4553
+ msgstr ""
4554
+
4555
+ #: bp-groups/bp-groups-notifications.php:421
4556
+ msgid "%s requests group membership"
4557
+ msgstr ""
4558
+
4559
+ #: bp-groups/bp-groups-notifications.php:476
4560
+ msgid "%d accepted group membership requests"
4561
+ msgstr ""
4562
+
4563
+ #: bp-groups/bp-groups-notifications.php:515
4564
+ msgid "Membership for group \"%s\" accepted"
4565
+ msgstr ""
4566
+
4567
+ #: bp-groups/bp-groups-notifications.php:565
4568
+ msgid "%d rejected group membership requests"
4569
+ msgstr ""
4570
+
4571
+ #: bp-groups/bp-groups-notifications.php:604
4572
+ msgid "Membership for group \"%s\" rejected"
4573
+ msgstr ""
4574
+
4575
+ #: bp-groups/bp-groups-notifications.php:653
4576
+ msgid "You were promoted to an admin in %d groups"
4577
+ msgstr ""
4578
+
4579
+ #: bp-groups/bp-groups-notifications.php:688
4580
+ msgid "You were promoted to an admin in the group \"%s\""
4581
+ msgstr ""
4582
+
4583
+ #: bp-groups/bp-groups-notifications.php:735
4584
+ msgid "You were promoted to a mod in %d groups"
4585
+ msgstr ""
4586
+
4587
+ #: bp-groups/bp-groups-notifications.php:770
4588
+ msgid "You were promoted to a mod in the group \"%s\""
4589
+ msgstr ""
4590
+
4591
+ #: bp-groups/bp-groups-notifications.php:818
4592
+ msgid "You have %d new group invitations"
4593
+ msgstr ""
4594
+
4595
+ #: bp-groups/bp-groups-notifications.php:852
4596
+ msgid "You have an invitation to the group: %s"
4597
+ msgstr ""
4598
+
4599
+ #: bp-groups/bp-groups-screens.php:83
4600
+ msgid "Group invite could not be accepted"
4601
+ msgstr ""
4602
+
4603
+ #: bp-groups/bp-groups-screens.php:88
4604
+ msgid "Group invite accepted. Visit %s."
4605
+ msgstr ""
4606
+
4607
+ #: bp-groups/bp-groups-screens.php:110
4608
+ msgid "Group invite could not be rejected"
4609
+ msgstr ""
4610
+
4611
+ #: bp-groups/bp-groups-screens.php:112
4612
+ msgid "Group invite rejected"
4613
+ msgstr ""
4614
+
4615
+ #: bp-groups/bp-groups-screens.php:221
4616
+ msgid "It looks like you've already said that!"
4617
+ msgstr ""
4618
+
4619
+ #: bp-groups/bp-groups-screens.php:224
4620
+ msgid "There was an error when replying to that topic"
4621
+ msgstr ""
4622
+
4623
+ #: bp-groups/bp-groups-screens.php:226
4624
+ msgid "Your reply was posted successfully"
4625
+ msgstr ""
4626
+
4627
+ #: bp-groups/bp-groups-screens.php:247
4628
+ msgid "There was an error when making that topic a sticky"
4629
+ msgstr ""
4630
+
4631
+ #: bp-groups/bp-groups-screens.php:249
4632
+ msgid "The topic was made sticky successfully"
4633
+ msgstr ""
4634
+
4635
+ #: bp-groups/bp-groups-screens.php:269
4636
+ msgid "There was an error when unsticking that topic"
4637
+ msgstr ""
4638
+
4639
+ #: bp-groups/bp-groups-screens.php:271
4640
+ msgid "The topic was unstuck successfully"
4641
+ msgstr ""
4642
+
4643
+ #: bp-groups/bp-groups-screens.php:291
4644
+ msgid "There was an error when closing that topic"
4645
+ msgstr ""
4646
+
4647
+ #: bp-groups/bp-groups-screens.php:293
4648
+ msgid "The topic was closed successfully"
4649
+ msgstr ""
4650
+
4651
+ #: bp-groups/bp-groups-screens.php:313
4652
+ msgid "There was an error when opening that topic"
4653
+ msgstr ""
4654
+
4655
+ #: bp-groups/bp-groups-screens.php:315
4656
+ msgid "The topic was opened successfully"
4657
+ msgstr ""
4658
+
4659
+ #: bp-groups/bp-groups-screens.php:352
4660
+ msgid "There was an error deleting the topic"
4661
+ msgstr ""
4662
+
4663
+ #: bp-groups/bp-groups-screens.php:354
4664
+ msgid "The topic was deleted successfully"
4665
+ msgstr ""
4666
+
4667
+ #: bp-groups/bp-groups-screens.php:385
4668
+ msgid "There was an error when editing that topic"
4669
+ msgstr ""
4670
+
4671
+ #: bp-groups/bp-groups-screens.php:387
4672
+ msgid "The topic was edited successfully"
4673
+ msgstr ""
4674
+
4675
+ #: bp-groups/bp-groups-screens.php:433
4676
+ msgid "There was an error deleting that post"
4677
+ msgstr ""
4678
+
4679
+ #: bp-groups/bp-groups-screens.php:435
4680
+ msgid "The post was deleted successfully"
4681
+ msgstr ""
4682
+
4683
+ #: bp-groups/bp-groups-screens.php:466
4684
+ msgid "There was an error when editing that post"
4685
+ msgstr ""
4686
+
4687
+ #: bp-groups/bp-groups-screens.php:468
4688
+ msgid "The post was edited successfully"
4689
+ msgstr ""
4690
+
4691
+ #: bp-groups/bp-groups-screens.php:492 bp-groups/bp-groups-screens.php:518
4692
+ msgid "You have been banned from this group."
4693
+ msgstr ""
4694
+
4695
+ #: bp-groups/bp-groups-screens.php:532
4696
+ msgid "This group does not have a forum setup yet."
4697
+ msgstr ""
4698
+
4699
+ #: bp-groups/bp-groups-screens.php:631
4700
+ msgid "Group invites sent."
4701
+ msgstr ""
4702
+
4703
+ #: bp-groups/bp-groups-screens.php:687
4704
+ msgid "You are not allowed to send or remove invites"
4705
+ msgstr ""
4706
+
4707
+ #: bp-groups/bp-groups-screens.php:690
4708
+ msgid "The member requested to join the group"
4709
+ msgstr ""
4710
+
4711
+ #: bp-groups/bp-groups-screens.php:720
4712
+ msgid "Group invite accepted"
4713
+ msgstr ""
4714
+
4715
+ #: bp-groups/bp-groups-screens.php:722
4716
+ msgid "There was an error accepting the group invitation. Please try again."
4717
+ msgstr ""
4718
+
4719
+ #: bp-groups/bp-groups-screens.php:734
4720
+ msgid "There was an error sending your group membership request. Please try again."
4721
+ msgstr ""
4722
+
4723
+ #: bp-groups/bp-groups-screens.php:736
4724
+ msgid ""
4725
+ "Your membership request was sent to the group administrator successfully. "
4726
+ "You will be notified when the group administrator responds to your request."
4727
+ msgstr ""
4728
+
4729
+ #: bp-groups/bp-groups-screens.php:844
4730
+ msgid "Groups must have a name and a description. Please try again."
4731
+ msgstr ""
4732
+
4733
+ #: bp-groups/bp-groups-screens.php:852
4734
+ msgid "There was an error updating group details. Please try again."
4735
+ msgstr ""
4736
+
4737
+ #: bp-groups/bp-groups-screens.php:854
4738
+ msgid "Group details were successfully updated."
4739
+ msgstr ""
4740
+
4741
+ #: bp-groups/bp-groups-screens.php:950
4742
+ msgid "There was an error updating group settings. Please try again."
4743
+ msgstr ""
4744
+
4745
+ #: bp-groups/bp-groups-screens.php:952
4746
+ msgid "Group settings were successfully updated."
4747
+ msgstr ""
4748
+
4749
+ #: bp-groups/bp-groups-screens.php:1067
4750
+ msgid "The new group profile photo was uploaded successfully."
4751
+ msgstr ""
4752
+
4753
+ #: bp-groups/bp-groups-screens.php:1152
4754
+ msgid "There was an error when promoting that user. Please try again."
4755
+ msgstr ""
4756
+
4757
+ #: bp-groups/bp-groups-screens.php:1154
4758
+ msgid "User promoted successfully"
4759
+ msgstr ""
4760
+
4761
+ #: bp-groups/bp-groups-screens.php:1185
4762
+ msgid "There was an error when demoting that user. Please try again."
4763
+ msgstr ""
4764
+
4765
+ #: bp-groups/bp-groups-screens.php:1187
4766
+ msgid "User demoted successfully"
4767
+ msgstr ""
4768
+
4769
+ #: bp-groups/bp-groups-screens.php:1211
4770
+ msgid "There was an error when banning that user. Please try again."
4771
+ msgstr ""
4772
+
4773
+ #: bp-groups/bp-groups-screens.php:1213
4774
+ msgid "User banned successfully"
4775
+ msgstr ""
4776
+
4777
+ #: bp-groups/bp-groups-screens.php:1237
4778
+ msgid "There was an error when unbanning that user. Please try again."
4779
+ msgstr ""
4780
+
4781
+ #: bp-groups/bp-groups-screens.php:1239
4782
+ msgid "User ban removed successfully"
4783
+ msgstr ""
4784
+
4785
+ #: bp-groups/bp-groups-screens.php:1263
4786
+ msgid "There was an error removing that user from the group. Please try again."
4787
+ msgstr ""
4788
+
4789
+ #: bp-groups/bp-groups-screens.php:1265
4790
+ msgid "User removed successfully"
4791
+ msgstr ""
4792
+
4793
+ #: bp-groups/bp-groups-screens.php:1329
4794
+ msgid "There was an error accepting the membership request. Please try again."
4795
+ msgstr ""
4796
+
4797
+ #: bp-groups/bp-groups-screens.php:1331
4798
+ msgid "Group membership request accepted"
4799
+ msgstr ""
4800
+
4801
+ #: bp-groups/bp-groups-screens.php:1340
4802
+ msgid "There was an error rejecting the membership request. Please try again."
4803
+ msgstr ""
4804
+
4805
+ #: bp-groups/bp-groups-screens.php:1342
4806
+ msgid "Group membership request rejected"
4807
+ msgstr ""
4808
+
4809
+ #: bp-groups/bp-groups-screens.php:1411
4810
+ msgid "There was an error deleting the group. Please try again."
4811
+ msgstr ""
4812
+
4813
+ #: bp-groups/bp-groups-screens.php:1413
4814
+ msgid "The group was deleted successfully."
4815
+ msgstr ""
4816
+
4817
+ #: bp-groups/bp-groups-template.php:235
4818
+ msgid "Group Types:"
4819
+ msgstr ""
4820
+
4821
+ #: bp-groups/bp-groups-template.php:686
4822
+ msgid "Public Group"
4823
+ msgstr ""
4824
+
4825
+ #: bp-groups/bp-groups-template.php:688
4826
+ msgid "Hidden Group"
4827
+ msgstr ""
4828
+
4829
+ #: bp-groups/bp-groups-template.php:690
4830
+ msgid "Private Group"
4831
+ msgstr ""
4832
+
4833
+ #: bp-groups/bp-groups-template.php:692
4834
+ msgid "Group"
4835
+ msgstr ""
4836
+
4837
+ #: bp-groups/bp-groups-template.php:944
4838
+ msgid "not yet active"
4839
+ msgstr ""
4840
+
4841
+ #: bp-groups/bp-groups-template.php:1570
4842
+ msgid "Group creator profile photo of %s"
4843
+ msgstr ""
4844
+
4845
+ #: bp-groups/bp-groups-template.php:1640
4846
+ msgid "No Admins"
4847
+ msgstr ""
4848
+
4849
+ #: bp-groups/bp-groups-template.php:1676
4850
+ msgid "No Mods"
4851
+ msgstr ""
4852
+
4853
+ #: bp-groups/bp-groups-template.php:1816
4854
+ msgid "Filter Groups"
4855
+ msgstr ""
4856
+
4857
+ #: bp-groups/bp-groups-template.php:1916
4858
+ msgid "Viewing 1 group"
4859
+ msgstr ""
4860
+
4861
+ #: bp-groups/bp-groups-template.php:1918
4862
+ msgid "Viewing %1$s - %2$s of %3$s group"
4863
+ msgid_plural "Viewing %1$s - %2$s of %3$s groups"
4864
+ msgstr[0] ""
4865
+ msgstr[1] ""
4866
+
4867
+ #: bp-groups/bp-groups-template.php:2018
4868
+ msgid "%s member"
4869
+ msgid_plural "%s members"
4870
+ msgstr[0] ""
4871
+ msgstr[1] ""
4872
+
4873
+ #: bp-groups/bp-groups-template.php:2113
4874
+ msgid "%d topic"
4875
+ msgstr ""
4876
+
4877
+ #: bp-groups/bp-groups-template.php:2115
4878
+ msgid "%d topics"
4879
+ msgstr ""
4880
+
4881
+ #: bp-groups/bp-groups-template.php:2181
4882
+ msgid "%d posts"
4883
+ msgstr ""
4884
+
4885
+ #: bp-groups/bp-groups-template.php:2441 bp-groups/bp-groups-template.php:2517
4886
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:74
4887
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:168
4888
+ msgid "Demote to Member"
4889
+ msgstr ""
4890
+
4891
+ #: bp-groups/bp-groups-template.php:2454 bp-groups/bp-groups-template.php:2530
4892
+ #: bp-groups/bp-groups-template.php:4294
4893
+ msgid "joined %s"
4894
+ msgstr ""
4895
+
4896
+ #: bp-groups/bp-groups-template.php:2477
4897
+ msgid "This group has no administrators"
4898
+ msgstr ""
4899
+
4900
+ #: bp-groups/bp-groups-template.php:2516
4901
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:167
4902
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:276
4903
+ msgid "Promote to Admin"
4904
+ msgstr ""
4905
+
4906
+ #: bp-groups/bp-groups-template.php:2550
4907
+ msgid "This group has no moderators"
4908
+ msgstr ""
4909
+
4910
+ #: bp-groups/bp-groups-template.php:2911
4911
+ msgid ""
4912
+ "This action should not be used directly. Please use the BuddyPress Group "
4913
+ "Extension API to generate Manage tabs."
4914
+ msgstr ""
4915
+
4916
+ #: bp-groups/bp-groups-template.php:3498
4917
+ #: bp-templates/bp-legacy/buddypress-functions.php:1504
4918
+ #: bp-templates/bp-legacy/buddypress-functions.php:1517
4919
+ msgid "Leave Group"
4920
+ msgstr ""
4921
+
4922
+ #: bp-groups/bp-groups-template.php:3519
4923
+ #: bp-templates/bp-legacy/buddypress-functions.php:1538
4924
+ msgid "Join Group"
4925
+ msgstr ""
4926
+
4927
+ #: bp-groups/bp-groups-template.php:3537
4928
+ msgid "Accept Invitation"
4929
+ msgstr ""
4930
+
4931
+ #: bp-groups/bp-groups-template.php:3552
4932
+ #: bp-templates/bp-legacy/buddypress-functions.php:1527
4933
+ msgid "Request Sent"
4934
+ msgstr ""
4935
+
4936
+ #: bp-groups/bp-groups-template.php:3567
4937
+ #: bp-templates/bp-legacy/buddypress-functions.php:1540
4938
+ msgid "Request Membership"
4939
+ msgstr ""
4940
+
4941
+ #: bp-groups/bp-groups-template.php:3712
4942
+ msgid "This group is not currently accessible."
4943
+ msgstr ""
4944
+
4945
+ #: bp-groups/bp-groups-template.php:3723
4946
+ msgid ""
4947
+ "You must accept your pending invitation before you can access this private "
4948
+ "group."
4949
+ msgstr ""
4950
+
4951
+ #: bp-groups/bp-groups-template.php:3725
4952
+ msgid ""
4953
+ "This is a private group and you must request group membership in order to "
4954
+ "join."
4955
+ msgstr ""
4956
+
4957
+ #: bp-groups/bp-groups-template.php:3728
4958
+ msgid ""
4959
+ "This is a private group. To join you must be a registered site member and "
4960
+ "request group membership."
4961
+ msgstr ""
4962
+
4963
+ #: bp-groups/bp-groups-template.php:3731
4964
+ msgid ""
4965
+ "This is a private group. Your membership request is awaiting approval from "
4966
+ "the group administrator."
4967
+ msgstr ""
4968
+
4969
+ #: bp-groups/bp-groups-template.php:3739
4970
+ msgid "This is a hidden group and only invited members can join."
4971
+ msgstr ""
4972
+
4973
+ #: bp-groups/bp-groups-template.php:4410 bp-members/bp-members-template.php:502
4974
+ msgid "Viewing %1$s - %2$s of %3$s member"
4975
+ msgid_plural "Viewing %1$s - %2$s of %3$s members"
4976
+ msgstr[0] ""
4977
+ msgstr[1] ""
4978
+
4979
+ #: bp-groups/bp-groups-template.php:4538
4980
+ #: bp-templates/bp-legacy/buddypress/groups/single/activity.php:10
4981
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin.php:10
4982
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:24
4983
+ msgid "Group secondary navigation"
4984
+ msgstr ""
4985
+
4986
+ #: bp-groups/bp-groups-template.php:4580
4987
+ #: bp-notifications/bp-notifications-template.php:1000
4988
+ #: bp-templates/bp-legacy/buddypress/blogs/index.php:96
4989
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:94
4990
+ #: bp-templates/bp-legacy/buddypress/groups/index.php:92
4991
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:50
4992
+ #: bp-templates/bp-legacy/buddypress/members/index.php:91
4993
+ #: bp-templates/bp-legacy/buddypress/members/single/blogs.php:18
4994
+ #: bp-templates/bp-legacy/buddypress/members/single/forums.php:17
4995
+ #: bp-templates/bp-legacy/buddypress/members/single/friends.php:19
4996
+ #: bp-templates/bp-legacy/buddypress/members/single/groups.php:19
4997
+ msgid "Order By:"
4998
+ msgstr ""
4999
+
5000
+ #: bp-groups/bp-groups-template.php:4583
5001
+ msgid "Oldest"
5002
+ msgstr ""
5003
+
5004
+ #: bp-groups/bp-groups-template.php:4586
5005
+ msgid "Group Activity"
5006
+ msgstr ""
5007
+
5008
+ #: bp-groups/bp-groups-template.php:4589
5009
+ #: bp-groups/classes/class-bp-groups-widget.php:127
5010
+ #: bp-groups/classes/class-bp-groups-widget.php:229
5011
+ #: bp-templates/bp-legacy/buddypress/blogs/index.php:100
5012
+ #: bp-templates/bp-legacy/buddypress/groups/index.php:98
5013
+ #: bp-templates/bp-legacy/buddypress/members/index.php:97
5014
+ #: bp-templates/bp-legacy/buddypress/members/single/blogs.php:22
5015
+ #: bp-templates/bp-legacy/buddypress/members/single/friends.php:23
5016
+ #: bp-templates/bp-legacy/buddypress/members/single/groups.php:24
5017
+ msgid "Alphabetical"
5018
+ msgstr ""
5019
+
5020
+ #: bp-groups/bp-groups-template.php:5011
5021
+ msgid "Group photo"
5022
+ msgstr ""
5023
+
5024
+ #: bp-groups/bp-groups-template.php:5307 bp-groups/bp-groups-template.php:5332
5025
+ msgid "Recently Joined"
5026
+ msgstr ""
5027
+
5028
+ #: bp-groups/bp-groups-template.php:5308 bp-groups/bp-groups-template.php:5335
5029
+ msgid "Most Popular"
5030
+ msgstr ""
5031
+
5032
+ #: bp-groups/bp-groups-template.php:5309 bp-groups/bp-groups-template.php:5338
5033
+ msgid "Administrator Of"
5034
+ msgstr ""
5035
+
5036
+ #: bp-groups/bp-groups-template.php:5310 bp-groups/bp-groups-template.php:5341
5037
+ msgid "Moderator Of"
5038
+ msgstr ""
5039
+
5040
+ #: bp-groups/bp-groups-template.php:5368
5041
+ msgid "Viewing groups of the type: %s"
5042
+ msgstr ""
5043
+
5044
+ #: bp-groups/bp-groups-template.php:5452
5045
+ msgid "Group avatar"
5046
+ msgstr ""
5047
+
5048
+ #: bp-groups/bp-groups-template.php:5715
5049
+ msgid "requested %s"
5050
+ msgstr ""
5051
+
5052
+ #: bp-groups/bp-groups-template.php:5786
5053
+ msgid "Viewing 1 request"
5054
+ msgstr ""
5055
+
5056
+ #: bp-groups/bp-groups-template.php:5788
5057
+ msgid "Viewing %1$s - %2$s of %3$s request"
5058
+ msgid_plural "Viewing %1$s - %2$s of %3$s requests"
5059
+ msgstr[0] ""
5060
+ msgstr[1] ""
5061
+
5062
+ #: bp-groups/bp-groups-template.php:6055
5063
+ msgid "Viewing 1 invitation"
5064
+ msgstr ""
5065
+
5066
+ #: bp-groups/bp-groups-template.php:6057
5067
+ msgid "Viewing %1$s - %2$s of %3$s invitation"
5068
+ msgid_plural "Viewing %1$s - %2$s of %3$s invitations"
5069
+ msgstr[0] ""
5070
+ msgstr[1] ""
5071
+
5072
+ #: bp-groups/bp-groups-template.php:6078
5073
+ msgid "Group Activity RSS Feed"
5074
+ msgstr ""
5075
+
5076
+ #: bp-groups/bp-groups-template.php:6360
5077
+ msgid "%s group"
5078
+ msgid_plural "%s groups"
5079
+ msgstr[0] ""
5080
+ msgstr[1] ""
5081
+
5082
+ #: bp-groups/bp-groups-widgets.php:68
5083
+ #: bp-groups/classes/class-bp-groups-widget.php:143
5084
+ msgid "created %s"
5085
+ msgstr ""
5086
+
5087
+ #: bp-groups/bp-groups-widgets.php:84
5088
+ msgid "No groups matched the current filter."
5089
+ msgstr ""
5090
+
5091
+ #: bp-groups/classes/class-bp-group-extension.php:864
5092
+ msgid "You do not have access to this content."
5093
+ msgstr ""
5094
+
5095
+ #: bp-groups/classes/class-bp-groups-component.php:490
5096
+ #: bp-groups/classes/class-bp-groups-component.php:523
5097
+ msgid "Memberships"
5098
+ msgstr ""
5099
+
5100
+ #: bp-groups/classes/class-bp-groups-component.php:501
5101
+ msgid "Invitations"
5102
+ msgstr ""
5103
+
5104
+ #: bp-groups/classes/class-bp-groups-component.php:652
5105
+ msgid "Details"
5106
+ msgstr ""
5107
+
5108
+ #: bp-groups/classes/class-bp-groups-component.php:665
5109
+ msgid "Photo"
5110
+ msgstr ""
5111
+
5112
+ #: bp-groups/classes/class-bp-groups-component.php:673
5113
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:314
5114
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-cover-image.php:11
5115
+ #. translators: accessibility text
5116
+ msgid "Cover Image"
5117
+ msgstr ""
5118
+
5119
+ #: bp-groups/classes/class-bp-groups-component.php:687
5120
+ msgid "Requests"
5121
+ msgstr ""
5122
+
5123
+ #: bp-groups/classes/class-bp-groups-component.php:834
5124
+ msgid "No Group Profile Photo"
5125
+ msgstr ""
5126
+
5127
+ #: bp-groups/classes/class-bp-groups-list-table.php:227
5128
+ msgid "No groups found."
5129
+ msgstr ""
5130
+
5131
+ #: bp-groups/classes/class-bp-groups-list-table.php:240
5132
+ #. translators: accessibility text
5133
+ msgid "Groups list"
5134
+ msgstr ""
5135
+
5136
+ #: bp-groups/classes/class-bp-groups-list-table.php:330
5137
+ #. translators: accessibility text
5138
+ msgid "Filter groups list"
5139
+ msgstr ""
5140
+
5141
+ #: bp-groups/classes/class-bp-groups-list-table.php:335
5142
+ msgid "Public <span class=\"count\">(%s)</span>"
5143
+ msgid_plural "Public <span class=\"count\">(%s)</span>"
5144
+ msgstr[0] ""
5145
+ msgstr[1] ""
5146
+
5147
+ #: bp-groups/classes/class-bp-groups-list-table.php:336
5148
+ msgid "Private <span class=\"count\">(%s)</span>"
5149
+ msgid_plural "Private <span class=\"count\">(%s)</span>"
5150
+ msgstr[0] ""
5151
+ msgstr[1] ""
5152
+
5153
+ #: bp-groups/classes/class-bp-groups-list-table.php:337
5154
+ msgid "Hidden <span class=\"count\">(%s)</span>"
5155
+ msgid_plural "Hidden <span class=\"count\">(%s)</span>"
5156
+ msgstr[0] ""
5157
+ msgstr[1] ""
5158
+
5159
+ #: bp-groups/classes/class-bp-groups-list-table.php:470
5160
+ #. translators: accessibility text
5161
+ msgid "Select group %1$d"
5162
+ msgstr ""
5163
+
5164
+ #: bp-groups/classes/class-bp-groups-list-table.php:773
5165
+ #: bp-groups/classes/class-bp-groups-list-table.php:775
5166
+ msgid "Change group type to&hellip;"
5167
+ msgstr ""
5168
+
5169
+ #: bp-groups/classes/class-bp-groups-list-table.php:783
5170
+ msgid "No Group Type"
5171
+ msgstr ""
5172
+
5173
+ #: bp-groups/classes/class-bp-groups-list-table.php:788
5174
+ #: bp-members/classes/class-bp-members-admin.php:2188
5175
+ #: bp-xprofile/classes/class-bp-xprofile-user-admin.php:388
5176
+ msgid "Change"
5177
+ msgstr ""
5178
+
5179
+ #: bp-groups/classes/class-bp-groups-member.php:341
5180
+ msgid "Group Mod"
5181
+ msgstr ""
5182
+
5183
+ #: bp-groups/classes/class-bp-groups-widget.php:27
5184
+ msgid "A dynamic list of recently active, popular, newest, or alphabetical groups"
5185
+ msgstr ""
5186
+
5187
+ #: bp-groups/classes/class-bp-groups-widget.php:163
5188
+ msgid "There are no groups to display."
5189
+ msgstr ""
5190
+
5191
+ #: bp-groups/classes/class-bp-groups-widget.php:219
5192
+ msgid "Link widget title to Groups directory"
5193
+ msgstr ""
5194
+
5195
+ #: bp-groups/classes/class-bp-groups-widget.php:221
5196
+ msgid "Max groups to show:"
5197
+ msgstr ""
5198
+
5199
+ #: bp-groups/classes/class-bp-groups-widget.php:224
5200
+ msgid "Default groups to show:"
5201
+ msgstr ""
5202
+
5203
+ #: bp-loader.php:62
5204
+ msgid "Your site does not support BuddyPress."
5205
+ msgstr ""
5206
+
5207
+ #: bp-loader.php:64
5208
+ #. translators: 1: current PHP version, 2: required PHP version
5209
+ msgid ""
5210
+ "Your site is currently running PHP version %1$s, while BuddyPress requires "
5211
+ "version %2$s or greater."
5212
+ msgstr ""
5213
+
5214
+ #: bp-loader.php:65
5215
+ msgid "Please update your server or deactivate BuddyPress."
5216
+ msgstr ""
5217
+
5218
+ #: bp-members/bp-members-actions.php:57
5219
+ #: bp-members/classes/class-bp-members-admin.php:359
5220
+ msgid "User removed as spammer."
5221
+ msgstr ""
5222
+
5223
+ #: bp-members/bp-members-actions.php:95
5224
+ msgid "%s has been deleted from the system."
5225
+ msgstr ""
5226
+
5227
+ #: bp-members/bp-members-actions.php:97
5228
+ msgid "There was an error deleting %s from the system. Please try again."
5229
+ msgstr ""
5230
+
5231
+ #: bp-members/bp-members-activity.php:24
5232
+ msgid "New member registered"
5233
+ msgstr ""
5234
+
5235
+ #: bp-members/bp-members-activity.php:26
5236
+ msgid "New Members"
5237
+ msgstr ""
5238
+
5239
+ #: bp-members/bp-members-activity.php:50
5240
+ msgid "%s became a registered member"
5241
+ msgstr ""
5242
+
5243
+ #: bp-members/bp-members-adminbar.php:41
5244
+ msgid "Edit My Profile"
5245
+ msgstr ""
5246
+
5247
+ #: bp-members/bp-members-adminbar.php:55
5248
+ msgid "Log in"
5249
+ msgstr ""
5250
+
5251
+ #: bp-members/bp-members-adminbar.php:95
5252
+ msgid "Edit Member"
5253
+ msgstr ""
5254
+
5255
+ #: bp-members/bp-members-adminbar.php:104
5256
+ #: bp-members/classes/class-bp-members-admin.php:436
5257
+ #: bp-members/classes/class-bp-members-admin.php:437
5258
+ #: bp-members/classes/class-bp-members-admin.php:473
5259
+ #: bp-members/classes/class-bp-members-admin.php:474
5260
+ #: bp-xprofile/bp-xprofile-template.php:1243
5261
+ msgid "Edit Profile"
5262
+ msgstr ""
5263
+
5264
+ #: bp-members/bp-members-adminbar.php:113
5265
+ #: bp-xprofile/classes/class-bp-xprofile-user-admin.php:482
5266
+ msgid "Edit Profile Photo"
5267
+ msgstr ""
5268
+
5269
+ #: bp-members/bp-members-adminbar.php:123
5270
+ msgid "Edit Cover Image"
5271
+ msgstr ""
5272
+
5273
+ #: bp-members/bp-members-adminbar.php:143
5274
+ #: bp-settings/classes/class-bp-settings-component.php:148
5275
+ #: bp-settings/classes/class-bp-settings-component.php:209
5276
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/delete-account.php:43
5277
+ msgid "Delete Account"
5278
+ msgstr ""
5279
+
5280
+ #: bp-members/bp-members-functions.php:1208
5281
+ msgid ""
5282
+ "User last_activity data is no longer stored in usermeta. Use "
5283
+ "bp_get_user_last_activity() instead."
5284
+ msgstr ""
5285
+
5286
+ #: bp-members/bp-members-functions.php:1243
5287
+ msgid ""
5288
+ "User last_activity data is no longer stored in usermeta. Use "
5289
+ "bp_update_user_last_activity() instead."
5290
+ msgstr ""
5291
+
5292
+ #: bp-members/bp-members-functions.php:1458
5293
+ #: bp-members/bp-members-functions.php:2506
5294
+ msgid "<strong>ERROR</strong>: Your account has been marked as a spammer."
5295
+ msgstr ""
5296
+
5297
+ #: bp-members/bp-members-functions.php:1679
5298
+ msgid "Please check your email address."
5299
+ msgstr ""
5300
+
5301
+ #: bp-members/bp-members-functions.php:1683
5302
+ #: bp-members/bp-members-functions.php:1687
5303
+ msgid "Sorry, that email address is not allowed!"
5304
+ msgstr ""
5305
+
5306
+ #: bp-members/bp-members-functions.php:1691
5307
+ msgid "Sorry, that email address is already used!"
5308
+ msgstr ""
5309
+
5310
+ #: bp-members/bp-members-functions.php:1731
5311
+ msgid "Please enter a username"
5312
+ msgstr ""
5313
+
5314
+ #: bp-members/bp-members-functions.php:1737
5315
+ msgid "That username is not allowed"
5316
+ msgstr ""
5317
+
5318
+ #: bp-members/bp-members-functions.php:1742
5319
+ msgid "Usernames can contain only letters, numbers, ., -, and @"
5320
+ msgstr ""
5321
+
5322
+ #: bp-members/bp-members-functions.php:1747
5323
+ msgid "Username must be at least 4 characters"
5324
+ msgstr ""
5325
+
5326
+ #: bp-members/bp-members-functions.php:1752
5327
+ msgid "Sorry, usernames may not contain the character \"_\"!"
5328
+ msgstr ""
5329
+
5330
+ #: bp-members/bp-members-functions.php:1759
5331
+ msgid "Sorry, usernames must have letters too!"
5332
+ msgstr ""
5333
+
5334
+ #: bp-members/bp-members-functions.php:1771
5335
+ msgid "Sorry, that username already exists!"
5336
+ msgstr ""
5337
+
5338
+ #: bp-members/bp-members-functions.php:1985
5339
+ #: bp-members/bp-members-functions.php:2012
5340
+ msgid "Invalid activation key."
5341
+ msgstr ""
5342
+
5343
+ #: bp-members/bp-members-functions.php:1992
5344
+ msgid "The user is already active."
5345
+ msgstr ""
5346
+
5347
+ #: bp-members/bp-members-functions.php:1994
5348
+ msgid "The site is already active."
5349
+ msgstr ""
5350
+
5351
+ #: bp-members/bp-members-functions.php:2027
5352
+ msgid "Could not create user"
5353
+ msgstr ""
5354
+
5355
+ #: bp-members/bp-members-functions.php:2041
5356
+ msgid "That username is already activated."
5357
+ msgstr ""
5358
+
5359
+ #: bp-members/bp-members-functions.php:2369
5360
+ msgid ""
5361
+ "If you have not received an email yet, <a href=\"%s\">click here to resend "
5362
+ "it</a>."
5363
+ msgstr ""
5364
+
5365
+ #: bp-members/bp-members-functions.php:2371
5366
+ msgid ""
5367
+ "<strong>ERROR</strong>: Your account has not been activated. Check your "
5368
+ "email for the activation link."
5369
+ msgstr ""
5370
+
5371
+ #: bp-members/bp-members-functions.php:2402
5372
+ msgid "<strong>ERROR</strong>: Your account has already been activated."
5373
+ msgstr ""
5374
+
5375
+ #: bp-members/bp-members-functions.php:2404
5376
+ msgid "Activation email resent! Please check your inbox or spam folder."
5377
+ msgstr ""
5378
+
5379
+ #: bp-members/bp-members-functions.php:2593
5380
+ msgid "Member type already exists."
5381
+ msgstr ""
5382
+
5383
+ #: bp-members/bp-members-functions.php:2616
5384
+ msgid "You may not register a member type with this name."
5385
+ msgstr ""
5386
+
5387
+ #: bp-members/bp-members-screens.php:127
5388
+ msgid "Please make sure you enter your password twice"
5389
+ msgstr ""
5390
+
5391
+ #: bp-members/bp-members-screens.php:131
5392
+ msgid "The passwords you entered do not match."
5393
+ msgstr ""
5394
+
5395
+ #: bp-members/bp-members-screens.php:151
5396
+ msgid "This is a required field"
5397
+ msgstr ""
5398
+
5399
+ #: bp-members/bp-members-screens.php:355
5400
+ msgid "Your account is now active!"
5401
+ msgstr ""
5402
+
5403
+ #: bp-members/bp-members-template.php:482
5404
+ msgid "Viewing 1 active member"
5405
+ msgstr ""
5406
+
5407
+ #: bp-members/bp-members-template.php:484
5408
+ msgid "Viewing %1$s - %2$s of %3$s active member"
5409
+ msgid_plural "Viewing %1$s - %2$s of %3$s active members"
5410
+ msgstr[0] ""
5411
+ msgstr[1] ""
5412
+
5413
+ #: bp-members/bp-members-template.php:488
5414
+ msgid "Viewing 1 member with friends"
5415
+ msgstr ""
5416
+
5417
+ #: bp-members/bp-members-template.php:490
5418
+ msgid "Viewing %1$s - %2$s of %3$s member with friends"
5419
+ msgid_plural "Viewing %1$s - %2$s of %3$s members with friends"
5420
+ msgstr[0] ""
5421
+ msgstr[1] ""
5422
+
5423
+ #: bp-members/bp-members-template.php:494
5424
+ msgid "Viewing 1 online member"
5425
+ msgstr ""
5426
+
5427
+ #: bp-members/bp-members-template.php:496
5428
+ msgid "Viewing %1$s - %2$s of %3$s online member"
5429
+ msgid_plural "Viewing %1$s - %2$s of %3$s online members"
5430
+ msgstr[0] ""
5431
+ msgstr[1] ""
5432
+
5433
+ #: bp-members/bp-members-template.php:2010
5434
+ msgid "Viewing members of the type: %s"
5435
+ msgstr ""
5436
+
5437
+ #: bp-members/bp-members-template.php:2437
5438
+ msgid "Your Profile Photo"
5439
+ msgstr ""
5440
+
5441
+ #: bp-members/bp-members-template.php:2527
5442
+ msgid "Activity RSS Feed"
5443
+ msgstr ""
5444
+
5445
+ #: bp-members/classes/class-bp-core-members-widget.php:29
5446
+ msgid "A dynamic list of recently active, popular, and newest members"
5447
+ msgstr ""
5448
+
5449
+ #: bp-members/classes/class-bp-core-members-widget.php:157
5450
+ msgid "No one has signed up yet!"
5451
+ msgstr ""
5452
+
5453
+ #: bp-members/classes/class-bp-core-members-widget.php:221
5454
+ #: bp-members/classes/class-bp-core-recently-active-widget.php:150
5455
+ #: bp-members/classes/class-bp-core-whos-online-widget.php:149
5456
+ msgid "Max members to show:"
5457
+ msgstr ""
5458
+
5459
+ #: bp-members/classes/class-bp-core-members-widget.php:227
5460
+ msgid "Default members to show:"
5461
+ msgstr ""
5462
+
5463
+ #: bp-members/classes/class-bp-core-recently-active-widget.php:27
5464
+ msgid "Profile photos of recently active members"
5465
+ msgstr ""
5466
+
5467
+ #: bp-members/classes/class-bp-core-recently-active-widget.php:98
5468
+ msgid "There are no recently active members"
5469
+ msgstr ""
5470
+
5471
+ #: bp-members/classes/class-bp-core-recently-active-widget.php:169
5472
+ msgid "Recently Active Members"
5473
+ msgstr ""
5474
+
5475
+ #: bp-members/classes/class-bp-core-whos-online-widget.php:27
5476
+ msgid "Profile photos of online users"
5477
+ msgstr ""
5478
+
5479
+ #: bp-members/classes/class-bp-core-whos-online-widget.php:97
5480
+ msgid "There are no users currently online"
5481
+ msgstr ""
5482
+
5483
+ #: bp-members/classes/class-bp-core-whos-online-widget.php:168
5484
+ msgid "Who's Online"
5485
+ msgstr ""
5486
+
5487
+ #: bp-members/classes/class-bp-members-admin.php:353
5488
+ msgid "Profile photo was deleted."
5489
+ msgstr ""
5490
+
5491
+ #: bp-members/classes/class-bp-members-admin.php:371
5492
+ msgid "Profile updated."
5493
+ msgstr ""
5494
+
5495
+ #: bp-members/classes/class-bp-members-admin.php:383
5496
+ msgid "There was a problem deleting that profile photo. Please try again."
5497
+ msgstr ""
5498
+
5499
+ #: bp-members/classes/class-bp-members-admin.php:389
5500
+ msgid "User could not be removed as spammer."
5501
+ msgstr ""
5502
+
5503
+ #: bp-members/classes/class-bp-members-admin.php:395
5504
+ msgid "User could not be marked as spammer."
5505
+ msgstr ""
5506
+
5507
+ #: bp-members/classes/class-bp-members-admin.php:401
5508
+ msgid "An error occurred while trying to update the profile."
5509
+ msgstr ""
5510
+
5511
+ #: bp-members/classes/class-bp-members-admin.php:407
5512
+ #: bp-xprofile/bp-xprofile-screens.php:100
5513
+ msgid ""
5514
+ "Please make sure you fill in all required fields in this profile field "
5515
+ "group before saving."
5516
+ msgstr ""
5517
+
5518
+ #: bp-members/classes/class-bp-members-admin.php:413
5519
+ #: bp-xprofile/bp-xprofile-screens.php:166
5520
+ msgid ""
5521
+ "There was a problem updating some of your profile information. Please try "
5522
+ "again."
5523
+ msgstr ""
5524
+
5525
+ #: bp-members/classes/class-bp-members-admin.php:485
5526
+ #: bp-members/classes/class-bp-members-admin.php:486
5527
+ msgid "Manage Signups"
5528
+ msgstr ""
5529
+
5530
+ #: bp-members/classes/class-bp-members-admin.php:708
5531
+ #: bp-members/classes/class-bp-members-admin.php:914
5532
+ msgid "Profile"
5533
+ msgstr ""
5534
+
5535
+ #: bp-members/classes/class-bp-members-admin.php:712
5536
+ msgid "Extended Profile"
5537
+ msgstr ""
5538
+
5539
+ #: bp-members/classes/class-bp-members-admin.php:734
5540
+ msgid "You cannot edit the requested user."
5541
+ msgstr ""
5542
+
5543
+ #: bp-members/classes/class-bp-members-admin.php:776
5544
+ msgid "This is the admin view of a user&#39;s profile."
5545
+ msgstr ""
5546
+
5547
+ #: bp-members/classes/class-bp-members-admin.php:777
5548
+ msgid ""
5549
+ "In the main column, you can edit the fields of the user&#39;s extended "
5550
+ "profile."
5551
+ msgstr ""
5552
+
5553
+ #: bp-members/classes/class-bp-members-admin.php:778
5554
+ msgid ""
5555
+ "In the right-hand column, you can update the user&#39;s status, delete the "
5556
+ "user&#39;s avatar, and view recent statistics."
5557
+ msgstr ""
5558
+
5559
+ #: bp-members/classes/class-bp-members-admin.php:784
5560
+ msgid ""
5561
+ "<a "
5562
+ "href=\"https://codex.buddypress.org/administrator-guide/extended-profiles/\""
5563
+ ">Managing Profiles</a>"
5564
+ msgstr ""
5565
+
5566
+ #: bp-members/classes/class-bp-members-admin.php:916
5567
+ msgid "Edit User"
5568
+ msgstr ""
5569
+
5570
+ #: bp-members/classes/class-bp-members-admin.php:940
5571
+ msgid "&larr; Back to Users"
5572
+ msgstr ""
5573
+
5574
+ #: bp-members/classes/class-bp-members-admin.php:998
5575
+ msgid "No user found with this ID."
5576
+ msgstr ""
5577
+
5578
+ #: bp-members/classes/class-bp-members-admin.php:1031
5579
+ msgid "User account has not yet been activated"
5580
+ msgstr ""
5581
+
5582
+ #: bp-members/classes/class-bp-members-admin.php:1057
5583
+ msgid "Spammer"
5584
+ msgstr ""
5585
+
5586
+ #: bp-members/classes/class-bp-members-admin.php:1069
5587
+ msgid "Registered on: %s"
5588
+ msgstr ""
5589
+
5590
+ #: bp-members/classes/class-bp-members-admin.php:1079
5591
+ msgid "View Profile"
5592
+ msgstr ""
5593
+
5594
+ #: bp-members/classes/class-bp-members-admin.php:1080
5595
+ msgid "Update Profile"
5596
+ msgstr ""
5597
+
5598
+ #: bp-members/classes/class-bp-members-admin.php:1099
5599
+ #: bp-xprofile/classes/class-bp-xprofile-user-admin.php:433
5600
+ msgid ""
5601
+ "%s has been marked as a spammer. All BuddyPress data associated with the "
5602
+ "user has been removed"
5603
+ msgstr ""
5604
+
5605
+ #: bp-members/classes/class-bp-members-admin.php:1130
5606
+ msgid "Last active: %1$s"
5607
+ msgstr ""
5608
+
5609
+ #: bp-members/classes/class-bp-members-admin.php:1172
5610
+ #. translators: accessibility text
5611
+ msgid "Select member type"
5612
+ msgstr ""
5613
+
5614
+ #: bp-members/classes/class-bp-members-admin.php:1177
5615
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:191
5616
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:212
5617
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:235
5618
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:243
5619
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-selectbox.php:108
5620
+ #. translators: no option picked in select box
5621
+ msgid "----"
5622
+ msgstr ""
5623
+
5624
+ #: bp-members/classes/class-bp-members-admin.php:1257
5625
+ msgid "Extended"
5626
+ msgstr ""
5627
+
5628
+ #: bp-members/classes/class-bp-members-admin.php:1499
5629
+ msgid "This is the administration screen for pending accounts on your site."
5630
+ msgstr ""
5631
+
5632
+ #: bp-members/classes/class-bp-members-admin.php:1500
5633
+ msgid ""
5634
+ "From the screen options, you can customize the displayed columns and the "
5635
+ "pagination of this screen."
5636
+ msgstr ""
5637
+
5638
+ #: bp-members/classes/class-bp-members-admin.php:1501
5639
+ msgid ""
5640
+ "You can reorder the list of your pending accounts by clicking on the "
5641
+ "Username, Email or Registered column headers."
5642
+ msgstr ""
5643
+
5644
+ #: bp-members/classes/class-bp-members-admin.php:1502
5645
+ msgid ""
5646
+ "Using the search form, you can find pending accounts more easily. The "
5647
+ "Username and Email fields will be included in the search."
5648
+ msgstr ""
5649
+
5650
+ #: bp-members/classes/class-bp-members-admin.php:1509
5651
+ msgid ""
5652
+ "Hovering over a row in the pending accounts list will display action links "
5653
+ "that allow you to manage pending accounts. You can perform the following "
5654
+ "actions:"
5655
+ msgstr ""
5656
+
5657
+ #: bp-members/classes/class-bp-members-admin.php:1510
5658
+ msgid ""
5659
+ "\"Email\" takes you to the confirmation screen before being able to send "
5660
+ "the activation link to the desired pending account. You can only send the "
5661
+ "activation email once per day."
5662
+ msgstr ""
5663
+
5664
+ #: bp-members/classes/class-bp-members-admin.php:1511
5665
+ msgid ""
5666
+ "\"Delete\" allows you to delete a pending account from your site. You will "
5667
+ "be asked to confirm this deletion."
5668
+ msgstr ""
5669
+
5670
+ #: bp-members/classes/class-bp-members-admin.php:1512
5671
+ msgid ""
5672
+ "By clicking on a Username you will be able to activate a pending account "
5673
+ "from the confirmation screen."
5674
+ msgstr ""
5675
+
5676
+ #: bp-members/classes/class-bp-members-admin.php:1513
5677
+ msgid "Bulk actions allow you to perform these 3 actions for the selected rows."
5678
+ msgstr ""
5679
+
5680
+ #: bp-members/classes/class-bp-members-admin.php:1526
5681
+ #. translators: accessibility text
5682
+ msgid "Filter users list"
5683
+ msgstr ""
5684
+
5685
+ #: bp-members/classes/class-bp-members-admin.php:1528
5686
+ #. translators: accessibility text
5687
+ msgid "Pending users list navigation"
5688
+ msgstr ""
5689
+
5690
+ #: bp-members/classes/class-bp-members-admin.php:1530
5691
+ #. translators: accessibility text
5692
+ msgid "Pending users list"
5693
+ msgstr ""
5694
+
5695
+ #: bp-members/classes/class-bp-members-admin.php:1791
5696
+ msgid "There was a problem sending the activation emails. Please try again."
5697
+ msgstr ""
5698
+
5699
+ #: bp-members/classes/class-bp-members-admin.php:1798
5700
+ msgid "There was a problem activating accounts. Please try again."
5701
+ msgstr ""
5702
+
5703
+ #: bp-members/classes/class-bp-members-admin.php:1805
5704
+ msgid "There was a problem deleting sign-ups. Please try again."
5705
+ msgstr ""
5706
+
5707
+ #: bp-members/classes/class-bp-members-admin.php:1927
5708
+ msgid "Users"
5709
+ msgstr ""
5710
+
5711
+ #: bp-members/classes/class-bp-members-admin.php:1951
5712
+ msgid "Search Pending Users"
5713
+ msgstr ""
5714
+
5715
+ #: bp-members/classes/class-bp-members-admin.php:1999
5716
+ msgid "Delete Pending Accounts"
5717
+ msgstr ""
5718
+
5719
+ #: bp-members/classes/class-bp-members-admin.php:2001
5720
+ msgid "You are about to delete the following account:"
5721
+ msgstr ""
5722
+
5723
+ #: bp-members/classes/class-bp-members-admin.php:2003
5724
+ msgid "You are about to delete the following accounts:"
5725
+ msgstr ""
5726
+
5727
+ #: bp-members/classes/class-bp-members-admin.php:2008
5728
+ msgid "Activate Pending Accounts"
5729
+ msgstr ""
5730
+
5731
+ #: bp-members/classes/class-bp-members-admin.php:2010
5732
+ msgid "You are about to activate the following account:"
5733
+ msgstr ""
5734
+
5735
+ #: bp-members/classes/class-bp-members-admin.php:2012
5736
+ msgid "You are about to activate the following accounts:"
5737
+ msgstr ""
5738
+
5739
+ #: bp-members/classes/class-bp-members-admin.php:2017
5740
+ msgid "Resend Activation Emails"
5741
+ msgstr ""
5742
+
5743
+ #: bp-members/classes/class-bp-members-admin.php:2019
5744
+ msgid "You are about to resend an activation email to the following account:"
5745
+ msgstr ""
5746
+
5747
+ #: bp-members/classes/class-bp-members-admin.php:2021
5748
+ msgid "You are about to resend an activation email to the following accounts:"
5749
+ msgstr ""
5750
+
5751
+ #: bp-members/classes/class-bp-members-admin.php:2089
5752
+ msgid "Display Name"
5753
+ msgstr ""
5754
+
5755
+ #: bp-members/classes/class-bp-members-admin.php:2094
5756
+ #: bp-members/classes/class-bp-members-list-table.php:152
5757
+ #: bp-members/classes/class-bp-members-list-table.php:316
5758
+ #: bp-members/classes/class-bp-members-ms-list-table.php:139
5759
+ #: bp-members/classes/class-bp-members-ms-list-table.php:309
5760
+ #: bp-settings/classes/class-bp-settings-component.php:123
5761
+ #: bp-settings/classes/class-bp-settings-component.php:198
5762
+ msgid "Email"
5763
+ msgstr ""
5764
+
5765
+ #: bp-members/classes/class-bp-members-admin.php:2117
5766
+ msgid "Last notified: %s"
5767
+ msgstr ""
5768
+
5769
+ #: bp-members/classes/class-bp-members-admin.php:2121
5770
+ msgid "(less than 24 hours ago)"
5771
+ msgstr ""
5772
+
5773
+ #: bp-members/classes/class-bp-members-admin.php:2139
5774
+ msgid "Confirm"
5775
+ msgstr ""
5776
+
5777
+ #: bp-members/classes/class-bp-members-admin.php:2173
5778
+ #: bp-members/classes/class-bp-members-admin.php:2175
5779
+ msgid "Change member type to&hellip;"
5780
+ msgstr ""
5781
+
5782
+ #: bp-members/classes/class-bp-members-admin.php:2183
5783
+ msgid "No Member Type"
5784
+ msgstr ""
5785
+
5786
+ #: bp-members/classes/class-bp-members-admin.php:2278
5787
+ msgid "There was an error while changing member type. Please try again."
5788
+ msgstr ""
5789
+
5790
+ #: bp-members/classes/class-bp-members-admin.php:2281
5791
+ msgid "Member type was changed successfully."
5792
+ msgstr ""
5793
+
5794
+ #: bp-members/classes/class-bp-members-component.php:117
5795
+ msgid "Search Members..."
5796
+ msgstr ""
5797
+
5798
+ #: bp-members/classes/class-bp-members-component.php:375
5799
+ msgid "You"
5800
+ msgstr ""
5801
+
5802
+ #: bp-members/classes/class-bp-members-list-table.php:153
5803
+ #: bp-members/classes/class-bp-members-ms-list-table.php:140
5804
+ msgid "Registered"
5805
+ msgstr ""
5806
+
5807
+ #: bp-members/classes/class-bp-members-list-table.php:154
5808
+ #: bp-members/classes/class-bp-members-ms-list-table.php:141
5809
+ msgid "Last Sent"
5810
+ msgstr ""
5811
+
5812
+ #: bp-members/classes/class-bp-members-list-table.php:155
5813
+ #: bp-members/classes/class-bp-members-ms-list-table.php:142
5814
+ msgid "Emails Sent"
5815
+ msgstr ""
5816
+
5817
+ #: bp-members/classes/class-bp-members-list-table.php:187
5818
+ #: bp-members/classes/class-bp-members-ms-list-table.php:173
5819
+ msgid "No pending accounts found."
5820
+ msgstr ""
5821
+
5822
+ #: bp-members/classes/class-bp-members-list-table.php:193
5823
+ #: bp-members/classes/class-bp-members-list-table.php:195
5824
+ #: bp-members/classes/class-bp-members-ms-list-table.php:178
5825
+ msgid "Edit settings"
5826
+ msgstr ""
5827
+
5828
+ #: bp-members/classes/class-bp-members-list-table.php:198
5829
+ #: bp-members/classes/class-bp-members-ms-list-table.php:181
5830
+ msgid "Registration is disabled. %s"
5831
+ msgstr ""
5832
+
5833
+ #: bp-members/classes/class-bp-members-list-table.php:265
5834
+ #: bp-members/classes/class-bp-members-ms-list-table.php:258
5835
+ #. translators: accessibility text
5836
+ msgid "Select user: %s"
5837
+ msgstr ""
5838
+
5839
+ #: bp-members/classes/class-bp-registration-theme-compat.php:103
5840
+ msgid "Check Your Email To Activate Your Account!"
5841
+ msgstr ""
5842
+
5843
+ #: bp-members/classes/class-bp-registration-theme-compat.php:111
5844
+ msgid "Account Activated"
5845
+ msgstr ""
5846
+
5847
+ #: bp-members/classes/class-bp-signup.php:625
5848
+ #: bp-members/classes/class-bp-signup.php:712
5849
+ #: bp-members/classes/class-bp-signup.php:789
5850
+ msgid "the sign-up has already been activated."
5851
+ msgstr ""
5852
+
5853
+ #: bp-messages/bp-messages-actions.php:44
5854
+ msgid "Your message was not sent. Please enter a subject line."
5855
+ msgstr ""
5856
+
5857
+ #: bp-messages/bp-messages-actions.php:46
5858
+ #: bp-messages/bp-messages-functions.php:63
5859
+ msgid "Your message was not sent. Please enter some content."
5860
+ msgstr ""
5861
+
5862
+ #: bp-messages/bp-messages-actions.php:61
5863
+ msgid "Notice successfully created."
5864
+ msgstr ""
5865
+
5866
+ #: bp-messages/bp-messages-actions.php:67
5867
+ msgid "Notice was not created. Please try again."
5868
+ msgstr ""
5869
+
5870
+ #: bp-messages/bp-messages-actions.php:98
5871
+ msgid "Message successfully sent."
5872
+ msgstr ""
5873
+
5874
+ #: bp-messages/bp-messages-actions.php:174
5875
+ msgid "Notice deactivated successfully."
5876
+ msgstr ""
5877
+
5878
+ #: bp-messages/bp-messages-actions.php:175
5879
+ msgid "There was a problem deactivating that notice."
5880
+ msgstr ""
5881
+
5882
+ #: bp-messages/bp-messages-actions.php:182
5883
+ msgid "Notice activated successfully."
5884
+ msgstr ""
5885
+
5886
+ #: bp-messages/bp-messages-actions.php:183
5887
+ msgid "There was a problem activating that notice."
5888
+ msgstr ""
5889
+
5890
+ #: bp-messages/bp-messages-actions.php:190
5891
+ msgid "Notice deleted successfully."
5892
+ msgstr ""
5893
+
5894
+ #: bp-messages/bp-messages-actions.php:191
5895
+ msgid "There was a problem deleting that notice."
5896
+ msgstr ""
5897
+
5898
+ #: bp-messages/bp-messages-actions.php:246
5899
+ msgid "Your reply was sent successfully"
5900
+ msgstr ""
5901
+
5902
+ #: bp-messages/bp-messages-actions.php:248
5903
+ msgid "There was a problem sending your reply. Please try again."
5904
+ msgstr ""
5905
+
5906
+ #: bp-messages/bp-messages-actions.php:293
5907
+ msgid "There was an error deleting that message."
5908
+ msgstr ""
5909
+
5910
+ #: bp-messages/bp-messages-actions.php:295
5911
+ msgid "Message deleted."
5912
+ msgstr ""
5913
+
5914
+ #: bp-messages/bp-messages-actions.php:333
5915
+ msgid "Message marked as read."
5916
+ msgstr ""
5917
+
5918
+ #: bp-messages/bp-messages-actions.php:335
5919
+ #: bp-messages/bp-messages-actions.php:376
5920
+ msgid "There was a problem marking that message."
5921
+ msgstr ""
5922
+
5923
+ #: bp-messages/bp-messages-actions.php:374
5924
+ msgid "Message marked unread."
5925
+ msgstr ""
5926
+
5927
+ #: bp-messages/bp-messages-actions.php:417
5928
+ msgid "There was a problem managing your messages."
5929
+ msgstr ""
5930
+
5931
+ #: bp-messages/bp-messages-actions.php:428
5932
+ #: bp-messages/bp-messages-actions.php:474
5933
+ msgid "Messages deleted."
5934
+ msgstr ""
5935
+
5936
+ #: bp-messages/bp-messages-actions.php:435
5937
+ msgid "Messages marked as read"
5938
+ msgstr ""
5939
+
5940
+ #: bp-messages/bp-messages-actions.php:442
5941
+ msgid "Messages marked as unread."
5942
+ msgstr ""
5943
+
5944
+ #: bp-messages/bp-messages-actions.php:472
5945
+ msgid "There was an error deleting messages."
5946
+ msgstr ""
5947
+
5948
+ #: bp-messages/bp-messages-functions.php:60
5949
+ msgid "Your message was not sent. Please use a valid sender."
5950
+ msgstr ""
5951
+
5952
+ #: bp-messages/bp-messages-functions.php:96
5953
+ msgid "Re: %s"
5954
+ msgstr ""
5955
+
5956
+ #: bp-messages/bp-messages-functions.php:105
5957
+ msgid "Message could not be sent. Please enter a recipient."
5958
+ msgstr ""
5959
+
5960
+ #: bp-messages/bp-messages-functions.php:113
5961
+ msgid "No Subject"
5962
+ msgstr ""
5963
+
5964
+ #: bp-messages/bp-messages-functions.php:165
5965
+ msgid ""
5966
+ "Message could not be sent because you have entered an invalid username. "
5967
+ "Please try again."
5968
+ msgstr ""
5969
+
5970
+ #: bp-messages/bp-messages-functions.php:185
5971
+ msgid "Message was not sent. Please try again."
5972
+ msgstr ""
5973
+
5974
+ #: bp-messages/bp-messages-notifications.php:31
5975
+ #: bp-messages/classes/class-bp-messages-component.php:176
5976
+ #: bp-messages/classes/class-bp-messages-component.php:269
5977
+ msgid "Inbox"
5978
+ msgstr ""
5979
+
5980
+ #: bp-messages/bp-messages-notifications.php:37
5981
+ msgid "You have %d new messages"
5982
+ msgstr ""
5983
+
5984
+ #: bp-messages/bp-messages-notifications.php:48
5985
+ msgid "%s sent you a new private message"
5986
+ msgstr ""
5987
+
5988
+ #: bp-messages/bp-messages-notifications.php:50
5989
+ msgid "You have %s new private message"
5990
+ msgid_plural "You have %s new private messages"
5991
+ msgstr[0] ""
5992
+ msgstr[1] ""
5993
+
5994
+ #: bp-messages/bp-messages-screens.php:125
5995
+ msgid "The conversation you tried to access is no longer available"
5996
+ msgstr ""
5997
+
5998
+ #: bp-messages/bp-messages-screens.php:140
5999
+ msgid "You do not have access to that conversation."
6000
+ msgstr ""
6001
+
6002
+ #: bp-messages/bp-messages-screens.php:151
6003
+ msgid "Messages <span class=\"%s\">%s</span>"
6004
+ msgstr ""
6005
+
6006
+ #: bp-messages/bp-messages-screens.php:227
6007
+ #: bp-messages/classes/class-bp-messages-component.php:160
6008
+ #: bp-messages/classes/class-bp-messages-component.php:268
6009
+ msgid "Messages"
6010
+ msgstr ""
6011
+
6012
+ #: bp-messages/bp-messages-screens.php:236
6013
+ msgid "A member sends you a new message"
6014
+ msgstr ""
6015
+
6016
+ #: bp-messages/bp-messages-star.php:107
6017
+ #: bp-templates/bp-legacy/buddypress-functions.php:332
6018
+ msgid "Unstar"
6019
+ msgstr ""
6020
+
6021
+ #: bp-messages/bp-messages-star.php:108
6022
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:81
6023
+ #: bp-templates/bp-legacy/buddypress-functions.php:333
6024
+ #. translators: accessibility text
6025
+ msgid "Star"
6026
+ msgstr ""
6027
+
6028
+ #: bp-messages/bp-messages-star.php:109
6029
+ #: bp-messages/classes/class-bp-messages-component.php:187
6030
+ #: bp-messages/classes/class-bp-messages-component.php:294
6031
+ #: bp-templates/bp-legacy/buddypress-functions.php:334
6032
+ msgid "Starred"
6033
+ msgstr ""
6034
+
6035
+ #: bp-messages/bp-messages-star.php:110
6036
+ #: bp-templates/bp-legacy/buddypress-functions.php:335
6037
+ msgid "Not starred"
6038
+ msgstr ""
6039
+
6040
+ #: bp-messages/bp-messages-star.php:111
6041
+ #: bp-templates/bp-legacy/buddypress-functions.php:336
6042
+ msgid "Remove all starred messages in this thread"
6043
+ msgstr ""
6044
+
6045
+ #: bp-messages/bp-messages-star.php:112
6046
+ #: bp-templates/bp-legacy/buddypress-functions.php:337
6047
+ msgid "Star the first message in this thread"
6048
+ msgstr ""
6049
+
6050
+ #: bp-messages/bp-messages-star.php:451
6051
+ msgid "%s message was successfully starred"
6052
+ msgid_plural "%s messages were successfully starred"
6053
+ msgstr[0] ""
6054
+ msgstr[1] ""
6055
+
6056
+ #: bp-messages/bp-messages-star.php:465
6057
+ msgid "%s message was successfully unstarred"
6058
+ msgid_plural "%s messages were successfully unstarred"
6059
+ msgstr[0] ""
6060
+ msgstr[1] ""
6061
+
6062
+ #: bp-messages/bp-messages-star.php:501
6063
+ msgid "Add star"
6064
+ msgstr ""
6065
+
6066
+ #: bp-messages/bp-messages-star.php:502
6067
+ msgid "Remove star"
6068
+ msgstr ""
6069
+
6070
+ #: bp-messages/bp-messages-template.php:642
6071
+ #. translators: 1: total number, 2: accessibility text: number of unread
6072
+ #. messages
6073
+ msgid "%d unread"
6074
+ msgid_plural "%d unread"
6075
+ msgstr[0] ""
6076
+ msgstr[1] ""
6077
+
6078
+ #: bp-messages/bp-messages-template.php:826
6079
+ msgid "Viewing 1 message"
6080
+ msgstr ""
6081
+
6082
+ #: bp-messages/bp-messages-template.php:828
6083
+ msgid "Viewing %1$s - %2$s of %3$s message"
6084
+ msgid_plural "Viewing %1$s - %2$s of %3$s messages"
6085
+ msgstr[0] ""
6086
+ msgstr[1] ""
6087
+
6088
+ #: bp-messages/bp-messages-template.php:856
6089
+ #. translators: accessibility text
6090
+ msgid "Search Messages"
6091
+ msgstr ""
6092
+
6093
+ #: bp-messages/bp-messages-template.php:1001
6094
+ #. translators: accessibility text
6095
+ msgid "Select:"
6096
+ msgstr ""
6097
+
6098
+ #: bp-messages/bp-messages-template.php:1004
6099
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-multiselectbox.php:192
6100
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-selectbox.php:173
6101
+ #. translators: accessibility text
6102
+ msgid "Select"
6103
+ msgstr ""
6104
+
6105
+ #: bp-messages/bp-messages-template.php:1020
6106
+ msgid "Delete Selected"
6107
+ msgstr ""
6108
+
6109
+ #: bp-messages/bp-messages-template.php:1033
6110
+ #: bp-notifications/bp-notifications-template.php:1024
6111
+ #. translators: accessibility text
6112
+ msgid "Select Bulk Action"
6113
+ msgstr ""
6114
+
6115
+ #: bp-messages/bp-messages-template.php:1036
6116
+ #: bp-notifications/bp-notifications-template.php:1027
6117
+ msgid "Bulk Actions"
6118
+ msgstr ""
6119
+
6120
+ #: bp-messages/bp-messages-template.php:1037
6121
+ #: bp-notifications/bp-notifications-template.php:1030
6122
+ msgid "Mark read"
6123
+ msgstr ""
6124
+
6125
+ #: bp-messages/bp-messages-template.php:1038
6126
+ #: bp-notifications/bp-notifications-template.php:1032
6127
+ msgid "Mark unread"
6128
+ msgstr ""
6129
+
6130
+ #: bp-messages/bp-messages-template.php:1049
6131
+ #: bp-notifications/bp-notifications-template.php:1036
6132
+ msgid "Apply"
6133
+ msgstr ""
6134
+
6135
+ #: bp-messages/bp-messages-template.php:1102
6136
+ msgid "Currently Active"
6137
+ msgstr ""
6138
+
6139
+ #: bp-messages/bp-messages-template.php:1274
6140
+ msgid "Deactivate"
6141
+ msgstr ""
6142
+
6143
+ #: bp-messages/bp-messages-template.php:1340
6144
+ msgid "Dismiss this notice"
6145
+ msgstr ""
6146
+
6147
+ #: bp-messages/bp-messages-template.php:1418
6148
+ msgid "Private Message"
6149
+ msgstr ""
6150
+
6151
+ #: bp-messages/bp-messages-template.php:1633
6152
+ msgid "%s recipients"
6153
+ msgstr ""
6154
+
6155
+ #: bp-messages/bp-messages-template.php:1708
6156
+ msgid "you"
6157
+ msgstr ""
6158
+
6159
+ #: bp-messages/bp-messages-template.php:2024
6160
+ msgid "Sent %s"
6161
+ msgstr ""
6162
+
6163
+ #: bp-messages/bp-messages-template.php:2078
6164
+ msgid "[deleted]"
6165
+ msgstr ""
6166
+
6167
+ #: bp-messages/classes/class-bp-messages-component.php:39
6168
+ msgid "Private Messages"
6169
+ msgstr ""
6170
+
6171
+ #: bp-messages/classes/class-bp-messages-component.php:119
6172
+ msgid "Search Messages..."
6173
+ msgstr ""
6174
+
6175
+ #: bp-messages/classes/class-bp-messages-component.php:152
6176
+ #: bp-messages/classes/class-bp-messages-component.php:259
6177
+ #. translators: %s: Unread message count for the current user
6178
+ msgid "Messages %s"
6179
+ msgstr ""
6180
+
6181
+ #: bp-messages/classes/class-bp-messages-component.php:198
6182
+ #: bp-messages/classes/class-bp-messages-component.php:304
6183
+ msgid "Sent"
6184
+ msgstr ""
6185
+
6186
+ #: bp-messages/classes/class-bp-messages-component.php:212
6187
+ #: bp-messages/classes/class-bp-messages-component.php:313
6188
+ msgid "Compose"
6189
+ msgstr ""
6190
+
6191
+ #: bp-messages/classes/class-bp-messages-component.php:227
6192
+ msgid "Notices"
6193
+ msgstr ""
6194
+
6195
+ #: bp-messages/classes/class-bp-messages-component.php:264
6196
+ #. translators: %s: Unread message count for the current user
6197
+ msgid "Inbox %s"
6198
+ msgstr ""
6199
+
6200
+ #: bp-messages/classes/class-bp-messages-component.php:323
6201
+ msgid "All Member Notices"
6202
+ msgstr ""
6203
+
6204
+ #: bp-messages/classes/class-bp-messages-component.php:342
6205
+ msgid "My Messages"
6206
+ msgstr ""
6207
+
6208
+ #: bp-messages/classes/class-bp-messages-sitewide-notices-widget.php:26
6209
+ msgid "(BuddyPress) Sitewide Notices"
6210
+ msgstr ""
6211
+
6212
+ #: bp-messages/classes/class-bp-messages-sitewide-notices-widget.php:29
6213
+ msgid "Display Sitewide Notices posted by the site administrator"
6214
+ msgstr ""
6215
+
6216
+ #: bp-messages/classes/class-bp-messages-thread.php:852
6217
+ msgid "%s Recipients"
6218
+ msgstr ""
6219
+
6220
+ #: bp-notifications/bp-notifications-actions.php:43
6221
+ msgid "Notification successfully marked read."
6222
+ msgstr ""
6223
+
6224
+ #: bp-notifications/bp-notifications-actions.php:45
6225
+ #: bp-notifications/bp-notifications-actions.php:81
6226
+ msgid "There was a problem marking that notification."
6227
+ msgstr ""
6228
+
6229
+ #: bp-notifications/bp-notifications-actions.php:79
6230
+ msgid "Notification successfully marked unread."
6231
+ msgstr ""
6232
+
6233
+ #: bp-notifications/bp-notifications-actions.php:115
6234
+ msgid "Notification successfully deleted."
6235
+ msgstr ""
6236
+
6237
+ #: bp-notifications/bp-notifications-actions.php:117
6238
+ msgid "There was a problem deleting that notification."
6239
+ msgstr ""
6240
+
6241
+ #: bp-notifications/bp-notifications-actions.php:151
6242
+ msgid "There was a problem managing your notifications."
6243
+ msgstr ""
6244
+
6245
+ #: bp-notifications/bp-notifications-actions.php:163
6246
+ msgid "Notifications deleted."
6247
+ msgstr ""
6248
+
6249
+ #: bp-notifications/bp-notifications-actions.php:170
6250
+ msgid "Notifications marked as read"
6251
+ msgstr ""
6252
+
6253
+ #: bp-notifications/bp-notifications-actions.php:177
6254
+ msgid "Notifications marked as unread."
6255
+ msgstr ""
6256
+
6257
+ #: bp-notifications/bp-notifications-adminbar.php:56
6258
+ msgid "No new notifications"
6259
+ msgstr ""
6260
+
6261
+ #: bp-notifications/bp-notifications-template.php:474
6262
+ msgid "Date not found"
6263
+ msgstr ""
6264
+
6265
+ #: bp-notifications/bp-notifications-template.php:558
6266
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:142
6267
+ msgid "Read"
6268
+ msgstr ""
6269
+
6270
+ #: bp-notifications/bp-notifications-template.php:650
6271
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:144
6272
+ msgid "Unread"
6273
+ msgstr ""
6274
+
6275
+ #: bp-notifications/bp-notifications-template.php:937
6276
+ msgid "Viewing 1 notification"
6277
+ msgstr ""
6278
+
6279
+ #: bp-notifications/bp-notifications-template.php:939
6280
+ msgid "Viewing %1$s - %2$s of %3$s notification"
6281
+ msgid_plural "Viewing %1$s - %2$s of %3$s notifications"
6282
+ msgstr[0] ""
6283
+ msgstr[1] ""
6284
+
6285
+ #: bp-notifications/bp-notifications-template.php:1003
6286
+ msgid "Newest First"
6287
+ msgstr ""
6288
+
6289
+ #: bp-notifications/bp-notifications-template.php:1004
6290
+ msgid "Oldest First"
6291
+ msgstr ""
6292
+
6293
+ #: bp-notifications/bp-notifications-template.php:1008
6294
+ msgid "Go"
6295
+ msgstr ""
6296
+
6297
+ #: bp-notifications/classes/class-bp-notifications-component.php:91
6298
+ msgid "Search Notifications..."
6299
+ msgstr ""
6300
+
6301
+ #: bp-settings/bp-settings-actions.php:193
6302
+ msgid "That email address is invalid. Check the formatting and try again."
6303
+ msgstr ""
6304
+
6305
+ #: bp-settings/bp-settings-actions.php:196
6306
+ msgid "That email address is currently unavailable for use."
6307
+ msgstr ""
6308
+
6309
+ #: bp-settings/bp-settings-actions.php:199
6310
+ msgid "That email address is already taken."
6311
+ msgstr ""
6312
+
6313
+ #: bp-settings/bp-settings-actions.php:202
6314
+ msgid "Email address cannot be empty."
6315
+ msgstr ""
6316
+
6317
+ #: bp-settings/bp-settings-actions.php:212
6318
+ msgid "Your current password is invalid."
6319
+ msgstr ""
6320
+
6321
+ #: bp-settings/bp-settings-actions.php:215
6322
+ msgid "The new password fields did not match."
6323
+ msgstr ""
6324
+
6325
+ #: bp-settings/bp-settings-actions.php:218
6326
+ msgid "One of the password fields was empty."
6327
+ msgstr ""
6328
+
6329
+ #: bp-settings/bp-settings-actions.php:221
6330
+ msgid "The new password must be different from the current password."
6331
+ msgstr ""
6332
+
6333
+ #: bp-settings/bp-settings-actions.php:230
6334
+ msgid "Your settings have been saved."
6335
+ msgstr ""
6336
+
6337
+ #: bp-settings/bp-settings-actions.php:236
6338
+ msgid "No changes were made to your account."
6339
+ msgstr ""
6340
+
6341
+ #: bp-settings/bp-settings-actions.php:238
6342
+ msgid "No changes were made to this account."
6343
+ msgstr ""
6344
+
6345
+ #: bp-settings/bp-settings-actions.php:288
6346
+ msgid "Your notification settings have been saved."
6347
+ msgstr ""
6348
+
6349
+ #: bp-settings/bp-settings-actions.php:290
6350
+ msgid "This user's notification settings have been saved."
6351
+ msgstr ""
6352
+
6353
+ #: bp-settings/bp-settings-actions.php:418
6354
+ msgid "%s was successfully deleted."
6355
+ msgstr ""
6356
+
6357
+ #: bp-settings/bp-settings-actions.php:464
6358
+ msgid "You have successfully verified your new email address."
6359
+ msgstr ""
6360
+
6361
+ #: bp-settings/bp-settings-actions.php:467
6362
+ msgid "There was a problem verifying your new email address. Please try again."
6363
+ msgstr ""
6364
+
6365
+ #: bp-settings/bp-settings-actions.php:479
6366
+ msgid "You have successfully dismissed your pending email change."
6367
+ msgstr ""
6368
+
6369
+ #: bp-settings/bp-settings-template.php:89
6370
+ msgid "There is a pending change of your email address to %s."
6371
+ msgstr ""
6372
+
6373
+ #: bp-settings/bp-settings-template.php:94
6374
+ msgid ""
6375
+ "Check your email (%1$s) for the verification link, or <a "
6376
+ "href=\"%2$s\">cancel the pending change</a>."
6377
+ msgstr ""
6378
+
6379
+ #: bp-settings/classes/class-bp-settings-component.php:111
6380
+ #: bp-settings/classes/class-bp-settings-component.php:188
6381
+ msgid "General"
6382
+ msgstr ""
6383
+
6384
+ #: bp-settings/classes/class-bp-settings-component.php:135
6385
+ msgid "Capabilities"
6386
+ msgstr ""
6387
+
6388
+ #: bp-templates/bp-legacy/buddypress/activity/activity-loop.php:33
6389
+ msgid "Load More"
6390
+ msgstr ""
6391
+
6392
+ #: bp-templates/bp-legacy/buddypress/activity/activity-loop.php:47
6393
+ msgid "Sorry, there was no activity found. Please try a different filter."
6394
+ msgstr ""
6395
+
6396
+ #: bp-templates/bp-legacy/buddypress/activity/comment.php:29
6397
+ #. translators: 1: user profile link, 2: user name, 3: activity permalink, 4:
6398
+ #. ISO8601 timestamp, 5: activity relative timestamp
6399
+ msgid ""
6400
+ "<a href=\"%1$s\">%2$s</a> replied <a href=\"%3$s\" "
6401
+ "class=\"activity-time-since\"><span class=\"time-since\" "
6402
+ "data-livestamp=\"%4$s\">%5$s</span></a>"
6403
+ msgstr ""
6404
+
6405
+ #: bp-templates/bp-legacy/buddypress/activity/entry.php:59
6406
+ msgid "View Conversation"
6407
+ msgstr ""
6408
+
6409
+ #: bp-templates/bp-legacy/buddypress/activity/entry.php:67
6410
+ msgid "Comment %s"
6411
+ msgstr ""
6412
+
6413
+ #: bp-templates/bp-legacy/buddypress/activity/entry.php:75
6414
+ #: bp-templates/bp-legacy/buddypress-functions.php:297
6415
+ #: bp-templates/bp-legacy/buddypress-functions.php:1223
6416
+ #: bp-templates/bp-legacy/buddypress-functions.php:1251
6417
+ msgid "Favorite"
6418
+ msgstr ""
6419
+
6420
+ #: bp-templates/bp-legacy/buddypress/activity/entry.php:79
6421
+ #: bp-templates/bp-legacy/buddypress-functions.php:300
6422
+ #: bp-templates/bp-legacy/buddypress-functions.php:1221
6423
+ #: bp-templates/bp-legacy/buddypress-functions.php:1253
6424
+ msgid "Remove Favorite"
6425
+ msgstr ""
6426
+
6427
+ #: bp-templates/bp-legacy/buddypress/activity/entry.php:125
6428
+ #. translators: accessibility text
6429
+ msgid "Comment"
6430
+ msgstr ""
6431
+
6432
+ #: bp-templates/bp-legacy/buddypress/activity/entry.php:129
6433
+ msgid "Post"
6434
+ msgstr ""
6435
+
6436
+ #: bp-templates/bp-legacy/buddypress/activity/index.php:47
6437
+ msgid "Sitewide activities navigation"
6438
+ msgstr ""
6439
+
6440
+ #: bp-templates/bp-legacy/buddypress/activity/index.php:58
6441
+ #: bp-templates/bp-legacy/buddypress/members/index.php:61
6442
+ msgid "All Members %s"
6443
+ msgstr ""
6444
+
6445
+ #: bp-templates/bp-legacy/buddypress/activity/index.php:75
6446
+ #: bp-templates/bp-legacy/buddypress/members/index.php:64
6447
+ msgid "My Friends %s"
6448
+ msgstr ""
6449
+
6450
+ #: bp-templates/bp-legacy/buddypress/activity/index.php:94
6451
+ #: bp-templates/bp-legacy/buddypress/groups/index.php:64
6452
+ msgid "My Groups %s"
6453
+ msgstr ""
6454
+
6455
+ #: bp-templates/bp-legacy/buddypress/activity/index.php:111
6456
+ msgid "My Favorites %s"
6457
+ msgstr ""
6458
+
6459
+ #: bp-templates/bp-legacy/buddypress/activity/index.php:126
6460
+ msgid "Mentions"
6461
+ msgstr ""
6462
+
6463
+ #: bp-templates/bp-legacy/buddypress/activity/index.php:143
6464
+ msgid "Activity secondary navigation"
6465
+ msgstr ""
6466
+
6467
+ #: bp-templates/bp-legacy/buddypress/activity/index.php:145
6468
+ #: bp-templates/bp-legacy/buddypress/groups/single/activity.php:12
6469
+ msgid "RSS Feed"
6470
+ msgstr ""
6471
+
6472
+ #: bp-templates/bp-legacy/buddypress/activity/index.php:145
6473
+ #: bp-templates/bp-legacy/buddypress/groups/single/activity.php:12
6474
+ msgid "RSS"
6475
+ msgstr ""
6476
+
6477
+ #: bp-templates/bp-legacy/buddypress/activity/index.php:157
6478
+ #: bp-templates/bp-legacy/buddypress/groups/single/activity.php:24
6479
+ #: bp-templates/bp-legacy/buddypress/members/single/activity.php:17
6480
+ msgid "Show:"
6481
+ msgstr ""
6482
+
6483
+ #: bp-templates/bp-legacy/buddypress/activity/index.php:159
6484
+ #: bp-templates/bp-legacy/buddypress/groups/single/activity.php:26
6485
+ #: bp-templates/bp-legacy/buddypress/members/single/activity.php:19
6486
+ msgid "&mdash; Everything &mdash;"
6487
+ msgstr ""
6488
+
6489
+ #: bp-templates/bp-legacy/buddypress/activity/post-form.php:29
6490
+ msgid "What's new in %s, %s?"
6491
+ msgstr ""
6492
+
6493
+ #: bp-templates/bp-legacy/buddypress/activity/post-form.php:31
6494
+ msgid "What's new, %s?"
6495
+ msgstr ""
6496
+
6497
+ #: bp-templates/bp-legacy/buddypress/activity/post-form.php:38
6498
+ #. translators: accessibility text
6499
+ msgid "Post what's new"
6500
+ msgstr ""
6501
+
6502
+ #: bp-templates/bp-legacy/buddypress/activity/post-form.php:47
6503
+ msgid "Post Update"
6504
+ msgstr ""
6505
+
6506
+ #: bp-templates/bp-legacy/buddypress/activity/post-form.php:54
6507
+ #: bp-templates/bp-legacy/buddypress/activity/post-form.php:58
6508
+ #. translators: accessibility text
6509
+ msgid "Post in"
6510
+ msgstr ""
6511
+
6512
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/camera.php:17
6513
+ msgid "Your browser does not support this feature."
6514
+ msgstr ""
6515
+
6516
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/camera.php:24
6517
+ msgid "Capture"
6518
+ msgstr ""
6519
+
6520
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/camera.php:25
6521
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/capabilities.php:29
6522
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1151
6523
+ #: bp-xprofile/classes/class-bp-xprofile-group.php:723
6524
+ msgid "Save"
6525
+ msgstr ""
6526
+
6527
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/crop.php:23
6528
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:285
6529
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-avatar.php:57
6530
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php:60
6531
+ msgid "Crop Image"
6532
+ msgstr ""
6533
+
6534
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/index.php:37
6535
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php:44
6536
+ msgid ""
6537
+ "If you'd like to delete your current profile photo but not upload a new "
6538
+ "one, please use the delete profile photo button."
6539
+ msgstr ""
6540
+
6541
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/index.php:38
6542
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php:45
6543
+ msgid "Delete My Profile Photo"
6544
+ msgstr ""
6545
+
6546
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/index.php:40
6547
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-avatar.php:29
6548
+ msgid ""
6549
+ "If you'd like to remove the existing group profile photo but not upload a "
6550
+ "new one, please use the delete group profile photo button."
6551
+ msgstr ""
6552
+
6553
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/index.php:41
6554
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-avatar.php:31
6555
+ msgid "Delete Group Profile Photo"
6556
+ msgstr ""
6557
+
6558
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/cover-images/index.php:26
6559
+ msgid ""
6560
+ "If you'd like to delete your current cover image but not upload a new one, "
6561
+ "please use the delete Cover Image button."
6562
+ msgstr ""
6563
+
6564
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/cover-images/index.php:27
6565
+ msgid "Delete My Cover Image"
6566
+ msgstr ""
6567
+
6568
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/cover-images/index.php:29
6569
+ msgid ""
6570
+ "If you'd like to remove the existing group cover image but not upload a new "
6571
+ "one, please use the delete group cover image button."
6572
+ msgstr ""
6573
+
6574
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/cover-images/index.php:30
6575
+ msgid "Delete Group Cover Image"
6576
+ msgstr ""
6577
+
6578
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/uploader.php:16
6579
+ msgid "The web browser on your device cannot be used to upload files."
6580
+ msgstr ""
6581
+
6582
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/uploader.php:18
6583
+ msgid "Upload Limit Exceeded"
6584
+ msgstr ""
6585
+
6586
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/uploader.php:23
6587
+ msgid "Drop your file here"
6588
+ msgstr ""
6589
+
6590
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/uploader.php:27
6591
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/uploader.php:28
6592
+ #. translators: accessibility text
6593
+ msgid "Select your File"
6594
+ msgstr ""
6595
+
6596
+ #: bp-templates/bp-legacy/buddypress/blogs/blogs-loop.php:120
6597
+ msgid "Sorry, there were no sites found."
6598
+ msgstr ""
6599
+
6600
+ #: bp-templates/bp-legacy/buddypress/blogs/create.php:40
6601
+ msgid "Site registration is currently disabled"
6602
+ msgstr ""
6603
+
6604
+ #: bp-templates/bp-legacy/buddypress/blogs/index.php:60
6605
+ msgid "Sites directory main navigation"
6606
+ msgstr ""
6607
+
6608
+ #: bp-templates/bp-legacy/buddypress/blogs/index.php:62
6609
+ msgid "All Sites %s"
6610
+ msgstr ""
6611
+
6612
+ #: bp-templates/bp-legacy/buddypress/blogs/index.php:66
6613
+ msgid "My Sites %s"
6614
+ msgstr ""
6615
+
6616
+ #: bp-templates/bp-legacy/buddypress/blogs/index.php:82
6617
+ msgid "Sites directory secondary navigation"
6618
+ msgstr ""
6619
+
6620
+ #: bp-templates/bp-legacy/buddypress/blogs/index.php:98
6621
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:96
6622
+ #: bp-templates/bp-legacy/buddypress/groups/index.php:95
6623
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:52
6624
+ #: bp-templates/bp-legacy/buddypress/members/index.php:93
6625
+ #: bp-templates/bp-legacy/buddypress/members/single/blogs.php:20
6626
+ #: bp-templates/bp-legacy/buddypress/members/single/forums.php:19
6627
+ #: bp-templates/bp-legacy/buddypress/members/single/friends.php:21
6628
+ #: bp-templates/bp-legacy/buddypress/members/single/groups.php:21
6629
+ msgid "Last Active"
6630
+ msgstr ""
6631
+
6632
+ #: bp-templates/bp-legacy/buddypress/blogs/index.php:118
6633
+ #. translators: accessibility text
6634
+ msgid "Sites directory"
6635
+ msgstr ""
6636
+
6637
+ #: bp-templates/bp-legacy/buddypress/forums/forums-loop.php:52
6638
+ msgid "Topic"
6639
+ msgstr ""
6640
+
6641
+ #: bp-templates/bp-legacy/buddypress/forums/forums-loop.php:54
6642
+ msgid "Freshness"
6643
+ msgstr ""
6644
+
6645
+ #: bp-templates/bp-legacy/buddypress/forums/forums-loop.php:81
6646
+ #. translators: "started by [poster] in [forum]"
6647
+ msgid "Started by %1$s"
6648
+ msgstr ""
6649
+
6650
+ #: bp-templates/bp-legacy/buddypress/forums/forums-loop.php:92
6651
+ #. translators: "started by [poster] in [forum]"
6652
+ msgid "in %1$s"
6653
+ msgstr ""
6654
+
6655
+ #: bp-templates/bp-legacy/buddypress/forums/forums-loop.php:163
6656
+ msgid "Sorry, there were no forum topics found."
6657
+ msgstr ""
6658
+
6659
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:58
6660
+ msgid "Forums directory main navigation"
6661
+ msgstr ""
6662
+
6663
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:60
6664
+ msgid "All Topics %s"
6665
+ msgstr ""
6666
+
6667
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:64
6668
+ msgid "My Topics %s"
6669
+ msgstr ""
6670
+
6671
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:80
6672
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php:20
6673
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php:17
6674
+ msgid "Forums secondary navigation"
6675
+ msgstr ""
6676
+
6677
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:97
6678
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:53
6679
+ #: bp-templates/bp-legacy/buddypress/members/single/forums.php:20
6680
+ msgid "Most Posts"
6681
+ msgstr ""
6682
+
6683
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:98
6684
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:54
6685
+ #: bp-templates/bp-legacy/buddypress/members/single/forums.php:21
6686
+ msgid "Unreplied"
6687
+ msgstr ""
6688
+
6689
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:169
6690
+ msgid "Create New Topic:"
6691
+ msgstr ""
6692
+
6693
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:182
6694
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php:77
6695
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:109
6696
+ msgid "Content:"
6697
+ msgstr ""
6698
+
6699
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:185
6700
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php:80
6701
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:112
6702
+ msgid "Tags (comma separated):"
6703
+ msgstr ""
6704
+
6705
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:188
6706
+ msgid "Post In Group Forum:"
6707
+ msgstr ""
6708
+
6709
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:215
6710
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:125
6711
+ msgid "Post Topic"
6712
+ msgstr ""
6713
+
6714
+ #: bp-templates/bp-legacy/buddypress/forums/index.php:227
6715
+ msgid ""
6716
+ "You are not a member of any groups so you don't have any group forums you "
6717
+ "can post in. To start posting, first find a group that matches the topic "
6718
+ "subject you'd like to start. If this group does not exist, why not <a "
6719
+ "href='%s'>create a new group</a>? Once you have joined or created the group "
6720
+ "you can post your topic in that group's forum."
6721
+ msgstr ""
6722
+
6723
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:61
6724
+ #. translators: accessibility text
6725
+ msgid "Group Details"
6726
+ msgstr ""
6727
+
6728
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:74
6729
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/edit-details.php:22
6730
+ msgid "Group Name (required)"
6731
+ msgstr ""
6732
+
6733
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:79
6734
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/edit-details.php:25
6735
+ msgid "Group Description (required)"
6736
+ msgstr ""
6737
+
6738
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:116
6739
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:38
6740
+ msgid "Privacy Options"
6741
+ msgstr ""
6742
+
6743
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:120
6744
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:42
6745
+ msgid "This is a public group"
6746
+ msgstr ""
6747
+
6748
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:123
6749
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:45
6750
+ msgid "Any site member can join this group."
6751
+ msgstr ""
6752
+
6753
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:124
6754
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:132
6755
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:46
6756
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:54
6757
+ msgid "This group will be listed in the groups directory and in search results."
6758
+ msgstr ""
6759
+
6760
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:125
6761
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:47
6762
+ msgid "Group content and activity will be visible to any site member."
6763
+ msgstr ""
6764
+
6765
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:128
6766
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:50
6767
+ msgid "This is a private group"
6768
+ msgstr ""
6769
+
6770
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:131
6771
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:53
6772
+ msgid "Only users who request membership and are accepted can join the group."
6773
+ msgstr ""
6774
+
6775
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:133
6776
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:141
6777
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:55
6778
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:63
6779
+ msgid "Group content and activity will only be visible to members of the group."
6780
+ msgstr ""
6781
+
6782
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:136
6783
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:58
6784
+ msgid "This is a hidden group"
6785
+ msgstr ""
6786
+
6787
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:139
6788
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:61
6789
+ msgid "Only users who are invited can join the group."
6790
+ msgstr ""
6791
+
6792
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:140
6793
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:62
6794
+ msgid "This group will not be listed in the groups directory or search results."
6795
+ msgstr ""
6796
+
6797
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:152
6798
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:74
6799
+ msgid "Group Types"
6800
+ msgstr ""
6801
+
6802
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:154
6803
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:76
6804
+ msgid "Select the types this group should be a part of."
6805
+ msgstr ""
6806
+
6807
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:162
6808
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:84
6809
+ #. translators: Group type description shown when creating a group.
6810
+ msgid "&ndash; %s"
6811
+ msgstr ""
6812
+
6813
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:176
6814
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:98
6815
+ msgid "Group Invitations"
6816
+ msgstr ""
6817
+
6818
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:178
6819
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:100
6820
+ msgid "Which members of this group are allowed to invite others?"
6821
+ msgstr ""
6822
+
6823
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:198
6824
+ msgid "Should this group have a forum?"
6825
+ msgstr ""
6826
+
6827
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:205
6828
+ msgid ""
6829
+ "<strong>Attention Site Admin:</strong> Group forums require the <a "
6830
+ "href=\"%s\">correct setup and configuration</a> of a bbPress installation."
6831
+ msgstr ""
6832
+
6833
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:229
6834
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-avatar.php:11
6835
+ #. translators: accessibility text
6836
+ msgid "Group Avatar"
6837
+ msgstr ""
6838
+
6839
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:250
6840
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-avatar.php:15
6841
+ msgid ""
6842
+ "Upload an image to use as a profile photo for this group. The image will be "
6843
+ "shown on the main group page, and in search results."
6844
+ msgstr ""
6845
+
6846
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:255
6847
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-avatar.php:20
6848
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php:36
6849
+ #. translators: accessibility text
6850
+ msgid "Select an image"
6851
+ msgstr ""
6852
+
6853
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:258
6854
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-avatar.php:23
6855
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php:39
6856
+ msgid "Upload Image"
6857
+ msgstr ""
6858
+
6859
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:262
6860
+ msgid ""
6861
+ "To skip the group profile photo upload process, hit the \"Next Step\" "
6862
+ "button."
6863
+ msgstr ""
6864
+
6865
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:277
6866
+ msgid "Crop Group Profile Photo"
6867
+ msgstr ""
6868
+
6869
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:279
6870
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-avatar.php:51
6871
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php:54
6872
+ msgid "Profile photo to crop"
6873
+ msgstr ""
6874
+
6875
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:282
6876
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-avatar.php:54
6877
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php:57
6878
+ msgid "Profile photo preview"
6879
+ msgstr ""
6880
+
6881
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:328
6882
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-cover-image.php:22
6883
+ msgid "The Cover Image will be used to customize the header of your group."
6884
+ msgstr ""
6885
+
6886
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:350
6887
+ #. translators: accessibility text
6888
+ msgid "Group Invites"
6889
+ msgstr ""
6890
+
6891
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:379
6892
+ msgid "Select people to invite from your friends list."
6893
+ msgstr ""
6894
+
6895
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:397
6896
+ #: bp-templates/bp-legacy/buddypress/groups/single/invites-loop.php:74
6897
+ #: bp-templates/bp-legacy/buddypress-functions.php:1353
6898
+ msgid "Remove Invite"
6899
+ msgstr ""
6900
+
6901
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:414
6902
+ msgid ""
6903
+ "Once you have built up friend connections you will be able to invite others "
6904
+ "to your group."
6905
+ msgstr ""
6906
+
6907
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:459
6908
+ msgid "Back to Previous Step"
6909
+ msgstr ""
6910
+
6911
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:466
6912
+ msgid "Next Step"
6913
+ msgstr ""
6914
+
6915
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:473
6916
+ msgid "Create Group and Continue"
6917
+ msgstr ""
6918
+
6919
+ #: bp-templates/bp-legacy/buddypress/groups/create.php:480
6920
+ msgid "Finish"
6921
+ msgstr ""
6922
+
6923
+ #: bp-templates/bp-legacy/buddypress/groups/groups-loop.php:135
6924
+ msgid "There were no groups found."
6925
+ msgstr ""
6926
+
6927
+ #: bp-templates/bp-legacy/buddypress/groups/index.php:59
6928
+ msgid "Groups directory main navigation"
6929
+ msgstr ""
6930
+
6931
+ #: bp-templates/bp-legacy/buddypress/groups/index.php:61
6932
+ msgid "All Groups %s"
6933
+ msgstr ""
6934
+
6935
+ #: bp-templates/bp-legacy/buddypress/groups/index.php:79
6936
+ msgid "Groups directory secondary navigation"
6937
+ msgstr ""
6938
+
6939
+ #: bp-templates/bp-legacy/buddypress/groups/index.php:96
6940
+ #: bp-templates/bp-legacy/buddypress/members/single/groups.php:22
6941
+ msgid "Most Members"
6942
+ msgstr ""
6943
+
6944
+ #: bp-templates/bp-legacy/buddypress/groups/index.php:97
6945
+ #: bp-templates/bp-legacy/buddypress/members/single/groups.php:23
6946
+ msgid "Newly Created"
6947
+ msgstr ""
6948
+
6949
+ #: bp-templates/bp-legacy/buddypress/groups/index.php:115
6950
+ #. translators: accessibility text
6951
+ msgid "Groups directory"
6952
+ msgstr ""
6953
+
6954
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/delete-group.php:23
6955
+ msgid ""
6956
+ "WARNING: Deleting this group will completely remove ALL content associated "
6957
+ "with it. There is no way back, please be careful with this option."
6958
+ msgstr ""
6959
+
6960
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/delete-group.php:26
6961
+ msgid "I understand the consequences of deleting this group."
6962
+ msgstr ""
6963
+
6964
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/edit-details.php:11
6965
+ msgid "Manage Group Details"
6966
+ msgstr ""
6967
+
6968
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/edit-details.php:39
6969
+ msgid "Notify group members of these changes via email"
6970
+ msgstr ""
6971
+
6972
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-avatar.php:49
6973
+ msgid "Crop Profile Photo"
6974
+ msgstr ""
6975
+
6976
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:11
6977
+ msgid "Manage Group Settings"
6978
+ msgstr ""
6979
+
6980
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:111
6981
+ msgid "No group administrators were found."
6982
+ msgstr ""
6983
+
6984
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:206
6985
+ msgid "No group moderators were found."
6986
+ msgstr ""
6987
+
6988
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:247
6989
+ msgid "(banned)"
6990
+ msgstr ""
6991
+
6992
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:270
6993
+ msgid "Remove Ban"
6994
+ msgstr ""
6995
+
6996
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:274
6997
+ msgid "Kick &amp; Ban"
6998
+ msgstr ""
6999
+
7000
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:275
7001
+ msgid "Promote to Mod"
7002
+ msgstr ""
7003
+
7004
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:280
7005
+ msgid "Remove from group"
7006
+ msgstr ""
7007
+
7008
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:317
7009
+ msgid "No group members were found."
7010
+ msgstr ""
7011
+
7012
+ #: bp-templates/bp-legacy/buddypress/groups/single/admin/membership-requests.php:11
7013
+ msgid "Manage Membership Requests"
7014
+ msgstr ""
7015
+
7016
+ #: bp-templates/bp-legacy/buddypress/groups/single/cover-image-header.php:74
7017
+ #: bp-templates/bp-legacy/buddypress/groups/single/group-header.php:22
7018
+ msgid "Group Admins"
7019
+ msgstr ""
7020
+
7021
+ #: bp-templates/bp-legacy/buddypress/groups/single/cover-image-header.php:94
7022
+ #: bp-templates/bp-legacy/buddypress/groups/single/group-header.php:42
7023
+ msgid "Group Mods"
7024
+ msgstr ""
7025
+
7026
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php:29
7027
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php:30
7028
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:38
7029
+ msgid "Forum Directory"
7030
+ msgstr ""
7031
+
7032
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php:38
7033
+ msgid "Edit:"
7034
+ msgstr ""
7035
+
7036
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php:113
7037
+ #. translators: accessibility text
7038
+ msgid "Edit text"
7039
+ msgstr ""
7040
+
7041
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php:139
7042
+ msgid "This topic does not exist."
7043
+ msgstr ""
7044
+
7045
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php:22
7046
+ msgid "New Reply"
7047
+ msgstr ""
7048
+
7049
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php:45
7050
+ msgid "Topic tags:"
7051
+ msgstr ""
7052
+
7053
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php:108
7054
+ msgid "%1$s said %2$s:"
7055
+ msgstr ""
7056
+
7057
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php:129
7058
+ msgid "Permanent link to this post"
7059
+ msgstr ""
7060
+
7061
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php:160
7062
+ msgid "There are no posts for this topic."
7063
+ msgstr ""
7064
+
7065
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php:175
7066
+ msgid "You will auto join this group when you reply to this topic."
7067
+ msgstr ""
7068
+
7069
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php:187
7070
+ msgid "Add a reply:"
7071
+ msgstr ""
7072
+
7073
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php:196
7074
+ msgid "Post Reply"
7075
+ msgstr ""
7076
+
7077
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php:214
7078
+ msgid "This topic is closed, replies are no longer accepted."
7079
+ msgstr ""
7080
+
7081
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:100
7082
+ msgid "You will auto join this group when you start a new topic."
7083
+ msgstr ""
7084
+
7085
+ #: bp-templates/bp-legacy/buddypress/groups/single/forum.php:104
7086
+ msgid "Post a New Topic:"
7087
+ msgstr ""
7088
+
7089
+ #: bp-templates/bp-legacy/buddypress/groups/single/home.php:39
7090
+ msgid "Group primary navigation"
7091
+ msgstr ""
7092
+
7093
+ #: bp-templates/bp-legacy/buddypress/groups/single/invites-loop.php:110
7094
+ msgid "Select friends to invite."
7095
+ msgstr ""
7096
+
7097
+ #: bp-templates/bp-legacy/buddypress/groups/single/members.php:131
7098
+ msgid "No members were found."
7099
+ msgstr ""
7100
+
7101
+ #: bp-templates/bp-legacy/buddypress/groups/single/request-membership.php:19
7102
+ #. translators: accessibility text
7103
+ msgid "Request form"
7104
+ msgstr ""
7105
+
7106
+ #: bp-templates/bp-legacy/buddypress/groups/single/request-membership.php:22
7107
+ msgid "You are requesting to become a member of the group '%s'."
7108
+ msgstr ""
7109
+
7110
+ #: bp-templates/bp-legacy/buddypress/groups/single/request-membership.php:25
7111
+ msgid "Comments (optional)"
7112
+ msgstr ""
7113
+
7114
+ #: bp-templates/bp-legacy/buddypress/groups/single/request-membership.php:37
7115
+ msgid "Send Request"
7116
+ msgstr ""
7117
+
7118
+ #: bp-templates/bp-legacy/buddypress/groups/single/requests-loop.php:57
7119
+ #: bp-templates/bp-legacy/buddypress/members/single/friends/requests.php:62
7120
+ #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:50
7121
+ msgid "Accept"
7122
+ msgstr ""
7123
+
7124
+ #: bp-templates/bp-legacy/buddypress/groups/single/requests-loop.php:59
7125
+ #: bp-templates/bp-legacy/buddypress/members/single/friends/requests.php:63
7126
+ #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:51
7127
+ msgid "Reject"
7128
+ msgstr ""
7129
+
7130
+ #: bp-templates/bp-legacy/buddypress/groups/single/requests-loop.php:95
7131
+ msgid "There are no pending membership requests."
7132
+ msgstr ""
7133
+
7134
+ #: bp-templates/bp-legacy/buddypress/groups/single/send-invites.php:20
7135
+ msgid "Send invites"
7136
+ msgstr ""
7137
+
7138
+ #: bp-templates/bp-legacy/buddypress/groups/single/send-invites.php:30
7139
+ msgid "Send Invites"
7140
+ msgstr ""
7141
+
7142
+ #: bp-templates/bp-legacy/buddypress/groups/single/send-invites.php:45
7143
+ msgid "Group invitations can only be extended to friends."
7144
+ msgstr ""
7145
+
7146
+ #: bp-templates/bp-legacy/buddypress/groups/single/send-invites.php:46
7147
+ msgid ""
7148
+ "Once you've made some friendships, you'll be able to invite those members "
7149
+ "to this group."
7150
+ msgstr ""
7151
+
7152
+ #: bp-templates/bp-legacy/buddypress/groups/single/send-invites.php:54
7153
+ msgid "All of your friends already belong to this group."
7154
+ msgstr ""
7155
+
7156
+ #: bp-templates/bp-legacy/buddypress/members/activate.php:44
7157
+ msgid ""
7158
+ "Your account was activated successfully! Your account details have been "
7159
+ "sent to you in a separate email."
7160
+ msgstr ""
7161
+
7162
+ #: bp-templates/bp-legacy/buddypress/members/activate.php:46
7163
+ msgid ""
7164
+ "Your account was activated successfully! You can now <a href=\"%s\">log "
7165
+ "in</a> with the username and password you provided when you signed up."
7166
+ msgstr ""
7167
+
7168
+ #: bp-templates/bp-legacy/buddypress/members/activate.php:51
7169
+ msgid "Please provide a valid activation key."
7170
+ msgstr ""
7171
+
7172
+ #: bp-templates/bp-legacy/buddypress/members/activate.php:55
7173
+ msgid "Activation Key:"
7174
+ msgstr ""
7175
+
7176
+ #: bp-templates/bp-legacy/buddypress/members/index.php:59
7177
+ msgid "Members directory main navigation"
7178
+ msgstr ""
7179
+
7180
+ #: bp-templates/bp-legacy/buddypress/members/index.php:79
7181
+ msgid "Members directory secondary navigation"
7182
+ msgstr ""
7183
+
7184
+ #: bp-templates/bp-legacy/buddypress/members/index.php:94
7185
+ #: bp-templates/bp-legacy/buddypress/members/single/friends.php:22
7186
+ msgid "Newest Registered"
7187
+ msgstr ""
7188
+
7189
+ #: bp-templates/bp-legacy/buddypress/members/index.php:115
7190
+ #. translators: accessibility text
7191
+ msgid "Members directory"
7192
+ msgstr ""
7193
+
7194
+ #: bp-templates/bp-legacy/buddypress/members/register.php:45
7195
+ msgid "User registration is currently not allowed."
7196
+ msgstr ""
7197
+
7198
+ #: bp-templates/bp-legacy/buddypress/members/register.php:67
7199
+ msgid ""
7200
+ "Registering for this site is easy. Just fill in the fields below, and we'll "
7201
+ "get a new account set up for you in no time."
7202
+ msgstr ""
7203
+
7204
+ #: bp-templates/bp-legacy/buddypress/members/register.php:82
7205
+ msgid "Account Details"
7206
+ msgstr ""
7207
+
7208
+ #: bp-templates/bp-legacy/buddypress/members/register.php:84
7209
+ #: bp-templates/bp-legacy/buddypress/members/register.php:95
7210
+ #: bp-templates/bp-legacy/buddypress/members/register.php:106
7211
+ #: bp-templates/bp-legacy/buddypress/members/register.php:118
7212
+ #: bp-templates/bp-legacy/buddypress/members/register.php:279
7213
+ #: bp-templates/bp-legacy/buddypress/members/register.php:295
7214
+ #: bp-xprofile/bp-xprofile-template.php:1458
7215
+ msgid "(required)"
7216
+ msgstr ""
7217
+
7218
+ #: bp-templates/bp-legacy/buddypress/members/register.php:95
7219
+ msgid "Email Address"
7220
+ msgstr ""
7221
+
7222
+ #: bp-templates/bp-legacy/buddypress/members/register.php:106
7223
+ msgid "Choose a Password"
7224
+ msgstr ""
7225
+
7226
+ #: bp-templates/bp-legacy/buddypress/members/register.php:118
7227
+ msgid "Confirm Password"
7228
+ msgstr ""
7229
+
7230
+ #: bp-templates/bp-legacy/buddypress/members/register.php:164
7231
+ msgid "Profile Details"
7232
+ msgstr ""
7233
+
7234
+ #: bp-templates/bp-legacy/buddypress/members/register.php:189
7235
+ #: bp-templates/bp-legacy/buddypress/members/register.php:211
7236
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/edit.php:59
7237
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/edit.php:80
7238
+ #: bp-xprofile/classes/class-bp-xprofile-user-admin.php:380
7239
+ msgid "This field can be seen by: %s"
7240
+ msgstr ""
7241
+
7242
+ #: bp-templates/bp-legacy/buddypress/members/register.php:199
7243
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/edit.php:69
7244
+ #: bp-xprofile/classes/class-bp-xprofile-user-admin.php:397
7245
+ msgid "Who can see this field?"
7246
+ msgstr ""
7247
+
7248
+ #: bp-templates/bp-legacy/buddypress/members/register.php:204
7249
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/edit.php:74
7250
+ #: bp-templates/bp-legacy/buddypress-functions.php:294
7251
+ #: bp-xprofile/classes/class-bp-xprofile-user-admin.php:402
7252
+ msgid "Close"
7253
+ msgstr ""
7254
+
7255
+ #: bp-templates/bp-legacy/buddypress/members/register.php:273
7256
+ msgid "Blog Details"
7257
+ msgstr ""
7258
+
7259
+ #: bp-templates/bp-legacy/buddypress/members/register.php:275
7260
+ msgid "Yes, I'd like to create a new site"
7261
+ msgstr ""
7262
+
7263
+ #: bp-templates/bp-legacy/buddypress/members/register.php:279
7264
+ msgid "Blog URL"
7265
+ msgstr ""
7266
+
7267
+ #: bp-templates/bp-legacy/buddypress/members/register.php:295
7268
+ msgid "Site Title"
7269
+ msgstr ""
7270
+
7271
+ #: bp-templates/bp-legacy/buddypress/members/register.php:307
7272
+ msgid ""
7273
+ "Privacy: I would like my site to appear in search engines, and in public "
7274
+ "listings around this network."
7275
+ msgstr ""
7276
+
7277
+ #: bp-templates/bp-legacy/buddypress/members/register.php:355
7278
+ msgid "Complete Sign Up"
7279
+ msgstr ""
7280
+
7281
+ #: bp-templates/bp-legacy/buddypress/members/register.php:392
7282
+ msgid ""
7283
+ "You have successfully created your account! To begin using this site you "
7284
+ "will need to activate your account via the email we have just sent to your "
7285
+ "address."
7286
+ msgstr ""
7287
+
7288
+ #: bp-templates/bp-legacy/buddypress/members/register.php:394
7289
+ msgid ""
7290
+ "You have successfully created your account! Please log in using the "
7291
+ "username and password you have just created."
7292
+ msgstr ""
7293
+
7294
+ #: bp-templates/bp-legacy/buddypress/members/single/activity.php:11
7295
+ #: bp-templates/bp-legacy/buddypress/members/single/blogs.php:11
7296
+ #: bp-templates/bp-legacy/buddypress/members/single/forums.php:11
7297
+ #: bp-templates/bp-legacy/buddypress/members/single/friends.php:11
7298
+ #: bp-templates/bp-legacy/buddypress/members/single/groups.php:11
7299
+ #: bp-templates/bp-legacy/buddypress/members/single/messages.php:11
7300
+ #: bp-templates/bp-legacy/buddypress/members/single/notifications.php:11
7301
+ #: bp-templates/bp-legacy/buddypress/members/single/plugins.php:21
7302
+ #: bp-templates/bp-legacy/buddypress/members/single/profile.php:11
7303
+ #: bp-templates/bp-legacy/buddypress/members/single/settings.php:11
7304
+ msgid "Member secondary navigation"
7305
+ msgstr ""
7306
+
7307
+ #: bp-templates/bp-legacy/buddypress/members/single/friends/requests.php:20
7308
+ #. translators: accessibility text
7309
+ msgid "Friendship requests"
7310
+ msgstr ""
7311
+
7312
+ #: bp-templates/bp-legacy/buddypress/members/single/friends/requests.php:107
7313
+ msgid "You have no pending friendship requests."
7314
+ msgstr ""
7315
+
7316
+ #: bp-templates/bp-legacy/buddypress/members/single/friends.php:58
7317
+ #. translators: accessibility text
7318
+ msgid "My friends"
7319
+ msgstr ""
7320
+
7321
+ #: bp-templates/bp-legacy/buddypress/members/single/friends.php:63
7322
+ #. translators: accessibility text
7323
+ msgid "Friends"
7324
+ msgstr ""
7325
+
7326
+ #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:20
7327
+ #. translators: accessibility text
7328
+ msgid "Group invitations"
7329
+ msgstr ""
7330
+
7331
+ #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:71
7332
+ msgid "You have no outstanding group invites."
7333
+ msgstr ""
7334
+
7335
+ #: bp-templates/bp-legacy/buddypress/members/single/groups.php:60
7336
+ #. translators: accessibility text
7337
+ msgid "My groups"
7338
+ msgstr ""
7339
+
7340
+ #: bp-templates/bp-legacy/buddypress/members/single/groups.php:65
7341
+ #. translators: accessibility text
7342
+ msgid "Member's groups"
7343
+ msgstr ""
7344
+
7345
+ #: bp-templates/bp-legacy/buddypress/members/single/home.php:38
7346
+ msgid "Member primary navigation"
7347
+ msgstr ""
7348
+
7349
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/compose.php:12
7350
+ #. translators: accessibility text
7351
+ msgid "Compose Message"
7352
+ msgstr ""
7353
+
7354
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/compose.php:26
7355
+ msgid "Send To (Username or Friend's Name)"
7356
+ msgstr ""
7357
+
7358
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/compose.php:35
7359
+ msgid "This is a notice to all users."
7360
+ msgstr ""
7361
+
7362
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/compose.php:38
7363
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:64
7364
+ msgid "Subject"
7365
+ msgstr ""
7366
+
7367
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/compose.php:41
7368
+ msgid "Message"
7369
+ msgstr ""
7370
+
7371
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/compose.php:56
7372
+ msgid "Send Message"
7373
+ msgstr ""
7374
+
7375
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:20
7376
+ #. translators: accessibility text
7377
+ msgid "Starred messages"
7378
+ msgstr ""
7379
+
7380
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:61
7381
+ #: bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php:17
7382
+ #. translators: accessibility text
7383
+ msgid "Select all"
7384
+ msgstr ""
7385
+
7386
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:63
7387
+ msgid "From"
7388
+ msgstr ""
7389
+
7390
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:97
7391
+ #. translators: accessibility text
7392
+ msgid "Select this message"
7393
+ msgstr ""
7394
+
7395
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:104
7396
+ msgid "From:"
7397
+ msgstr ""
7398
+
7399
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:111
7400
+ msgid "To:"
7401
+ msgstr ""
7402
+
7403
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:118
7404
+ msgid "View Message"
7405
+ msgstr ""
7406
+
7407
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:194
7408
+ msgid "Sorry, no messages were found."
7409
+ msgstr ""
7410
+
7411
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php:63
7412
+ msgid "Sent:"
7413
+ msgstr ""
7414
+
7415
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php:77
7416
+ msgid "Delete Message"
7417
+ msgstr ""
7418
+
7419
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php:95
7420
+ msgid "Sorry, no notices were found."
7421
+ msgstr ""
7422
+
7423
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:30
7424
+ msgid "You are alone in this conversation."
7425
+ msgstr ""
7426
+
7427
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:34
7428
+ msgid "Conversation between %s recipients."
7429
+ msgstr ""
7430
+
7431
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:38
7432
+ msgid "Conversation between %s."
7433
+ msgstr ""
7434
+
7435
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:101
7436
+ msgid "Send a Reply"
7437
+ msgstr ""
7438
+
7439
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:124
7440
+ #. translators: accessibility text
7441
+ msgid "Reply to Message"
7442
+ msgstr ""
7443
+
7444
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:138
7445
+ msgid "Send Reply"
7446
+ msgstr ""
7447
+
7448
+ #: bp-templates/bp-legacy/buddypress/members/single/messages.php:43
7449
+ #. translators: accessibility text
7450
+ msgid "Messages inbox"
7451
+ msgstr ""
7452
+
7453
+ #: bp-templates/bp-legacy/buddypress/members/single/messages.php:48
7454
+ #. translators: accessibility text
7455
+ msgid "Sent Messages"
7456
+ msgstr ""
7457
+
7458
+ #: bp-templates/bp-legacy/buddypress/members/single/messages.php:88
7459
+ #. translators: accessibility text
7460
+ msgid "Sitewide Notices"
7461
+ msgstr ""
7462
+
7463
+ #: bp-templates/bp-legacy/buddypress/members/single/notifications/feedback-no-notifications.php:16
7464
+ msgid "You have no unread notifications."
7465
+ msgstr ""
7466
+
7467
+ #: bp-templates/bp-legacy/buddypress/members/single/notifications/feedback-no-notifications.php:20
7468
+ msgid "This member has no unread notifications."
7469
+ msgstr ""
7470
+
7471
+ #: bp-templates/bp-legacy/buddypress/members/single/notifications/feedback-no-notifications.php:28
7472
+ msgid "You have no notifications."
7473
+ msgstr ""
7474
+
7475
+ #: bp-templates/bp-legacy/buddypress/members/single/notifications/feedback-no-notifications.php:32
7476
+ msgid "This member has no notifications."
7477
+ msgstr ""
7478
+
7479
+ #: bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php:19
7480
+ msgid "Notification"
7481
+ msgstr ""
7482
+
7483
+ #: bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php:20
7484
+ msgid "Date Received"
7485
+ msgstr ""
7486
+
7487
+ #: bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php:33
7488
+ #. translators: accessibility text
7489
+ msgid "Select this notification"
7490
+ msgstr ""
7491
+
7492
+ #: bp-templates/bp-legacy/buddypress/members/single/notifications/unread.php:15
7493
+ #. translators: accessibility text
7494
+ msgid "Unread notifications"
7495
+ msgstr ""
7496
+
7497
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php:11
7498
+ msgid "Change Profile Photo"
7499
+ msgstr ""
7500
+
7501
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php:24
7502
+ msgid ""
7503
+ "Your profile photo will be used on your profile and throughout the site. If "
7504
+ "there is a <a href=\"http://gravatar.com\">Gravatar</a> associated with "
7505
+ "your account email we will use that, or you can upload an image from your "
7506
+ "computer."
7507
+ msgstr ""
7508
+
7509
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php:31
7510
+ msgid ""
7511
+ "Click below to select a JPG, GIF or PNG format photo from your computer and "
7512
+ "then click 'Upload Image' to proceed."
7513
+ msgstr ""
7514
+
7515
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php:52
7516
+ msgid "Crop Your New Profile Photo"
7517
+ msgstr ""
7518
+
7519
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php:84
7520
+ msgid ""
7521
+ "Your profile photo will be used on your profile and throughout the site. To "
7522
+ "change your profile photo, please create an account with <a "
7523
+ "href=\"https://gravatar.com\">Gravatar</a> using the same email address as "
7524
+ "you used to register with this site."
7525
+ msgstr ""
7526
+
7527
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-cover-image.php:11
7528
+ msgid "Change Cover Image"
7529
+ msgstr ""
7530
+
7531
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/change-cover-image.php:22
7532
+ msgid "Your Cover Image will be used to customize the header of your profile."
7533
+ msgstr ""
7534
+
7535
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/edit.php:26
7536
+ msgid "Editing '%s' Profile Group"
7537
+ msgstr ""
7538
+
7539
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/edit.php:29
7540
+ msgid "Profile field groups"
7541
+ msgstr ""
7542
+
7543
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php:28
7544
+ msgid "%s's Profile"
7545
+ msgstr ""
7546
+
7547
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/capabilities.php:25
7548
+ msgid "This user is a spammer."
7549
+ msgstr ""
7550
+
7551
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/delete-account.php:16
7552
+ msgid ""
7553
+ "Deleting your account will delete all of the content you have created. It "
7554
+ "will be completely irrecoverable."
7555
+ msgstr ""
7556
+
7557
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/delete-account.php:20
7558
+ msgid ""
7559
+ "Deleting this account will delete all of the content it has created. It "
7560
+ "will be completely irrecoverable."
7561
+ msgstr ""
7562
+
7563
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/delete-account.php:39
7564
+ msgid "I understand the consequences."
7565
+ msgstr ""
7566
+
7567
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/general.php:14
7568
+ #. translators: accessibility text
7569
+ msgid "Account settings"
7570
+ msgstr ""
7571
+
7572
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/general.php:21
7573
+ msgid ""
7574
+ "Current Password <span>(required to update email or change current "
7575
+ "password)</span>"
7576
+ msgstr ""
7577
+
7578
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/general.php:22
7579
+ msgid "Lost your password?"
7580
+ msgstr ""
7581
+
7582
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/general.php:26
7583
+ msgid "Account Email"
7584
+ msgstr ""
7585
+
7586
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/general.php:29
7587
+ msgid "Change Password <span>(leave blank for no change)</span>"
7588
+ msgstr ""
7589
+
7590
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/general.php:32
7591
+ msgid "Repeat New Password"
7592
+ msgstr ""
7593
+
7594
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/notifications.php:14
7595
+ #. translators: accessibility text
7596
+ msgid "Notification settings"
7597
+ msgstr ""
7598
+
7599
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/notifications.php:18
7600
+ msgid "Send an email notice when:"
7601
+ msgstr ""
7602
+
7603
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/profile.php:18
7604
+ #. translators: accessibility text
7605
+ msgid "Profile visibility settings"
7606
+ msgstr ""
7607
+
7608
+ #: bp-templates/bp-legacy/buddypress/members/single/settings/profile.php:33
7609
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1428
7610
+ msgid "Visibility"
7611
+ msgstr ""
7612
+
7613
+ #: bp-templates/bp-legacy/buddypress-functions.php:60 class-buddypress.php:709
7614
+ msgid "BuddyPress Legacy"
7615
+ msgstr ""
7616
+
7617
+ #: bp-templates/bp-legacy/buddypress-functions.php:293
7618
+ msgid "Accepted"
7619
+ msgstr ""
7620
+
7621
+ #: bp-templates/bp-legacy/buddypress-functions.php:295
7622
+ msgid "comments"
7623
+ msgstr ""
7624
+
7625
+ #: bp-templates/bp-legacy/buddypress-functions.php:296
7626
+ msgid "Are you sure you want to leave this group?"
7627
+ msgstr ""
7628
+
7629
+ #: bp-templates/bp-legacy/buddypress-functions.php:298
7630
+ msgid "My Favorites"
7631
+ msgstr ""
7632
+
7633
+ #: bp-templates/bp-legacy/buddypress-functions.php:299
7634
+ msgid "Rejected"
7635
+ msgstr ""
7636
+
7637
+ #: bp-templates/bp-legacy/buddypress-functions.php:301
7638
+ msgid "Show all"
7639
+ msgstr ""
7640
+
7641
+ #: bp-templates/bp-legacy/buddypress-functions.php:302
7642
+ msgid "Show all comments for this thread"
7643
+ msgstr ""
7644
+
7645
+ #: bp-templates/bp-legacy/buddypress-functions.php:303
7646
+ msgid "Show all comments (%d)"
7647
+ msgstr ""
7648
+
7649
+ #: bp-templates/bp-legacy/buddypress-functions.php:304
7650
+ msgid ""
7651
+ "Your profile has unsaved changes. If you leave the page, the changes will "
7652
+ "be lost."
7653
+ msgstr ""
7654
+
7655
+ #: bp-templates/bp-legacy/buddypress-functions.php:971
7656
+ msgid "There was a problem posting your update. Please try again."
7657
+ msgstr ""
7658
+
7659
+ #: bp-templates/bp-legacy/buddypress-functions.php:1105
7660
+ #: bp-templates/bp-legacy/buddypress-functions.php:1145
7661
+ msgid "There was a problem when deleting. Please try again."
7662
+ msgstr ""
7663
+
7664
+ #: bp-templates/bp-legacy/buddypress-functions.php:1357
7665
+ msgid ""
7666
+ "%s has previously requested to join this group. Sending an invitation will "
7667
+ "automatically add the member to the group."
7668
+ msgstr ""
7669
+
7670
+ #: bp-templates/bp-legacy/buddypress-functions.php:1413
7671
+ msgid " Friendship could not be requested."
7672
+ msgstr ""
7673
+
7674
+ #: bp-templates/bp-legacy/buddypress-functions.php:1425
7675
+ msgid "Friendship request could not be cancelled."
7676
+ msgstr ""
7677
+
7678
+ #: bp-templates/bp-legacy/buddypress-functions.php:1430
7679
+ msgid "Request Pending"
7680
+ msgstr ""
7681
+
7682
+ #: bp-templates/bp-legacy/buddypress-functions.php:1451
7683
+ msgid "There was a problem accepting that request. Please try again."
7684
+ msgstr ""
7685
+
7686
+ #: bp-templates/bp-legacy/buddypress-functions.php:1471
7687
+ msgid "There was a problem rejecting that request. Please try again."
7688
+ msgstr ""
7689
+
7690
+ #: bp-templates/bp-legacy/buddypress-functions.php:1502
7691
+ msgid "Error joining group"
7692
+ msgstr ""
7693
+
7694
+ #: bp-templates/bp-legacy/buddypress-functions.php:1515
7695
+ #: bp-templates/bp-legacy/buddypress-functions.php:1525
7696
+ msgid "Error requesting membership"
7697
+ msgstr ""
7698
+
7699
+ #: bp-templates/bp-legacy/buddypress-functions.php:1536
7700
+ msgid "Error leaving group"
7701
+ msgstr ""
7702
+
7703
+ #: bp-templates/bp-legacy/buddypress-functions.php:1562
7704
+ msgid "There was a problem closing the notice."
7705
+ msgstr ""
7706
+
7707
+ #: bp-templates/bp-legacy/buddypress-functions.php:1629
7708
+ msgid "There was a problem sending that reply. Please try again."
7709
+ msgstr ""
7710
+
7711
+ #: bp-xprofile/bp-xprofile-activity.php:29
7712
+ msgid "Member changed profile picture"
7713
+ msgstr ""
7714
+
7715
+ #: bp-xprofile/bp-xprofile-activity.php:31
7716
+ msgid "Updated Profile Photos"
7717
+ msgstr ""
7718
+
7719
+ #: bp-xprofile/bp-xprofile-activity.php:37
7720
+ msgid "Updated Profile"
7721
+ msgstr ""
7722
+
7723
+ #: bp-xprofile/bp-xprofile-activity.php:39
7724
+ #: bp-xprofile/bp-xprofile-activity.php:339
7725
+ msgid "Profile Updates"
7726
+ msgstr ""
7727
+
7728
+ #: bp-xprofile/bp-xprofile-activity.php:63
7729
+ msgid "%s changed their profile picture"
7730
+ msgstr ""
7731
+
7732
+ #: bp-xprofile/bp-xprofile-activity.php:97
7733
+ msgid "%s's profile was updated"
7734
+ msgstr ""
7735
+
7736
+ #: bp-xprofile/bp-xprofile-admin.php:139
7737
+ #: bp-xprofile/classes/class-bp-xprofile-group.php:721
7738
+ msgid "Add New Field Group"
7739
+ msgstr ""
7740
+
7741
+ #: bp-xprofile/bp-xprofile-admin.php:171 bp-xprofile/bp-xprofile-admin.php:638
7742
+ msgid "(Primary)"
7743
+ msgstr ""
7744
+
7745
+ #: bp-xprofile/bp-xprofile-admin.php:193
7746
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1149
7747
+ msgid "Add New Field"
7748
+ msgstr ""
7749
+
7750
+ #: bp-xprofile/bp-xprofile-admin.php:232
7751
+ #. translators: accessibility text
7752
+ msgid "Fields for \"%s\" Group"
7753
+ msgstr ""
7754
+
7755
+ #: bp-xprofile/bp-xprofile-admin.php:258
7756
+ msgid "There are no fields in this group."
7757
+ msgstr ""
7758
+
7759
+ #: bp-xprofile/bp-xprofile-admin.php:266
7760
+ msgid "* Fields in this group appear on the signup page."
7761
+ msgstr ""
7762
+
7763
+ #: bp-xprofile/bp-xprofile-admin.php:320
7764
+ msgid "There was an error saving the group. Please try again."
7765
+ msgstr ""
7766
+
7767
+ #: bp-xprofile/bp-xprofile-admin.php:325
7768
+ msgid "The group was saved successfully."
7769
+ msgstr ""
7770
+
7771
+ #: bp-xprofile/bp-xprofile-admin.php:439
7772
+ msgid "There was an error saving the field. Please try again."
7773
+ msgstr ""
7774
+
7775
+ #: bp-xprofile/bp-xprofile-admin.php:442
7776
+ msgid "The field was saved successfully."
7777
+ msgstr ""
7778
+
7779
+ #: bp-xprofile/bp-xprofile-admin.php:528
7780
+ msgid "field"
7781
+ msgstr ""
7782
+
7783
+ #: bp-xprofile/bp-xprofile-admin.php:528
7784
+ msgid "option"
7785
+ msgstr ""
7786
+
7787
+ #: bp-xprofile/bp-xprofile-admin.php:532
7788
+ msgid "There was an error deleting the %s. Please try again."
7789
+ msgstr ""
7790
+
7791
+ #: bp-xprofile/bp-xprofile-admin.php:535
7792
+ msgid "The %s was deleted successfully!"
7793
+ msgstr ""
7794
+
7795
+ #: bp-xprofile/bp-xprofile-admin.php:640
7796
+ msgid "(Sign-up)"
7797
+ msgstr ""
7798
+
7799
+ #: bp-xprofile/bp-xprofile-screens.php:168
7800
+ msgid "Changes saved."
7801
+ msgstr ""
7802
+
7803
+ #: bp-xprofile/bp-xprofile-settings.php:49
7804
+ msgid "Your profile settings have been saved."
7805
+ msgstr ""
7806
+
7807
+ #: bp-xprofile/bp-xprofile-settings.php:53
7808
+ msgid "This member's profile settings have been saved."
7809
+ msgstr ""
7810
+
7811
+ #: bp-xprofile/bp-xprofile-template.php:1136
7812
+ msgid "Profile not recently updated."
7813
+ msgstr ""
7814
+
7815
+ #: bp-xprofile/bp-xprofile-template.php:1162
7816
+ msgid "Profile updated %s"
7817
+ msgstr ""
7818
+
7819
+ #: bp-xprofile/bp-xprofile-template.php:1399
7820
+ #. translators: accessibility text
7821
+ msgid "Select visibility"
7822
+ msgstr ""
7823
+
7824
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:110
7825
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:305
7826
+ #. translators: accessibility text
7827
+ msgid "Select day"
7828
+ msgstr ""
7829
+
7830
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:121
7831
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:313
7832
+ #. translators: accessibility text
7833
+ msgid "Select month"
7834
+ msgstr ""
7835
+
7836
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:132
7837
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:321
7838
+ #. translators: accessibility text
7839
+ msgid "Select year"
7840
+ msgstr ""
7841
+
7842
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:221
7843
+ msgid "January"
7844
+ msgstr ""
7845
+
7846
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:222
7847
+ msgid "February"
7848
+ msgstr ""
7849
+
7850
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:223
7851
+ msgid "March"
7852
+ msgstr ""
7853
+
7854
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:224
7855
+ msgid "April"
7856
+ msgstr ""
7857
+
7858
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:225
7859
+ msgid "May"
7860
+ msgstr ""
7861
+
7862
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:226
7863
+ msgid "June"
7864
+ msgstr ""
7865
+
7866
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:227
7867
+ msgid "July"
7868
+ msgstr ""
7869
+
7870
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:228
7871
+ msgid "August"
7872
+ msgstr ""
7873
+
7874
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:229
7875
+ msgid "September"
7876
+ msgstr ""
7877
+
7878
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:230
7879
+ msgid "October"
7880
+ msgstr ""
7881
+
7882
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:231
7883
+ msgid "November"
7884
+ msgstr ""
7885
+
7886
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:232
7887
+ msgid "December"
7888
+ msgstr ""
7889
+
7890
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:466
7891
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:472
7892
+ msgid "Date format"
7893
+ msgstr ""
7894
+
7895
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:488
7896
+ msgid "Time elapsed"
7897
+ msgstr ""
7898
+
7899
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:488
7900
+ msgid "<code>4 years ago</code>, <code>4 years from now</code>"
7901
+ msgstr ""
7902
+
7903
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:495
7904
+ msgid "Custom:"
7905
+ msgstr ""
7906
+
7907
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:497
7908
+ msgid "Enter custom time format"
7909
+ msgstr ""
7910
+
7911
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:498
7912
+ msgid "Example:"
7913
+ msgstr ""
7914
+
7915
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:500
7916
+ msgid "Documentation on date and time formatting"
7917
+ msgstr ""
7918
+
7919
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:509
7920
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:515
7921
+ msgid "Range"
7922
+ msgstr ""
7923
+
7924
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:522
7925
+ msgid "Absolute"
7926
+ msgstr ""
7927
+
7928
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:527
7929
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:543
7930
+ msgid "Start:"
7931
+ msgstr ""
7932
+
7933
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:529
7934
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:558
7935
+ msgid "End:"
7936
+ msgstr ""
7937
+
7938
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:538
7939
+ msgid "Relative"
7940
+ msgstr ""
7941
+
7942
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:549
7943
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:563
7944
+ msgid "Select range"
7945
+ msgstr ""
7946
+
7947
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:552
7948
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:566
7949
+ msgid "years ago"
7950
+ msgstr ""
7951
+
7952
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:554
7953
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:568
7954
+ msgid "years from now"
7955
+ msgstr ""
7956
+
7957
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:630
7958
+ msgid "F j, Y"
7959
+ msgstr ""
7960
+
7961
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-multiselectbox.php:99
7962
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php:87
7963
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php:180
7964
+ msgid "Clear"
7965
+ msgstr ""
7966
+
7967
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-number.php:103
7968
+ #. translators: accessibility text
7969
+ msgid "Number field"
7970
+ msgstr ""
7971
+
7972
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-textbox.php:103
7973
+ #. translators: accessibility text
7974
+ msgid "Textbox"
7975
+ msgstr ""
7976
+
7977
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-url.php:106
7978
+ #. translators: accessibility text
7979
+ msgid "URL"
7980
+ msgstr ""
7981
+
7982
+ #: bp-xprofile/classes/class-bp-xprofile-field-type.php:324
7983
+ msgid "Please enter options for this Field:"
7984
+ msgstr ""
7985
+
7986
+ #: bp-xprofile/classes/class-bp-xprofile-field-type.php:327
7987
+ msgid "Sort Order:"
7988
+ msgstr ""
7989
+
7990
+ #: bp-xprofile/classes/class-bp-xprofile-field-type.php:329
7991
+ msgid "Custom"
7992
+ msgstr ""
7993
+
7994
+ #: bp-xprofile/classes/class-bp-xprofile-field-type.php:330
7995
+ msgid "Ascending"
7996
+ msgstr ""
7997
+
7998
+ #: bp-xprofile/classes/class-bp-xprofile-field-type.php:331
7999
+ msgid "Descending"
8000
+ msgstr ""
8001
+
8002
+ #: bp-xprofile/classes/class-bp-xprofile-field-type.php:395
8003
+ #. translators: accessibility text
8004
+ msgid "Add an option"
8005
+ msgstr ""
8006
+
8007
+ #: bp-xprofile/classes/class-bp-xprofile-field-type.php:400
8008
+ msgid "Default Value"
8009
+ msgstr ""
8010
+
8011
+ #: bp-xprofile/classes/class-bp-xprofile-field-type.php:417
8012
+ msgid "Add Another Option"
8013
+ msgstr ""
8014
+
8015
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:759
8016
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1399
8017
+ msgid "Users with no member type"
8018
+ msgstr ""
8019
+
8020
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:762
8021
+ msgid "(Member types: %s)"
8022
+ msgstr ""
8023
+
8024
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:764
8025
+ msgid "(Unavailable to all members)"
8026
+ msgstr ""
8027
+
8028
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1059
8029
+ msgid "Profile fields must have a name."
8030
+ msgstr ""
8031
+
8032
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1065
8033
+ msgid "Profile field requirement is missing."
8034
+ msgstr ""
8035
+
8036
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1071
8037
+ msgid "Profile field type is missing."
8038
+ msgstr ""
8039
+
8040
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1077
8041
+ msgid "The profile field type %s is not registered."
8042
+ msgstr ""
8043
+
8044
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1092
8045
+ msgid "These field options are invalid."
8046
+ msgstr ""
8047
+
8048
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1103
8049
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1109
8050
+ msgid "%s require at least one option."
8051
+ msgstr ""
8052
+
8053
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1165
8054
+ msgid "Edit Field"
8055
+ msgstr ""
8056
+
8057
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1281
8058
+ #: bp-xprofile/classes/class-bp-xprofile-group.php:792
8059
+ msgid "Submit"
8060
+ msgstr ""
8061
+
8062
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1351
8063
+ #: bp-xprofile/classes/class-bp-xprofile-group.php:759
8064
+ #. translators: accessibility text
8065
+ msgid "Add description"
8066
+ msgstr ""
8067
+
8068
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1382
8069
+ msgid "Member Types"
8070
+ msgstr ""
8071
+
8072
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1384
8073
+ msgid "This field should be available to:"
8074
+ msgstr ""
8075
+
8076
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1404
8077
+ msgid "Unavailable to all members."
8078
+ msgstr ""
8079
+
8080
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1448
8081
+ msgid "Allow members to override"
8082
+ msgstr ""
8083
+
8084
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1452
8085
+ msgid "Enforce field visibility"
8086
+ msgstr ""
8087
+
8088
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1477
8089
+ msgid "Requirement"
8090
+ msgstr ""
8091
+
8092
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1480
8093
+ msgid "Not Required"
8094
+ msgstr ""
8095
+
8096
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1481
8097
+ msgid "Required"
8098
+ msgstr ""
8099
+
8100
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1500
8101
+ msgid "Autolink"
8102
+ msgstr ""
8103
+
8104
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1502
8105
+ msgid ""
8106
+ "On user profiles, link this field to a search of the Members directory, "
8107
+ "using the field value as a search term."
8108
+ msgstr ""
8109
+
8110
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1507
8111
+ #. translators: accessibility text
8112
+ msgid "Autolink status for this field"
8113
+ msgstr ""
8114
+
8115
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1510
8116
+ msgid "Enabled"
8117
+ msgstr ""
8118
+
8119
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1511
8120
+ msgid "Disabled"
8121
+ msgstr ""
8122
+
8123
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1535
8124
+ msgid "Type"
8125
+ msgstr ""
8126
+
8127
+ #: bp-xprofile/classes/class-bp-xprofile-group.php:589
8128
+ msgid "Please make sure you give the group a name."
8129
+ msgstr ""
8130
+
8131
+ #: bp-xprofile/classes/class-bp-xprofile-group.php:727
8132
+ msgid "Edit Field Group"
8133
+ msgstr ""
8134
+
8135
+ #: bp-xprofile/classes/class-bp-xprofile-group.php:750
8136
+ msgid "Field Group Name (required)"
8137
+ msgstr ""
8138
+
8139
+ #: bp-xprofile/classes/class-bp-xprofile-group.php:755
8140
+ msgid "Field Group Description"
8141
+ msgstr ""
8142
+
8143
+ #: bp-xprofile/classes/class-bp-xprofile-user-admin.php:476
8144
+ msgid "Delete Profile Photo"
8145
+ msgstr ""
8146
+
8147
+ #: class-buddypress.php:151 class-buddypress.php:158
8148
+ msgid "Cheatin&#8217; huh?"
8149
+ msgstr ""
8150
+
8151
+ #. Author URI of the plugin/theme
8152
+ msgid "https://buddypress.org/"
8153
+ msgstr ""
8154
+
8155
+ #. Description of the plugin/theme
8156
+ msgid ""
8157
+ "BuddyPress adds community features to WordPress. Member Profiles, Activity "
8158
+ "Streams, Direct Messaging, Notifications, and more!"
8159
+ msgstr ""
8160
+
8161
+ #. Author of the plugin/theme
8162
+ msgid "The BuddyPress Community"
8163
+ msgstr ""
8164
+
8165
+ #: bp-activity/bp-activity-admin.php:32
8166
+ msgctxt "Admin Dashbord SWA page title"
8167
+ msgid "Activity"
8168
+ msgstr ""
8169
+
8170
+ #: bp-activity/bp-activity-admin.php:33
8171
+ msgctxt "Admin Dashbord SWA menu"
8172
+ msgid "Activity"
8173
+ msgstr ""
8174
+
8175
+ #: bp-activity/bp-activity-admin.php:248
8176
+ msgctxt "activity admin edit screen"
8177
+ msgid "Status"
8178
+ msgstr ""
8179
+
8180
+ #: bp-activity/bp-activity-admin.php:249
8181
+ msgctxt "activity admin edit screen"
8182
+ msgid "Primary Item/Secondary Item"
8183
+ msgstr ""
8184
+
8185
+ #: bp-activity/bp-activity-admin.php:250
8186
+ msgctxt "activity admin edit screen"
8187
+ msgid "Link"
8188
+ msgstr ""
8189
+
8190
+ #: bp-activity/bp-activity-admin.php:251
8191
+ msgctxt "activity admin edit screen"
8192
+ msgid "Type"
8193
+ msgstr ""
8194
+
8195
+ #: bp-activity/bp-activity-admin.php:252
8196
+ msgctxt "activity admin edit screen"
8197
+ msgid "Author ID"
8198
+ msgstr ""
8199
+
8200
+ #: bp-activity/bp-activity-admin.php:272
8201
+ msgctxt "Activity items per page (screen options)"
8202
+ msgid "Activity"
8203
+ msgstr ""
8204
+
8205
+ #: bp-activity/bp-activity-admin.php:1013
8206
+ msgctxt "Admin SWA page"
8207
+ msgid "Activity"
8208
+ msgstr ""
8209
+
8210
+ #: bp-activity/bp-activity-functions.php:507
8211
+ msgctxt "Post Type generic activity post admin filter"
8212
+ msgid "New item published"
8213
+ msgstr ""
8214
+
8215
+ #: bp-activity/bp-activity-functions.php:540
8216
+ msgctxt "Post Type generic comments activity admin filter"
8217
+ msgid "New item comment posted"
8218
+ msgstr ""
8219
+
8220
+ #: bp-activity/bp-activity-functions.php:551
8221
+ msgctxt "Post Type generic comments activity front filter"
8222
+ msgid "Item comments"
8223
+ msgstr ""
8224
+
8225
+ #: bp-activity/bp-activity-functions.php:1592
8226
+ msgctxt "Activity Custom Post Type post action"
8227
+ msgid "%1$s wrote a new <a href=\"%2$s\">item</a>, on the site %3$s"
8228
+ msgstr ""
8229
+
8230
+ #: bp-activity/bp-activity-functions.php:1598
8231
+ msgctxt "Activity Custom Post Type post action"
8232
+ msgid "%1$s wrote a new <a href=\"%2$s\">item</a>"
8233
+ msgstr ""
8234
+
8235
+ #: bp-activity/bp-activity-functions.php:1643
8236
+ msgctxt "Activity Custom Post Type comment action"
8237
+ msgid "%1$s commented on the <a href=\"%2$s\">item</a>, on the site %3$s"
8238
+ msgstr ""
8239
+
8240
+ #: bp-activity/bp-activity-functions.php:1649
8241
+ msgctxt "Activity Custom Post Type post comment action"
8242
+ msgid "%1$s commented on the <a href=\"%2$s\">item</a>"
8243
+ msgstr ""
8244
+
8245
+ #: bp-activity/classes/class-bp-activity-component.php:170
8246
+ msgctxt "Profile activity screen nav"
8247
+ msgid "Activity"
8248
+ msgstr ""
8249
+
8250
+ #: bp-activity/classes/class-bp-activity-component.php:180
8251
+ msgctxt "Profile activity screen sub nav"
8252
+ msgid "Personal"
8253
+ msgstr ""
8254
+
8255
+ #: bp-activity/classes/class-bp-activity-component.php:191
8256
+ msgctxt "Profile activity screen sub nav"
8257
+ msgid "Mentions"
8258
+ msgstr ""
8259
+
8260
+ #: bp-activity/classes/class-bp-activity-component.php:204
8261
+ msgctxt "Profile activity screen sub nav"
8262
+ msgid "Favorites"
8263
+ msgstr ""
8264
+
8265
+ #: bp-activity/classes/class-bp-activity-component.php:217
8266
+ msgctxt "Profile activity screen sub nav"
8267
+ msgid "Friends"
8268
+ msgstr ""
8269
+
8270
+ #: bp-activity/classes/class-bp-activity-component.php:230
8271
+ msgctxt "Profile activity screen sub nav"
8272
+ msgid "Groups"
8273
+ msgstr ""
8274
+
8275
+ #: bp-activity/classes/class-bp-activity-component.php:268
8276
+ #. translators: %s: Unread mention count for the current user
8277
+ msgctxt "Toolbar Mention logged in user"
8278
+ msgid "Mentions %s"
8279
+ msgstr ""
8280
+
8281
+ #: bp-activity/classes/class-bp-activity-component.php:272
8282
+ msgctxt "Toolbar Mention logged in user"
8283
+ msgid "Mentions"
8284
+ msgstr ""
8285
+
8286
+ #: bp-activity/classes/class-bp-activity-component.php:280
8287
+ msgctxt "My Account Activity sub nav"
8288
+ msgid "Activity"
8289
+ msgstr ""
8290
+
8291
+ #: bp-activity/classes/class-bp-activity-component.php:288
8292
+ msgctxt "My Account Activity sub nav"
8293
+ msgid "Personal"
8294
+ msgstr ""
8295
+
8296
+ #: bp-activity/classes/class-bp-activity-component.php:309
8297
+ msgctxt "My Account Activity sub nav"
8298
+ msgid "Favorites"
8299
+ msgstr ""
8300
+
8301
+ #: bp-activity/classes/class-bp-activity-component.php:320
8302
+ msgctxt "My Account Activity sub nav"
8303
+ msgid "Friends"
8304
+ msgstr ""
8305
+
8306
+ #: bp-activity/classes/class-bp-activity-component.php:331
8307
+ msgctxt "My Account Activity sub nav"
8308
+ msgid "Groups"
8309
+ msgstr ""
8310
+
8311
+ #: bp-activity/classes/class-bp-activity-component.php:354
8312
+ msgctxt "Page and <title>"
8313
+ msgid "My Activity"
8314
+ msgstr ""
8315
+
8316
+ #: bp-activity/classes/class-bp-activity-list-table.php:376
8317
+ msgctxt "Admin SWA column header"
8318
+ msgid "Author"
8319
+ msgstr ""
8320
+
8321
+ #: bp-activity/classes/class-bp-activity-list-table.php:377
8322
+ msgctxt "Admin SWA column header"
8323
+ msgid "Activity"
8324
+ msgstr ""
8325
+
8326
+ #: bp-activity/classes/class-bp-activity-list-table.php:378
8327
+ msgctxt "Admin SWA column header"
8328
+ msgid "Action"
8329
+ msgstr ""
8330
+
8331
+ #: bp-activity/classes/class-bp-activity-list-table.php:379
8332
+ msgctxt "Admin SWA column header"
8333
+ msgid "In Response To"
8334
+ msgstr ""
8335
+
8336
+ #: bp-activity/classes/class-bp-activity-template.php:291
8337
+ msgctxt "Activity pagination previous text"
8338
+ msgid "&larr;"
8339
+ msgstr ""
8340
+
8341
+ #: bp-activity/classes/class-bp-activity-template.php:292
8342
+ msgctxt "Activity pagination next text"
8343
+ msgid "&rarr;"
8344
+ msgstr ""
8345
+
8346
+ #: bp-activity/classes/class-bp-akismet.php:608
8347
+ msgctxt "x hours ago - akismet cleared this item"
8348
+ msgid "%1$s &mdash; %2$s"
8349
+ msgstr ""
8350
+
8351
+ #: bp-blogs/classes/class-bp-blogs-recent-posts-widget.php:27
8352
+ msgctxt "widget name"
8353
+ msgid "(BuddyPress) Recent Networkwide Posts"
8354
+ msgstr ""
8355
+
8356
+ #: bp-friends/classes/class-bp-core-friends-widget.php:31
8357
+ msgctxt "widget name"
8358
+ msgid "(BuddyPress) Friends"
8359
+ msgstr ""
8360
+
8361
+ #: bp-groups/classes/class-bp-groups-widget.php:31
8362
+ msgctxt "widget name"
8363
+ msgid "(BuddyPress) Groups"
8364
+ msgstr ""
8365
+
8366
+ #: bp-members/classes/class-bp-core-members-widget.php:28
8367
+ msgctxt "widget name"
8368
+ msgid "(BuddyPress) Members"
8369
+ msgstr ""
8370
+
8371
+ #: bp-members/classes/class-bp-core-recently-active-widget.php:26
8372
+ msgctxt "widget name"
8373
+ msgid "(BuddyPress) Recently Active Members"
8374
+ msgstr ""
8375
+
8376
+ #: bp-members/classes/class-bp-core-whos-online-widget.php:26
8377
+ msgctxt "widget name"
8378
+ msgid "(BuddyPress) Who's Online"
8379
+ msgstr ""
8380
+
8381
+ #: bp-blogs/classes/class-bp-blogs-recent-posts-widget.php:159
8382
+ msgctxt "Label for the Title field of the Recent Networkwide Posts widget"
8383
+ msgid "Title:"
8384
+ msgstr ""
8385
+
8386
+ #: bp-blogs/classes/class-bp-blogs-template.php:150
8387
+ msgctxt "Blog pagination previous text"
8388
+ msgid "&larr;"
8389
+ msgstr ""
8390
+
8391
+ #: bp-blogs/classes/class-bp-blogs-template.php:151
8392
+ msgctxt "Blog pagination next text"
8393
+ msgid "&rarr;"
8394
+ msgstr ""
8395
+
8396
+ #: bp-core/admin/bp-core-admin-components.php:158
8397
+ msgctxt "plugins"
8398
+ msgid "All <span class=\"count\">(%s)</span>"
8399
+ msgid_plural "All <span class=\"count\">(%s)</span>"
8400
+ msgstr[0] ""
8401
+ msgstr[1] ""
8402
+
8403
+ #: bp-core/admin/bp-core-admin-schema.php:318
8404
+ msgctxt "First field-group name"
8405
+ msgid "General"
8406
+ msgstr ""
8407
+
8408
+ #: bp-core/admin/bp-core-admin-schema.php:322
8409
+ msgctxt "Display name field"
8410
+ msgid "Display Name"
8411
+ msgstr ""
8412
+
8413
+ #: bp-core/admin/bp-core-admin-tools.php:410
8414
+ msgctxt "buddypress tools intro"
8415
+ msgid "Use the %s to repair these relationships."
8416
+ msgstr ""
8417
+
8418
+ #: bp-core/bp-core-customizer-email.php:33 bp-core/bp-core-filters.php:1135
8419
+ msgctxt "screen heading"
8420
+ msgid "BuddyPress Emails"
8421
+ msgstr ""
8422
+
8423
+ #: bp-core/classes/class-bp-admin.php:343
8424
+ #: bp-core/classes/class-bp-admin.php:344
8425
+ msgctxt "screen heading"
8426
+ msgid "Emails"
8427
+ msgstr ""
8428
+
8429
+ #: bp-core/bp-core-customizer-email.php:138
8430
+ msgctxt "email"
8431
+ msgid "Header"
8432
+ msgstr ""
8433
+
8434
+ #: bp-core/bp-core-customizer-email.php:143
8435
+ msgctxt "email"
8436
+ msgid "Body"
8437
+ msgstr ""
8438
+
8439
+ #: bp-core/bp-core-customizer-email.php:148
8440
+ msgctxt "email"
8441
+ msgid "Footer"
8442
+ msgstr ""
8443
+
8444
+ #: bp-core/bp-core-functions.php:3264
8445
+ #. translators: email disclaimer, e.g. "© 2016 Site Name".
8446
+ msgctxt "email"
8447
+ msgid "&copy; %s %s"
8448
+ msgstr ""
8449
+
8450
+ #: bp-templates/bp-legacy/buddypress/assets/emails/single-bp-email.php:202
8451
+ msgctxt "email"
8452
+ msgid "unsubscribe"
8453
+ msgstr ""
8454
+
8455
+ #: bp-core/bp-core-filters.php:780
8456
+ msgctxt "customizer menu type label"
8457
+ msgid "Custom Link"
8458
+ msgstr ""
8459
+
8460
+ #: bp-core/bp-core-filters.php:801
8461
+ msgctxt "customizer menu section title"
8462
+ msgid "BuddyPress (logged-in)"
8463
+ msgstr ""
8464
+
8465
+ #: bp-core/bp-core-filters.php:806
8466
+ msgctxt "customizer menu section title"
8467
+ msgid "BuddyPress (logged-out)"
8468
+ msgstr ""
8469
+
8470
+ #: bp-core/bp-core-functions.php:738
8471
+ msgctxt "Page title for the Activity directory."
8472
+ msgid "Activity"
8473
+ msgstr ""
8474
+
8475
+ #: bp-core/bp-core-functions.php:739
8476
+ msgctxt "Page title for the Groups directory."
8477
+ msgid "Groups"
8478
+ msgstr ""
8479
+
8480
+ #: bp-core/bp-core-functions.php:740
8481
+ msgctxt "Page title for the Sites directory."
8482
+ msgid "Sites"
8483
+ msgstr ""
8484
+
8485
+ #: bp-core/bp-core-functions.php:741
8486
+ msgctxt "Page title for the Members directory."
8487
+ msgid "Members"
8488
+ msgstr ""
8489
+
8490
+ #: bp-core/bp-core-functions.php:742
8491
+ msgctxt "Page title for the user activation screen."
8492
+ msgid "Activate"
8493
+ msgstr ""
8494
+
8495
+ #: bp-core/bp-core-functions.php:743
8496
+ msgctxt "Page title for the user registration screen."
8497
+ msgid "Register"
8498
+ msgstr ""
8499
+
8500
+ #: bp-core/bp-core-functions.php:1279
8501
+ msgctxt "Separator in time since"
8502
+ msgid ","
8503
+ msgstr ""
8504
+
8505
+ #: bp-core/bp-core-functions.php:2874
8506
+ msgctxt "email post type label"
8507
+ msgid "Add New"
8508
+ msgstr ""
8509
+
8510
+ #: bp-core/bp-core-functions.php:2875
8511
+ msgctxt "email post type label"
8512
+ msgid "Add a New Email"
8513
+ msgstr ""
8514
+
8515
+ #: bp-core/bp-core-functions.php:2876
8516
+ msgctxt "email post type label"
8517
+ msgid "All Emails"
8518
+ msgstr ""
8519
+
8520
+ #: bp-core/bp-core-functions.php:2877
8521
+ msgctxt "email post type label"
8522
+ msgid "Edit Email"
8523
+ msgstr ""
8524
+
8525
+ #: bp-core/bp-core-functions.php:2878
8526
+ msgctxt "email post type label"
8527
+ msgid "Filter email list"
8528
+ msgstr ""
8529
+
8530
+ #: bp-core/bp-core-functions.php:2879
8531
+ msgctxt "email post type label"
8532
+ msgid "Email list"
8533
+ msgstr ""
8534
+
8535
+ #: bp-core/bp-core-functions.php:2880
8536
+ msgctxt "email post type label"
8537
+ msgid "Email list navigation"
8538
+ msgstr ""
8539
+
8540
+ #: bp-core/bp-core-functions.php:2882
8541
+ msgctxt "email post type label"
8542
+ msgid "BuddyPress Emails"
8543
+ msgstr ""
8544
+
8545
+ #: bp-core/bp-core-functions.php:2883
8546
+ msgctxt "email post type label"
8547
+ msgid "New Email"
8548
+ msgstr ""
8549
+
8550
+ #: bp-core/bp-core-functions.php:2884
8551
+ msgctxt "email post type label"
8552
+ msgid "No emails found"
8553
+ msgstr ""
8554
+
8555
+ #: bp-core/bp-core-functions.php:2885
8556
+ msgctxt "email post type label"
8557
+ msgid "No emails found in Trash"
8558
+ msgstr ""
8559
+
8560
+ #: bp-core/bp-core-functions.php:2886
8561
+ msgctxt "email post type label"
8562
+ msgid "Search Emails"
8563
+ msgstr ""
8564
+
8565
+ #: bp-core/bp-core-functions.php:2888
8566
+ msgctxt "email post type label"
8567
+ msgid "Uploaded to this email"
8568
+ msgstr ""
8569
+
8570
+ #: bp-core/bp-core-functions.php:2889
8571
+ msgctxt "email post type label"
8572
+ msgid "View Email"
8573
+ msgstr ""
8574
+
8575
+ #: bp-core/bp-core-functions.php:2881
8576
+ msgctxt "email post type name"
8577
+ msgid "Emails"
8578
+ msgstr ""
8579
+
8580
+ #: bp-core/bp-core-functions.php:2887
8581
+ msgctxt "email post type singular name"
8582
+ msgid "Email"
8583
+ msgstr ""
8584
+
8585
+ #: bp-core/bp-core-functions.php:2965
8586
+ msgctxt "email type taxonomy label"
8587
+ msgid "New Email Situation"
8588
+ msgstr ""
8589
+
8590
+ #: bp-core/bp-core-functions.php:2966
8591
+ msgctxt "email type taxonomy label"
8592
+ msgid "All Email Situations"
8593
+ msgstr ""
8594
+
8595
+ #: bp-core/bp-core-functions.php:2967
8596
+ msgctxt "email type taxonomy label"
8597
+ msgid "Edit Email Situations"
8598
+ msgstr ""
8599
+
8600
+ #: bp-core/bp-core-functions.php:2968
8601
+ msgctxt "email type taxonomy label"
8602
+ msgid "Email list"
8603
+ msgstr ""
8604
+
8605
+ #: bp-core/bp-core-functions.php:2969
8606
+ msgctxt "email type taxonomy label"
8607
+ msgid "Email list navigation"
8608
+ msgstr ""
8609
+
8610
+ #: bp-core/bp-core-functions.php:2970
8611
+ msgctxt "email type taxonomy label"
8612
+ msgid "Situations"
8613
+ msgstr ""
8614
+
8615
+ #: bp-core/bp-core-functions.php:2972
8616
+ msgctxt "email type taxonomy label"
8617
+ msgid "New email situation name"
8618
+ msgstr ""
8619
+
8620
+ #: bp-core/bp-core-functions.php:2973
8621
+ msgctxt "email type taxonomy label"
8622
+ msgid "No email situations found."
8623
+ msgstr ""
8624
+
8625
+ #: bp-core/bp-core-functions.php:2974
8626
+ msgctxt "email type taxonomy label"
8627
+ msgid "No email situations"
8628
+ msgstr ""
8629
+
8630
+ #: bp-core/bp-core-functions.php:2975
8631
+ msgctxt "email type taxonomy label"
8632
+ msgid "Popular Email Situation"
8633
+ msgstr ""
8634
+
8635
+ #: bp-core/bp-core-functions.php:2976
8636
+ msgctxt "email type taxonomy label"
8637
+ msgid "Search Emails"
8638
+ msgstr ""
8639
+
8640
+ #: bp-core/bp-core-functions.php:2978
8641
+ msgctxt "email type taxonomy label"
8642
+ msgid "Update Email Situation"
8643
+ msgstr ""
8644
+
8645
+ #: bp-core/bp-core-functions.php:2979
8646
+ msgctxt "email type taxonomy label"
8647
+ msgid "View Email Situation"
8648
+ msgstr ""
8649
+
8650
+ #: bp-core/bp-core-functions.php:2971
8651
+ msgctxt "email type taxonomy name"
8652
+ msgid "Situation"
8653
+ msgstr ""
8654
+
8655
+ #: bp-core/bp-core-functions.php:2977
8656
+ msgctxt "email type taxonomy singular name"
8657
+ msgid "Email"
8658
+ msgstr ""
8659
+
8660
+ #: bp-core/bp-core-moderation.php:176
8661
+ msgctxt "Comment moderation"
8662
+ msgid "You have posted an inappropriate word."
8663
+ msgstr ""
8664
+
8665
+ #: bp-core/bp-core-moderation.php:289
8666
+ msgctxt "Comment blacklist"
8667
+ msgid "You have posted an inappropriate word."
8668
+ msgstr ""
8669
+
8670
+ #: bp-core/bp-core-taxonomy.php:33
8671
+ msgctxt "email type taxonomy description"
8672
+ msgid "BuddyPress email types"
8673
+ msgstr ""
8674
+
8675
+ #: bp-core/bp-core-template.php:542
8676
+ msgctxt "search form"
8677
+ msgid "Members"
8678
+ msgstr ""
8679
+
8680
+ #: bp-core/bp-core-template.php:546
8681
+ msgctxt "search form"
8682
+ msgid "Groups"
8683
+ msgstr ""
8684
+
8685
+ #: bp-core/bp-core-template.php:550
8686
+ msgctxt "search form"
8687
+ msgid "Blogs"
8688
+ msgstr ""
8689
+
8690
+ #: bp-core/bp-core-template.php:554
8691
+ msgctxt "search form"
8692
+ msgid "Forums"
8693
+ msgstr ""
8694
+
8695
+ #: bp-core/bp-core-template.php:557
8696
+ msgctxt "search form"
8697
+ msgid "Posts"
8698
+ msgstr ""
8699
+
8700
+ #: bp-core/bp-core-template.php:560
8701
+ msgctxt "search form"
8702
+ msgid "Search these:"
8703
+ msgstr ""
8704
+
8705
+ #: bp-core/bp-core-template.php:3186
8706
+ msgctxt "component directory title"
8707
+ msgid "Directory"
8708
+ msgstr ""
8709
+
8710
+ #: bp-core/bp-core-update.php:607
8711
+ msgctxt "component directory title"
8712
+ msgid "Site-Wide Activity"
8713
+ msgstr ""
8714
+
8715
+ #: bp-core/bp-core-update.php:608
8716
+ msgctxt "component directory title"
8717
+ msgid "Sites"
8718
+ msgstr ""
8719
+
8720
+ #: bp-core/bp-core-update.php:609
8721
+ msgctxt "component directory title"
8722
+ msgid "Groups"
8723
+ msgstr ""
8724
+
8725
+ #: bp-core/bp-core-update.php:610
8726
+ msgctxt "component directory title"
8727
+ msgid "Members"
8728
+ msgstr ""
8729
+
8730
+ #: bp-core/bp-core-template.php:3841
8731
+ msgctxt "recipient salutation"
8732
+ msgid "Hi %s,"
8733
+ msgstr ""
8734
+
8735
+ #: bp-core/classes/class-bp-admin.php:353
8736
+ #: bp-core/classes/class-bp-admin.php:354
8737
+ msgctxt "email menu label"
8738
+ msgid "Customize"
8739
+ msgstr ""
8740
+
8741
+ #: bp-core/classes/class-bp-admin.php:407
8742
+ msgctxt "BuddyPress setting tab"
8743
+ msgid "Profile Settings"
8744
+ msgstr ""
8745
+
8746
+ #: bp-core/classes/class-bp-admin.php:693
8747
+ msgctxt "About screen, website links"
8748
+ msgid "Learn more:"
8749
+ msgstr ""
8750
+
8751
+ #: bp-core/classes/class-bp-admin.php:693
8752
+ msgctxt "About screen, link to project blog"
8753
+ msgid "News"
8754
+ msgstr ""
8755
+
8756
+ #: bp-core/classes/class-bp-admin.php:693
8757
+ msgctxt "About screen, link to support site"
8758
+ msgid "Support"
8759
+ msgstr ""
8760
+
8761
+ #: bp-core/classes/class-bp-admin.php:693
8762
+ msgctxt "About screen, link to documentation"
8763
+ msgid "Documentation"
8764
+ msgstr ""
8765
+
8766
+ #: bp-core/classes/class-bp-admin.php:693
8767
+ msgctxt "About screen, link to development blog"
8768
+ msgid "Development Blog"
8769
+ msgstr ""
8770
+
8771
+ #: bp-core/classes/class-bp-admin.php:695
8772
+ msgctxt "official Twitter accounts:"
8773
+ msgid "Twitter:"
8774
+ msgstr ""
8775
+
8776
+ #: bp-core/classes/class-bp-admin.php:695
8777
+ msgctxt "@buddypress twitter account name"
8778
+ msgid "BuddyPress"
8779
+ msgstr ""
8780
+
8781
+ #: bp-core/classes/class-bp-admin.php:695
8782
+ msgctxt "@bptrac twitter account name"
8783
+ msgid "Trac"
8784
+ msgstr ""
8785
+
8786
+ #: bp-core/classes/class-bp-admin.php:695
8787
+ msgctxt "@buddypressdev twitter account name"
8788
+ msgid "Development"
8789
+ msgstr ""
8790
+
8791
+ #: bp-core/classes/class-bp-admin.php:958
8792
+ msgctxt "Email post type"
8793
+ msgid "Situations"
8794
+ msgstr ""
8795
+
8796
+ #: bp-core/classes/class-bp-attachment-avatar.php:56
8797
+ msgctxt "avatar types separator"
8798
+ msgid ","
8799
+ msgstr ""
8800
+
8801
+ #: bp-core/classes/class-bp-attachment-cover-image.php:56
8802
+ msgctxt "cover image types separator"
8803
+ msgid ","
8804
+ msgstr ""
8805
+
8806
+ #: bp-core/classes/class-bp-attachment.php:481
8807
+ msgctxt "Attachment source file"
8808
+ msgid "source file"
8809
+ msgstr ""
8810
+
8811
+ #: bp-core/classes/class-bp-attachment.php:483
8812
+ msgctxt "Attachment destination file"
8813
+ msgid "destination file"
8814
+ msgstr ""
8815
+
8816
+ #: bp-core/classes/class-bp-core-login-widget.php:28
8817
+ msgctxt "Title of the login widget"
8818
+ msgid "(BuddyPress) Log In"
8819
+ msgstr ""
8820
+
8821
+ #: bp-core/classes/class-bp-core.php:308
8822
+ msgctxt "email post type description"
8823
+ msgid "BuddyPress emails"
8824
+ msgstr ""
8825
+
8826
+ #: bp-forums/bp-forums-template.php:358 bp-forums/bp-forums-template.php:658
8827
+ msgctxt "Forum topic pagination previous text"
8828
+ msgid "&larr;"
8829
+ msgstr ""
8830
+
8831
+ #: bp-forums/bp-forums-template.php:359 bp-forums/bp-forums-template.php:659
8832
+ msgctxt "Forum topic pagination next text"
8833
+ msgid "&rarr;"
8834
+ msgstr ""
8835
+
8836
+ #: bp-forums/bp-forums-template.php:2280
8837
+ msgctxt "Forum thread pagination previous text"
8838
+ msgid "&larr;"
8839
+ msgstr ""
8840
+
8841
+ #: bp-forums/bp-forums-template.php:2281
8842
+ msgctxt "Forum thread pagination next text"
8843
+ msgid "&rarr;"
8844
+ msgstr ""
8845
+
8846
+ #: bp-friends/bp-friends-screens.php:115
8847
+ msgctxt "Friend settings on notification settings page"
8848
+ msgid "Friends"
8849
+ msgstr ""
8850
+
8851
+ #: bp-friends/bp-friends-screens.php:124
8852
+ msgctxt "Friend settings on notification settings page"
8853
+ msgid "A member sends you a friendship request"
8854
+ msgstr ""
8855
+
8856
+ #: bp-friends/bp-friends-screens.php:136
8857
+ msgctxt "Friend settings on notification settings page"
8858
+ msgid "A member accepts your friendship request"
8859
+ msgstr ""
8860
+
8861
+ #: bp-friends/classes/class-bp-friends-component.php:30
8862
+ msgctxt "Friends screen page <title>"
8863
+ msgid "Friend Connections"
8864
+ msgstr ""
8865
+
8866
+ #: bp-friends/classes/class-bp-friends-component.php:164
8867
+ msgctxt "Friends screen sub nav"
8868
+ msgid "Friendships"
8869
+ msgstr ""
8870
+
8871
+ #: bp-friends/classes/class-bp-friends-component.php:174
8872
+ msgctxt "Friends screen sub nav"
8873
+ msgid "Requests"
8874
+ msgstr ""
8875
+
8876
+ #: bp-friends/classes/class-bp-friends-component.php:209
8877
+ #. translators: %s: Pending friend request count for the current user
8878
+ msgctxt "My Account Friends menu"
8879
+ msgid "Friends %s"
8880
+ msgstr ""
8881
+
8882
+ #: bp-friends/classes/class-bp-friends-component.php:218
8883
+ msgctxt "My Account Friends menu"
8884
+ msgid "Friends"
8885
+ msgstr ""
8886
+
8887
+ #: bp-friends/classes/class-bp-friends-component.php:214
8888
+ #. translators: %s: Pending friend request count for the current user
8889
+ msgctxt "My Account Friends menu sub nav"
8890
+ msgid "Pending Requests %s"
8891
+ msgstr ""
8892
+
8893
+ #: bp-friends/classes/class-bp-friends-component.php:219
8894
+ msgctxt "My Account Friends menu sub nav"
8895
+ msgid "No Pending Requests"
8896
+ msgstr ""
8897
+
8898
+ #: bp-friends/classes/class-bp-friends-component.php:234
8899
+ msgctxt "My Account Friends menu sub nav"
8900
+ msgid "Friendships"
8901
+ msgstr ""
8902
+
8903
+ #: bp-groups/bp-groups-admin.php:32
8904
+ msgctxt "Admin Groups page title"
8905
+ msgid "Groups"
8906
+ msgstr ""
8907
+
8908
+ #: bp-groups/bp-groups-admin.php:33
8909
+ msgctxt "Admin Groups menu"
8910
+ msgid "Groups"
8911
+ msgstr ""
8912
+
8913
+ #: bp-groups/bp-groups-admin.php:128
8914
+ msgctxt "group admin edit screen"
8915
+ msgid "Save"
8916
+ msgstr ""
8917
+
8918
+ #: bp-groups/bp-groups-admin.php:129
8919
+ msgctxt "group admin edit screen"
8920
+ msgid "Settings"
8921
+ msgstr ""
8922
+
8923
+ #: bp-groups/bp-groups-admin.php:130
8924
+ msgctxt "group admin edit screen"
8925
+ msgid "Add New Members"
8926
+ msgstr ""
8927
+
8928
+ #: bp-groups/bp-groups-admin.php:131
8929
+ msgctxt "group admin edit screen"
8930
+ msgid "Manage Members"
8931
+ msgstr ""
8932
+
8933
+ #: bp-groups/bp-groups-admin.php:138
8934
+ msgctxt "groups admin edit screen"
8935
+ msgid "Group Type"
8936
+ msgstr ""
8937
+
8938
+ #: bp-groups/bp-groups-admin.php:163
8939
+ msgctxt "Groups per page (screen options)"
8940
+ msgid "Groups"
8941
+ msgstr ""
8942
+
8943
+ #: bp-groups/bp-groups-admin.php:918
8944
+ msgctxt "Group member user_id in group admin"
8945
+ msgid "ID"
8946
+ msgstr ""
8947
+
8948
+ #: bp-groups/bp-groups-admin.php:919
8949
+ msgctxt "Group member name in group admin"
8950
+ msgid "Name"
8951
+ msgstr ""
8952
+
8953
+ #: bp-groups/bp-groups-admin.php:920
8954
+ msgctxt "Group member role in group admin"
8955
+ msgid "Group Role"
8956
+ msgstr ""
8957
+
8958
+ #: bp-groups/bp-groups-admin.php:1173
8959
+ msgctxt "Group members pagination in group admin"
8960
+ msgid "Viewing %1$s - %2$s of %3$s member"
8961
+ msgid_plural "Viewing %1$s - %2$s of %3$s members"
8962
+ msgstr[0] ""
8963
+ msgstr[1] ""
8964
+
8965
+ #: bp-groups/bp-groups-adminbar.php:67
8966
+ msgctxt "Group WP Admin Bar manage links"
8967
+ msgid "Edit Group %s"
8968
+ msgstr ""
8969
+
8970
+ #: bp-groups/bp-groups-adminbar.php:71
8971
+ msgctxt "Group WP Admin Bar delete link"
8972
+ msgid "%s Group"
8973
+ msgstr ""
8974
+
8975
+ #: bp-groups/bp-groups-notifications.php:34
8976
+ msgctxt "Group update email text"
8977
+ msgid "* Name changed from \"%s\" to \"%s\"."
8978
+ msgstr ""
8979
+
8980
+ #: bp-groups/bp-groups-notifications.php:42
8981
+ msgctxt "Group update email text"
8982
+ msgid "* Description changed from \"%s\" to \"%s\"."
8983
+ msgstr ""
8984
+
8985
+ #: bp-groups/bp-groups-notifications.php:50
8986
+ msgctxt "Group update email text"
8987
+ msgid "* Permalink changed from \"%s\" to \"%s\"."
8988
+ msgstr ""
8989
+
8990
+ #: bp-groups/bp-groups-screens.php:1478
8991
+ msgctxt "Group settings on notification settings page"
8992
+ msgid "Groups"
8993
+ msgstr ""
8994
+
8995
+ #: bp-groups/bp-groups-screens.php:1487
8996
+ msgctxt "group settings on notification settings page"
8997
+ msgid "A member invites you to join a group"
8998
+ msgstr ""
8999
+
9000
+ #: bp-groups/bp-groups-screens.php:1499
9001
+ msgctxt "group settings on notification settings page"
9002
+ msgid "Group information is updated"
9003
+ msgstr ""
9004
+
9005
+ #: bp-groups/bp-groups-screens.php:1511
9006
+ msgctxt "group settings on notification settings page"
9007
+ msgid "You are promoted to a group administrator or moderator"
9008
+ msgstr ""
9009
+
9010
+ #: bp-groups/bp-groups-screens.php:1523
9011
+ msgctxt "group settings on notification settings page"
9012
+ msgid "A member requests to join a private group for which you are an admin"
9013
+ msgstr ""
9014
+
9015
+ #: bp-groups/bp-groups-screens.php:1535
9016
+ msgctxt "group settings on notification settings page"
9017
+ msgid "Your request to join a group has been approved or denied"
9018
+ msgstr ""
9019
+
9020
+ #: bp-groups/bp-groups-template.php:94
9021
+ msgctxt "group type URL base"
9022
+ msgid "type"
9023
+ msgstr ""
9024
+
9025
+ #: bp-groups/classes/class-bp-groups-component.php:105
9026
+ msgctxt "Group screen page <title>"
9027
+ msgid "User Groups"
9028
+ msgstr ""
9029
+
9030
+ #: bp-groups/classes/class-bp-groups-component.php:189
9031
+ msgctxt "Component directory search"
9032
+ msgid "Search Groups..."
9033
+ msgstr ""
9034
+
9035
+ #: bp-groups/classes/class-bp-groups-component.php:319
9036
+ msgctxt "Group screen nav"
9037
+ msgid "Details"
9038
+ msgstr ""
9039
+
9040
+ #: bp-groups/classes/class-bp-groups-component.php:323
9041
+ msgctxt "Group screen nav"
9042
+ msgid "Settings"
9043
+ msgstr ""
9044
+
9045
+ #: bp-groups/classes/class-bp-groups-component.php:332
9046
+ msgctxt "Group screen nav"
9047
+ msgid "Photo"
9048
+ msgstr ""
9049
+
9050
+ #: bp-groups/classes/class-bp-groups-component.php:339
9051
+ msgctxt "Group screen nav"
9052
+ msgid "Cover Image"
9053
+ msgstr ""
9054
+
9055
+ #: bp-groups/classes/class-bp-groups-component.php:347
9056
+ msgctxt "Group screen nav"
9057
+ msgid "Invites"
9058
+ msgstr ""
9059
+
9060
+ #: bp-groups/classes/class-bp-groups-component.php:555
9061
+ msgctxt "Group screen nav"
9062
+ msgid "Request Membership"
9063
+ msgstr ""
9064
+
9065
+ #: bp-groups/classes/class-bp-groups-component.php:461
9066
+ #. translators: %s: Group count for the current user
9067
+ msgctxt "Group screen nav with counter"
9068
+ msgid "Groups %s"
9069
+ msgstr ""
9070
+
9071
+ #: bp-groups/classes/class-bp-groups-component.php:469
9072
+ msgctxt "Group screen nav without counter"
9073
+ msgid "Groups"
9074
+ msgstr ""
9075
+
9076
+ #: bp-groups/classes/class-bp-groups-component.php:535
9077
+ msgctxt "Group screen navigation title"
9078
+ msgid "Home"
9079
+ msgstr ""
9080
+
9081
+ #: bp-groups/classes/class-bp-groups-component.php:567
9082
+ msgctxt "My Group screen nav"
9083
+ msgid "Forum"
9084
+ msgstr ""
9085
+
9086
+ #: bp-groups/classes/class-bp-groups-component.php:584
9087
+ msgctxt "My Group screen nav"
9088
+ msgid "Activity"
9089
+ msgstr ""
9090
+
9091
+ #: bp-groups/classes/class-bp-groups-component.php:600
9092
+ msgctxt "My Group screen nav"
9093
+ msgid "Members %s"
9094
+ msgstr ""
9095
+
9096
+ #: bp-groups/classes/class-bp-groups-component.php:614
9097
+ msgctxt "My Group screen nav"
9098
+ msgid "Send Invites"
9099
+ msgstr ""
9100
+
9101
+ #: bp-groups/classes/class-bp-groups-component.php:629
9102
+ msgctxt "My Group screen nav"
9103
+ msgid "Manage"
9104
+ msgstr ""
9105
+
9106
+ #: bp-groups/classes/class-bp-groups-component.php:742
9107
+ msgctxt "My Account Groups"
9108
+ msgid "Groups"
9109
+ msgstr ""
9110
+
9111
+ #: bp-groups/classes/class-bp-groups-component.php:743
9112
+ msgctxt "My Account Groups sub nav"
9113
+ msgid "No Pending Invites"
9114
+ msgstr ""
9115
+
9116
+ #: bp-groups/classes/class-bp-groups-component.php:754
9117
+ #. translators: %s: Group invitation count for the current user
9118
+ msgctxt "My Account Groups sub nav"
9119
+ msgid "Pending Invites %s"
9120
+ msgstr ""
9121
+
9122
+ #: bp-groups/classes/class-bp-groups-component.php:771
9123
+ msgctxt "My Account Groups sub nav"
9124
+ msgid "Memberships"
9125
+ msgstr ""
9126
+
9127
+ #: bp-groups/classes/class-bp-groups-component.php:790
9128
+ msgctxt "My Account Groups sub nav"
9129
+ msgid "Create a Group"
9130
+ msgstr ""
9131
+
9132
+ #: bp-groups/classes/class-bp-groups-component.php:748
9133
+ #. translators: %s: Group invitation count for the current user
9134
+ msgctxt "My Account Groups nav"
9135
+ msgid "Groups %s"
9136
+ msgstr ""
9137
+
9138
+ #: bp-groups/classes/class-bp-groups-component.php:811
9139
+ msgctxt "My Groups page <title>"
9140
+ msgid "Memberships"
9141
+ msgstr ""
9142
+
9143
+ #: bp-groups/classes/class-bp-groups-list-table.php:395
9144
+ msgctxt "Groups admin Group Name column header"
9145
+ msgid "Name"
9146
+ msgstr ""
9147
+
9148
+ #: bp-groups/classes/class-bp-groups-list-table.php:396
9149
+ msgctxt "Groups admin Group Description column header"
9150
+ msgid "Description"
9151
+ msgstr ""
9152
+
9153
+ #: bp-groups/classes/class-bp-groups-list-table.php:397
9154
+ msgctxt "Groups admin Privacy Status column header"
9155
+ msgid "Status"
9156
+ msgstr ""
9157
+
9158
+ #: bp-groups/classes/class-bp-groups-list-table.php:398
9159
+ msgctxt "Groups admin Members column header"
9160
+ msgid "Members"
9161
+ msgstr ""
9162
+
9163
+ #: bp-groups/classes/class-bp-groups-list-table.php:399
9164
+ msgctxt "Groups admin Last Active column header"
9165
+ msgid "Last Active"
9166
+ msgstr ""
9167
+
9168
+ #: bp-groups/classes/class-bp-groups-list-table.php:699
9169
+ msgctxt "Label for the WP groups table group type column"
9170
+ msgid "Group Type"
9171
+ msgstr ""
9172
+
9173
+ #: bp-groups/classes/class-bp-groups-template.php:295
9174
+ msgctxt "Group pagination previous text"
9175
+ msgid "&larr;"
9176
+ msgstr ""
9177
+
9178
+ #: bp-groups/classes/class-bp-groups-template.php:296
9179
+ msgctxt "Group pagination next text"
9180
+ msgid "&rarr;"
9181
+ msgstr ""
9182
+
9183
+ #: bp-groups/classes/class-bp-groups-theme-compat.php:177
9184
+ msgctxt "Group creation page"
9185
+ msgid "Groups"
9186
+ msgstr ""
9187
+
9188
+ #: bp-members/bp-members-template.php:126
9189
+ msgctxt "member type URL base"
9190
+ msgid "type"
9191
+ msgstr ""
9192
+
9193
+ #: bp-members/bp-members-template.php:1043
9194
+ msgctxt "member latest update in member directory"
9195
+ msgid "- &quot;%s&quot;"
9196
+ msgstr ""
9197
+
9198
+ #: bp-members/bp-members-template.php:1208
9199
+ msgctxt "Records the timestamp that the user registered into the activity stream"
9200
+ msgid "registered %s"
9201
+ msgstr ""
9202
+
9203
+ #: bp-members/classes/class-bp-core-members-template.php:191
9204
+ msgctxt "Member pagination previous text"
9205
+ msgid "&larr;"
9206
+ msgstr ""
9207
+
9208
+ #: bp-members/classes/class-bp-core-members-template.php:192
9209
+ msgctxt "Member pagination next text"
9210
+ msgid "&rarr;"
9211
+ msgstr ""
9212
+
9213
+ #: bp-members/classes/class-bp-members-admin.php:791
9214
+ msgctxt "members user-admin edit screen"
9215
+ msgid "Status"
9216
+ msgstr ""
9217
+
9218
+ #: bp-members/classes/class-bp-members-admin.php:825
9219
+ msgctxt "members user-admin edit screen"
9220
+ msgid "%s's Stats"
9221
+ msgstr ""
9222
+
9223
+ #: bp-members/classes/class-bp-members-admin.php:837
9224
+ msgctxt "members user-admin edit screen"
9225
+ msgid "Member Type"
9226
+ msgstr ""
9227
+
9228
+ #: bp-members/classes/class-bp-members-admin.php:955
9229
+ #: bp-members/classes/class-bp-members-admin.php:1931
9230
+ msgctxt "user"
9231
+ msgid "Add New"
9232
+ msgstr ""
9233
+
9234
+ #: bp-members/classes/class-bp-members-admin.php:959
9235
+ #: bp-members/classes/class-bp-members-admin.php:1935
9236
+ msgctxt "user"
9237
+ msgid "Add Existing"
9238
+ msgstr ""
9239
+
9240
+ #: bp-members/classes/class-bp-members-admin.php:1418
9241
+ msgctxt "signup users"
9242
+ msgid "Pending %s"
9243
+ msgstr ""
9244
+
9245
+ #: bp-members/classes/class-bp-members-admin.php:1493
9246
+ msgctxt "Pending Accounts per page (screen options)"
9247
+ msgid "Pending Accounts"
9248
+ msgstr ""
9249
+
9250
+ #: bp-members/classes/class-bp-members-admin.php:1689
9251
+ msgctxt "signup resent"
9252
+ msgid "%s activation email successfully sent! "
9253
+ msgid_plural "%s activation emails successfully sent! "
9254
+ msgstr[0] ""
9255
+ msgstr[1] ""
9256
+
9257
+ #: bp-members/classes/class-bp-members-admin.php:1723
9258
+ msgctxt "signup resent"
9259
+ msgid "%s account successfully activated! "
9260
+ msgid_plural "%s accounts successfully activated! "
9261
+ msgstr[0] ""
9262
+ msgstr[1] ""
9263
+
9264
+ #: bp-members/classes/class-bp-members-admin.php:1700
9265
+ msgctxt "signup notsent"
9266
+ msgid "%s activation email was not sent."
9267
+ msgid_plural "%s activation emails were not sent."
9268
+ msgstr[0] ""
9269
+ msgstr[1] ""
9270
+
9271
+ #: bp-members/classes/class-bp-members-admin.php:1734
9272
+ msgctxt "signup notsent"
9273
+ msgid "%s account was not activated."
9274
+ msgid_plural "%s accounts were not activated."
9275
+ msgstr[0] ""
9276
+ msgstr[1] ""
9277
+
9278
+ #: bp-members/classes/class-bp-members-admin.php:1757
9279
+ msgctxt "signup deleted"
9280
+ msgid "%s sign-up successfully deleted!"
9281
+ msgid_plural "%s sign-ups successfully deleted!"
9282
+ msgstr[0] ""
9283
+ msgstr[1] ""
9284
+
9285
+ #: bp-members/classes/class-bp-members-admin.php:1768
9286
+ msgctxt "signup notdeleted"
9287
+ msgid "%s sign-up was not deleted."
9288
+ msgid_plural "%s sign-ups were not deleted."
9289
+ msgstr[0] ""
9290
+ msgstr[1] ""
9291
+
9292
+ #: bp-members/classes/class-bp-members-admin.php:2299
9293
+ msgctxt "Label for the WP users table member type column"
9294
+ msgid "Member Type"
9295
+ msgstr ""
9296
+
9297
+ #: bp-members/classes/class-bp-members-component.php:279
9298
+ msgctxt "Member profile main navigation"
9299
+ msgid "Profile"
9300
+ msgstr ""
9301
+
9302
+ #: bp-members/classes/class-bp-members-component.php:295
9303
+ msgctxt "Member profile view"
9304
+ msgid "View"
9305
+ msgstr ""
9306
+
9307
+ #: bp-members/classes/class-bp-members-component.php:309
9308
+ msgctxt "Member Home page"
9309
+ msgid "Home"
9310
+ msgstr ""
9311
+
9312
+ #: bp-members/classes/class-bp-members-list-table.php:166
9313
+ #: bp-members/classes/class-bp-members-ms-list-table.php:153
9314
+ msgctxt "Pending signup action"
9315
+ msgid "Activate"
9316
+ msgstr ""
9317
+
9318
+ #: bp-members/classes/class-bp-members-list-table.php:167
9319
+ #: bp-members/classes/class-bp-members-ms-list-table.php:154
9320
+ msgctxt "Pending signup action"
9321
+ msgid "Email"
9322
+ msgstr ""
9323
+
9324
+ #: bp-messages/bp-messages-template.php:1005
9325
+ msgctxt "Message dropdown filter"
9326
+ msgid "Read"
9327
+ msgstr ""
9328
+
9329
+ #: bp-messages/bp-messages-template.php:1006
9330
+ msgctxt "Message dropdown filter"
9331
+ msgid "Unread"
9332
+ msgstr ""
9333
+
9334
+ #: bp-messages/bp-messages-template.php:1007
9335
+ msgctxt "Message dropdown filter"
9336
+ msgid "All"
9337
+ msgstr ""
9338
+
9339
+ #: bp-messages/bp-messages-template.php:1012
9340
+ msgctxt "Message management markup"
9341
+ msgid "Mark as Read"
9342
+ msgstr ""
9343
+
9344
+ #: bp-messages/bp-messages-template.php:1013
9345
+ msgctxt "Message management markup"
9346
+ msgid "Mark as Unread"
9347
+ msgstr ""
9348
+
9349
+ #: bp-messages/classes/class-bp-messages-box-template.php:215
9350
+ msgctxt "Message pagination previous text"
9351
+ msgid "&larr;"
9352
+ msgstr ""
9353
+
9354
+ #: bp-messages/classes/class-bp-messages-box-template.php:216
9355
+ msgctxt "Message pagination next text"
9356
+ msgid "&rarr;"
9357
+ msgstr ""
9358
+
9359
+ #: bp-notifications/classes/class-bp-notifications-component.php:28
9360
+ msgctxt "Page <title>"
9361
+ msgid "Notifications"
9362
+ msgstr ""
9363
+
9364
+ #: bp-notifications/classes/class-bp-notifications-component.php:132
9365
+ #. translators: %s: Unread notification count for the current user
9366
+ msgctxt "Profile screen nav"
9367
+ msgid "Notifications %s"
9368
+ msgstr ""
9369
+
9370
+ #: bp-notifications/classes/class-bp-notifications-component.php:140
9371
+ msgctxt "Profile screen nav"
9372
+ msgid "Notifications"
9373
+ msgstr ""
9374
+
9375
+ #: bp-notifications/classes/class-bp-notifications-component.php:156
9376
+ msgctxt "Notification screen nav"
9377
+ msgid "Unread"
9378
+ msgstr ""
9379
+
9380
+ #: bp-notifications/classes/class-bp-notifications-component.php:167
9381
+ msgctxt "Notification screen nav"
9382
+ msgid "Read"
9383
+ msgstr ""
9384
+
9385
+ #: bp-notifications/classes/class-bp-notifications-component.php:203
9386
+ #. translators: %s: Unread notification count for the current user
9387
+ msgctxt "My Account Notification pending"
9388
+ msgid "Notifications %s"
9389
+ msgstr ""
9390
+
9391
+ #: bp-notifications/classes/class-bp-notifications-component.php:208
9392
+ #. translators: %s: Unread notification count for the current user
9393
+ msgctxt "My Account Notification pending"
9394
+ msgid "Unread %s"
9395
+ msgstr ""
9396
+
9397
+ #: bp-notifications/classes/class-bp-notifications-component.php:212
9398
+ msgctxt "My Account Notification"
9399
+ msgid "Notifications"
9400
+ msgstr ""
9401
+
9402
+ #: bp-notifications/classes/class-bp-notifications-component.php:213
9403
+ msgctxt "My Account Notification sub nav"
9404
+ msgid "Unread"
9405
+ msgstr ""
9406
+
9407
+ #: bp-notifications/classes/class-bp-notifications-component.php:237
9408
+ msgctxt "My Account Notification sub nav"
9409
+ msgid "Read"
9410
+ msgstr ""
9411
+
9412
+ #: bp-notifications/classes/class-bp-notifications-template.php:240
9413
+ msgctxt "Notifications pagination previous text"
9414
+ msgid "&larr;"
9415
+ msgstr ""
9416
+
9417
+ #: bp-notifications/classes/class-bp-notifications-template.php:241
9418
+ msgctxt "Notifications pagination next text"
9419
+ msgid "&rarr;"
9420
+ msgstr ""
9421
+
9422
+ #: bp-templates/bp-legacy/buddypress/activity/index.php:126
9423
+ msgctxt "Number of new activity mentions"
9424
+ msgid "%s new"
9425
+ msgid_plural "%s new"
9426
+ msgstr[0] ""
9427
+ msgstr[1] ""
9428
+
9429
+ #: bp-templates/bp-legacy/buddypress/assets/_attachments/uploader.php:24
9430
+ msgctxt "Uploader: Drop your file here - or - Select your File"
9431
+ msgid "or"
9432
+ msgstr ""
9433
+
9434
+ #: bp-templates/bp-legacy/buddypress/members/register.php:194
9435
+ #: bp-templates/bp-legacy/buddypress/members/single/profile/edit.php:64
9436
+ msgctxt "Change profile field visibility level"
9437
+ msgid "Change"
9438
+ msgstr ""
9439
+
9440
+ #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:34
9441
+ msgctxt "Group member count"
9442
+ msgid "%d member"
9443
+ msgid_plural "%d members"
9444
+ msgstr[0] ""
9445
+ msgstr[1] ""
9446
+
9447
+ #: bp-xprofile/bp-xprofile-admin.php:28
9448
+ msgctxt "xProfile admin page title"
9449
+ msgid "Profile Fields"
9450
+ msgstr ""
9451
+
9452
+ #: bp-xprofile/bp-xprofile-admin.php:28
9453
+ msgctxt "Admin Users menu"
9454
+ msgid "Profile Fields"
9455
+ msgstr ""
9456
+
9457
+ #: bp-xprofile/bp-xprofile-admin.php:138
9458
+ msgctxt "Settings page header"
9459
+ msgid "Profile Fields"
9460
+ msgstr ""
9461
+
9462
+ #: bp-xprofile/bp-xprofile-admin.php:194
9463
+ msgctxt "Edit Profile Fields Group"
9464
+ msgid "Edit Group"
9465
+ msgstr ""
9466
+
9467
+ #: bp-xprofile/bp-xprofile-admin.php:199
9468
+ msgctxt "Delete Profile Fields Group"
9469
+ msgid "Delete Group"
9470
+ msgstr ""
9471
+
9472
+ #: bp-xprofile/bp-xprofile-admin.php:274
9473
+ msgctxt "You have no profile fields groups."
9474
+ msgid "You have no groups."
9475
+ msgstr ""
9476
+
9477
+ #: bp-xprofile/bp-xprofile-admin.php:275
9478
+ msgctxt "Add New Profile Fields Group"
9479
+ msgid "Add New Group"
9480
+ msgstr ""
9481
+
9482
+ #: bp-xprofile/bp-xprofile-admin.php:368
9483
+ msgctxt "Error when deleting profile fields group"
9484
+ msgid "There was an error deleting the group. Please try again."
9485
+ msgstr ""
9486
+
9487
+ #: bp-xprofile/bp-xprofile-admin.php:371
9488
+ msgctxt "Profile fields group was deleted successfully"
9489
+ msgid "The group was deleted successfully."
9490
+ msgstr ""
9491
+
9492
+ #: bp-xprofile/bp-xprofile-admin.php:684
9493
+ msgctxt "Edit field link"
9494
+ msgid "Edit"
9495
+ msgstr ""
9496
+
9497
+ #: bp-xprofile/bp-xprofile-admin.php:689
9498
+ msgctxt "Delete field link"
9499
+ msgid "Delete"
9500
+ msgstr ""
9501
+
9502
+ #: bp-xprofile/bp-xprofile-admin.php:735
9503
+ msgctxt "xprofile field type category"
9504
+ msgid "Other"
9505
+ msgstr ""
9506
+
9507
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-checkbox.php:28
9508
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-multiselectbox.php:28
9509
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php:28
9510
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-selectbox.php:28
9511
+ msgctxt "xprofile field type category"
9512
+ msgid "Multi Fields"
9513
+ msgstr ""
9514
+
9515
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:28
9516
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-number.php:28
9517
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-textarea.php:28
9518
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-textbox.php:28
9519
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-url.php:28
9520
+ msgctxt "xprofile field type category"
9521
+ msgid "Single Fields"
9522
+ msgstr ""
9523
+
9524
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:49
9525
+ msgctxt "Component page <title>"
9526
+ msgid "Extended Profiles"
9527
+ msgstr ""
9528
+
9529
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:135
9530
+ msgctxt "Visibility level setting"
9531
+ msgid "Everyone"
9532
+ msgstr ""
9533
+
9534
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:139
9535
+ msgctxt "Visibility level setting"
9536
+ msgid "Only Me"
9537
+ msgstr ""
9538
+
9539
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:143
9540
+ msgctxt "Visibility level setting"
9541
+ msgid "All Members"
9542
+ msgstr ""
9543
+
9544
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:150
9545
+ msgctxt "Visibility level setting"
9546
+ msgid "My Friends"
9547
+ msgstr ""
9548
+
9549
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:206
9550
+ msgctxt "Profile header menu"
9551
+ msgid "Profile"
9552
+ msgstr ""
9553
+
9554
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:216
9555
+ msgctxt "Profile header sub menu"
9556
+ msgid "View"
9557
+ msgstr ""
9558
+
9559
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:226
9560
+ msgctxt "Profile header sub menu"
9561
+ msgid "Edit"
9562
+ msgstr ""
9563
+
9564
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:238
9565
+ msgctxt "Profile header sub menu"
9566
+ msgid "Change Profile Photo"
9567
+ msgstr ""
9568
+
9569
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:251
9570
+ msgctxt "Profile header sub menu"
9571
+ msgid "Change Cover Image"
9572
+ msgstr ""
9573
+
9574
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:294
9575
+ msgctxt "Profile settings sub nav"
9576
+ msgid "Profile Visibility"
9577
+ msgstr ""
9578
+
9579
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:323
9580
+ msgctxt "My Account Profile"
9581
+ msgid "Profile"
9582
+ msgstr ""
9583
+
9584
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:331
9585
+ msgctxt "My Account Profile sub nav"
9586
+ msgid "View"
9587
+ msgstr ""
9588
+
9589
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:340
9590
+ msgctxt "My Account Profile sub nav"
9591
+ msgid "Edit"
9592
+ msgstr ""
9593
+
9594
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:350
9595
+ msgctxt "My Account Profile sub nav"
9596
+ msgid "Change Profile Photo"
9597
+ msgstr ""
9598
+
9599
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:360
9600
+ msgctxt "My Account Profile sub nav"
9601
+ msgid "Change Cover Image"
9602
+ msgstr ""
9603
+
9604
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:390
9605
+ msgctxt "Page title"
9606
+ msgid "My Profile"
9607
+ msgstr ""
9608
+
9609
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:395
9610
+ msgctxt "Avatar alt"
9611
+ msgid "Profile picture of %s"
9612
+ msgstr ""
9613
+
9614
+ #: bp-xprofile/classes/class-bp-xprofile-component.php:440
9615
+ msgctxt "My Account Settings sub nav"
9616
+ msgid "Profile"
9617
+ msgstr ""
9618
+
9619
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-checkbox.php:29
9620
+ msgctxt "xprofile field type"
9621
+ msgid "Checkboxes"
9622
+ msgstr ""
9623
+
9624
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php:29
9625
+ msgctxt "xprofile field type"
9626
+ msgid "Date Selector"
9627
+ msgstr ""
9628
+
9629
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-multiselectbox.php:29
9630
+ msgctxt "xprofile field type"
9631
+ msgid "Multi Select Box"
9632
+ msgstr ""
9633
+
9634
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-number.php:29
9635
+ msgctxt "xprofile field type"
9636
+ msgid "Number"
9637
+ msgstr ""
9638
+
9639
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php:29
9640
+ msgctxt "xprofile field type"
9641
+ msgid "Radio Buttons"
9642
+ msgstr ""
9643
+
9644
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-selectbox.php:29
9645
+ msgctxt "xprofile field type"
9646
+ msgid "Drop Down Select Box"
9647
+ msgstr ""
9648
+
9649
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-textarea.php:29
9650
+ msgctxt "xprofile field type"
9651
+ msgid "Multi-line Text Area"
9652
+ msgstr ""
9653
+
9654
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-textbox.php:29
9655
+ msgctxt "xprofile field type"
9656
+ msgid "Text Box"
9657
+ msgstr ""
9658
+
9659
+ #: bp-xprofile/classes/class-bp-xprofile-field-type-url.php:29
9660
+ msgctxt "xprofile field type"
9661
+ msgid "URL"
9662
+ msgstr ""
9663
+
9664
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1341
9665
+ msgctxt "XProfile admin edit field"
9666
+ msgid "Name (required)"
9667
+ msgstr ""
9668
+
9669
+ #: bp-xprofile/classes/class-bp-xprofile-field.php:1347
9670
+ msgctxt "XProfile admin edit field"
9671
+ msgid "Description"
9672
+ msgstr ""
9673
+
9674
+ #: bp-xprofile/classes/class-bp-xprofile-user-admin.php:151
9675
+ msgctxt "xprofile user-admin edit screen"
9676
+ msgid "User marked as a spammer"
9677
+ msgstr ""
9678
+
9679
+ #: bp-xprofile/classes/class-bp-xprofile-user-admin.php:163
9680
+ msgctxt "xprofile user-admin edit screen"
9681
+ msgid "Profile Photo"
9682
+ msgstr ""
class-buddypress.php CHANGED
@@ -293,7 +293,7 @@ class BuddyPress {
293
 
294
  /** Versions **********************************************************/
295
 
296
- $this->version = '2.9.3';
297
  $this->db_version = 11105;
298
 
299
  /** Loading ***********************************************************/
293
 
294
  /** Versions **********************************************************/
295
 
296
+ $this->version = '2.9.4';
297
  $this->db_version = 11105;
298
 
299
  /** Loading ***********************************************************/
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: johnjamesjacoby, DJPaul, boonebgorges, r-a-y, imath, mercime, tw2113, dcavins, hnla
3
  Tags: social networking, activity, profiles, messaging, friends, groups, forums, notifications, settings, social, community, networks, networking
4
  Requires at least: 4.4
5
- Tested up to: 4.9.2
6
  Requires PHP: 5.3
7
- Stable tag: 2.9.3
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -117,10 +117,10 @@ Please consider helping translate BuddyPress at our <a href="https://translate.w
117
 
118
  == Upgrade Notice ==
119
 
120
- = 2.9.3 =
121
- See: https://codex.buddypress.org/releases/version-2-9-3/
122
 
123
  == Changelog ==
124
 
125
- = 2.9.3 =
126
- See: https://codex.buddypress.org/releases/version-2-9-3/
2
  Contributors: johnjamesjacoby, DJPaul, boonebgorges, r-a-y, imath, mercime, tw2113, dcavins, hnla
3
  Tags: social networking, activity, profiles, messaging, friends, groups, forums, notifications, settings, social, community, networks, networking
4
  Requires at least: 4.4
5
+ Tested up to: 4.9.4
6
  Requires PHP: 5.3
7
+ Stable tag: 2.9.4
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
117
 
118
  == Upgrade Notice ==
119
 
120
+ = 2.9.4 =
121
+ See: https://codex.buddypress.org/releases/version-2-9-4/
122
 
123
  == Changelog ==
124
 
125
+ = 2.9.4 =
126
+ See: https://codex.buddypress.org/releases/version-2-9-4/