wpForo Forum - Version 2.0.4

Version Description

Download this release

Release Info

Developer Tomdever
Plugin Icon 128x128 wpForo Forum
Version 2.0.4
Comparing to
See all releases

Code changes from version 2.0.3 to 2.0.4

admin/assets/js/backend.js CHANGED
@@ -166,13 +166,6 @@ jQuery(document).ready(function ($) {
166
  }
167
  });
168
  });
169
-
170
- $( 'body' ).on('click', '.wpforo-menu-shortcodes .wpforo-menu-shortcodes-head', {}, function(){
171
- var $this = $( this );
172
- var wrap = $this.closest( '.wpforo-menu-shortcodes' );
173
- var body = $( '.wpforo-menu-shortcodes-body', wrap );
174
- body.toggle();
175
- });
176
  });
177
 
178
  function get_parentid (arr, depth) {
166
  }
167
  });
168
  });
 
 
 
 
 
 
 
169
  });
170
 
171
  function get_parentid (arr, depth) {
admin/pages/overview.php CHANGED
@@ -21,7 +21,7 @@ if( ! defined( 'ABSPATH' ) ) exit;
21
  <?php _e( 'Welcome to wpForo', 'wpforo' ); echo ' ' . esc_html( WPFORO_VERSION ) ?>
22
  </p>
23
  <p style="margin:0; font-size:14px; font-family:'Lucida Bright', 'DejaVu Serif', Georgia, serif">
24
- <?php _e( 'Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.
25
  The "Extended", "Simplified", "Q&A" and "Threaded" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. If you found some issue or bug please open a support topic in wpForo Support forum at wpForo.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews.
26
  If you didn\'t like wpForo please leave a list of issues and requirements you\'d like us to fix and add in our support forum. We\'re here to help you and improve wpForo as much as possible.',
27
  'wpforo'
21
  <?php _e( 'Welcome to wpForo', 'wpforo' ); echo ' ' . esc_html( WPFORO_VERSION ) ?>
22
  </p>
23
  <p style="margin:0; font-size:14px; font-family:'Lucida Bright', 'DejaVu Serif', Georgia, serif">
24
+ <?php _e( 'Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.
25
  The "Extended", "Simplified", "Q&A" and "Threaded" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. If you found some issue or bug please open a support topic in wpForo Support forum at wpForo.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews.
26
  If you didn\'t like wpForo please leave a list of issues and requirements you\'d like us to fix and add in our support forum. We\'re here to help you and improve wpForo as much as possible.',
27
  'wpforo'
assets/js/ajax.js CHANGED
@@ -1700,7 +1700,7 @@ $wpf(document).ready(function ($) {
1700
  wpforo_wrap.on('focusout', '.wpf-topic-create form .wpf-field-name-title', {}, function(){
1701
  setTimeout(function(){
1702
  $( '.wpf-topic-create form .wpf-field-name-title .wpf-suggested-topics-list' ).remove();
1703
- }, 1000);
1704
  });
1705
 
1706
  });
1700
  wpforo_wrap.on('focusout', '.wpf-topic-create form .wpf-field-name-title', {}, function(){
1701
  setTimeout(function(){
1702
  $( '.wpf-topic-create form .wpf-field-name-title .wpf-suggested-topics-list' ).remove();
1703
+ }, 100);
1704
  });
1705
 
1706
  });
classes/Actions.php CHANGED
@@ -1742,7 +1742,7 @@ class Actions {
1742
  $title = trim( wpfval( $_POST, 'title' ) );
1743
  $topicids = WPF()->topic->search( $title, 'title' );
1744
  if( $topicids ){
1745
- $topics = WPF()->topic->get_topics( [ 'include' => $topicids, 'row_count' => 10, 'orderby' => 'created' ] );
1746
  if( $topics ){
1747
  $topics = array_map( function( $topic ){
1748
  $topic['url'] = WPF()->topic->get_topic_url( $topic );
1742
  $title = trim( wpfval( $_POST, 'title' ) );
1743
  $topicids = WPF()->topic->search( $title, 'title' );
1744
  if( $topicids ){
1745
+ $topics = WPF()->topic->get_topics( [ 'include' => $topicids, 'row_count' => apply_filters( 'wpforo_suggested_topics_limit', 5 ), 'orderby' => 'created' ] );
1746
  if( $topics ){
1747
  $topics = array_map( function( $topic ){
1748
  $topic['url'] = WPF()->topic->get_topic_url( $topic );
classes/Template.php CHANGED
@@ -799,9 +799,10 @@ class Template {
799
  }
800
 
801
  function nav_menu() {
802
- if( has_nav_menu( 'wpforo-menu' ) ) {
 
803
  $defaults = [
804
- 'theme_location' => 'wpforo-menu',
805
  'menu' => '',
806
  'container' => '',
807
  'container_class' => '',
799
  }
800
 
801
  function nav_menu() {
802
+ $location = wpforo_prefix_slug( 'menu' );
803
+ if( has_nav_menu( $location ) ) {
804
  $defaults = [
805
+ 'theme_location' => $location,
806
  'menu' => '',
807
  'container' => '',
808
  'container_class' => '',
includes/functions-template.php CHANGED
@@ -2,7 +2,11 @@
2
  // Exit if accessed directly
3
  if( ! defined( 'ABSPATH' ) ) exit;
4
 
5
- register_nav_menus( [ 'wpforo-menu' => esc_html__( 'wpForo Menu', 'wpforo' ), ] );
 
 
 
 
6
 
7
  add_filter(
8
  'wp_get_nav_menu_items',
2
  // Exit if accessed directly
3
  if( ! defined( 'ABSPATH' ) ) exit;
4
 
5
+ add_action('wpforo_after_init_base_classes', function(){
6
+ foreach ( WPF()->board->get_active_boardids() as $boardid ){
7
+ register_nav_menus( [ str_replace( '_', '-', WPF()->generate_prefix( $boardid ) ) . 'menu' => esc_html__( 'wpForo Menu', 'wpforo' ) . ( $boardid ? ' #' . $boardid : ''), ] );
8
+ }
9
+ });
10
 
11
  add_filter(
12
  'wp_get_nav_menu_items',
includes/functions.php CHANGED
@@ -394,6 +394,10 @@ function wpforo_url( $path = '', $route = null, $scheme = null ) {
394
 
395
  $path = trim( trim( $route, '/\\' ) . '/' . trim( $path, '/\\' ), '/\\' );
396
 
 
 
 
 
397
  $url = home_url( $path, $scheme );
398
  //-START- check is url maybe WordPress home
399
  $maybe_home_url = trim( preg_replace( '#/?index\.php/?(\?.*)?$#isu', '', $url ), '/\\' );
@@ -2655,7 +2659,7 @@ function wpforo_wrap_in_all_addons_css() {
2655
  wpforo_update_option( 'dissmissed', WPF()->dissmissed );
2656
  }
2657
 
2658
- add_action( 'admin_notices', function() {
2659
  if( ! (int) wpfval( WPF()->dissmissed, 'addons_css_update' ) ) {
2660
  $has_addon = false;
2661
  foreach( wpforo_get_addons_info() as $addon ) {
@@ -2670,7 +2674,7 @@ add_action( 'admin_notices', function() {
2670
  $message .= '<a href="' . admin_url( wp_nonce_url( 'admin.php?page=' . wpforo_prefix_slug( 'settings' ) . '&wpfaction=update_addons_css', 'wpforo-update-addons-css' ) ) . '" class="button button-primary">' . __( 'Update CSS >>', 'wpforo' ) . '</a>';
2671
  printf( '<div class="%1$s"><p>%2$s</p></div>', $class, $message );
2672
  }
2673
- } );
2674
 
2675
  /**
2676
  * @param string $url
394
 
395
  $path = trim( trim( $route, '/\\' ) . '/' . trim( $path, '/\\' ), '/\\' );
396
 
397
+ if( function_exists( 'pll_default_language' ) && function_exists( 'PLL' ) ){
398
+ if( ! PLL()->options['hide_default'] && $lng = pll_default_language() ) $path = $lng . '/' . $path;
399
+ }
400
+
401
  $url = home_url( $path, $scheme );
402
  //-START- check is url maybe WordPress home
403
  $maybe_home_url = trim( preg_replace( '#/?index\.php/?(\?.*)?$#isu', '', $url ), '/\\' );
2659
  wpforo_update_option( 'dissmissed', WPF()->dissmissed );
2660
  }
2661
 
2662
+ /*add_action( 'admin_notices', function() {
2663
  if( ! (int) wpfval( WPF()->dissmissed, 'addons_css_update' ) ) {
2664
  $has_addon = false;
2665
  foreach( wpforo_get_addons_info() as $addon ) {
2674
  $message .= '<a href="' . admin_url( wp_nonce_url( 'admin.php?page=' . wpforo_prefix_slug( 'settings' ) . '&wpfaction=update_addons_css', 'wpforo-update-addons-css' ) ) . '" class="button button-primary">' . __( 'Update CSS >>', 'wpforo' ) . '</a>';
2675
  printf( '<div class="%1$s"><p>%2$s</p></div>', $class, $message );
2676
  }
2677
+ } );*/
2678
 
2679
  /**
2680
  * @param string $url
includes/hooks.php CHANGED
@@ -19,7 +19,7 @@ function wpforo_notice_show() {
19
  add_action( 'wp_footer', 'wpforo_notice_show' );
20
 
21
  add_action( 'show_admin_bar', function( $show_admin_bar ) {
22
- if( ! is_super_admin() && is_user_logged_in() && ! array_intersect( [ 'editor', 'administrator', 'author', ], (array) WPF()->wp_current_user->roles ) ) {
23
  $show_admin_bar = (bool) array_intersect( WPF()->current_user_groupids, wpforo_setting( 'general', 'admin_bar' ) );
24
  }
25
 
@@ -35,13 +35,25 @@ add_action( 'admin_notices', function () {
35
  <tr><td> " . wpforo_phrase( 'login', false ) . ": </td><td> /%wpforo-login%/ </td></tr>";
36
  printf(
37
  '<div class="notice notice-warning wpforo-menu-shortcodes">
38
- <p class="wpforo-menu-shortcodes-head">wpForo Menu Shortcodes hint <span class="dashicons dashicons-arrow-down-alt2"></span></p>
39
  <div class="wpforo-menu-shortcodes-body" style="display: none;">
40
  <hr/><table>%1$s</table>
41
  </div>
42
  </div>',
43
  $message
44
  );
 
 
 
 
 
 
 
 
 
 
 
 
45
  }
46
  });
47
 
@@ -250,13 +262,16 @@ add_action( 'wpforo_actions_end', function() {
250
  } );
251
 
252
  add_filter( 'rewrite_rules_array', function( $rules ) {
 
 
 
253
  if( ! WPF()->board->get_current( 'is_standalone' ) ) {
254
  $boards = WPF()->board->get_boards( [ 'status' => true ] );
255
  foreach( $boards as $board ) {
256
  $route = urldecode( $board['slug'] );
257
  $route = preg_replace( '#^/?index\.php/?#isu', '', $route );
258
  $route = trim( $route, '/' );
259
- $pattern = '(?:([a-z]{2,3})/)?' . preg_quote( $route ) . '(?:/|$).*$';
260
  $to_url = 'index.php?lang=$matches[1]&page_id=' . $board['pageid'];
261
  if( ! array_key_exists( $pattern, $rules ) ) $rules = array_merge( [ $pattern => $to_url ], $rules );
262
  }
@@ -267,7 +282,7 @@ add_filter( 'rewrite_rules_array', function( $rules ) {
267
  $route = urldecode( $route );
268
  $route = preg_replace( '#^/?index\.php/?#isu', '', $route );
269
  $route = trim( $route, '/' );
270
- $pattern = '(?:([a-z]{2,3})/)?' . preg_quote( $route ) . '(?:/|$).*$';
271
  $to_url = 'index.php?lang=$matches[1]&page_id=' . $pageid;
272
  if( ! array_key_exists( $pattern, $rules ) ) $rules = array_merge( [ $pattern => $to_url ], $rules );
273
  }
@@ -1254,11 +1269,11 @@ function wpforo_admin_enqueue() {
1254
  'jquery-touch-punch',
1255
  ], false, true );
1256
 
1257
- wp_enqueue_style( 'wpforo-admin' );
1258
- wp_enqueue_script( 'wpforo-backend-js' );
1259
- wp_enqueue_style( 'wpforo-iconpicker-css' );
1260
- wp_enqueue_script( 'wpforo-iconpicker-js' );
1261
  if( ! empty( $_GET['page'] ) && strpos( $_GET['page'], 'wpforo' ) === 0 ) {
 
 
 
 
1262
  wp_enqueue_style( 'wpforo-font-awesome' );
1263
  wp_enqueue_script( 'jquery' );
1264
  wp_enqueue_script( 'jquery-ui-core' );
19
  add_action( 'wp_footer', 'wpforo_notice_show' );
20
 
21
  add_action( 'show_admin_bar', function( $show_admin_bar ) {
22
+ if( ! is_super_admin() && is_user_logged_in() && WPF()->wp_current_user && ! array_intersect( [ 'editor', 'administrator', 'author', ], (array) WPF()->wp_current_user->roles ) ) {
23
  $show_admin_bar = (bool) array_intersect( WPF()->current_user_groupids, wpforo_setting( 'general', 'admin_bar' ) );
24
  }
25
 
35
  <tr><td> " . wpforo_phrase( 'login', false ) . ": </td><td> /%wpforo-login%/ </td></tr>";
36
  printf(
37
  '<div class="notice notice-warning wpforo-menu-shortcodes">
38
+ <p class="wpforo-menu-shortcodes-head" style="cursor: pointer;">wpForo Menu Shortcodes hint <span class="dashicons dashicons-arrow-down-alt2"></span></p>
39
  <div class="wpforo-menu-shortcodes-body" style="display: none;">
40
  <hr/><table>%1$s</table>
41
  </div>
42
  </div>',
43
  $message
44
  );
45
+ ?>
46
+ <script>
47
+ jQuery(document).ready( function($){
48
+ $( 'body' ).on('click', '.wpforo-menu-shortcodes .wpforo-menu-shortcodes-head', {}, function(){
49
+ var $this = $( this );
50
+ var wrap = $this.closest( '.wpforo-menu-shortcodes' );
51
+ var body = $( '.wpforo-menu-shortcodes-body', wrap );
52
+ body.toggle();
53
+ });
54
+ } );
55
+ </script>
56
+ <?php
57
  }
58
  });
59
 
262
  } );
263
 
264
  add_filter( 'rewrite_rules_array', function( $rules ) {
265
+ $rewrite_prefix = '(?:([a-z]{2,3})/)?';
266
+ if( function_exists('pll_languages_list') ) $rewrite_prefix = '(?:(' . implode('|', pll_languages_list()) . ')/)?';
267
+
268
  if( ! WPF()->board->get_current( 'is_standalone' ) ) {
269
  $boards = WPF()->board->get_boards( [ 'status' => true ] );
270
  foreach( $boards as $board ) {
271
  $route = urldecode( $board['slug'] );
272
  $route = preg_replace( '#^/?index\.php/?#isu', '', $route );
273
  $route = trim( $route, '/' );
274
+ $pattern = $rewrite_prefix . preg_quote( $route ) . '(?:/|$).*$';
275
  $to_url = 'index.php?lang=$matches[1]&page_id=' . $board['pageid'];
276
  if( ! array_key_exists( $pattern, $rules ) ) $rules = array_merge( [ $pattern => $to_url ], $rules );
277
  }
282
  $route = urldecode( $route );
283
  $route = preg_replace( '#^/?index\.php/?#isu', '', $route );
284
  $route = trim( $route, '/' );
285
+ $pattern = $rewrite_prefix . preg_quote( $route ) . '(?:/|$).*$';
286
  $to_url = 'index.php?lang=$matches[1]&page_id=' . $pageid;
287
  if( ! array_key_exists( $pattern, $rules ) ) $rules = array_merge( [ $pattern => $to_url ], $rules );
288
  }
1269
  'jquery-touch-punch',
1270
  ], false, true );
1271
 
 
 
 
 
1272
  if( ! empty( $_GET['page'] ) && strpos( $_GET['page'], 'wpforo' ) === 0 ) {
1273
+ wp_enqueue_style( 'wpforo-admin' );
1274
+ wp_enqueue_script( 'wpforo-backend-js' );
1275
+ wp_enqueue_style( 'wpforo-iconpicker-css' );
1276
+ wp_enqueue_script( 'wpforo-iconpicker-js' );
1277
  wp_enqueue_style( 'wpforo-font-awesome' );
1278
  wp_enqueue_script( 'jquery' );
1279
  wp_enqueue_script( 'jquery-ui-core' );
includes/installation.php CHANGED
@@ -556,8 +556,9 @@ function wpforo_import_default_board() {
556
  }
557
 
558
  function wpforo_import_default_menus() {
559
- $menu_name = wpforo_phrase( 'wpForo Navigation', false, 'orig' );
560
- $menu_location = 'wpforo-menu';
 
561
  $menu_exists = wp_get_nav_menu_object( $menu_name );
562
  if( ! $menu_exists ) {
563
  $id = [];
556
  }
557
 
558
  function wpforo_import_default_menus() {
559
+ $boardid = WPF()->board->get_current( 'boardid' );
560
+ $menu_name = wpforo_phrase( 'wpForo Navigation', false, 'orig' ) . ( $boardid ? ' #' . $boardid : '' );
561
+ $menu_location = wpforo_prefix_slug( 'menu' );
562
  $menu_exists = wp_get_nav_menu_object( $menu_name );
563
  if( ! $menu_exists ) {
564
  $id = [];
includes/phrases.php CHANGED
@@ -503,7 +503,7 @@ $wpforo_phrases = [
503
  'Subscription Emails' => __('Subscription Emails', 'wpforo'),
504
  'Subscriptions' => __('Subscriptions', 'wpforo'),
505
  'Support Forum' => __('Support Forum', 'wpforo'),
506
- 'Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The "Extended' => __('Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The "Extended', 'wpforo'),
507
  'Thank you for using wpForo. wpForo is a premium forum plugin which will always be available for free. There will never be paid and pro versions of this forum board. However this is a very large and hard project so we also develop paid addons (extensions), which will financially help us to keep improving and adding new features to the free wpForo plugin. Forum addons will also be actively developed. The first addons "Advanced Media Uploader' => __('Thank you for using wpForo. wpForo is a premium forum plugin which will always be available for free. There will never be paid and pro versions of this forum board. However this is a very large and hard project so we also develop paid addons (extensions), which will financially help us to keep improving and adding new features to the free wpForo plugin. Forum addons will also be actively developed. The first addons "Advanced Media Uploader', 'wpforo'),
508
  'The "slug" is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' => __('The "slug" is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.', 'wpforo'),
509
  'The position in the menu order wpForo should appear.' => __('The position in the menu order wpForo should appear.', 'wpforo'),
503
  'Subscription Emails' => __('Subscription Emails', 'wpforo'),
504
  'Subscriptions' => __('Subscriptions', 'wpforo'),
505
  'Support Forum' => __('Support Forum', 'wpforo'),
506
+ 'Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The "Extended' => __('Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The "Extended', 'wpforo'),
507
  'Thank you for using wpForo. wpForo is a premium forum plugin which will always be available for free. There will never be paid and pro versions of this forum board. However this is a very large and hard project so we also develop paid addons (extensions), which will financially help us to keep improving and adding new features to the free wpForo plugin. Forum addons will also be actively developed. The first addons "Advanced Media Uploader' => __('Thank you for using wpForo. wpForo is a premium forum plugin which will always be available for free. There will never be paid and pro versions of this forum board. However this is a very large and hard project so we also develop paid addons (extensions), which will financially help us to keep improving and adding new features to the free wpForo plugin. Forum addons will also be actively developed. The first addons "Advanced Media Uploader', 'wpforo'),
508
  'The "slug" is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' => __('The "slug" is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.', 'wpforo'),
509
  'The position in the menu order wpForo should appear.' => __('The position in the menu order wpForo should appear.', 'wpforo'),
languages/wpforo-ar.po CHANGED
@@ -4710,8 +4710,8 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4710
  msgstr "تنسيق الملف غير صحيح. التنسيقات المسموح بها: jpeg، jpg، png، gif."
4711
 
4712
  #: wpf-includes/wpf-phrases.php:506
4713
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4714
- msgstr "شكرًا لك على استخدام wpForo! wpForo هي لوحة إعلانات احترافية لـ WorPress ، وهي برنامج المنتدى الوحيد الذي يأتي مع نظام قوالب تنسيق متعددة. 'متوسعة"
4715
 
4716
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4717
  msgid "Visit Forum"
@@ -7398,12 +7398,12 @@ msgstr "معلومات عامة"
7398
 
7399
  #: wpf-admin/dashboard.php:24
7400
  msgid ""
7401
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7402
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7403
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7404
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7405
  msgstr ""
7406
- "شكرًا لك على استخدام wpForo! wpForo هو لوحة إعلانات احترافية لـ WorPress ، وهو برنامج المنتدى الوحيد الذي يأتي مع نظام قوالب تنسيق متعدد.\n"
7407
  "تناسب التنسيقات 'الموسعة' و 'المبسطة' و 'الأسئلة والأجوبة' تقريبًا جميع أنواع احتياجات المناقشات. يمكنك استخدام wpForo للمجتمعات الصغيرة والكبيرة للغاية.\n"
7408
  "<br /> إذا وجدت مشكلة أو خطأ ، فيرجى فتح موضوع دعم في صفحة البرنامج المساعد أو في منتدى الدعم الخاص بنا على gVectors.com. إذا كنت تحب wpForo ، فالرجاء ترك بعض المراجعات الجيدة لهذا البرنامج المساعد. نحن حقا بحاجة الى تقييماتك الجيدة.\n"
7409
  "إذا لم يعجبك wpForo ، فيرجى ترك قائمة بالمشكلات والمتطلبات التي تريد منا إصلاحها وإضافتها في المستقبل القريب. نحن هنا لمساعدتك وتحسين wpForo قدر الإمكان."
4710
  msgstr "تنسيق الملف غير صحيح. التنسيقات المسموح بها: jpeg، jpg، png، gif."
4711
 
4712
  #: wpf-includes/wpf-phrases.php:506
4713
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4714
+ msgstr "شكرًا لك على استخدام wpForo! wpForo هي لوحة إعلانات احترافية لـ WordPress ، وهي برنامج المنتدى الوحيد الذي يأتي مع نظام قوالب تنسيق متعددة. 'متوسعة"
4715
 
4716
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4717
  msgid "Visit Forum"
7398
 
7399
  #: wpf-admin/dashboard.php:24
7400
  msgid ""
7401
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7402
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7403
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7404
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7405
  msgstr ""
7406
+ "شكرًا لك على استخدام wpForo! wpForo هو لوحة إعلانات احترافية لـ WordPress ، وهو برنامج المنتدى الوحيد الذي يأتي مع نظام قوالب تنسيق متعدد.\n"
7407
  "تناسب التنسيقات 'الموسعة' و 'المبسطة' و 'الأسئلة والأجوبة' تقريبًا جميع أنواع احتياجات المناقشات. يمكنك استخدام wpForo للمجتمعات الصغيرة والكبيرة للغاية.\n"
7408
  "<br /> إذا وجدت مشكلة أو خطأ ، فيرجى فتح موضوع دعم في صفحة البرنامج المساعد أو في منتدى الدعم الخاص بنا على gVectors.com. إذا كنت تحب wpForo ، فالرجاء ترك بعض المراجعات الجيدة لهذا البرنامج المساعد. نحن حقا بحاجة الى تقييماتك الجيدة.\n"
7409
  "إذا لم يعجبك wpForo ، فيرجى ترك قائمة بالمشكلات والمتطلبات التي تريد منا إصلاحها وإضافتها في المستقبل القريب. نحن هنا لمساعدتك وتحسين wpForo قدر الإمكان."
languages/wpforo-cs_CZ.po CHANGED
@@ -4705,8 +4705,8 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4705
  msgstr "Nesprávný formát souboru. Povolené formáty: jpeg, jpg, png, gif."
4706
 
4707
  #: wpf-includes/wpf-phrases.php:506
4708
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4709
- msgstr "Děkujeme, že používáte wpForo! wpForo je profesionální nástěnka pro WorPress a jediný software fóra, který je dodáván se systémem šablon Multi-layout. &quot;Rozšířené.&quot;"
4710
 
4711
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4712
  msgid "Visit Forum"
@@ -7393,12 +7393,12 @@ msgstr "Hlavní Informace"
7393
 
7394
  #: wpf-admin/dashboard.php:24
7395
  msgid ""
7396
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7397
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7398
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7399
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7400
  msgstr ""
7401
- "Děkujeme, že používáte wpForo! wpForo je profesionální vývěska pro WorPress a jediný software fóra, který je dodáván se systémem víceúrovňových šablon. \n"
7402
  " Rozložení \"Rozšířené \", \"Zjednodušené \" a \"Otázka a odpověď\" odpovídají téměř všem typům diskusních potřeb. Můžete použít wpForo pro malé a extrémně velké komunity. \n"
7403
  " <br /> Pokud jste narazili na nějaký problém nebo chybu, otevřete téma podpory na stránce pluginu nebo na našem fóru podpory na gVectors.com. Pokud se vám líbí wpForo, nechte prosím pro tento plugin nějakou dobrou recenzi. Opravdu potřebujeme vaše dobré recenze. \n"
7404
  " Pokud se vám nelíbilo wpForo, zanechte prosím seznam problémů a požadavků, které chcete v blízké budoucnosti opravit a přidat. Jsme tu, abychom vám pomohli a co nejvíce vylepšili wpForo."
4705
  msgstr "Nesprávný formát souboru. Povolené formáty: jpeg, jpg, png, gif."
4706
 
4707
  #: wpf-includes/wpf-phrases.php:506
4708
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4709
+ msgstr "Děkujeme, že používáte wpForo! wpForo je profesionální nástěnka pro WordPress a jediný software fóra, který je dodáván se systémem šablon Multi-layout. &quot;Rozšířené.&quot;"
4710
 
4711
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4712
  msgid "Visit Forum"
7393
 
7394
  #: wpf-admin/dashboard.php:24
7395
  msgid ""
7396
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7397
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7398
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7399
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7400
  msgstr ""
7401
+ "Děkujeme, že používáte wpForo! wpForo je profesionální vývěska pro WordPress a jediný software fóra, který je dodáván se systémem víceúrovňových šablon. \n"
7402
  " Rozložení \"Rozšířené \", \"Zjednodušené \" a \"Otázka a odpověď\" odpovídají téměř všem typům diskusních potřeb. Můžete použít wpForo pro malé a extrémně velké komunity. \n"
7403
  " <br /> Pokud jste narazili na nějaký problém nebo chybu, otevřete téma podpory na stránce pluginu nebo na našem fóru podpory na gVectors.com. Pokud se vám líbí wpForo, nechte prosím pro tento plugin nějakou dobrou recenzi. Opravdu potřebujeme vaše dobré recenze. \n"
7404
  " Pokud se vám nelíbilo wpForo, zanechte prosím seznam problémů a požadavků, které chcete v blízké budoucnosti opravit a přidat. Jsme tu, abychom vám pomohli a co nejvíce vylepšili wpForo."
languages/wpforo-da_DK.po CHANGED
@@ -4652,7 +4652,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4652
  msgstr "Forkert fil format. Tilladte fil formater: jpeg, jpg, png, gif"
4653
 
4654
  #: wpf-includes/wpf-phrases.php:506
4655
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4656
  msgstr "Tak fordi du bruger wpForo! wpForo er et professionel forum for WordPress, og det eneste forum software, som kommer med Multi-layout skabelon system."
4657
 
4658
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
@@ -7340,7 +7340,7 @@ msgstr "Generel information"
7340
 
7341
  #: wpf-admin/dashboard.php:24
7342
  msgid ""
7343
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7344
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7345
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7346
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4652
  msgstr "Forkert fil format. Tilladte fil formater: jpeg, jpg, png, gif"
4653
 
4654
  #: wpf-includes/wpf-phrases.php:506
4655
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4656
  msgstr "Tak fordi du bruger wpForo! wpForo er et professionel forum for WordPress, og det eneste forum software, som kommer med Multi-layout skabelon system."
4657
 
4658
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
7340
 
7341
  #: wpf-admin/dashboard.php:24
7342
  msgid ""
7343
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7344
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7345
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7346
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-de_DE.po CHANGED
@@ -147,7 +147,7 @@ msgstr "Willkommen bei wpForo"
147
  #: wpf-admin/dashboard.php:24
148
  msgid ""
149
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
150
- "WorPress, and the only forum software which comes with Multi-layout template "
151
  "system.\n"
152
  " The \"Extended\", \"Simplified\" and "
153
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
@@ -6534,7 +6534,7 @@ msgstr "Neue Themen abonnieren"
6534
  #: wpf-includes/wpf-phrases.php:506
6535
  msgid ""
6536
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
6537
- "WorPress, and the only forum software which comes with Multi-layout template "
6538
  "system. The \"Extended"
6539
  msgstr ""
6540
  "Vielen Dank für die Benutzung von wpForo! wpForo ist ein professionelles "
147
  #: wpf-admin/dashboard.php:24
148
  msgid ""
149
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
150
+ "WordPress, and the only forum software which comes with Multi-layout template "
151
  "system.\n"
152
  " The \"Extended\", \"Simplified\" and "
153
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
6534
  #: wpf-includes/wpf-phrases.php:506
6535
  msgid ""
6536
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
6537
+ "WordPress, and the only forum software which comes with Multi-layout template "
6538
  "system. The \"Extended"
6539
  msgstr ""
6540
  "Vielen Dank für die Benutzung von wpForo! wpForo ist ein professionelles "
languages/wpforo-el.po CHANGED
@@ -4705,7 +4705,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4705
  msgstr "Λάθος μορφή αρχείων. Επιτρεπόμενες μορφές: jpeg, jpg, png, gif."
4706
 
4707
  #: wpf-includes/wpf-phrases.php:506
4708
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4709
  msgstr "Ευχαριστούμε που χρησιμοποιείτε το wpForo! Το wpForo είναι είναι ένας επαγγελματικός πίνακας ενημέρωσης για το WordPress, και το μοναδικό λογισμικό συζητήσεων με σύστημα προτύπων Πολλαπλών διατάξεων Οι διατάξεις \"Εκτεταμένη"
4710
 
4711
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
@@ -7395,7 +7395,7 @@ msgstr "Γενικές Πληροφορίες"
7395
 
7396
  #: wpf-admin/dashboard.php:24
7397
  msgid ""
7398
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7399
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7400
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7401
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4705
  msgstr "Λάθος μορφή αρχείων. Επιτρεπόμενες μορφές: jpeg, jpg, png, gif."
4706
 
4707
  #: wpf-includes/wpf-phrases.php:506
4708
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4709
  msgstr "Ευχαριστούμε που χρησιμοποιείτε το wpForo! Το wpForo είναι είναι ένας επαγγελματικός πίνακας ενημέρωσης για το WordPress, και το μοναδικό λογισμικό συζητήσεων με σύστημα προτύπων Πολλαπλών διατάξεων Οι διατάξεις \"Εκτεταμένη"
4710
 
4711
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
7395
 
7396
  #: wpf-admin/dashboard.php:24
7397
  msgid ""
7398
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7399
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7400
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7401
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-es_ES.po CHANGED
@@ -4647,7 +4647,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4647
  msgstr "Formato de archivo incorrecto. Formatos permitidos: jpeg, jpg, png, gif."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
  msgstr "Gracias por usar wpForo! WpForo es un tablón de anuncios profesional para WordPress, y el único software de foro que viene con el sistema de plantillas de diseño múltiple. El \"Extendido"
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2648
@@ -7338,12 +7338,12 @@ msgstr "Información General"
7338
 
7339
  #: wpf-admin/dashboard.php:24
7340
  msgid ""
7341
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7342
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7343
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7344
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7345
  msgstr ""
7346
- "Gracias por usar wpForo! WpForo es un tablón de anuncios profesional para WorPress y el único software de foro que viene con sistema de plantillas de diseño múltiple.\n"
7347
  " Los diseños \"Extendido\", \"Simple\" y \"Preguntas y Respuestas\" se adaptan a casid todo tipo de necesidades. Puedes utilizar wpForo para pequeñas o para extremadamente grandes comunidades. \n"
7348
  " <br />Si encuentras algún problema o error, abre un tema de soporte en la página del plugin o en nuestro foro de soporte en gVectors.com. Si te gusta wpForo por favor deja una buena reseña de este plugin. Necesitamos de tus buenas críticas. \n"
7349
  " Si no te gusta wpForo por favor déjanos una lista de problemas y requisitios que te gustaría que arregláramos y añadamos en un futuro cercano. Estamos aquí para ayudarte y mejorar wpForo tanto como sea posible."
4647
  msgstr "Formato de archivo incorrecto. Formatos permitidos: jpeg, jpg, png, gif."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
  msgstr "Gracias por usar wpForo! WpForo es un tablón de anuncios profesional para WordPress, y el único software de foro que viene con el sistema de plantillas de diseño múltiple. El \"Extendido"
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2648
7338
 
7339
  #: wpf-admin/dashboard.php:24
7340
  msgid ""
7341
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7342
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7343
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7344
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7345
  msgstr ""
7346
+ "Gracias por usar wpForo! WpForo es un tablón de anuncios profesional para WordPress y el único software de foro que viene con sistema de plantillas de diseño múltiple.\n"
7347
  " Los diseños \"Extendido\", \"Simple\" y \"Preguntas y Respuestas\" se adaptan a casid todo tipo de necesidades. Puedes utilizar wpForo para pequeñas o para extremadamente grandes comunidades. \n"
7348
  " <br />Si encuentras algún problema o error, abre un tema de soporte en la página del plugin o en nuestro foro de soporte en gVectors.com. Si te gusta wpForo por favor deja una buena reseña de este plugin. Necesitamos de tus buenas críticas. \n"
7349
  " Si no te gusta wpForo por favor déjanos una lista de problemas y requisitios que te gustaría que arregláramos y añadamos en un futuro cercano. Estamos aquí para ayudarte y mejorar wpForo tanto como sea posible."
languages/wpforo-es_MX.po CHANGED
@@ -4647,7 +4647,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4647
  msgstr "Formato incorrecto, solo puede: jpeg, jpg, png, gif."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
  msgstr "Gracias por usar wpForo ! wpForo es un foro para Worpress profesional , y el único foro de software que viene con el sistema de plantillas con varios diseños ."
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
@@ -7332,7 +7332,7 @@ msgstr "Información General"
7332
 
7333
  #: wpf-admin/dashboard.php:24
7334
  msgid ""
7335
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7336
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7337
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7338
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4647
  msgstr "Formato incorrecto, solo puede: jpeg, jpg, png, gif."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
  msgstr "Gracias por usar wpForo ! wpForo es un foro para Worpress profesional , y el único foro de software que viene con el sistema de plantillas con varios diseños ."
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
7332
 
7333
  #: wpf-admin/dashboard.php:24
7334
  msgid ""
7335
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7336
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7337
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7338
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-fa_IR.po CHANGED
@@ -4647,7 +4647,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4647
  msgstr "فرمت فایل نادرست است. فرمت های مجاز: jpeg، jpg، png، gif."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
  msgstr "از اینکه از تالار گفتمان فورو استفاده می کنید، سپاسگزاریم. فورو یک تالار گفتمان حرفه ای برای وردپرس است، و تنها تالار گفتمانی است که شامل سیستم قالبی چند طرحی می باشد."
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
@@ -7335,7 +7335,7 @@ msgstr "اطلاعات عمومی"
7335
 
7336
  #: wpf-admin/dashboard.php:24
7337
  msgid ""
7338
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7339
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7340
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7341
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4647
  msgstr "فرمت فایل نادرست است. فرمت های مجاز: jpeg، jpg، png، gif."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
  msgstr "از اینکه از تالار گفتمان فورو استفاده می کنید، سپاسگزاریم. فورو یک تالار گفتمان حرفه ای برای وردپرس است، و تنها تالار گفتمانی است که شامل سیستم قالبی چند طرحی می باشد."
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
7335
 
7336
  #: wpf-admin/dashboard.php:24
7337
  msgid ""
7338
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7339
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7340
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7341
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-fr_CA.po CHANGED
@@ -149,7 +149,7 @@ msgstr ""
149
  #: wpf-admin/dashboard.php:29
150
  msgid ""
151
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
152
- "WorPress, and the only forum software which comes with Multi-layout template "
153
  "system.\n"
154
  " The \"Extended\", \"Simplified\" and "
155
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
@@ -163,7 +163,7 @@ msgid ""
163
  "We're here to help you and improve wpForo as much as possible."
164
  msgstr ""
165
  "Merci d'utiliser wpForo! WpForo est un babillard professionnel pour "
166
- "WorPress, et le seul logiciel de forum qui est livré avec le système de "
167
  "modèle de disposition multiple.\n"
168
  " Les formats \"Extended\", \"Simplified"
169
  "\" et \"Question &amp Answer\" s'adaptent à presque tous les types de "
@@ -4410,7 +4410,7 @@ msgstr "S'abonner aux nouveaux sujets"
4410
  #: wpf-includes/wpf-phrases.php:320
4411
  msgid ""
4412
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
4413
- "WorPress, and the only forum software which comes with Multi-layout template "
4414
  "system. The \"Extended"
4415
  msgstr ""
4416
  "Merci d'utiliser wpForo! WpForo est un forum professionnel pour WordPress, "
149
  #: wpf-admin/dashboard.php:29
150
  msgid ""
151
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
152
+ "WordPress, and the only forum software which comes with Multi-layout template "
153
  "system.\n"
154
  " The \"Extended\", \"Simplified\" and "
155
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
163
  "We're here to help you and improve wpForo as much as possible."
164
  msgstr ""
165
  "Merci d'utiliser wpForo! WpForo est un babillard professionnel pour "
166
+ "WordPress, et le seul logiciel de forum qui est livré avec le système de "
167
  "modèle de disposition multiple.\n"
168
  " Les formats \"Extended\", \"Simplified"
169
  "\" et \"Question &amp Answer\" s'adaptent à presque tous les types de "
4410
  #: wpf-includes/wpf-phrases.php:320
4411
  msgid ""
4412
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
4413
+ "WordPress, and the only forum software which comes with Multi-layout template "
4414
  "system. The \"Extended"
4415
  msgstr ""
4416
  "Merci d'utiliser wpForo! WpForo est un forum professionnel pour WordPress, "
languages/wpforo-fr_FR.po CHANGED
@@ -4702,7 +4702,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4702
  msgstr "Format de fichier incorrect. Formats autorisés: jpeg, jpg, png, gif."
4703
 
4704
  #: wpf-includes/wpf-phrases.php:506
4705
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4706
  msgstr "Merci d'utiliser wpForo ! WpForo est un forum professionnel pour WordPress, et le seul logiciel de forum qui est livré avec le système de modèle multi-disposition"
4707
 
4708
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
@@ -7390,12 +7390,12 @@ msgstr "Information Générale"
7390
 
7391
  #: wpf-admin/dashboard.php:24
7392
  msgid ""
7393
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7394
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7395
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7396
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7397
  msgstr ""
7398
- "Merci d'utiliser wpForo! WpForo est un babillard professionnel pour WorPress, et le seul logiciel de forum qui est livré avec le système de modèle de disposition multiple.\n"
7399
  " Les formats \"Extended\", \"Simplified\" et \"Question &amp Answer\" s'adaptent à presque tous les types de besoins de discussion. Vous pouvez utiliser wpForo pour les petites et très grandes communautés.\n"
7400
  " <br /> Si vous avez trouvé un problème ou un bug, ouvrez une rubrique de support dans la page de plugin ou dans notre forum de support sur gVectors.com. Si vous avez aimé wpForo s'il vous plaît laissez une bonne critique pour ce plugin. Nous avons vraiment besoin de vos bonnes critiques.\n"
7401
  " Si vous n'avez pas aimé wpForo s'il vous plaît laissez une liste de problèmes et les exigences que vous souhaitez nous fixer et ajouter dans un proche avenir. Nous sommes là pour vous aider et améliorer wpForo autant que possible."
4702
  msgstr "Format de fichier incorrect. Formats autorisés: jpeg, jpg, png, gif."
4703
 
4704
  #: wpf-includes/wpf-phrases.php:506
4705
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4706
  msgstr "Merci d'utiliser wpForo ! WpForo est un forum professionnel pour WordPress, et le seul logiciel de forum qui est livré avec le système de modèle multi-disposition"
4707
 
4708
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
7390
 
7391
  #: wpf-admin/dashboard.php:24
7392
  msgid ""
7393
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7394
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7395
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7396
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7397
  msgstr ""
7398
+ "Merci d'utiliser wpForo! WpForo est un babillard professionnel pour WordPress, et le seul logiciel de forum qui est livré avec le système de modèle de disposition multiple.\n"
7399
  " Les formats \"Extended\", \"Simplified\" et \"Question &amp Answer\" s'adaptent à presque tous les types de besoins de discussion. Vous pouvez utiliser wpForo pour les petites et très grandes communautés.\n"
7400
  " <br /> Si vous avez trouvé un problème ou un bug, ouvrez une rubrique de support dans la page de plugin ou dans notre forum de support sur gVectors.com. Si vous avez aimé wpForo s'il vous plaît laissez une bonne critique pour ce plugin. Nous avons vraiment besoin de vos bonnes critiques.\n"
7401
  " Si vous n'avez pas aimé wpForo s'il vous plaît laissez une liste de problèmes et les exigences que vous souhaitez nous fixer et ajouter dans un proche avenir. Nous sommes là pour vous aider et améliorer wpForo autant que possible."
languages/wpforo-he_IL.po CHANGED
@@ -4652,7 +4652,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4652
  msgstr "סוג קובץ שגוי. מותר פורמטים: jpeg, jpg, png, gif."
4653
 
4654
  #: wpf-includes/wpf-phrases.php:506
4655
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4656
  msgstr ""
4657
 
4658
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
@@ -7337,7 +7337,7 @@ msgstr "מידע כללי"
7337
 
7338
  #: wpf-admin/dashboard.php:24
7339
  msgid ""
7340
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7341
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7342
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7343
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4652
  msgstr "סוג קובץ שגוי. מותר פורמטים: jpeg, jpg, png, gif."
4653
 
4654
  #: wpf-includes/wpf-phrases.php:506
4655
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4656
  msgstr ""
4657
 
4658
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
7337
 
7338
  #: wpf-admin/dashboard.php:24
7339
  msgid ""
7340
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7341
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7342
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7343
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-hr.po CHANGED
@@ -142,7 +142,7 @@ msgstr "Dobro došli u wpForo"
142
  #: wpf-admin/dashboard.php:29
143
  msgid ""
144
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
145
- "WorPress, and the only forum software which comes with Multi-layout template "
146
  "system.\n"
147
  " The \"Extended\", \"Simplified\" and "
148
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
@@ -156,7 +156,7 @@ msgid ""
156
  "We're here to help you and improve wpForo as much as possible."
157
  msgstr ""
158
  "Hvala vam što koristite wpForo! wpForo je profesionalna oglasna ploča za "
159
- "WorPress, i jedini forum koji dolazi s Multi-layout sustavom.\n"
160
  " Možete koristiti wpForo za male i "
161
  "izuzetno velike zajednice.\n"
162
  " <br /> Ako ste pronašli neki problem ili "
@@ -4554,7 +4554,7 @@ msgstr "Prijava na nove teme"
4554
  #: wpf-includes/wpf-phrases.php:320
4555
  msgid ""
4556
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
4557
- "WorPress, and the only forum software which comes with Multi-layout template "
4558
  "system. The \"Extended"
4559
  msgstr ""
4560
  "Hvala vam što koristite wpForo! wpForo je profesionalna oglasna ploča za "
142
  #: wpf-admin/dashboard.php:29
143
  msgid ""
144
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
145
+ "WordPress, and the only forum software which comes with Multi-layout template "
146
  "system.\n"
147
  " The \"Extended\", \"Simplified\" and "
148
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
156
  "We're here to help you and improve wpForo as much as possible."
157
  msgstr ""
158
  "Hvala vam što koristite wpForo! wpForo je profesionalna oglasna ploča za "
159
+ "WordPress, i jedini forum koji dolazi s Multi-layout sustavom.\n"
160
  " Možete koristiti wpForo za male i "
161
  "izuzetno velike zajednice.\n"
162
  " <br /> Ako ste pronašli neki problem ili "
4554
  #: wpf-includes/wpf-phrases.php:320
4555
  msgid ""
4556
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
4557
+ "WordPress, and the only forum software which comes with Multi-layout template "
4558
  "system. The \"Extended"
4559
  msgstr ""
4560
  "Hvala vam što koristite wpForo! wpForo je profesionalna oglasna ploča za "
languages/wpforo-hu_HU.po CHANGED
@@ -4645,7 +4645,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4645
  msgstr "Nem megfelelő fájlformátum. A következő formátumok engedélyezettek: jpeg, jpg, png, gif."
4646
 
4647
  #: wpf-includes/wpf-phrases.php:506
4648
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4649
  msgstr "Köszönjük, hogy a wpForot használod! wpForo egy professzionális WordPress fórum, és az egyetlen fórumszoftver, ami többféle elrendezéssablont tartalmaz. A \"Kiterjesztett\", \"Egyszerű\" és \"Kérdések-válaszok\" elrendezések majdnem minden beszélgetéshez megfelelőek. A wpForot kicsi vagy hatalmas közösségek egyaránt használhatják. Ha problémát vagy hibát találtál, kérjük, nyiss egy támogatási témát a plugin oldalán vagy a gVectors.com támogatási fórumában. Ha tetszik a wpForo, akkor írj egy jó értékelést róla. Tényleg szükségünk van a jó értékelésekre. Ha nem tetszik a wpForo, akkor írd meg nekünk a problémákat és a kéréseket, hogy kijavíthassuk és hozzáadhassuk a közeljövőben. Azért vagyunk, hogy segítsünk neked és továbbfejlesszük a wpForot, ahogy csak lehet."
4650
 
4651
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2648
@@ -7336,7 +7336,7 @@ msgstr "Általános információk"
7336
 
7337
  #: wpf-admin/dashboard.php:24
7338
  msgid ""
7339
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7340
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7341
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7342
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4645
  msgstr "Nem megfelelő fájlformátum. A következő formátumok engedélyezettek: jpeg, jpg, png, gif."
4646
 
4647
  #: wpf-includes/wpf-phrases.php:506
4648
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4649
  msgstr "Köszönjük, hogy a wpForot használod! wpForo egy professzionális WordPress fórum, és az egyetlen fórumszoftver, ami többféle elrendezéssablont tartalmaz. A \"Kiterjesztett\", \"Egyszerű\" és \"Kérdések-válaszok\" elrendezések majdnem minden beszélgetéshez megfelelőek. A wpForot kicsi vagy hatalmas közösségek egyaránt használhatják. Ha problémát vagy hibát találtál, kérjük, nyiss egy támogatási témát a plugin oldalán vagy a gVectors.com támogatási fórumában. Ha tetszik a wpForo, akkor írj egy jó értékelést róla. Tényleg szükségünk van a jó értékelésekre. Ha nem tetszik a wpForo, akkor írd meg nekünk a problémákat és a kéréseket, hogy kijavíthassuk és hozzáadhassuk a közeljövőben. Azért vagyunk, hogy segítsünk neked és továbbfejlesszük a wpForot, ahogy csak lehet."
4650
 
4651
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2648
7336
 
7337
  #: wpf-admin/dashboard.php:24
7338
  msgid ""
7339
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7340
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7341
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7342
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-it_IT.po CHANGED
@@ -4705,8 +4705,8 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4705
  msgstr "Formato del file non corretto. Formati permessi: jpeg, jpg, png, gif."
4706
 
4707
  #: wpf-includes/wpf-phrases.php:506
4708
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4709
- msgstr "Grazie per aver usato wpForo! wpForo è una bacheca professionale per WorPress, e l'unico software forum che viene fornito con sistema di modelli multi-layout. La \"Estensione"
4710
 
4711
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4712
  msgid "Visit Forum"
@@ -7393,7 +7393,7 @@ msgstr "Informazioni generali"
7393
 
7394
  #: wpf-admin/dashboard.php:24
7395
  msgid ""
7396
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7397
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7398
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7399
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4705
  msgstr "Formato del file non corretto. Formati permessi: jpeg, jpg, png, gif."
4706
 
4707
  #: wpf-includes/wpf-phrases.php:506
4708
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4709
+ msgstr "Grazie per aver usato wpForo! wpForo è una bacheca professionale per WordPress, e l'unico software forum che viene fornito con sistema di modelli multi-layout. La \"Estensione"
4710
 
4711
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4712
  msgid "Visit Forum"
7393
 
7394
  #: wpf-admin/dashboard.php:24
7395
  msgid ""
7396
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7397
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7398
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7399
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-ja.po CHANGED
@@ -4658,7 +4658,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4658
  msgstr "ファイル形式が正しくありません。許可された形式: jpeg, jpg, png, gif"
4659
 
4660
  #: wpf-includes/wpf-phrases.php:506
4661
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4662
  msgstr "wpForo をご利用いただきありがとうございます! wpForo は WordPress 用のプロフェッショナルな掲示板で、マルチレイアウトのテンプレートシステムが付属している唯一のフォーラムソフトウェアです。\"拡張"
4663
 
4664
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
@@ -7346,7 +7346,7 @@ msgstr "一般的な情報"
7346
 
7347
  #: wpf-admin/dashboard.php:24
7348
  msgid ""
7349
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7350
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7351
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7352
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4658
  msgstr "ファイル形式が正しくありません。許可された形式: jpeg, jpg, png, gif"
4659
 
4660
  #: wpf-includes/wpf-phrases.php:506
4661
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4662
  msgstr "wpForo をご利用いただきありがとうございます! wpForo は WordPress 用のプロフェッショナルな掲示板で、マルチレイアウトのテンプレートシステムが付属している唯一のフォーラムソフトウェアです。\"拡張"
4663
 
4664
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
7346
 
7347
  #: wpf-admin/dashboard.php:24
7348
  msgid ""
7349
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7350
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7351
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7352
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-ko.po CHANGED
@@ -4647,7 +4647,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4647
  msgstr "잘못된 파일 형식. 허용된 형식: jpeg, jpg, png, gif."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
  msgstr "wpForo를 이용해 주셔서 감사합니다! wpForo는 워드프레스를 위한 전문적인 인터넷 게시판이며, 다중-레이아웃 템플릿 시스템을 갖춘 유일한 포럼 소프트웨어입니다. \"확장"
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
@@ -7335,7 +7335,7 @@ msgstr "일반 정보"
7335
 
7336
  #: wpf-admin/dashboard.php:24
7337
  msgid ""
7338
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7339
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7340
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7341
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4647
  msgstr "잘못된 파일 형식. 허용된 형식: jpeg, jpg, png, gif."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
  msgstr "wpForo를 이용해 주셔서 감사합니다! wpForo는 워드프레스를 위한 전문적인 인터넷 게시판이며, 다중-레이아웃 템플릿 시스템을 갖춘 유일한 포럼 소프트웨어입니다. \"확장"
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
7335
 
7336
  #: wpf-admin/dashboard.php:24
7337
  msgid ""
7338
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7339
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7340
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7341
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-ko_KR.po CHANGED
@@ -135,7 +135,7 @@ msgstr ""
135
  #: wpf-admin/dashboard.php:29
136
  msgid ""
137
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
138
- "WorPress, and the only forum software which comes with Multi-layout template "
139
  "system.\n"
140
  " The \"Extended\", \"Simplified\" and "
141
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
@@ -4292,7 +4292,7 @@ msgstr "새 주제를 구독 신청"
4292
  #: wpf-includes/wpf-phrases.php:320
4293
  msgid ""
4294
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
4295
- "WorPress, and the only forum software which comes with Multi-layout template "
4296
  "system. The \"Extended"
4297
  msgstr ""
4298
  "wpForo를 이용해 주셔서 감사합니다! wpForo는 워드프레스를 위한 전문적인 인터"
@@ -6042,7 +6042,7 @@ msgstr ""
6042
  #~ " It's on the Beta stage and we're "
6043
  #~ "working hard to reach the Gold 1.0.0 version as soon as possible. \n"
6044
  #~ " wpForo is a professional bulletin "
6045
- #~ "board for WorPress, and the only forum software which comes with Multi-"
6046
  #~ "layout template system.\n"
6047
  #~ " The \"Extended\", \"Simplified\" and "
6048
  #~ "\"Question &amp Answer\" layouts fit almost all type of discussions "
@@ -6091,7 +6091,7 @@ msgstr ""
6091
  #~ "and we were using it for our support community. Now it's ready for "
6092
  #~ "WordPress community as well. It's on the Beta stage and we're working "
6093
  #~ "hard to reach the Gold 1.0.0 version as soon as possible. wpForo is a "
6094
- #~ "professional bulletin board for WorPress, and the only forum software "
6095
  #~ "which comes with Multi-layout template system. The \"Extended"
6096
  #~ msgstr ""
6097
  #~ "wpForo를 사용해 주셔서 감사합니다! 이 포럼 개발은 2013년에 시작됐고 우리"
135
  #: wpf-admin/dashboard.php:29
136
  msgid ""
137
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
138
+ "WordPress, and the only forum software which comes with Multi-layout template "
139
  "system.\n"
140
  " The \"Extended\", \"Simplified\" and "
141
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
4292
  #: wpf-includes/wpf-phrases.php:320
4293
  msgid ""
4294
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
4295
+ "WordPress, and the only forum software which comes with Multi-layout template "
4296
  "system. The \"Extended"
4297
  msgstr ""
4298
  "wpForo를 이용해 주셔서 감사합니다! wpForo는 워드프레스를 위한 전문적인 인터"
6042
  #~ " It's on the Beta stage and we're "
6043
  #~ "working hard to reach the Gold 1.0.0 version as soon as possible. \n"
6044
  #~ " wpForo is a professional bulletin "
6045
+ #~ "board for WordPress, and the only forum software which comes with Multi-"
6046
  #~ "layout template system.\n"
6047
  #~ " The \"Extended\", \"Simplified\" and "
6048
  #~ "\"Question &amp Answer\" layouts fit almost all type of discussions "
6091
  #~ "and we were using it for our support community. Now it's ready for "
6092
  #~ "WordPress community as well. It's on the Beta stage and we're working "
6093
  #~ "hard to reach the Gold 1.0.0 version as soon as possible. wpForo is a "
6094
+ #~ "professional bulletin board for WordPress, and the only forum software "
6095
  #~ "which comes with Multi-layout template system. The \"Extended"
6096
  #~ msgstr ""
6097
  #~ "wpForo를 사용해 주셔서 감사합니다! 이 포럼 개발은 2013년에 시작됐고 우리"
languages/wpforo-lt_LT.po CHANGED
@@ -146,7 +146,7 @@ msgstr "Jus sveikina wpForo"
146
  #: wpf-admin/dashboard.php:29
147
  msgid ""
148
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
149
- "WorPress, and the only forum software which comes with Multi-layout template "
150
  "system.\n"
151
  " The \"Extended\", \"Simplified\" and "
152
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
@@ -4413,7 +4413,7 @@ msgstr "Prenumeruoti naujas temas"
4413
  #: wpf-includes/wpf-phrases.php:320
4414
  msgid ""
4415
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
4416
- "WorPress, and the only forum software which comes with Multi-layout template "
4417
  "system. The \"Extended"
4418
  msgstr ""
4419
  "Dėkojame, kad naudojatės wpForo! wpForo yra profesionali WordPress diskusijų "
146
  #: wpf-admin/dashboard.php:29
147
  msgid ""
148
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
149
+ "WordPress, and the only forum software which comes with Multi-layout template "
150
  "system.\n"
151
  " The \"Extended\", \"Simplified\" and "
152
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
4413
  #: wpf-includes/wpf-phrases.php:320
4414
  msgid ""
4415
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
4416
+ "WordPress, and the only forum software which comes with Multi-layout template "
4417
  "system. The \"Extended"
4418
  msgstr ""
4419
  "Dėkojame, kad naudojatės wpForo! wpForo yra profesionali WordPress diskusijų "
languages/wpforo-nl.po CHANGED
@@ -4689,7 +4689,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4689
  msgstr "Onjuiste bestandsindeling. Toegestane indelingen: jpeg, jpg, png, gif."
4690
 
4691
  #: wpf-includes/wpf-phrases.php:506
4692
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4693
  msgstr ""
4694
 
4695
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
@@ -7374,7 +7374,7 @@ msgstr "Algemene informatie"
7374
 
7375
  #: wpf-admin/dashboard.php:24
7376
  msgid ""
7377
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7378
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7379
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7380
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4689
  msgstr "Onjuiste bestandsindeling. Toegestane indelingen: jpeg, jpg, png, gif."
4690
 
4691
  #: wpf-includes/wpf-phrases.php:506
4692
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4693
  msgstr ""
4694
 
4695
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
7374
 
7375
  #: wpf-admin/dashboard.php:24
7376
  msgid ""
7377
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7378
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7379
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7380
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-nl_NL.po CHANGED
@@ -4619,7 +4619,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4619
  msgstr "Onjuiste bestandsindeling. Toegestane indelingen: jpeg, jpg, png, gif."
4620
 
4621
  #: wpf-includes/wpf-phrases.php:506
4622
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4623
  msgstr ""
4624
 
4625
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2648
@@ -7307,7 +7307,7 @@ msgstr "Algemene informatie"
7307
 
7308
  #: wpf-admin/dashboard.php:24
7309
  msgid ""
7310
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7311
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7312
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7313
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4619
  msgstr "Onjuiste bestandsindeling. Toegestane indelingen: jpeg, jpg, png, gif."
4620
 
4621
  #: wpf-includes/wpf-phrases.php:506
4622
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4623
  msgstr ""
4624
 
4625
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2648
7307
 
7308
  #: wpf-admin/dashboard.php:24
7309
  msgid ""
7310
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7311
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7312
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7313
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-pl.po CHANGED
@@ -4673,8 +4673,8 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4673
  msgstr "Nieprawidłowy format pliku. Dozwolone formaty: jpeg, jpg, png, gif."
4674
 
4675
  #: wpf-includes/wpf-phrases.php:506
4676
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4677
- msgstr "Dziękujemy za korzystanie z wpForo! wpForo to profesjonalna tablica ogłoszeń dla WorPress, i jedyne oprogramowanie forum, które jest wyposażone w system szablonów multi-layout. \"Rozszerzony"
4678
 
4679
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4680
  msgid "Visit Forum"
@@ -7363,12 +7363,12 @@ msgstr "Informacje ogólne"
7363
 
7364
  #: wpf-admin/dashboard.php:24
7365
  msgid ""
7366
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7367
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7368
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7369
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7370
  msgstr ""
7371
- "Dziękujemy za korzystanie z wpForo! wpForo to profesjonalna tablica ogłoszeń dla WorPress i jedyne oprogramowanie forum, które jest wyposażone w system szablonów multi-layout.\n"
7372
  " Układy \"Rozszerzone\", \"Uproszczone\" i \"Pytanie i odpowiedź\" pasują do niemal wszystkich potrzeb dyskusji. Możesz użyć wpForo dla małych i bardzo dużych społeczności.<br>Jeśli znalazłeś jakiś problem lub błąd, otwórz temat pomocy technicznej na stronie wtyczki lub na naszym forum pomocy technicznej pod gVectors.com. Jeśli podoba Ci się wpForo proszę zostawić dobrą recenzję dla tego pluginu. Naprawdę potrzebujemy twoich dobrych recenzji. \n"
7373
  " Jeśli nie podoba Ci się wpForo proszę zostawić listę problemów i wymagań, które chcesz nam naprawić i dodać w najbliższej przyszłości. Jesteśmy tutaj, aby pomóc I poprawić wpForo jak najwięcej."
7374
 
4673
  msgstr "Nieprawidłowy format pliku. Dozwolone formaty: jpeg, jpg, png, gif."
4674
 
4675
  #: wpf-includes/wpf-phrases.php:506
4676
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4677
+ msgstr "Dziękujemy za korzystanie z wpForo! wpForo to profesjonalna tablica ogłoszeń dla WordPress, i jedyne oprogramowanie forum, które jest wyposażone w system szablonów multi-layout. \"Rozszerzony"
4678
 
4679
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4680
  msgid "Visit Forum"
7363
 
7364
  #: wpf-admin/dashboard.php:24
7365
  msgid ""
7366
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7367
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7368
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7369
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7370
  msgstr ""
7371
+ "Dziękujemy za korzystanie z wpForo! wpForo to profesjonalna tablica ogłoszeń dla WordPress i jedyne oprogramowanie forum, które jest wyposażone w system szablonów multi-layout.\n"
7372
  " Układy \"Rozszerzone\", \"Uproszczone\" i \"Pytanie i odpowiedź\" pasują do niemal wszystkich potrzeb dyskusji. Możesz użyć wpForo dla małych i bardzo dużych społeczności.<br>Jeśli znalazłeś jakiś problem lub błąd, otwórz temat pomocy technicznej na stronie wtyczki lub na naszym forum pomocy technicznej pod gVectors.com. Jeśli podoba Ci się wpForo proszę zostawić dobrą recenzję dla tego pluginu. Naprawdę potrzebujemy twoich dobrych recenzji. \n"
7373
  " Jeśli nie podoba Ci się wpForo proszę zostawić listę problemów i wymagań, które chcesz nam naprawić i dodać w najbliższej przyszłości. Jesteśmy tutaj, aby pomóc I poprawić wpForo jak najwięcej."
7374
 
languages/wpforo-pl_PL.po CHANGED
@@ -135,7 +135,7 @@ msgstr ""
135
  #: wpf-admin/dashboard.php:29
136
  msgid ""
137
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
138
- "WorPress, and the only forum software which comes with Multi-layout template "
139
  "system.\n"
140
  " The \"Extended\", \"Simplified\" and "
141
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
@@ -4286,7 +4286,7 @@ msgstr "Subskrybuj nowe tematy"
4286
  #: wpf-includes/wpf-phrases.php:320
4287
  msgid ""
4288
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
4289
- "WorPress, and the only forum software which comes with Multi-layout template "
4290
  "system. The \"Extended"
4291
  msgstr ""
4292
 
@@ -6029,7 +6029,7 @@ msgstr ""
6029
  #~ "Thank you for trying wpForo! It's on the Beta stage and we're working "
6030
  #~ "hard to reach the Gold 1.0.0 version as soon as possible. \n"
6031
  #~ " wpForo is a professional bulletin "
6032
- #~ "board for WorPress, and the only forum software which comes with Multi-"
6033
  #~ "layout template system.\n"
6034
  #~ " The \"Extended\", \"Simplified\" and "
6035
  #~ "\"Question &amp Answer\" layouts fit almost all type of discussions "
@@ -6046,7 +6046,7 @@ msgstr ""
6046
  #~ "Thank you for trying wpForo! It's on the Beta stage and we're working "
6047
  #~ "hard to reach the Gold 1.0.0 version as soon as possible. \n"
6048
  #~ " wpForo is a professional bulletin "
6049
- #~ "board for WorPress, and the only forum software which comes with Multi-"
6050
  #~ "layout template system.\n"
6051
  #~ " The \"Extended\", \"Simplified\" and "
6052
  #~ "\"Question &amp Answer\" layouts fit almost all type of discussions "
@@ -6101,10 +6101,10 @@ msgstr ""
6101
  #~ msgid ""
6102
  #~ "Thank you for trying wpForo! It's on the Beta stage and we're working "
6103
  #~ "hard to reach the Gold 1.0.0 version as soon as possible. wpForo is a "
6104
- #~ "professional bulletin board for WorPress, and the only forum software "
6105
  #~ "which comes with Multi-layout template system. The \"Extended"
6106
  #~ msgstr ""
6107
  #~ "Dziękuję za próbę wpForo! Jest w fazie Beta i ciężko pracujemy, aby "
6108
  #~ "osiągnąć złoty 1.0.0 wersja tak szybko, jak to możliwe. wpForo jest "
6109
- #~ "profesjonalnym tablicy ogłoszeń dla WorPress i oprogramowanie tylko "
6110
  #~ "forum, który pochodzi z szablonu układu Multi system. \"Rozszerzone"
135
  #: wpf-admin/dashboard.php:29
136
  msgid ""
137
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
138
+ "WordPress, and the only forum software which comes with Multi-layout template "
139
  "system.\n"
140
  " The \"Extended\", \"Simplified\" and "
141
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
4286
  #: wpf-includes/wpf-phrases.php:320
4287
  msgid ""
4288
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
4289
+ "WordPress, and the only forum software which comes with Multi-layout template "
4290
  "system. The \"Extended"
4291
  msgstr ""
4292
 
6029
  #~ "Thank you for trying wpForo! It's on the Beta stage and we're working "
6030
  #~ "hard to reach the Gold 1.0.0 version as soon as possible. \n"
6031
  #~ " wpForo is a professional bulletin "
6032
+ #~ "board for WordPress, and the only forum software which comes with Multi-"
6033
  #~ "layout template system.\n"
6034
  #~ " The \"Extended\", \"Simplified\" and "
6035
  #~ "\"Question &amp Answer\" layouts fit almost all type of discussions "
6046
  #~ "Thank you for trying wpForo! It's on the Beta stage and we're working "
6047
  #~ "hard to reach the Gold 1.0.0 version as soon as possible. \n"
6048
  #~ " wpForo is a professional bulletin "
6049
+ #~ "board for WordPress, and the only forum software which comes with Multi-"
6050
  #~ "layout template system.\n"
6051
  #~ " The \"Extended\", \"Simplified\" and "
6052
  #~ "\"Question &amp Answer\" layouts fit almost all type of discussions "
6101
  #~ msgid ""
6102
  #~ "Thank you for trying wpForo! It's on the Beta stage and we're working "
6103
  #~ "hard to reach the Gold 1.0.0 version as soon as possible. wpForo is a "
6104
+ #~ "professional bulletin board for WordPress, and the only forum software "
6105
  #~ "which comes with Multi-layout template system. The \"Extended"
6106
  #~ msgstr ""
6107
  #~ "Dziękuję za próbę wpForo! Jest w fazie Beta i ciężko pracujemy, aby "
6108
  #~ "osiągnąć złoty 1.0.0 wersja tak szybko, jak to możliwe. wpForo jest "
6109
+ #~ "profesjonalnym tablicy ogłoszeń dla WordPress i oprogramowanie tylko "
6110
  #~ "forum, który pochodzi z szablonu układu Multi system. \"Rozszerzone"
languages/wpforo-pt_BR.po CHANGED
@@ -4705,8 +4705,8 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4705
  msgstr "Formato de arquivo incorreto. Formatos permitidos: jpeg, jpg, png, gif."
4706
 
4707
  #: wpf-includes/wpf-phrases.php:506
4708
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4709
- msgstr "Obrigado por usar o wpForo! O wpForo é uma sistema de fórum profissional para WorPress e o único software de fórum que vem com sistema de multi-layouts. O \"Estendido"
4710
 
4711
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4712
  msgid "Visit Forum"
@@ -7393,12 +7393,12 @@ msgstr "Informações Gerais"
7393
 
7394
  #: wpf-admin/dashboard.php:24
7395
  msgid ""
7396
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7397
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7398
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7399
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7400
  msgstr ""
7401
- "Obrigado por usar o wpForo! O wpForo é um sistema de fórum profissional para WorPress e o único software de fórum que vem com um sistema multi-layouts.\n"
7402
  " Os layouts \"Estendidos\", \"Simplificados\" e \"Perguntas & Respostas\" correspondem a quase todos os tipos de necessidades de discussões. Você pode usar o wpForo para comunidades pequenas e extremamente grandes. \n"
7403
  " <br />Se você encontrou algum problema ou BUG, abra um tópico de suporte na página do plugin ou no nosso fórum de suporte no gVectors.com. Se você gostou do wpForo, deixe uma boa avaliação para este plugin. Nós realmente precisamos de seus excelentes comentários. \n"
7404
  " Se você não gostou do wpForo, deixe uma lista de problemas e requisitos que você gostaria que corrigíssemos e adicionássemos em um futuro próximo. Estamos aqui para ajudá-lo e melhorar o wpForo o máximo possível."
4705
  msgstr "Formato de arquivo incorreto. Formatos permitidos: jpeg, jpg, png, gif."
4706
 
4707
  #: wpf-includes/wpf-phrases.php:506
4708
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4709
+ msgstr "Obrigado por usar o wpForo! O wpForo é uma sistema de fórum profissional para WordPress e o único software de fórum que vem com sistema de multi-layouts. O \"Estendido"
4710
 
4711
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4712
  msgid "Visit Forum"
7393
 
7394
  #: wpf-admin/dashboard.php:24
7395
  msgid ""
7396
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7397
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7398
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7399
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7400
  msgstr ""
7401
+ "Obrigado por usar o wpForo! O wpForo é um sistema de fórum profissional para WordPress e o único software de fórum que vem com um sistema multi-layouts.\n"
7402
  " Os layouts \"Estendidos\", \"Simplificados\" e \"Perguntas & Respostas\" correspondem a quase todos os tipos de necessidades de discussões. Você pode usar o wpForo para comunidades pequenas e extremamente grandes. \n"
7403
  " <br />Se você encontrou algum problema ou BUG, abra um tópico de suporte na página do plugin ou no nosso fórum de suporte no gVectors.com. Se você gostou do wpForo, deixe uma boa avaliação para este plugin. Nós realmente precisamos de seus excelentes comentários. \n"
7404
  " Se você não gostou do wpForo, deixe uma lista de problemas e requisitos que você gostaria que corrigíssemos e adicionássemos em um futuro próximo. Estamos aqui para ajudá-lo e melhorar o wpForo o máximo possível."
languages/wpforo-ru_RU.po CHANGED
@@ -4653,8 +4653,8 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4653
  msgstr "Неверный формат файла. Допустимые форматы: jpeg, jpg, png, gif."
4654
 
4655
  #: wpf-includes/wpf-phrases.php:506
4656
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4657
- msgstr "Спасибо за использование wpForo! wpForo является профессиональным форумом для WorPress и единственным форумом, который поставляется с системой мульти шаблонов."
4658
 
4659
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4660
  msgid "Visit Forum"
@@ -7341,7 +7341,7 @@ msgstr "Основная информация"
7341
 
7342
  #: wpf-admin/dashboard.php:24
7343
  msgid ""
7344
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7345
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7346
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7347
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4653
  msgstr "Неверный формат файла. Допустимые форматы: jpeg, jpg, png, gif."
4654
 
4655
  #: wpf-includes/wpf-phrases.php:506
4656
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4657
+ msgstr "Спасибо за использование wpForo! wpForo является профессиональным форумом для WordPress и единственным форумом, который поставляется с системой мульти шаблонов."
4658
 
4659
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4660
  msgid "Visit Forum"
7341
 
7342
  #: wpf-admin/dashboard.php:24
7343
  msgid ""
7344
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7345
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7346
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7347
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-sk_SK.po CHANGED
@@ -4633,7 +4633,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4633
  msgstr "Nesprávny formát prílohy. Povolené prípony: jpeg, jpg, png, gif."
4634
 
4635
  #: wpf-includes/wpf-phrases.php:506
4636
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4637
  msgstr "Ďakujeme za používanie wpForo! wpForo je profesionálny nástroj pre WordPress a jediné fórum, ktoré prichádza s Multi-rozložením. \"Rozšírené"
4638
 
4639
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2648
@@ -7324,12 +7324,12 @@ msgstr "Hlavná informácia"
7324
 
7325
  #: wpf-admin/dashboard.php:24
7326
  msgid ""
7327
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7328
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7329
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7330
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7331
  msgstr ""
7332
- "Ďakujeme že používaš wpForo! wpForo je profesionálny plugin fór pre WorPress, a jediný software, ktorý prichádza s Multi-rozložením zobrazení.\n"
7333
  " \"Rozšírený\", \"Zjednodušený\" a \"Otázky &amp Odpovede\" štýl sa dokáže prispôsobiť prakticky akýmkoľvek potrebám. Môžeš použiť wpForo pre malé ale aj veľmi veľké komunity. \n"
7334
  " <br />Ak si našiel problém alebo bug, neváhaj otvoriť svoju požiadavku na fóre stránky gVectors.com. Ak sa Ti páči wpForo prosím zanechaj dobré hodnotenie pluginu. Dobré hodnotenia nám pomáhajú rásť. \n"
7335
  " Ak sa Ti nepáči wpForo prosím napíš nám zoznam problémov alebo zoznam toho, čo treba v budúcnosti opraviť. Sme tu, aby sme wpForo zlepšovali čo najviac, ako je to možné."
4633
  msgstr "Nesprávny formát prílohy. Povolené prípony: jpeg, jpg, png, gif."
4634
 
4635
  #: wpf-includes/wpf-phrases.php:506
4636
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4637
  msgstr "Ďakujeme za používanie wpForo! wpForo je profesionálny nástroj pre WordPress a jediné fórum, ktoré prichádza s Multi-rozložením. \"Rozšírené"
4638
 
4639
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2648
7324
 
7325
  #: wpf-admin/dashboard.php:24
7326
  msgid ""
7327
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7328
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7329
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7330
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7331
  msgstr ""
7332
+ "Ďakujeme že používaš wpForo! wpForo je profesionálny plugin fór pre WordPress, a jediný software, ktorý prichádza s Multi-rozložením zobrazení.\n"
7333
  " \"Rozšírený\", \"Zjednodušený\" a \"Otázky &amp Odpovede\" štýl sa dokáže prispôsobiť prakticky akýmkoľvek potrebám. Môžeš použiť wpForo pre malé ale aj veľmi veľké komunity. \n"
7334
  " <br />Ak si našiel problém alebo bug, neváhaj otvoriť svoju požiadavku na fóre stránky gVectors.com. Ak sa Ti páči wpForo prosím zanechaj dobré hodnotenie pluginu. Dobré hodnotenia nám pomáhajú rásť. \n"
7335
  " Ak sa Ti nepáči wpForo prosím napíš nám zoznam problémov alebo zoznam toho, čo treba v budúcnosti opraviť. Sme tu, aby sme wpForo zlepšovali čo najviac, ako je to možné."
languages/wpforo-sv.po CHANGED
@@ -4647,7 +4647,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4647
  msgstr "Felaktigt filformat. Tillåtna format: jpeg, jpg, png, gif."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
  msgstr "Tack för att du använder wpForo! wpForo är en professionell anslagstavla för WordPress, och den enda forumprogramvaran som innehåller ett mallsystem med flera olika layouter. Den ”Utökade"
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
@@ -7332,7 +7332,7 @@ msgstr "Allmän information"
7332
 
7333
  #: wpf-admin/dashboard.php:24
7334
  msgid ""
7335
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7336
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7337
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7338
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4647
  msgstr "Felaktigt filformat. Tillåtna format: jpeg, jpg, png, gif."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
  msgstr "Tack för att du använder wpForo! wpForo är en professionell anslagstavla för WordPress, och den enda forumprogramvaran som innehåller ett mallsystem med flera olika layouter. Den ”Utökade"
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
7332
 
7333
  #: wpf-admin/dashboard.php:24
7334
  msgid ""
7335
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7336
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7337
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7338
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-sv_SE.po CHANGED
@@ -144,7 +144,7 @@ msgstr ""
144
  #: wpf-admin/dashboard.php:29
145
  msgid ""
146
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
147
- "WorPress, and the only forum software which comes with Multi-layout template "
148
  "system.\n"
149
  " The \"Extended\", \"Simplified\" and "
150
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
@@ -4380,11 +4380,11 @@ msgstr "Prenumerera på nya ämnen"
4380
  #: wpf-includes/wpf-phrases.php:320
4381
  msgid ""
4382
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
4383
- "WorPress, and the only forum software which comes with Multi-layout template "
4384
  "system. The \"Extended"
4385
  msgstr ""
4386
  "Tack för att använda wpForo! wpForo är en professionell anslagstavla för "
4387
- "WorPress, och den enda forum programvara som kommer med flera layout "
4388
  "mallsystem. Den \"utökade"
4389
 
4390
  #: wpf-includes/wpf-phrases.php:321
144
  #: wpf-admin/dashboard.php:29
145
  msgid ""
146
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
147
+ "WordPress, and the only forum software which comes with Multi-layout template "
148
  "system.\n"
149
  " The \"Extended\", \"Simplified\" and "
150
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
4380
  #: wpf-includes/wpf-phrases.php:320
4381
  msgid ""
4382
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
4383
+ "WordPress, and the only forum software which comes with Multi-layout template "
4384
  "system. The \"Extended"
4385
  msgstr ""
4386
  "Tack för att använda wpForo! wpForo är en professionell anslagstavla för "
4387
+ "WordPress, och den enda forum programvara som kommer med flera layout "
4388
  "mallsystem. Den \"utökade"
4389
 
4390
  #: wpf-includes/wpf-phrases.php:321
languages/wpforo-th.po CHANGED
@@ -4695,8 +4695,8 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4695
  msgstr "รูปแบบไฟล์ไม่ถูกต้อง รูปแบบที่อนุญาต: jpeg, jpg, png, gif"
4696
 
4697
  #: wpf-includes/wpf-phrases.php:506
4698
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4699
- msgstr "ขอบคุณที่ใช้ wpForo! wpForo เป็นกระดานข่าวระดับมืออาชีพสำหรับ WorPress และเป็นซอฟต์แวร์ฟอรัมเดียวที่มาพร้อมกับระบบเทมเพลตหลายรูปแบบ ส่วน \"ขยาย"
4700
 
4701
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4702
  msgid "Visit Forum"
@@ -7383,11 +7383,11 @@ msgstr "ข้อมูลทั่วไป"
7383
 
7384
  #: wpf-admin/dashboard.php:24
7385
  msgid ""
7386
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7387
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7388
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7389
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7390
- msgstr "ขอบคุณที่ใช้ wpForo! wpForo เป็นกระดานข่าวระดับมืออาชีพสำหรับ WorPress และเป็นซอฟต์แวร์ฟอรัมเดียวที่มาพร้อมกับระบบเทมเพลตหลายรูปแบบ เค้าโครง &quot;ขยาย&quot; &quot;ประยุกต์&quot; และ &quot;คำถามและคำตอบ&quot; เหมาะกับการสนทนาเกือบทุกประเภท คุณสามารถใช้ wpForo สำหรับชุมชนขนาดเล็กและขนาดใหญ่มาก<br /> หากคุณพบปัญหาหรือข้อบกพร่องโปรดเปิดหัวข้อการสนับสนุนในหน้าปลั๊กอินหรือในฟอรัมการสนับสนุนของเราที่ gVectors.com หากคุณชอบ wpForo โปรดแสดงความคิดเห็นที่ดีสำหรับปลั๊กอินนี้ เราต้องการคำวิจารณ์ที่ดีของคุณจริงๆ หากคุณไม่ชอบ wpForo โปรดทิ้งรายการปัญหาและข้อกำหนดที่คุณต้องการให้เราแก้ไขและเพิ่มในอนาคตอันใกล้นี้ เราพร้อมช่วยเหลือคุณและปรับปรุง wpForo ให้มากที่สุด"
7391
 
7392
  #: wpf-includes/wpf-phrases.php:547
7393
  msgid "Welcome Message"
4695
  msgstr "รูปแบบไฟล์ไม่ถูกต้อง รูปแบบที่อนุญาต: jpeg, jpg, png, gif"
4696
 
4697
  #: wpf-includes/wpf-phrases.php:506
4698
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4699
+ msgstr "ขอบคุณที่ใช้ wpForo! wpForo เป็นกระดานข่าวระดับมืออาชีพสำหรับ WordPress และเป็นซอฟต์แวร์ฟอรัมเดียวที่มาพร้อมกับระบบเทมเพลตหลายรูปแบบ ส่วน \"ขยาย"
4700
 
4701
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4702
  msgid "Visit Forum"
7383
 
7384
  #: wpf-admin/dashboard.php:24
7385
  msgid ""
7386
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7387
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7388
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7389
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7390
+ msgstr "ขอบคุณที่ใช้ wpForo! wpForo เป็นกระดานข่าวระดับมืออาชีพสำหรับ WordPress และเป็นซอฟต์แวร์ฟอรัมเดียวที่มาพร้อมกับระบบเทมเพลตหลายรูปแบบ เค้าโครง &quot;ขยาย&quot; &quot;ประยุกต์&quot; และ &quot;คำถามและคำตอบ&quot; เหมาะกับการสนทนาเกือบทุกประเภท คุณสามารถใช้ wpForo สำหรับชุมชนขนาดเล็กและขนาดใหญ่มาก<br /> หากคุณพบปัญหาหรือข้อบกพร่องโปรดเปิดหัวข้อการสนับสนุนในหน้าปลั๊กอินหรือในฟอรัมการสนับสนุนของเราที่ gVectors.com หากคุณชอบ wpForo โปรดแสดงความคิดเห็นที่ดีสำหรับปลั๊กอินนี้ เราต้องการคำวิจารณ์ที่ดีของคุณจริงๆ หากคุณไม่ชอบ wpForo โปรดทิ้งรายการปัญหาและข้อกำหนดที่คุณต้องการให้เราแก้ไขและเพิ่มในอนาคตอันใกล้นี้ เราพร้อมช่วยเหลือคุณและปรับปรุง wpForo ให้มากที่สุด"
7391
 
7392
  #: wpf-includes/wpf-phrases.php:547
7393
  msgid "Welcome Message"
languages/wpforo-tr_TR.po CHANGED
@@ -4707,7 +4707,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4707
  msgstr "Geçersiz dosya formatı. Kabul edilen formatlar: jpeg, jpg, png, gif."
4708
 
4709
  #: wpf-includes/wpf-phrases.php:506
4710
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4711
  msgstr "WpForo'yu seçtiğiniz için teşekkür ederiz. wpForo, WordPress için profesyonel bir bülten panosu ve çoklu şablon sistemi ile birlikte gelen tek forum yazılımdır."
4712
 
4713
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
@@ -7395,7 +7395,7 @@ msgstr "Genel bilgi"
7395
 
7396
  #: wpf-admin/dashboard.php:24
7397
  msgid ""
7398
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7399
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7400
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7401
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4707
  msgstr "Geçersiz dosya formatı. Kabul edilen formatlar: jpeg, jpg, png, gif."
4708
 
4709
  #: wpf-includes/wpf-phrases.php:506
4710
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4711
  msgstr "WpForo'yu seçtiğiniz için teşekkür ederiz. wpForo, WordPress için profesyonel bir bülten panosu ve çoklu şablon sistemi ile birlikte gelen tek forum yazılımdır."
4712
 
4713
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
7395
 
7396
  #: wpf-admin/dashboard.php:24
7397
  msgid ""
7398
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7399
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7400
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7401
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-uk.po CHANGED
@@ -4647,8 +4647,8 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4647
  msgstr "Неправильний формат файлу. Дозволені формати: jpeg, jpg, png, gif."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
- msgstr "Дякуємо за використання wpForo! wpForo - це професійна дошка оголошень для WorPress, і єдине програмне забезпечення для форуму, яке поставляється з багатошаблонною системою. \"Розширене"
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4654
  msgid "Visit Forum"
@@ -7335,12 +7335,12 @@ msgstr "Основна Інформація"
7335
 
7336
  #: wpf-admin/dashboard.php:24
7337
  msgid ""
7338
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7339
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7340
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7341
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7342
  msgstr ""
7343
- "Дякуємо за використання wpForo! wpForo - це професійна дошка оголошень для WorPress, і єдине програмне забезпечення для форуму, яке поставляється з системою шаблонів для макета.\n"
7344
  " Макети \"Розширені\", \"Спрощена\" та \"Питання та відповідь\" відповідають майже всім типам обговорень. Ви можете використовувати wpForo для невеликих та надзвичайно великих спільнот.\n"
7345
  " <br /> Якщо ви виявили проблему чи помилку, будь ласка, відкрийте тему підтримки на сторінці плагінів або на нашому форумі підтримки gVectors.com. Якщо вам сподобалось wpForo, будь ласка, залиште хороший огляд для цього плагіна. Нам дійсно потрібні ваші гарні відгуки.\n"
7346
  " Якщо вам не подобається wpForo, залиште список проблем та вимог, які ви хочете нам виправити і додати в найближчому майбутньому. Ми тут, щоб допомогти вам і покращити wpForo якомога більше."
4647
  msgstr "Неправильний формат файлу. Дозволені формати: jpeg, jpg, png, gif."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
+ msgstr "Дякуємо за використання wpForo! wpForo - це професійна дошка оголошень для WordPress, і єдине програмне забезпечення для форуму, яке поставляється з багатошаблонною системою. \"Розширене"
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
4654
  msgid "Visit Forum"
7335
 
7336
  #: wpf-admin/dashboard.php:24
7337
  msgid ""
7338
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7339
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7340
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7341
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
7342
  msgstr ""
7343
+ "Дякуємо за використання wpForo! wpForo - це професійна дошка оголошень для WordPress, і єдине програмне забезпечення для форуму, яке поставляється з системою шаблонів для макета.\n"
7344
  " Макети \"Розширені\", \"Спрощена\" та \"Питання та відповідь\" відповідають майже всім типам обговорень. Ви можете використовувати wpForo для невеликих та надзвичайно великих спільнот.\n"
7345
  " <br /> Якщо ви виявили проблему чи помилку, будь ласка, відкрийте тему підтримки на сторінці плагінів або на нашому форумі підтримки gVectors.com. Якщо вам сподобалось wpForo, будь ласка, залиште хороший огляд для цього плагіна. Нам дійсно потрібні ваші гарні відгуки.\n"
7346
  " Якщо вам не подобається wpForo, залиште список проблем та вимог, які ви хочете нам виправити і додати в найближчому майбутньому. Ми тут, щоб допомогти вам і покращити wpForo якомога більше."
languages/wpforo-vi.po CHANGED
@@ -4647,7 +4647,7 @@ msgid "Incorrect file format. Allowed formats: jpeg, jpg, png, gif."
4647
  msgstr "Định dạng tập tin không đúng. Định dạng được phép: jpeg, jpg, PNG, GIF."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
- msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
  msgstr "Cảm ơn sử dụng wpForo! wpForo là bảng quản lý chuyên nghiệp cho WordPress, và là phần mềm diễn đàn duy nhất đi kèm với hệ thống giao diện nhiều bố cục. \"Mở rộng"
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
@@ -7335,7 +7335,7 @@ msgstr "Thông tin chung"
7335
 
7336
  #: wpf-admin/dashboard.php:24
7337
  msgid ""
7338
- "Thank you for using wpForo! wpForo is a professional bulletin board for WorPress, and the only forum software which comes with Multi-layout template system.\n"
7339
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7340
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7341
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
4647
  msgstr "Định dạng tập tin không đúng. Định dạng được phép: jpeg, jpg, PNG, GIF."
4648
 
4649
  #: wpf-includes/wpf-phrases.php:506
4650
+ msgid "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system. The \"Extended"
4651
  msgstr "Cảm ơn sử dụng wpForo! wpForo là bảng quản lý chuyên nghiệp cho WordPress, và là phần mềm diễn đàn duy nhất đi kèm với hệ thống giao diện nhiều bố cục. \"Mở rộng"
4652
 
4653
  #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2682
7335
 
7336
  #: wpf-admin/dashboard.php:24
7337
  msgid ""
7338
+ "Thank you for using wpForo! wpForo is a professional bulletin board for WordPress, and the only forum software which comes with Multi-layout template system.\n"
7339
  " The \"Extended\", \"Simplified\" and \"Question &amp Answer\" layouts fit almost all type of discussions needs. You can use wpForo for small and extremely large communities. \n"
7340
  " <br />If you found some issue or bug please open a support topic in plugin page or in our support forum at gVectors.com. If you liked wpForo please leave some good review for this plugin. We really need your good reviews. \n"
7341
  " If you didn't like wpForo please leave a list of issues and requirements you'd like us to fix and add in near future. We're here to help you and improve wpForo as much as possible."
languages/wpforo-zh_CN.po CHANGED
@@ -133,7 +133,7 @@ msgstr "欢迎来到wpForo"
133
  #: wpf-admin/dashboard.php:29
134
  msgid ""
135
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
136
- "WorPress, and the only forum software which comes with Multi-layout template "
137
  "system.\n"
138
  " The \"Extended\", \"Simplified\" and "
139
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
@@ -5539,9 +5539,9 @@ msgstr "订阅新的话题"
5539
  #: wpf-includes/wpf-phrases.php:504
5540
  msgid ""
5541
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
5542
- "WorPress, and the only forum software which comes with Multi-layout template "
5543
  "system. The \"Extended"
5544
- msgstr "感谢您使用wpforo!wpforo是一个专业的WorPress 论坛插件, 也是唯一一个带有多布局模板的论坛插件。"
5545
 
5546
  #: wpf-includes/wpf-phrases.php:505
5547
  msgid ""
133
  #: wpf-admin/dashboard.php:29
134
  msgid ""
135
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
136
+ "WordPress, and the only forum software which comes with Multi-layout template "
137
  "system.\n"
138
  " The \"Extended\", \"Simplified\" and "
139
  "\"Question &amp Answer\" layouts fit almost all type of discussions needs. "
5539
  #: wpf-includes/wpf-phrases.php:504
5540
  msgid ""
5541
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
5542
+ "WordPress, and the only forum software which comes with Multi-layout template "
5543
  "system. The \"Extended"
5544
+ msgstr "感谢您使用wpforo!wpforo是一个专业的WordPress 论坛插件, 也是唯一一个带有多布局模板的论坛插件。"
5545
 
5546
  #: wpf-includes/wpf-phrases.php:505
5547
  msgid ""
languages/wpforo.pot CHANGED
@@ -1034,7 +1034,7 @@ msgstr ""
1034
  #: admin/pages/overview.php:24
1035
  msgid ""
1036
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
1037
- "WorPress, and the only forum software which comes with Multi-layout template "
1038
  "system.\n"
1039
  " The \"Extended\", \"Simplified\", \"Q&A\" "
1040
  "and \"Threaded\" layouts fit almost all type of discussions needs. You can use "
@@ -7068,7 +7068,7 @@ msgstr ""
7068
  #: includes/phrases.php:506
7069
  msgid ""
7070
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
7071
- "WorPress, and the only forum software which comes with Multi-layout template "
7072
  "system. The \"Extended"
7073
  msgstr ""
7074
 
1034
  #: admin/pages/overview.php:24
1035
  msgid ""
1036
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
1037
+ "WordPress, and the only forum software which comes with Multi-layout template "
1038
  "system.\n"
1039
  " The \"Extended\", \"Simplified\", \"Q&A\" "
1040
  "and \"Threaded\" layouts fit almost all type of discussions needs. You can use "
7068
  #: includes/phrases.php:506
7069
  msgid ""
7070
  "Thank you for using wpForo! wpForo is a professional bulletin board for "
7071
+ "WordPress, and the only forum software which comes with Multi-layout template "
7072
  "system. The \"Extended"
7073
  msgstr ""
7074
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: gVectors Team
3
  Tags: forum, forums, forum plugin, WordPress forum plugin, community, discussion
4
  Requires at least: 5.1
5
  Tested up to: 6.0
6
- Stable tag: 2.0.3
7
  Requires PHP: 5.6 and higher
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -162,19 +162,31 @@ Find wpForo forum plugin addons on [gVectors Team website...](https://gvectors.c
162
 
163
  == Changelog ==
164
 
165
- = wpForo Forum 2.0.1 - 2.0.3 | 03.08.2021 - 05.08.2021 =
166
 
167
  [wpForo Forum v2.0 Release Summary](https://wpforo.com/community/wpforo-announcements/wpforo-2-0-1-is-released/)
168
 
169
  IMPORTANT NOTES for UPDATE
170
 
171
  - Please deactivate current addons or update them to 3.0.0 version before updating wpForo to 2.0.x
 
172
  - This is a major update with fully changed forum theme. This update will remove forum template and css customizations. Also, some settings might be reset and you may need to update them again.
 
173
  - After the update, please delete all caches and purge CDN if you have.
174
  - Please read [Update to wpForo v2 Instruction](https://wpforo.com/docs/wpforo-v2/getting-started/update-to-wpforo-v2/)
 
175
 
176
  ADDED FEATURES and FIXED BUGS
177
 
 
 
 
 
 
 
 
 
 
178
  * Version 2.0.3
179
  * Fixed Bug: Problem with get_locale() function
180
  * Fixed Bug: Deactivate old addons and don't allow to activate them to avoid fatal errors
3
  Tags: forum, forums, forum plugin, WordPress forum plugin, community, discussion
4
  Requires at least: 5.1
5
  Tested up to: 6.0
6
+ Stable tag: 2.0.4
7
  Requires PHP: 5.6 and higher
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
162
 
163
  == Changelog ==
164
 
165
+ = wpForo Forum 2.0.1 - 2.0.4 | 03.08.2021 - 06.08.2021 =
166
 
167
  [wpForo Forum v2.0 Release Summary](https://wpforo.com/community/wpforo-announcements/wpforo-2-0-1-is-released/)
168
 
169
  IMPORTANT NOTES for UPDATE
170
 
171
  - Please deactivate current addons or update them to 3.0.0 version before updating wpForo to 2.0.x
172
+ - Deactivate Go2wpForo tool if you have installed and done forum migration
173
  - This is a major update with fully changed forum theme. This update will remove forum template and css customizations. Also, some settings might be reset and you may need to update them again.
174
+ - Make sure you don't have old forum template files in /wpforo/ folder of your current active theme directory.
175
  - After the update, please delete all caches and purge CDN if you have.
176
  - Please read [Update to wpForo v2 Instruction](https://wpforo.com/docs/wpforo-v2/getting-started/update-to-wpforo-v2/)
177
+ - In case the update has been done automatically and your website is crashed please use [these solutions](https://wpforo.com/community/postid/68095/)
178
 
179
  ADDED FEATURES and FIXED BUGS
180
 
181
+ * Version 2.0.4
182
+ * Added: Separate navigation menu and Menu Location for each board
183
+ * Added: Limit suggested topics
184
+ * Changed: Hide suggested topics when user left the title field
185
+ * Fixed Bug: Language conflict with other plugins in ajax requests
186
+ * Fixed Bug: JS/CSS file conflict in dashboard
187
+ * Fixed Bug: 404 error when Polyglot plugin is used with single board
188
+ * Fixed Bug: PHP Notice / Trying to get property 'roles' of non-object in hooks.php on line 22
189
+ * --------
190
  * Version 2.0.3
191
  * Fixed Bug: Problem with get_locale() function
192
  * Fixed Bug: Deactivate old addons and don't allow to activate them to avoid fatal errors
wpforo.php CHANGED
@@ -5,14 +5,14 @@
5
  * Description: WordPress Forum plugin. wpForo is a full-fledged forum solution for your community. Comes with multiple modern forum layouts.
6
  * Author: gVectors Team
7
  * Author URI: https://gvectors.com/
8
- * Version: 2.0.3
9
  * Text Domain: wpforo
10
  * Domain Path: /languages
11
  */
12
 
13
  namespace wpforo;
14
 
15
- define( 'WPFORO_VERSION', '2.0.3' );
16
 
17
  //Exit if accessed directly
18
  if( ! defined( 'ABSPATH' ) ) exit;
@@ -101,7 +101,7 @@ final class wpforo {
101
  public $GET = [];
102
  public $current_object;
103
 
104
- public $wp_current_user = [];
105
  public $current_user = [];
106
  public $current_usermeta = [];
107
  public $current_user_groupid = 4;
@@ -319,11 +319,11 @@ final class wpforo {
319
  register_widget( 'wpforo\widgets\RecentPosts' );
320
  register_widget( 'wpforo\widgets\Tags' );
321
  } );
322
- add_filter( 'plugin_locale', function( $locale ) {
323
- if( defined( 'DOING_AJAX' ) && DOING_AJAX ) $locale = $this->locale;
324
 
325
  return $locale;
326
- } );
327
  add_action( 'wpforo_after_init_classes', function() {
328
  if( wpforo_setting( 'email', 'disable_new_user_admin_notification' ) ) {
329
  remove_action( 'after_password_reset', 'wp_password_change_notification' );
@@ -563,6 +563,12 @@ final class wpforo {
563
  if( $post_url !== wpforo_home_url() ) $url = $post_url;
564
  }
565
 
 
 
 
 
 
 
566
  $url = wpforo_fix_url( $url );
567
  $url = preg_replace( '#\#[^/?&]*$#iu', '', $url );
568
  parse_str( parse_url( $url, PHP_URL_QUERY ), $get );
5
  * Description: WordPress Forum plugin. wpForo is a full-fledged forum solution for your community. Comes with multiple modern forum layouts.
6
  * Author: gVectors Team
7
  * Author URI: https://gvectors.com/
8
+ * Version: 2.0.4
9
  * Text Domain: wpforo
10
  * Domain Path: /languages
11
  */
12
 
13
  namespace wpforo;
14
 
15
+ define( 'WPFORO_VERSION', '2.0.4' );
16
 
17
  //Exit if accessed directly
18
  if( ! defined( 'ABSPATH' ) ) exit;
101
  public $GET = [];
102
  public $current_object;
103
 
104
+ public $wp_current_user = null;
105
  public $current_user = [];
106
  public $current_usermeta = [];
107
  public $current_user_groupid = 4;
319
  register_widget( 'wpforo\widgets\RecentPosts' );
320
  register_widget( 'wpforo\widgets\Tags' );
321
  } );
322
+ add_filter( 'plugin_locale', function( $locale, $domain ) {
323
+ if( $domain === 'wpforo' && defined( 'DOING_AJAX' ) && DOING_AJAX ) $locale = $this->locale;
324
 
325
  return $locale;
326
+ }, 10, 2 );
327
  add_action( 'wpforo_after_init_classes', function() {
328
  if( wpforo_setting( 'email', 'disable_new_user_admin_notification' ) ) {
329
  remove_action( 'after_password_reset', 'wp_password_change_notification' );
563
  if( $post_url !== wpforo_home_url() ) $url = $post_url;
564
  }
565
 
566
+ if( function_exists( 'pll_default_language' ) ){
567
+ $qvar = wpforo_get_url_query_vars_str( $url );
568
+ $qvar = preg_replace( '#^' . preg_quote( pll_default_language() ) . '/#', '', $qvar );
569
+ $url = $this->user_trailingslashit( home_url( $qvar ) );
570
+ }
571
+
572
  $url = wpforo_fix_url( $url );
573
  $url = preg_replace( '#\#[^/?&]*$#iu', '', $url );
574
  parse_str( parse_url( $url, PHP_URL_QUERY ), $get );