Version Description
Download this release
Release Info
Developer | Tomdever |
Plugin | ![]() |
Version | 1.4.10 |
Comparing to | |
See all releases |
Code changes from version 1.4.9 to 1.4.10
- readme.txt +7 -1
- wpf-includes/class-forums.php +1 -1
- wpf-includes/class-members.php +6 -2
- wpf-includes/class-permissions.php +2 -2
- wpf-includes/class-posts.php +6 -2
- wpf-includes/class-topics.php +2 -2
- wpf-includes/class-usergroups.php +1 -1
- wpf-includes/functions-installation.php +8 -0
- wpf-includes/functions.php +24 -2
- wpf-includes/install-sql.php +6 -2
- wpf-includes/wpf-actions.php +3 -3
- wpf-includes/wpf-hooks.php +1 -25
- wpf-languages/wpforo-es_ES.mo +0 -0
- wpf-languages/wpforo-es_ES.po +2976 -1547
- wpf-themes/classic/recent.php +2 -2
- wpf-themes/classic/search.php +8 -1
- wpforo.php +58 -19
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: 4.1
|
5 |
Tested up to: 4.9
|
6 |
-
Stable tag: 1.4.
|
7 |
Requires PHP: 5.4 and higher
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -152,6 +152,12 @@ Find wpForo forum plugin addons on [gVectors Team website...](https://gvectors.c
|
|
152 |
|
153 |
== Changelog ==
|
154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
= wpForo Forum 1.4.8 / 1.4.9 | 04.05.2018 =
|
156 |
|
157 |
[wpForo v1.4.9 Release Summary](https://wpforo.com/community/wpforo-announcements/wpforo-1-4-9-is-released/)
|
3 |
Tags: forum, forums, forum plugin, WordPress forum plugin, community, discussion
|
4 |
Requires at least: 4.1
|
5 |
Tested up to: 4.9
|
6 |
+
Stable tag: 1.4.10
|
7 |
Requires PHP: 5.4 and higher
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
152 |
|
153 |
== Changelog ==
|
154 |
|
155 |
+
= wpForo Forum 1.4.10 | 30.05.2018 =
|
156 |
+
|
157 |
+
* Fixed: This is a not planned security update. It includes data sanitization and filtering changes.
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
= wpForo Forum 1.4.8 / 1.4.9 | 04.05.2018 =
|
162 |
|
163 |
[wpForo v1.4.9 Release Summary](https://wpforo.com/community/wpforo-announcements/wpforo-1-4-9-is-released/)
|
wpf-includes/class-forums.php
CHANGED
@@ -921,7 +921,7 @@ class wpForoForum{
|
|
921 |
}
|
922 |
|
923 |
function get_count( $args = array() ){
|
924 |
-
$sql = "SELECT COUNT
|
925 |
if( !empty($args) ){
|
926 |
$wheres = array();
|
927 |
foreach ($args as $key => $value) $wheres[] = "`$key` = " . intval($value);
|
921 |
}
|
922 |
|
923 |
function get_count( $args = array() ){
|
924 |
+
$sql = "SELECT COUNT(*) FROM `".WPF()->tables->forums."`";
|
925 |
if( !empty($args) ){
|
926 |
$wheres = array();
|
927 |
foreach ($args as $key => $value) $wheres[] = "`$key` = " . intval($value);
|
wpf-includes/class-members.php
CHANGED
@@ -1141,7 +1141,7 @@ class wpForoMember{
|
|
1141 |
if(!$duration) $duration = WPF()->member->options['online_status_timeout'];
|
1142 |
$current_time = current_time( 'timestamp', 1 );
|
1143 |
$online_timeframe = $current_time - $duration;
|
1144 |
-
return WPF()->db->get_var( "SELECT COUNT
|
1145 |
|
1146 |
}
|
1147 |
|
@@ -1287,6 +1287,7 @@ class wpForoMember{
|
|
1287 |
|
1288 |
public function blog_posts( $userid ){
|
1289 |
if( isset($userid) && $userid ) return count_user_posts( $userid , 'post' );
|
|
|
1290 |
}
|
1291 |
|
1292 |
public function blog_comments($userid, $user_email){
|
@@ -1353,9 +1354,12 @@ class wpForoMember{
|
|
1353 |
if( isset(WPF()->current_user['posts']) && WPF()->current_user['posts'] && $member == WPF()->current_userid ){
|
1354 |
return WPF()->current_user['posts'];
|
1355 |
}
|
1356 |
-
|
1357 |
return WPF()->db->get_var( "SELECT COUNT(*) as posts FROM `".WPF()->tables->posts."` WHERE `status` = 0 AND `userid` = " . intval($member) );
|
1358 |
}
|
|
|
|
|
|
|
1359 |
}
|
1360 |
elseif(is_array($member) && !empty($member)){
|
1361 |
return intval($member['posts']);
|
1141 |
if(!$duration) $duration = WPF()->member->options['online_status_timeout'];
|
1142 |
$current_time = current_time( 'timestamp', 1 );
|
1143 |
$online_timeframe = $current_time - $duration;
|
1144 |
+
return WPF()->db->get_var( "SELECT COUNT(*) FROM `".WPF()->tables->profiles."` WHERE `online_time` > " . intval($online_timeframe) );
|
1145 |
|
1146 |
}
|
1147 |
|
1287 |
|
1288 |
public function blog_posts( $userid ){
|
1289 |
if( isset($userid) && $userid ) return count_user_posts( $userid , 'post' );
|
1290 |
+
return 0;
|
1291 |
}
|
1292 |
|
1293 |
public function blog_comments($userid, $user_email){
|
1354 |
if( isset(WPF()->current_user['posts']) && WPF()->current_user['posts'] && $member == WPF()->current_userid ){
|
1355 |
return WPF()->current_user['posts'];
|
1356 |
}
|
1357 |
+
elseif($member){
|
1358 |
return WPF()->db->get_var( "SELECT COUNT(*) as posts FROM `".WPF()->tables->posts."` WHERE `status` = 0 AND `userid` = " . intval($member) );
|
1359 |
}
|
1360 |
+
else{
|
1361 |
+
return 0;
|
1362 |
+
}
|
1363 |
}
|
1364 |
elseif(is_array($member) && !empty($member)){
|
1365 |
return intval($member['posts']);
|
wpf-includes/class-permissions.php
CHANGED
@@ -38,10 +38,10 @@ class wpForoPermissions{
|
|
38 |
/**
|
39 |
* get all accesses from accesses table
|
40 |
*
|
41 |
-
* @return
|
42 |
*/
|
43 |
function get_accesses(){
|
44 |
-
$sql = "SELECT * FROM ".WPF()->tables->accesses
|
45 |
return WPF()->db->get_results($sql, ARRAY_A);
|
46 |
}
|
47 |
|
38 |
/**
|
39 |
* get all accesses from accesses table
|
40 |
*
|
41 |
+
* @return array|null
|
42 |
*/
|
43 |
function get_accesses(){
|
44 |
+
$sql = "SELECT * FROM ".WPF()->tables->accesses;
|
45 |
return WPF()->db->get_results($sql, ARRAY_A);
|
46 |
}
|
47 |
|
wpf-includes/class-posts.php
CHANGED
@@ -602,7 +602,11 @@ class wpForoPost{
|
|
602 |
|
603 |
if( !empty($args) ){
|
604 |
extract($args, EXTR_OVERWRITE);
|
605 |
-
|
|
|
|
|
|
|
|
|
606 |
$date_period = intval($date_period);
|
607 |
|
608 |
$selects = array('p.`postid`', 't.`topicid`', 't.`private`', 't.`status`', 't.`forumid`', 'p.`userid`', 't.`title`', 'p.`created`', 'p.`body`' );
|
@@ -875,7 +879,7 @@ class wpForoPost{
|
|
875 |
}
|
876 |
|
877 |
function get_count( $args = array() ){
|
878 |
-
$sql = "SELECT COUNT
|
879 |
if($args && is_array($args)){
|
880 |
$wheres = array();
|
881 |
foreach ($args as $key => $value) $wheres[] = "`$key` = '" . esc_sql($value) . "'";
|
602 |
|
603 |
if( !empty($args) ){
|
604 |
extract($args, EXTR_OVERWRITE);
|
605 |
+
|
606 |
+
if($order == 'desc'){ $order = 'desc'; }
|
607 |
+
elseif($order == 'asc'){ $order = 'asc'; }
|
608 |
+
else{ $order = 'desc'; }
|
609 |
+
|
610 |
$date_period = intval($date_period);
|
611 |
|
612 |
$selects = array('p.`postid`', 't.`topicid`', 't.`private`', 't.`status`', 't.`forumid`', 'p.`userid`', 't.`title`', 'p.`created`', 'p.`body`' );
|
879 |
}
|
880 |
|
881 |
function get_count( $args = array() ){
|
882 |
+
$sql = "SELECT COUNT(*) FROM `".WPF()->tables->posts."`";
|
883 |
if($args && is_array($args)){
|
884 |
$wheres = array();
|
885 |
foreach ($args as $key => $value) $wheres[] = "`$key` = '" . esc_sql($value) . "'";
|
wpf-includes/class-topics.php
CHANGED
@@ -930,7 +930,7 @@ class wpForoTopic{
|
|
930 |
$db_resp = WPF()->db->query($sql);
|
931 |
|
932 |
if( $db_resp !== false ){
|
933 |
-
$sql = "SELECT COUNT
|
934 |
$sql = WPF()->db->prepare($sql, $current['topicid']);
|
935 |
if( !WPF()->db->get_var($sql) ){
|
936 |
$this->delete($current['topicid']);
|
@@ -1079,7 +1079,7 @@ class wpForoTopic{
|
|
1079 |
|
1080 |
|
1081 |
function get_count( $args = array() ){
|
1082 |
-
$sql = "SELECT COUNT
|
1083 |
if( !empty($args) ){
|
1084 |
$wheres = array();
|
1085 |
foreach ($args as $key => $value) $wheres[] = "`$key` = " . intval($value);
|
930 |
$db_resp = WPF()->db->query($sql);
|
931 |
|
932 |
if( $db_resp !== false ){
|
933 |
+
$sql = "SELECT COUNT(*) FROM `".WPF()->tables->posts."` WHERE `topicid` = %d";
|
934 |
$sql = WPF()->db->prepare($sql, $current['topicid']);
|
935 |
if( !WPF()->db->get_var($sql) ){
|
936 |
$this->delete($current['topicid']);
|
1079 |
|
1080 |
|
1081 |
function get_count( $args = array() ){
|
1082 |
+
$sql = "SELECT COUNT(*) FROM `".WPF()->tables->topics."`";
|
1083 |
if( !empty($args) ){
|
1084 |
$wheres = array();
|
1085 |
foreach ($args as $key => $value) $wheres[] = "`$key` = " . intval($value);
|
wpf-includes/class-usergroups.php
CHANGED
@@ -67,7 +67,7 @@ class wpForoUsergroup{
|
|
67 |
$ugdata = array();
|
68 |
$ugroups = WPF()->db->get_results('SELECT `groupid`, `name`, `access`, `color` FROM '.WPF()->tables->usergroups.' ORDER BY `name` ', ARRAY_A);
|
69 |
foreach($ugroups as $ugroup){
|
70 |
-
$user_count = WPF()->db->get_var('SELECT COUNT
|
71 |
$ugdata[$ugroup['groupid']]['groupid'] = $ugroup['groupid'];
|
72 |
$ugdata[$ugroup['groupid']]['name'] = wpforo_phrase($ugroup['name'], FALSE);
|
73 |
$ugdata[$ugroup['groupid']]['count'] = intval($user_count);
|
67 |
$ugdata = array();
|
68 |
$ugroups = WPF()->db->get_results('SELECT `groupid`, `name`, `access`, `color` FROM '.WPF()->tables->usergroups.' ORDER BY `name` ', ARRAY_A);
|
69 |
foreach($ugroups as $ugroup){
|
70 |
+
$user_count = WPF()->db->get_var('SELECT COUNT(*) FROM '.WPF()->tables->profiles.' WHERE `groupid` = ' . intval($ugroup['groupid']));
|
71 |
$ugdata[$ugroup['groupid']]['groupid'] = $ugroup['groupid'];
|
72 |
$ugdata[$ugroup['groupid']]['name'] = wpforo_phrase($ugroup['name'], FALSE);
|
73 |
$ugdata[$ugroup['groupid']]['count'] = intval($user_count);
|
wpf-includes/functions-installation.php
CHANGED
@@ -507,6 +507,14 @@ function wpforo_activation(){
|
|
507 |
@WPF()->db->query( "ALTER TABLE `".WPF()->tables->subscribes."` MODIFY `type` VARCHAR(50) NOT NULL" );
|
508 |
}
|
509 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
510 |
#################################################################
|
511 |
// CHECK Addon Notice /////////////////////////////////////////
|
512 |
$lastHash = get_option('wpforo-addon-note-dismissed');
|
507 |
@WPF()->db->query( "ALTER TABLE `".WPF()->tables->subscribes."` MODIFY `type` VARCHAR(50) NOT NULL" );
|
508 |
}
|
509 |
|
510 |
+
//Add index for double condition queries to avoid SQl caching
|
511 |
+
$args = array( 'table' => WPF()->tables->posts, 'col' => 'forumid_status', 'check' => 'key_exists' );
|
512 |
+
if( !wpforo_db_check( $args ) ) {
|
513 |
+
@WPF()->db->query( "ALTER TABLE `".WPF()->tables->posts."` ADD KEY `forumid_status` (`forumid`,`status`)" );
|
514 |
+
@WPF()->db->query( "ALTER TABLE `".WPF()->tables->posts."` ADD KEY `topicid_status` (`topicid`,`status`)" );
|
515 |
+
@WPF()->db->query( "ALTER TABLE `".WPF()->tables->posts."` ADD KEY `topicid_solved` (`topicid`,`is_answer`)" );
|
516 |
+
@WPF()->db->query( "ALTER TABLE `".WPF()->tables->topics."` ADD KEY `forumid_status` (`forumid`,`status`)" );
|
517 |
+
}
|
518 |
#################################################################
|
519 |
// CHECK Addon Notice /////////////////////////////////////////
|
520 |
$lastHash = get_option('wpforo-addon-note-dismissed');
|
wpf-includes/functions.php
CHANGED
@@ -108,13 +108,33 @@ function is_wpforo_url($url = ''){
|
|
108 |
return FALSE;
|
109 |
}
|
110 |
|
|
|
|
|
|
|
111 |
function is_wpforo_shortcode_page(){
|
112 |
if( wpforo_is_admin() ) return FALSE;
|
113 |
global $post;
|
114 |
-
if( $post
|
115 |
return FALSE;
|
116 |
}
|
117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
function wpforo_get_url_query_vars_str($url = ''){
|
119 |
if(!$url) $url = wpforo_get_request_uri();
|
120 |
|
@@ -812,13 +832,15 @@ function wpforo_screen_option(){ ?>
|
|
812 |
|
813 |
|
814 |
function wpforo_text( $text, $length = 0, $echo = true, $strip_tags = true, $strip_urls = true, $strip_shortcodes = true ){
|
815 |
-
|
|
|
816 |
if($strip_tags) $text = strip_tags($text);
|
817 |
if($strip_shortcodes){
|
818 |
$text = preg_replace('#\[attach[^\[\]]*\][^\[\]]*\[/attach\]#isu', '', $text);
|
819 |
$text = strip_shortcodes( $text );
|
820 |
}
|
821 |
$text = apply_filters('wpforo_text', $text);
|
|
|
822 |
if(!$length){
|
823 |
if($echo){
|
824 |
echo trim($text);
|
108 |
return FALSE;
|
109 |
}
|
110 |
|
111 |
+
/**
|
112 |
+
* @return bool
|
113 |
+
*/
|
114 |
function is_wpforo_shortcode_page(){
|
115 |
if( wpforo_is_admin() ) return FALSE;
|
116 |
global $post;
|
117 |
+
if( is_a( $post, 'WP_Post' ) && has_shortcode( $post->post_content, 'wpforo' ) && !is_wpforo_url() ) return TRUE;
|
118 |
return FALSE;
|
119 |
}
|
120 |
|
121 |
+
/**
|
122 |
+
* @param string $text
|
123 |
+
* @return array|string
|
124 |
+
*/
|
125 |
+
function get_wpforo_shortcode_atts($text = ''){
|
126 |
+
if (!$text){
|
127 |
+
if( wpforo_is_admin() ) return '';
|
128 |
+
|
129 |
+
global $post;
|
130 |
+
if( is_a( $post, 'WP_Post' ) ) $text = $post->post_content;
|
131 |
+
}
|
132 |
+
|
133 |
+
if( preg_match('#\[[\r\n\t\s\0]*wpforo[\r\n\t\s\0]*([^\[\]]*?)\]#isu', $text, $match) ) return shortcode_parse_atts($match[1]);
|
134 |
+
|
135 |
+
return '';
|
136 |
+
}
|
137 |
+
|
138 |
function wpforo_get_url_query_vars_str($url = ''){
|
139 |
if(!$url) $url = wpforo_get_request_uri();
|
140 |
|
832 |
|
833 |
|
834 |
function wpforo_text( $text, $length = 0, $echo = true, $strip_tags = true, $strip_urls = true, $strip_shortcodes = true ){
|
835 |
+
$text = str_replace('</p>', '</p> ', $text);
|
836 |
+
if($strip_urls) $text = preg_replace('#(?:[^\'\"]|^)(https?://[^\s\'\"<>]+)(?:[^\'\"]|$)#isu', '', $text);
|
837 |
if($strip_tags) $text = strip_tags($text);
|
838 |
if($strip_shortcodes){
|
839 |
$text = preg_replace('#\[attach[^\[\]]*\][^\[\]]*\[/attach\]#isu', '', $text);
|
840 |
$text = strip_shortcodes( $text );
|
841 |
}
|
842 |
$text = apply_filters('wpforo_text', $text);
|
843 |
+
|
844 |
if(!$length){
|
845 |
if($echo){
|
846 |
echo trim($text);
|
wpf-includes/install-sql.php
CHANGED
@@ -70,7 +70,8 @@
|
|
70 |
KEY `status` (`status`),
|
71 |
KEY `email` (`email`),
|
72 |
KEY `is_private` (`private`),
|
73 |
-
KEY `own_private` (`userid`,`private
|
|
|
74 |
) ENGINE=$engine $charset_collate;",
|
75 |
"CREATE TABLE IF NOT EXISTS `".WPF()->tables->posts."`(
|
76 |
`postid` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
@@ -103,7 +104,10 @@
|
|
103 |
KEY `is_first_post` (`is_first_post`),
|
104 |
KEY `status` (`status`),
|
105 |
KEY `email` (`email`),
|
106 |
-
KEY `is_private` (`private
|
|
|
|
|
|
|
107 |
) ENGINE=$engine $charset_collate;",
|
108 |
"CREATE TABLE IF NOT EXISTS `".WPF()->tables->profiles."` (
|
109 |
`userid` INT UNSIGNED NOT NULL,
|
70 |
KEY `status` (`status`),
|
71 |
KEY `email` (`email`),
|
72 |
KEY `is_private` (`private`),
|
73 |
+
KEY `own_private` (`userid`,`private`),
|
74 |
+
KEY `forumid_status` (`forumid`,`status`)
|
75 |
) ENGINE=$engine $charset_collate;",
|
76 |
"CREATE TABLE IF NOT EXISTS `".WPF()->tables->posts."`(
|
77 |
`postid` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
104 |
KEY `is_first_post` (`is_first_post`),
|
105 |
KEY `status` (`status`),
|
106 |
KEY `email` (`email`),
|
107 |
+
KEY `is_private` (`private`),
|
108 |
+
KEY `forumid_status` (`forumid`,`status`),
|
109 |
+
KEY `topicid_status` (`topicid`,`status`),
|
110 |
+
KEY `topicid_solved` (`topicid`,`is_answer`)
|
111 |
) ENGINE=$engine $charset_collate;",
|
112 |
"CREATE TABLE IF NOT EXISTS `".WPF()->tables->profiles."` (
|
113 |
`userid` INT UNSIGNED NOT NULL,
|
wpf-includes/wpf-actions.php
CHANGED
@@ -145,7 +145,7 @@ function wpforo_actions(){
|
|
145 |
$redirect_to = wpforo_get_request_uri();
|
146 |
if( !empty($_POST['wpforo']['target_topic_url']) ){
|
147 |
$target_slug = $_POST['wpforo']['target_topic_url'];
|
148 |
-
if( preg_match('#^[\r\n\t\s]*https?://[^\r\n\t\s
|
149 |
if( is_wpforo_url($target_slug) ) $target_slug = $match[1];
|
150 |
if ( strpos($target_slug, '/') === false && $target = WPF()->topic->get_topic($target_slug) ){
|
151 |
$append = (empty($_POST['wpforo']['update_date_and_append']) ? 0 : 1);
|
@@ -177,7 +177,7 @@ function wpforo_actions(){
|
|
177 |
}else{
|
178 |
if( !empty($_POST['wpforo']['target_topic_url']) && !empty($_POST['wpforo']['posts']) ){
|
179 |
$target_slug = $_POST['wpforo']['target_topic_url'];
|
180 |
-
if( preg_match('#^[\r\n\t\s]*https?://[^\r\n\t\s
|
181 |
if( is_wpforo_url($target_slug) ) $target_slug = $match[1];
|
182 |
if ( strpos($target_slug, '/') === false && $target = WPF()->topic->get_topic($target_slug) ){
|
183 |
$append = (empty($_POST['wpforo']['update_date_and_append']) ? 0 : 1);
|
@@ -286,7 +286,7 @@ function wpforo_actions(){
|
|
286 |
exit();
|
287 |
}
|
288 |
if( $_GET['action'] == 'reset_fstat' && check_admin_referer( 'wpforo_reset_forums_stat' ) ){
|
289 |
-
$forumids = WPF()->db->get_col("SELECT `forumid` FROM ".WPF()->tables->forums." ORDER BY `forumid` ASC");
|
290 |
if(!empty($forumids)){
|
291 |
foreach($forumids as $forumid){
|
292 |
WPF()->forum->rebuild_stats($forumid);
|
145 |
$redirect_to = wpforo_get_request_uri();
|
146 |
if( !empty($_POST['wpforo']['target_topic_url']) ){
|
147 |
$target_slug = $_POST['wpforo']['target_topic_url'];
|
148 |
+
if( preg_match('#^[\r\n\t\s]*https?://[^\r\n\t\s]+?/[^/]+/([^/]+?)(?:/?[\r\n\t\s]*$|/?\#post-\d+/?[\r\n\t\s]*$)#isu', $target_slug, $match) )
|
149 |
if( is_wpforo_url($target_slug) ) $target_slug = $match[1];
|
150 |
if ( strpos($target_slug, '/') === false && $target = WPF()->topic->get_topic($target_slug) ){
|
151 |
$append = (empty($_POST['wpforo']['update_date_and_append']) ? 0 : 1);
|
177 |
}else{
|
178 |
if( !empty($_POST['wpforo']['target_topic_url']) && !empty($_POST['wpforo']['posts']) ){
|
179 |
$target_slug = $_POST['wpforo']['target_topic_url'];
|
180 |
+
if( preg_match('#^[\r\n\t\s]*https?://[^\r\n\t\s]+?/[^/]+/([^/]+?)(?:/?[\r\n\t\s]*$|/?\#post-\d+/?[\r\n\t\s]*$)#isu', $target_slug, $match) )
|
181 |
if( is_wpforo_url($target_slug) ) $target_slug = $match[1];
|
182 |
if ( strpos($target_slug, '/') === false && $target = WPF()->topic->get_topic($target_slug) ){
|
183 |
$append = (empty($_POST['wpforo']['update_date_and_append']) ? 0 : 1);
|
286 |
exit();
|
287 |
}
|
288 |
if( $_GET['action'] == 'reset_fstat' && check_admin_referer( 'wpforo_reset_forums_stat' ) ){
|
289 |
+
$forumids = WPF()->db->get_col("SELECT `forumid` FROM ".WPF()->tables->forums." WHERE `is_cat` = 0 ORDER BY `forumid` ASC");
|
290 |
if(!empty($forumids)){
|
291 |
foreach($forumids as $forumid){
|
292 |
WPF()->forum->rebuild_stats($forumid);
|
wpf-includes/wpf-hooks.php
CHANGED
@@ -164,33 +164,9 @@ add_shortcode( 'wpforo', 'wpforo_load' );
|
|
164 |
function wpforo_load( $atts ){
|
165 |
if(wpforo_is_admin()) return '';
|
166 |
|
167 |
-
if( is_wpforo_shortcode_page() ){
|
168 |
-
$url = wpforo_home_url();
|
169 |
-
|
170 |
-
$args = shortcode_atts( array(
|
171 |
-
'item' => 'forum',
|
172 |
-
'id' => 0,
|
173 |
-
'slug' => '',
|
174 |
-
), $atts );
|
175 |
-
|
176 |
-
if( $args['id'] || $args['slug'] ){
|
177 |
-
$getid = ( $args['slug'] ? $args['slug'] : $args['id'] );
|
178 |
-
if( $args['item'] == 'topic' ){
|
179 |
-
$url = WPF()->topic->get_topic_url($getid);
|
180 |
-
}elseif( $args['item'] == 'profile' ){
|
181 |
-
$url = WPF()->member->get_profile_url($getid);
|
182 |
-
}else{
|
183 |
-
$url = WPF()->forum->get_forum_url($getid);
|
184 |
-
}
|
185 |
-
}
|
186 |
-
|
187 |
-
WPF()->init_current_object($url);
|
188 |
-
WPF()->tpl->init_nav_menu();
|
189 |
-
}
|
190 |
-
|
191 |
if(wpforo_feature('output-buffer') && function_exists('ob_start')){
|
192 |
if( wpforo_feature('html_cashe') ){
|
193 |
-
$html = WPF()->cache->get_html
|
194 |
}
|
195 |
ob_start();
|
196 |
wpforo_init_template();
|
164 |
function wpforo_load( $atts ){
|
165 |
if(wpforo_is_admin()) return '';
|
166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
if(wpforo_feature('output-buffer') && function_exists('ob_start')){
|
168 |
if( wpforo_feature('html_cashe') ){
|
169 |
+
if( $html = WPF()->cache->get_html() ) return $html;
|
170 |
}
|
171 |
ob_start();
|
172 |
wpforo_init_template();
|
wpf-languages/wpforo-es_ES.mo
CHANGED
Binary file
|
wpf-languages/wpforo-es_ES.po
CHANGED
@@ -1,32 +1,23 @@
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-05-23 23:18+0400\n"
|
6 |
-
"PO-Revision-Date: 2017-05-23 23:18+0400\n"
|
7 |
-
"Last-Translator: gVectors Team <info@gvectors.com>\n"
|
8 |
-
"Language-Team: Spanish\n"
|
9 |
-
"Language: es_ES\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"
|
18 |
-
"
|
19 |
-
"
|
20 |
-
"
|
21 |
-
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
-
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
-
"X-Loco-Target-Locale: es_MX\n"
|
24 |
-
"X-Poedit-SearchPath-0: .\n"
|
25 |
-
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
26 |
|
27 |
#: wpf-admin/addons.php:14 wpf-admin/addons.php:22
|
28 |
msgid "wpForo Addons"
|
29 |
-
msgstr
|
30 |
|
31 |
#: wpf-admin/addons.php:28
|
32 |
msgid ""
|
@@ -41,86 +32,110 @@ msgid ""
|
|
41 |
"development always stays on the first priority and wpForo is being extended "
|
42 |
"with new free functions and features even faster than before."
|
43 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
#: wpf-admin/addons.php:51
|
46 |
msgid "Installed"
|
47 |
-
msgstr
|
48 |
|
49 |
#: wpf-admin/addons.php:55
|
50 |
msgid "Version"
|
51 |
-
msgstr
|
52 |
|
53 |
#: wpf-admin/addons.php:56
|
54 |
msgid "at least"
|
55 |
-
msgstr
|
56 |
|
57 |
#: wpf-admin/addons.php:58
|
58 |
msgid "Details | Buy"
|
59 |
-
msgstr
|
60 |
|
61 |
#: wpf-admin/addons.php:64
|
62 |
msgid "More information about"
|
63 |
-
msgstr
|
64 |
|
65 |
-
#: wpf-admin/admin.php:
|
66 |
-
#: wpf-includes/wpf-phrases.php:
|
67 |
msgid "Dashboard"
|
68 |
msgstr "Escritorio"
|
69 |
|
70 |
-
#: wpf-admin/admin.php:
|
71 |
-
#: wpf-admin/options-tabs/
|
72 |
-
#: wpf-
|
|
|
|
|
|
|
73 |
msgid "Forums"
|
74 |
msgstr "Foros"
|
75 |
|
76 |
-
#: wpf-admin/admin.php:
|
77 |
-
#: wpf-includes/wpf-hooks.php:
|
78 |
msgid "Settings"
|
79 |
msgstr "Ajustes"
|
80 |
|
81 |
-
#: wpf-admin/admin.php:
|
|
|
82 |
msgid "Tools"
|
83 |
-
msgstr
|
84 |
|
85 |
-
#: wpf-admin/admin.php:
|
86 |
msgid "Moderation"
|
87 |
-
msgstr
|
88 |
|
89 |
-
#: wpf-admin/admin.php:
|
90 |
-
#: wpf-admin/options.php:18 wpf-includes/wpf-hooks.php:
|
91 |
#: wpf-includes/wpf-phrases.php:178
|
92 |
msgid "Members"
|
93 |
msgstr "Miembros"
|
94 |
|
95 |
-
#: wpf-admin/admin.php:
|
96 |
-
#: wpf-includes/wpf-hooks.php:
|
97 |
msgid "Usergroups"
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#: wpf-admin/admin.php:
|
101 |
-
#: wpf-includes/wpf-phrases.php:
|
102 |
msgid "Phrases"
|
103 |
msgstr "Frases"
|
104 |
|
105 |
-
#: wpf-admin/admin.php:
|
106 |
-
#: wpf-includes/wpf-phrases.php:
|
107 |
msgid "Themes"
|
108 |
-
msgstr "
|
109 |
|
110 |
-
#: wpf-admin/admin.php:
|
111 |
-
#: wpf-includes/wpf-hooks.php:
|
112 |
msgid "Addons"
|
113 |
-
msgstr "
|
114 |
|
115 |
-
#: wpf-admin/dashboard.php:
|
116 |
msgid "wpForo Dashboard"
|
117 |
-
msgstr "Escritorio
|
118 |
|
119 |
-
#: wpf-admin/dashboard.php:
|
120 |
msgid "Welcome Message"
|
121 |
msgstr "Mensaje de Bienvenida"
|
122 |
|
123 |
-
#: wpf-admin/dashboard.php:
|
|
|
|
|
|
|
|
|
124 |
msgid ""
|
125 |
"Thank you for using wpForo! wpForo is a professional bulletin board for "
|
126 |
"WorPress, and the only forum software which comes with Multi-layout template "
|
@@ -136,143 +151,148 @@ msgid ""
|
|
136 |
"list of issues and requirements you'd like us to fix and add in near future. "
|
137 |
"We're here to help you and improve wpForo as much as possible."
|
138 |
msgstr ""
|
139 |
-
|
140 |
-
"
|
141 |
-
"
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
"
|
146 |
-
"
|
147 |
-
"
|
148 |
-
"
|
149 |
-
"
|
150 |
-
"
|
151 |
-
|
152 |
-
|
|
|
|
|
|
|
153 |
msgid "General Information"
|
154 |
msgstr "Información General"
|
155 |
|
156 |
-
#: wpf-admin/dashboard.php:
|
157 |
msgid "You are currently running"
|
158 |
-
msgstr "
|
159 |
|
160 |
-
#: wpf-admin/dashboard.php:
|
161 |
msgid "Active Theme"
|
162 |
-
msgstr "Tema
|
163 |
|
164 |
-
#: wpf-admin/dashboard.php:
|
165 |
msgid "wpForo Website"
|
166 |
msgstr "Sitio web de wpForo"
|
167 |
|
168 |
-
#: wpf-admin/dashboard.php:
|
169 |
msgid "Support Forum"
|
170 |
msgstr "Foro de Soporte"
|
171 |
|
172 |
-
#: wpf-admin/dashboard.php:
|
173 |
msgid "Server Information"
|
174 |
msgstr "Información del servidor"
|
175 |
|
176 |
-
#: wpf-admin/dashboard.php:
|
177 |
msgid "Available"
|
178 |
msgstr "Disponible"
|
179 |
|
180 |
-
#: wpf-admin/dashboard.php:
|
181 |
msgid "Not available"
|
182 |
msgstr "No disponible"
|
183 |
|
184 |
-
#: wpf-admin/dashboard.php:
|
185 |
msgid "Board Statistic"
|
186 |
-
msgstr "Estadísticas del
|
187 |
|
188 |
-
#: wpf-admin/dashboard.php:
|
189 |
-
#: wpf-
|
|
|
190 |
msgid "Topics"
|
191 |
msgstr "Temas"
|
192 |
|
193 |
-
#: wpf-admin/dashboard.php:
|
194 |
-
#: wpf-includes/wpf-phrases.php:
|
195 |
msgid "Posts"
|
196 |
-
msgstr "
|
197 |
|
198 |
-
#: wpf-admin/dashboard.php:
|
199 |
msgid "Members Online"
|
200 |
-
msgstr "Miembros
|
201 |
|
202 |
-
#: wpf-admin/dashboard.php:
|
203 |
msgid "Avatars Size"
|
204 |
-
msgstr
|
205 |
|
206 |
-
#: wpf-admin/dashboard.php:
|
207 |
msgid "Default Attachments Size"
|
208 |
-
msgstr
|
209 |
|
210 |
-
#: wpf-admin/dashboard.php:
|
211 |
msgid "Advanced Attachments"
|
212 |
-
msgstr
|
213 |
|
214 |
-
#: wpf-admin/dashboard.php:
|
215 |
msgid "file(s)"
|
216 |
-
msgstr
|
217 |
|
218 |
-
#: wpf-admin/dashboard.php:
|
219 |
msgid "Advanced Attachments Size"
|
220 |
-
msgstr
|
221 |
|
222 |
-
#: wpf-admin/dashboard.php:
|
223 |
msgid "Total Size"
|
224 |
-
msgstr
|
225 |
|
226 |
-
#: wpf-admin/dashboard.php:
|
227 |
msgid "Forum Maintenance"
|
228 |
-
msgstr "
|
229 |
|
230 |
-
#: wpf-admin/dashboard.php:
|
231 |
msgid ""
|
232 |
"This process may take a few seconds or dozens of minutes, please be patient "
|
233 |
"and don't close this page. If you got 500 Server Error please don't worry, "
|
234 |
"the data updating process is still working in MySQL server."
|
235 |
msgstr ""
|
236 |
-
"Este proceso puede
|
237 |
-
"
|
238 |
-
"
|
|
|
239 |
"servidor MySQL."
|
240 |
|
241 |
-
#: wpf-admin/dashboard.php:
|
242 |
msgid "Delete All Caches"
|
243 |
-
msgstr
|
244 |
|
245 |
-
#: wpf-admin/dashboard.php:
|
246 |
msgid "Update Forums Statistic"
|
247 |
msgstr "Actualizar Estadísticas de Foros"
|
248 |
|
249 |
-
#: wpf-admin/dashboard.php:
|
250 |
msgid "Update Users Statistic"
|
251 |
msgstr "Actualizar Estadísticas de Usuarios"
|
252 |
|
253 |
-
#: wpf-admin/dashboard.php:
|
254 |
msgid "Delete Phrase Cache"
|
255 |
-
msgstr "Borrar
|
256 |
|
257 |
-
#: wpf-admin/dashboard.php:
|
258 |
msgid "Delete User Cache"
|
259 |
-
msgstr "Borrar
|
260 |
|
261 |
-
#: wpf-admin/forum.php:13 wpf-includes/functions.php:
|
262 |
-
#: wpf-includes/wpf-phrases.php:
|
263 |
msgid "Show on screen"
|
264 |
-
msgstr "Mostrar en
|
265 |
|
266 |
-
#: wpf-admin/forum.php:15 wpf-admin/forum.php:
|
267 |
#: wpf-includes/wpf-phrases.php:113
|
268 |
msgid "Forum Options"
|
269 |
-
msgstr "Opciones del
|
270 |
|
271 |
-
#: wpf-admin/forum.php:16 wpf-includes/wpf-phrases.php:
|
272 |
msgid "Permissions"
|
273 |
msgstr "Permisos"
|
274 |
|
275 |
-
#: wpf-admin/forum.php:17 wpf-includes/wpf-phrases.php:
|
276 |
msgid "Slug"
|
277 |
msgstr "Slug"
|
278 |
|
@@ -280,44 +300,47 @@ msgstr "Slug"
|
|
280 |
msgid "Forum Meta"
|
281 |
msgstr "Meta Foro"
|
282 |
|
283 |
-
#: wpf-admin/forum.php:21 wpf-includes/wpf-phrases.php:
|
284 |
msgid "Screen Layout"
|
285 |
-
msgstr "
|
286 |
|
287 |
-
#: wpf-admin/forum.php:22 wpf-includes/wpf-phrases.php:
|
288 |
msgid "Number of Columns"
|
289 |
-
msgstr "Número de
|
290 |
|
291 |
-
#: wpf-admin/forum.php:32 wpf-includes/functions.php:
|
292 |
-
#: wpf-includes/wpf-phrases.php:
|
293 |
msgid "Screen Options"
|
294 |
-
msgstr "Opciones de
|
295 |
|
296 |
#: wpf-admin/forum.php:43 wpf-includes/wpf-phrases.php:51
|
297 |
msgid "Categories and Forums"
|
298 |
msgstr "Categorías y Foros"
|
299 |
|
300 |
-
#: wpf-admin/forum.php:44 wpf-admin/options-tabs/general.php:75
|
301 |
-
#: wpf-admin/themes.php:10 wpf-admin/usergroup.php:8
|
302 |
#: wpf-includes/wpf-phrases.php:20
|
303 |
msgid "Add New"
|
304 |
-
msgstr "Añadir
|
305 |
|
306 |
#: wpf-admin/forum.php:55
|
307 |
msgid "Important Tips"
|
308 |
-
msgstr
|
309 |
|
310 |
-
#: wpf-admin/forum.php:56 wpf-includes/wpf-phrases.php:
|
311 |
msgid "Please drag and drop forum panels to set parent-child hierarchy."
|
312 |
msgstr ""
|
313 |
-
"
|
314 |
-
"hijo
|
315 |
|
316 |
#: wpf-admin/forum.php:57
|
317 |
msgid ""
|
318 |
"If a category (blue panels) does not have forums (grey panels) it will not "
|
319 |
"be displayed on front-end. Each category should contain at least one forum."
|
320 |
msgstr ""
|
|
|
|
|
|
|
321 |
|
322 |
#: wpf-admin/forum.php:58
|
323 |
msgid ""
|
@@ -326,537 +349,895 @@ msgid ""
|
|
326 |
"forums' layout depends on the top category (blue panels) layout. They cannot "
|
327 |
"have a different layout."
|
328 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
329 |
|
330 |
-
#: wpf-admin/forum.php:74 wpf-includes/wpf-phrases.php:
|
331 |
msgid "Save forums order and hierarchy"
|
332 |
-
msgstr "
|
333 |
|
334 |
-
#: wpf-admin/forum.php:
|
335 |
msgid "Enter forum title here"
|
336 |
msgstr "Introduce el título del foro"
|
337 |
|
338 |
-
#: wpf-admin/forum.php:
|
339 |
msgid "Enter description here . . ."
|
340 |
-
msgstr "
|
341 |
|
342 |
-
#: wpf-admin/forum.php:
|
343 |
msgid ""
|
344 |
"This is a forum description. This content will be displayed under forum "
|
345 |
"title on the forum list."
|
346 |
msgstr ""
|
347 |
-
"Esta es la descripción del foro. Este contenido se mostrará bajo el
|
348 |
"del foro en la lista de foros."
|
349 |
|
350 |
-
#: wpf-admin/forum.php:
|
351 |
msgid "Parent Forum"
|
352 |
-
msgstr "Superior"
|
353 |
|
354 |
-
#: wpf-admin/forum.php:
|
355 |
msgid "No parent"
|
356 |
-
msgstr "Sin
|
357 |
|
358 |
-
#: wpf-admin/forum.php:
|
359 |
msgid "Use as Category"
|
360 |
-
msgstr "Usar como
|
361 |
|
362 |
-
#: wpf-admin/forum.php:
|
363 |
msgid "Category Layout"
|
364 |
-
msgstr "
|
365 |
|
366 |
-
#: wpf-admin/forum.php:
|
367 |
msgid "No layout found."
|
368 |
-
msgstr "No se
|
369 |
|
370 |
-
#: wpf-admin/forum.php:
|
371 |
-
#: wpf-includes/wpf-phrases.php:
|
372 |
msgid "Publish"
|
373 |
msgstr "Publicar"
|
374 |
|
375 |
-
#: wpf-admin/forum.php:
|
376 |
msgid "Are you sure you want to delete this forum?"
|
377 |
-
msgstr "¿
|
378 |
|
379 |
-
#: wpf-admin/forum.php:
|
380 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
381 |
-
#: wpf-admin/usergroup.php:
|
382 |
#: wpf-includes/wpf-phrases.php:66
|
383 |
msgid "Delete"
|
384 |
msgstr "Borrar"
|
385 |
|
386 |
-
#: wpf-admin/forum.php:
|
387 |
-
#: wpf-includes/class-forums.php:
|
388 |
msgid "View"
|
389 |
-
msgstr "
|
390 |
|
391 |
-
#: wpf-admin/forum.php:
|
392 |
msgid "Forum Slug"
|
393 |
msgstr "Slug del Foro"
|
394 |
|
395 |
-
#: wpf-admin/forum.php:
|
396 |
msgid ""
|
397 |
"The \"slug\" is the URL-friendly version of the name. It is usually all "
|
398 |
"lowercase and contains only letters, numbers, and hyphens."
|
399 |
msgstr ""
|
400 |
-
"El \"slug\" es
|
401 |
-
"
|
402 |
|
403 |
-
#: wpf-admin/forum.php:
|
404 |
msgid "Forum Icon"
|
405 |
-
msgstr
|
406 |
|
407 |
-
#: wpf-admin/forum.php:
|
408 |
msgid "Font-awesome Icon"
|
409 |
-
msgstr
|
410 |
|
411 |
-
#: wpf-admin/forum.php:
|
412 |
msgid "You can find all icons"
|
413 |
-
msgstr
|
414 |
|
415 |
-
#: wpf-admin/forum.php:
|
416 |
msgid "here"
|
417 |
-
msgstr
|
418 |
|
419 |
-
#: wpf-admin/forum.php:
|
420 |
msgid ""
|
421 |
"Make sure you insert a class of font-awesome icon, it should start with fa- "
|
422 |
-
"prefix like "fa-comments"."
|
423 |
msgstr ""
|
|
|
|
|
424 |
|
425 |
-
#: wpf-admin/forum.php:
|
426 |
msgid "Forum SEO"
|
427 |
-
msgstr "SEO del
|
428 |
|
429 |
-
#: wpf-admin/forum.php:
|
430 |
msgid "Meta Description"
|
431 |
-
msgstr "
|
432 |
|
433 |
-
#: wpf-admin/forum.php:
|
434 |
msgid "This action will also delete all sub-forums, topics and replies."
|
435 |
-
msgstr "Esta acción también
|
436 |
|
437 |
-
#: wpf-admin/forum.php:
|
438 |
msgid ""
|
439 |
-
"If you want to delete this forum and keep its sub-forums, topics and
|
440 |
-
"
|
441 |
msgstr ""
|
442 |
-
"Si
|
443 |
-
"favor
|
444 |
|
445 |
-
#: wpf-admin/forum.php:
|
446 |
msgid ""
|
447 |
"All sub-forums, topics and replies will be attached to selected forum. "
|
448 |
"Layout will be inherited from this forum."
|
449 |
msgstr ""
|
450 |
-
"Todos los
|
451 |
-
"
|
452 |
|
453 |
#: wpf-admin/moderation.php:10
|
454 |
msgid "Topic and Post Moderation"
|
455 |
-
msgstr
|
456 |
|
457 |
-
#: wpf-admin/options-tabs/accesses.php:
|
458 |
msgid "Add New Forum Access"
|
459 |
-
msgstr "Añadir
|
460 |
|
461 |
-
#: wpf-admin/options-tabs/accesses.php:
|
462 |
msgid "Access names"
|
463 |
msgstr "Nombres de acceso"
|
464 |
|
465 |
-
#: wpf-admin/options-tabs/accesses.php:
|
466 |
-
#: wpf-admin/options-tabs/accesses.php:
|
467 |
-
#: wpf-admin/options-tabs/accesses.php:
|
468 |
msgid "This access is usually used for "
|
469 |
-
msgstr
|
470 |
|
471 |
-
#: wpf-admin/options-tabs/accesses.php:
|
472 |
msgid "Guests"
|
473 |
-
msgstr
|
474 |
|
475 |
-
#: wpf-admin/options-tabs/accesses.php:
|
476 |
-
#: wpf-admin/options-tabs/accesses.php:
|
477 |
-
#: wpf-admin/options-tabs/accesses.php:
|
478 |
msgid "usergroup"
|
479 |
-
msgstr
|
480 |
|
481 |
-
#: wpf-admin/options-tabs/accesses.php:
|
482 |
msgid "Registered"
|
483 |
msgstr "Registrado"
|
484 |
|
485 |
-
#: wpf-admin/options-tabs/accesses.php:
|
486 |
msgid "Admin"
|
487 |
msgstr "Administrador"
|
488 |
|
489 |
-
#: wpf-admin/options-tabs/accesses.php:
|
490 |
-
#: wpf-includes/functions.php:
|
491 |
msgid "edit"
|
492 |
msgstr "editar"
|
493 |
|
494 |
-
#: wpf-admin/options-tabs/accesses.php:
|
495 |
msgid ""
|
496 |
"Are you sure you want to remove this access set? Usergroups which attached "
|
497 |
"to this access will lost all forum permissions."
|
498 |
msgstr ""
|
499 |
-
"¿
|
500 |
-
"
|
501 |
|
502 |
-
#: wpf-admin/options-tabs/accesses.php:
|
503 |
-
#: wpf-includes/functions.php:
|
504 |
-
#: wpf-includes/wpf-phrases.php:
|
505 |
msgid "delete"
|
506 |
msgstr "borrar"
|
507 |
|
508 |
-
#: wpf-admin/options-tabs/accesses.php:
|
509 |
msgid "Access name"
|
510 |
-
msgstr "Nombre de
|
511 |
|
512 |
-
#: wpf-admin/options-tabs/accesses.php:
|
513 |
msgid "Save"
|
514 |
-
msgstr "
|
515 |
|
516 |
-
#: wpf-admin/options-tabs/accesses.php:
|
517 |
msgid "Update"
|
518 |
msgstr "Actualizar"
|
519 |
|
520 |
-
#: wpf-admin/options-tabs/
|
521 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
522 |
msgstr ""
|
|
|
|
|
523 |
|
524 |
-
#: wpf-admin/options-tabs/
|
525 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
527 |
|
528 |
-
#: wpf-admin/options-tabs/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
529 |
msgid "Forum Admins email addresses"
|
530 |
-
msgstr
|
531 |
|
532 |
-
#: wpf-admin/options-tabs/emails.php:
|
533 |
msgid ""
|
534 |
"Comma separated email addresses of forum administrators to get forum "
|
535 |
"notifications. For example post report messages."
|
536 |
msgstr ""
|
537 |
-
"
|
538 |
-
"
|
539 |
-
"de los mensajes."
|
540 |
|
541 |
-
#: wpf-admin/options-tabs/emails.php:
|
542 |
msgid "Notify Admins via email on new Topic"
|
543 |
msgstr ""
|
|
|
544 |
|
545 |
-
#: wpf-admin/options-tabs/emails.php:
|
546 |
msgid ""
|
547 |
"Send Notification emails to all email addresses (comma separated ) of forum "
|
548 |
"administrators when a new Topic is created."
|
549 |
msgstr ""
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
#: wpf-admin/
|
554 |
-
#: wpf-admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
555 |
msgid "Yes"
|
556 |
msgstr "Sí"
|
557 |
|
558 |
-
#: wpf-admin/options-tabs/emails.php:
|
559 |
-
#: wpf-admin/options-tabs/
|
560 |
-
#: wpf-admin/
|
561 |
-
#: wpf-admin/tools-tabs/
|
|
|
|
|
|
|
|
|
|
|
|
|
562 |
msgid "No"
|
563 |
msgstr "No"
|
564 |
|
565 |
-
#: wpf-admin/options-tabs/emails.php:
|
566 |
msgid "Notify Admins via email on new Post"
|
567 |
-
msgstr
|
568 |
|
569 |
-
#: wpf-admin/options-tabs/emails.php:
|
570 |
msgid ""
|
571 |
"Send Notification emails to all email addresses (comma separated ) of forum "
|
572 |
"administrators when a new Reply is created."
|
573 |
msgstr ""
|
|
|
|
|
574 |
|
575 |
-
#: wpf-admin/options-tabs/emails.php:
|
576 |
msgid "Subscription Emails"
|
577 |
-
msgstr "
|
578 |
|
579 |
-
#: wpf-admin/options-tabs/emails.php:
|
580 |
msgid "Subscribe confirmation email subject"
|
581 |
-
msgstr "Asunto para Confirmación de Suscripción"
|
582 |
|
583 |
-
#: wpf-admin/options-tabs/emails.php:
|
584 |
msgid "Subscribe confirmation email message"
|
585 |
msgstr "Mensaje para la Confirmación de Suscripción"
|
586 |
|
587 |
-
#: wpf-admin/options-tabs/emails.php:
|
588 |
msgid "New topic notification email subject"
|
589 |
-
msgstr "Asunto para notificación de
|
590 |
|
591 |
-
#: wpf-admin/options-tabs/emails.php:
|
592 |
msgid "New topic notification email message"
|
593 |
-
msgstr "Mensaje para notificación de
|
594 |
|
595 |
-
#: wpf-admin/options-tabs/emails.php:
|
596 |
msgid "New reply notification email subject"
|
597 |
-
msgstr "Asunto para notificación de
|
598 |
|
599 |
-
#: wpf-admin/options-tabs/emails.php:
|
600 |
msgid "New reply notification email message"
|
601 |
-
msgstr "Mensaje para notificación de
|
602 |
|
603 |
-
#: wpf-admin/options-tabs/emails.php:
|
604 |
msgid "Post Reporting Emails"
|
605 |
msgstr "Correo Electrónico para Mensajes Reportados"
|
606 |
|
607 |
-
#: wpf-admin/options-tabs/emails.php:
|
608 |
msgid "This message comes from post reporting pop-up form."
|
609 |
msgstr ""
|
610 |
-
"Este mensaje viene
|
611 |
|
612 |
-
#: wpf-admin/options-tabs/emails.php:
|
613 |
msgid "Report message subject"
|
614 |
msgstr "Asunto del mensaje reportado"
|
615 |
|
616 |
-
#: wpf-admin/options-tabs/emails.php:
|
617 |
msgid "Report message body"
|
618 |
msgstr "Cuerpo del mensaje reportado"
|
619 |
|
620 |
-
#: wpf-admin/options-tabs/emails.php:
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
#: wpf-admin/
|
625 |
-
msgid "
|
626 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
627 |
|
628 |
-
#: wpf-admin/options-tabs/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
629 |
msgid "Show Admin Bar for Members"
|
630 |
-
msgstr "Mostrar la barra de
|
631 |
|
632 |
-
#: wpf-admin/options-tabs/features.php:9 wpf-includes/wpf-phrases.php:
|
633 |
msgid "This option doesn't affect website admins."
|
634 |
-
msgstr "Esta opción no afecta a los administradores del sitio."
|
635 |
|
636 |
-
#: wpf-admin/options-tabs/features.php:10 wpf-includes/wpf-phrases.php:
|
637 |
msgid "Show Forum Page Title"
|
638 |
-
msgstr "Mostrar
|
639 |
|
640 |
-
#: wpf-admin/options-tabs/features.php:11 wpf-includes/wpf-phrases.php:
|
641 |
msgid "Show Top/Menu Bar"
|
642 |
-
msgstr "Mostrar
|
643 |
|
644 |
-
#: wpf-admin/options-tabs/features.php:12 wpf-includes/wpf-phrases.php:
|
645 |
msgid "Show Top Search"
|
646 |
-
msgstr "Mostrar
|
647 |
|
648 |
-
#: wpf-admin/options-tabs/features.php:13 wpf-includes/wpf-phrases.php:
|
649 |
msgid "Show Breadcrumb"
|
650 |
-
msgstr "Mostrar
|
651 |
|
652 |
-
#: wpf-admin/options-tabs/features.php:14 wpf-includes/wpf-phrases.php:
|
653 |
msgid "Show Forum Statistic"
|
654 |
-
msgstr "Mostrar
|
|
|
|
|
|
|
|
|
655 |
|
656 |
-
#: wpf-admin/options-tabs/features.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
msgid "Replace Author Link to Forum Profile"
|
658 |
-
msgstr "
|
659 |
|
660 |
-
#: wpf-admin/options-tabs/features.php:
|
661 |
msgid "Replace Comment Author Link to Forum Profile"
|
662 |
-
msgstr
|
|
|
663 |
|
664 |
-
#: wpf-admin/options-tabs/features.php:
|
665 |
msgid "Enable User Registration"
|
666 |
-
msgstr "Activar Registro"
|
667 |
|
668 |
-
#: wpf-admin/options-tabs/features.php:
|
669 |
msgid ""
|
670 |
"This option is not synced with WordPress \"Anyone can register\" option in "
|
671 |
"Dashboard > Settings > General admin page. If this option is enabled new "
|
672 |
"users will always be able to register."
|
673 |
msgstr ""
|
674 |
-
"Esta opción no
|
675 |
-
"registrarse\" en Escritorio > Ajustes >
|
676 |
-
"
|
677 |
|
678 |
-
#: wpf-admin/options-tabs/features.php:
|
679 |
msgid "Enable User Registration email confirmation"
|
680 |
msgstr ""
|
|
|
681 |
|
682 |
-
#: wpf-admin/options-tabs/features.php:
|
683 |
msgid ""
|
684 |
"If you have enabled this option, after registering, user can not login "
|
685 |
"without confirming the email."
|
686 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
|
688 |
-
#: wpf-admin/options-tabs/features.php:
|
689 |
-
msgid "Replace
|
690 |
-
msgstr
|
|
|
|
|
691 |
|
692 |
-
#: wpf-admin/options-tabs/features.php:
|
693 |
-
msgid "Replace
|
694 |
-
msgstr
|
|
|
|
|
695 |
|
696 |
-
#: wpf-admin/options-tabs/features.php:
|
697 |
msgid "Replace Author Avatar with Forum Profile Avatar"
|
698 |
-
msgstr "Cambiar el Avatar del
|
699 |
|
700 |
-
#: wpf-admin/options-tabs/features.php:
|
701 |
msgid "Enable Avatars"
|
702 |
-
msgstr "Activar
|
703 |
|
704 |
-
#: wpf-admin/options-tabs/features.php:
|
705 |
msgid "Enable Custom Avatars"
|
706 |
-
msgstr "Activar
|
707 |
|
708 |
-
#: wpf-admin/options-tabs/features.php:
|
709 |
msgid "Allow Member Signature"
|
710 |
-
msgstr "Permitir
|
711 |
|
712 |
-
#: wpf-admin/options-tabs/features.php:
|
713 |
msgid "Enable Member Rating"
|
714 |
-
msgstr "Activar
|
715 |
|
716 |
-
#: wpf-admin/options-tabs/features.php:
|
717 |
msgid "Enable Member Rating Titles"
|
718 |
-
msgstr "Activar
|
719 |
|
720 |
-
#: wpf-admin/options-tabs/features.php:
|
721 |
msgid "Enable Member Cache"
|
722 |
-
msgstr "Activar
|
723 |
|
724 |
-
#: wpf-admin/options-tabs/features.php:
|
725 |
msgid "Enable Object Cache"
|
726 |
-
msgstr
|
727 |
|
728 |
-
#: wpf-admin/options-tabs/features.php:
|
729 |
msgid "Enable HTML Cache"
|
730 |
-
msgstr
|
731 |
|
732 |
-
#: wpf-admin/options-tabs/features.php:
|
733 |
msgid "Enable Memory Cache"
|
734 |
-
msgstr
|
735 |
|
736 |
-
#: wpf-admin/options-tabs/features.php:
|
737 |
msgid "Enable wpForo SEO for Meta Titles"
|
738 |
-
msgstr "Activar SEO de wpForo para
|
739 |
|
740 |
-
#: wpf-admin/options-tabs/features.php:
|
741 |
msgid "Enable wpForo SEO for Meta Tags"
|
742 |
-
msgstr "Activar SEO de wpForo para
|
743 |
|
744 |
-
#: wpf-admin/options-tabs/features.php:
|
745 |
msgid "Enable User Profile Page indexing"
|
746 |
-
msgstr
|
747 |
|
748 |
-
#: wpf-admin/options-tabs/features.php:
|
749 |
-
msgid "Enable
|
750 |
-
msgstr "Activar
|
751 |
|
752 |
-
#: wpf-admin/options-tabs/features.php:
|
753 |
msgid "Turn Off User Syncing Note"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
754 |
msgstr ""
|
|
|
|
|
755 |
|
756 |
-
#: wpf-admin/options-tabs/features.php:
|
|
|
|
|
|
|
|
|
757 |
msgid "Enable Output Buffer"
|
758 |
-
msgstr "Activar
|
759 |
|
760 |
-
#: wpf-admin/options-tabs/features.php:
|
761 |
msgid ""
|
762 |
"This feature is useful if you're adding content before or after [wpforo] "
|
763 |
"shortcode in page content. Also it useful if forum is loaded before website "
|
764 |
"header, on top of the front-end."
|
765 |
msgstr ""
|
766 |
-
"Esta
|
767 |
-
|
768 |
-
"
|
769 |
|
770 |
-
#: wpf-admin/options-tabs/features.php:
|
771 |
msgid "Enable WordPress Date/Time Format"
|
772 |
-
msgstr "Activar Formato
|
773 |
|
774 |
-
#: wpf-admin/options-tabs/features.php:
|
775 |
msgid ""
|
776 |
"You can manage WordPress date and time format in WordPress Settings > "
|
777 |
"General admin page."
|
778 |
msgstr ""
|
779 |
-
"
|
780 |
-
"
|
781 |
|
782 |
-
#: wpf-admin/options-tabs/features.php:
|
783 |
msgid "Enable Subscription Confirmation"
|
784 |
-
msgstr "Activar
|
785 |
|
786 |
-
#: wpf-admin/options-tabs/features.php:
|
787 |
msgid "Forum and Topic subscription with double opt-in/confirmation system."
|
788 |
-
msgstr
|
789 |
-
"Suscriopciones a Foros y Temas con sistema de doble opción de confirmación."
|
790 |
|
791 |
-
#: wpf-admin/options-tabs/features.php:
|
792 |
msgid "Topic subscription option on post editor"
|
793 |
-
msgstr
|
794 |
|
795 |
-
#: wpf-admin/options-tabs/features.php:
|
796 |
msgid ""
|
797 |
"This option adds topic subscription checkbox next to new topic and post "
|
798 |
"submit button."
|
799 |
msgstr ""
|
|
|
|
|
800 |
|
801 |
-
#: wpf-admin/options-tabs/features.php:
|
802 |
msgid "Topic subscription option on post editor - checked/enabled"
|
803 |
msgstr ""
|
|
|
804 |
|
805 |
-
#: wpf-admin/options-tabs/features.php:
|
806 |
msgid ""
|
807 |
"Enable this option if you want the topic subscription checkbox to be checked "
|
808 |
"by default."
|
809 |
msgstr ""
|
|
|
|
|
810 |
|
811 |
-
#: wpf-admin/options-tabs/features.php:
|
812 |
msgid "Insert Forum Attachments to Media Library"
|
813 |
-
msgstr "Insertar Adjuntos del Foro en la
|
814 |
|
815 |
-
#: wpf-admin/options-tabs/features.php:
|
816 |
msgid ""
|
817 |
-
"Enable this option to be able manage forum attachments in Dashboard > Media
|
818 |
-
|
819 |
msgstr ""
|
820 |
-
"Activa esta opción para administrar los adjuntos del foro en
|
821 |
-
"Medios > Librería Multimedia del administrador de WordPress."
|
822 |
|
823 |
-
#: wpf-admin/options-tabs/features.php:
|
824 |
msgid "Enable Debug Mode"
|
825 |
-
msgstr "Activar Modo
|
826 |
|
827 |
-
#: wpf-admin/options-tabs/features.php:
|
828 |
msgid ""
|
829 |
"If you got some issue with wpForo, please enable this option before asking "
|
830 |
"for support, this outputs hidden important information to help us debug your "
|
831 |
"issue."
|
832 |
msgstr ""
|
833 |
-
"Si tienes algún problema con wpForo, por favor
|
834 |
-
"
|
835 |
-
"depurar
|
836 |
|
837 |
-
#: wpf-admin/options-tabs/features.php:
|
838 |
msgid "Help wpForo to grow, show plugin info"
|
839 |
-
msgstr "Ayuda wpForo a crecer, muestra información del plugin"
|
840 |
|
841 |
-
#: wpf-admin/options-tabs/features.php:
|
842 |
msgid ""
|
843 |
"Please enable this option to help wpForo get more popularity as your thank "
|
844 |
"to the hard work we do for you totally free. This option adds a very small "
|
845 |
"icon in forum footer, which will allow your site visitors recognize the name "
|
846 |
"of forum solution you use."
|
847 |
msgstr ""
|
848 |
-
"Por favor activa esta opción para
|
849 |
-
"
|
850 |
-
"
|
851 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
852 |
|
853 |
#: wpf-admin/options-tabs/general.php:15 wpf-includes/wpf-phrases.php:107
|
854 |
msgid "Forum Base URL"
|
855 |
msgstr "URL Base del Foro"
|
856 |
|
857 |
-
#: wpf-admin/options-tabs/general.php:24 wpf-includes/wpf-phrases.php:
|
858 |
msgid "Turn WordPress to wpForo"
|
859 |
-
msgstr "
|
860 |
|
861 |
#: wpf-admin/options-tabs/general.php:25
|
862 |
msgid ""
|
@@ -864,14 +1245,17 @@ msgid ""
|
|
864 |
"excluded post/pages will be available. wpForo will look like as a stand-"
|
865 |
"alone forum."
|
866 |
msgstr ""
|
|
|
|
|
|
|
867 |
|
868 |
#: wpf-admin/options-tabs/general.php:28
|
869 |
msgid "Exclude page URLs"
|
870 |
-
msgstr
|
871 |
|
872 |
#: wpf-admin/options-tabs/general.php:28
|
873 |
msgid "one URL per line"
|
874 |
-
msgstr
|
875 |
|
876 |
#: wpf-admin/options-tabs/general.php:38
|
877 |
msgid "Visit Forum"
|
@@ -881,32 +1265,34 @@ msgstr "Visitar Foro"
|
|
881 |
msgid ""
|
882 |
"wpForo PageID doesn't exist. Forums will not be loaded, please read this"
|
883 |
msgstr ""
|
|
|
|
|
884 |
|
885 |
#: wpf-admin/options-tabs/general.php:41
|
886 |
-
msgid "
|
887 |
-
msgstr
|
888 |
|
889 |
#: wpf-admin/options-tabs/general.php:43
|
890 |
msgid "Forum Page ID"
|
891 |
-
msgstr
|
892 |
|
893 |
#: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-phrases.php:121
|
894 |
msgid "Forum Title"
|
895 |
-
msgstr "Título del
|
896 |
|
897 |
#: wpf-admin/options-tabs/general.php:52 wpf-includes/wpf-phrases.php:108
|
898 |
msgid "Forum Description"
|
899 |
-
msgstr "Descripción del
|
900 |
|
901 |
#: wpf-admin/options-tabs/general.php:57 wpf-includes/wpf-phrases.php:64
|
902 |
msgid "Dashboard Menu Position"
|
903 |
msgstr "Posición del Menú en el Escritorio"
|
904 |
|
905 |
-
#: wpf-admin/options-tabs/general.php:58 wpf-includes/wpf-phrases.php:
|
906 |
msgid "The position in the menu order wpForo should appear."
|
907 |
-
msgstr "
|
908 |
|
909 |
-
#: wpf-admin/options-tabs/general.php:59 wpf-includes/wpf-phrases.php:
|
910 |
msgid ""
|
911 |
"Use greater than 5 - below Posts, 10 - below Media, 15 - below Links, 20 - "
|
912 |
"below Pages, 25 - below comments, 60 - below first separator, 65 - below "
|
@@ -918,9 +1304,13 @@ msgstr ""
|
|
918 |
"Primer Separador, 65 - Abajo de Plugins, 70 - abajo de Usuarios, 75 - abajo "
|
919 |
"de Herramientas, 80 - abajo de Ajustes, 100 - abajo del Segundo Separador"
|
920 |
|
|
|
|
|
|
|
|
|
921 |
#: wpf-admin/options-tabs/general.php:68 wpf-includes/wpf-phrases.php:110
|
922 |
msgid "Forum Language"
|
923 |
-
msgstr "
|
924 |
|
925 |
#: wpf-admin/options-tabs/general.php:69
|
926 |
msgid ""
|
@@ -929,34 +1319,51 @@ msgid ""
|
|
929 |
"are using PO/MO translation files you should change WordPress Language in "
|
930 |
"Dashboard > Settings admin page to load according translation for wpForo."
|
931 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
932 |
|
933 |
#: wpf-admin/options-tabs/general.php:94 wpf-includes/wpf-phrases.php:144
|
934 |
msgid "Language XML file"
|
935 |
-
msgstr "Archivo XML
|
936 |
|
937 |
#: wpf-admin/options-tabs/general.php:103 wpf-includes/wpf-phrases.php:22
|
938 |
msgid "Add New Language"
|
939 |
-
msgstr "Añadir
|
940 |
|
941 |
-
#: wpf-admin/options-tabs/members.php:13 wpf-includes/wpf-phrases.php:
|
942 |
msgid "Online status timeout"
|
943 |
-
msgstr "
|
944 |
|
945 |
-
#: wpf-admin/options-tabs/members.php:16 wpf-admin/options-tabs/posts.php:
|
946 |
-
#: wpf-admin/options-tabs/posts.php:
|
947 |
-
#: wpf-admin/options-tabs/posts.php:
|
948 |
msgid "minutes"
|
949 |
msgstr "minutos"
|
950 |
|
951 |
#: wpf-admin/options-tabs/members.php:20 wpf-includes/wpf-phrases.php:180
|
952 |
msgid "Members URL structure"
|
953 |
-
msgstr "Estructura
|
|
|
|
|
|
|
|
|
954 |
|
955 |
-
#: wpf-admin/options-tabs/members.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
956 |
msgid "Custom Authorization URLs"
|
957 |
-
msgstr "
|
958 |
|
959 |
-
#: wpf-admin/options-tabs/members.php:
|
960 |
msgid ""
|
961 |
"Use this option only if you have set other pages for authorization. \n"
|
962 |
" wpForo doesn't change its own URLs, these options "
|
@@ -964,109 +1371,142 @@ msgid ""
|
|
964 |
" For example, if you use BuddyPress or Ultimate "
|
965 |
"Member plugin you can set these values:"
|
966 |
msgstr ""
|
967 |
-
"
|
968 |
-
"
|
969 |
-
"
|
970 |
-
"
|
971 |
-
"
|
|
|
972 |
|
973 |
-
#: wpf-admin/options-tabs/members.php:
|
974 |
#: wpf-includes/wpf-phrases.php:162
|
975 |
msgid "Login URL"
|
976 |
-
msgstr "URL
|
977 |
|
978 |
-
#: wpf-admin/options-tabs/members.php:
|
979 |
-
#: wpf-includes/wpf-phrases.php:
|
980 |
msgid "Register URL"
|
981 |
-
msgstr "URL
|
982 |
|
983 |
-
#: wpf-admin/options-tabs/members.php:
|
984 |
msgid "Lost Password URL"
|
985 |
-
msgstr "URL
|
986 |
|
987 |
-
#: wpf-admin/options-tabs/members.php:
|
988 |
-
msgid "
|
|
|
|
|
|
|
|
|
989 |
msgstr ""
|
|
|
|
|
990 |
|
991 |
-
#: wpf-admin/options-tabs/members.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
992 |
msgid "Rating Level"
|
993 |
-
msgstr "
|
994 |
|
995 |
-
#: wpf-admin/options-tabs/members.php:
|
996 |
msgid "Min Number of Posts"
|
997 |
-
msgstr "Mensajes
|
998 |
|
999 |
-
#: wpf-admin/options-tabs/members.php:
|
1000 |
msgid "Member Title"
|
1001 |
-
msgstr "Título
|
1002 |
|
1003 |
-
#: wpf-admin/options-tabs/members.php:
|
1004 |
msgid "Short Badge"
|
1005 |
msgstr "Emblema Corto"
|
1006 |
|
1007 |
-
#: wpf-admin/options-tabs/members.php:
|
1008 |
msgid "Full Badge"
|
1009 |
msgstr "Emblema Completo"
|
1010 |
|
1011 |
-
#: wpf-admin/options-tabs/members.php:
|
1012 |
msgid "Rating Color"
|
1013 |
-
msgstr "Color de
|
1014 |
|
1015 |
-
#: wpf-admin/options-tabs/members.php:
|
1016 |
msgid "Rating Icon"
|
1017 |
-
msgstr
|
1018 |
|
1019 |
-
#: wpf-admin/options-tabs/members.php:
|
1020 |
msgid "More"
|
1021 |
msgstr "Más"
|
1022 |
|
1023 |
-
#: wpf-admin/options-tabs/members.php:
|
1024 |
msgid "Level"
|
1025 |
msgstr "Nivel"
|
1026 |
|
1027 |
-
#: wpf-admin/options-tabs/members.php:
|
1028 |
msgid "Number of Posts"
|
1029 |
-
msgstr "
|
1030 |
|
1031 |
-
#: wpf-admin/options-tabs/members.php:
|
1032 |
msgid "Custom Title"
|
1033 |
msgstr "Título Personalizado"
|
1034 |
|
1035 |
-
#: wpf-admin/options-tabs/members.php:
|
|
|
1036 |
msgid "Color"
|
1037 |
msgstr "Color"
|
1038 |
|
1039 |
-
#: wpf-admin/options-tabs/members.php:
|
1040 |
msgid "Badge Icon"
|
1041 |
-
msgstr
|
1042 |
|
1043 |
-
#: wpf-admin/options-tabs/members.php:
|
1044 |
msgid "Enable Reputation Titles for selected usergroups"
|
1045 |
-
msgstr "Activar
|
1046 |
|
1047 |
-
#: wpf-admin/options-tabs/members.php:
|
1048 |
msgid ""
|
1049 |
"This option depends on \"Enable Member Rating Titles\" parent option, witch "
|
1050 |
"located in wpForo Settings > Features Tab"
|
1051 |
msgstr ""
|
1052 |
-
"Esta opción
|
1053 |
-
"se encuentra en
|
1054 |
|
1055 |
-
#: wpf-admin/options-tabs/members.php:
|
1056 |
msgid "Enable Reputation Badges for selected usergroups"
|
1057 |
-
msgstr
|
|
|
1058 |
|
1059 |
-
#: wpf-admin/options-tabs/members.php:
|
1060 |
msgid ""
|
1061 |
"This option depends on \"Enable Member Rating\" parent option, witch located "
|
1062 |
"in wpForo Settings > Features Tab"
|
1063 |
msgstr ""
|
1064 |
-
"Esta opción
|
1065 |
-
"en
|
1066 |
|
1067 |
-
#: wpf-admin/options-tabs/members.php:
|
1068 |
msgid "Display Usergroup under Post Author Avatar"
|
1069 |
-
msgstr
|
1070 |
|
1071 |
#: wpf-admin/options-tabs/plugins.php:9
|
1072 |
msgid ""
|
@@ -1075,89 +1515,103 @@ msgid ""
|
|
1075 |
"this forum board. However this is a very large and hard project so we also "
|
1076 |
"develop paid addons (extensions), which will financially help us to keep "
|
1077 |
"improving and adding new features to the free wpForo plugin. Forum addons "
|
1078 |
-
"will also be actively developed. The first addons \"Advanced Media
|
1079 |
-
|
1080 |
-
"very soon. Once you got some addon and activated that, you will
|
1081 |
-
"settings in vertical subTabs here."
|
1082 |
-
msgstr ""
|
1083 |
-
"Gracias por usar wpForo.
|
1084 |
-
"
|
1085 |
-
"
|
1086 |
-
"
|
1087 |
-
"
|
1088 |
-
"wpForo.
|
1089 |
-
"
|
1090 |
-
"\"Mensajes
|
1091 |
-
"
|
1092 |
-
"
|
1093 |
-
|
1094 |
-
#: wpf-admin/options-tabs/posts.php:14
|
|
|
|
|
|
|
|
|
1095 |
msgid "Number of Topics per Page"
|
1096 |
-
msgstr "
|
1097 |
|
1098 |
-
#: wpf-admin/options-tabs/posts.php:
|
1099 |
msgid "Allow Edit Own Topic for"
|
1100 |
-
msgstr "Tiempo para poder
|
|
|
|
|
|
|
|
|
|
|
|
|
1101 |
|
1102 |
-
#: wpf-admin/options-tabs/posts.php:
|
1103 |
msgid "Allow Delete Own Topic for"
|
1104 |
-
msgstr "Tiempo para poder
|
1105 |
|
1106 |
-
#: wpf-admin/options-tabs/posts.php:
|
1107 |
msgid "Number of Posts per Page"
|
1108 |
-
msgstr "
|
1109 |
|
1110 |
-
#: wpf-admin/options-tabs/posts.php:
|
1111 |
msgid "Allow Edit Own Post for"
|
1112 |
-
msgstr "Tiempo para poder
|
1113 |
|
1114 |
-
#: wpf-admin/options-tabs/posts.php:
|
1115 |
msgid "Allow Delete Own post for"
|
1116 |
-
msgstr "Tiempo para poder
|
1117 |
|
1118 |
-
#: wpf-admin/options-tabs/posts.php:
|
1119 |
msgid "Maximum upload file size"
|
1120 |
msgstr "Tamaño máximo de subida para archivos"
|
1121 |
|
1122 |
-
#: wpf-admin/options-tabs/posts.php:
|
1123 |
msgid ""
|
1124 |
"You can not set this value more than \"upload_max_filesize\" and "
|
1125 |
"\"post_max_size\". If you want to increase server parameters please contact "
|
1126 |
"to your hosting service support."
|
1127 |
msgstr ""
|
1128 |
-
"No puedes poner
|
1129 |
-
|
1130 |
-
"
|
1131 |
|
1132 |
-
#: wpf-admin/options-tabs/posts.php:
|
1133 |
msgid "MB"
|
1134 |
msgstr "MB"
|
1135 |
|
1136 |
-
#: wpf-admin/options-tabs/posts.php:
|
1137 |
msgid "Server \"upload_max_filesize\" is "
|
1138 |
-
msgstr "El \"upload_max_filesize\" del servidor es
|
1139 |
|
1140 |
-
#: wpf-admin/options-tabs/posts.php:
|
1141 |
msgid "Server \"post_max_size\" is "
|
1142 |
-
msgstr "El \"post_max_size\" del servidor es
|
1143 |
|
1144 |
-
#: wpf-admin/options-tabs/posts.php:
|
1145 |
msgid "Attachment click - message for non-permitted users"
|
1146 |
msgstr ""
|
|
|
1147 |
|
1148 |
-
#: wpf-admin/options-tabs/posts.php:
|
1149 |
msgid ""
|
1150 |
"This message will be displayed when a non-permitted forum member clicks on "
|
1151 |
"attached file link in topic and posts."
|
1152 |
msgstr ""
|
|
|
|
|
1153 |
|
1154 |
#: wpf-admin/options-tabs/styles.php:13
|
1155 |
msgid "Font Sizes"
|
1156 |
-
msgstr "Tamaño de
|
1157 |
|
1158 |
-
#: wpf-admin/options-tabs/styles.php:28 wpf-
|
|
|
1159 |
msgid "Post Content"
|
1160 |
-
msgstr "
|
1161 |
|
1162 |
#: wpf-admin/options-tabs/styles.php:36 wpf-includes/wpf-phrases.php:61
|
1163 |
msgid "Custom CSS Code"
|
@@ -1167,6 +1621,10 @@ msgstr "Código CSS Personalizado"
|
|
1167 |
msgid "Forum Color Styles"
|
1168 |
msgstr "Estilo de Colores del Foro"
|
1169 |
|
|
|
|
|
|
|
|
|
1170 |
#: wpf-admin/options.php:8 wpf-includes/wpf-phrases.php:117
|
1171 |
msgid "Forum Settings"
|
1172 |
msgstr "Ajustes del Foro"
|
@@ -1177,35 +1635,39 @@ msgstr "General"
|
|
1177 |
|
1178 |
#: wpf-admin/options.php:16 wpf-includes/wpf-phrases.php:105
|
1179 |
msgid "Forum Accesses"
|
1180 |
-
msgstr "
|
1181 |
|
1182 |
-
#: wpf-admin/options.php:17 wpf-includes/wpf-phrases.php:
|
1183 |
msgid "Topics & Posts"
|
1184 |
-
msgstr "Temas
|
1185 |
|
1186 |
#: wpf-admin/options.php:19 wpf-includes/wpf-phrases.php:76
|
1187 |
msgid "Emails"
|
1188 |
-
msgstr "
|
1189 |
|
1190 |
#: wpf-admin/options.php:20 wpf-includes/wpf-phrases.php:96
|
1191 |
msgid "Features"
|
1192 |
-
msgstr "
|
1193 |
|
1194 |
-
#: wpf-admin/options.php:22 wpf-includes/wpf-phrases.php:
|
1195 |
msgid "Styles"
|
1196 |
msgstr "Estilos"
|
1197 |
|
|
|
|
|
|
|
|
|
1198 |
#: wpf-admin/phrase.php:10 wpf-includes/wpf-phrases.php:127
|
1199 |
msgid "Front-end Phrases"
|
1200 |
-
msgstr "Frases
|
1201 |
|
1202 |
#: wpf-admin/themes.php:9 wpf-includes/wpf-phrases.php:120
|
1203 |
msgid "Forum Themes"
|
1204 |
-
msgstr "
|
1205 |
|
1206 |
#: wpf-admin/themes.php:46 wpf-includes/wpf-phrases.php:60
|
1207 |
msgid "Current active theme"
|
1208 |
-
msgstr "
|
1209 |
|
1210 |
#: wpf-admin/themes.php:48 wpf-includes/wpf-phrases.php:138
|
1211 |
msgid "Inactive"
|
@@ -1213,7 +1675,7 @@ msgstr "Inactivo"
|
|
1213 |
|
1214 |
#: wpf-admin/themes.php:52 wpf-includes/wpf-phrases.php:143
|
1215 |
msgid "LAYOUTS"
|
1216 |
-
msgstr "
|
1217 |
|
1218 |
#: wpf-admin/themes.php:68 wpf-includes/wpf-phrases.php:17
|
1219 |
msgid "Activate"
|
@@ -1221,7 +1683,7 @@ msgstr "Activar"
|
|
1221 |
|
1222 |
#: wpf-admin/themes.php:69 wpf-includes/wpf-phrases.php:124
|
1223 |
msgid "Fresh Installation"
|
1224 |
-
msgstr "Instalación
|
1225 |
|
1226 |
#: wpf-admin/themes.php:71 wpf-includes/wpf-phrases.php:140
|
1227 |
msgid "Install"
|
@@ -1229,26 +1691,26 @@ msgstr "Instalar"
|
|
1229 |
|
1230 |
#: wpf-admin/themes.php:73 wpf-includes/wpf-phrases.php:38
|
1231 |
msgid "Are you sure you want to delete this theme files?"
|
1232 |
-
msgstr "¿
|
1233 |
|
1234 |
#: wpf-admin/themes.php:76 wpf-includes/wpf-phrases.php:40
|
1235 |
msgid ""
|
1236 |
"Are you sure you want to reset all settings and style colors to default?"
|
1237 |
msgstr ""
|
1238 |
-
"¿
|
1239 |
-
"colores
|
1240 |
|
1241 |
-
#: wpf-admin/themes.php:76 wpf-includes/wpf-phrases.php:
|
1242 |
msgid "Reset Settings"
|
1243 |
-
msgstr "
|
1244 |
|
1245 |
-
#: wpf-admin/themes.php:96 wpf-includes/wpf-phrases.php:
|
1246 |
msgid "No layout found"
|
1247 |
-
msgstr "No se
|
1248 |
|
1249 |
-
#: wpf-admin/themes.php:107 wpf-includes/wpf-phrases.php:
|
1250 |
msgid "No theme found"
|
1251 |
-
msgstr "No se
|
1252 |
|
1253 |
#: wpf-admin/tools-tabs/antispam.php:11
|
1254 |
msgid ""
|
@@ -1257,10 +1719,14 @@ msgid ""
|
|
1257 |
"already integrated with wpForo. It'll help to filter posts and protect forum "
|
1258 |
"against spam attacks."
|
1259 |
msgstr ""
|
|
|
|
|
|
|
|
|
1260 |
|
1261 |
#: wpf-admin/tools-tabs/antispam.php:21
|
1262 |
msgid "Spam Control"
|
1263 |
-
msgstr
|
1264 |
|
1265 |
#: wpf-admin/tools-tabs/antispam.php:22
|
1266 |
msgid ""
|
@@ -1268,34 +1734,38 @@ msgid ""
|
|
1268 |
"control don't affect users whose Usergroup has \"Can edit member\" and \"Can "
|
1269 |
"pass moderation\" permissions."
|
1270 |
msgstr ""
|
|
|
|
|
|
|
|
|
1271 |
|
1272 |
#: wpf-admin/tools-tabs/antispam.php:28
|
1273 |
msgid "Enable wpForo Spam Control"
|
1274 |
-
msgstr
|
1275 |
|
1276 |
#: wpf-admin/tools-tabs/antispam.php:37
|
1277 |
-
msgid "Ban user when spam is
|
1278 |
-
msgstr
|
1279 |
|
1280 |
#: wpf-admin/tools-tabs/antispam.php:46
|
1281 |
msgid "Notify via email when new user is banned"
|
1282 |
-
msgstr
|
1283 |
|
1284 |
#: wpf-admin/tools-tabs/antispam.php:55
|
1285 |
msgid "Spam Suspicion Level for Topics"
|
1286 |
-
msgstr
|
1287 |
|
1288 |
#: wpf-admin/tools-tabs/antispam.php:59
|
1289 |
msgid "Spam Suspicion Level for Posts"
|
1290 |
-
msgstr
|
1291 |
|
1292 |
#: wpf-admin/tools-tabs/antispam.php:64
|
1293 |
msgid " is enabled"
|
1294 |
-
msgstr
|
1295 |
|
1296 |
#: wpf-admin/tools-tabs/antispam.php:73
|
1297 |
msgid "New Registered User"
|
1298 |
-
msgstr
|
1299 |
|
1300 |
#: wpf-admin/tools-tabs/antispam.php:74
|
1301 |
msgid ""
|
@@ -1303,530 +1773,1169 @@ msgid ""
|
|
1303 |
"options don't affect users whose Usergroup has \"Can edit member\" and \"Can "
|
1304 |
"pass moderation\" permissions."
|
1305 |
msgstr ""
|
|
|
|
|
|
|
1306 |
|
1307 |
#: wpf-admin/tools-tabs/antispam.php:81
|
1308 |
msgid "User is New (under hard spam control) during"
|
1309 |
-
msgstr
|
1310 |
|
1311 |
#: wpf-admin/tools-tabs/antispam.php:83
|
1312 |
msgid "first"
|
1313 |
-
msgstr
|
1314 |
|
1315 |
#: wpf-admin/tools-tabs/antispam.php:83
|
1316 |
msgid "posts"
|
1317 |
-
msgstr
|
1318 |
|
1319 |
#: wpf-admin/tools-tabs/antispam.php:86
|
1320 |
msgid "Min number of posts to be able attach files"
|
1321 |
-
msgstr
|
1322 |
|
1323 |
#: wpf-admin/tools-tabs/antispam.php:90
|
1324 |
msgid "Min number of posts to be able post links"
|
1325 |
-
msgstr
|
1326 |
|
1327 |
#: wpf-admin/tools-tabs/antispam.php:95
|
1328 |
msgid "Do not allow to attach files with following extensions:"
|
1329 |
-
msgstr
|
1330 |
|
1331 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1332 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1333 |
msgstr ""
|
|
|
|
|
|
|
|
|
1334 |
|
1335 |
#: wpf-admin/tools-tabs/antispam.php:110
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1336 |
msgid ""
|
1337 |
"This tool is designed to find attachment which have been uploaded by "
|
1338 |
"spammers. The tool checks most common spammer filenames and suggest to "
|
1339 |
"delete but you should check one by one and make sure those are spam files "
|
1340 |
"before deleting."
|
1341 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1342 |
|
1343 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1344 |
msgid "Directory"
|
1345 |
-
msgstr
|
1346 |
|
1347 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1348 |
msgid "Delete this file"
|
1349 |
-
msgstr
|
1350 |
|
1351 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1352 |
msgid "Are you sure you want to permanently delete this file?"
|
1353 |
-
msgstr
|
1354 |
|
1355 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1356 |
msgid "Click to delete Blue marked files"
|
1357 |
-
msgstr
|
1358 |
|
1359 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1360 |
msgid ""
|
1361 |
"Are you sure you want to delete all BLUE marked files listed here. Please "
|
1362 |
"download Wordpress /wp-content/uploads/wpforo/ folder to your local computer "
|
1363 |
"before deleting files, this is not undoable."
|
1364 |
msgstr ""
|
|
|
|
|
|
|
1365 |
|
1366 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1367 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1368 |
msgid "Delete All"
|
1369 |
-
msgstr
|
1370 |
|
1371 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1372 |
msgid "Click to delete Orange marked files"
|
1373 |
-
msgstr
|
1374 |
|
1375 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1376 |
msgid ""
|
1377 |
"Are you sure you want to delete all ORANGE marked files listed here. Please "
|
1378 |
"download Wordpress /wp-content/uploads/wpforo/ folder to your local computer "
|
1379 |
"before deleting files, this is not undoable."
|
1380 |
msgstr ""
|
|
|
|
|
|
|
|
|
1381 |
|
1382 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1383 |
msgid "Click to delete Red marked files"
|
1384 |
-
msgstr
|
1385 |
|
1386 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1387 |
msgid ""
|
1388 |
"Are you sure you want to delete all RED marked files listed here. Please "
|
1389 |
"download Wordpress /wp-content/uploads/wpforo/ folder to your local computer "
|
1390 |
"before deleting files, this is not undoable."
|
1391 |
msgstr ""
|
|
|
|
|
|
|
1392 |
|
1393 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1394 |
msgid "Click to delete Dark Red marked files"
|
1395 |
-
msgstr
|
1396 |
|
1397 |
-
#: wpf-admin/tools-tabs/antispam.php:
|
1398 |
msgid ""
|
1399 |
"Are you sure you want to delete all DARK RED marked files listed here. "
|
1400 |
"Please download Wordpress /wp-content/uploads/wpforo/ folder to your local "
|
1401 |
"computer before deleting files, this is not undoable."
|
1402 |
msgstr ""
|
|
|
|
|
|
|
|
|
1403 |
|
1404 |
#: wpf-admin/tools-tabs/cleanup.php:12
|
1405 |
msgid "Delete Inactive Users"
|
1406 |
-
msgstr
|
1407 |
|
1408 |
#: wpf-admin/tools-tabs/cleanup.php:13
|
1409 |
-
#, php-format
|
1410 |
msgid ""
|
1411 |
"Inactive users are the account owners who have no topics, posts, comments "
|
1412 |
-
"and subscriptions for new content. In 99
|
1413 |
-
"being registered by Spammers. This tool allows you to only keep active
|
1414 |
-
"known inactive users."
|
1415 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1416 |
|
1417 |
#: wpf-admin/tools-tabs/cleanup.php:19
|
1418 |
msgid "Inactive users who have been registered more than"
|
1419 |
-
msgstr
|
1420 |
|
1421 |
#: wpf-admin/tools-tabs/cleanup.php:20
|
1422 |
msgid "days ago"
|
1423 |
-
msgstr
|
1424 |
|
1425 |
#: wpf-admin/tools-tabs/cleanup.php:25
|
1426 |
msgid "Filter by Usergroups"
|
1427 |
-
msgstr
|
1428 |
|
1429 |
#: wpf-admin/tools-tabs/cleanup.php:36
|
1430 |
msgid "Enable Auto-cleanup of inactive users"
|
1431 |
-
msgstr
|
1432 |
|
1433 |
-
#: wpf-admin/tools.php:
|
1434 |
-
msgid "Forum
|
1435 |
-
msgstr
|
1436 |
|
1437 |
-
#: wpf-admin/tools.php:
|
1438 |
-
msgid
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1439 |
msgstr ""
|
|
|
|
|
1440 |
|
1441 |
-
#: wpf-admin/tools.php:
|
1442 |
-
msgid "
|
1443 |
-
msgstr
|
1444 |
|
1445 |
-
#: wpf-admin/
|
1446 |
-
|
1447 |
-
|
1448 |
-
msgstr "Nombre de Grupo"
|
1449 |
|
1450 |
-
#: wpf-admin/
|
1451 |
-
msgid "
|
1452 |
-
msgstr
|
|
|
1453 |
|
1454 |
-
#: wpf-admin/
|
1455 |
-
msgid "
|
1456 |
-
msgstr "
|
1457 |
|
1458 |
-
#: wpf-admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1459 |
msgid "Edit"
|
1460 |
msgstr "Editar"
|
1461 |
|
1462 |
-
#: wpf-admin/usergroup.php:
|
1463 |
msgid "Delete this usergroup"
|
1464 |
-
msgstr "Borrar este
|
1465 |
|
1466 |
-
#: wpf-admin/usergroup.php:
|
1467 |
msgid "View users list in this usergroup"
|
1468 |
-
msgstr "Ver la lista de usuarios
|
1469 |
|
1470 |
-
#: wpf-admin/usergroup.php:
|
1471 |
msgid "Count of users in this usergroup"
|
1472 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1473 |
|
1474 |
-
#: wpf-admin/usergroup.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1475 |
msgid "Guest"
|
1476 |
msgstr "Invitado"
|
1477 |
|
1478 |
-
#: wpf-admin/usergroup.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1479 |
msgid "add"
|
1480 |
-
msgstr "
|
1481 |
|
1482 |
-
#: wpf-admin/usergroup.php:
|
1483 |
msgid "save"
|
1484 |
-
msgstr "
|
1485 |
|
1486 |
-
#: wpf-admin/usergroup.php:
|
1487 |
msgid "Delete Chosen Usergroup And Users"
|
1488 |
-
msgstr "Borrar grupo y usuarios
|
1489 |
|
1490 |
-
#: wpf-admin/usergroup.php:
|
1491 |
msgid "Delete Chosen Usergroup And Join Users To Other Usergroup"
|
1492 |
-
msgstr
|
|
|
|
|
1493 |
|
1494 |
-
#: wpf-admin/usergroup.php:
|
1495 |
msgid "Users will be join this usergroup"
|
1496 |
-
msgstr "Los usuarios
|
1497 |
|
1498 |
-
#: wpf-includes/class-
|
1499 |
-
msgid "
|
1500 |
msgstr ""
|
|
|
|
|
1501 |
|
1502 |
-
#: wpf-includes/class-
|
1503 |
-
msgid
|
|
|
|
|
1504 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1505 |
|
1506 |
-
#: wpf-includes/class-members.php:
|
1507 |
msgid "<strong>ERROR</strong>: Please enter a username."
|
1508 |
-
msgstr
|
1509 |
|
1510 |
-
#: wpf-includes/class-members.php:
|
1511 |
msgid ""
|
1512 |
"<strong>ERROR</strong>: This username is invalid because it uses illegal "
|
1513 |
"characters. Please enter a valid username."
|
1514 |
msgstr ""
|
|
|
|
|
1515 |
|
1516 |
-
#: wpf-includes/class-members.php:
|
1517 |
msgid ""
|
1518 |
"<strong>ERROR</strong>: This username is already registered. Please choose "
|
1519 |
"another one."
|
1520 |
msgstr ""
|
|
|
|
|
1521 |
|
1522 |
-
#: wpf-includes/class-members.php:
|
1523 |
msgid "<strong>ERROR</strong>: Sorry, that username is not allowed."
|
1524 |
msgstr ""
|
|
|
1525 |
|
1526 |
-
#: wpf-includes/class-members.php:
|
1527 |
msgid "<strong>ERROR</strong>: Please type your email address."
|
1528 |
-
msgstr
|
1529 |
|
1530 |
-
#: wpf-includes/class-members.php:
|
1531 |
msgid "<strong>ERROR</strong>: The email address isn’t correct."
|
1532 |
-
msgstr
|
1533 |
|
1534 |
-
#: wpf-includes/class-members.php:
|
1535 |
msgid ""
|
1536 |
"<strong>ERROR</strong>: This email is already registered, please choose "
|
1537 |
"another one."
|
1538 |
msgstr ""
|
|
|
1539 |
|
1540 |
-
#: wpf-includes/class-members.php:
|
1541 |
msgid "What should be done with wpForo content owned by this user?"
|
1542 |
-
msgstr
|
1543 |
|
1544 |
-
#: wpf-includes/class-members.php:
|
1545 |
msgid "What should be done with wpForo content owned by these users?"
|
1546 |
-
msgstr
|
1547 |
|
1548 |
-
#: wpf-includes/class-members.php:
|
1549 |
msgid "Delete all wpForo content."
|
1550 |
-
msgstr
|
1551 |
|
1552 |
-
#: wpf-includes/class-members.php:
|
1553 |
msgid "Attribute all content to:"
|
1554 |
-
msgstr
|
1555 |
|
1556 |
-
#: wpf-includes/class-moderation.php:
|
1557 |
-
#, php-format
|
1558 |
msgid ""
|
1559 |
"Probably spam file attachments have been detected by wpForo Spam Control. "
|
1560 |
-
"Please moderate suspected files
|
1561 |
msgstr ""
|
|
|
|
|
|
|
1562 |
|
1563 |
-
#: wpf-includes/class-notices.php:
|
1564 |
msgid "Dismiss this notice."
|
1565 |
msgstr "Descartar este aviso."
|
1566 |
|
1567 |
-
#: wpf-includes/class-notices.php:
|
1568 |
msgid "New Addons for Your Forum!"
|
1569 |
-
msgstr
|
1570 |
|
1571 |
-
#: wpf-includes/class-notices.php:
|
1572 |
msgid "Extend your forum with wpForo addons"
|
1573 |
-
msgstr
|
1574 |
|
1575 |
-
#: wpf-includes/class-notices.php:
|
1576 |
msgid "View all Addons"
|
1577 |
-
msgstr
|
1578 |
|
1579 |
-
#: wpf-includes/class-permissions.php:
|
1580 |
-
#,
|
1581 |
msgid "%s access successfully added"
|
1582 |
-
msgstr
|
1583 |
|
1584 |
-
#: wpf-includes/class-permissions.php:
|
1585 |
-
#,
|
1586 |
msgid "%s access successfully edited"
|
1587 |
-
msgstr
|
1588 |
|
1589 |
-
#: wpf-includes/class-phrases.php:
|
1590 |
msgid " Forum"
|
1591 |
msgstr "Foro"
|
1592 |
|
1593 |
-
#: wpf-includes/class-phrases.php:
|
1594 |
msgid " Discussion Board"
|
1595 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1596 |
|
1597 |
-
#: wpf-includes/class-template.php:
|
1598 |
msgid "Insert link"
|
1599 |
-
msgstr "Insertar
|
1600 |
|
1601 |
-
#: wpf-includes/class-template.php:
|
1602 |
msgid "Link Text"
|
1603 |
-
msgstr "Texto
|
1604 |
|
1605 |
-
#: wpf-includes/class-template.php:
|
1606 |
msgid "Open link in a new tab"
|
1607 |
-
msgstr "Abrir
|
1608 |
|
1609 |
-
#: wpf-includes/class-template.php:
|
1610 |
msgid "Theme file not readable"
|
1611 |
-
msgstr "
|
1612 |
|
1613 |
-
#: wpf-includes/functions-installation.php:
|
1614 |
-
msgid "Forum"
|
1615 |
-
msgstr "Foro"
|
1616 |
-
|
1617 |
-
#: wpf-includes/functions-installation.php:55
|
1618 |
-
msgid "Discussion Board"
|
1619 |
-
msgstr "Foro de Discusión"
|
1620 |
-
|
1621 |
-
#: wpf-includes/functions-installation.php:85
|
1622 |
-
msgid "You are not permitted to view this attachment"
|
1623 |
-
msgstr ""
|
1624 |
-
|
1625 |
-
#: wpf-includes/functions-installation.php:807
|
1626 |
msgid "Start Profile Synchronization"
|
1627 |
-
msgstr
|
1628 |
|
1629 |
-
#: wpf-includes/functions-installation.php:
|
1630 |
msgid "Continue Synchronization"
|
1631 |
-
msgstr
|
1632 |
|
1633 |
-
#: wpf-includes/functions-installation.php:
|
1634 |
msgid ""
|
1635 |
"This process may take a few seconds or dozens of minutes, please be patient "
|
1636 |
"and don't close this page."
|
1637 |
msgstr ""
|
|
|
|
|
1638 |
|
1639 |
-
#: wpf-includes/functions-installation.php:
|
1640 |
msgid ""
|
1641 |
"You can permanently disable this message in Dashboard > Forums > Features "
|
1642 |
"admin page."
|
1643 |
msgstr ""
|
|
|
|
|
1644 |
|
1645 |
-
#: wpf-includes/functions-installation.php:
|
1646 |
msgid "wpForo Forum Installation | "
|
1647 |
-
msgstr
|
1648 |
|
1649 |
-
#: wpf-includes/functions-installation.php:
|
1650 |
msgid ""
|
1651 |
"Forum users' profile data are not synchronized yet, this step is required! "
|
1652 |
"Please click the button below to complete installation."
|
1653 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1654 |
|
1655 |
#: wpf-includes/functions-template.php:7
|
1656 |
msgid "wpForo Menu"
|
1657 |
-
msgstr "
|
1658 |
|
1659 |
-
#: wpf-includes/functions-template.php:
|
1660 |
msgid "wpForo Sidebar"
|
1661 |
-
msgstr "
|
1662 |
|
1663 |
-
#: wpf-includes/functions-template.php:
|
1664 |
msgid ""
|
1665 |
"NOTE: If you're going to add widgets in this sidebar, please use 'Full "
|
1666 |
"Width' template for wpForo index page to avoid sidebar duplication."
|
1667 |
msgstr ""
|
1668 |
-
"NOTA: Si
|
1669 |
-
|
|
|
1670 |
|
1671 |
-
#: wpf-includes/functions-template.php:
|
1672 |
-
#: wpf-includes/functions-template.php:
|
1673 |
-
#: wpf-includes/functions-template.php:
|
1674 |
-
#: wpf-includes/functions-template.php:
|
1675 |
-
#: wpf-includes/functions-template.php:
|
1676 |
-
#: wpf-includes/functions-template.php:
|
1677 |
msgid "Title"
|
1678 |
msgstr "Título"
|
1679 |
|
1680 |
-
#: wpf-includes/functions-template.php:
|
1681 |
-
#: wpf-includes/functions-template.php:
|
1682 |
-
#: wpf-includes/functions-template.php:
|
1683 |
msgid "Number of Items"
|
1684 |
-
msgstr "Número de
|
1685 |
|
1686 |
-
#: wpf-includes/functions-template.php:
|
1687 |
msgid "Display Avatars"
|
1688 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1689 |
|
1690 |
-
#: wpf-includes/functions-template.php:
|
1691 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1692 |
msgid "Display with Avatars"
|
1693 |
-
msgstr "Mostrar con
|
1694 |
|
1695 |
-
#: wpf-includes/functions.php:
|
1696 |
msgid "Unapproved"
|
1697 |
-
msgstr
|
1698 |
|
1699 |
-
#: wpf-includes/functions.php:
|
1700 |
msgid "Published"
|
1701 |
-
msgstr
|
1702 |
|
1703 |
-
#: wpf-includes/functions.php:
|
1704 |
msgid "Active"
|
1705 |
msgstr "Activo"
|
1706 |
|
1707 |
-
#: wpf-includes/functions.php:
|
1708 |
msgid "Banned"
|
1709 |
-
msgstr
|
1710 |
|
1711 |
-
#: wpf-includes/functions.php:
|
1712 |
#: wpf-includes/wpf-phrases.php:50
|
1713 |
msgid "Bulk Actions"
|
1714 |
-
msgstr "Acciones
|
1715 |
|
1716 |
-
#: wpf-includes/functions.php:
|
1717 |
#: wpf-includes/wpf-phrases.php:36
|
1718 |
msgid "Apply"
|
1719 |
msgstr "Aplicar"
|
1720 |
|
1721 |
-
#: wpf-includes/functions.php:
|
1722 |
msgid "Show all forums"
|
1723 |
msgstr "Mostrar todos los foros"
|
1724 |
|
1725 |
-
#: wpf-includes/functions.php:
|
1726 |
msgid "filter by group"
|
1727 |
-
msgstr
|
1728 |
|
1729 |
-
#: wpf-includes/functions.php:
|
1730 |
msgid "filter by status"
|
1731 |
-
msgstr
|
1732 |
|
1733 |
-
#: wpf-includes/functions.php:
|
1734 |
msgid "filter by package"
|
1735 |
-
msgstr
|
1736 |
|
1737 |
-
#: wpf-includes/functions.php:
|
1738 |
msgid "filter by user"
|
1739 |
-
msgstr
|
1740 |
|
1741 |
-
#: wpf-includes/functions.php:
|
1742 |
-
#: wpf-includes/wpf-phrases.php:
|
1743 |
msgid "item"
|
1744 |
msgstr "elemento"
|
1745 |
|
1746 |
-
#: wpf-includes/functions.php:
|
1747 |
-
#: wpf-includes/wpf-phrases.php:
|
1748 |
msgid "Select All"
|
1749 |
-
msgstr "
|
1750 |
|
1751 |
-
#: wpf-includes/functions.php:
|
1752 |
msgid "Type"
|
1753 |
-
msgstr
|
1754 |
|
1755 |
-
#: wpf-includes/functions.php:
|
1756 |
msgid "edit user"
|
1757 |
msgstr "editar usuario"
|
1758 |
|
1759 |
-
#: wpf-includes/functions.php:
|
1760 |
msgid "edit profile"
|
1761 |
msgstr "editar perfil"
|
1762 |
|
1763 |
-
#: wpf-includes/functions.php:
|
1764 |
msgid "unban user"
|
1765 |
-
msgstr
|
1766 |
|
1767 |
-
#: wpf-includes/functions.php:
|
1768 |
msgid "ban user"
|
1769 |
-
msgstr
|
1770 |
|
1771 |
-
#: wpf-includes/functions.php:
|
1772 |
msgid "Are you sure, you want to unban this user?"
|
1773 |
-
msgstr
|
1774 |
|
1775 |
-
#: wpf-includes/functions.php:
|
1776 |
msgid "Are you sure, you want to ban this user?"
|
1777 |
-
msgstr
|
1778 |
|
1779 |
-
#: wpf-includes/functions.php:
|
1780 |
#: wpf-includes/wpf-phrases.php:67
|
1781 |
msgid "Delete this item"
|
1782 |
msgstr "Borrar este elemento"
|
1783 |
|
1784 |
-
#: wpf-includes/functions.php:
|
1785 |
#: wpf-includes/wpf-phrases.php:41
|
1786 |
-
msgid "Are you sure you
|
1787 |
-
msgstr "¿
|
1788 |
|
1789 |
-
#: wpf-includes/functions.php:
|
1790 |
msgid "unapprove this item"
|
1791 |
-
msgstr
|
1792 |
|
1793 |
-
#: wpf-includes/functions.php:
|
1794 |
msgid "Approve this item"
|
1795 |
-
msgstr
|
1796 |
|
1797 |
-
#: wpf-includes/functions.php:
|
1798 |
msgid "unapprove"
|
1799 |
-
msgstr
|
1800 |
|
1801 |
-
#: wpf-includes/functions.php:
|
1802 |
msgid "approve"
|
1803 |
-
msgstr
|
1804 |
|
1805 |
-
#: wpf-includes/functions.php:
|
1806 |
-
#: wpf-includes/wpf-phrases.php:
|
1807 |
msgid "view"
|
1808 |
-
msgstr "
|
1809 |
|
1810 |
-
#: wpf-includes/functions.php:
|
1811 |
msgid "Topic"
|
1812 |
-
msgstr
|
1813 |
|
1814 |
-
#: wpf-includes/functions.php:
|
1815 |
msgid "Post"
|
1816 |
-
msgstr
|
1817 |
|
1818 |
-
#: wpf-includes/functions.php:
|
1819 |
msgid "No items found"
|
1820 |
msgstr "No se encontraron elementos"
|
1821 |
|
1822 |
-
#: wpf-includes/functions.php:
|
1823 |
msgid "Items"
|
1824 |
msgstr "Elementos"
|
1825 |
|
1826 |
-
#: wpf-includes/functions.php:
|
1827 |
#, php-format
|
1828 |
msgid "Could not write file %s"
|
1829 |
-
msgstr "No se puede escribir
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1830 |
|
1831 |
#: wpf-includes/wpf-hooks.php:20 wpf-includes/wpf-phrases.php:136
|
1832 |
msgid ""
|
@@ -1837,103 +2946,109 @@ msgid ""
|
|
1837 |
"please confirm. If not, just cancel it, then you can deactivate this plugin, "
|
1838 |
"that will not remove forum data."
|
1839 |
msgstr ""
|
1840 |
-
"¡IMPORTANTE!
|
1841 |
-
"acción
|
1842 |
-
"respuestas, adjuntos...) de la base de datos. Por favor haga
|
1843 |
-
"
|
1844 |
-
"
|
1845 |
-
"
|
1846 |
-
"
|
1847 |
|
1848 |
#: wpf-includes/wpf-hooks.php:20
|
1849 |
msgid "Uninstall"
|
1850 |
msgstr "Desinstalar"
|
1851 |
|
1852 |
-
#: wpf-includes/wpf-hooks.php:
|
1853 |
msgid "Move"
|
1854 |
msgstr "Mover"
|
1855 |
|
1856 |
-
#: wpf-includes/wpf-hooks.php:
|
1857 |
msgid "Clear"
|
1858 |
-
msgstr "
|
1859 |
|
1860 |
-
#: wpf-includes/wpf-hooks.php:
|
1861 |
msgid "Default"
|
1862 |
-
msgstr "
|
1863 |
|
1864 |
-
#: wpf-includes/wpf-hooks.php:
|
1865 |
msgid "Select Color"
|
1866 |
-
msgstr "
|
1867 |
|
1868 |
-
#: wpf-includes/wpf-hooks.php:
|
1869 |
msgid ""
|
1870 |
"IMPORTANT: wpForo can't work with default permalink, please change permalink "
|
1871 |
"structure"
|
1872 |
msgstr ""
|
|
|
|
|
1873 |
|
1874 |
-
#: wpf-includes/wpf-hooks.php:
|
1875 |
msgid "wpForo Usergroup"
|
1876 |
-
msgstr "
|
1877 |
|
1878 |
-
#: wpf-includes/wpf-hooks.php:
|
1879 |
msgid "wpForo User Timezone"
|
1880 |
-
msgstr "Zona
|
1881 |
|
1882 |
-
#: wpf-includes/wpf-hooks.php:
|
1883 |
msgid "Please Moderate: "
|
1884 |
-
msgstr
|
1885 |
|
1886 |
-
#: wpf-includes/wpf-hooks.php:
|
1887 |
msgid ""
|
1888 |
"This topic is currently unapproved. You can approve topics in Dashboard "
|
1889 |
"» Forums » Moderation admin page."
|
1890 |
msgstr ""
|
|
|
|
|
1891 |
|
1892 |
-
#: wpf-includes/wpf-hooks.php:
|
1893 |
msgid ""
|
1894 |
-
"This post is currently unapproved. You can approve posts in Dashboard
|
1895 |
-
|
1896 |
msgstr ""
|
|
|
|
|
1897 |
|
1898 |
-
#: wpf-includes/wpf-hooks.php:
|
1899 |
msgid "New Forum"
|
1900 |
-
msgstr
|
1901 |
|
1902 |
-
#: wpf-includes/wpf-hooks.php:
|
1903 |
msgid "New User Group"
|
1904 |
-
msgstr
|
1905 |
|
1906 |
-
#: wpf-includes/wpf-hooks.php:
|
1907 |
msgid "New Phrase"
|
1908 |
-
msgstr
|
1909 |
|
1910 |
-
#: wpf-includes/wpf-hooks.php:
|
1911 |
msgid "Community"
|
1912 |
-
msgstr
|
1913 |
|
1914 |
-
#: wpf-includes/wpf-hooks.php:
|
1915 |
-
msgid "New
|
1916 |
-
msgstr
|
1917 |
|
1918 |
#: wpf-includes/wpf-phrases.php:8
|
1919 |
#, php-format
|
1920 |
msgid "%s and %s liked"
|
1921 |
-
msgstr
|
1922 |
|
1923 |
#: wpf-includes/wpf-phrases.php:9
|
1924 |
#, php-format
|
1925 |
msgid "%s liked"
|
1926 |
-
msgstr
|
1927 |
|
1928 |
#: wpf-includes/wpf-phrases.php:10
|
1929 |
#, php-format
|
1930 |
msgid "%s, %s and %s liked"
|
1931 |
-
msgstr
|
1932 |
|
1933 |
#: wpf-includes/wpf-phrases.php:11
|
1934 |
#, php-format
|
1935 |
msgid "%s, %s, %s and %d people liked"
|
1936 |
-
msgstr
|
1937 |
|
1938 |
#: wpf-includes/wpf-phrases.php:12
|
1939 |
msgid "AOL IM"
|
@@ -1941,7 +3056,7 @@ msgstr "AOL IM"
|
|
1941 |
|
1942 |
#: wpf-includes/wpf-phrases.php:13
|
1943 |
msgid "About Me"
|
1944 |
-
msgstr "
|
1945 |
|
1946 |
#: wpf-includes/wpf-phrases.php:16
|
1947 |
msgid "Account"
|
@@ -1965,7 +3080,7 @@ msgstr "Responder"
|
|
1965 |
|
1966 |
#: wpf-includes/wpf-phrases.php:33
|
1967 |
msgid "Answer to"
|
1968 |
-
msgstr "Responder
|
1969 |
|
1970 |
#: wpf-includes/wpf-phrases.php:34
|
1971 |
msgid "Answers"
|
@@ -1977,7 +3092,7 @@ msgstr "Cualquier Fecha"
|
|
1977 |
|
1978 |
#: wpf-includes/wpf-phrases.php:42
|
1979 |
msgid "Ascending order"
|
1980 |
-
msgstr "Orden
|
1981 |
|
1982 |
#: wpf-includes/wpf-phrases.php:43
|
1983 |
msgid "Attach file:"
|
@@ -1985,11 +3100,11 @@ msgstr "Archivo adjunto:"
|
|
1985 |
|
1986 |
#: wpf-includes/wpf-phrases.php:44
|
1987 |
msgid "Attachments"
|
1988 |
-
msgstr "
|
1989 |
|
1990 |
#: wpf-includes/wpf-phrases.php:45
|
1991 |
msgid "Attachments Size"
|
1992 |
-
msgstr "Tamaño de
|
1993 |
|
1994 |
#: wpf-includes/wpf-phrases.php:47
|
1995 |
msgid "Avatar"
|
@@ -2000,13 +3115,8 @@ msgid "Change password"
|
|
2000 |
msgstr "Cambiar contraseña"
|
2001 |
|
2002 |
#: wpf-includes/wpf-phrases.php:54
|
2003 |
-
msgid "Choose
|
2004 |
-
msgstr "
|
2005 |
-
|
2006 |
-
#: wpf-includes/wpf-phrases.php:55 wpf-themes/classic/functions.php:44
|
2007 |
-
#: wpf-themes/classic/functions.php:65 wpf-themes/classic/functions.php:94
|
2008 |